Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for aaaaaa (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/dns/client/dns.go

    		answers[i] = r
    	}
    	return answers
    }
    
    // aaaa takes a slice of ip string and returns a slice of AAAA RRs.
    func aaaa(host string, ips []netip.Addr) []dns.RR {
    	answers := make([]dns.RR, len(ips))
    	for i, ip := range ips {
    		r := new(dns.AAAA)
    		r.Hdr = dns.RR_Header{Name: host, Rrtype: dns.TypeAAAA, Class: dns.ClassINET, Ttl: defaultTTLInSeconds}
    		r.AAAA = ip.AsSlice()
    		answers[i] = r
    	}
    	return answers
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top