Re: RFR: 8283325: US_ASCII decoder relies on String.decodeASCII being exhaustive [v2]

2022-03-17 Thread Claes Redestad
On Thu, 17 Mar 2022 19:47:14 GMT, Claes Redestad wrote: >> Adjust `String.decodeASCII` to deal with the possibility that >> `StringCoding.countPositives` can return a value less than the exact number >> of leading positive bytes. This is the likely cause of a number of >> intermittent but some

Re: RFR: 8283325: US_ASCII decoder relies on String.decodeASCII being exhaustive [v2]

2022-03-17 Thread Roger Riggs
On Thu, 17 Mar 2022 19:47:14 GMT, Claes Redestad wrote: >> Adjust `String.decodeASCII` to deal with the possibility that >> `StringCoding.countPositives` can return a value less than the exact number >> of leading positive bytes. This is the likely cause of a number of >> intermittent but some

Re: RFR: 8283325: US_ASCII decoder relies on String.decodeASCII being exhaustive [v2]

2022-03-17 Thread Daniel D . Daugherty
On Thu, 17 Mar 2022 19:47:14 GMT, Claes Redestad wrote: >> Adjust `String.decodeASCII` to deal with the possibility that >> `StringCoding.countPositives` can return a value less than the exact number >> of leading positive bytes. This is the likely cause of a number of >> intermittent but some

Re: RFR: 8283325: US_ASCII decoder relies on String.decodeASCII being exhaustive [v2]

2022-03-17 Thread Claes Redestad
> Adjust `String.decodeASCII` to deal with the possibility that > `StringCoding.countPositives` can return a value less than the exact number > of leading positive bytes. This is the likely cause of a number of > intermittent but somewhat common errors on aarch64 tests in our CI. Claes Redestad

Re: RFR: 8283325: US_ASCII decoder relies on String.decodeASCII being exhaustive

2022-03-17 Thread Daniel D . Daugherty
On Thu, 17 Mar 2022 16:08:42 GMT, Claes Redestad wrote: > Adjust `String.decodeASCII` to deal with the possibility that > `StringCoding.countPositives` can return a value less than the exact number > of leading positive bytes. This is the likely cause of a number of > intermittent but somewhat

Re: RFR: 8283325: US_ASCII decoder relies on String.decodeASCII being exhaustive

2022-03-17 Thread Roger Riggs
On Thu, 17 Mar 2022 16:08:42 GMT, Claes Redestad wrote: > Adjust `String.decodeASCII` to deal with the possibility that > `StringCoding.countPositives` can return a value less than the exact number > of leading positive bytes. This is the likely cause of a number of > intermittent but somewhat