- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for webConfigIds (0.07 seconds)
-
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
} @Test public void test_crawl_largeConfigLists() { // Test with large configuration lists List<String> webConfigIds = new ArrayList<>(); List<String> fileConfigIds = new ArrayList<>(); for (int i = 0; i < 100; i++) { webConfigIds.add("webConfig" + i); fileConfigIds.add("fileConfig" + i); } // Mock CrawlingConfigHelperCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 15.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
* If not set, all available web configurations will be crawled. * * @param webConfigIds array of web crawling configuration IDs, or null for all * @return this CrawlJob instance for method chaining */ public CrawlJob webConfigIds(final String[] webConfigIds) { this.webConfigIds = webConfigIds; return this; } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
public String name; /** Comma-separated list of web configuration IDs to crawl. */ @Option(name = "-w", aliases = "--webConfigIds", metaVar = "webConfigIds", usage = "Web Config IDs") public String webConfigIds; /** Comma-separated list of file system configuration IDs to crawl. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 32.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
} // Test webConfigIds setter @Test public void test_webConfigIds() { String[] testIds = { "web1", "web2", "web3" }; CrawlJob result = crawlJob.webConfigIds(testIds); assertArrayEquals(testIds, crawlJob.webConfigIds); assertSame(crawlJob, result); // Test with null result = crawlJob.webConfigIds(null); assertNull(crawlJob.webConfigIds);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/it/CrawlTestBase.java
protected static String buildWebConfigJobScript(final String webCofigId) { return String.format("return container.getComponent(\"crawlJob\")" + ".logLevel(\"info\")" + ".sessionId(\"%s\")" + ".webConfigIds([\"%s\"] as String[])" + ".jobExecutor(executor).execute();", webCofigId, webCofigId); } protected static String buildFileConfigJobScript(final String fileConfigId) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
Crawler.Options options = new Crawler.Options(); options.webConfigIds = null; List<String> result = options.getWebConfigIdList(); assertNull(result); } @Test public void test_Options_getWebConfigIdList_withEmpty() { Crawler.Options options = new Crawler.Options(); options.webConfigIds = ""; List<String> result = options.getWebConfigIdList();
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)