Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 132 for aBCD (0.03 sec)

  1. src/strings/strings_test.go

    	{"xab"[:2], "ab", -1},
    	{"", "abc", -1},
    	{"xbc", "abc", -1},
    	{"abc", "abc", 0},
    	{"xabc", "abc", 1},
    	{"xabc"[:3], "abc", -1},
    	{"xabxc", "abc", -1},
    	{"", "abcd", -1},
    	{"xbcd", "abcd", -1},
    	{"abcd", "abcd", 0},
    	{"xabcd", "abcd", 1},
    	{"xyabcd"[:5], "abcd", -1},
    	{"xbcqq", "abcqq", -1},
    	{"abcqq", "abcqq", 0},
    	{"xabcqq", "abcqq", 1},
    	{"xyabcqq"[:6], "abcqq", -1},
    	{"xabxcqq", "abcqq", -1},
    	{"xabcqxq", "abcqq", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/btree/BTreeIndexedCacheTest.java

            cache.put("key_1", "abcd");
            cache.put("key_2", "abcd");
            cache.put("key_3", "abcd");
            cache.put("key_4", "abcd");
            cache.put("key_5", "abcd");
    
            long len = cacheFile.length();
            assertTrue(len > 0L);
    
            cache.put("key_1", "1234");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/library/ip.go

    //	ip.isCanonical(<string>) <bool>
    //
    // Examples:
    //
    //	ip.isCanonical('127.0.0.1') // returns true; all valid IPv4 addresses are canonical
    //	ip.isCanonical('2001:db8::abcd') // returns true
    //	ip.isCanonical('2001:DB8::ABCD') // returns false
    //	ip.isCanonical('2001:db8::0:0:0:abcd') // returns false
    //
    // family / isUnspecified / isLoopback / isLinkLocalMulticast / isLinkLocalUnicast / isGlobalUnicast
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. test/typeparam/adder.go

    func Add[T AddType](a, b T) T {
    	return a + b
    }
    
    func main() {
    	if got, want := Add(5, 3), 8; got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    	if got, want := Add("ab", "cd"), "abcd"; got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 559 bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/MediaTypeTest.kt

        assertEquals("text/plain;", mediaType.toString())
      }
    
      @Test fun testParameter() {
        val mediaType = parse("multipart/mixed; boundary=\"abcd\"")
        assertEquals("abcd", mediaType.parameter("boundary"))
        assertEquals("abcd", mediaType.parameter("BOUNDARY"))
      }
    
      @Test fun testMultipleParameters() {
        val mediaType = parse("Message/Partial; number=2; total=3; id=\"oc=******@****.***\"")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. test/fixedbugs/bug303.go

    	n := readU16BE(b)
    	if int(n) > len(b) {
    		return "err: n>b"
    	}
    	io.ReadFull(r, b[0:n]) // #2
    	return string(b[0:n])  // #3
    	return "ok"
    }
    
    func main() {
    	br := strings.NewReader("abcd")
    	readStr(br, make([]byte, 256))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 693 bytes
    - Viewed (0)
  7. src/main/java/jcifs/dcerpc/DcerpcBinding.java

            INTERFACES.put("samr", samr.getSyntax());
            INTERFACES.put("netdfs", netdfs.getSyntax());
            INTERFACES.put("netlogon", "12345678-1234-abcd-ef00-01234567cffb:1.0");
            INTERFACES.put("wkssvc", "6BFFD098-A112-3610-9833-46C3F87E345A:1.0");
            INTERFACES.put("samr", "12345778-1234-ABCD-EF00-0123456789AC:1.0");
        }
    
    
        /**
         * Add an interface to the registry
         * 
         * @param name
         * @param syntax
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.5K bytes
    - Viewed (0)
  8. platforms/software/resources/src/test/groovy/org/gradle/internal/resource/metadata/DefaultExternalResourceMetaDataTest.groovy

    import org.gradle.internal.hash.HashCode
    import spock.lang.Specification
    
    class DefaultExternalResourceMetaDataTest extends Specification {
    
        def "hash value is preserved"() {
            given:
            def sha1 = "abcd"*10
            def md = new DefaultExternalResourceMetaData(new URI("scheme:thing"), -1, -1, null, null, HashCode.fromString(sha1))
    
            expect:
            md.sha1.equals(HashCode.fromString(sha1))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/generate/generate_test.go

    	inLine = "//go:generate CMD0"
    	expected = []string{"abcd"}
    	got = g.split(inLine + "\n")
    
    	if !reflect.DeepEqual(got, expected) {
    		t.Errorf("split(%q): got %q expected %q", inLine, got, expected)
    	}
    
    	// Try another undefined variable as an extra check
    	os.Unsetenv("_Z")
    	inLine = "//go:generate -command CMD1 \"ab${_Z}cd\""
    	expected = []string{"-command", "CMD1", "abcd"}
    	got = g.split(inLine + "\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 14:09:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. src/os/exec/internal_test.go

    	}{
    		{
    			N:      2,
    			writes: nil,
    			want:   "",
    		},
    		{
    			N:      2,
    			writes: []string{"a"},
    			want:   "a",
    		},
    		{
    			N:      2,
    			writes: []string{"abc", "d"},
    			want:   "abcd",
    		},
    		{
    			N:      2,
    			writes: []string{"abc", "d", "e"},
    			want:   "ab\n... omitting 1 bytes ...\nde",
    		},
    		{
    			N:      2,
    			writes: []string{"ab______________________yz"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 14:08:10 UTC 2015
    - 1.2K bytes
    - Viewed (0)
Back to top