- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 1,681 for requer (0.04 sec)
-
.github/DISCUSSION_TEMPLATE/questions.yml
* I already hit the "watch" button in this repository to receive notifications and I commit to help at least 2 people that ask questions in the future. * Review one Pull Request by downloading the code and following [all the review process](https://fastapi.tiangolo.com/help-fastapi/#review-pull-requests). options: - label: I commit to help with one of those options 👆
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Thu Aug 03 15:59:41 UTC 2023 - 5.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/DuplexTest.kt
.addHeader("h2", "v2") .socketHandler(body) .build(), ) val request = Request .Builder() .url(server.url("/")) .method("POST", AsyncRequestBody()) .build() val call = client.newCall(request) call.execute().use { response -> val sink = (request.body as AsyncRequestBody?)!!.takeSink() sink.writeUtf8("hey\n")
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Nov 04 19:13:52 UTC 2025 - 25.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/JobLogPager.java
this.currentPageNumber = currentPageNumber; } /** * Gets the list of page numbers for pagination display. * This list is typically used to render pagination controls in the UI. * * @return the list of page numbers */ public List<Integer> getPageNumberList() { return pageNumberList; } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
okhttp/api/android/okhttp.api
public static synthetic fun delete$default (Lokhttp3/Request$Builder;Lokhttp3/RequestBody;ILjava/lang/Object;)Lokhttp3/Request$Builder; public fun get ()Lokhttp3/Request$Builder; public final fun gzip ()Lokhttp3/Request$Builder; public fun head ()Lokhttp3/Request$Builder; public fun header (Ljava/lang/String;Ljava/lang/String;)Lokhttp3/Request$Builder; public fun headers (Lokhttp3/Headers;)Lokhttp3/Request$Builder;
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Nov 05 18:28:35 UTC 2025 - 70.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java
DefaultProjectBuildingRequest request = new DefaultProjectBuildingRequest(); request.setValidationLevel(ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_2_0); request.setResolveDependencies(false); request.setLocalRepository(configuration.getLocalRepository()); request.setBuildStartTime(configuration.getBuildStartTime()); request.setUserProperties(configuration.getUserProperties());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt
.newBuilder() .addInterceptor(Interceptor { throw IOException() }) .build() val request = Request.Builder().url(server.url("/")).build() c.newCall(request).enqueue(callback) val response = callback.await(request.url) assertThat(response.request).isEqualTo(request) } @Test fun reusedSinksGetIndependentTimeoutInstances() { server.enqueue(MockResponse())
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Nov 04 19:13:52 UTC 2025 - 147.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ReaderUtil.java
} /** * Reads text from the given {@link Reader}. * <p> * The {@link Reader} is not closed by this method. * </p> * * @param reader * the character input stream to read from (must not be {@literal null}) * @return the text read from the reader */ public static String readText(final Reader reader) { assertArgumentNotNull("reader", reader);Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameQueryRequestTest.java
// Test that the constructor correctly initializes questionName and questionType NameQueryRequest request = new NameQueryRequest(mockConfig, mockName); assertNotNull(request); assertEquals(mockName, request.questionName); assertEquals(NameServicePacket.NB, request.questionType); } @Test void testWriteBodyWireFormat() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.8K bytes - Viewed (0) -
docs/features/interceptors.md
```java class LoggingInterceptor implements Interceptor { @Override public Response intercept(Interceptor.Chain chain) throws IOException { Request request = chain.request(); long t1 = System.nanoTime(); logger.info(String.format("Sending request %s on %s%n%s", request.url(), chain.connection(), request.headers()));Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 8.1K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt
} override fun fromDer(reader: DerReader): Any? { if (isOptional && !reader.hasNext()) return optionalValue val peekedHeader = reader.peekHeader() ?: throw ProtocolException("expected a value at $reader") for ((_, adapter) in choices) { if (adapter.matches(peekedHeader)) { return adapter.fromDer(reader) } }Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 15K bytes - Viewed (0)