Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for days$1 (0.44 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/webapp/js/admin/moment-with-locales.min.js

    (r/1e3),_.seconds=e%60,a=U(e/60),_.minutes=a%60,t=U(a/60),_.hours=t%24,d+=U(t/24),i+=n=U(bt(d)),d-=vt(St(n)),s=U(i/12),i%=12,_.days=d,_.months=i,_.years=s,this},Xt.clone=function(){return Ga(this)},Xt.get=function(e){return e=N(e),this.isValid()?this[e+"s"]():NaN},Xt.milliseconds=Jt,Xt.seconds=Rt,Xt.minutes=Ct,Xt.hours=It,Xt.days=Ut,Xt.weeks=function(){return U(this.days()/7)},Xt.months=Gt,Xt.years=Vt,Xt.humanize=function(e,a){if(!this.isValid())return this.localeData().invalidDate();var t,s,n=!...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 360.5K bytes
    - Viewed (2)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt

     * seconds:
     *
     * ```java
     * Request request = new Request.Builder()
     *     .cacheControl(new CacheControl.Builder()
     *         .maxStale(365, TimeUnit.DAYS)
     *         .build())
     *     .url("http://publicobject.com/helloworld.txt")
     *     .build();
     * ```
     *
     * The [CacheControl] class can configure request caching directives and parse response caching
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  9. src/main/resources/fess_label.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: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    creatures argue.  It's enough to drive one crazy!'
    
      The Footman seemed to think this a good opportunity for
    repeating his remark, with variations.  `I shall sit here,' he
    said, `on and off, for days and days.'
    
      `But what am I to do?' said Alice.
    
      `Anything you like,' said the Footman, and began whistling.
    
      `Oh, there's no use in talking to him,' said Alice desperately:
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
Back to top