On Fri, 26 Aug 2022 13:55:22 GMT, Aleksey Shipilev wrote:
> Look at implementation and figure out what happens if you do:
>
>
> computeHash("SHA-1") = someHash;
> computeHash("SHA-256") = ...?
>
>
> The caching method should actually check the algorithms match.
>
> Not a bug at this point,
On Fri, 26 Aug 2022 15:06:16 GMT, Aleksey Shipilev wrote:
>> Look at implementation and figure out what happens if you do:
>>
>>
>> computeHash("SHA-1") = someHash;
>> computeHash("SHA-256") = ...?
>>
>>
>> The caching method should actually check the algorithms match.
>>
>> Not a bug at t
On Sat, 27 Aug 2022 08:18:10 GMT, Alan Bateman wrote:
>> Stuart Marks has updated the pull request incrementally with one additional
>> commit since the last revision:
>>
>> Minor adjustments
>
> src/java.base/share/classes/java/lang/Thread.java line 70:
>
>> 68: * The newly started thread
On Fri, 26 Aug 2022 23:15:42 GMT, Stuart Marks wrote:
>> The concept of the shutdown sequence needs to be specified more clearly.
>> This PR adds text for this into the class specification of
>> `java.lang.Runtime`. Also includes adjustments to related areas in
>> `addShutdownHook`, `halt`, an
On Tue, 2 Aug 2022 13:57:03 GMT, iaroslavski wrote:
>> Sorting:
>>
>> - adopt radix sort for sequential and parallel sorts on
>> int/long/float/double arrays (almost random and length > 6K)
>> - fix tryMergeRuns() to better handle case when the last run is a single
>> element
>> - minor javado
On Fri, 26 Aug 2022 16:48:03 GMT, Bill Huang wrote:
> Provided coverage for XPath operators. Operators include:
> * Boolean operators: or, and, =, !=, <, <=, >, >=
> * Number operators: +, -, *, div, mod
> * Union operator: |
This pull request has now been integrated.
Changeset: f6b63601
Author
Field `java.text.DateFormatSymbols#millisPerHour` is unused. It was unused in
initial OpenJDK sources.
-
Commit messages:
- [PATCH] Unused field DateFormatSymbols.millisPerHour
Changes: https://git.openjdk.org/jdk/pull/10005/files
Webrev: https://webrevs.openjdk.org/?repo=jdk&pr=1
Couple of package-private classes in `java.text` package still use
`StringBuffer`: `MergeCollation` and `PatternEntry`.
StringBuffer is a legacy synchronized class. StringBuilder is a direct
replacement to StringBuffer which generally have better performance.
-
Commit messages:
- [