Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 291 - 300 of 416 for _proxy_ (0.1 seconds)

  1. guava-tests/test/com/google/common/graph/AbstractGraphTest.java

      abstract Graph<Integer> createGraph();
    
      /**
       * A proxy method that adds the node {@code n} to the graph being tested. In case of Immutable
       * graph implementations, this method should replace {@link #graph} with a new graph that includes
       * this node.
       */
      abstract void addNode(Integer n);
    
      /**
       * A proxy method that adds the edge {@code e} to the graph being tested. In case of Immutable
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Oct 07 15:57:03 GMT 2025
    - 17.3K bytes
    - Click Count (0)
  2. fastapi/sse.py

                Optional comment line(s).
    
                Comment lines start with `:` in the SSE wire format and are ignored by
                `EventSource` clients. Useful for keep-alive pings to prevent
                proxy/load-balancer timeouts.
                """
            ),
        ] = None
    
        @model_validator(mode="after")
        def _check_data_exclusive(self) -> "ServerSentEvent":
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 09:21:52 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  3. android/guava-tests/test/com/google/common/graph/AbstractStandardUndirectedNetworkTest.java

      @Test
      public void addEdge_existingNodes() {
        assume().that(graphIsMutable()).isTrue();
    
        // Adding nodes initially for safety (insulating from possible future
        // modifications to proxy methods)
        addNode(N1);
        addNode(N2);
        assertThat(networkAsMutableNetwork.addEdge(N1, N2, E12)).isTrue();
        assertThat(network.edges()).contains(E12);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 30 17:09:51 GMT 2025
    - 18.6K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/deployment/concepts.md

    ## 安全性 - HTTPS { #security-https }
    
    在[前一章關於 HTTPS](https.md) 中,我們學到 HTTPS 如何為你的 API 提供加密。
    
    我們也看到,HTTPS 通常由應用伺服器外部的元件提供,即 TLS Termination Proxy。
    
    而且必須有某個東西負責續期 HTTPS 憑證,可能是同一個元件,也可能是不同的東西。
    
    ### HTTPS 工具範例 { #example-tools-for-https }
    
    你可以用來作為 TLS Termination Proxy 的工具包括:
    
    - Traefik
        - 自動處理憑證續期 ✨
    - Caddy
        - 自動處理憑證續期 ✨
    - Nginx
        - 搭配像 Certbot 這類外部元件進行憑證續期
    - HAProxy
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 16.1K bytes
    - Click Count (0)
  5. docs/fr/docs/fastapi-cli.md

    Dans la plupart des cas, vous avez (et devez avoir) un « termination proxy » au‑dessus qui gère le HTTPS pour vous ; cela dépend de la façon dont vous déployez votre application : votre fournisseur peut le faire pour vous, ou vous devrez le configurer vous‑même.
    
    /// tip | Astuce
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  6. docs/de/docs/tutorial/body.md

    Da davon abgeraten wird, zeigt die interaktive Dokumentation mit Swagger-Benutzeroberfläche die Dokumentation für den Body nicht an, wenn `GET` verwendet wird, und zwischengeschaltete Proxys unterstützen es möglicherweise nicht.
    
    ///
    
    ## Pydantics `BaseModel` importieren { #import-pydantics-basemodel }
    
    Zuerst müssen Sie `BaseModel` von `pydantic` importieren:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  7. docs/es/docs/deployment/concepts.md

    Y debe haber algo encargado de **renovar los certificados HTTPS**, podría ser el mismo componente o algo diferente.
    
    ### Herramientas de Ejemplo para HTTPS { #example-tools-for-https }
    
    Algunas de las herramientas que podrías usar como Proxy de Terminación TLS son:
    
    * Traefik
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 20K bytes
    - Click Count (0)
  8. docs/pt/docs/deployment/concepts.md

    E tem que haver algo responsável por **renovar os certificados HTTPS**, pode ser o mesmo componente ou pode ser algo diferente.
    
    ### Ferramentas de exemplo para HTTPS { #example-tools-for-https }
    
    Algumas das ferramentas que você pode usar como um proxy de terminação TLS são:
    
    * Traefik
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/deployment/docker.md

    │   └── main.py
    ├── Dockerfile
    └── requirements.txt
    ```
    
    #### 位於 TLS 終止代理之後 { #behind-a-tls-termination-proxy }
    
    如果你在 TLS 終止代理(負載平衡器)如 Nginx 或 Traefik 之後執行容器,請加上 `--proxy-headers` 選項,這會告訴 Uvicorn(透過 FastAPI CLI)信任該代理所送來的標頭,表示應用在 HTTPS 後方執行等。
    
    ```Dockerfile
    CMD ["fastapi", "run", "app/main.py", "--proxy-headers", "--port", "80"]
    ```
    
    #### Docker 快取 { #docker-cache }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 24.9K bytes
    - Click Count (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2ExchangeCodec.kt

      }
    
      companion object {
        private const val CONNECTION = "connection"
        private const val HOST = "host"
        private const val KEEP_ALIVE = "keep-alive"
        private const val PROXY_CONNECTION = "proxy-connection"
        private const val TRANSFER_ENCODING = "transfer-encoding"
        private const val TE = "te"
        private const val ENCODING = "encoding"
        private const val UPGRADE = "upgrade"
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jul 29 21:11:09 GMT 2025
    - 7K bytes
    - Click Count (0)
Back to Top