Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 229 for excluir (0.07 seconds)

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

  1. src/main/java/org/codelibs/core/beans/util/CopyOptions.java

        /**
         * Array of property names to exclude from the operation.
         */
        protected final List<String> excludePropertyNames = newArrayList();
    
        /**
         * Whether to exclude properties with null values from the operation.
         */
        protected boolean excludesNull = false;
    
        /**
         * Whether to exclude strings that consist only of whitespace from the operation.
         */
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Sat Jul 05 00:11:05 GMT 2025
    - 17.5K bytes
    - Click Count (0)
  2. compat/maven-toolchain-model/pom.xml

                <includes>
                  <include>org.apache.maven.toolchain.model</include>
                </includes>
                <excludes>
                  <!--              <exclude>org.apache.maven.toolchain.model.PersistedToolchains#setModelEncoding(java.lang.String):METHOD_REMOVED</exclude>-->
                </excludes>
                <includeExclusively>true</includeExclusively>
              </parameter>
              <oldVersion>
                <dependency>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Jun 29 22:37:39 GMT 2025
    - 4K bytes
    - Click Count (0)
  3. .pre-commit-config.yaml

        hooks:
          - id: local-ruff-check
            name: ruff check
            entry: uv run ruff check --force-exclude --fix --exit-non-zero-on-fix
            require_serial: true
            language: unsupported
            types: [python]
    
          - id: local-ruff-format
            name: ruff format
            entry: uv run ruff format --force-exclude --exit-non-zero-on-format
            require_serial: true
            language: unsupported
            types: [python]
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Dec 26 11:36:58 GMT 2025
    - 1.8K bytes
    - Click Count (1)
  4. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/PackageListGenerator.kt

                }
            }
    
            private
            fun shouldInclude(packageName: String, excludes: List<String>, includes: List<String>): Boolean {
                for (exclude in excludes) {
                    if ("$packageName/".startsWith("$exclude/")) {
                        for (include in includes) {
                            if ("$packageName/".startsWith("$include/")) {
                                return true
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Apr 11 15:53:18 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java

                entity.setUpdatedBy(username);
                entity.setUpdatedTime(currentTime);
                BeanUtil.copyBeanToBean(form, entity,
                        op -> op.exclude(Constants.COMMON_CONVERSION_RULE)
                                .exclude(TOKEN, Constants.PERMISSIONS, EXPIRED_TIME)
                                .dateConverter(Constants.DEFAULT_DATETIME_FORMAT, EXPIRES));
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  6. .teamcity/src/main/kotlin/common/FlakyTestStrategy.kt

    package common
    
    enum class FlakyTestStrategy {
        INCLUDE,
        EXCLUDE,
        ONLY,
        ;
    
        override fun toString() = name.lowercase()
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Oct 09 05:26:45 GMT 2025
    - 139 bytes
    - Click Count (0)
  7. .github/workflows/submit-github-dependency-graph.yml

        - uses: actions/setup-java@v5
          with:
            distribution: temurin
            java-version: 17
        - name: Setup Gradle
          uses: gradle/actions/dependency-submission@v5
          env:
            # Exclude some projects and configurations that should not contribute to the dependency graph
            DEPENDENCY_GRAPH_EXCLUDE_PROJECTS: ':docs|:internal-performance-testing|:enterprise-plugin-performance|:performance|:internal-integ-testing'
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Nov 20 22:15:20 GMT 2025
    - 933 bytes
    - Click Count (0)
  8. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/DistributionTest.kt

                // Only a few tests need the sources jar in tooling-api subproject
                if (projectName != "tooling-api") {
                    exclude("**/*-sources.jar")
                }
                exclude("**/*-javadoc.jar")
            }.files.toSortedSet()
    
        /**
         * Make sure this stays type FileCollection (lazy) to avoid losing dependency information.
         */
        @get:InputFiles
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Aug 18 18:02:41 GMT 2025
    - 7.7K bytes
    - Click Count (0)
  9. api/maven-api-metadata/pom.xml

          </plugin>
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>**/package-info.java</exclude>
              </excludes>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sun Jun 29 22:37:39 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  10. docs/es/docs/how-to/extending-openapi.md

    * `openapi_version`: La versión de la especificación OpenAPI utilizada. Por defecto, la más reciente: `3.1.0`.
    * `summary`: Un breve resumen de la API.
    * `description`: La descripción de tu API, esta puede incluir markdown y se mostrará en la documentación.
    * `routes`: Una list de rutas, estas son cada una de las *path operations* registradas. Se toman de `app.routes`.
    
    /// info | Información
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 3.6K bytes
    - Click Count (0)
Back to Top