Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for days$2 (0.03 sec)

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

                // Verify that results are reasonable relative to each other
                assertTrue("Result for 7 days should be greater than 1 day", result7 > result1);
                assertTrue("Result for 1 day should be greater than 0 days", result1 > result0);
    
                // Verify that the differences are approximately correct
                long diff1 = result1 - result0;
    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/taglib/FessFunctions.java

         *
         * @param durationMillis the duration in milliseconds
         * @return formatted duration string (e.g., "2 days 14:30:25.123" or "14:30:25.123")
         */
        public static String formatDuration(final long durationMillis) {
            return DurationFormatUtils.formatDuration(durationMillis, "d 'days' HH:mm:ss.SSS").replace("0 days", StringUtil.EMPTY).trim();
    
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/Crawler.java

     *   -d, --dataConfigIds ids       : Comma-separated data config IDs
     *   -p, --properties path         : Properties file path
     *   -e, --expires days            : Expires for documents (in days)
     *   -h, --hotThread interval      : Interval for hot thread logging
     * </pre>
     */
    public class Crawler {
    
        /**
         * Creates a new instance of Crawler.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

    import static com.google.common.util.concurrent.MoreExecutors.renamingDecorator;
    import static com.google.common.util.concurrent.MoreExecutors.shutdownAndAwaitTermination;
    import static java.util.concurrent.TimeUnit.DAYS;
    import static java.util.concurrent.TimeUnit.MILLISECONDS;
    import static java.util.concurrent.TimeUnit.MINUTES;
    import static java.util.concurrent.TimeUnit.NANOSECONDS;
    import static java.util.concurrent.TimeUnit.SECONDS;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 28K bytes
    - Viewed (0)
  5. docs/en/data/topic_repos.yml

    - name: mcp-context-forge
      html_url: https://github.com/IBM/mcp-context-forge
      stars: 2236
      owner_login: IBM
      owner_html_url: https://github.com/IBM
    - name: 30-Days-of-Python
      html_url: https://github.com/codingforentrepreneurs/30-Days-of-Python
      stars: 2196
      owner_login: codingforentrepreneurs
      owner_html_url: https://github.com/codingforentrepreneurs
    - name: supabase-py
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 08:57:41 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_en.properties

    labels.urls=URLs
    labels.userAgent=User Agent
    labels.username=Username
    labels.value=Value
    labels.versionNo=Version No
    labels.cronExpression=Schedule
    labels.dayForCleanup=Delete documents older than specified days
    labels.crawlingThreadCount=Concurrent Crawling Count
    labels.boost=Boost
    labels.crawlingConfigName=Name
    labels.crawlingConfigPath=Path to Crawl
    labels.processType=Process Type
    labels.parameters=Parameters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

            assertNotNull(heartbeatInterval);
            assertEquals(10000, heartbeatInterval.intValue());
    
            // Test integer conversion for cleanup days
            int cleanupDays = fessConfig.getDayForCleanup();
            // cleanupDays is primitive int, not Integer
            assertEquals(3, cleanupDays);
    
            // Test integer conversion for crawler processes
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/Constants.java

        /** Default purge day value (-1 indicates no purging). */
        public static final String DEFAULT_PURGE_DAY = "-1";
    
        /** Default suggest purge day value (30 days). */
        public static final String DEFAULT_SUGGEST_PURGE_DAY = "30";
    
        /** Default list of bot user agents to purge from logs. */
        public static final String DEFAULT_PURGE_BY_BOTS =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt

        //      last modified: 105 days ago
        //             served:   5 days ago
        //   default lifetime: (105 - 5) / 10 = 10 days
        //            expires:  10 days from served date = 5 days from now
        server.enqueue(
          MockResponse
            .Builder()
            .addHeader("Last-Modified: " + formatDate(-105, TimeUnit.DAYS))
            .addHeader("Date: " + formatDate(-5, TimeUnit.DAYS))
            .body("A")
            .build(),
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 113.6K bytes
    - Viewed (0)
  10. docs/uk/docs/index.md

    {% endif %}
    
    <!-- /sponsors -->
    
    <a href="https://fastapi.tiangolo.com/fastapi-people/#sponsors" class="external-link" target="_blank">Other sponsors</a>
    
    ## Враження
    
    "_[...] I'm using **FastAPI** a ton these days. [...] I'm actually planning to use it for all of my team's **ML services at Microsoft**. Some of them are getting integrated into the core **Windows** product and some **Office** products._"
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 24.2K bytes
    - Viewed (0)
Back to top