- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 818 for proceed (0.03 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/InterceptorTest.kt
"network interceptor $interceptor must call proceed() exactly once", ) } } @Test fun networkInterceptorsCannotCallProceedMultipleTimes() { server.enqueue(MockResponse()) server.enqueue(MockResponse()) val interceptor = Interceptor { chain: Interceptor.Chain -> chain.proceed(chain.request()) chain.proceed(chain.request()) } client =
Registered: 2025-05-30 11:42 - Last Modified: 2025-03-19 19:25 - 28.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Interceptor.kt
* val interceptor = Interceptor { chain: Interceptor.Chain -> * chain.proceed(chain.request()) * } * ``` */ inline operator fun invoke(crossinline block: (chain: Chain) -> Response): Interceptor = Interceptor { block(it) } } interface Chain { fun request(): Request @Throws(IOException::class) fun proceed(request: Request): Response /**
Registered: 2025-05-30 11:42 - Last Modified: 2024-12-27 13:39 - 3.5K bytes - Viewed (0) -
docs/features/interceptors.md
Registered: 2025-05-30 11:42 - Last Modified: 2022-02-06 02:19 - 8.1K bytes - Viewed (0) -
okhttp-brotli/src/main/kotlin/okhttp3/brotli/BrotliInterceptor.kt
val request = chain .request() .newBuilder() .header("Accept-Encoding", "br,gzip") .build() val response = chain.proceed(request) uncompress(response) } else { chain.proceed(chain.request()) }
Registered: 2025-05-30 11:42 - Last Modified: 2025-03-19 19:25 - 1.4K bytes - Viewed (0) -
cmd/object-handlers-common.go
Registered: 2025-05-25 19:28 - Last Modified: 2025-04-03 06:45 - 15.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/NodeVisitor.java
* * @param node the dependency node to visit * @return <code>true</code> to visit the specified dependency node's children, <code>false</code> to skip the * specified dependency node's children and proceed to its next sibling */ boolean enter(@Nonnull Node node); /** * Ends the visit to the specified dependency node. * * @param node the dependency node to visit
Registered: 2025-05-24 08:56 - Last Modified: 2023-03-23 05:29 - 1.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/RealInterceptorChain.kt
Registered: 2025-05-30 11:42 - Last Modified: 2024-12-27 13:39 - 4.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/DispatcherTest.kt
assertThat(idle.get()).isFalse() val ready = CountDownLatch(1) val proceed = CountDownLatch(1) client = client .newBuilder() .addInterceptor( Interceptor { chain: Interceptor.Chain -> ready.countDown() try { proceed.await(5, TimeUnit.SECONDS) } catch (e: InterruptedException) {
Registered: 2025-05-30 11:42 - Last Modified: 2025-03-19 19:25 - 12.7K bytes - Viewed (0) -
docs/distributed/DECOMMISSION.md
- On Operator based MinIO deployments, you need to modify the `tenant.yaml` specification and modify the `pools:` section from two entries to a single entry. After making relevant changes, proceed to execute `kubectl apply -f tenant.yaml`.
Registered: 2025-05-25 19:28 - Last Modified: 2022-07-11 14:59 - 8.3K bytes - Viewed (0) -
buildscripts/verify-healing-empty-erasure-set.sh
echo "minio-server-3 is not running." && fail fi if ! pkill minio; then fail fi sleep 1 if pgrep minio; then # forcibly killing, to proceed further properly. if ! pkill -9 minio; then echo "no minio process running anymore, proceed." fi fi } function fail() { for i in $(seq 1 3); do echo "server$i log:" cat "${WORK_DIR}/dist-minio-server$i.log" done echo "FAILED"
Registered: 2025-05-25 19:28 - Last Modified: 2024-07-12 20:51 - 3.7K bytes - Viewed (0)