- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for Data2C (0.04 seconds)
-
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
crawlJob.dataConfigIds(new String[] { "data1", "data2", "data3" }); String result = crawlJob.execute(); assertNotNull(result); assertTrue(result.contains("Web Config Id: web1 web2")); assertTrue(result.contains("File Config Id: file1")); assertTrue(result.contains("Data Config Id: data1 data2 data3")); } // Test execute method with sessionId already set
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 25K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java
map.put("data1", 5); assertFalse(docBoostMatcher.match(map)); map.remove("data1"); assertFalse(docBoostMatcher.match(map)); map.put("data2", 5); assertFalse(docBoostMatcher.match(map)); } @Test public void test_string() { final DocBoostMatcher docBoostMatcher = new DocBoostMatcher();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 8.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java
future1.set(DATA1); assertFalse(compound.isDone()); future2.set(DATA2); assertFalse(compound.isDone()); listener.expectCall(); future3.set(DATA3); assertTrue(listener.wasCalled()); List<String> results = getDone(compound); assertThat(results).containsExactly(DATA1, DATA2, DATA3).inOrder(); } public void testAllAsList_emptyList() throws Exception {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 134K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/FuturesTest.java
future1.set(DATA1); assertFalse(compound.isDone()); future2.set(DATA2); assertFalse(compound.isDone()); listener.expectCall(); future3.set(DATA3); assertTrue(listener.wasCalled()); List<String> results = getDone(compound); assertThat(results).containsExactly(DATA1, DATA2, DATA3).inOrder(); } public void testAllAsList_emptyList() throws Exception {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 134K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
Crawler.Options options = new Crawler.Options(); options.dataConfigIds = "data1,data2,data3,data4"; List<String> result = options.getDataConfigIdList(); assertNotNull(result); assertEquals(4, result.size()); assertTrue(result.contains("data1")); assertTrue(result.contains("data2")); assertTrue(result.contains("data3")); assertTrue(result.contains("data4"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 30.8K bytes - Click Count (0)