Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 265 for millisecond (0.08 sec)

  1. src/main/java/jcifs/smb/SmbOperationException.java

            return retryPolicy.shouldRetry(this, attemptNumber);
        }
    
        /**
         * Get the delay before next retry
         *
         * @param attemptNumber the current attempt number
         * @return delay in milliseconds
         */
        public long getRetryDelayMs(int attemptNumber) {
            return retryPolicy.getDelayMs(attemptNumber);
        }
    
        /**
         * Add context information
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/elevateword/EditForm.java

         */
        @Size(max = 1000)
        public String updatedBy;
    
        /**
         * The timestamp when this elevate word configuration was last updated.
         * Stored as a long value representing milliseconds since epoch.
         * Used for audit trail and concurrency control.
         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/reqheader/EditForm.java

         */
        @Size(max = 1000)
        public String updatedBy;
    
        /**
         * The timestamp when this request header configuration was last updated.
         * Stored as a long value representing milliseconds since epoch.
         * Used for audit trail and concurrency control.
         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnection.kt

        } else {
          javaNetSocket.soTimeout = chain.readTimeoutMillis()
          okHttpSocket.source.timeout().timeout(chain.readTimeoutMillis.toLong(), MILLISECONDS)
          okHttpSocket.sink.timeout().timeout(chain.writeTimeoutMillis.toLong(), MILLISECONDS)
          Http1ExchangeCodec(client, this, okHttpSocket)
        }
      }
    
      internal fun useAsSocket() {
        javaNetSocket.soTimeout = 0
        noNewExchanges()
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

            }
            this.maxPoolSize = size;
            log.info("Set maximum pool size to {}", size);
        }
    
        /**
         * Set the maximum idle time for connections
         * @param millis the maximum idle time in milliseconds
         */
        public void setMaxIdleTime(int millis) {
            if (millis <= 0) {
                throw new IllegalArgumentException("Idle time must be positive");
            }
            this.maxIdleTime = 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)
  6. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            }
            return date.format(DateTimeFormatter.ofPattern(format, Locale.ROOT));
        }
    
        /**
         * Formats a duration in milliseconds to a human-readable string.
         *
         * @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) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/core/misc/DynamicProperties.java

     *
     * @see Properties
     */
    public class DynamicProperties extends Properties {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * The interval in milliseconds to check for file modifications. Default is 5000ms.
         */
        protected long checkInterval = 5000L;
    
        /**
         * The timestamp of the last check for file modifications.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java

         * @return the maximum cache age in milliseconds
         */
        public long getMaxCacheAge() {
            return maxCacheAge;
        }
    
        /**
         * Sets the maximum age for cached directory data
         * @param maxCacheAge the maximum cache age in milliseconds
         */
        public void setMaxCacheAge(long maxCacheAge) {
            this.maxCacheAge = maxCacheAge;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/util/SecureKeyManager.java

         */
        public int getKeyVersion(String sessionId) {
            return keyVersions.getOrDefault(sessionId, 0);
        }
    
        /**
         * Get key age in milliseconds
         *
         * @param sessionId the session ID
         * @return age in milliseconds, or -1 if unknown
         */
        public long getKeyAge(String sessionId) {
            Long creationTime = keyCreationTimes.get(sessionId);
            if (creationTime == null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

        protected static final String ID_TOKEN = "id_token";
    
        /** OAuth2 authorization code parameter name. */
        protected static final String CODE = "code";
    
        /** Timeout for token acquisition in milliseconds. */
        protected long acquisitionTimeout = 30 * 1000L;
    
        /** Cache for storing group information to reduce API calls. */
        protected Cache<String, Pair<String[], String[]>> groupCache;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 28 09:13:08 UTC 2025
    - 37.3K bytes
    - Viewed (0)
Back to top