Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 943 for builders (0.05 sec)

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

                final IndexRequestBuilder builder = client.prepareIndex().setIndex(index).setId(id.toString()).setSource(new DocMap(doc));
                options.accept(doc, builder);
                bulkRequestBuilder.add(builder);
            }
            return bulkRequestBuilder.execute().actionGet(ComponentUtil.getFessConfig().getIndexBulkTimeout());
        }
    
        /**
         * Builder class for constructing search conditions and parameters.
    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/changelogs/changelog_2x.md

    requests, responses, headers, and calls. It uses modern Java patterns like
    immutability and chained builders. The API now offers asynchronous callbacks
    in addition to synchronous blocking calls.
    
    #### API Changes
    
     *  **New Request and Response types,** each with their own builder. There's also
        a `RequestBody` class to write the request body to the network and a
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

       * resulting URL is not well-formed.
       */
      fun resolve(link: String): HttpUrl? = newBuilder(link)?.build()
    
      /**
       * Returns a builder based on this URL.
       */
      fun newBuilder(): Builder {
        val result = Builder()
        result.scheme = scheme
        result.encodedUsername = encodedUsername
        result.encodedPassword = encodedPassword
        result.host = host
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        for (CacheBuilder<Object, Object> builder : allKeyValueStrengthMakers()) {
          result.add(builder.maximumSize(SMALL_MAX_SIZE));
        }
        for (CacheBuilder<Object, Object> builder : allKeyValueStrengthMakers()) {
          result.add(builder.expireAfterAccess(99999, SECONDS));
        }
        for (CacheBuilder<Object, Object> builder : allKeyValueStrengthMakers()) {
          result.add(builder.expireAfterWrite(99999, SECONDS));
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 110.5K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_3x.md

        changes. In 3.x, `OkHttpClient` is now stateless and has a builder. Note
        that this class is not strictly immutable as it has stateful members like
        the connection pool and cache.
    
     *  **Get and Set prefixes are now avoided.** With ubiquitous builders
        throughout OkHttp these accessor prefixes aren't necessary. Previously
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  6. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    browsersafetymark.io
    brumunddal.no
    brussels
    bryansk.su
    bryne.no
    brønnøy.no
    brønnøysund.no
    bs
    bs.it
    bsb.br
    bss.design
    bt
    bt.it
    bu.no
    budejju.no
    build
    builders
    builtwithdark.com
    bukhara.su
    bulsan-sudtirol.it
    bulsan-suedtirol.it
    bulsan-südtirol.it
    bulsan.it
    bungoono.oita.jp
    bungotakada.oita.jp
    bunkyo.tokyo.jp
    busan.kr
    business
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  7. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

            SearchResult.SearchResultBuilder builder2 = SearchResult.create();
            Map<String, Object> doc2a = new HashMap<>();
            doc2a.put("id", "2a");
            builder2.addDocument(doc2a);
            Map<String, Object> doc2b = new HashMap<>();
            doc2b.put("id", "2b");
            builder2.addDocument(doc2b);
            builder2.allRecordCount(2L);
            SearchResult result2 = builder2.build();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  8. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    browsersafetymark.io
    brumunddal.no
    brussels
    bryansk.su
    bryne.no
    brønnøy.no
    brønnøysund.no
    bs
    bs.it
    bsb.br
    bss.design
    bt
    bt.it
    bu.no
    budejju.no
    build
    builders
    builtwithdark.com
    bukhara.su
    bulsan-sudtirol.it
    bulsan-suedtirol.it
    bulsan-südtirol.it
    bulsan.it
    bungoono.oita.jp
    bungotakada.oita.jp
    bunkyo.tokyo.jp
    busan.kr
    business
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  9. android/guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        CacheBuilder<Object, Object> builder1 = CacheBuilder.newBuilder().weakKeys();
        assertThrows(IllegalStateException.class, () -> builder1.weakKeys());
      }
    
      @GwtIncompatible // weakValues
      public void testValueStrengthSetTwice() {
        CacheBuilder<Object, Object> builder1 = CacheBuilder.newBuilder().weakValues();
        assertThrows(IllegalStateException.class, () -> builder1.weakValues());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/cache/CacheBuilderTest.java

        CacheBuilder<Object, Object> builder1 = CacheBuilder.newBuilder().weakKeys();
        assertThrows(IllegalStateException.class, () -> builder1.weakKeys());
      }
    
      @GwtIncompatible // weakValues
      public void testValueStrengthSetTwice() {
        CacheBuilder<Object, Object> builder1 = CacheBuilder.newBuilder().weakValues();
        assertThrows(IllegalStateException.class, () -> builder1.weakValues());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25K bytes
    - Viewed (0)
Back to top