Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 721 - 730 of 1,817 for _parameters (0.05 seconds)

  1. docs/zh-hant/docs/tutorial/request-files.md

    ```
    
    因為上傳的檔案是以「表單資料」送出的。
    
    ///
    
    ## 匯入 `File` { #import-file }
    
    從 `fastapi` 匯入 `File` 與 `UploadFile`:
    
    {* ../../docs_src/request_files/tutorial001_an_py310.py hl[3] *}
    
    ## 定義 `File` 參數 { #define-file-parameters }
    
    和 `Body` 或 `Form` 一樣的方式建立檔案參數:
    
    {* ../../docs_src/request_files/tutorial001_an_py310.py hl[9] *}
    
    /// info
    
    `File` 是直接繼承自 `Form` 的類別。
    
    但請記住,當你從 `fastapi` 匯入 `Query`、`Path`、`File` 等時,它們其實是回傳特殊類別的函式。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6.6K bytes
    - Click Count (0)
  2. docs/zh/docs/tutorial/response-model.md

    在这种情况下,你可以通过设置 `response_model=None` 来禁用响应模型生成:
    
    {* ../../docs_src/response_model/tutorial003_05_py310.py hl[7] *}
    
    这会让 FastAPI 跳过响应模型的生成,这样你就可以按需使用任意返回类型注解,而不会影响你的 FastAPI 应用。🤓
    
    ## 响应模型的编码参数 { #response-model-encoding-parameters }
    
    你的响应模型可以具有默认值,例如:
    
    {* ../../docs_src/response_model/tutorial004_py310.py hl[9,11:12] *}
    
    * `description: Union[str, None] = None`(或在 Python 3.10 中的 `str | None = None`)默认值为 `None`。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 14.5K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java

                fail("Initialize should not throw exception with valid annotation: " + e.getMessage());
            }
        }
    
        // Test parameter validation without relying on complex configuration
        @Test
        public void test_validateParameters_basic() {
            // Test that parameter validation can be performed
            final CustomSize validAnnotation = createBasicAnnotation();
    
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 5.4K bytes
    - Click Count (0)
  4. compat/maven-settings-builder/pom.xml

          </plugin>
          <plugin>
            <groupId>com.github.siom79.japicmp</groupId>
            <artifactId>japicmp-maven-plugin</artifactId>
            <configuration>
              <parameter>
                <excludes>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sun Jun 29 22:37:39 GMT 2025
    - 4.6K bytes
    - Click Count (0)
  5. docs/fr/llm-prompt.md

    - path operation: chemin d'accès
    - path operations (plural): chemins d'accès
    - path operation function: fonction de chemin d'accès
    - path operation decorator: décorateur de chemin d'accès
    
    - path parameter: paramètre de chemin
    - query parameter: paramètre de requête
    
    - the `Request`: `Request` (keep as code identifier)
    - the `Response`: `Response` (keep as code identifier)
    
    - deployment: déploiement
    - to upgrade: mettre à niveau
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Jan 16 11:57:08 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstaller.java

         *             installation has failed
         * @throws IllegalArgumentException if {@code request} is {@code null} or parameter
         *             {@code localRepository} is {@code null} or {@code localRepository} is not a directory
         *             or parameter {@code mavenArtifacts} is {@code null} or
         *             {@code mavenArtifacts.isEmpty()} is {@code true}.
         */
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sat Apr 05 11:52:05 GMT 2025
    - 2.9K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/web/error/ErrorBadrequrestAction.java

    /**
     * Action class for handling HTTP 400 Bad Request error pages.
     * This action displays error pages when a client request contains
     * invalid syntax or cannot be fulfilled due to malformed request parameters.
     */
    public class ErrorBadrequrestAction extends FessSearchAction {
    
        /**
         * Default constructor for ErrorBadrequrestAction.
         */
        public ErrorBadrequrestAction() {
            super();
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

                    if (oldNullability && !newNullability) {
                        errors << "Parameter $idx from null accepting to non-null accepting breaking change".toString()
                    } else if (!oldNullability && newNullability) {
                        warnings << "Parameter $idx nullability changed from non-nullable to nullable".toString()
                    }
                }
            }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Oct 27 09:26:32 GMT 2025
    - 15.4K bytes
    - Click Count (0)
  9. tests/test_param_in_path_and_dependency.py

                    "/users/{user_id}": {
                        "get": {
                            "summary": "Read Users",
                            "operationId": "read_users_users__user_id__get",
                            "parameters": [
                                {
                                    "required": True,
                                    "schema": {"title": "User Id", "type": "integer"},
                                    "name": "user_id",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  10. docs/de/docs/advanced/dataclasses.md

    ///
    
    ## Datenklassen in `response_model` { #dataclasses-in-response-model }
    
    Sie können `dataclasses` auch im Parameter `response_model` verwenden:
    
    {* ../../docs_src/dataclasses_/tutorial002_py310.py hl[1,6:12,18] *}
    
    Die Datenklasse wird automatisch in eine Pydantic-Datenklasse konvertiert.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 4.8K bytes
    - Click Count (0)
Back to Top