Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 1_2_3_4_5 (0.95 sec)

  1. src/strconv/atoi_test.go

    	{"0O", 0, 0, ErrSyntax},
    	{"0o377", 0, 255, nil},
    	{"0O377", 0, 255, nil},
    
    	// underscores allowed with base == 0 only
    	{"1_2_3_4_5", 0, 12345, nil}, // base 0 => 10
    	{"_12345", 0, 0, ErrSyntax},
    	{"1__2345", 0, 0, ErrSyntax},
    	{"12345_", 0, 0, ErrSyntax},
    
    	{"1_2_3_4_5", 10, 0, ErrSyntax}, // base 10
    	{"_12345", 10, 0, ErrSyntax},
    	{"1__2345", 10, 0, ErrSyntax},
    	{"12345_", 10, 0, ErrSyntax},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. src/html/template/exec_test.go

    	{"hex float", "{{print +0x1.ep+2}}", "7.5", tVal, true},
    	{"hex float _", "{{print +0x_1.e_0p+0_2}}", "7.5", tVal, true},
    	{"HEX float", "{{print +0X1.EP+2}}", "7.5", tVal, true},
    	{"print multi", "{{print 1_2_3_4 7.5_00_00_00}}", "1234 7.5", tVal, true},
    	{"print multi2", "{{print 1234 0x0_1.e_0p+02}}", "1234 7.5", tVal, true},
    
    	// Fixed bugs.
    	// Must separate dot and receiver; otherwise args are evaluated with dot set to variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. src/text/template/exec_test.go

    	{"hex float", "{{print +0x1.ep+2}}", "7.5", tVal, true},
    	{"hex float _", "{{print +0x_1.e_0p+0_2}}", "7.5", tVal, true},
    	{"HEX float", "{{print +0X1.EP+2}}", "7.5", tVal, true},
    	{"print multi", "{{print 1_2_3_4 7.5_00_00_00}}", "1234 7.5", tVal, true},
    	{"print multi2", "{{print 1234 0x0_1.e_0p+02}}", "1234 7.5", tVal, true},
    
    	// Fixed bugs.
    	// Must separate dot and receiver; otherwise args are evaluated with dot set to variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top