Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 631 for intervals (0.99 sec)

  1. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

         * Represents a rule for controlling crawler intervals.
         * Each rule defines a time range, applicable days, and delay amount.
         */
        public static class IntervalRule {
            /** Starting hour of the interval */
            protected int fromHours;
    
            /** Starting minute of the interval */
            protected int fromMinutes;
    
            /** Ending hour of the interval */
            protected int toHours;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java

                return timestamp;
            }
    
            /**
             * Sets the notification timestamp.
             *
             * @param timestamp the timestamp value in FILETIME format (100-nanosecond intervals since January 1, 1601 UTC)
             */
            public void setTimestamp(long timestamp) {
                this.timestamp = timestamp;
            }
    
            /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java

    import org.junit.jupiter.params.provider.ValueSource;
    import org.mockito.Mock;
    import org.mockito.junit.jupiter.MockitoExtension;
    
    import jcifs.Configuration;
    import jcifs.SmbConstants;
    import jcifs.internal.SMBProtocolDecodingException;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * Test class for Smb2CloseResponse functionality
     */
    @ExtendWith(MockitoExtension.class)
    @DisplayName("Smb2CloseResponse Tests")
    class Smb2CloseResponseTest {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  6. 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)
  7. src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java

         *
         * @param handle notification handle
         * @return polling interval in milliseconds
         */
        private long determinePollInterval(ChangeNotificationHandle handle) {
            int failures = getFailureCount(handle);
    
            // Base interval starts at 1 second, increases with failures
            // Max interval is 30 seconds for inactive directories
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Hpack.kt

     * limitations under the License.
     */
    package okhttp3.internal.http2
    
    import java.io.IOException
    import java.util.Arrays
    import okhttp3.internal.and
    import okhttp3.internal.http2.Header.Companion.RESPONSE_STATUS
    import okhttp3.internal.http2.Header.Companion.TARGET_AUTHORITY
    import okhttp3.internal.http2.Header.Companion.TARGET_METHOD
    import okhttp3.internal.http2.Header.Companion.TARGET_PATH
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

        /**
         * Set the health check interval
         * @param millis the health check interval in milliseconds
         */
        public void setHealthCheckInterval(int millis) {
            if (millis <= 0) {
                throw new IllegalArgumentException("Health check interval must be positive");
            }
            this.healthCheckInterval = millis;
            log.info("Set health check interval to {} ms", millis);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/witness/WitnessRpcClient.java

                if (message.isSuccess()) {
                    // Set recommended heartbeat interval from server
                    response.setRecommendedHeartbeatInterval(message.getHeartbeatInterval());
                    log.debug("Witness heartbeat successful, next interval: {} ms", message.getHeartbeatInterval());
                } else {
                    response.setError(message.getErrorMessage());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 12.1K bytes
    - Viewed (0)
Back to top