Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Days (0.14 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         */
        boolean isFrameworkDebug();
    
        /**
         * Get the value for the key 'time.adjust.time.millis'. <br>
         * The value is, e.g. 0 <br>
         * comment: <br>
         * one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000<br>
         * special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)<br>
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

                }
            }
            return documentExpires != null ? new Date(documentExpires) : null;
        }
    
        protected long getExpiredTime(final int days) {
            final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong();
            return now + days * Constants.ONE_DAY_IN_MILLIS;
        }
    
        public Map<String, String> getInfoMap(final String sessionId) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

        private SystemHelper systemHelper;
    
        @Resource
        protected FessConfig fessConfig;
    
        public void deleteBefore(final int days) {
            searchLogBhv.queryDelete(cb -> {
                cb.query().setRequestedAt_LessEqual(systemHelper.getCurrentTimeAsLocalDateTime().minusDays(days));
            });
        }
    
        public List<?> getSearchLogList(final SearchLogPager pager) {
            final EsPagingResultBean<?> list;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/Config.java

     * overwriting properties from the file. Thus properties provided on the
     * commandline with the <code>-Dproperty.name=value</code> VM parameter
     * will override properties from the configuration file.
     * <p>
     * There are several ways to set jCIFS properties. See
     * the <a href="../overview-summary.html#scp">overview page of the API
     * documentation</a> for details.
     */
    
    public class Config {
    
    public static int socketCount = 0;
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

        }
    
        public static String formatDuration(final long durationMillis) {
            return DurationFormatUtils.formatDuration(durationMillis, "d 'days' HH:mm:ss.SSS").replace("0 days", StringUtil.EMPTY).trim();
    
        }
    
        public static String formatNumber(final long value, final String pattern) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_label.properties

    labels.updatedTime=Updated Time
    labels.urls=URLs
    labels.userAgent=User Agent
    labels.username=Username
    labels.value=Value
    labels.versionNo=Version No.
    labels.cronExpression=Schedule
    labels.dayForCleanup=Remove Documents Before Days
    labels.crawlingThreadCount=Simultaneous Crawler Config
    labels.boost=Boost
    labels.crawlingConfigName=Name
    labels.crawlingConfigPath=Crawling Path
    labels.processType=Process Type
    labels.parameters=Parameters
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
  7. src/main/resources/fess_label_en.properties

    labels.updatedTime=Updated Time
    labels.urls=URLs
    labels.userAgent=User Agent
    labels.username=Username
    labels.value=Value
    labels.versionNo=Version No.
    labels.cronExpression=Schedule
    labels.dayForCleanup=Remove Documents Before Days
    labels.crawlingThreadCount=Simultaneous Crawler Config
    labels.boost=Boost
    labels.crawlingConfigName=Name
    labels.crawlingConfigPath=Crawling Path
    labels.processType=Process Type
    labels.parameters=Parameters
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
Back to top