Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ONE_DAY_IN_MILLIS (0.13 sec)

  1. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

                long diff7 = result7 - result0;
                assertTrue("1 day should be approximately ONE_DAY_IN_MILLIS", Math.abs(diff1 - Constants.ONE_DAY_IN_MILLIS) < 10000);
                assertTrue("7 days should be approximately 7 * ONE_DAY_IN_MILLIS", Math.abs(diff7 - 7 * Constants.ONE_DAY_IN_MILLIS) < 10000);
            } catch (Exception e) {
                // If method doesn't exist or cannot be accessed, just verify it doesn't crash
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

         */
        protected long getExpiredTime(final int days) {
            final long now = ComponentUtil.getSystemHelper().getCurrentTimeAsLong();
            return now + days * Constants.ONE_DAY_IN_MILLIS;
        }
    
        /**
         * Retrieves all crawling information parameters for the specified session as a map.
         *
         * @param sessionId the session ID to retrieve parameters for
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/Constants.java

        /** Process type for both crawling and displaying operations. */
        public static final String PROCESS_TYPE_BOTH = "B";
    
        /** Number of milliseconds in one day. */
        public static final long ONE_DAY_IN_MILLIS = 24L * 60L * 60L * 1000L;
    
        /** Guest user identifier. */
        public static final String GUEST_USER = "guest";
    
        /** Conversion rule array for pager components. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
Back to top