Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for __init__ (0.05 sec)

  1. docs/sts/client_grants/__init__.py

        implementation to be used with boto_session
        """
        METHOD = 'assume-role-client-grants'
        CANONICAL_NAME = 'AssumeRoleClientGrants'
    
        def __init__(self, cid, csec,
                     idp_ep='http://localhost:8080/auth/realms/minio/protocol/openid-connect/token',
                     sts_ep='http://localhost:9000'):
            self.cid = cid
            self.csec = csec
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/__init__.py

    Itai Zukerman <******@****.***> 1632864678 -0700
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/api_template.__init__.py

    sub-modules, as described below.
    
    Note that the file `__init__.py` in the TensorFlow source code tree is actually
    only a placeholder to enable test cases to run. The TensorFlow build replaces
    this file with a file generated from [`api_template.__init__.py`](https://www.github.com/tensorflow/tensorflow/blob/master/tensorflow/api_template.__init__.py)
    """
    # pylint: disable=g-bad-import-order,protected-access,g-import-not-at-top
    
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Oct 02 22:16:02 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. tensorflow/api_template_v1.__init__.py

    TensorFlower Gardener <******@****.***> 1727907362 -0700
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Oct 02 22:16:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/bigger-applications.md

    ///
    
    ## ๐Ÿ–ผ ๐Ÿ“ ๐Ÿ“Š
    
    โžก๏ธ ๐Ÿ’ฌ ๐Ÿ‘† โœ”๏ธ ๐Ÿ“ ๐Ÿ“Š ๐Ÿ’– ๐Ÿ‘‰:
    
    ```
    .
    โ”œโ”€โ”€ app
    โ”‚ย ย  โ”œโ”€โ”€ __init__.py
    โ”‚ย ย  โ”œโ”€โ”€ main.py
    โ”‚ย ย  โ”œโ”€โ”€ dependencies.py
    โ”‚ย ย  โ””โ”€โ”€ routers
    โ”‚ย ย  โ”‚   โ”œโ”€โ”€ __init__.py
    โ”‚ย ย  โ”‚   โ”œโ”€โ”€ items.py
    โ”‚ย ย  โ”‚   โ””โ”€โ”€ users.py
    โ”‚ย ย  โ””โ”€โ”€ internal
    โ”‚ย ย      โ”œโ”€โ”€ __init__.py
    โ”‚ย ย      โ””โ”€โ”€ admin.py
    ```
    
    /// tip
    
    ๐Ÿ“ค ๐Ÿ“š `__init__.py` ๐Ÿ“: 1๏ธโƒฃ ๐Ÿ”  ๐Ÿ“ โš–๏ธ ๐Ÿ“.
    
    ๐Ÿ‘‰ โšซ๏ธโ” โœ” ๐Ÿญ ๐Ÿ“Ÿ โšช๏ธโžก๏ธ 1๏ธโƒฃ ๐Ÿ“ ๐Ÿ”˜ โž•1๏ธโƒฃ.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/bigger-applications.md

    Let's say you have a file structure like this:
    
    ```
    .
    โ”œโ”€โ”€ app
    โ”‚ย ย  โ”œโ”€โ”€ __init__.py
    โ”‚ย ย  โ”œโ”€โ”€ main.py
    โ”‚ย ย  โ”œโ”€โ”€ dependencies.py
    โ”‚ย ย  โ””โ”€โ”€ routers
    โ”‚ย ย  โ”‚   โ”œโ”€โ”€ __init__.py
    โ”‚ย ย  โ”‚   โ”œโ”€โ”€ items.py
    โ”‚ย ย  โ”‚   โ””โ”€โ”€ users.py
    โ”‚ย ย  โ””โ”€โ”€ internal
    โ”‚ย ย      โ”œโ”€โ”€ __init__.py
    โ”‚ย ย      โ””โ”€โ”€ admin.py
    ```
    
    /// tip
    
    There are several `__init__.py` files: one in each directory or subdirectory.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/testing.md

    ```
    .
    โ”œโ”€โ”€ app
    โ”‚ย ย  โ”œโ”€โ”€ __init__.py
    โ”‚ย ย  โ””โ”€โ”€ main.py
    ```
    
    No arquivo `main.py` vocรช tem seu aplicativo **FastAPI**:
    
    
    {* ../../docs_src/app_testing/main.py *}
    
    ### Arquivo de teste
    
    Entรฃo vocรช poderia ter um arquivo `test_main.py` com seus testes. Ele poderia estar no mesmo pacote Python (o mesmo diretรณrio com um arquivo `__init__.py`):
    
    ``` hl_lines="5"
    .
    โ”œโ”€โ”€ app
    โ”‚ย ย  โ”œโ”€โ”€ __init__.py
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. docs/ko/docs/tutorial/testing.md

    ```
    .
    โ”œโ”€โ”€ app
    โ”‚ย ย  โ”œโ”€โ”€ __init__.py
    โ”‚ย ย  โ””โ”€โ”€ main.py
    ```
    
    `main.py` ํŒŒ์ผ ์•ˆ์— **FastAPI** app ์„ ๋งŒ๋“ค์—ˆ์Šต๋‹ˆ๋‹ค:
    
    {* ../../docs_src/app_testing/main.py *}
    
    ### ํ…Œ์ŠคํŠธ ํŒŒ์ผ
    
    ํ…Œ์ŠคํŠธ๋ฅผ ์œ„ํ•ด `test_main.py` ๋ผ๋Š” ํŒŒ์ผ์„ ์ƒ์„ฑํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. ์ด ํŒŒ์ผ์€ ๋™์ผํ•œ Python ํŒจํ‚ค์ง€(์ฆ‰, `__init__.py` ํŒŒ์ผ์ด ์žˆ๋Š” ๋™์ผํ•œ ๋””๋ ‰ํ„ฐ๋ฆฌ)์— ์œ„์น˜ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ``` hl_lines="5"
    .
    โ”œโ”€โ”€ app
    โ”‚ย ย  โ”œโ”€โ”€ __init__.py
    โ”‚ย ย  โ”œโ”€โ”€ main.py
    โ”‚ย ย  โ””โ”€โ”€ test_main.py
    ```
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Dec 10 11:24:48 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. docs/zh/docs/advanced/advanced-dependencies.md

    {* ../../docs_src/dependencies/tutorial011.py hl[10] *}
    
    ๆœฌไพ‹ไธญ๏ผŒ**FastAPI**  ไฝฟ็”จ `__call__` ๆฃ€ๆŸฅ้™„ๅŠ ๅ‚ๆ•ฐๅŠๅญไพ่ต–้กน๏ผŒ็จๅŽ๏ผŒ่ฟ˜่ฆ่ฐƒ็”จๅฎƒๅ‘*่ทฏๅพ„ๆ“ไฝœๅ‡ฝๆ•ฐ*ไผ ้€’ๅ€ผใ€‚
    
    ## ๅ‚ๆ•ฐๅŒ–ๅฎžไพ‹
    
    ๆŽฅไธ‹ๆฅ๏ผŒไฝฟ็”จ `__init__` ๅฃฐๆ˜Ž็”จไบŽ**ๅ‚ๆ•ฐๅŒ–**ไพ่ต–้กน็š„ๅฎžไพ‹ๅ‚ๆ•ฐ๏ผš
    
    {* ../../docs_src/dependencies/tutorial011.py hl[7] *}
    
    ๆœฌไพ‹ไธญ๏ผŒ**FastAPI** ไธไฝฟ็”จ `__init__`๏ผŒๆˆ‘ไปฌ่ฆ็›ดๆŽฅๅœจไปฃ็ ไธญไฝฟ็”จใ€‚
    
    ## ๅˆ›ๅปบๅฎžไพ‹
    
    ไฝฟ็”จไปฅไธ‹ไปฃ็ ๅˆ›ๅปบ็ฑปๅฎžไพ‹๏ผš
    
    {* ../../docs_src/dependencies/tutorial011.py hl[16] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. docs/em/docs/tutorial/testing.md

    ```
    .
    โ”œโ”€โ”€ app
    โ”‚ย ย  โ”œโ”€โ”€ __init__.py
    โ”‚ย ย  โ””โ”€โ”€ main.py
    ```
    
    ๐Ÿ“ `main.py` ๐Ÿ‘† โœ”๏ธ ๐Ÿ‘† **FastAPI** ๐Ÿ“ฑ:
    
    
    {* ../../docs_src/app_testing/main.py *}
    
    ### ๐Ÿ”ฌ ๐Ÿ“
    
    โคด๏ธ ๐Ÿ‘† ๐Ÿ’ช โœ”๏ธ ๐Ÿ“ `test_main.py` โฎ๏ธ ๐Ÿ‘† ๐Ÿ’ฏ. โšซ๏ธ ๐Ÿ’ช ๐Ÿ–– ๐Ÿ”› ๐ŸŽ ๐Ÿ ๐Ÿ“ฆ (๐ŸŽ ๐Ÿ“ โฎ๏ธ `__init__.py` ๐Ÿ“):
    
    ``` hl_lines="5"
    .
    โ”œโ”€โ”€ app
    โ”‚ย ย  โ”œโ”€โ”€ __init__.py
    โ”‚ย ย  โ”œโ”€โ”€ main.py
    โ”‚ย ย  โ””โ”€โ”€ test_main.py
    ```
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top