Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for aaaaaa (0.21 sec)

  1. src/regexp/testdata/nullsubexpr.dat

    E	(a*)*		a		(0,1)(0,1)
    E	SAME		x		(0,0)(0,0)
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaax		(0,6)(0,6)
    E	(a*)+		a		(0,1)(0,1)
    E	SAME		x		(0,0)(0,0)
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaax		(0,6)(0,6)
    E	(a+)*		a		(0,1)(0,1)
    E	SAME		x		(0,0)
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaax		(0,6)(0,6)
    E	(a+)+		a		(0,1)(0,1)
    E	SAME		x		NOMATCH
    E	SAME		aaaaaa		(0,6)(0,6)
    E	SAME		aaaaaax		(0,6)(0,6)
    
    E	([a]*)*		a		(0,1)(0,1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. 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)
  3. src/encoding/base64/base64_test.go

    	}{
    		{"", -1},
    		{"\n", -1},
    		{"AAA=\n", -1},
    		{"AAAA\n", -1},
    		{"!!!!", 0},
    		{"====", 0},
    		{"x===", 1},
    		{"=AAA", 0},
    		{"A=AA", 1},
    		{"AA=A", 2},
    		{"AA==A", 4},
    		{"AAA=AAAA", 4},
    		{"AAAAA", 4},
    		{"AAAAAA", 4},
    		{"A=", 1},
    		{"A==", 1},
    		{"AA=", 3},
    		{"AA==", -1},
    		{"AAA=", -1},
    		{"AAAA", -1},
    		{"AAAAAA=", 7},
    		{"YWJjZA=====", 8},
    		{"A!\n", 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. src/net/http/internal/chunked_test.go

    		}
    	}
    }
    
    func TestChunkReaderAllocs(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	var buf bytes.Buffer
    	w := NewChunkedWriter(&buf)
    	a, b, c := []byte("aaaaaa"), []byte("bbbbbbbbbbbb"), []byte("cccccccccccccccccccccccc")
    	w.Write(a)
    	w.Write(b)
    	w.Write(c)
    	w.Close()
    
    	readBuf := make([]byte, len(a)+len(b)+len(c)+1)
    	byter := bytes.NewReader(buf.Bytes())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 20:45:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. 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)
  6. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            document.put("title", "111AaA222bbb");
            assertEquals("111<strong>AaA</strong>222bbb", viewHelper.getContentTitle(document));
    
            document.put("title", "aaaAAA");
            assertEquals("<strong>aaa</strong><strong>AAA</strong>", viewHelper.getContentTitle(document));
    
            querySet.add("BBB");
    
            document.put("title", "111AaA222bbb");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/index/suffixarray/suffixarray_test.go

    	},
    
    	{
    		"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",
    		[]string{
    			"a",
    			"b",
    			"c",
    			"ab",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. pkg/dns/client/dns_test.go

    		},
    		{
    			name:      "success: TypeAAAA query returns AAAA records only",
    			host:      "dual.localhost.",
    			queryAAAA: true,
    			expected:  aaaa("dual.localhost.", []netip.Addr{netip.MustParseAddr("2001:db8:0:0:0:ff00:42:8329")}),
    		},
    		{
    			// This is not a NXDOMAIN, but empty response
    			name: "success: Error response if only AAAA records exist for typeA",
    			host: "ipv6.localhost.",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. src/encoding/base32/base32_test.go

    		{"x===", 0},
    		{"AA=A====", 2},
    		{"AAA=AAAA", 3},
    		{"MMMMMMMMM", 8},
    		{"MMMMMM", 0},
    		{"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},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

      fun cacheSingleEntryOfSizeGreaterThanMaxSize(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
        cache.close()
        createNewCacheWithSize(10)
        set("a", "aaaaa", "aaaaaa") // size=11
        cache.flush()
        assertAbsent("a")
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top