Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for profil (0.15 sec)

  1. docs/en/docs/release-notes.md

    * `prefix`: to set the path prefix for a router. Up to now, this was only possible when calling `include_router`.
    * `tags`: OpenAPI tags to apply to all the *path operations* in this router.
    
    For example:
    
    ```Python
    from fastapi import APIRouter, Depends
    
    
    async def some_dependency():
        return
    
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
  2. doc/go_spec.html

    </pre>
    
    <h3 id="Integer_literals">Integer literals</h3>
    
    <p>
    An integer literal is a sequence of digits representing an
    <a href="#Constants">integer constant</a>.
    An optional prefix sets a non-decimal base: <code>0b</code> or <code>0B</code>
    for binary, <code>0</code>, <code>0o</code>, or <code>0O</code> for octal,
    and <code>0x</code> or <code>0X</code> for hexadecimal
    [<a href="#Go_1.13">Go 1.13</a>].
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top