Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for aabbabc (0.2 sec)

  1. src/regexp/testdata/basic.dat

    BE	^			NULL		(0,0)
    BE	$			NULL		(0,0)
    BE	^$			NULL		(0,0)
    BE	^a$			a		(0,1)
    BE	abc			abc		(0,3)
    BE	abc			xabcy		(1,4)
    BE	abc			ababc		(2,5)
    BE	ab*c			abc		(0,3)
    BE	ab*bc			abc		(0,3)
    BE	ab*bc			abbc		(0,4)
    BE	ab*bc			abbbbc		(0,6)
    E	ab+bc			abbc		(0,4)
    E	ab+bc			abbbbc		(0,6)
    E	ab?bc			abbc		(0,4)
    E	ab?bc			abc		(0,3)
    E	ab?c			abc		(0,3)
    BE	^abc$			abc		(0,3)
    BE	^abc			abcc		(0,3)
    BE	abc$			aabc		(1,4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            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
        public void testIsNumver() throws Exception {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. src/regexp/testdata/nullsubexpr.dat

    E	SAME		aaaaaab		(0,6)(0,6)
    E	([ab]*)*	a		(0,1)(0,1)
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		ababab		(0,6)(0,6)
    E	SAME		bababa		(0,6)(0,6)
    E	SAME		b		(0,1)(0,1)
    E	SAME		bbbbbb		(0,6)(0,6)
    E	SAME		aaaabcde	(0,5)(0,5)
    E	([^a]*)*	b		(0,1)(0,1)
    E	SAME		bbbbbb		(0,6)(0,6)
    E	SAME		aaaaaa		(0,0)(0,0)
    E	([^ab]*)*	ccccxx		(0,6)(0,6)
    E	SAME		ababab		(0,0)(0,0)
    
    E	((z)+|a)*	zabcde		(0,2)(1,2)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fuzz_parallel.txt

    		f.Add(v)
    	}
    
    	var mu sync.Mutex
    	var before, after []byte
    	f.Cleanup(func() {
    		sort.Slice(after, func(i, j int) bool { return after[i] < after[j] })
    		got := string(before) + string(after)
    		want := "abcabc"
    		if got != want {
    			f.Fatalf("got %q; want %q", got, want)
    		}
    	})
    
    	f.Fuzz(func(t *testing.T, b []byte) {
    		before = append(before, b...)
    		t.Parallel()
    		mu.Lock()
    		after = append(after, b...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

        def "prefers exact match over camel case match"() {
            expect:
            matches("sName", "sName", "someName", "sNames")
            matches("so Name", "so Name", "some Name", "so name")
            matches("ABC", "ABC", "AaBbCc")
        }
    
        def "prefers exact match over kebab case match"() {
            expect:
            matches("sName", "sName", "some-name", "some-Name")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. src/image/png/testdata/pngsuite/basn2c08.sng

    bfbfbf bebebe bdbdbd bcbcbc bbbbbb bababa b9b9b9 b8b8b8 b7b7b7 b6b6b6 b5b5b5 b4b4b4 b3b3b3 b2b2b2 b1b1b1 b0b0b0 afafaf aeaeae adadad acacac ababab aaaaaa a9a9a9 a8a8a8 a7a7a7 a6a6a6 a5a5a5 a4a4a4 a3a3a3 a2a2a2 a1a1a1 a0a0a0 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 7.2K bytes
    - Viewed (0)
  7. src/compress/flate/deflate_test.go

    				if err != nil {
    					t.Errorf("i=%d, firstN=%d, flush=%t: NewWriter: %v", i, firstN, flush, err)
    					continue
    				}
    				for _, n := range tc {
    					want = append(want, abcabc[:n]...)
    					if _, err := w.Write(abcabc[:n]); err != nil {
    						t.Errorf("i=%d, firstN=%d, flush=%t: Write: %v", i, firstN, flush, err)
    						continue outer
    					}
    					if !flush {
    						continue
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  8. 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)
  9. src/testing/testing.go

    		// AAABBB or BBBAAA on the pipe, not something like AABBBA.
    		// However, the exception to this is when the pipe fills: in that
    		// case, Go's use of non-blocking I/O means that writing AAA
    		// or BBB might be split across multiple system calls, making it
    		// entirely possible to get output like AABBBA. The same problem
    		// happens inside the operating system kernel if we switch to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. 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)
Back to top