- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 27 for Crawl (0.02 sec)
-
src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java
assertTrue("Configuration should be fast", true); } public void test_empty_session_handling() { try { dataIndexHelper.crawl(""); dataIndexHelper.crawl(null); assertTrue("Empty session handling should be fast", true); } catch (Exception e) { assertTrue("Exception handling should be fast", true); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
* * @param sessionId The session ID for this crawling operation * @param webConfigIdList List of web configuration IDs to crawl, null for all * @param fileConfigIdList List of file configuration IDs to crawl, null for all */ public void crawl(final String sessionId, final List<String> webConfigIdList, final List<String> fileConfigIdList) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/resources/fess_label_de.properties
labels.crawling_info_WebFsCrawlExecTime=Crawl-Ausführungszeit (Web/Datei) labels.crawling_info_WebFsCrawlStartTime=Crawl-Startzeit (Web/Datei) labels.crawling_info_WebFsCrawlEndTime=Crawl-Endzeit (Web/Datei) labels.crawling_info_WebFsIndexExecTime=Indizierungs-Ausführungszeit (Web/Datei) labels.crawling_info_WebFsIndexSize=Indexgröße (Web/Datei) labels.crawling_info_DataCrawlExecTime=Crawl-Ausführungszeit (Datenspeicher)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 43.5K bytes - Viewed (1) -
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. */ @Option(name = "-f", aliases = "--fileConfigIds", metaVar = "fileConfigIds", usage = "File Config IDs")
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.crawling_info_WebFsCrawlExecTime=Crawl Execution Time (Web/File) labels.crawling_info_WebFsCrawlStartTime=Crawl Start Time (Web/File) labels.crawling_info_WebFsCrawlEndTime=Crawl End Time (Web/File) labels.crawling_info_WebFsIndexExecTime=Indexing Execution Time (Web/File) labels.crawling_info_WebFsIndexSize=Index Size (Web/File) labels.crawling_info_DataCrawlExecTime=Crawl Execution Time (Data Store)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
public void test_crawl_withNullParameters() { try { webFsIndexHelper.crawl("sessionId", null, null); assertTrue(true); } catch (Exception e) { assertTrue(true); } } public void test_crawl_withEmptyLists() { try { webFsIndexHelper.crawl("sessionId", Collections.emptyList(), Collections.emptyList()); assertTrue(true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 15.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
@Override public void crawl(String sessionId, List<String> webConfigIdList, List<String> fileConfigIdList) { // Mock crawl implementation } }; crawler.webFsIndexHelper = webFsIndexHelper; dataIndexHelper = new DataIndexHelper() { @Override public void crawl(String sessionId, List<String> dataConfigIdList) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.crawling_info_WebFsCrawlExecTime=Crawl Execution Time (Web/File) labels.crawling_info_WebFsCrawlStartTime=Crawl Start Time (Web/File) labels.crawling_info_WebFsCrawlEndTime=Crawl End Time (Web/File) labels.crawling_info_WebFsIndexExecTime=Indexing Execution Time (Web/File) labels.crawling_info_WebFsIndexSize=Index Size (Web/File) labels.crawling_info_DataCrawlExecTime=Crawl Execution Time (Data Store)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
* specified in the configIdList parameter. * * @param sessionId unique identifier for this crawling session * @param configIdList list of data configuration IDs to crawl */ public void crawl(final String sessionId, final List<String> configIdList) { final List<DataConfig> configList = ComponentUtil.getCrawlingConfigHelper().getDataConfigListByIds(configIdList);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
/** * Constructs a new crawl request. * * @param url the URL to crawl * @param depth the depth of this URL in the crawling hierarchy */ CrawlRequest(final String url, final int depth) { this.url = url; this.depth = depth; } /** * Gets the URL of this crawl request. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0)