Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 140 of 791 for tipi (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/de/docs/tutorial/request-files.md

    Aber erinnern Sie sich, dass, wenn Sie `Query`, `Path`, `File` und andere von `fastapi` importieren, diese tatsächlich Funktionen sind, welche spezielle Klassen zurückgeben.
    
    ///
    
    /// tip | Tipp
    
    Um Dateibodys zu deklarieren, müssen Sie `File` verwenden, da diese Parameter sonst als Query-Parameter oder Body (JSON)-Parameter interpretiert werden würden.
    
    ///
    
    Die Dateien werden als „Formulardaten“ hochgeladen.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  2. docs/pt/docs/advanced/dataclasses.md

    7. Aqui o `response_model` está usando uma anotação de tipo de uma lista de dataclasses `Author`.
    
        Novamente, você pode combinar `dataclasses` com anotações de tipo padrão.
    
    8. Note que esta *função de operação de rota* usa `def` regular em vez de `async def`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  3. docs/pt/docs/how-to/general.md

    ## Otimizar Desempenho da Resposta - Modelo de Resposta - Tipo de Retorno { #optimize-response-performance-response-model-return-type }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  4. docs/de/docs/tutorial/handling-errors.md

    ```JSON
    {
      "detail": "Item not found"
    }
    ```
    
    /// tip | Tipp
    
    Wenn Sie eine `HTTPException` auslösen, können Sie dem Parameter `detail` jeden Wert übergeben, der in JSON konvertiert werden kann, nicht nur `str`.
    
    Sie könnten ein `dict`, eine `list`, usw. übergeben.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  5. docs/de/docs/_llm-test.md

    /// info | Info
    Etwas Text
    ///
    
    /// note | Hinweis
    Etwas Text
    ///
    
    /// note | Technische Details
    Etwas Text
    ///
    
    /// check | Testen
    Etwas Text
    ///
    
    /// tip | Tipp
    Etwas Text
    ///
    
    /// warning | Achtung
    Etwas Text
    ///
    
    /// danger | Gefahr
    Etwas Text
    ///
    
    ////
    
    //// tab | Info
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  6. src/main/webapp/js/admin/bootstrap.min.js.map

    this.element\n      )\n\n      if (showEvent.isDefaultPrevented() || !isInTheDom) {\n        return\n      }\n\n      const tip = this.getTipElement()\n      const tipId = Util.getUID(this.constructor.NAME)\n\n      tip.setAttribute('id', tipId)\n      this.element.setAttribute('aria-describedby', tipId)\n\n      this.setContent()\n\n      if (this.config.animation) {\n        $(tip).addClass(CLASS_NAME_FADE)\n      }\n\n      const placement = typeof this.config.placement === 'function' ?\n        t...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 180.9K bytes
    - Click Count (0)
  7. docs/de/docs/tutorial/security/first-steps.md

    {* ../../docs_src/security/tutorial001_an_py310.py hl[8] *}
    
    /// tip | Tipp
    
    Hier bezieht sich `tokenUrl="token"` auf eine relative URL `token`, die wir noch nicht erstellt haben. Da es sich um eine relative URL handelt, entspricht sie `./token`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  8. docs/de/docs/python-types.md

    Im Moment müssen Sie nur wissen, dass `Annotated` existiert, und dass es Standard-Python ist. 😎
    
    Später werden Sie sehen, wie **mächtig** es sein kann.
    
    /// tip | Tipp
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 12.6K bytes
    - Click Count (1)
  9. docs/pt/docs/tutorial/security/first-steps.md

    ```
    
    </div>
    
    ## Verifique-o { #check-it }
    
    Vá até a documentação interativa em: [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs).
    
    Você verá algo deste tipo:
    
    <img src="/img/tutorial/security/image01.png">
    
    /// check | Botão Autorizar!
    
    Você já tem um novo botão 'Authorize'.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  10. docs/uk/docs/tutorial/dependencies/classes-as-dependencies.md

    //// tab | Python 3.10+
    
    ```Python
    commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)]
    ```
    
    ////
    
    //// tab | Python 3.10+ без Annotated
    
    /// tip | Порада
    
    Надавайте перевагу варіанту з `Annotated`, якщо це можливо.
    
    ///
    
    ```Python
    commons: CommonQueryParams = Depends(CommonQueryParams)
    ```
    
    ////
    
    Останній `CommonQueryParams` у:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:43:14 GMT 2026
    - 9.7K bytes
    - Click Count (0)
Back to Top