Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for 0o8123 (0.11 sec)

  1. src/cmd/compile/internal/syntax/scanner_test.go

    		// octals
    		{IntLit, "0o0", "0o0", ""},
    		{IntLit, "0o1234", "0o1234", ""},
    		{IntLit, "0O1234", "0O1234", ""},
    
    		{IntLit, "0o", "0o", "octal literal has no digits"},
    		{IntLit, "0o8123", "0o8123", "invalid digit '8' in octal literal"},
    		{IntLit, "0o1293", "0o1293", "invalid digit '9' in octal literal"},
    		{IntLit, "0o12a3", "0o12 a3", ""}, // only accept 0-9
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  2. src/text/scanner/scanner_test.go

    		// octals
    		{Int, "0o0", "0o0", ""},
    		{Int, "0o1234", "0o1234", ""},
    		{Int, "0O1234", "0O1234", ""},
    
    		{Int, "0o", "0o", "octal literal has no digits"},
    		{Int, "0o8123", "0o8123", "invalid digit '8' in octal literal"},
    		{Int, "0o1293", "0o1293", "invalid digit '9' in octal literal"},
    		{Int, "0o12a3", "0o12 a3", ""}, // only accept 0-9
    
    		// octal floats (invalid)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 17 03:41:50 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  3. src/go/scanner/scanner_test.go

    		// octals
    		{token.INT, "0o0", "0o0", ""},
    		{token.INT, "0o1234", "0o1234", ""},
    		{token.INT, "0O1234", "0O1234", ""},
    
    		{token.INT, "0o", "0o", "octal literal has no digits"},
    		{token.INT, "0o8123", "0o8123", "invalid digit '8' in octal literal"},
    		{token.INT, "0o1293", "0o1293", "invalid digit '9' in octal literal"},
    		{token.INT, "0o12a3", "0o12 a3", ""}, // only accept 0-9
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  4. src/cmd/gofmt/testdata/go2numbers.golden

    	_ = 0o_0
    	_ = 0o_1234
    	_ = 0o0123_4567
    
    	_ = 0o_0
    	_ = 0o_1234
    	_ = 0o0123_4567
    
    	// binaries
    	_ = 0b0
    	_ = 0b1011
    	_ = 0b00101101
    
    	_ = 0b0
    	_ = 0b1011
    	_ = 0b00101101
    
    	_ = 0b_0
    	_ = 0b10_11
    	_ = 0b_0010_1101
    
    	// decimal floats
    	_ = 0.
    	_ = 123.
    	_ = 0123.
    
    	_ = .0
    	_ = .123
    	_ = .0123
    
    	_ = 0e0
    	_ = 123e+0
    	_ = 0123e-1
    
    	_ = 0e-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 21 17:24:29 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  5. src/go/printer/testdata/go2numbers.norm

    	_	= 0o_0
    	_	= 0o_1234
    	_	= 0o0123_4567
    
    	_	= 0o_0
    	_	= 0o_1234
    	_	= 0o0123_4567
    
    	// binaries
    	_	= 0b0
    	_	= 0b1011
    	_	= 0b00101101
    
    	_	= 0b0
    	_	= 0b1011
    	_	= 0b00101101
    
    	_	= 0b_0
    	_	= 0b10_11
    	_	= 0b_0010_1101
    
    	// decimal floats
    	_	= 0.
    	_	= 123.
    	_	= 0123.
    
    	_	= .0
    	_	= .123
    	_	= .0123
    
    	_	= 0e0
    	_	= 123e+0
    	_	= 0123e-1
    
    	_	= 0e-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 17 02:15:01 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  6. src/go/printer/testdata/go2numbers.input

    	_ = 0o_0
    	_ = 0o_1234
    	_ = 0o0123_4567
    
    	_ = 0O_0
    	_ = 0O_1234
    	_ = 0O0123_4567
    
    	// binaries
    	_ = 0b0
    	_ = 0b1011
    	_ = 0b00101101
    
    	_ = 0B0
    	_ = 0B1011
    	_ = 0B00101101
    
    	_ = 0b_0
    	_ = 0b10_11
    	_ = 0b_0010_1101
    
    	// decimal floats
    	_ = 0.
    	_ = 123.
    	_ = 0123.
    
    	_ = .0
    	_ = .123
    	_ = .0123
    
    	_ = 0e0
    	_ = 123e+0
    	_ = 0123E-1
    
    	_ = 0e-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 21:54:06 UTC 2020
    - 2K bytes
    - Viewed (0)
  7. src/cmd/gofmt/testdata/go2numbers.input

    	_ = 0o_0
    	_ = 0o_1234
    	_ = 0o0123_4567
    
    	_ = 0O_0
    	_ = 0O_1234
    	_ = 0O0123_4567
    
    	// binaries
    	_ = 0b0
    	_ = 0b1011
    	_ = 0b00101101
    
    	_ = 0B0
    	_ = 0B1011
    	_ = 0B00101101
    
    	_ = 0b_0
    	_ = 0b10_11
    	_ = 0b_0010_1101
    
    	// decimal floats
    	_ = 0.
    	_ = 123.
    	_ = 0123.
    
    	_ = .0
    	_ = .123
    	_ = .0123
    
    	_ = 0e0
    	_ = 123e+0
    	_ = 0123E-1
    
    	_ = 0e-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 21 17:24:29 UTC 2019
    - 2K bytes
    - Viewed (0)
  8. src/go/printer/testdata/go2numbers.golden

    	_	= 0o_0
    	_	= 0o_1234
    	_	= 0o0123_4567
    
    	_	= 0O_0
    	_	= 0O_1234
    	_	= 0O0123_4567
    
    	// binaries
    	_	= 0b0
    	_	= 0b1011
    	_	= 0b00101101
    
    	_	= 0B0
    	_	= 0B1011
    	_	= 0B00101101
    
    	_	= 0b_0
    	_	= 0b10_11
    	_	= 0b_0010_1101
    
    	// decimal floats
    	_	= 0.
    	_	= 123.
    	_	= 0123.
    
    	_	= .0
    	_	= .123
    	_	= .0123
    
    	_	= 0e0
    	_	= 123e+0
    	_	= 0123E-1
    
    	_	= 0e-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 21:54:06 UTC 2020
    - 2K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/literals.go

    // of equal values.
    
    package literals
    
    func _() {
    	// 0-octals
    	assert(0_123 == 0123)
    	assert(0123_456 == 0123456)
    
    	// decimals
    	assert(1_234 == 1234)
    	assert(1_234_567 == 1234567)
    
    	// hexadecimals
    	assert(0X_0 == 0)
    	assert(0X_1234 == 0x1234)
    	assert(0X_CAFE_f00d == 0xcafef00d)
    
    	// octals
    	assert(0o0 == 0)
    	assert(0o1234 == 01234)
    	assert(0o01234567 == 01234567)
    
    	assert(0O0 == 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/compact/parents.go

    	0x0000, 0x0120, 0x0120, 0x0000, 0x0123, 0x0123, 0x0123, 0x0123,
    	0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123,
    	0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123,
    	0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123,
    	// Entry 140 - 17F
    	0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123,
    	0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123, 0x0123,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top