- Sort Score
- Num 10 results
- Language All
Results 691 - 700 of 2,321 for buildid (0.05 seconds)
-
okhttp-tls/src/test/java/okhttp3/tls/HeldCertificateTest.kt
@Test fun ecdsaSignedByRsa() { val root = HeldCertificate .Builder() .certificateAuthority(0) .rsa2048() .build() val leaf = HeldCertificate .Builder() .certificateAuthority(0) .ecdsa256() .signedBy(root) .build() assertThat(root.certificate.sigAlgName).isEqualTo("SHA256WITHRSA", ignoreCase = true)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 22.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsPagingResultBean.java
private TotalHits totalHits; private Aggregations aggregations; private SearchRequestBuilder builder; public EsPagingResultBean(final SearchRequestBuilder builder) { this.builder = builder; } public String getQueryDsl() { return builder.toString(); } public long getTook() { return took; } public void setTook(long took) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 2.5K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-CacheControlCommon.kt
} internal fun CacheControl.Companion.commonForceNetwork() = CacheControl .Builder() .noCache() .build() internal fun CacheControl.Companion.commonForceCache() = CacheControl .Builder() .onlyIfCached() .maxStale(Int.MAX_VALUE.seconds) .build() internal fun CacheControl.Builder.commonBuild(): CacheControl = CacheControl( noCache = noCache, noStore = noStore,
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 7.3K bytes - Click Count (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/YubikeyClientAuth.kt
val client = OkHttpClient .Builder() .sslSocketFactory(sslContext.socketFactory, trustManager) .build() // An example test URL that returns client certificate details. val request = Request .Builder() .url("https://prod.idrix.eu/secure/") .build() client.newCall(request).execute().use { response ->Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sat May 10 11:15:14 GMT 2025 - 4.2K bytes - Click Count (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableCollection.java
} boolean isPartialView() { return false; } /** GWT emulated version of {@link ImmutableCollection.Builder}. */ public abstract static class Builder<E> { static final int DEFAULT_INITIAL_CAPACITY = 4; Builder() {} static int expandedCapacity(int oldCapacity, int minCapacity) { if (minCapacity < 0) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Aug 06 18:32:41 GMT 2025 - 5.1K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/authenticator/JavaNetAuthenticatorTest.kt
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 2.7K bytes - Click Count (0) -
samples/guide/src/main/java/okhttp3/recipes/PostStreamingWithPipe.java
public void run() throws Exception { final PipeBody pipeBody = new PipeBody(); Request request = new Request.Builder() .url("https://api.github.com/markdown/raw") .post(pipeBody) .build(); streamPrimesToSinkAsynchronously(pipeBody.sink()); try (Response response = client.newCall(request).execute()) {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Jul 06 03:18:15 GMT 2018 - 3.1K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/ClingSupport.java
return new JLineMessageBuilderFactory(); } protected abstract Invoker createInvoker(); protected abstract Parser createParser(); protected abstract ParserRequest.Builder createParserRequestBuilder(String[] args);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Feb 08 16:25:25 GMT 2025 - 3.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/cbean/bs/BsRoleCB.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 6.3K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/MultipartBody.kt
} } val headers = Headers .Builder() .addUnsafeNonAscii("Content-Disposition", disposition) .build() return create(headers, body) } } } class Builder @JvmOverloads constructor( boundary: String = UUID.randomUUID().toString(), ) {Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 10.9K bytes - Click Count (0)