- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 893 for builders (0.06 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat
from.tv sakura.tv // Salesforce.com, Inc. https://salesforce.com/ // Submitted by Salesforce Public Suffix List Team <******@****.***> *.builder.code.com *.dev-builder.code.com *.stg-builder.code.com *.001.test.code-builder-stg.platform.salesforce.com *.d.crm.dev *.w.crm.dev *.wa.crm.dev *.wb.crm.dev *.wc.crm.dev *.wd.crm.dev *.we.crm.dev *.wf.crm.dev
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 309.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CharStreamsTest.java
StringBuilder builder2 = new StringBuilder(); copied = CharStreams.copy(new StringReader(I18N), builder2); assertEquals(I18N, builder2.toString()); assertEquals(I18N.length(), copied); } public void testCopy_toStringBuilder_fromReadable() throws IOException { StringBuilder builder = new StringBuilder(); long copied = CharStreams.copy(wrapAsGenericReadable(new StringReader(ASCII)), builder);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 11.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/CharStreamsTest.java
StringBuilder builder2 = new StringBuilder(); copied = CharStreams.copy(new StringReader(I18N), builder2); assertEquals(I18N, builder2.toString()); assertEquals(I18N.length(), copied); } public void testCopy_toStringBuilder_fromReadable() throws IOException { StringBuilder builder = new StringBuilder(); long copied = CharStreams.copy(wrapAsGenericReadable(new StringReader(ASCII)), builder);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 11.3K bytes - Viewed (0) -
clause/where.go
} type AndConditions struct { Exprs []Expression } func (and AndConditions) Build(builder Builder) { if len(and.Exprs) > 1 { builder.WriteByte('(') buildExprs(and.Exprs, builder, AndWithSpace) builder.WriteByte(')') } else { buildExprs(and.Exprs, builder, AndWithSpace) } } func Or(exprs ...Expression) Expression { if len(exprs) == 0 { return nil }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Apr 25 12:22:53 UTC 2024 - 5.1K bytes - Viewed (0)