Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 232 for normalization (0.14 sec)

  1. platforms/documentation/docs/src/snippets/buildCache/normalization/tests/normalization.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 44 bytes
    - Viewed (0)
  2. tests/integration/security/testdata/authz/path-normalization.yaml.tmpl

    Akshay J Nambiar <******@****.***> 1683529381 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 263 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.normalization.InputNormalization.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.normalization.InputNormalizationHandler.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.normalization.RuntimeClasspathNormalization.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 584 bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/normalization/InputNormalization.java

     * limitations under the License.
     */
    
    package org.gradle.normalization;
    
    /**
     * Input normalization configuration.
     *
     * Input normalization is used when Gradle tries to determine if two task inputs are different.
     * Gradle normalizes both inputs and the inputs are considered different if and only if the normalizations are different.
     *
     * @since 4.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 975 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/normalization/internal/RuntimeClasspathNormalizationInternal.java

         * Returns the configuration of runtime classpath normalization in a configuration-cache friendly form.
         * The normalization cannot be further configured after this call.
         *
         * @return the configuration of input normalization or {@code null} if there is no user-defined state.
         */
        @Nullable
        CachedState computeCachedState();
    
        /**
         * Configures input normalization from cached state data.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 22 13:17:59 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tasks/inputNormalizationMetaInf/groovy/build.gradle

    plugins {
        id 'java'
    }
    
    // tag::ignore-metainf-attribute[]
    normalization {
        runtimeClasspath {
            metaInf {
                ignoreAttribute("Implementation-Version")
            }
        }
    }
    // end::ignore-metainf-attribute[]
    
    // tag::ignore-metainf-properties[]
    normalization {
        runtimeClasspath {
            metaInf {
                ignoreProperty("app.version")
            }
        }
    }
    // end::ignore-metainf-properties[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 768 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/normalization/internal/InputNormalizationHandlerInternal.java

         *
         * @return the configuration of input normalization or {@code null} if there is no user-defined state.
         */
        @Nullable
        CachedState computeCachedState();
    
        /**
         * Configures input normalization from cached state data.
         */
        void configureFromCachedState(CachedState state);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 22 13:17:59 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/normalization/internal/DefaultRuntimeClasspathNormalizationTest.groovy

            given:
            def normalization = new DefaultRuntimeClasspathNormalization()
    
            when:
            normalization.computeCachedState()
            normalization.ignore("some.file")
    
            then:
            thrown(GradleException.class)
        }
    
        def "exception is thrown if property ignore added after caching"() {
            given:
            def normalization = new DefaultRuntimeClasspathNormalization()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 22 13:17:59 UTC 2021
    - 7K bytes
    - Viewed (0)
Back to top