Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setSource (1.81 sec)

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

                final CreateIndexResponse indexResponse = client.admin()
                        .indices()
                        .prepareCreate(indexName)
                        .setSource(source, XContentType.JSON)
                        .execute()
                        .actionGet(fessConfig.getIndexIndicesTimeout());
                if (indexResponse.isAcknowledged()) {
    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/Cache.kt

            cache[key] ?: return null
          } catch (_: IOException) {
            return null // Give up because the cache cannot be read.
          }
    
        val entry: Entry =
          try {
            Entry(snapshot.getSource(ENTRY_METADATA))
          } catch (_: IOException) {
            snapshot.closeQuietly()
            return null
          }
    
        val response = entry.response(snapshot)
        if (!entry.matches(request, response)) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top