Search Options

Results per page
Sort
Preferred Languages
Advance

Results 581 - 590 of 951 for ndocs (0.04 sec)

  1. docs/em/docs/how-to/conditional-openapi.md

    ```console
    $ OPENAPI_URL= uvicorn main:app
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    โคด๏ธ ๐Ÿšฅ ๐Ÿ‘† ๐Ÿšถ ๐Ÿ“› `/openapi.json`, `/docs`, โš–๏ธ `/redoc` ๐Ÿ‘† ๐Ÿ”œ ๐Ÿคš `404 Not Found` โŒ ๐Ÿ’–:
    
    ```JSON
    {
        "detail": "Not Found"
    }
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/body-fields.md

    ///
    
    ## Add extra information
    
    You can declare extra information in `Field`, `Query`, `Body`, etc. And it will be included in the generated JSON Schema.
    
    You will learn more about adding extra information later in the docs, when learning to declare examples.
    
    /// warning
    
    Extra keys passed to `Field` will also be present in the resulting OpenAPI schema for your application.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 17:01:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/job/UpdateLabelJob.java

                    } catch (final Exception e) {
                        logger.warn("Failed to process {}", hit, e);
                    }
                    return null;
                });
                resultBuf.append(count).append(" docs").append("\n");
            } catch (final Exception e) {
                logger.error("Could not update labels.", e);
                resultBuf.append(e.getMessage()).append("\n");
            }
    
            return resultBuf.toString();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/middleware.md

    * ๐Ÿ‘† ๐Ÿ’ช โคด๏ธ ๐Ÿ”€ ๐ŸŒ… `response` โญ ๐Ÿ›ฌ โšซ๏ธ.
    
    ```Python hl_lines="8-9  11  14"
    {!../../docs_src/middleware/tutorial001.py!}
    ```
    
    /// tip
    
    โœ”๏ธ ๐Ÿคฏ ๐Ÿ‘ˆ ๐Ÿ›ƒ ยฉ ๐ŸŽš ๐Ÿ’ช ๐Ÿšฎ <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers" class="external-link" target="_blank">โš™๏ธ 'โœ–-' ๐Ÿ”ก</a>.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. docs/pt/docs/how-to/conditional-openapi.md

    ```console
    $ OPENAPI_URL= uvicorn main:app
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Entรฃo, se vocรช acessar as URLs em `/openapi.json`, `/docs` ou `/redoc`, vocรช receberรก apenas um erro `404 Nรฃo Encontrado` como:
    
    ```JSON
    {
        "detail": "Not Found"
    }
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. docs/ko/README.md

    *[Fess ์‚ฌ์ดํŠธ ๊ฒ€์ƒ‰](https://github.com/codelibs/fess-site-search)*์€ [Google ์‚ฌ์ดํŠธ ๊ฒ€์ƒ‰](https://enterprise.google.com/search/products/gss.html)์˜ ๋ฌด๋ฃŒ ๋Œ€์•ˆ์ž…๋‹ˆ๋‹ค. ์ž์„ธํ•œ ๋‚ด์šฉ์€ [FSS JS ์ƒ์„ฑ๊ธฐ ๋ฌธ์„œ](https://fss-generator.codelibs.org/docs/manual)๋ฅผ ์ฐธ์กฐํ•˜์‹ญ์‹œ์˜ค.
    
    ## ์›น์‚ฌ์ดํŠธ
    
    [fess.codelibs.org](https://fess.codelibs.org/)
    
    ## ๋ฌธ์ œ/์งˆ๋ฌธ
    
    [discuss.codelibs.org](https://discuss.codelibs.org/c/FessEN/)
    
    ## ์‹œ์ž‘ํ•˜๊ธฐ
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. docs/en/mkdocs.yml

        - how-to/graphql.md
        - how-to/custom-request-and-route.md
        - how-to/conditional-openapi.md
        - how-to/extending-openapi.md
        - how-to/separate-openapi-schemas.md
        - how-to/custom-docs-ui-assets.md
        - how-to/configure-swagger-ui.md
        - how-to/testing-database.md
    - Reference (Code API):
      - reference/index.md
      - reference/fastapi.md
      - reference/parameters.md
      - reference/status.md
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 22 20:28:02 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. docs/ja/docs/tutorial/body-updates.md

    # ใƒœใƒ‡ใ‚ฃ - ๆ›ดๆ–ฐ
    
    ## `PUT`ใซใ‚ˆใ‚‹็ฝฎๆ›ใงใฎๆ›ดๆ–ฐ
    
    ้ …็›ฎใ‚’ๆ›ดๆ–ฐใ™ใ‚‹ใซใฏ<a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/PUT" class="external-link" target="_blank">HTTPใฎ`PUT`</a>ๆ“ไฝœใ‚’ไฝฟ็”จใ™ใ‚‹ใ“ใจใŒใงใใพใ™ใ€‚
    
    `jsonable_encoder`ใ‚’็”จใ„ใฆใ€ๅ…ฅๅŠ›ใƒ‡ใƒผใ‚ฟใ‚’JSONๅฝขๅผใงไฟๅญ˜ใงใใ‚‹ใƒ‡ใƒผใ‚ฟใซๅค‰ๆ›ใ™ใ‚‹ใ“ใจใŒใงใใพใ™๏ผˆไพ‹๏ผšNoSQLใƒ‡ใƒผใ‚ฟใƒ™ใƒผใ‚น๏ผ‰ใ€‚ไพ‹ใˆใฐใ€`datetime`ใ‚’`str`ใซๅค‰ๆ›ใ—ใพใ™ใ€‚
    
    ```Python hl_lines="30 31 32 33 34 35"
    {!../../docs_src/body_updates/tutorial001.py!}
    ```
    
    ๆ—ขๅญ˜ใฎใƒ‡ใƒผใ‚ฟใ‚’็ฝฎใๆ›ใˆใ‚‹ในใใƒ‡ใƒผใ‚ฟใ‚’ๅ—ใ‘ๅ–ใ‚‹ใŸใ‚ใซ`PUT`ใฏไฝฟ็”จใ•ใ‚Œใพใ™ใ€‚
    
    ### ็ฝฎๆ›ใซใคใ„ใฆใฎๆณจๆ„
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. docs/ko/docs/tutorial/first-steps.md

    ์•„๋ž˜์™€ ๊ฐ™์€ JSON ์‘๋‹ต์„ ๋ณผ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค:
    
    ```JSON
    {"message": "Hello World"}
    ```
    
    ### ๋Œ€ํ™”ํ˜• API ๋ฌธ์„œ
    
    ์ด์ œ <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>๋กœ ๊ฐ€๋ด…๋‹ˆ๋‹ค.
    
    ์ž๋™ ๋Œ€ํ™”ํ˜• API ๋ฌธ์„œ๋ฅผ ๋ณผ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค (<a href="https://github.com/swagger-api/swagger-ui" class="external-link" target="_blank">Swagger UI</a> ์ œ๊ณต):
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/security/simple-oauth2.md

    Das ist der Vorteil von Standards ...
    
    ///
    
    ## Es in Aktion sehen
    
    ร–ffnen Sie die interaktive Dokumentation: <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>.
    
    ### Authentifizieren
    
    Klicken Sie auf den Button โ€žAuthorizeโ€œ.
    
    Verwenden Sie die Anmeldedaten:
    
    Benutzer: `johndoe`
    
    Passwort: `secret`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top