Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for describeContents (0.23 sec)

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

         * @return the display name
         */
        String getDisplayName();
    
        /**
         * Appends diagnostic information about the contents of this collection to the given formatter.
         */
        TreeFormatter describeContents(TreeFormatter formatter);
    
        /**
         * Calculates the execution time value of this file collection. The resulting value is serialized to the configuration cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/CompositeFileCollection.java

                protected void appendContents(TreeFormatter formatter) {
                    formatter.node("filtered collection");
                    formatter.startChildren();
                    CompositeFileCollection.this.describeContents(formatter);
                    formatter.endChildren();
                }
    
                @Override
                public String getDisplayName() {
                    return CompositeFileCollection.this.getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FilteredFileTree.java

            return tree.getDisplayName();
        }
    
        @Override
        protected void appendContents(TreeFormatter formatter) {
            formatter.node("backing tree");
            formatter.startChildren();
            tree.describeContents(formatter);
            formatter.endChildren();
        }
    
        public FileTreeInternal getTree() {
            return tree;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/UnionFileCollection.java

        @Override
        protected void appendContents(TreeFormatter formatter) {
            formatter.node("source");
            formatter.startChildren();
            for (FileCollectionInternal files : source) {
                files.describeContents(formatter);
            }
            formatter.endChildren();
        }
    
        public Set<? extends FileCollection> getSources() {
            return source;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/DefaultSourceSetOutput.java

            formatter.node("source set: " + outputDirectories.toString());
            formatter.node("output directories");
            formatter.startChildren();
            ((FileCollectionInternal) outputDirectories).describeContents(formatter);
            formatter.endChildren();
        }
    
        @Override
        public ConfigurableFileCollection getClassesDirs() {
            return classesDirs;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionBackedFileTree.java

        }
    
        @Override
        protected void appendContents(TreeFormatter formatter) {
            formatter.node("backing collection");
            formatter.startChildren();
            collection.describeContents(formatter);
            formatter.endChildren();
        }
    
        public AbstractFileCollection getCollection() {
            return collection;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProperty.java

        }
    
        @Override
        protected boolean isDefaultConvention() {
            return getConventionSupplier() == NOT_DEFINED;
        }
    
        @Override
        protected String describeContents() {
            // NOTE: Do not realize the value of the Provider in toString().  The debugger will try to call this method and make debugging really frustrating.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top