Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for exclude3 (0.09 sec)

  1. guava-gwt/pom.xml

              </excludes>
            </configuration>
          </plugin>
          <plugin>
            <artifactId>maven-source-plugin</artifactId>
            <configuration>
              <excludes>
                <!-- 3. Don't include it in the source jar (since it's really more of a "test" than it is production code). -->
                <exclude>**/ForceGuavaCompilation*</exclude>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  2. android/pom.xml

                <excludes>
                  <!-- The root module (where applicable) is withheld because it is provided at `META-INF/versions/9/`. -->
                  <exclude>/module-info.class</exclude>
                  <!-- Avoid duplicating compiled classes within the `META-INF/versions/9/` root. -->
                  <exclude>META-INF/versions/9/com/**/*.class</exclude>
                </excludes>
                <archive>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  3. pom.xml

                <excludes>
                  <!-- The root module (where applicable) is withheld because it is provided at `META-INF/versions/9/`. -->
                  <exclude>/module-info.class</exclude>
                  <!-- Avoid duplicating compiled classes within the `META-INF/versions/9/` root. -->
                  <exclude>META-INF/versions/9/com/**/*.class</exclude>
                </excludes>
                <archive>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  4. pom.xml

    					<webappDirectory>${project.build.directory}/${project.build.finalName}-compress</webappDirectory>
    					<excludes>
    						<exclude>**/*min.js</exclude>
    						<exclude>**/*min.css</exclude>
    						<exclude>**/plugins/**/*.js</exclude>
    						<exclude>**/WEB-INF/site/**</exclude>
    					</excludes>
    					<sourceDirectory>src/main/webapp/js</sourceDirectory>
    				</configuration>
    			</plugin>
    			<plugin>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 04 05:22:58 UTC 2025
    - 49.6K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/path-operation-advanced-configuration.md

    /// warning
    
    If you do this, you have to make sure each one of your *path operation functions* has a unique name.
    
    Even if they are in different modules (Python files).
    
    ///
    
    ## Exclude from OpenAPI { #exclude-from-openapi }
    
    To exclude a *path operation* from the generated OpenAPI schema (and thus, from the automatic documentation systems), use the parameter `include_in_schema` and set it to `False`:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/query-params-str-validations.md

    The docs will show it like this:
    
    <img src="/img/tutorial/query-params-str-validations/image01.png">
    
    ## Exclude parameters from OpenAPI { #exclude-parameters-from-openapi }
    
    To exclude a query parameter from the generated OpenAPI schema (and thus, from the automatic documentation systems), set the parameter `include_in_schema` of `Query` to `False`:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/response-model.md

    ///
    
    ### `response_model_include` and `response_model_exclude` { #response-model-include-and-response-model-exclude }
    
    You can also use the *path operation decorator* parameters `response_model_include` and `response_model_exclude`.
    
    They take a `set` of `str` with the name of the attributes to include (omitting the rest) or to exclude (including the rest).
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 16K bytes
    - Viewed (0)
  8. README.md

    Logger logger = Logger.getLogger(MyClass.class.getName());
    ```
    
    ### Bean Copy Configuration
    ```java
    // Configure bean copying behavior
    CopyOptions options = new CopyOptions()
        .exclude("password", "internalId")      // Exclude specific fields
        .includeNull(false)                     // Skip null values
        .converter("dateField", new DateConverter("yyyy-MM-dd"));
    
    BeanUtil.copyBeanToBean(source, dest, options);
    ```
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/body-updates.md

    But this guide shows you, more or less, how they are intended to be used.
    
    ///
    
    ### Using Pydantic's `exclude_unset` parameter { #using-pydantics-exclude-unset-parameter }
    
    If you want to receive partial updates, it's very useful to use the parameter `exclude_unset` in Pydantic's model's `.model_dump()`.
    
    Like `item.model_dump(exclude_unset=True)`.
    
    /// info
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  10. docs/en/docs/virtual-environments.md

    ```console
    $ python -m pip install --upgrade pip
    
    ---> 100%
    ```
    
    </div>
    
    ## Add `.gitignore` { #add-gitignore }
    
    If you are using **Git** (you should), add a `.gitignore` file to exclude everything in your `.venv` from Git.
    
    /// tip
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 22.4K bytes
    - Viewed (0)
Back to top