> Can I please get a review of this change which proposes to address
> https://bugs.openjdk.org/browse/JDK-8339810?
>
> As noted in the issue we have a few places in the jar's tool `Main` class
> where we currently don't close the resources in a try/finally block. The
> commit in this PR update
On Tue, 10 Sep 2024 06:08:45 GMT, Christian Stein wrote:
>> Jaikiran Pai has updated the pull request incrementally with one additional
>> commit since the last revision:
>>
>> Christian's review - array declaration style
>
> src/jdk.jartool/share/classes/sun/tools/jar/Main.java line 1508:
>
On Sat, 7 Sep 2024 05:15:56 GMT, Quan Anh Mai wrote:
>> Looks good!
>
> @PaulSandoz Thanks for your reviews, I think this patch is trivial so I will
> merge it.
>
> @jaikiran All the `YYYXXXVector.java` files are generated from
> `X-VectorBits.java.template`, so if I change some of them all th
On Tue, 10 Sep 2024 05:31:29 GMT, Jaikiran Pai wrote:
> Can I please get a review of this change which proposes to address
> https://bugs.openjdk.org/browse/JDK-8339810?
>
> As noted in the issue we have a few places in the jar's tool `Main` class
> where we currently don't close the resources
On Mon, 9 Sep 2024 23:42:59 GMT, fitzsim wrote:
>> fitzsim has updated the pull request incrementally with two additional
>> commits since the last revision:
>>
>> - BootClassPathZipFileTest: Use test.classes directory for test ZIPs
>> - BootClassPathZipFileTest, BootClassPathZipFileCreator:
On Tue, 10 Sep 2024 04:36:42 GMT, Jaikiran Pai wrote:
>> Can I please get a review for this patch which proposes to implement the
>> enhancement request noted in
>> https://bugs.openjdk.java.net/browse/JDK-8173970?
>>
>> The commit in this PR introduces the `-o` and `--output-dir` option to th
Can I please get a review of this change which proposes to address
https://bugs.openjdk.org/browse/JDK-8339810?
As noted in the issue we have a few places in the jar's tool `Main` class where
we currently don't close the resources in a try/finally block. The commit in
this PR updates the releva
On Mon, 9 Sep 2024 16:25:15 GMT, Stuart Marks wrote:
>> @dholmes-ora Is this really possible? The `obj` ref is passed to the
>> PhantomReference constructor, which stores it in a field, the constructed
>> PhantomReference is returned, and it's then used in a reachabilityFence call
>> below. So
On Fri, 6 Sep 2024 19:57:41 GMT, Brent Christian wrote:
> From the bug description:
> ForceGC would be improved by moving the Reference.reachabilityFence() calls
> for 'obj' and 'ref'.
>
> Reference.reachabilityFence(obj) is currently placed after 'obj' has been set
> to null, so effectively d
On Mon, 9 Sep 2024 14:40:12 GMT, Daniel Fuchs wrote:
>> test/lib/jdk/test/lib/util/ForceGC.java line 102:
>>
>>> 100: }
>>> 101: }
>>> 102: Reference.reachabilityFence(ref);
>>
>> I think everything from the creation of ref to the line above needs to
>> enclosed in
> Can I please get a review for this patch which proposes to implement the
> enhancement request noted in https://bugs.openjdk.java.net/browse/JDK-8173970?
>
> The commit in this PR introduces the `-o` and `--output-dir` option to the
> `jar` command. The option takes a path to a destination dir
On Sun, 8 Sep 2024 16:37:08 GMT, Claes Redestad wrote:
>> String concatenation is required in many places in java.lang. These static
>> concat methods will be used instead of "+", so null value processing is
>> added. This is also the motivation for using static concat methods instead
>> of Co
On Mon, 9 Sep 2024 23:27:14 GMT, Chen Liang wrote:
>> Misc improvements to InnerClassLambdaMetafactory and
>> InvokerBytecodeGenerator:
>> - Define `ClassEntry` early, use it when profitable (there are some warts in
>> the API where using `ce.name(), ce.type()` in a few places means we drop the
On Mon, 9 Sep 2024 23:52:41 GMT, Claes Redestad wrote:
> Switching to `invokeBasic` for type-check invokes in
> `BootstrapMethodInvokers` instead of `invokeExact` avoids some
> `MethodHandleNatives.linkMethod` calls during bootstrap. This brings a tiny
> but measurable once-per-bootstrap metho
Switching to `invokeBasic` for type-check invokes in `BootstrapMethodInvokers`
instead of `invokeExact` avoids some `MethodHandleNatives.linkMethod` calls
during bootstrap. This brings a tiny but measurable once-per-bootstrap method
win. Both before and after we lean on the static casts in
Boot
On Mon, 9 Sep 2024 20:27:47 GMT, fitzsim wrote:
>> 8334048: -Xbootclasspath can not read some ZIP64 zip files
>
> fitzsim has updated the pull request incrementally with two additional
> commits since the last revision:
>
> - BootClassPathZipFileTest: Use test.classes directory for test ZIPs
>
On Mon, 9 Sep 2024 22:53:28 GMT, Claes Redestad wrote:
> Misc improvements to InnerClassLambdaMetafactory and InvokerBytecodeGenerator:
> - Define `ClassEntry` early, use it when profitable (there are some warts in
> the API where using `ce.name(), ce.type()` in a few places means we drop the
>
Misc improvements to InnerClassLambdaMetafactory and InvokerBytecodeGenerator:
- Define `ClassEntry` early, use it when profitable (there are some warts in
the API where using `ce.name(), ce.type()` in a few places means we drop the
link to the `ClassDesc` which will then be re-spun in later - sh
On Mon, 9 Sep 2024 17:15:43 GMT, Aleksei Efimov wrote:
>> I have been wondering why the timeout was measured in this way. My
>> explanation was that the original author of the API (duke? ;-) ) wanted to
>> measure "actual timeout" (time actually spent waiting for a packet) as
>> opposed to per
> This PR proposes the following changes to address wrong timeout computations
> in the `com.sun.jndi.dns.DnsClient`:
> - The `DnsClient` has been updated to use a monotonic high-resolution (nano)
> clock. The existing `Timeout` test has also been updated to use the nano
> clock to measure obser
On Mon, 9 Sep 2024 16:25:15 GMT, Stuart Marks wrote:
>> @dholmes-ora Is this really possible? The `obj` ref is passed to the
>> PhantomReference constructor, which stores it in a field, the constructed
>> PhantomReference is returned, and it's then used in a reachabilityFence call
>> below. So
On Fri, 9 Aug 2024 17:59:12 GMT, Brian Burkhalter wrote:
>> This proposed change would move the native objects required for NIO file
>> interaction from the libnio native library to the libjava native library on
>> Linux, macOS, and Windows.
>
> Brian Burkhalter has updated the pull request inc
> The new test added by https://github.com/openjdk/jdk/pull/20854 fails
> spuriously.
> While JNI lookup is now moved into the static initializer of the
> `MappedMemoryUtils` class, this class might only get initialized while in the
> middle of a scoped context.
>
> To address this, I created a
> 8334048: -Xbootclasspath can not read some ZIP64 zip files
fitzsim has updated the pull request incrementally with two additional commits
since the last revision:
- BootClassPathZipFileTest: Use test.classes directory for test ZIPs
- BootClassPathZipFileTest, BootClassPathZipFileCreator: Mov
On Fri, 6 Sep 2024 17:47:35 GMT, Brian Burkhalter wrote:
>> Make explicit how the `java.io.File` methods `isDirectory`, `isFile`, and
>> `isHidden` behave when the `File` represents a symbolic link.
>
> Brian Burkhalter has updated the pull request incrementally with one
> additional commit sin
> Make explicit how the `java.io.File` methods `isDirectory`, `isFile`, and
> `isHidden` behave when the `File` represents a symbolic link.
Brian Burkhalter has updated the pull request incrementally with one additional
commit since the last revision:
8339574: Replace "transparent" with more
On Mon, 9 Sep 2024 17:10:13 GMT, Daniel Jeliński wrote:
> Does `File.exists` check the existence of the link target?
Yes. Verified on both Unix (macOS) and Windows 11.
-
PR Comment: https://git.openjdk.org/jdk/pull/20878#issuecomment-2338863163
On Mon, 9 Sep 2024 18:37:47 GMT, Joe Darcy wrote:
> Use index and definition tags in AnnotatedElement.
OK.
As a subsidiary follow-up, one might ask whether `{@index...}` should
implicitly include `` tags in its output.
-
Marked as reviewed by jjg (Reviewer).
PR Review: https://g
On Mon, 9 Sep 2024 12:59:15 GMT, Maurizio Cimadamore
wrote:
>> Maurizio Cimadamore has updated the pull request incrementally with one
>> additional commit since the last revision:
>>
>> Drop spurious change
>
> src/java.base/share/classes/jdk/internal/access/foreign/MappedMemoryUtilsProxy.j
Use index and definition tags in AnnotatedElement.
-
Commit messages:
- JDK-8339789: Use index and definition tags in AnnotatedElement
Changes: https://git.openjdk.org/jdk/pull/20919/files
Webrev: https://webrevs.openjdk.org/?repo=jdk&pr=20919&range=00
Issue: https://bugs.openjd
On Thu, 5 Sep 2024 13:25:17 GMT, Severin Gehwolf wrote:
>> Please review this fix for cgroups-based metrics reporting in the
>> `jdk.internal.platform` package. This fix is supposed to address wrong
>> reporting of certain limits if the limits aren't set at the leaf nodes.
>>
>> For example, o
On Wed, 4 Sep 2024 17:46:00 GMT, Severin Gehwolf wrote:
>> Please review this PR which adds test support for systemd slices so that
>> bugs like [JDK-8217338](https://bugs.openjdk.org/browse/JDK-8217338) can be
>> verified. The added test, `SystemdMemoryAwarenessTest` currently passes on
>> cg
> The string concatenation of the java.base module is implemented using
> StringBuilder. By providing a series of concat methods in StringConcatHelper,
> it is used in the java.lang package to replace string concatenation.
>
> These concat methods can also be exposed through JLA for use by other
On Mon, 9 Sep 2024 15:03:46 GMT, Daniel Fuchs wrote:
>> Sounds like a right thing to do: measuring time in the loop should give us
>> better estimation on time DNS client spends waiting on the response after
>> submiting a query (that's how environment property value is defined in
>> [javadoc
On Fri, 6 Sep 2024 17:47:35 GMT, Brian Burkhalter wrote:
>> Make explicit how the `java.io.File` methods `isDirectory`, `isFile`, and
>> `isHidden` behave when the `File` represents a symbolic link.
>
> Brian Burkhalter has updated the pull request incrementally with one
> additional commit sin
> This PR proposes the following changes to address wrong timeout computations
> in the `com.sun.jndi.dns.DnsClient`:
> - The `DnsClient` has been updated to use a monotonic high-resolution (nano)
> clock. The existing `Timeout` test has also been updated to use the nano
> clock to measure obser
On Mon, 9 Sep 2024 16:12:02 GMT, Stuart Marks wrote:
>> The reason for the explicit reference and RF, as I recall, is to guard
>> against the allocation of the new object being elided entirely, with the
>> `PhantomReference` constructor being passed null (or itself being elided)
>> and no refe
> This PR proposes the following changes to address wrong timeout computations
> in the `com.sun.jndi.dns.DnsClient`:
> - The `DnsClient` has been updated to use a monotonic high-resolution (nano)
> clock. The existing `Timeout` test has also been updated to use the nano
> clock to measure obser
On Mon, 9 Sep 2024 05:01:26 GMT, David Holmes wrote:
>> test/lib/jdk/test/lib/util/ForceGC.java line 82:
>>
>>> 80: PhantomReference ref = new PhantomReference<>(obj,
>>> queue);
>>> 81: Reference.reachabilityFence(obj);
>>> 82: obj = null;
>>
>> You're right to questio
On Fri, 6 Sep 2024 17:40:50 GMT, Naoto Sato wrote:
> Fixing TZDB build tool to accommodate full month/day names. Recently released
> tzdb2024b included (inadvertently) full month name "April", which is allowed
> by the spec (zic.8), but never used. This will cause build failure of the
> JDK. T
On Fri, 6 Sep 2024 21:49:30 GMT, Naoto Sato wrote:
>> Fixing TZDB build tool to accommodate full month/day names. Recently
>> released tzdb2024b included (inadvertently) full month name "April", which
>> is allowed by the spec (zic.8), but never used. This will cause build
>> failure of the JD
On Wed, 12 Jun 2024 10:45:30 GMT, Jaikiran Pai wrote:
> Can I please get a review of this enhancement which proposes to enhance
> `java.util.zip.Deflater/Inflater` classes to now implement `AutoCloseable`?
>
> The actual work for this was done a few years back when we discussed the
> proposed
On Sat, 7 Sep 2024 04:47:36 GMT, Jaikiran Pai wrote:
>> Hi,
>>
>> This patch fixes an issue where we mistakenly use `Double::doubleToLongBits`
>> in `DoubleXXXVector::withLaneHelper` and `DoubleXXXVector::laneHelper`. We
>> should use the raw bit version instead.
>>
>> Please kindly review, t
On Mon, 9 Sep 2024 15:30:47 GMT, Maurizio Cimadamore
wrote:
>> Maurizio Cimadamore has updated the pull request incrementally with one
>> additional commit since the last revision:
>>
>> Drop spurious change
>
> src/java.base/share/classes/java/nio/MappedMemoryUtils.java line 128:
>
>> 126:
On Mon, 9 Sep 2024 01:53:01 GMT, Shaojin Wen wrote:
>> This is a follow-up to PR #20273, which improves performance when the number
>> of parameters exceeds 20.
>>
>> When the number of parameters is large, the possibility of reuse will be
>> lower, so we can use the static concat method and w
On Mon, 9 Sep 2024 15:30:47 GMT, Maurizio Cimadamore
wrote:
>> The new test added by https://github.com/openjdk/jdk/pull/20854 fails
>> spuriously.
>> While JNI lookup is now moved into the static initializer of the
>> `MappedMemoryUtils` class, this class might only get initialized while in
> The new test added by https://github.com/openjdk/jdk/pull/20854 fails
> spuriously.
> While JNI lookup is now moved into the static initializer of the
> `MappedMemoryUtils` class, this class might only get initialized while in the
> middle of a scoped context.
>
> To address this, I created a
On Fri, 6 Sep 2024 19:55:38 GMT, Chen Liang wrote:
>> Elide duplicate field CP entry creation, and reuse elements in the field CP
>> entry for field generation.
>
> Chen Liang has updated the pull request incrementally with one additional
> commit since the last revision:
>
> Do not try to c
On Fri, 6 Sep 2024 18:56:30 GMT, Chen Liang wrote:
> Elide duplicate field CP entry creation, and reuse elements in the field CP
> entry for field generation.
This pull request has now been integrated.
Changeset: a9bb0433
Author:Chen Liang
URL:
https://git.openjdk.org/jdk/commit/a9
On Mon, 9 Sep 2024 11:42:25 GMT, Aleksei Efimov wrote:
>> This PR proposes the following changes to address wrong timeout computations
>> in the `com.sun.jndi.dns.DnsClient`:
>> - The `DnsClient` has been updated to use a monotonic high-resolution (nano)
>> clock. The existing `Timeout` test ha
On Mon, 9 Sep 2024 14:42:41 GMT, Aleksei Efimov wrote:
>> src/jdk.naming.dns/share/classes/com/sun/jndi/dns/DnsClient.java line 477:
>>
>>> 475: long elapsedMillis =
>>> TimeUnit.NANOSECONDS.toMillis(end - start);
>>> 476: // Setting the Math.clamp min to
On Mon, 9 Sep 2024 13:58:51 GMT, Daniel Jeliński wrote:
>> Aleksei Efimov has updated the pull request incrementally with two
>> additional commits since the last revision:
>>
>> - guard against possible integer value overflows
>> - make startTime a local variable
>
> src/jdk.naming.dns/share
On Sat, 7 Sep 2024 00:40:24 GMT, Stuart Marks wrote:
>> From the bug description:
>> ForceGC would be improved by moving the Reference.reachabilityFence() calls
>> for 'obj' and 'ref'.
>>
>> Reference.reachabilityFence(obj) is currently placed after 'obj' has been
>> set to null, so effectivel
On Mon, 9 Sep 2024 05:01:26 GMT, David Holmes wrote:
>> test/lib/jdk/test/lib/util/ForceGC.java line 82:
>>
>>> 80: PhantomReference ref = new PhantomReference<>(obj,
>>> queue);
>>> 81: Reference.reachabilityFence(obj);
>>> 82: obj = null;
>>
>> You're right to questio
On Mon, 9 Sep 2024 01:53:01 GMT, Shaojin Wen wrote:
>> This is a follow-up to PR #20273, which improves performance when the number
>> of parameters exceeds 20.
>>
>> When the number of parameters is large, the possibility of reuse will be
>> lower, so we can use the static concat method and w
On Mon, 9 Sep 2024 12:57:17 GMT, Maurizio Cimadamore
wrote:
> The new test added by https://github.com/openjdk/jdk/pull/20854 fails
> spuriously.
> While JNI lookup is now moved into the static initializer of the
> `MappedMemoryUtils` class, this class might only get initialized while in the
On Fri, 6 Sep 2024 19:55:38 GMT, Chen Liang wrote:
>> Elide duplicate field CP entry creation, and reuse elements in the field CP
>> entry for field generation.
>
> Chen Liang has updated the pull request incrementally with one additional
> commit since the last revision:
>
> Do not try to c
On Mon, 9 Sep 2024 11:16:32 GMT, Claes Redestad wrote:
> Refactor ClassFileImpl so that Option classes are not eagerly loaded.
>
> - Reduces number of classes loaded on various startup tests (typically 15
> classes less)
> - Reduces size of the default CDS archive by ~30Kb
This pull request ha
On Mon, 9 Sep 2024 11:16:32 GMT, Claes Redestad wrote:
> Refactor ClassFileImpl so that Option classes are not eagerly loaded.
>
> - Reduces number of classes loaded on various startup tests (typically 15
> classes less)
> - Reduces size of the default CDS archive by ~30Kb
Thanks for the revie
On Mon, 9 Sep 2024 11:42:25 GMT, Aleksei Efimov wrote:
>> This PR proposes the following changes to address wrong timeout computations
>> in the `com.sun.jndi.dns.DnsClient`:
>> - The `DnsClient` has been updated to use a monotonic high-resolution (nano)
>> clock. The existing `Timeout` test ha
On Mon, 9 Sep 2024 12:57:17 GMT, Maurizio Cimadamore
wrote:
> The new test added by https://github.com/openjdk/jdk/pull/20854 fails
> spuriously.
> While JNI lookup is now moved into the static initializer of the
> `MappedMemoryUtils` class, this class might only get initialized while in the
On Mon, 9 Sep 2024 12:57:17 GMT, Maurizio Cimadamore
wrote:
> The new test added by https://github.com/openjdk/jdk/pull/20854 fails
> spuriously.
> While JNI lookup is now moved into the static initializer of the
> `MappedMemoryUtils` class, this class might only get initialized while in the
On Mon, 9 Sep 2024 13:03:49 GMT, Julian Waters wrote:
>> I have verified this change locally, include build hsdis.so and check the
>> functional with command java -XX:+UnlockDiagnosticVMOptions
>> -XX:+PrintAssembly -version. The verified show this change for hsdis.so work
>> normally.
>
> Ok,
On Mon, 9 Sep 2024 09:50:59 GMT, SendaoYan wrote:
> Hi all,
> This PR delete tedious bool type define in
> `src/java.base/unix/native/libjsig/jsig.c` and
> `src/utils/hsdis/binutils/hsdis-binutils.c`. After JEP
> 347([JDK-8246032](https://bugs.openjdk.org/browse/JDK-8246032)), I think we
>
On Mon, 9 Sep 2024 12:56:56 GMT, SendaoYan wrote:
>> src/utils/hsdis/binutils/hsdis-binutils.c line 67:
>>
>>> 65: #include "hsdis.h"
>>> 66:
>>> 67: #ifndef bool
>>
>> I'm a little worried about this change. hsdis may really need an int here.
>> If that turns out to not be the case then I'll
On Mon, 9 Sep 2024 12:57:17 GMT, Maurizio Cimadamore
wrote:
> The new test added by https://github.com/openjdk/jdk/pull/20854 fails
> spuriously.
> While JNI lookup is now moved into the static initializer of the
> `MappedMemoryUtils` class, this class might only get initialized while in the
The new test added by https://github.com/openjdk/jdk/pull/20854 fails
spuriously.
While JNI lookup is now moved into the static initializer of the
`MappedMemoryUtils` class, this class might only get initialized while in the
middle of a scoped context.
To address this, I created a new proxy int
On Mon, 9 Sep 2024 12:07:54 GMT, Julian Waters wrote:
>> Hi all,
>> This PR delete tedious bool type define in
>> `src/java.base/unix/native/libjsig/jsig.c` and
>> `src/utils/hsdis/binutils/hsdis-binutils.c`. After JEP
>> 347([JDK-8246032](https://bugs.openjdk.org/browse/JDK-8246032)), I thi
On Mon, 9 Sep 2024 12:06:25 GMT, Julian Waters wrote:
>> Hi all,
>> This PR delete tedious bool type define in
>> `src/java.base/unix/native/libjsig/jsig.c` and
>> `src/utils/hsdis/binutils/hsdis-binutils.c`. After JEP
>> 347([JDK-8246032](https://bugs.openjdk.org/browse/JDK-8246032)), I thi
On Fri, 6 Sep 2024 17:51:15 GMT, Jorn Vernee wrote:
>> As discussed in the JBS issue:
>>
>> FFM upcall stubs embed a `Method*` of the target method in the stub. This
>> `Method*` is read from the `LambdaForm::vmentry` field associated with the
>> target method handle at the time when the upcal
On Mon, 9 Sep 2024 09:50:59 GMT, SendaoYan wrote:
> Hi all,
> This PR delete tedious bool type define in
> `src/java.base/unix/native/libjsig/jsig.c` and
> `src/utils/hsdis/binutils/hsdis-binutils.c`. After JEP
> 347([JDK-8246032](https://bugs.openjdk.org/browse/JDK-8246032)), I think we
>
On Thu, 5 Sep 2024 21:46:34 GMT, Pavel Rappo wrote:
> This fixes some of the recently discovered [issues] with the block variants
> of the specification tags. While reviewing, please check the proposed changes
> against the actual specifications. Since the specifications for JDK 23 are
> not y
On Mon, 9 Sep 2024 09:19:38 GMT, Pavel Rappo wrote:
>> This fixes some of the recently discovered [issues] with the block variants
>> of the specification tags. While reviewing, please check the proposed
>> changes against the actual specifications. Since the specifications for JDK
>> 23 are n
On Fri, 6 Sep 2024 16:58:20 GMT, Daniel Fuchs wrote:
>> Aleksei Efimov has updated the pull request incrementally with two
>> additional commits since the last revision:
>>
>> - guard against possible integer value overflows
>> - make startTime a local variable
>
> test/jdk/com/sun/jndi/dns/C
On Sat, 7 Sep 2024 13:12:23 GMT, Jaikiran Pai wrote:
>> Aleksei Efimov has updated the pull request incrementally with two
>> additional commits since the last revision:
>>
>> - guard against possible integer value overflows
>> - make startTime a local variable
>
> src/jdk.naming.dns/share/cl
> This PR proposes the following changes to address wrong timeout computations
> in the `com.sun.jndi.dns.DnsClient`:
> - The `DnsClient` has been updated to use a monotonic high-resolution (nano)
> clock. The existing `Timeout` test has also been updated to use the nano
> clock to measure obser
On Mon, 9 Sep 2024 11:16:32 GMT, Claes Redestad wrote:
> Refactor ClassFileImpl so that Option classes are not eagerly loaded.
>
> - Reduces number of classes loaded on various startup tests (typically 15
> classes less)
> - Reduces size of the default CDS archive by ~30Kb
It looks good to me
Refactor ClassFileImpl so that Option classes are not eagerly loaded.
- Reduces number of classes loaded on various startup tests (typically 15
classes less)
- Reduces size of the default CDS archive by ~30Kb
-
Commit messages:
- Cleanup, fix failing test
- Refactor ClassFileImpl
On Thu, 18 Apr 2024 13:53:34 GMT, Oussama Louati wrote:
> An indify tool in j.l.i tests (also in vmTestBase) convert some source-code
> private static methods with MT_ MH_, and INDY_ prefixes into MethodHandle,
> MethodType, and CallSite constants.
> ### Purpose of Indify
>
> - **Transformati
Hi all,
This PR delete tedious bool type define in
`src/java.base/unix/native/libjsig/jsig.c` and
`src/utils/hsdis/binutils/hsdis-binutils.c`. After JEP
347([JDK-8246032](https://bugs.openjdk.org/browse/JDK-8246032)), I think we can
"#include " to use bool type directly, like
[string.h](http
On Mon, 9 Sep 2024 06:28:45 GMT, Alan Bateman wrote:
>> This PR proposes to add a JDK-specific monitoring and management interface
>> for the virtual thread scheduler. The interface is named
>> [VirtualThreadSchedulerMXBean](https://download.java.net/java/early_access/loom/docs/api/jdk.manageme
> This fixes some of the recently discovered [issues] with the block variants
> of the specification tags. While reviewing, please check the proposed changes
> against the actual specifications. Since the specifications for JDK 23 are
> not yet available in the HTML format, you can use the speci
On Fri, 6 Sep 2024 09:16:28 GMT, Pavel Rappo wrote:
>> This fixes some of the recently discovered [issues] with the block variants
>> of the specification tags. While reviewing, please check the proposed
>> changes against the actual specifications. Since the specifications for JDK
>> 23 are n
On Fri, 6 Sep 2024 08:45:53 GMT, Alan Bateman wrote:
>> fixed spelling to be consistent with the rest of the man page.
>
> I checked the OED and it does seem to be uncountable, which makes me wonder
> about other places, e.g. JLS 7.7.1.
@AlanBateman @pavelrappo I did double check. "dependence"
> Hi All,
>
> As per the discussion on panama-dev mailing list[1], patch adds the support
> following new vector operators.
>
>
> . SUADD : Saturating unsigned addition.
> . SADD: Saturating signed addition.
> . SUSUB : Saturating unsigned subtraction.
> . SSUB:
On Mon, 9 Sep 2024 07:06:22 GMT, Matthias Baesken wrote:
>> When running jtreg test java/lang/ProcessHandle/PermissionTest.java on
>> macOS, a few times this error occurs :
>>
>> java.lang.RuntimeException: Cannot allocate memory
>>at java.base/java.lang.ProcessHandleImpl.getProcessPids
On Tue, 3 Sep 2024 14:09:23 GMT, Matthias Baesken wrote:
> When running jtreg test java/lang/ProcessHandle/PermissionTest.java on macOS,
> a few times this error occurs :
>
> java.lang.RuntimeException: Cannot allocate memory
>at java.base/java.lang.ProcessHandleImpl.getProcessPids0(Nat
On Mon, 9 Sep 2024 07:06:22 GMT, Matthias Baesken wrote:
>> When running jtreg test java/lang/ProcessHandle/PermissionTest.java on
>> macOS, a few times this error occurs :
>>
>> java.lang.RuntimeException: Cannot allocate memory
>>at java.base/java.lang.ProcessHandleImpl.getProcessPids
On Fri, 6 Sep 2024 07:05:22 GMT, Matthias Baesken wrote:
>> When running jtreg test java/lang/ProcessHandle/PermissionTest.java on
>> macOS, a few times this error occurs :
>>
>> java.lang.RuntimeException: Cannot allocate memory
>>at java.base/java.lang.ProcessHandleImpl.getProcessPids
> When running jtreg test java/lang/ProcessHandle/PermissionTest.java on macOS,
> a few times this error occurs :
>
> java.lang.RuntimeException: Cannot allocate memory
>at java.base/java.lang.ProcessHandleImpl.getProcessPids0(Native Method)
>at
> java.base/java.lang.ProcessHandl
90 matches
Mail list logo