Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CrawlingInfoHelper (0.28 sec)

  1. src/main/java/org/codelibs/fess/exec/Crawler.java

                }
                writeTimeToSessionInfo(crawlingInfoHelper, Constants.CRAWLER_END_TIME);
                crawlingInfoHelper.putToInfoMap(Constants.CRAWLER_EXEC_TIME, Long.toString(systemHelper.getCurrentTimeAsLong() - totalTime));
    
            }
        }
    
        protected void writeTimeToSessionInfo(final CrawlingInfoHelper crawlingInfoHelper, final String key) {
            if (crawlingInfoHelper != null) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper();
            final String sessionId = crawlingInfoHelper.getCanonicalSessionId(responseData.getSessionId());
            final PathMappingHelper pathMappingHelper = ComponentUtil.getPathMappingHelper();
            final Date documentExpires = crawlingInfoHelper.getDocumentExpires(crawlingConfig);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

            }
            crawlerList.clear();
            crawlerStatusList.clear();
    
            // put cralwing info
            final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper();
    
            final long execTime = systemHelper.getCurrentTimeAsLong() - startTime;
            crawlingInfoHelper.putToInfoMap(Constants.WEB_FS_CRAWLING_EXEC_TIME, Long.toString(execTime));
            if (logger.isInfoEnabled()) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            }
    
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper();
            final String sessionId = crawlingInfoHelper.getCanonicalSessionId(responseData.getSessionId());
            final PathMappingHelper pathMappingHelper = ComponentUtil.getPathMappingHelper();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            final FessXpathTransformer fessXpathTransformer = new FessXpathTransformer();
            fessXpathTransformer.init();
            SingletonLaContainerFactory.getContainer().register(CrawlingInfoHelper.class, "crawlingInfoHelper");
            SingletonLaContainerFactory.getContainer().register(PathMappingHelper.class, "pathMappingHelper");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 41.3K bytes
    - Viewed (0)
Back to top