Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 132 for aBCD (0.27 sec)

  1. src/syscall/mkerrors.sh

    	# it encounters while processing the input
    	echo "${!indirect} $includes" | $CC -x c - -E -dM $ccflags |
    	awk '
    		$1 != "#define" || $2 ~ /\(/ || $3 == "" {next}
    
    		$2 ~ /^E([ABCD]X|[BIS]P|[SD]I|S|FL)$/ {next}  # 386 registers
    		$2 ~ /^(SIGEV_|SIGSTKSZ|SIGRT(MIN|MAX))/ {next}
    		$2 ~ /^(SCM_SRCRT)$/ {next}
    		$2 ~ /^(MAP_FAILED)$/ {next}
    		$2 ~ /^CLONE_[A-Z_]+/ {next} # These are defined in exec_linux.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 06 21:22:22 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

            assertOrder(X_GT_Y, "1.0m.1", "1.0");
            assertOrder(X_GT_Y, "1.0m-1", "1.0");
        }
    
        @Test
        void testUnknownQualifierOrdering() {
            assertOrder(X_LT_Y, "1-abc", "1-abcd");
            assertOrder(X_LT_Y, "1-abc", "1-bcd");
            assertOrder(X_GT_Y, "1-abc", "1-aac");
        }
    
        @Test
        void testCaseInsensitiveOrderingOfQualifiers() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. src/hash/crc64/crc64_test.go

    	{0x3776c42000000000, 0x2cd8094a1a277627, "abc", "crc\x02s\xba\x84\x84\xbb\xcd]\xef4 \x00\x00\x00\x00\x00\x00", "crc\x02`&\x9aR\xe1\xb7\xfee3\x02\x84w.e+\x05"},
    	{0x336776c420000000, 0x3c9d28596e5960ba, "abcd", "crc\x02s\xba\x84\x84\xbb\xcd]\xef6\xc4 \x00\x00\x00\x00\x00", "crc\x02`&\x9aR\xe1\xb7\xfee\xbces \x0e\x84\xb0F"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 25 06:32:12 UTC 2018
    - 9.9K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/RequestTest.kt

        assertThat(bodyToHex(body), "Retransmit body").isEqualTo("616263")
      }
    
      @Test
      fun byteArrayRange() {
        val contentType = "text/plain".toMediaType()
        val body: RequestBody = ".abcd".toByteArray().toRequestBody(contentType, 1, 3)
        assertThat(body.contentType()).isEqualTo(contentType)
        assertThat(body.contentLength()).isEqualTo(3)
        assertThat(bodyToHex(body)).isEqualTo("616263")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/hash/crc32/crc32_test.go

    	{0x9e83486d, 0xe2a22936, "ab", "crc\x01ʇ\x91M跾C", "crc\x01wB\x84\x81\xc1\xd0C0"},
    	{0x352441c2, 0x364b3fb7, "abc", "crc\x01ʇ\x91M跾C", "crc\x01wB\x84\x81\xc1\xd0C0"},
    	{0xed82cd11, 0x92c80a31, "abcd", "crc\x01ʇ\x91M\x9e\x83Hm", "crc\x01wB\x84\x81\xe2\xa2)6"},
    	{0x8587d865, 0xc450d697, "abcde", "crc\x01ʇ\x91M\x9e\x83Hm", "crc\x01wB\x84\x81\xe2\xa2)6"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. cmd/xl-storage_test.go

    		},
    		// Empty filename name. - 11
    		{
    			volume, "", 14, 1, nil, errIsNotRegular,
    		},
    		// Non existent volume name - 12
    		{
    			"abcd", "", 14, 1, nil, errVolumeNotFound,
    		},
    		// Non existent filename - 13
    		{
    			volume, "abcd", 14, 1, nil, errFileNotFound,
    		},
    	}
    
    	// Create all files needed during testing.
    	appendFiles := testCases[:4]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  7. src/strings/replace_test.go

    	abcMatcher := NewReplacer("abc", "[match]")
    
    	testCases = append(testCases,
    		testCase{abcMatcher, "", ""},
    		testCase{abcMatcher, "ab", "ab"},
    		testCase{abcMatcher, "abc", "[match]"},
    		testCase{abcMatcher, "abcd", "[match]d"},
    		testCase{abcMatcher, "cabcabcdabca", "c[match][match]d[match]a"},
    	)
    
    	// Issue 6659 cases (more single string replacer)
    
    	noHello := NewReplacer("Hello", "")
    	testCases = append(testCases,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  8. cmd/kube-proxy/app/server_linux_test.go

    			},
    		},
    		// unknown mode
    		{
    			name: "unknown LocalMode",
    			config: &proxyconfigapi.KubeProxyConfiguration{
    				DetectLocalMode: proxyconfigapi.LocalMode("abcd"),
    				ClusterCIDR:     "10.0.0.0/14",
    			},
    			primaryIPFamily: v1.IPv4Protocol,
    			expected: map[v1.IPFamily]proxyutil.LocalTrafficDetector{
    				v1.IPv4Protocol: proxyutil.NewNoOpLocalDetector(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. src/encoding/gob/encoder_test.go

    	err := enc.Encode(m)
    	if err != nil {
    		t.Errorf("encode map: %s", err)
    	}
    }
    
    func TestSliceReusesMemory(t *testing.T) {
    	buf := new(bytes.Buffer)
    	// Bytes
    	{
    		x := []byte("abcd")
    		enc := NewEncoder(buf)
    		err := enc.Encode(x)
    		if err != nil {
    			t.Errorf("bytes: encode: %s", err)
    		}
    		// Decode into y, which is big enough.
    		y := []byte("ABCDE")
    		addr := &y[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

            createDir('test') {
                dir1 {
                    file("1_file1.txt").write("abc")
                    link('2_link', "non-existent")
                    file("3_file2.txt").write("abcd")
                }
            }
            and:
            buildFile << """
                task pack(type: $type) {
                    from 'test'
                    destinationDirectory = buildDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top