Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 87 for aaaaaa (0.08 sec)

  1. 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)
  2. src/image/png/testdata/pngsuite/ftbrn2c08.sng

    ffffff ffffff ffffff ffffff ffffff ffffff ffffff ffffff fcfcfc aaaaaa 219821 00b000 008600 578757 8b8b8b 8d8d8d 747474 535353 3d3d3d 1a1a23 0d0d43 474772 ededef ffffff ffffff ffffff ffffff ffffff ffffff ffffff ffffff ffffff 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 27 22:27:41 UTC 2016
    - 7.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierBuilderTest.groovy

            println(ex.getMessage())
    
            where:
            name                  | keyIds
            "short id"            | ["AAAAAAA"]
            "long id"             | ["AAAAAAAAAAAAAA"]
            "mixed short/long id" | ["AAAAAAAA", "AAAAAAAAAAAAAA"]
        }
    
        def "ArtifactVerificationBuilder should fail if trusted GPG key is not a fingerprint but a #name"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. src/html/escape_test.go

    			t.Errorf("got %q want %q", got, s)
    		}
    	}
    }
    
    var (
    	benchEscapeData     = strings.Repeat("AAAAA < BBBBB > CCCCC & DDDDD ' EEEEE \" ", 100)
    	benchEscapeNone     = strings.Repeat("AAAAA x BBBBB x CCCCC x DDDDD x EEEEE x ", 100)
    	benchUnescapeSparse = strings.Repeat(strings.Repeat("AAAAA x BBBBB x CCCCC x DDDDD x EEEEE x ", 10)+"&amp;", 10)
    	benchUnescapeDense  = strings.Repeat("&amp;&lt; &amp; &lt;", 100)
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 22 12:45:38 UTC 2015
    - 3.3K bytes
    - Viewed (0)
Back to top