Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 012345678901234567889i (0.21 sec)

  1. src/go/printer/testdata/declarations.input

    	_ = 123456789012345678890
    	_ = 01234567
    	_ = 0xcafebabe
    	_ = 0.
    	_ = .0
    	_ = 3.14159265
    	_ = 1e0
    	_ = 1e+100
    	_ = 1e-100
    	_ = 2.71828e-1000
    	_ = 0i
    	_ = 1i
    	_ = 012345678901234567889i
    	_ = 123456789012345678890i
    	_ = 0.i
    	_ = .0i
    	_ = 3.14159265i
    	_ = 1e0i
    	_ = 1e+100i
    	_ = 1e-100i
    	_ = 2.71828e-1000i
    	_ = 'a'
    	_ = '\000'
    	_ = '\xFF'
    	_ = '\uff16'
    	_ = '\U0000ff16'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.golden

    	_	= 123456789012345678890
    	_	= 01234567
    	_	= 0xcafebabe
    	_	= 0.
    	_	= .0
    	_	= 3.14159265
    	_	= 1e0
    	_	= 1e+100
    	_	= 1e-100
    	_	= 2.71828e-1000
    	_	= 0i
    	_	= 1i
    	_	= 012345678901234567889i
    	_	= 123456789012345678890i
    	_	= 0.i
    	_	= .0i
    	_	= 3.14159265i
    	_	= 1e0i
    	_	= 1e+100i
    	_	= 1e-100i
    	_	= 2.71828e-1000i
    	_	= 'a'
    	_	= '\000'
    	_	= '\xFF'
    	_	= '\uff16'
    	_	= '\U0000ff16'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Literal, "1e0", 0, 0},
    	{_Literal, "1e+100", 0, 0},
    	{_Literal, "1e-100", 0, 0},
    	{_Literal, "2.71828e-1000", 0, 0},
    	{_Literal, "0i", 0, 0},
    	{_Literal, "1i", 0, 0},
    	{_Literal, "012345678901234567889i", 0, 0},
    	{_Literal, "123456789012345678890i", 0, 0},
    	{_Literal, "0.i", 0, 0},
    	{_Literal, ".0i", 0, 0},
    	{_Literal, "3.14159265i", 0, 0},
    	{_Literal, "1e0i", 0, 0},
    	{_Literal, "1e+100i", 0, 0},
    	{_Literal, "1e-100i", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  4. src/go/scanner/scanner_test.go

    	{token.FLOAT, "1e+100", literal},
    	{token.FLOAT, "1e-100", literal},
    	{token.FLOAT, "2.71828e-1000", literal},
    	{token.IMAG, "0i", literal},
    	{token.IMAG, "1i", literal},
    	{token.IMAG, "012345678901234567889i", literal},
    	{token.IMAG, "123456789012345678890i", literal},
    	{token.IMAG, "0.i", literal},
    	{token.IMAG, ".0i", literal},
    	{token.IMAG, "3.14159265i", literal},
    	{token.IMAG, "1e0i", literal},
    	{token.IMAG, "1e+100i", literal},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  5. src/archive/tar/testdata/pax-nil-sparse-data.tar

    sparse.db 01234567890123456789...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 22:38:45 UTC 2017
    - 4K bytes
    - Viewed (0)
  6. src/archive/tar/testdata/gnu-nil-sparse-data.tar

    sparse.db 01234567890123456789...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 22:38:45 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  7. src/strconv/atof_test.go

    	{"-0e+0", "-0", nil},
    	{"+0e+0", "0", nil},
    	{"0e+01234567890123456789", "0", nil},
    	{"0.00e-01234567890123456789", "0", nil},
    	{"-0e+01234567890123456789", "-0", nil},
    	{"-0.00e-01234567890123456789", "-0", nil},
    	{"0x0p+01234567890123456789", "0", nil},
    	{"0x0.00p-01234567890123456789", "0", nil},
    	{"-0x0p+01234567890123456789", "-0", nil},
    	{"-0x0.00p-01234567890123456789", "-0", nil},
    
    	{"0e291", "0", nil}, // issue 15364
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  8. src/strings/strings_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top