Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for getNormalizedPath (0.21 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbstractFingerprintCompareStrategy.java

                return DefaultFileChange.added(path, propertyTitle, current.getType(), current.getNormalizedPath());
            }
    
            @Override
            public Change removed(String path, String propertyTitle, FileSystemLocationFingerprint previous) {
                return DefaultFileChange.removed(path, propertyTitle, previous.getType(), previous.getNormalizedPath());
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ClasspathCompareStrategy.java

                    FileSystemLocationFingerprint previousFingerprint = previous.getValue();
                    String currentNormalizedPath = currentFingerprint.getNormalizedPath();
                    String previousNormalizedPath = previousFingerprint.getNormalizedPath();
                    if (!currentNormalizedPath.equals(previousNormalizedPath)) {
                        removed();
                        added();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/DefaultFileSystemLocationFingerprint.java

            }
        }
    
        @Override
        public String getNormalizedPath() {
            return normalizedPath;
        }
    
        @Override
        public HashCode getNormalizedContentHash() {
            return normalizedContentHash;
        }
    
        @Override
        public final int compareTo(FileSystemLocationFingerprint o) {
            int result = getNormalizedPath().compareTo(o.getNormalizedPath());
            if (result == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/NonIncrementalInputChanges.java

            return currentFileCollectionFingerprint.getFingerprints().entrySet().stream()
                .map(entry -> new RebuildFileChange(entry.getKey(), entry.getValue().getNormalizedPath(), entry.getValue().getType()));
        }
    
        private static class RebuildFileChange implements FileChange, InputFileDetails {
            private final String path;
            private final String normalizedPath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/FileSystemLocationFingerprint.java

        HashCode DIR_SIGNATURE = Hashing.signature("DIR");
        HashCode MISSING_FILE_SIGNATURE = Hashing.signature("MISSING");
    
        String getNormalizedPath();
        HashCode getNormalizedContentHash();
        FileType getType();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/NormalizedPathChangeDetector.java

            FileSystemLocationFingerprint previousFingerprint,
            FilePathWithType pathWithType
        ) {
            String normalizedPath = previousFingerprint.getNormalizedPath();
            FileType previousFingerprintType = previousFingerprint.getType();
            String absolutePath = pathWithType.getAbsolutePath();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/work/FileChange.java

         *    See {@link org.gradle.api.tasks.PathSensitivity}, {@link org.gradle.api.tasks.Classpath} and {@link org.gradle.api.tasks.CompileClasspath} for the different path normalization strategies.
         * </p>
         */
        String getNormalizedPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 06 13:15:59 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/IgnoredPathFileSystemLocationFingerprint.java

            this.type = type;
            this.normalizedContentHash = normalizedContentHash;
        }
    
        @Override
        public String getNormalizedPath() {
            return "";
        }
    
        @Override
        public HashCode getNormalizedContentHash() {
            return normalizedContentHash;
        }
    
        @Override
        public FileType getType() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultFileChange.java

                case Missing:
                    return org.gradle.api.file.FileType.MISSING;
                default:
                    throw new AssertionError();
            }
        }
    
        @Override
        public String getNormalizedPath() {
            return normalizedPath;
        }
    
        public ChangeTypeInternal getType() {
            return change;
        }
    
        @Override
        public boolean isAdded() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FingerprintMapSerializer.java

                    throw new AssertionError();
            }
    
            if (value instanceof DefaultFileSystemLocationFingerprint) {
                encoder.writeByte(DEFAULT_NORMALIZATION);
                encoder.writeString(value.getNormalizedPath());
            } else if (value instanceof IgnoredPathFileSystemLocationFingerprint) {
                encoder.writeByte(IGNORED_PATH_NORMALIZATION);
            } else {
                throw new AssertionError();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top