Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for 1932 (0.18 sec)

  1. docs/en/docs/advanced/response-change-status-code.md

    You can declare a parameter of type `Response` in your *path operation function* (as you can do for cookies and headers).
    
    And then you can set the `status_code` in that *temporal* response object.
    
    ```Python hl_lines="1  9  12"
    {!../../../docs_src/response_change_status_code/tutorial001.py!}
    ```
    
    And then you can return any object you need, as you normally would (a `dict`, a database model, etc).
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 11 16:31:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  2. docs/es/docs/advanced/response-change-status-code.md

    Puedes declarar un parΓ‘metro de tipo `Response` en tu *funciΓ³n de la operaciΓ³n de path* (como puedes hacer para cookies y headers).
    
    Y luego puedes establecer el `status_code` en ese objeto de respuesta *temporal*.
    
    ```Python hl_lines="1  9  12"
    {!../../../docs_src/response_change_status_code/tutorial001.py!}
    ```
    
    Y luego puedes retornar cualquier objeto que necesites, como normalmente lo harΓ­as (un `dict`, un modelo de base de datos, etc).
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Feb 06 19:56:23 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  3. docs/em/docs/advanced/response-change-status-code.md

    πŸ“š πŸ’Ό, πŸ‘† πŸ’ͺ βš™οΈ `Response` πŸ”’.
    
    ## βš™οΈ `Response` πŸ”’
    
    πŸ‘† πŸ’ͺ πŸ“£ πŸ”’ πŸ†Ž `Response` πŸ‘† *➑ πŸ› οΈ πŸ”’* (πŸ‘† πŸ’ͺ πŸͺ & 🎚).
    
    & ‴️ πŸ‘† πŸ’ͺ βš’ `status_code` πŸ‘ˆ *πŸ”€* πŸ“¨ 🎚.
    
    ```Python hl_lines="1  9  12"
    {!../../../docs_src/response_change_status_code/tutorial001.py!}
    ```
    
    & ‴️ πŸ‘† πŸ’ͺ πŸ“¨ πŸ™† 🎚 πŸ‘† πŸ’ͺ, πŸ‘† πŸ›Ž πŸ”œ ( `dict`, πŸ’½ 🏷, ♒️).
    
    & πŸš₯ πŸ‘† πŸ“£ `response_model`, ⚫️ πŸ”œ βš™οΈ β›½ & πŸ—œ 🎚 πŸ‘† πŸ“¨.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Apr 01 09:26:04 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  4. internal/etag/etag_test.go

    	},
    	{ // 5
    		ETag:   ETag{32, 0, 15, 0, 219, 45, 144, 167, 180, 7, 130, 212, 207, 242, 180, 26, 119, 153, 252, 30, 126, 173, 37, 151, 45, 182, 81, 80, 17, 141, 251, 226, 186, 118, 163, 192, 2, 218, 40, 248, 92, 132, 12, 210, 0, 26, 40, 169},
    		String: "20000f00db2d90a7b40782d4cff2b41a7799fc1e7ead25972db65150118dfbe2ba76a3c002da28f85c840cd2001a28a9",
    	},
    }
    
    func TestString(t *testing.T) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Sep 18 17:00:54 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  5. cmd/stserrorcode_string.go

    var _STSErrorCode_index = [...]uint16{0, 7, 22, 41, 65, 91, 118, 145, 171, 192, 219, 236, 256, 272, 288}
    
    func (i STSErrorCode) String() string {
    	if i < 0 || i >= STSErrorCode(len(_STSErrorCode_index)-1) {
    		return "STSErrorCode(" + strconv.FormatInt(int64(i), 10) + ")"
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Aug 03 20:24:25 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  6. docs/en/docs/img/deployment/https/https01.drawio

                            <mxPoint x="390" y="-190" as="sourcePoint"/>
                            <Array as="points">
                                <mxPoint x="390" y="-132"/>
                                <mxPoint x="280" y="-132"/>
                            </Array>
                        </mxGeometry>
                    </mxCell>
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 6.2K bytes
    - Viewed (0)
  7. internal/s3select/select_test.go

    			},
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sat Dec 23 07:19:11 GMT 2023
    - 76.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/MD4.java

         *    @param    offset    starting position of sub-array.
         */
        private void transform (byte[] block, int offset) {
    
            // encodes 64 bytes from input block into an array of 16 32-bit
            // entities. Use A as a temp var.
            for (int i = 0; i < 16; i++)
                X[i] = (block[offset++] & 0xFF)       |
                       (block[offset++] & 0xFF) <<  8 |
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
  9. docs/en/docs/how-to/custom-docs-ui-assets.md

    * `swagger_css_url`: the URL where the HTML for your Swagger UI docs can get the **CSS** file. This is the custom CDN URL.
    
    And similarly for ReDoc...
    
    ```Python hl_lines="2-6  11-19  22-24  27-33"
    {!../../../docs_src/custom_docs_ui/tutorial001.py!}
    ```
    
    !!! tip
        The *path operation* for `swagger_ui_redirect` is a helper for when you use OAuth2.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Mon Oct 30 09:58:58 GMT 2023
    - 7.5K bytes
    - Viewed (0)
  10. docs/de/docs/how-to/custom-docs-ui-assets.md

    * `swagger_css_url`: die URL, unter welcher der HTML-Code fΓΌr Ihre Swagger-UI-Dokumentation die **CSS**-Datei abrufen kann. Dies ist die benutzerdefinierte CDN-URL.
    
    Und genau so fΓΌr ReDoc ...
    
    ```Python hl_lines="2-6  11-19  22-24  27-33"
    {!../../../docs_src/custom_docs_ui/tutorial001.py!}
    ```
    
    !!! tip "Tipp"
        Die *Pfadoperation* fΓΌr `swagger_ui_redirect` ist ein Hilfsmittel bei der Verwendung von OAuth2.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 18:17:36 GMT 2024
    - 9.2K bytes
    - Viewed (0)
Back to top