Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 70 for AA (0.08 sec)

  1. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

            SuggestResponse response2 = suggester.suggest().setQuery("-a").setSuggestDetail(true).execute().getResponse();
            assertEquals(2, response2.getNum());
    
            SuggestResponse response3 = suggester.suggest().setQuery("-aa-").setSuggestDetail(true).execute().getResponse();
            assertEquals(1, response3.getNum());
        }
    
        @Test
        public void test_getNum() throws Exception {
            SuggestItem[] items = getItemSet1();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 37K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

        }
    
        @Test
        public void testRecursiveExpressionCycleNPE() throws Exception {
            Map<String, String> props = new HashMap<>();
            props.put("aa", "${bb}");
            props.put("bb", "${aa}");
            DefaultModelBuildingRequest request = new DefaultModelBuildingRequest();
    
            Model model = Model.newBuilder().properties(props).build();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		" ", "a ", " a", "a b", "1 ", " 1", "1 2",
    		"A.a", "aB.a", "ab.A", "A1.a", "a1.A",
    		"A.1", "aB.1", "A1.1", "1A.1",
    		"0.A", "01.A", "012.A", "1A.a", "1a.A",
    		"A.B.C.D.E", "AA.BB.CC.DD.EE", "a.B.c.d.e", "aa.bB.cc.dd.ee",
    		"a@b", "a,b", "a_b", "a;b",
    		"a:b", "a%b", "a?b", "a$b",
    		strings.Repeat("a", 254),
    	}
    	for _, val := range badValues {
    		if msgs := IsDNS1123Subdomain(val); len(msgs) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-ECDSA

    00000090  66 06 c4 39 42 8f 68 fb  3a 07 9e e7 74 41 0d 10  |f..9B.h.:...tA..|
    000000a0  97 17 03 03 00 42 42 b2  84 94 a6 18 c6 b6 21 77  |.....BB.......!w|
    000000b0  1e 02 57 4a 14 2d c4 84  17 f1 fa b4 63 0f aa d7  |..WJ.-......c...|
    000000c0  4a d5 ae 75 f1 da 14 ec  51 09 93 6b 62 6f 8f 7e  |J..u....Q..kbo.~|
    000000d0  fe 0c 7f 63 ef 1b 87 d8  43 42 d0 f4 2d 6d 0f cc  |...c....CB..-m..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. src/index/suffixarray/suffixarray_test.go

    			"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",
    		[]string{
    			"a",
    			"b",
    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. guava-tests/test/com/google/common/collect/MapsCollectionTest.java

                      @Override
                      public SampleElements<Entry<String, Integer>> samples() {
                        return new SampleElements<>(
                            mapEntry("a", 1),
                            mapEntry("aa", 2),
                            mapEntry("aba", 3),
                            mapEntry("bbbb", 4),
                            mapEntry("ccccc", 5));
                      }
    
                      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  7. src/text/tabwriter/tabwriter.go

    // forms a cell but that cell is not part of an aligned column.
    // For instance, in this example (where | stands for a horizontal tab):
    //
    //	aaaa|bbb|d
    //	aa  |b  |dd
    //	a   |
    //	aa  |cccc|eee
    //
    // the b and c are in distinct columns (the b column is not contiguous
    // all the way). The d and e are not in a column at all (there's no
    // terminating tab, nor would the column be contiguous).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            assertTrue(StringUtil.endsWithIgnoreCase("aaa_hoge", "HOge"));
            assertFalse(StringUtil.endsWithIgnoreCase("setHogeaa", "Aaa"));
            assertFalse(StringUtil.endsWithIgnoreCase("aa", "Aaa"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testStartsWithIgnoreCase() throws Exception {
            assertTrue(StringUtil.startsWithIgnoreCase("isHoge", "is"));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	                       b9:af:ce:05:9d:82:a2:98:a9:15:40:8b:ff:a2:5c:
    	                       72:53:e8:d0:af:73:c6:76:4d:c7:6a:6e:9f:5d:a7:
    	                       e2:f6:aa:6a:18:2b:c3:ee:3b:64:19:16:5d:94:0b:
    	                       f2:f7:90:43:9a:5d:ce:7e:07:4d:b9:df:be:f0:39:
    	                       98:a4:41:eb:d3:17:90:12:d9:bc:d7:7f:a4:66:98:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. src/regexp/example_test.go

    	fmt.Println(re.FindAllString("paranormal", 2))
    	fmt.Println(re.FindAllString("graal", -1))
    	fmt.Println(re.FindAllString("none", -1))
    	// Output:
    	// [ar an al]
    	// [ar an]
    	// [aa]
    	// []
    }
    
    func ExampleRegexp_FindAllStringSubmatch() {
    	re := regexp.MustCompile(`a(x*)b`)
    	fmt.Printf("%q\n", re.FindAllStringSubmatch("-ab-", -1))
    	fmt.Printf("%q\n", re.FindAllStringSubmatch("-axxb-", -1))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top