Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for FileSystemLocationSnapshotHasher (0.58 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/FileSystemLocationSnapshotHasher.java

    import java.io.IOException;
    
    public interface FileSystemLocationSnapshotHasher extends ConfigurableNormalizer {
        /**
         * Returns {@code null} if the file should be ignored.
         */
        @Nullable
        HashCode hash(FileSystemLocationSnapshot snapshot) throws IOException;
    
        FileSystemLocationSnapshotHasher DEFAULT = new FileSystemLocationSnapshotHasher() {
            @Nullable
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/fingerprint/impl/FileCollectionFingerprinterRegistrations.java

            return registrants;
        }
    
        private static FileSystemLocationSnapshotHasher normalizedContentHasher(LineEndingSensitivity lineEndingSensitivity, ResourceSnapshotterCacheService resourceSnapshotterCacheService) {
            FileSystemLocationSnapshotHasher resourceHasher = LineEndingNormalizingFileSystemLocationSnapshotHasher.wrap(FileSystemLocationSnapshotHasher.DEFAULT, lineEndingSensitivity);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 16:58:45 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/CachingFileSystemLocationSnapshotHasher.java

    public class CachingFileSystemLocationSnapshotHasher implements FileSystemLocationSnapshotHasher {
        private final FileSystemLocationSnapshotHasher delegate;
        private final ResourceSnapshotterCacheService resourceSnapshotterCacheService;
        private final HashCode delegateConfigurationHash;
    
        public CachingFileSystemLocationSnapshotHasher(FileSystemLocationSnapshotHasher delegate, ResourceSnapshotterCacheService resourceSnapshotterCacheService) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/IgnoredPathFingerprintingStrategy.java

        public static final String IDENTIFIER = "IGNORED_PATH";
        public static final String IGNORED_PATH = "";
    
        private final FileSystemLocationSnapshotHasher normalizedContentHasher;
    
        public IgnoredPathFingerprintingStrategy(FileSystemLocationSnapshotHasher normalizedContentHasher) {
            super(IDENTIFIER, normalizedContentHasher);
            this.normalizedContentHasher = normalizedContentHasher;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/LineEndingNormalizingFileSystemLocationSnapshotHasher.java

        private final FileSystemLocationSnapshotHasher delegate;
        private final LineEndingNormalizingInputStreamHasher hasher;
    
        private LineEndingNormalizingFileSystemLocationSnapshotHasher(FileSystemLocationSnapshotHasher delegate) {
            this.delegate = delegate;
            this.hasher = new LineEndingNormalizingInputStreamHasher();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/NameOnlyFingerprintingStrategy.java

        public static final String IDENTIFIER = "NAME_ONLY";
        private final FileSystemLocationSnapshotHasher normalizedContentHasher;
    
        public NameOnlyFingerprintingStrategy(DirectorySensitivity directorySensitivity, FileSystemLocationSnapshotHasher normalizedContentHasher) {
            super(IDENTIFIER, directorySensitivity, normalizedContentHasher);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/fingerprint/impl/RelativePathFileCollectionFingerprinter.java

    import org.gradle.internal.fingerprint.hashing.FileSystemLocationSnapshotHasher;
    
    public class RelativePathFileCollectionFingerprinter extends AbstractFileCollectionFingerprinter {
    
        public RelativePathFileCollectionFingerprinter(StringInterner stringInterner, DirectorySensitivity directorySensitivity, FileCollectionSnapshotter fileCollectionSnapshotter, FileSystemLocationSnapshotHasher normalizedContentHasher) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/fingerprint/impl/AbsolutePathFileCollectionFingerprinter.java

    import org.gradle.internal.execution.model.InputNormalizer;
    import org.gradle.internal.fingerprint.DirectorySensitivity;
    import org.gradle.internal.fingerprint.FileNormalizer;
    import org.gradle.internal.fingerprint.hashing.FileSystemLocationSnapshotHasher;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.BuildSession.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/RelativePathFingerprintingStrategy.java

        private final Interner<String> stringInterner;
        private final FileSystemLocationSnapshotHasher normalizedContentHasher;
    
        public RelativePathFingerprintingStrategy(Interner<String> stringInterner, DirectorySensitivity directorySensitivity, FileSystemLocationSnapshotHasher normalizedContentHasher) {
            super(IDENTIFIER, directorySensitivity, normalizedContentHasher);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/AbsolutePathFingerprintingStrategy.java

        public static final String IDENTIFIER = "ABSOLUTE_PATH";
    
        private final FileSystemLocationSnapshotHasher normalizedContentHasher;
    
        public AbsolutePathFingerprintingStrategy(DirectorySensitivity directorySensitivity, FileSystemLocationSnapshotHasher normalizedContentHasher) {
            super(IDENTIFIER, directorySensitivity, normalizedContentHasher);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top