Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 341 - 350 of 405 for acancel (0.06 seconds)

  1. docs/fr/docs/tutorial/handling-errors.md

    Vous n'aurez probablement pas besoin de l'utiliser directement dans votre code.
    
    Mais si vous en aviez besoin pour un scénario avancé, vous pouvez ajouter des en-têtes personnalisés :
    
    {* ../../docs_src/handling_errors/tutorial002_py310.py hl[14] *}
    
    ## Installer des gestionnaires d'exception personnalisés { #install-custom-exception-handlers }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 10K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

        secondBarrier.await();
        firstBarrier.await();
        assertEquals(2, scheduler.scheduleCounter.get());
        shouldWait.set(false);
        secondBarrier.await();
        future.cancel(false);
      }
    
      public void testCustomSchedulerServiceStop() throws Exception {
        TestAbstractScheduledCustomService service = new TestAbstractScheduledCustomService();
        service.startAsync().awaitRunning();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 22.8K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java

        secondBarrier.await();
        firstBarrier.await();
        assertEquals(2, scheduler.scheduleCounter.get());
        shouldWait.set(false);
        secondBarrier.await();
        future.cancel(false);
      }
    
      public void testCustomSchedulerServiceStop() throws Exception {
        TestAbstractScheduledCustomService service = new TestAbstractScheduledCustomService();
        service.startAsync().awaitRunning();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 22.8K bytes
    - Click Count (0)
  4. docs/fr/docs/tutorial/security/oauth2-jwt.md

    <img src="/img/tutorial/security/image10.png">
    
    /// note | Remarque
    
    Remarquez l'en-tête `Authorization`, avec une valeur qui commence par `Bearer `.
    
    ///
    
    ## Utilisation avancée avec `scopes` { #advanced-usage-with-scopes }
    
    OAuth2 comporte la notion de « scopes ».
    
    Vous pouvez les utiliser pour ajouter un ensemble spécifique d'autorisations à un jeton JWT.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  5. docs/fr/docs/advanced/additional-responses.md

    # Réponses supplémentaires dans OpenAPI { #additional-responses-in-openapi }
    
    /// warning | Alertes
    
    Ceci concerne un sujet plutôt avancé.
    
    Si vous débutez avec **FastAPI**, vous n'en aurez peut-être pas besoin.
    
    ///
    
    Vous pouvez déclarer des réponses supplémentaires, avec des codes d'état supplémentaires, des types de médias, des descriptions, etc.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  6. docs/ko/docs/tutorial/server-sent-events.md

    - 스트림이 **캐시되지 않도록** `Cache-Control: no-cache` 헤더를 설정합니다.
    - Nginx 같은 일부 프록시에서 **버퍼링을 방지**하기 위해 특수 헤더 `X-Accel-Buffering: no`를 설정합니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:56:39 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  7. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

            }
        }
    
        /**
         * Stop proactive health checking
         */
        public void stopProactiveHealthChecking() {
            if (healthCheckTask != null) {
                healthCheckTask.cancel(false);
                healthCheckTask = null;
                log.info("Stopped proactive health checking");
            }
        }
    
        /**
         * Perform proactive health check on all connections
         */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 33.4K bytes
    - Click Count (0)
  8. okhttp/src/jvmTest/kotlin/okhttp3/InterceptorTest.kt

        val interceptor =
          Interceptor { chain: Interceptor.Chain ->
            val call = chain.call()
            callRef.set(call)
            assertThat(call.isCanceled()).isFalse()
            call.cancel()
            assertThat(call.isCanceled()).isTrue()
            chain.proceed(chain.request())
          }
        client =
          client
            .newBuilder()
            .addInterceptor(interceptor)
            .build()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Nov 04 16:11:23 GMT 2025
    - 28.2K bytes
    - Click Count (0)
  9. docs/zh/docs/tutorial/server-sent-events.md

    - 当 15 秒内没有任何消息时,发送一个**保活 `ping` 注释**,以防某些代理关闭连接,正如 [HTML 规范:Server-Sent Events](https://html.spec.whatwg.org/multipage/server-sent-events.html#authoring-notes) 中建议的那样。
    - 设置 `Cache-Control: no-cache` 响应头,**防止缓存**流。
    - 设置特殊响应头 `X-Accel-Buffering: no`,以**防止**某些代理(如 Nginx)**缓冲**。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:29:48 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  10. internal/ringbuffer/ring_buffer.go

    func (r *RingBuffer) SetBlocking(block bool) *RingBuffer {
    	r.block = block
    	if block {
    		r.readCond = sync.NewCond(&r.mu)
    		r.writeCond = sync.NewCond(&r.mu)
    	}
    	return r
    }
    
    // WithCancel sets a context to cancel the ring buffer.
    // When the context is canceled, the ring buffer will be closed with the context error.
    // A goroutine will be started and run until the provided context is canceled.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 13.3K bytes
    - Click Count (0)
Back to Top