Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getInfoMap (0.16 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

            final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong();
            return now + days * Constants.ONE_DAY_IN_MILLIS;
        }
    
        public Map<String, String> getInfoMap(final String sessionId) {
            final List<CrawlingInfoParam> crawlingInfoParamList = getCrawlingInfoService().getLastCrawlingInfoParamList(sessionId);
            final Map<String, String> map = new HashMap<>();
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/exec/Crawler.java

                } catch (final Exception e) {
                    logger.warn("Failed to store crawling information.", e);
                }
    
                final Map<String, String> infoMap = crawlingInfoHelper.getInfoMap(options.sessionId);
    
                final StringBuilder buf = new StringBuilder(500);
                for (final Map.Entry<String, String> entry : infoMap.entrySet()) {
                    if (buf.length() != 0) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.1K bytes
    - Viewed (2)
Back to top