Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for retrieve (0.03 sec)

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

                        .addScrollId(scrollId)
                        .execute(wrap(res -> {}, e -> logger.warn("Failed to clear the scroll context.", e)));
            }
        }
    
        /**
         * Retrieves a document by ID with custom conditions and result processing.
         *
         * @param <T>          the result type
         * @param index        the index name
         * @param id           the document ID
    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

          fun run() {
            val request = Request.Builder()
                .url("http://publicobject.com/secrets/hellosecret.txt")
                .build()
          }
        ```
    
        To avoid making many retries when authentication isn't working, you can return null to give up. For example, you may want to skip the retry when these exact credentials have already been attempted:
    
        ```kotlin
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
Back to top