Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 169 for Interval (0.06 sec)

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

            long interval = 100L; // Keep test intervals short
            dataIndexHelper.setCrawlingExecutionInterval(interval);
    
            try {
                Field field = DataIndexHelper.class.getDeclaredField("crawlingExecutionInterval");
                field.setAccessible(true);
                long actualInterval = (Long) field.get(dataIndexHelper);
                assertEquals(interval, actualInterval);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

            protected int toMinutes;
    
            /** Delay in milliseconds to apply during this interval */
            protected long delay;
    
            /** Array of days when this rule applies (1=Sunday, 7=Saturday) */
            protected int[] days;
    
            /** Flag indicating if the interval spans across midnight */
            protected boolean reverse;
    
            /**
             * Creates a new interval rule.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

         */
        public void setMaxAccessCount(final long maxAccessCount) {
            this.maxAccessCount = maxAccessCount;
        }
    
        /**
         * Sets the interval time between crawling executions.
         *
         * @param crawlingExecutionInterval The crawling execution interval in milliseconds
         */
        public void setCrawlingExecutionInterval(final long crawlingExecutionInterval) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

            suggester.refresh();
            if (popularWordHelper != null) {
                popularWordHelper.clearCache();
            }
        }
    
        /**
         * Sets the interval for storing search logs.
         *
         * @param searchStoreInterval The search store interval in minutes.
         */
        public void setSearchStoreInterval(final long searchStoreInterval) {
            this.searchStoreInterval = searchStoreInterval;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

    import java.util.concurrent.TimeUnit
    import okhttp3.internal.canParseAsIpAddress
    import okhttp3.tls.internal.der.AlgorithmIdentifier
    import okhttp3.tls.internal.der.AttributeTypeAndValue
    import okhttp3.tls.internal.der.BasicConstraints
    import okhttp3.tls.internal.der.BitString
    import okhttp3.tls.internal.der.Certificate
    import okhttp3.tls.internal.der.CertificateAdapters
    import okhttp3.tls.internal.der.CertificateAdapters.generalNameDnsName
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java

            assertEquals(0L, webFsIndexHelper.maxAccessCount);
        }
    
        public void test_setCrawlingExecutionInterval() {
            long interval = 5000L;
            webFsIndexHelper.setCrawlingExecutionInterval(interval);
            assertEquals(interval, webFsIndexHelper.crawlingExecutionInterval);
        }
    
        public void test_setCrawlingExecutionInterval_withDefaultValue() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  7. src/main/webapp/js/suggestor.js

        //monitoring input field
        setInterval(function() {
          if (interval < 5) {
            interval = interval + 1;
          } else {
            if ($textArea.val() !== inputText) {
              if (!isFocusList && started && !suggestingSts) {
                //update if not selecting item in list
                suggestor.suggest();
                interval = 0;
              }
            }
          }
        }, 100);
      };
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

                    }
                }
            }
        }
    
        /**
         * Sets the crawling execution interval.
         * This interval controls the delay between starting new crawler threads
         * and the frequency of status checks during crawling operations.
         *
         * @param crawlingExecutionInterval interval in milliseconds
         */
        public void setCrawlingExecutionInterval(final long crawlingExecutionInterval) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/misc/DynamicProperties.java

        }
    
        @Override
        public Collection<Object> values() {
            return getProperties().values();
        }
    
        /**
         * Sets the check interval for file modifications.
         *
         * @param checkInterval
         *            The new check interval in milliseconds.
         */
        public void setCheckInterval(final long checkInterval) {
            this.checkInterval = checkInterval;
        }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java

            } catch (Exception e) {
                assertTrue(true);
            }
        }
    
        public void test_setSearchStoreInterval() {
            long interval = 5L;
            suggestHelper.setSearchStoreInterval(interval);
            assertEquals(interval, suggestHelper.searchStoreInterval);
        }
    
        public void test_storeSearchLog() {
            try {
                suggestHelper.storeSearchLog();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16K bytes
    - Viewed (0)
Back to top