Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 4G (0.07 sec)

  1. src/math/big/floatexample_test.go

    	fmt.Println("   x     y  cmp")
    	fmt.Println("---------------")
    	for _, x64 := range operands {
    		x := big.NewFloat(x64)
    		for _, y64 := range operands {
    			y := big.NewFloat(y64)
    			fmt.Printf("%4g  %4g  %3d\n", x, y, x.Cmp(y))
    		}
    		fmt.Println()
    	}
    
    	// Output:
    	//    x     y  cmp
    	// ---------------
    	// -Inf  -Inf    0
    	// -Inf  -1.2   -1
    	// -Inf    -0   -1
    	// -Inf     0   -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/os/os_test.go

    		{0, io.SeekStart, 0},
    		{-1, io.SeekEnd, int64(len(data)) - 1},
    		{1 << 33, io.SeekStart, 1 << 33},
    		{1 << 33, io.SeekEnd, 1<<33 + int64(len(data))},
    
    		// Issue 21681, Windows 4G-1, etc:
    		{1<<32 - 1, io.SeekStart, 1<<32 - 1},
    		{0, io.SeekCurrent, 1<<32 - 1},
    		{2<<32 - 1, io.SeekStart, 2<<32 - 1},
    		{0, io.SeekCurrent, 2<<32 - 1},
    	}
    	for i, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top