Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for getNormalizedPath (0.43 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

                    return;
                }
                if (fileChange.getFileType() != FileType.FILE) {
                    continue;
                }
    
                String relativeFilePath = fileChange.getNormalizedPath();
                Set<String> changedClasses = sourceFileClassNameConverter.getClassNames(relativeFilePath);
                if (changedClasses.isEmpty() && !isIncrementalOnResourceChanges(current)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    * the link:{javadocPath}/org/gradle/work/FileChange.html#getChangeType--[change type] (`ADDED`, `REMOVED` or `MODIFIED`)
    * the link:{javadocPath}/org/gradle/work/FileChange.html#getNormalizedPath--[normalized path] of the changed file
    * the link:{javadocPath}/org/gradle/work/FileChange.html#getFileType--[file type] of the changed file
    
    The following example demonstrates an incremental task that has a directory input.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top