On Fri, 22 Aug 2025 15:41:21 GMT, Albert Mingkun Yang wrote:
>> Leo Korinth has updated the pull request incrementally with one additional
>> commit since the last revision:
>>
>> update testing.md, remove makefile link, fix bad text
>
> test/hotspot/jtreg/compiler/tiered/Level2RecompilationT
On Sun, 24 Aug 2025 07:59:05 GMT, Alan Bateman wrote:
> Under load conditions, testVirtualThreadStartAndEnd can fail because the JFR
> recording doesn't have a VirtualThreadEndEvent recorded for all virtual
> threads. This is a test issue. ExecutorService::close waits for all tasks
> (not thre
While I'm sympathetic to the use-case, I think adding such a method to List is
the wrong move—you could equally argue that there should be a randomIterator(),
a randomSet(), a randomAdd(). And it wouldn't be coherent with the
specification of the List-methods to create a wrapper-type which would
On Fri, 22 Aug 2025 18:43:29 GMT, Albert Mingkun Yang wrote:
>>> @prrace the change maintains the same absolute timeout value for those
>>> tests. Before the default of 120 was multiplied by the timeoutFactor of 4
>>> to given 480. Now the value 480 is multiplied by the timeoutFactor of 1 to
>
On 23/08/2025 20:36, Daniel Tavares wrote:
:
*Proposed Method*
default T getRandom() {
if (isEmpty()) return null;
int index = ThreadLocalRandom.current().nextInt(size());
return get(index);
}
Add Lists that are mutable and support concurrent access to your list to
think about. Th
On Sun, 24 Aug 2025 07:59:05 GMT, Alan Bateman wrote:
> Under load conditions, testVirtualThreadStartAndEnd can fail because the JFR
> recording doesn't have a VirtualThreadEndEvent recorded for all virtual
> threads. This is a test issue. ExecutorService::close waits for all tasks
> (not thre
Under load conditions, testVirtualThreadStartAndEnd can fail because the JFR
recording doesn't have a VirtualThreadEndEvent recorded for all virtual
threads. This is a test issue. ExecutorService::close waits for all tasks (not
threads) to finish. For ThreadPerTaskExecutor the thread terminates