Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for isContentUpToDate (0.2 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/MissingFileSnapshot.java

            return SIGNATURE;
        }
    
        @Override
        public boolean isContentAndMetadataUpToDate(FileSystemLocationSnapshot other) {
            return isContentUpToDate(other);
        }
    
        @Override
        public boolean isContentUpToDate(FileSystemLocationSnapshot other) {
            return other instanceof MissingFileSnapshot;
        }
    
        @Override
        public void accept(FileSystemLocationSnapshotVisitor visitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RegularFileSnapshot.java

            return metadata;
        }
    
        @Override
        public boolean isContentAndMetadataUpToDate(FileSystemLocationSnapshot other) {
            return isContentUpToDate(other) && metadata.equals(((RegularFileSnapshot) other).metadata);
        }
    
        @Override
        public boolean isContentUpToDate(FileSystemLocationSnapshot other) {
            if (!(other instanceof RegularFileSnapshot)) {
                return false;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/DirectorySnapshot.java

            return FileType.Directory;
        }
    
        @Override
        public boolean isContentAndMetadataUpToDate(FileSystemLocationSnapshot other) {
            return isContentUpToDate(other);
        }
    
        @Override
        public boolean isContentUpToDate(FileSystemLocationSnapshot other) {
            return other instanceof DirectorySnapshot;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLocationSnapshot.java

         */
        boolean isContentAndMetadataUpToDate(FileSystemLocationSnapshot other);
    
        /**
         * Whether the content of the current snapshot is the same as for the given one.
         */
        boolean isContentUpToDate(FileSystemLocationSnapshot other);
    
        /**
         * Whether the file system location represented by this snapshot is a symlink or not.
         */
        FileMetadata.AccessType getAccessType();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:09:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultOverlappingOutputDetector.java

                // Created since last execution, possibly by another task
                if (previousSnapshot == null) {
                    return true;
                }
                return !snapshot.isContentUpToDate(previousSnapshot);
            }
    
            @Nullable
            public String getOverlappingPath() {
                return overlappingPath;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top