Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 98 for Dependant (0.06 seconds)

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

  1. fastapi/dependencies/utils.py

            path_params=dependant.path_params.copy(),
            query_params=dependant.query_params.copy(),
            header_params=dependant.header_params.copy(),
            cookie_params=dependant.cookie_params.copy(),
            body_params=dependant.body_params.copy(),
            name=dependant.name,
            call=dependant.call,
            request_param_name=dependant.request_param_name,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 38.7K bytes
    - Click Count (3)
  2. fastapi/openapi/utils.py

    
    def _get_openapi_operation_parameters(
        *,
        dependant: Dependant,
        model_name_map: ModelNameMap,
        field_mapping: dict[
            tuple[ModelField, Literal["validation", "serialization"]], dict[str, Any]
        ],
        separate_input_output_schemas: bool = True,
    ) -> list[dict[str, Any]]:
        parameters = []
        flat_dependant = get_flat_dependant(dependant, skip_repeats=True)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 25.6K bytes
    - Click Count (0)
  3. fastapi/dependencies/models.py

        return func
    
    
    @dataclass
    class Dependant:
        path_params: list[ModelField] = field(default_factory=list)
        query_params: list[ModelField] = field(default_factory=list)
        header_params: list[ModelField] = field(default_factory=list)
        cookie_params: list[ModelField] = field(default_factory=list)
        body_params: list[ModelField] = field(default_factory=list)
        dependencies: list["Dependant"] = field(default_factory=list)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 18:41:21 GMT 2026
    - 7.1K bytes
    - Click Count (0)
  4. docs/en/docs/tutorial/dependencies/sub-dependencies.md

    This is quite simple (not very useful), but will help us focus on how the sub-dependencies work.
    
    ## Second dependency, "dependable" and "dependant" { #second-dependency-dependable-and-dependant }
    
    Then you can create another dependency function (a "dependable") that at the same time declares a dependency of its own (so it is a "dependant" too):
    
    {* ../../docs_src/dependencies/tutorial005_an_py310.py hl[13] *}
    
    Let's focus on the parameters declared:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 18:32:12 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  5. fastapi/routing.py

    
    async def run_endpoint_function(
        *, dependant: Dependant, values: dict[str, Any], is_coroutine: bool
    ) -> Any:
        # Only called by get_request_handler. Has been split into its own function to
        # facilitate profiling endpoints, since inner functions are harder to profile.
        assert dependant.call is not None, "dependant.call must be a function"
    
        if is_coroutine:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (0)
  6. docs/ja/docs/tutorial/dependencies/index.md

    ///
    
    ### `Depends`のインポート { #import-depends }
    
    {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[3] *}
    
    ### 「dependant」での依存関係の宣言 { #declare-the-dependency-in-the-dependant }
    
    *path operation 関数*のパラメータに`Body`や`Query`などを使用するのと同じように、新しいパラメータに`Depends`を使用することができます:
    
    {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[13,18] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  7. src/main/java/jcifs/netbios/NbtAddress.java

         * address, isPermanent, isBeingDeleted, ...etc. This information can only
         * be retrieved with the Node Status request.
         *
         * The degree of state that an NbtAddress has is dependant on how it was
         * created and what is required of it. The second degree of state is the
         * most common. This is the state information that would be retrieved from
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 15.1K bytes
    - Click Count (0)
  8. docs/en/docs/_llm-test.md

    * the header
    * the headers
    * the authorization header
    * the `Authorization` header
    * the forwarded header
    
    * the dependency injection system
    * the dependency
    * the dependable
    * the dependant
    
    * I/O bound
    * CPU bound
    * concurrency
    * parallelism
    * multiprocessing
    
    * the env var
    * the environment variable
    * the `PATH`
    * the `PATH` variable
    
    * the authentication
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 11K bytes
    - Click Count (0)
  9. docs/ja/docs/_llm-test.md

    * クラス
    * 基底クラス
    * 親クラス
    * サブクラス
    * 子クラス
    * 兄弟クラス
    * クラスメソッド
    
    * ヘッダー
    * ヘッダー(複数)
    * 認可ヘッダー
    * `Authorization` ヘッダー
    * Forwarded ヘッダー
    
    * 依存性注入システム
    * 依存関係
    * dependable
    * dependant
    
    * I/O バウンド
    * CPU バウンド
    * 同時実行性
    * 並列性
    * マルチプロセッシング
    
    * env var
    * 環境変数
    * `PATH`
    * `PATH` 環境変数
    
    * 認証
    * 認証プロバイダ
    * 認可
    * 認可フォーム
    * 認可プロバイダ
    * ユーザーが認証する
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 13.5K bytes
    - Click Count (0)
  10. docs/uk/docs/tutorial/dependencies/sub-dependencies.md

    Це досить просто (не дуже корисно), але допоможе зосередитися на тому, як працюють підзалежності.
    
    ## Друга залежність, «dependable» і «dependant» { #second-dependency-dependable-and-dependant }
    
    Далі ви можете створити іншу функцію залежності («dependable»), яка водночас оголошує власну залежність (тож вона також є «dependant»):
    
    {* ../../docs_src/dependencies/tutorial005_an_py310.py hl[13] *}
    
    Зосередьмося на оголошених параметрах:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:43:14 GMT 2026
    - 5.7K bytes
    - Click Count (0)
Back to Top