Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for hashContent (0.11 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/internal/fingerprint/classpath/impl/ClasspathFingerprintingStrategy.java

                    @Override
                    public void visitRegularFile(RegularFileSnapshot fileSnapshot) {
                        HashCode normalizedContentHash = hashContent(fileSnapshot, relativePath);
                        if (normalizedContentHash == null) {
                            return;
                        }
    
                        String absolutePath = snapshot.getAbsolutePath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

                }
            }
    
            @Override
            void flushOutput() {
                if (shouldForward()) {
                    boolean hasContent = !bufferedLogs.isEmpty();
                    if (!hasForeground() || statusHasChanged()) {
                        if (needHeaderSeparator || hasContent) {
                            listener.onOutput(spacerLine(lastUpdateTime, category));
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileCollection.java

         */
        protected static boolean visitAll(FileSystemMirroringFileTree tree) {
            final MutableBoolean hasContent = new MutableBoolean();
            tree.visit(new FileVisitor() {
                @Override
                public void visitDir(FileVisitDetails dirDetails) {
                    dirDetails.getFile();
                    hasContent.set(true);
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top