Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for midpoint (0.17 sec)

  1. docs/en/docs/img/deployment/https/https02.drawio

                        <mxGeometry relative="1" as="geometry">
                            <mxPoint x="110" y="-75" as="sourcePoint"/>
                            <mxPoint x="-4.941176470588289" y="-139.99999999999955" as="targetPoint"/>
                            <Array as="points">
                                <mxPoint x="-5" y="-90"/>
                                <mxPoint x="-5" y="-90"/>
                            </Array>
                        </mxGeometry>
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 9.4K bytes
    - Viewed (0)
  2. docs/en/docs/img/deployment/https/https04.drawio

                        <mxGeometry relative="1" as="geometry">
                            <mxPoint x="110" y="-75" as="sourcePoint"/>
                            <mxPoint x="-4.941176470588289" y="-139.99999999999955" as="targetPoint"/>
                            <Array as="points">
                                <mxPoint x="-5" y="-90"/>
                                <mxPoint x="-5" y="-90"/>
                            </Array>
                        </mxGeometry>
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 14K bytes
    - Viewed (0)
  3. docs/zh/docs/deployment/deta.md

    ```JSON hl_lines="4"
    {
            "name": "fastapideta",
            "runtime": "python3.7",
            "endpoint": "https://qltnci.deta.dev",
            "visor": "enabled",
            "http_auth": "enabled"
    }
    ```
    
    !!! tip "提示"
    
        您部署时的 `"endpoint"` URL 可能会有所不同。
    
    ## 查看效果
    
    打开浏览器,跳转到 `endpoint` URL。本例中是 `https://qltnci.deta.dev`,但您的链接可能与此不同。
    
    FastAPI 应用会返回如下 JSON 响应:
    
    ```JSON
    {
    Plain Text
    - Registered: Sun Mar 31 07:19:09 GMT 2024
    - Last Modified: Sun Jan 28 18:06:55 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  4. docs/en/docs/img/deployment/concepts/process-ram.drawio

                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
                                <mxPoint x="800" y="521"/>
                                <mxPoint x="800" y="560"/>
                            </Array>
                        </mxGeometry>
                    </mxCell>
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 10K bytes
    - Viewed (0)
  5. docs_src/websockets/tutorial002_py310.py

    ):
        if session is None and token is None:
            raise WebSocketException(code=status.WS_1008_POLICY_VIOLATION)
        return session or token
    
    
    @app.websocket("/items/{item_id}/ws")
    async def websocket_endpoint(
        websocket: WebSocket,
        item_id: str,
        q: int | None = None,
        cookie_or_token: str = Depends(get_cookie_or_token),
    ):
        await websocket.accept()
        while True:
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 18 12:29:59 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  6. fastapi/openapi/utils.py

        if operation_id in operation_ids:
            message = (
                f"Duplicate Operation ID {operation_id} for function "
                + f"{route.endpoint.__name__}"
            )
            file_name = getattr(route.endpoint, "__globals__", {}).get("__file__")
            if file_name:
                message += f" at {file_name}"
            warnings.warn(message, stacklevel=1)
        operation_ids.add(operation_id)
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 21.8K bytes
    - Viewed (0)
  7. fastapi/dependencies/utils.py

        name: Optional[str] = None,
        security_scopes: Optional[List[str]] = None,
        use_cache: bool = True,
    ) -> Dependant:
        path_param_names = get_path_param_names(path)
        endpoint_signature = get_typed_signature(call)
        signature_params = endpoint_signature.parameters
        dependant = Dependant(
            call=call,
            name=name,
            path=path,
            security_scopes=security_scopes,
            use_cache=use_cache,
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:52:56 GMT 2024
    - 29.5K bytes
    - Viewed (0)
  8. docs/pl/docs/tutorial/first-steps.md

    Więc, w adresie URL takim jak:
    
    ```
    https://example.com/items/foo
    ```
    
    ...ścieżką będzie:
    
    ```
    /items/foo
    ```
    
    !!! info
        "Ścieżka" jest zazwyczaj nazywana "path", "endpoint" lub "route'.
    
    Podczas budowania API, "ścieżka" jest głównym sposobem na oddzielenie "odpowiedzialności" i „zasobów”.
    
    #### Operacje
    
    "Operacje" tutaj odnoszą się do jednej z "metod" HTTP.
    
    Jedna z:
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  9. docs/vi/docs/tutorial/first-steps.md

    Do đó, trong một URL nhìn giống như:
    
    ```
    https://example.com/items/foo
    ```
    
    ...đường dẫn sẽ là:
    
    ```
    /items/foo
    ```
    
    !!! info
        Một đường dẫn cũng là một cách gọi chung cho một "endpoint" hoặc một "route".
    
    Trong khi xây dựng một API, "đường dẫn" là các chính để phân tách "mối quan hệ" và "tài nguyên".
    
    #### Toán tử (Operation)
    
    "Toán tử" ở đây được nhắc tới là một trong các "phương thức" HTTP.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Sep 02 15:44:17 GMT 2023
    - 11.2K bytes
    - Viewed (0)
  10. docs/tr/docs/alternatives.md

    önceden kaydedilmesini ve sonrasında belirlenen veri tiplerine göre çözülmesini gerektiriyor. Yani spesifik bir tip, birden fazla bileşen ile belirlenemiyor.
    
    <abbr title="Route: HTTP isteğinin gittiği yol">Yol</abbr>'lar fonksiyonun üstünde endpoint'i işleyen dekoratörler yerine farklı yerlerde tanımlanan fonksiyonlarla belirlenir. Bu Flask (ve Starlette) yerine daha çok Django'nun yaklaşımına daha yakın bir metot. Bu, kodda nispeten birbiriyle sıkı ilişkili olan şeyleri ayırmaya sebep oluyor....
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 28.8K bytes
    - Viewed (0)
Back to top