Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 231 for __uikit__ (0.17 sec)

  1. tensorflow/api_template_v1.__init__.py

    A. Unique TensorFlower <******@****.***> 1705975132 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. 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: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. docs_src/sql_databases_peewee/sql_app/database.py

    db_state = ContextVar("db_state", default=db_state_default.copy())
    
    
    class PeeweeConnectionState(peewee._ConnectionState):
        def __init__(self, **kwargs):
            super().__setattr__("_state", db_state)
            super().__init__(**kwargs)
    
        def __setattr__(self, name, value):
            self._state.get()[name] = value
    
        def __getattr__(self, name):
            return self._state.get()[name]
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 662 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/dag_object_graph.py

    
    class Child(tf.Module):
    
      def __init__(self):
        super(Child, self).__init__()
        self.my_variable = tf.Variable(3.)
    
    
    # Creates a dag object graph.
    # There is only one instance of `Child`, but it is reachable via two names.
    # Thus, self.my_variable is reachable via two paths.
    class TestModule(tf.Module):
    
      def __init__(self):
        super(TestModule, self).__init__()
        self.child1 = Child()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. docs_src/python_types/tutorial010.py

    class Person:
        def __init__(self, name: str):
            self.name = name
    
    
    def get_person_name(one_person: Person):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 12 21:44:23 UTC 2020
    - 144 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/basic.py

    # it is being invoked.
    # CHECK: module
    # CHECK-SAME: tf.versions
    # CHECK-SAME: bad_consumers
    # CHECK-SAME: min_consumer
    # CHECK-SAME: producer
    
    
    class TestModule(tf.Module):
    
      def __init__(self):
        super(TestModule, self).__init__()
        self.v42 = tf.Variable(42.0)
        self.c43 = tf.constant(43.0)
    
      # During serialization, the constants are given internal (non-user-accessible, non-semantically-load-bearing) exported names.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. 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: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. docs_src/dependencies/tutorial011.py

    from fastapi import Depends, FastAPI
    
    app = FastAPI()
    
    
    class FixedContentQueryChecker:
        def __init__(self, fixed_content: str):
            self.fixed_content = fixed_content
    
        def __call__(self, q: str = ""):
            if q:
                return self.fixed_content in q
            return False
    
    
    checker = FixedContentQueryChecker("bar")
    
    
    @app.get("/query-checker/")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 504 bytes
    - Viewed (0)
  9. tensorflow/compat_template_v1.__init__.py

    A. Unique TensorFlower <******@****.***> 1705975132 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. docs/zh/docs/advanced/advanced-dependencies.md

    {!../../../docs_src/dependencies/tutorial011.py!}
    ```
    
    ๆœฌไพ‹ไธญ๏ผŒ**FastAPI**  ไฝฟ็”จ `__call__` ๆฃ€ๆŸฅ้™„ๅŠ ๅ‚ๆ•ฐๅŠๅญไพ่ต–้กน๏ผŒ็จๅŽ๏ผŒ่ฟ˜่ฆ่ฐƒ็”จๅฎƒๅ‘*่ทฏๅพ„ๆ“ไฝœๅ‡ฝๆ•ฐ*ไผ ้€’ๅ€ผใ€‚
    
    ## ๅ‚ๆ•ฐๅŒ–ๅฎžไพ‹
    
    ๆŽฅไธ‹ๆฅ๏ผŒไฝฟ็”จ `__init__` ๅฃฐๆ˜Ž็”จไบŽ**ๅ‚ๆ•ฐๅŒ–**ไพ่ต–้กน็š„ๅฎžไพ‹ๅ‚ๆ•ฐ๏ผš
    
    ```Python hl_lines="7"
    {!../../../docs_src/dependencies/tutorial011.py!}
    ```
    
    ๆœฌไพ‹ไธญ๏ผŒ**FastAPI** ไธไฝฟ็”จ `__init__`๏ผŒๆˆ‘ไปฌ่ฆ็›ดๆŽฅๅœจไปฃ็ ไธญไฝฟ็”จใ€‚
    
    ## ๅˆ›ๅปบๅฎžไพ‹
    
    ไฝฟ็”จไปฅไธ‹ไปฃ็ ๅˆ›ๅปบ็ฑปๅฎžไพ‹๏ผš
    
    ```Python hl_lines="16"
    {!../../../docs_src/dependencies/tutorial011.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 28 18:26:57 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top