Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for getNormalizedContentHash (0.19 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/AbsolutePathFingerprintingStrategy.java

                    String absolutePath = snapshot.getAbsolutePath();
                    if (getDirectorySensitivity().shouldFingerprint(snapshot)) {
                        HashCode normalizedContentHash = getNormalizedContentHash(snapshot, normalizedContentHasher);
                        if (normalizedContentHash != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/RelativePathFingerprintingStrategy.java

            return builder.build();
        }
    
        @Nullable
        FileSystemLocationFingerprint fingerprint(String name, FileType type, FileSystemLocationSnapshot snapshot) {
            HashCode normalizedContentHash = getNormalizedContentHash(snapshot, normalizedContentHasher);
            return normalizedContentHash == null ? null : new DefaultFileSystemLocationFingerprint(name, type, normalizedContentHash);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseFilePropertyVisitState.java

            }
    
            visitUnvisitedDirectories();
    
            this.path = snapshot.getAbsolutePath();
            this.name = snapshot.getName();
            this.hash = fingerprint.getNormalizedContentHash();
    
            boolean isRoot = depth == 0;
            if (isRoot) {
                preRoot();
            }
    
            file();
    
            if (isRoot) {
                postRoot();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FingerprintMapSerializer.java

                    break;
                case RegularFile:
                    encoder.writeByte(REGULAR_FILE_FINGERPRINT);
                    hashCodeSerializer.write(encoder, value.getNormalizedContentHash());
                    break;
                default:
                    throw new AssertionError();
            }
    
            if (value instanceof DefaultFileSystemLocationFingerprint) {
    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