Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 00000000000000011102230246251565404236316680908203126 (0.26 sec)

  1. src/math/big/ratconv_test.go

    	// Exactly halfway between 1 and math.Nextafter(1, 2).
    	// Round to even (down).
    	"1.00000000000000011102230246251565404236316680908203125",
    	// Slightly lower; still round down.
    	"1.00000000000000011102230246251565404236316680908203124",
    	// Slightly higher; round up.
    	"1.00000000000000011102230246251565404236316680908203126",
    	// Slightly higher, but you have to read all the way to the end.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  2. src/strconv/strconv_test.go

    // license that can be found in the LICENSE file.
    
    package strconv_test
    
    import (
    	"runtime"
    	. "strconv"
    	"strings"
    	"testing"
    )
    
    var (
    	globalBuf [64]byte
    	nextToOne = "1.00000000000000011102230246251565404236316680908203125" + strings.Repeat("0", 10000) + "1"
    
    	mallocTest = []struct {
    		count int
    		desc  string
    		fn    func()
    	}{
    		{0, `AppendInt(localBuf[:0], 123, 10)`, func() {
    			var localBuf [64]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 20:29:22 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  3. src/strconv/atof_test.go

    	{"0x1.000000000000081p0", "1.0000000000000002", nil},
    	{"0x1.00000000000009p0", "1.0000000000000002", nil},
    	// Slightly higher, but you have to read all the way to the end.
    	{"1.00000000000000011102230246251565404236316680908203125" + strings.Repeat("0", 10000) + "1", "1.0000000000000002", nil},
    	{"0x1.00000000000008" + strings.Repeat("0", 10000) + "1p0", "1.0000000000000002", nil},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
Back to top