Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hasFailures (0.07 sec)

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

                            return StringUtil.EMPTY;
                        });
                final BulkResponse response = builder.execute().actionGet(fessConfig.getIndexBulkTimeout());
                if (response.hasFailures()) {
                    logger.warn("Failed to register {}: {}", dataPath, response.buildFailureMessage());
                }
            } catch (final Exception e) {
    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. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealCall.kt

        }
    
        if (closeExchange) {
          exchange?.detachWithViolence()
        }
    
        interceptorScopedExchange = null
      }
    
      fun retryAfterFailure(): Boolean =
        exchange?.hasFailure == true &&
          exchangeFinder!!.routePlanner.hasNext(exchange?.connection)
    
      /**
       * Returns a string that describes this call. Doesn't include a full URL as that might contain
       * sensitive information.
    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