Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for ababab (0.33 sec)

  1. src/index/suffixarray/suffixarray_test.go

    		}
    		return out
    	})
    }
    
    // test tests an arbitrary suffix array construction function.
    // Generates many inputs, builds and checks suffix arrays.
    func test(t *testing.T, build func([]byte) []int) {
    	t.Run("ababab...", func(t *testing.T) {
    		// Very repetitive input has numLMS = len(x)/2-1
    		// at top level, the largest it can be.
    		// But maxID is only two (aba and ab$).
    		size := 100000
    		if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/index/suffixarray/sais.go

    		}
    	}
    }
    
    // assignID_8_32 assigns a dense ID numbering to the
    // set of LMS-substrings respecting string ordering and equality,
    // returning the maximum assigned ID.
    // For example given the input "ababab", the LMS-substrings
    // are "aba", "aba", and "ab", renumbered as 2 2 1.
    // sa[len(sa)-numLMS:] holds the LMS-substring indexes
    // sorted in string order, so to assign numbers we can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            assertNull(StringUtil.decamelize(null));
            assertEquals("EMP", StringUtil.decamelize("Emp"));
            assertEquals("AAA_BBB", StringUtil.decamelize("aaaBbb"));
            assertEquals("AAA_BBB", StringUtil.decamelize("AaaBbb"));
            assertEquals("AAA_BBB_C", StringUtil.decamelize("aaaBbbC"));
            assertEquals("USER_ID", StringUtil.decamelize("UserId"));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/regexp/all_test.go

    	{"foo:and:bar", "foo", -1, []string{"", ":and:bar"}},
    	{"foo:and:bar", "bar", -1, []string{"foo:and:", ""}},
    	{"foo:and:bar", "baz", -1, []string{"foo:and:bar"}},
    	{"baabaab", "a", -1, []string{"b", "", "b", "", "b"}},
    	{"baabaab", "a*", -1, []string{"b", "b", "b"}},
    	{"baabaab", "ba*", -1, []string{"", "", "", ""}},
    	{"foobar", "f*b*", -1, []string{"", "o", "o", "a", "r"}},
    	{"foobar", "f+.*b+", -1, []string{"", "ar"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. src/regexp/find_test.go

    	{`.(.)`, "abcd", build(2, 0, 2, 1, 2, 2, 4, 3, 4)},
    	{`ab*`, "abbaab", build(3, 0, 3, 3, 4, 4, 6)},
    	{`a(b*)`, "abbaab", build(3, 0, 3, 1, 3, 3, 4, 4, 4, 4, 6, 5, 6)},
    
    	// fixed bugs
    	{`ab$`, "cab", build(1, 1, 3)},
    	{`axxb$`, "axxcb", nil},
    	{`data`, "daXY data", build(1, 5, 9)},
    	{`da(.)a$`, "daXY data", build(1, 5, 9, 7, 8)},
    	{`zx+`, "zzx", build(1, 1, 3)},
    	{`ab$`, "abcab", build(1, 3, 5)},
    	{`(aa)*$`, "a", build(1, 1, 1, -1, -1)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 15:28:50 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.groovy

        }
    
        def "reports candidates when task path cannot be resolved"() {
            createDirs("aaBb", "aaaBbb", "aaaaBbbb", "aaBb/ccDD", "aaBb/cccDDD")
            settingsFile << """
                rootProject.name = 'broken'
                includeBuild("aaBb")
                include("aaaBbb")
                include("aaaaBbbb")
            """
            file("aaBb/settings.gradle") << """
                include("ccDD")
                include("cccDDD")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/aenum.go

    	ANEGQ
    	ANEGW
    	ANOPL
    	ANOPW
    	ANOTB
    	ANOTL
    	ANOTQ
    	ANOTW
    	AORB
    	AORL
    	AORPD
    	AORPS
    	AORQ
    	AORW
    	AOUTB
    	AOUTL
    	AOUTSB
    	AOUTSL
    	AOUTSW
    	AOUTW
    	APABSB
    	APABSD
    	APABSW
    	APACKSSLW
    	APACKSSWB
    	APACKUSDW
    	APACKUSWB
    	APADDB
    	APADDL
    	APADDQ
    	APADDSB
    	APADDSW
    	APADDUSB
    	APADDUSW
    	APADDW
    	APALIGNR
    	APAND
    	APANDN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. src/strings/replace_test.go

    		testCase{htmlEscaper, "&&&", "&amp;&amp;&amp;"},
    		testCase{htmlEscaper, "", ""},
    
    		testCase{repeat, "brad", "bbrrrrrrrrrrrrrrrrrradddd"},
    		testCase{repeat, "abba", "abbbba"},
    		testCase{repeat, "", ""},
    
    		testCase{NewReplacer("a", "11", "a", "22"), "brad", "br11d"},
    	)
    
    	// The remaining test cases have variable length old strings.
    
    	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)
  9. docs/yo/docs/index.md

    Láti ní òye síi nípa rẹ̀, wo abala àwọn <a href="https://fastapi.tiangolo.com/benchmarks/" class="internal-link" target="_blank">Àlá</a>.
    
    ## Àṣàyàn Àwọn Àfikún Ìgbẹ́kẹ̀lé Kóòdù
    
    Èyí tí Pydantic ń lò:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  10. src/runtime/race/testdata/mop_test.go

    	go func() {
    		*p = 5
    		ch <- true
    	}()
    	y = *p
    	x = y
    	<-ch
    }
    
    func TestRaceStringRW(t *testing.T) {
    	ch := make(chan bool, 1)
    	s := ""
    	go func() {
    		s = "abacaba"
    		ch <- true
    	}()
    	_ = s
    	<-ch
    }
    
    func TestRaceStringPtrRW(t *testing.T) {
    	ch := make(chan bool, 1)
    	var x string
    	p := &x
    	go func() {
    		*p = "a"
    		ch <- true
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 16:46:25 UTC 2023
    - 28.9K bytes
    - Viewed (0)
Back to top