Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for xabxc (0.08 sec)

  1. src/strings/strings_test.go

    	{"", "ab", -1},
    	{"bc", "ab", -1},
    	{"ab", "ab", 0},
    	{"xab", "ab", 1},
    	{"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},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/util/internal/TextUtilTest.groovy

            "abc"               | "  "   | "  abc"
            "abc"               | "def"  | "defabc"
            "abc\ndef\nghi"     | " "    | " abc\n def\n ghi"
            "abc\n\t\n   \nghi" | "X"    | "Xabc\n\t\n   \nXghi"
        }
    
        def shorterOf() {
            expect:
            TextUtil.shorterOf("a", "b") == "a"
            TextUtil.shorterOf("aa", "b") == "b"
            TextUtil.shorterOf("a", "bb") == "a"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  3. src/regexp/testdata/basic.dat

    E	a?(ac{0}b|ba)ab			abab	(0,4)(0,2)
    E	ab|abab				abbabab	(0,2)
    E	aba|bab|bba			baaabbbaba	(5,8)
    E	aba|bab				baaabbbaba	(6,9)
    E	(aa|aaa)*|(a|aaaaa)		aa	(0,2)(0,2)
    E	(a.|.a.)*|(a|.a...)		aa	(0,2)(0,2)
    E	ab|a				xabc	(1,3)
    E	ab|a				xxabc	(2,4)
    Ei	(Ab|cD)*			aBcD	(0,4)(2,4)
    BE	[^-]			--a		(2,3)
    BE	[a-]*			--a		(0,3)
    BE	[a-m-]*			--amoma--	(0,4)
    E	:::1:::0:|:::1:1:0:	:::0:::1:::1:::0:	(8,17)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.6.md

    ### Client
    * Use Prometheus instrumentation conventions ([#36704](https://github.com/kubernetes/kubernetes/pull/36704), [@fabxc](https://github.com/fabxc))
    * Clients now use the `?watch=true` parameter to make watch API calls, instead of the `/watch/` path prefix ([#41722](https://github.com/kubernetes/kubernetes/pull/41722), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
Back to top