Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 557 for EXTRA (0.13 seconds)

  1. fastapi/params.py

            openapi_examples: dict[str, Example] | None = None,
            deprecated: deprecated | str | bool | None = None,
            include_in_schema: bool = True,
            json_schema_extra: dict[str, Any] | None = None,
            **extra: Any,
        ):
            if example is not _Unset:
                warnings.warn(
                    "`example` has been deprecated, please use `examples` instead",
                    category=FastAPIDeprecationWarning,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 25.7K bytes
    - Click Count (0)
  2. docs/en/docs/tutorial/query-param-models.md

    <div class="screenshot">
    <img src="/img/tutorial/query-param-models/image01.png">
    </div>
    
    ## Forbid Extra Query Parameters { #forbid-extra-query-parameters }
    
    In some special use cases (probably not very common), you might want to **restrict** the query parameters that you want to receive.
    
    You can use Pydantic's model configuration to `forbid` any `extra` fields:
    
    {* ../../docs_src/query_param_models/tutorial002_an_py310.py hl[10] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Aug 31 09:15:41 GMT 2025
    - 2.2K bytes
    - Click Count (0)
  3. docs/en/docs/tutorial/header-param-models.md

    </div>
    
    ## Forbid Extra Headers { #forbid-extra-headers }
    
    In some special use cases (probably not very common), you might want to **restrict** the headers that you want to receive.
    
    You can use Pydantic's model configuration to `forbid` any `extra` fields:
    
    {* ../../docs_src/header_param_models/tutorial002_an_py310.py hl[10] *}
    
    If a client tries to send some **extra headers**, they will receive an **error** response.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Aug 31 09:15:41 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  4. fastapi/param_functions.py

                Any additional JSON schema data.
                """
            ),
        ] = None,
        **extra: Annotated[
            Any,
            Doc(
                """
                Include extra fields used by the JSON Schema.
                """
            ),
            deprecated(
                """
                The `extra` kwargs is deprecated. Use `json_schema_extra` instead.
                """
            ),
        ],
    ) -> Any:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 68K bytes
    - Click Count (0)
  5. tests/test_forms_single_model.py

        alias_with: str = Field(alias="with", default="nothing")
    
    
    class FormModelExtraAllow(BaseModel):
        param: str
    
        model_config = {"extra": "allow"}
    
    
    @app.post("/form/")
    def post_form(user: Annotated[FormModel, Form()]):
        return user
    
    
    @app.post("/form-extra-allow/")
    def post_form_extra_allow(params: Annotated[FormModelExtraAllow, Form()]):
        return params
    
    
    client = TestClient(app)
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  6. src/main/java/jcifs/pac/PacLogonInfo.java

         * @return the resource group SIDs array
         */
        public SID[] getResourceGroupSids() {
            return this.resourceGroupSids;
        }
    
        /**
         * Returns an array of extra SIDs associated with the user.
         * @return the extra SIDs array
         */
        public SID[] getExtraSids() {
            return this.extraSids;
        }
    
        /**
         * Returns the user account control flags.
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 14.3K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/llm/LlmChatRequest.java

        }
    
        /**
         * Gets the extra parameters for provider-specific settings.
         *
         * @return the extra parameters map, or {@code null} if not set
         */
        public Map<String, String> getExtraParams() {
            return extraParams;
        }
    
        /**
         * Sets the extra parameters for provider-specific settings.
         *
         * @param extraParams the extra parameters map
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 03:38:31 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  8. Vagrantfile

      SHELL
    end
    
    def suse_common(config, name, extra: '')
      linux_common(
        config,
        name,
        update_command: 'zypper --non-interactive list-updates',
        update_tracking_file: '/var/cache/zypp/packages/last_update',
        install_command: 'zypper --non-interactive --quiet install --no-recommends',
        extra: extra
      )
    end
    
    def sles_common(config, name)
      extra = <<-SHELL
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 17 17:41:23 GMT 2021
    - 14.9K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/cookie-param-models.md

    但即使你**填入資料**並點擊「Execute」,因為該文件介面是以 **JavaScript** 運作,Cookie 不會被送出,你會看到**錯誤**訊息,就像完全沒有填任何值一樣。
    
    ///
    
    ## 禁止額外的 Cookie { #forbid-extra-cookies }
    
    在某些特殊情境(可能不太常見)下,你可能會想**限制**允許接收的 Cookie。
    
    你的 API 現在也能掌控自己的 <dfn title="這只是個玩笑,提醒一下。這與 Cookie 同意無關,但有趣的是連 API 現在也能拒絕可憐的 Cookie。請收下這塊餅乾。🍪">Cookie 同意</dfn>。🤪🍪
    
    你可以使用 Pydantic 的模型設定來 `forbid` 任何 `extra` 欄位:
    
    {* ../../docs_src/cookie_param_models/tutorial002_an_py310.py hl[10] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:15:26 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  10. src/archive/zip/struct.go

    	directory64EndSignature  = 0x06064b50
    	dataDescriptorSignature  = 0x08074b50 // de-facto standard; required by OS X Finder
    	fileHeaderLen            = 30         // + filename + extra
    	directoryHeaderLen       = 46         // + filename + extra + comment
    	directoryEndLen          = 22         // + comment
    	dataDescriptorLen        = 16         // four uint32: descriptor signature, crc32, compressed size, size
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue May 28 21:41:09 GMT 2024
    - 12.1K bytes
    - Click Count (0)
Back to Top