[#100309] How to use backport custom field — Jun Aruga <jaruga@...>
Please allow my ignorance.
9 messages
2020/10/06
[#100310] Re: How to use backport custom field
— "NARUSE, Yui" <naruse@...>
2020/10/06
"Backport custom field" is only available for tickets whose tracker is "Bug".
[#100311] Re: How to use backport custom field
— Jun Aruga <jaruga@...>
2020/10/06
On Tue, Oct 6, 2020 at 4:44 PM NARUSE, Yui <[email protected]> wrote:
[#100314] Re: How to use backport custom field
— "NARUSE, Yui" <naruse@...>
2020/10/06
Thank you for confirmation.
[#100322] Re: How to use backport custom field
— Jun Aruga <jaruga@...>
2020/10/07
On Tue, Oct 6, 2020 at 7:25 PM NARUSE, Yui <[email protected]> wrote:
[#100326] Re: How to use backport custom field
— "NARUSE, Yui" <naruse@...>
2020/10/07
I added you to "Reporter" role in the project
[#100327] Re: How to use backport custom field
— Jun Aruga <jaruga@...>
2020/10/07
On Wed, Oct 7, 2020 at 1:42 PM NARUSE, Yui <[email protected]> wrote:
[#100358] [BUG] ruby 2.6.6 warning with encdb.so — shiftag <shiftag@...>
Hello,
1 message
2020/10/10
[ruby-core:100297] [Ruby master Bug#17214] BigDecimal exponentiation gives incorrect results
From:
foldes.laszlo2@...
Date:
2020-10-05 00:35:36 UTC
List:
ruby-core #100297
Issue #17214 has been reported by karatedog (Fdes L疽zl.
----------------------------------------
Bug #17214: BigDecimal exponentiation gives incorrect results
https://bugs.ruby-lang.org/issues/17214
* Author: karatedog (Fdes L疽zl鶇
* Status: Open
* Priority: Normal
* ruby -v: ruby 2.7.1p83 (2020-03-31 revision a0c7c23c9c) [x86_64-linux]
* Backport: 2.5: UNKNOWN, 2.6: UNKNOWN, 2.7: UNKNOWN
----------------------------------------
> (BigDecimal("2222") ** BigDecimal("3.5")).to_i
=> 517135311000
This is an incorrect value.
> 2222 ** 3.5
=> 517135308457.25256
This is the correct value (within Float precision).
As the Base gets larger, the problem is more visible:
> (BigDecimal("22222") ** BigDecimal("3.5")).to_i
=> 1635840670000000
Wrong value, number of trailing zeroes increase.
> 22222 ** 3.5
=> 1635840670214066.5 (nearing maximum Float precision)
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:[email protected]?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>