Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for FileCollectionStructureVisitor (0.41 sec)

  1. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/ArtifactCollectionCodec.kt

                // However, currently it is not easy to determine whether this is the case so assume that all transforms
                // have changing inputs
                FileCollectionStructureVisitor.VisitType.NoContents
            } else {
                FileCollectionStructureVisitor.VisitType.Visit
            }
        }
    
        override fun requireArtifactFiles(): Boolean {
            return true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionBackedFileTree.java

                    visitor.accept(fileTree);
                }
            });
        }
    
        @Override
        protected void visitContents(FileCollectionStructureVisitor visitor) {
            collection.visitStructure(new FileCollectionStructureVisitor() {
                final Set<File> seen = new HashSet<>();
    
                @Override
                public void visitCollection(Source source, Iterable<File> contents) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionInternal.java

         * Visits the structure of this collection, that is, zero or more atomic sources of files.
         *
         * <p>The implementation should call the most specific methods on {@link FileCollectionStructureVisitor} that it is able to.</p>
         */
        void visitStructure(FileCollectionStructureVisitor visitor);
    
        /**
         * Returns the display name of this file collection. Used in log and error messages.
         *
         * @return the display name
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

    import org.gradle.api.internal.file.FileCollectionBackedFileTree
    import org.gradle.api.internal.file.FileCollectionFactory
    import org.gradle.api.internal.file.FileCollectionInternal
    import org.gradle.api.internal.file.FileCollectionStructureVisitor
    import org.gradle.api.internal.file.FileOperations
    import org.gradle.api.internal.file.FileTreeInternal
    import org.gradle.api.internal.file.FilteredFileTree
    import org.gradle.api.internal.file.archive.TarFileTree
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/EmptyFileCollection.java

            return displayName;
        }
    
        @Override
        public Set<File> getFiles() {
            return ImmutableSet.of();
        }
    
        @Override
        protected void visitContents(FileCollectionStructureVisitor visitor) {
        }
    
        @Override
        public FileTreeInternal getAsFileTree() {
            return new EmptyFileTree(FileTreeInternal.DEFAULT_TREE_DISPLAY_NAME);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top