Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getCollection (0.34 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionBackedFileTree.java

            formatter.node("backing collection");
            formatter.startChildren();
            collection.describeContents(formatter);
            formatter.endChildren();
        }
    
        public AbstractFileCollection getCollection() {
            return collection;
        }
    
        @Override
        public FileTreeInternal matching(PatternFilterable patterns) {
            return new FilteredFileTree(this, taskDependencyFactory, patternSetFactory, () -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FilteredFileCollection.java

            if (newCollection == collection) {
                return this;
            }
            return newCollection.filter(filterSpec);
        }
    
        public FileCollectionInternal getCollection() {
            return collection;
        }
    
        public Spec<? super File> getFilterSpec() {
            return filterSpec;
        }
    
        @Override
        public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 08:16:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top