Normally we want the test args passed to the SA debuggee. In fact for proper SA
test coverage, it is more important for the test args to be passed to the
debuggee than to be passed to the test or the the SA tool that the test
launches. For a couple of jhsdb tests that launch jshell as the debugg
> Introducing a new formatting class for locale-dependent list patterns. The
> class is to provide the functionality from the Unicode Consortium's LDML
> specification for [list
> patterns](https://www.unicode.org/reports/tr35/tr35-general.html#ListPatterns).
> For example, given a list of Stri
On Fri, 4 Aug 2023 18:34:52 GMT, Chris Plummer wrote:
>> There is coding e.g. in
>> https://github.com/openjdk/jdk/blob/master/test/jdk/jdk/jfr/event/runtime/TestNativeLibrariesEvent.java#L72
>> that deals with shared lib naming on different OS.
>> This code should be simplified.
>
> test/lib/jdk
On Wed, 26 Jul 2023 11:02:20 GMT, dan1st wrote:
> The [JEP for sequenced collections](https://openjdk.org/jeps/431) would add
> addFirst(), removeFirst() and reversed() methods to lists.
> However, the Javadoc of List mentions:
> > The size, isEmpty, get, set, iterator, and listIterator operati
On Wed, 2 Aug 2023 20:11:35 GMT, Stuart Marks wrote:
> Adjust the leading javadoc sentence of several collections mutator methods to
> include "(optional operation)" as appropriate. Also adjust doc for
> UnsupportedOperationException on those methods as necessary.
This pull request has now bee
> com.sun.jndi.ldap.Connection::leanup does not close the underlying socket if
> the is an IOException generation when the output stream was flushing the
> buffer.
>
> Please refer to the bug https://bugs.openjdk.org/browse/JDK-8313657.
Weibing Xiao has updated the pull request incrementally wi
On Fri, 4 Aug 2023 18:24:04 GMT, Weibing Xiao wrote:
>> com.sun.jndi.ldap.Connection::leanup does not close the underlying socket if
>> the is an IOException generation when the output stream was flushing the
>> buffer.
>>
>> Please refer to the bug https://bugs.openjdk.org/browse/JDK-8313657.
On Fri, 4 Aug 2023 09:59:41 GMT, Matthias Baesken wrote:
> There is coding e.g. in
> https://github.com/openjdk/jdk/blob/master/test/jdk/jdk/jfr/event/runtime/TestNativeLibrariesEvent.java#L72
> that deals with shared lib naming on different OS.
> This code should be simplified.
Changes requeste
> com.sun.jndi.ldap.Connection::leanup does not close the underlying socket if
> the is an IOException generation when the output stream was flushing the
> buffer.
>
> Please refer to the bug https://bugs.openjdk.org/browse/JDK-8313657.
Weibing Xiao has updated the pull request incrementally wi
When viewing the propsed Javadoc of ComputedConstant#orElse
(https://cr.openjdk.org/~pminborg/computed-constant/api/java.base/java/lang/ComputedConstant.html#orElse(V)),it
mentions throwing an NoSuchElementException in case the element cannot
be bound.
However, the Javadoc also mentions returni
On Thu, 3 Aug 2023 17:32:43 GMT, Weibing Xiao wrote:
> com.sun.jndi.ldap.Connection::leanup does not close the underlying socket if
> the is an IOException generation when the output stream was flushing the
> buffer.
>
> Please refer to the bug https://bugs.openjdk.org/browse/JDK-8313657.
src
On Fri, 4 Aug 2023 07:11:58 GMT, dan1st wrote:
>> Thanks for the updates. I've drafted a CSR; see link in header. Please take
>> a look.
>
>> Thanks for the updates. I've drafted a CSR; see link in header. Please take
>> a look.
>
> @stuart-marks Thanks, the CSR looks good to me. I guess the `
On Fri, 4 Aug 2023 15:36:05 GMT, dan1st wrote:
>> src/java.base/share/classes/java/util/ArrayList.java line 46:
>>
>>> 44: * {@code listIterator}, and {@code reversed} operations run in
>>> constant time.
>>> 45: * The {@code add}, and {@code addLast} operations runs in amortized
>>> 46: * c
On Thu, 27 Jul 2023 06:31:06 GMT, dan1st wrote:
>> The [JEP for sequenced collections](https://openjdk.org/jeps/431) would add
>> addFirst(), removeFirst() and reversed() methods to lists.
>> However, the Javadoc of List mentions:
>> > The size, isEmpty, get, set, iterator, and listIterator ope
On Fri, 4 Aug 2023 15:31:59 GMT, Brian Burkhalter wrote:
>> dan1st has updated the pull request incrementally with one additional commit
>> since the last revision:
>>
>> 8311517: ArrayList Javadoc of getFirst/getLast/removeLast
>>
>> as requested by
>> https://github.com/openjdk/jdk/pu
On Thu, 27 Jul 2023 06:31:06 GMT, dan1st wrote:
>> The [JEP for sequenced collections](https://openjdk.org/jeps/431) would add
>> addFirst(), removeFirst() and reversed() methods to lists.
>> However, the Javadoc of List mentions:
>> > The size, isEmpty, get, set, iterator, and listIterator ope
On Thu, 3 Aug 2023 17:32:43 GMT, Weibing Xiao wrote:
> com.sun.jndi.ldap.Connection::leanup does not close the underlying socket if
> the is an IOException generation when the output stream was flushing the
> buffer.
>
> Please refer to the bug https://bugs.openjdk.org/browse/JDK-8313657.
why
In `publish0()`, `flush0()` and `flushAndClose()`methods of `StreamHandler` we
read multiple times from volatile writer. The access number can be reduced by
reading the field into local variable once.
-
Commit messages:
- 8313768: Reduce interaction with volatile field in j.u.l.Str
On Thu, 3 Aug 2023 17:59:10 GMT, Alan Bateman wrote:
>> com.sun.jndi.ldap.Connection::leanup does not close the underlying socket if
>> the is an IOException generation when the output stream was flushing the
>> buffer.
>>
>> Please refer to the bug https://bugs.openjdk.org/browse/JDK-8313657.
com.sun.jndi.ldap.Connection::leanup does not close the underlying socket if
the is an IOException generation when the output stream was flushing the buffer.
Please refer to the bug https://bugs.openjdk.org/browse/JDK-8313657.
-
Commit messages:
- reformat the code
- remove unreac
On Thu, 3 Aug 2023 17:32:43 GMT, Weibing Xiao wrote:
> com.sun.jndi.ldap.Connection::leanup does not close the underlying socket if
> the is an IOException generation when the output stream was flushing the
> buffer.
>
> Please refer to the bug https://bugs.openjdk.org/browse/JDK-8313657.
src
There is coding e.g. in
https://github.com/openjdk/jdk/blob/master/test/jdk/jdk/jfr/event/runtime/TestNativeLibrariesEvent.java#L72
that deals with shared lib naming on different OS.
This code should be simplified.
-
Commit messages:
- JDK-8313670
Changes: https://git.openjdk.org/jd
On Thu, 27 Jul 2023 06:31:06 GMT, dan1st wrote:
>> The [JEP for sequenced collections](https://openjdk.org/jeps/431) would add
>> addFirst(), removeFirst() and reversed() methods to lists.
>> However, the Javadoc of List mentions:
>> > The size, isEmpty, get, set, iterator, and listIterator ope
Hi all,
This pull request contains a backport of commit
[61c58fdd](https://github.com/openjdk/jdk/commit/61c58fdd00727da2841a052477e4f4ecfa7094d6)
from the [openjdk/jdk](https://git.openjdk.org/jdk) repository.
The commit being backported was authored by Raffaello Giulietti on 4 Aug 2023
and w
On Thu, 27 Jul 2023 11:25:57 GMT, Raffaello Giulietti
wrote:
> Fixes a bug showing up after
> [JDK-8132995](https://bugs.openjdk.org/browse/JDK-8132995) when there are
> capturing groups outside the match.
This pull request has now been integrated.
Changeset: 61c58fdd
Author:Raffaello Gi
On Fri, 4 Aug 2023 03:08:26 GMT, Stuart Marks wrote:
> Thanks for the updates. I've drafted a CSR; see link in header. Please take a
> look.
@stuart-marks Thanks, the CSR looks good to me. I guess the `Fix versions`
field will be added when the CSR is reviewed?
-
PR Comment: http
26 matches
Mail list logo