Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test_addLang (3.29 sec)

  1. src/test/java/org/codelibs/fess/suggest/request/suggest/SuggestRequestBuilderTest.java

            indexItems();
    
            SuggestResponse response = suggester.suggest().addKind("document").execute().getResponse();
    
            assertNotNull(response);
        }
    
        @Test
        public void test_addLang() throws Exception {
            SuggestItem[] items = new SuggestItem[1];
            String[][] readings = new String[1][];
            readings[0] = new String[] { "test" };
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestBuilderTest.java

            indexItems();
    
            PopularWordsResponse response = suggester.popularWords().setSize(5).execute().getResponse();
    
            assertNotNull(response);
        }
    
        @Test
        public void test_addTag() throws Exception {
            indexItems();
    
            PopularWordsResponse response = suggester.popularWords().addTag("tag1").execute().getResponse();
    
            assertNotNull(response);
        }
    
        @Test
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestTest.java

            request.setSeed("test-seed");
            request.setWindowSize(30);
            request.setQueryFreqThreshold(5);
    
            assertNotNull(request);
        }
    
        @Test
        public void test_addTag() throws Exception {
            indexQueryItems();
    
            PopularWordsResponse response = suggester.popularWords().setSize(10).addTag("tag1").execute().getResponse();
    
            assertNotNull(response);
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top