Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for attempts (0.03 sec)

  1. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        /**
         * Sets the maximum retry attempts for configuration synchronization status checks.
         *
         * @param maxConfigSyncStatusRetry the maximum retry attempts
         */
        public void setMaxConfigSyncStatusRetry(final int maxConfigSyncStatusRetry) {
            this.maxConfigSyncStatusRetry = maxConfigSyncStatusRetry;
        }
    
        /**
         * Sets the maximum retry attempts for search engine status checks.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  2. docs/recipes.md

        ```kotlin
        if (credential == response.request.header("Authorization")) {
          return null // If we already failed with these credentials, don't retry.
         }
        ```
    
        You may also skip the retry when you’ve hit an application-defined attempt limit:
    
        ```kotlin
        if (response.responseCount >= 3) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealCall.kt

          get() = originalRequest.url.host
    
        val request: Request
          get() = originalRequest
    
        val call: RealCall
          get() = this@RealCall
    
        /**
         * Attempt to enqueue this async call on [executorService]. This will attempt to clean up
         * if the executor has been shut down by reporting the call as failed.
         */
        fun executeOn(executorService: ExecutorService) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:30:11 UTC 2025
    - 17.8K bytes
    - Viewed (0)
Back to top