Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for 0123456x (0.62 sec)

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

    		{IntLit, "01293", "01293", "invalid digit '9' in octal literal"},
    		{IntLit, "0F.", "0 F .", ""}, // only accept 0-9
    		{IntLit, "0123F.", "0123 F .", ""},
    		{IntLit, "0123456x", "0123456 x", ""},
    
    		// decimals
    		{IntLit, "1", "1", ""},
    		{IntLit, "1234", "1234", ""},
    
    		{IntLit, "1f", "1 f", ""}, // only accept 0-9
    
    		{ImagLit, "0i", "0i", ""},
    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

    		{Int, "01293", "01293", "invalid digit '9' in octal literal"},
    		{Int, "0F.", "0 F .", ""}, // only accept 0-9
    		{Int, "0123F.", "0123 F .", ""},
    		{Int, "0123456x", "0123456 x", ""},
    
    		// decimals
    		{Int, "1", "1", ""},
    		{Int, "1234", "1234", ""},
    
    		{Int, "1f", "1 f", ""}, // only accept 0-9
    
    		// decimal floats
    		{Float, "0.", "0.", ""},
    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

    		{token.INT, "01293", "01293", "invalid digit '9' in octal literal"},
    		{token.INT, "0F.", "0 F .", ""}, // only accept 0-9
    		{token.INT, "0123F.", "0123 F .", ""},
    		{token.INT, "0123456x", "0123456 x", ""},
    
    		// decimals
    		{token.INT, "1", "1", ""},
    		{token.INT, "1234", "1234", ""},
    
    		{token.INT, "1f", "1 f", ""}, // only accept 0-9
    
    		{token.IMAG, "0i", "0i", ""},
    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/internal/types/testdata/check/literals.go

    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)
    	assert(0O1234 == 01234)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/cpu_assignment_test.go

    			topoSingleSocketHT,
    			cpuset.New(0, 1, 2, 3, 4, 5, 6, 7),
    			[]int{0, 1, 2, 3},
    		},
    		{
    			"single socket HT, 3 cores free",
    			topoSingleSocketHT,
    			cpuset.New(0, 1, 2, 4, 5, 6),
    			[]int{0, 1, 2},
    		},
    		{
    			"single socket HT, 3 cores free (1 partially consumed)",
    			topoSingleSocketHT,
    			cpuset.New(0, 1, 2, 3, 4, 5, 6),
    			[]int{0, 1, 2},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 17:31:37 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  6. src/cmd/internal/notsha256/sha256block_386.s

    	MOVL	CX, (6*4)(DI)
    	MOVL	(7*4)(BP), DX		// h = H7
    	MOVL	DX, (7*4)(DI)
    
    loop:
    	MOVL	SP, BP			// message schedule
    
    	SHA256ROUND0(0, 0x428a2f98, 0, 1, 2, 3, 4, 5, 6, 7)
    	SHA256ROUND0(1, 0x71374491, 7, 0, 1, 2, 3, 4, 5, 6)
    	SHA256ROUND0(2, 0xb5c0fbcf, 6, 7, 0, 1, 2, 3, 4, 5)
    	SHA256ROUND0(3, 0xe9b5dba5, 5, 6, 7, 0, 1, 2, 3, 4)
    	SHA256ROUND0(4, 0x3956c25b, 4, 5, 6, 7, 0, 1, 2, 3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. src/crypto/sha256/sha256block_386.s

    	MOVL	CX, (6*4)(DI)
    	MOVL	(7*4)(BP), DX		// h = H7
    	MOVL	DX, (7*4)(DI)
    
    loop:
    	MOVL	SP, BP			// message schedule
    
    	SHA256ROUND0(0, 0x428a2f98, 0, 1, 2, 3, 4, 5, 6, 7)
    	SHA256ROUND0(1, 0x71374491, 7, 0, 1, 2, 3, 4, 5, 6)
    	SHA256ROUND0(2, 0xb5c0fbcf, 6, 7, 0, 1, 2, 3, 4, 5)
    	SHA256ROUND0(3, 0xe9b5dba5, 5, 6, 7, 0, 1, 2, 3, 4)
    	SHA256ROUND0(4, 0x3956c25b, 4, 5, 6, 7, 0, 1, 2, 3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. src/go/constant/value_test.go

    var intTests = []string{
    	// 0-octals
    	`0_123 = 0123`,
    	`0123_456 = 0123456`,
    
    	// decimals
    	`1_234 = 1234`,
    	`1_234_567 = 1234567`,
    
    	// hexadecimals
    	`0X_0 = 0`,
    	`0X_1234 = 0x1234`,
    	`0X_CAFE_f00d = 0xcafef00d`,
    
    	// octals
    	`0o0 = 0`,
    	`0o1234 = 01234`,
    	`0o01234567 = 01234567`,
    
    	`0O0 = 0`,
    	`0O1234 = 01234`,
    	`0O01234567 = 01234567`,
    
    	`0o_0 = 0`,
    	`0o_1234 = 01234`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 15.6K bytes
    - Viewed (0)
  9. src/strings/strings_test.go

    	// 8-byte needle
    	{"xxxxxxxxxxxx", "01234567", false},
    	{"01234567xxxx", "01234567", true},
    	{"xx01234567xx", "01234567", true},
    	{"xxxx01234567", "01234567", true},
    	{"01234567xxxxx"[1:], "01234567", false},
    	{"xxxxx01234567"[:12], "01234567", false},
    	// 9-15-byte needle
    	{"xxxxxxxxxxxxx", "012345678", false},
    	{"012345678xxxx", "012345678", true},
    	{"xx012345678xx", "012345678", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/xml-coalesce-text/pom.xml

    0         1         2         3         4         5         6  X
    0         1         2         3         4         5         6  X
    0         1         2         3         4         5         6  X
    0         1         2         3         4         5         6  X
    0         1         2         3         4         5         6  X
    0         1         2         3         4         5         6  X
    0         1         2         3         4         5         6  X
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 34.5K bytes
    - Viewed (0)
Back to top