Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for 0123456x (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-execution/hashing/src/test/groovy/org/gradle/internal/hash/HashCodeTest.groovy

            when:
            HashCode.fromString(illegal)
    
            then:
            thrown Exception
    
            where:
            illegal << ["abcdefgh", "-1235689", "0x123456"]
        }
    
        def "won't parse too short string: #length"() {
            when:
            HashCode.fromString("a" * length)
    
            then:
            thrown Exception
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:43:29 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/BytesTest.java

        testRotate(new byte[] {0, 1, 2, 3, 4, 5, 6}, 0, 3, 7, new byte[] {0, 1, 2, 3, 4, 5, 6});
        testRotate(new byte[] {0, 1, 2, 3, 4, 5, 6}, 1, 3, 7, new byte[] {0, 1, 2, 6, 3, 4, 5});
        testRotate(new byte[] {0, 1, 2, 3, 4, 5, 6}, 2, 3, 7, new byte[] {0, 1, 2, 5, 6, 3, 4});
        testRotate(new byte[] {0, 1, 2, 3, 4, 5, 6}, 3, 3, 7, new byte[] {0, 1, 2, 4, 5, 6, 3});
      }
    
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    			},
    			stDefaultCPUSet:           cpuset.New(1, 2, 3, 4, 5, 6, 7),
    			lastUpdateStAssignments:   state.ContainerCPUAssignments{},
    			lastUpdateStDefaultCPUSet: cpuset.New(),
    			expectStAssignments: state.ContainerCPUAssignments{
    				"fakePodUID": map[string]cpuset.CPUSet{
    					"fakeContainerName": cpuset.New(),
    				},
    			},
    			expectStDefaultCPUSet:        cpuset.New(1, 2, 3, 4, 5, 6, 7),
    			expectSucceededContainerName: "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cpumanager/policy_static_test.go

    		{
    			description:     "NonGuPod, SingleSocketHT, NoAlloc",
    			topo:            topoSingleSocketHT,
    			numReservedCPUs: 1,
    			stAssignments:   state.ContainerCPUAssignments{},
    			stDefaultCPUSet: cpuset.New(0, 1, 2, 3, 4, 5, 6, 7),
    			pod:             makePod("fakePod", "fakeContainer1", "1000m", "2000m"),
    			expErr:          nil,
    			expCPUAlloc:     false,
    			expCSet:         cpuset.New(),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/primitives/CharsTest.java

            new char[] {'0', '1', '2', '3', '4', '5', '6'},
            0,
            1,
            6,
            new char[] {'0', '1', '2', '3', '4', '5', '6'});
        testRotate(
            new char[] {'0', '1', '2', '3', '4', '5', '6'},
            5,
            1,
            6,
            new char[] {'0', '1', '2', '3', '4', '5', '6'});
        testRotate(
            new char[] {'0', '1', '2', '3', '4', '5', '6'},
            14,
            1,
            6,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top