- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for CrawlingConfigHelper (0.18 sec)
-
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
*/ public class CrawlingConfigHelper { /** * Creates a new instance of CrawlingConfigHelper. */ public CrawlingConfigHelper() { // Default constructor } private static final Logger logger = LogManager.getLogger(CrawlingConfigHelper.class); /** * Map storing crawling configurations by session ID. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
public void test_getConfigType() { assertNull(crawlingConfigHelper.getConfigType(null)); assertNull(crawlingConfigHelper.getConfigType("")); assertNull(crawlingConfigHelper.getConfigType("XXX")); assertNull(crawlingConfigHelper.getConfigType("W")); assertNull(crawlingConfigHelper.getConfigType("F")); assertNull(crawlingConfigHelper.getConfigType("D"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 34.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
} } public void test_crawl_withWebConfigOnly() { List<String> webConfigIds = Arrays.asList("webConfig1", "webConfig2"); // Mock CrawlingConfigHelper CrawlingConfigHelper crawlingConfigHelper = new CrawlingConfigHelper() { @Override public List<WebConfig> getWebConfigListByIds(List<String> webConfigIdList) { return Collections.emptyList(); }
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/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
*/ @Override protected CrawlerClient getClient(final String url) { final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper(); final CrawlingConfig crawlingConfig = crawlingConfigHelper.get(crawlerContext.getSessionId()); final Map<String, String> clientConfigMap = crawlingConfig.getConfigParameterMap(ConfigName.CLIENT);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
* @return The crawling config helper. */ public static CrawlingConfigHelper getCrawlingConfigHelper() { if (crawlingConfigHelper == null || HotdeployUtil.isHotdeploy()) { crawlingConfigHelper = getComponent(CRAWLING_CONFIG_HELPER); } return crawlingConfigHelper; } /** * Gets the crawling info helper component.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java
dataIndexHelper.setCrawlingExecutionInterval(1L); // 1ms instead of 5000ms } private void setupMockComponents() { // Lightweight mock CrawlingConfigHelper ComponentUtil.register(new CrawlingConfigHelper() { @Override public List<DataConfig> getAllDataConfigList() { return new ArrayList<>(); // Always return empty for fast tests }
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/thumbnail/impl/BaseThumbnailGenerator.java
protected boolean process(final String id, final Predicate<ResponseData> consumer) { return process(id, (configId, url) -> { final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper(); final CrawlingConfig config = crawlingConfigHelper.getCrawlingConfig(configId); if (config == null) { throw new ThumbnailGenerationException("No CrawlingConfig: " + configId);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
ComponentUtil.register(new ThumbnailManager(), "thumbnailManager"); final CrawlingConfigHelper crawlingConfigHelper = new CrawlingConfigHelper(); crawlingConfigHelper.init(); ComponentUtil.register(crawlingConfigHelper, "crawlingConfigHelper"); ComponentUtil.register(new WebConfigService() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 29.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java
fileAuthenticationService.getFileAuthenticationList(fileAuthenticationPager)); // page navi RenderDataUtil.register(data, "displayCreateLink", !crawlingConfigHelper.getAllFileConfigList(false, false, false, null).isEmpty()); // restore from pager copyBeanToBean(fileAuthenticationPager, form, op -> op.include("id")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java
RenderDataUtil.register(data, "requestHeaderItems", requestHeaderService.getRequestHeaderList(reqHeaderPager)); // page navi RenderDataUtil.register(data, "displayCreateLink", !crawlingConfigHelper.getAllWebConfigList(false, false, false, null).isEmpty()); // restore from pager copyBeanToBean(reqHeaderPager, form, op -> op.include("id")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.3K bytes - Viewed (0)