Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Days (0.07 sec)

  1. FessEnv.java

    L114: */ L115: boolean isFrameworkDebug(); L116: L117: /** L118: * Get the value for the key 'time.adjust.time.millis'. <br> L119: * The value is, e.g. 0 <br> L120: * comment: <br> L121: * one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000<br> L122: * special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)<br> L123: * The milliseconds for (relative or absolute) adjust time (set only...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.9K bytes
  2. CrawlingInfoHelper.java

    1000 * 60); L138: } L139: } L140: return documentExpires != null ? new Date(documentExpires) : null; L141: } L142: L143: protected long getExpiredTime(final int days) { L144: final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); L145: return now + days * Constants.ONE_DAY_IN_MILLIS; L146: } L147: L148: public Map<String, String> getInfoMap(final String sessionId) { L149: final List<CrawlingInfoParam> crawlingInfoParamList =...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.6K bytes
  3. FessFunctions.java

    return date.format(DateTimeFormatter.ofPattern(format, Locale.ROOT)); L174: } L175: L176: public static String formatDuration(final long durationMillis) { L177: return DurationFormatUtils.formatDuration(durationMillis, "d 'days' HH:mm:ss.SSS").replace("0 days", StringUtil.EMPTY).trim(); L178: L179: } L180: L181: public static String formatNumber(final long value, final String pattern) { L182: final DecimalFormat df = (DecimalFormat) NumberFormat.getNumberInstance(getUserLocale());...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      16.9K bytes
  4. SearchLogService.java

    @Resource L93: private SystemHelper systemHelper; L94: L95: @Resource L96: protected FessConfig fessConfig; L97: L98: public void deleteBefore(final int days) { L99: searchLogBhv.queryDelete(cb -> { L100: cb.query().setRequestedAt_LessEqual(systemHelper.getCurrentTimeAsLocalDateTime().minusDays(days)); L101: }); L102: } L103: L104: public List<?> getSearchLogList(final SearchLogPager pager) { L105: final EsPagingResultBean<?> list; L106: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      28.4K bytes
  5. fess_label_en.properties

    L30:labels.updatedTime=Updated Time L31:labels.urls=URLs L32:labels.userAgent=User Agent L33:labels.username=Username L34:labels.value=Value L35:labels.versionNo=Version No. L36:labels.cronExpression=Schedule L37:labels.dayForCleanup=Remove Documents Before Days L38:labels.crawlingThreadCount=Simultaneous Crawler Config L39:labels.boost=Boost L40:labels.crawlingConfigName=Name L41:labels.crawlingConfigPath=Crawling Path L42:labels.processType=Process Type L43:labels.parameters=Parameters L44:labels.designFile=Upload...
    github.com/codelibs/fess/src/main/resources/fes...
    Fri Mar 22 11:58:34 UTC 2024
      40.7K bytes
  6. fess_label.properties

    L30:labels.updatedTime=Updated Time L31:labels.urls=URLs L32:labels.userAgent=User Agent L33:labels.username=Username L34:labels.value=Value L35:labels.versionNo=Version No. L36:labels.cronExpression=Schedule L37:labels.dayForCleanup=Remove Documents Before Days L38:labels.crawlingThreadCount=Simultaneous Crawler Config L39:labels.boost=Boost L40:labels.crawlingConfigName=Name L41:labels.crawlingConfigPath=Crawling Path L42:labels.processType=Process Type L43:labels.parameters=Parameters L44:labels.designFile=Upload...
    github.com/codelibs/fess/src/main/resources/fes...
    Fri Mar 22 11:58:34 UTC 2024
      40.7K bytes
Back to top