Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 288 for proxya (0.23 sec)

  1. docs/en/docs/_llm-test.md

    * the lock
    * the middleware
    * the mobile application
    * the module
    * the mounting
    * the network
    * the origin
    * the override
    * the payload
    * the processor
    * the property
    * the proxy
    * the pull request
    * the query
    * the RAM
    * the remote machine
    * the status code
    * the string
    * the tag
    * the web framework
    * the wildcard
    * to return
    * to validate
    
    ////
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 11 14:48:47 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.20.md

    - Introduces a new GCE specific cluster creation variable KUBE_PROXY_DISABLE. When set to true, this will skip over the creation of kube-proxy (whether the daemonset or static pod). This can be used to control the lifecycle of kube-proxy separately from the lifecycle of the nodes. ([#91977](https://github.com/kubernetes/kubernetes/pull/91977), [@varunmar](https://github.com/varunmar)) [SIG Cloud Provider]
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.11.md

        * The body size limit does not apply to subresources like pods/proxy that proxy request content to another server.
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/MultimapsCollectionTest.java

        PopulatableMapAsMultimap() {
          this.map = new HashMap<>();
          this.unusableDelegate =
              (SetMultimap<K, V>)
                  newProxy(
                      SetMultimap.class,
                      (proxy, method, args) -> {
                        throw new UnsupportedOperationException();
                      });
        }
    
        @Override
        protected Multimap<K, V> delegate() {
          return unusableDelegate;
        }
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Sep 24 22:52:18 UTC 2025
    - 28.4K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/MultimapsCollectionTest.java

        PopulatableMapAsMultimap() {
          this.map = new HashMap<>();
          this.unusableDelegate =
              (SetMultimap<K, V>)
                  newProxy(
                      SetMultimap.class,
                      (proxy, method, args) -> {
                        throw new UnsupportedOperationException();
                      });
        }
    
        @Override
        protected Multimap<K, V> delegate() {
          return unusableDelegate;
        }
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Sep 24 22:52:18 UTC 2025
    - 28.6K bytes
    - Viewed (0)
  6. docs/es/docs/advanced/custom-response.md

    En este caso, puedes devolver la path del archivo directamente desde tu *path operation* function.
    
    ## Clase de response personalizada { #custom-response-class }
    
    Puedes crear tu propia clase de response personalizada, heredando de `Response` y usándola.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  7. docs/zh/docs/deployment/https.md

    你可以用作 TLS 终止代理的一些选项包括:
    
    * Traefik(也可以处理证书更新)
    * Caddy(也可以处理证书更新)
    * Nginx
    * HAProxy
    
    ## Let's Encrypt
    
    在 Let's Encrypt 之前,这些 **HTTPS 证书** 由受信任的第三方出售。
    
    过去,获得这些证书的过程非常繁琐,需要大量的文书工作,而且证书非常昂贵。
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  8. docs/ja/docs/tutorial/security/first-steps.md

    相対URLを使っているので、APIが`https://example.com/`にある場合、`https://example.com/token`を参照します。しかし、APIが`https://example.com/api/v1/`にある場合は`https://example.com/api/v1/token`を参照することになります。
    
    相対 URL を使うことは、[プロキシと接続](../../advanced/behind-a-proxy.md){.internal-link target=_blank}のような高度なユースケースでもアプリケーションを動作させ続けるために重要です。
    
    ///
    
    このパラメーターはエンドポイント/ *path operation*を作成しません。しかし、URL`/token`はクライアントがトークンを取得するために使用するものであると宣言します。この情報は OpenAPI やインタラクティブな API ドキュメントシステムで使われます。
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. docs/es/docs/_llm-test.md

    * el lifespan
    * el bloqueo
    * el middleware
    * la aplicación móvil
    * el módulo
    * el montaje
    * la red
    * el origen
    * el override
    * el payload
    * el procesador
    * la propiedad
    * el proxy
    * el pull request
    * la query
    * la RAM
    * la máquina remota
    * el código de estado
    * el string
    * la etiqueta
    * el framework web
    * el comodín
    * devolver
    * validar
    
    ////
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 16:16:35 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  10. fastapi/applications.py

                Doc(
                    """
                    A path prefix handled by a proxy that is not seen by the application
                    but is seen by external clients, which affects things like Swagger UI.
    
                    Read more about it at the
                    [FastAPI docs for Behind a Proxy](https://fastapi.tiangolo.com/advanced/behind-a-proxy/).
    
                    **Example**
    
                    ```python
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 176.3K bytes
    - Viewed (0)
Back to top