Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 232 for normalization (0.77 sec)

  1. platforms/documentation/docs/src/snippets/tasks/inputNormalization/groovy/build.gradle

    plugins {
        id 'java'
    }
    
    // tag::ignore-build-info-properties[]
    normalization {
        runtimeClasspath {
            ignore 'build-info.properties'
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 191 bytes
    - Viewed (0)
  2. .gitattributes

    # Auto detect text files and perform LF normalization
    *        text=auto
    
    *.java   text diff=java
    *.html   text diff=html
    *.css    text
    *.js     text
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 29 15:27:02 UTC 2013
    - 164 bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/impl/DefaultFileCollectionFingerprinterRegistry.java

            if (fingerprinter == null) {
                throw new IllegalStateException(String.format("No fingerprinter registered with '%s' normalization, directory sensitivity '%s' and line ending normalization '%s'", spec.getNormalizer(), spec.getDirectorySensitivity().name(), spec.getLineEndingNormalization()));
            }
            return fingerprinter;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/buildCache/normalization/groovy/settings.gradle

    rootProject.name = 'normalization'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 35 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/buildCache/normalization/kotlin/settings.gradle.kts

    rootProject.name = "normalization"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 35 bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/ModifierAnnotationCategory.java

    import java.util.Map;
    
    public enum ModifierAnnotationCategory implements AnnotationCategory {
        INCREMENTAL("incremental",
            Incremental.class,
            SkipWhenEmpty.class
        ),
        NORMALIZATION("normalization",
            Classpath.class,
            CompileClasspath.class,
            PathSensitive.class
        ),
        OPTIONAL("optional",
            Optional.class
        ),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

            and:
            verifyAll(receivedProblem(0)) {
                fqid == 'validation:property-validation:missing-normalization-annotation'
                contextualLabel == 'Type \'MyTask\' property \'dirProp\' is annotated with @InputDirectory but missing a normalization strategy'
                details == 'If you don\'t declare the normalization, outputs can\'t be re-used between machines or locations on the same machine, therefore caching efficiency drops significantly'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tasks/inputNormalization/kotlin/settings.gradle.kts

    rootProject.name = "input-normalization"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 41 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/tasks/inputNormalizationPropertiesFiles/groovy/settings.gradle

    rootProject.name = 'input-normalization'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 41 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/inputNormalizationPropertiesFiles/kotlin/settings.gradle.kts

    rootProject.name = "input-normalization"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 41 bytes
    - Viewed (0)
Back to top