Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,220 for pathOf (0.06 sec)

  1. docs/em/docs/tutorial/path-params.md

    ```JSON
    {
        "detail": [
            {
                "loc": [
                    "path",
                    "item_id"
                ],
                "msg": "value is not a valid integer",
                "type": "type_error.integer"
            }
        ]
    }
    ```
    
    โ†ฉ๏ธ โžก ๐Ÿ”ข `item_id` โœ”๏ธ ๐Ÿ’ฒ `"foo"`, โ” ๐Ÿšซ `int`.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/path-params.md

    ```JSON
    {
        "detail": [
            {
                "loc": [
                    "path",
                    "item_id"
                ],
                "msg": "value is not a valid integer",
                "type": "type_error.integer"
            }
        ]
    }
    ```
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/path-params.md

    ```JSON
    {
      "detail": [
        {
          "type": "int_parsing",
          "loc": [
            "path",
            "item_id"
          ],
          "msg": "Input should be a valid integer, unable to parse string as an integer",
          "input": "foo"
        }
      ]
    }
    ```
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 10K bytes
    - Viewed (0)
  4. docs/ko/docs/tutorial/path-params.md

    ๋ฌธ์„œ์— ๋งค๊ฐœ๋ณ€์ˆ˜์— ๊ฒฝ๋กœ๊ฐ€ ํฌํ•จ๋˜์–ด์•ผ ํ•œ๋‹ค๋Š” ์ •๋ณด๊ฐ€ ๋ช…์‹œ๋˜์ง€๋Š” ์•Š์ง€๋งŒ ์—ฌ์ „ํžˆ ์ž‘๋™ํ•ฉ๋‹ˆ๋‹ค.
    
    ### ๊ฒฝ๋กœ ๋ณ€ํ™˜๊ธฐ
    
    Starlette์˜ ์˜ต์…˜์„ ์ง์ ‘ ์ด์šฉํ•˜์—ฌ ๋‹ค์Œ๊ณผ ๊ฐ™์€ URL์„ ์‚ฌ์šฉํ•จ์œผ๋กœ์จ *path*๋ฅผ ํฌํ•จํ•˜๋Š” *๊ฒฝ๋กœ ๋งค๊ฐœ๋ณ€์ˆ˜*๋ฅผ ์„ ์–ธํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค:
    
    ```
    /files/{file_path:path}
    ```
    
    ์ด๋Ÿฌํ•œ ๊ฒฝ์šฐ ๋งค๊ฐœ๋ณ€์ˆ˜์˜ ์ด๋ฆ„์€ `file_path`์ด๋ฉฐ, ๋งˆ์ง€๋ง‰ ๋ถ€๋ถ„ `:path`๋Š” ๋งค๊ฐœ๋ณ€์ˆ˜๊ฐ€ *๊ฒฝ๋กœ*์™€ ์ผ์น˜ํ•ด์•ผ ํ•จ์„ ๋ช…์‹œํ•ฉ๋‹ˆ๋‹ค.
    
    ๋”ฐ๋ผ์„œ ๋‹ค์Œ๊ณผ ๊ฐ™์ด ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค:
    
    {* ../../docs_src/path_params/tutorial004.py hl[6] *}
    
    /// tip | ํŒ
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. docs/em/docs/advanced/path-operation-advanced-configuration.md

    ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ“‚ ๐Ÿง ๐Ÿ› ๏ธ ๐Ÿฉบ, ๐Ÿ‘† โ†” ๐Ÿ”œ ๐ŸŽฆ ๐Ÿ†™ ๐Ÿ” ๐ŸŽฏ *โžก ๐Ÿ› ๏ธ*.
    
    <img src="/img/tutorial/path-operation-advanced-configuration/image01.png">
    
    &amp; ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ‘€ ๐Ÿ“‰ ๐Ÿ—„ ( `/openapi.json` ๐Ÿ‘† ๐Ÿ› ๏ธ), ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ‘€ ๐Ÿ‘† โ†” ๐Ÿ• ๐ŸŽฏ *โžก ๐Ÿ› ๏ธ* ๐Ÿ’โ€โ™‚๏ธ:
    
    ```JSON hl_lines="22"
    {
        "openapi": "3.0.2",
        "info": {
            "title": "FastAPI",
            "version": "0.1.0"
        },
        "paths": {
            "/items/": {
                "get": {
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbResourceLocatorImpl.java

            int p1, p2, l1, l2;
    
            // if unsure return this method returns true
    
            p1 = path1.lastIndexOf('/');
            p2 = path2.lastIndexOf('/');
            l1 = path1.length() - p1;
            l2 = path2.length() - p2;
    
            // anything with dots voids comparison
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  7. docs/ja/docs/tutorial/path-operation-configuration.md

    # Path Operationใฎ่จญๅฎš
    
    *path operationใƒ‡ใ‚ณใƒฌใƒผใ‚ฟ*ใ‚’่จญๅฎšใ™ใ‚‹ใŸใ‚ใฎใƒ‘ใƒฉใƒกใƒผใ‚ฟใŒใ„ใใคใ‹ใ‚ใ‚Šใพใ™ใ€‚
    
    /// warning | ๆณจๆ„
    
    ใ“ใ‚Œใ‚‰ใฎใƒ‘ใƒฉใƒกใƒผใ‚ฟใฏ*path operation้–ขๆ•ฐ*ใงใฏใชใใ€*path operationใƒ‡ใ‚ณใƒฌใƒผใ‚ฟ*ใซ็›ดๆŽฅๆธกใ•ใ‚Œใ‚‹ใ“ใจใซๆณจๆ„ใ—ใฆใใ ใ•ใ„ใ€‚
    
    ///
    
    ## ใƒฌใ‚นใƒใƒณใ‚นใ‚นใƒ†ใƒผใ‚ฟใ‚นใ‚ณใƒผใƒ‰
    
    *path operation*ใฎใƒฌใ‚นใƒใƒณใ‚นใงไฝฟ็”จใ™ใ‚‹๏ผˆHTTP๏ผ‰`status_code`ใ‚’ๅฎš็พฉใ™ใ‚‹ใ“ใจใŒใงใใพใ™ใ€‚
    
    `404`ใฎใ‚ˆใ†ใซ`int`ใฎใ‚ณใƒผใƒ‰ใ‚’็›ดๆŽฅๆธกใ™ใ“ใจใŒใงใใพใ™ใ€‚
    
    ใ—ใ‹ใ—ใ€ใใ‚Œใžใ‚Œใฎ็•ชๅทใ‚ณใƒผใƒ‰ใŒไฝ•ใฎใŸใ‚ใฎใ‚‚ใฎใ‹่ฆšใˆใฆใ„ใชใ„ๅ ดๅˆใฏใ€`status`ใฎใ‚ทใƒงใƒผใƒˆใ‚ซใƒƒใƒˆๅฎšๆ•ฐใ‚’ไฝฟ็”จใ™ใ‚‹ใ“ใจใŒใงใใพใ™:
    
    {* ../../docs_src/path_operation_configuration/tutorial001.py hl[3,17] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. docs/es/docs/tutorial/path-operation-configuration.md

    # Configuraciรณn de Path Operation
    
    Hay varios parรกmetros que puedes pasar a tu *path operation decorator* para configurarlo.
    
    /// warning | Advertencia
    
    Ten en cuenta que estos parรกmetros se pasan directamente al *path operation decorator*, no a tu *path operation function*.
    
    ///
    
    ## Cรณdigo de Estado del Response
    
    Puedes definir el `status_code` (HTTP) que se utilizarรก en el response de tu *path operation*.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. docs/ko/docs/tutorial/path-operation-configuration.md

    ///
    
    <img src="/img/tutorial/path-operation-configuration/image03.png">
    
    ## ๋‹จ์ผ *๊ฒฝ๋กœ ์ž‘๋™* ์ง€์›์ค‘๋‹จ
    
    ๋‹จ์ผ *๊ฒฝ๋กœ ์ž‘๋™*์„ ์—†์• ์ง€ ์•Š๊ณ  <abbr title="๊ตฌ์‹, ์‚ฌ์šฉํ•˜์ง€ ์•Š๋Š”๊ฒƒ์ด ๊ถŒ์žฅ๋จ">์ง€์›์ค‘๋‹จ</abbr>์„ ํ•ด์•ผํ•œ๋‹ค๋ฉด, `deprecated` ๋งค๊ฐœ๋ณ€์ˆ˜๋ฅผ ์ „๋‹ฌํ•˜๋ฉด ๋ฉ๋‹ˆ๋‹ค.
    
    {* ../../docs_src/path_operation_configuration/tutorial006.py hl[16] *}
    
    ๋Œ€ํ™”ํ˜• ๋ฌธ์„œ์— ์ง€์›์ค‘๋‹จ์ด๋ผ๊ณ  ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค.
    
    <img src="/img/tutorial/path-operation-configuration/image04.png">
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. docs/em/docs/tutorial/path-operation-configuration.md

    ///
    
    <img src="/img/tutorial/path-operation-configuration/image03.png">
    
    ## ๐Ÿ˜ข *โžก ๐Ÿ› ๏ธ*
    
    ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ’ช โ„ข *โžก ๐Ÿ› ๏ธ* <abbr title="obsolete, recommended not to use it">๐Ÿ˜ข</abbr>, โœ‹๏ธ ๐Ÿต โŽ โšซ๏ธ, ๐Ÿšถโ€โ™€๏ธ ๐Ÿ”ข `deprecated`:
    
    {* ../../docs_src/path_operation_configuration/tutorial006.py hl[16] *}
    
    โšซ๏ธ ๐Ÿ”œ ๐ŸŽฏ โ„ข ๐Ÿ˜ข ๐ŸŽ“ ๐Ÿฉบ:
    
    <img src="/img/tutorial/path-operation-configuration/image04.png">
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top