Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for aaaaaab (0.07 sec)

  1. src/index/suffixarray/suffixarray_test.go

    			"foo",
    			"(foo)",
    			".*",
    			"a*",
    		},
    	},
    
    	{
    		"all a's",
    		"aaaaaaaaaa", // 10 a's
    		[]string{
    			"",
    			"a",
    			"aa",
    			"aaa",
    			"aaaa",
    			"aaaaa",
    			"aaaaaa",
    			"aaaaaaa",
    			"aaaaaaaa",
    			"aaaaaaaaa",
    			"aaaaaaaaaa",
    			"aaaaaaaaaaa", // 11 a's
    			".",
    			".*",
    			"a+",
    			"aa+",
    			"aaaa[b]?",
    			"aaa*",
    		},
    	},
    
    	{
    		"abc",
    		"abc",
    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/encoding/base32/base32_test.go

    		{"A=", 1},
    		{"AA=", 3},
    		{"AA==", 4},
    		{"AA===", 5},
    		{"AAAA=", 5},
    		{"AAAA==", 6},
    		{"AAAAA=", 6},
    		{"AAAAA==", 7},
    		{"A=======", 1},
    		{"AA======", -1},
    		{"AAA=====", 3},
    		{"AAAA====", -1},
    		{"AAAAA===", -1},
    		{"AAAAAA==", 6},
    		{"AAAAAAA=", -1},
    		{"AAAAAAAA", -1},
    	}
    	for _, tc := range testCases {
    		dbuf := make([]byte, StdEncoding.DecodedLen(len(tc.input)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/report/source_html.go

    }
    
    const weblistPageCSS = `<style type="text/css">
    body #content{
    font-family: sans-serif;
    }
    h1 {
      font-size: 1.5em;
    }
    .legend {
      font-size: 1.25em;
    }
    .line, .nop, .unimportant {
      color: #aaaaaa;
    }
    .inlinesrc {
      color: #000066;
    }
    .livesrc {
    cursor: pointer;
    }
    .livesrc:hover {
    background-color: #eeeeee;
    }
    .asm {
    color: #008800;
    display: none;
    }
    </style>`
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/base/StringsTest.java

        assertEquals("", Strings.commonPrefix("xyz", "abcde"));
        assertEquals("", Strings.commonPrefix("xyz", "abcxyz"));
        assertEquals("a", Strings.commonPrefix("abc", "aaaaa"));
        assertEquals("aa", Strings.commonPrefix("aa", "aaaaa"));
        assertEquals("abc", Strings.commonPrefix(new StringBuffer("abcdef"), "abcxyz"));
    
        // Identical valid surrogate pairs.
        assertEquals(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. cmd/bitrot_test.go

    	}
    	_, err = writer.Write([]byte("aaaaaaaaaa"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	_, err = writer.Write([]byte("aaaaaaaaaa"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	_, err = writer.Write([]byte("aaaaa"))
    	if err != nil {
    		t.Fatal(err)
    	}
    	if bw, ok := writer.(io.Closer); ok {
    		bw.Close()
    	}
    
    	reader := newBitrotReader(disk, nil, volume, filePath, 35, bitrotAlgo, bitrotWriterSum(writer), 10)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompactHashSet.java

       * are the "next" pointer (pointing to the next entry in the bucket chain), which will always be
       * less than or equal to the hashtable mask.
       *
       * <pre>
       * hash  = aaaaaaaa
       * mask  = 00000fff
       * next  = 00000bbb
       * entry = aaaaabbb
       * </pre>
       *
       * <p>The pointers in [size(), entries.length) are all "null" (UNSET).
       */
      @CheckForNull private transient int[] entries;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/CompactHashSet.java

       * are the "next" pointer (pointing to the next entry in the bucket chain), which will always be
       * less than or equal to the hashtable mask.
       *
       * <pre>
       * hash  = aaaaaaaa
       * mask  = 00000fff
       * next  = 00000bbb
       * entry = aaaaabbb
       * </pre>
       *
       * <p>The pointers in [size(), entries.length) are all "null" (UNSET).
       */
      @CheckForNull private transient int[] entries;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    			in:     "::ffff:1.1.1.1",
    			family: 4,
    		},
    
    		// BAD VALUES
    		{
    			name: "empty string",
    			in:   "",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "junk",
    			in:   "aaaaaaa",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "domain name",
    			in:   "myhost.mydomain",
    			err:  "must be a valid IP address",
    		},
    		{
    			name: "cidr",
    			in:   "1.2.3.0/24",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/join_test.go

    				}
    			},
    		},
    		{
    			name: "--token doesn't override TLSBootstrapToken and BootstrapToken.Token if set",
    			args: []string{"1.2.3.4:6443"},
    			flags: map[string]string{
    				options.TokenStr:                 "aaaaaa.0123456789aaaaaa",
    				options.TLSBootstrapToken:        "abcdef.0123456789abcdef",
    				options.TokenDiscovery:           "defghi.0123456789defghi",
    				options.TokenDiscoverySkipCAHash: "true",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top