- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for crawlerEndTime (0.14 sec)
-
src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java
} /** * Set the value of crawlerEndTime, used in parameter comment. <br> * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty. * @param crawlerEndTime The parameter value of crawlerEndTime. (NotNull) */ public void setCrawlerEndTime(String crawlerEndTime) { registerVariable("crawlerEndTime", crawlerEndTime); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
Map<String, String> infoMap = new HashMap<>(); infoMap.put(Constants.CRAWLER_STATUS, Constants.TRUE); infoMap.put("CrawlerStartTime", "2024-01-01T10:00:00"); infoMap.put("CrawlerEndTime", "2024-01-01T11:00:00"); try { crawler.sendMail(infoMap); } catch (Exception e) { fail("Should not throw exception: " + e.getMessage()); } }
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/java/org/codelibs/fess/exec/Crawler.java
postcard.addTo(fessConfig.getMailFromAddress()); postcard.dryrun(); } postcard.setCrawlerEndTime(getValueFromMap(dataMap, "crawlerEndTime", StringUtil.EMPTY)); postcard.setCrawlerExecTime(getValueFromMap(dataMap, "crawlerExecTime", "0"));
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/java/org/codelibs/fess/Constants.java
/** Info map key for crawler start time. */ public static final String CRAWLER_START_TIME = "CrawlerStartTime"; /** Info map key for crawler end time. */ public static final String CRAWLER_END_TIME = "CrawlerEndTime"; /** Info map key for crawler execution time. */ public static final String CRAWLER_EXEC_TIME = "CrawlerExecTime"; /** Info map key for web/file system crawler start time. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0)