Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getBuiltBy (0.14 sec)

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

        }
    
        @Override
        public ConfigurableFileTree builtBy(Object... tasks) {
            buildDependency.add(tasks);
            return this;
        }
    
        @Override
        public Set<Object> getBuiltBy() {
            return buildDependency.getMutableValues();
        }
    
        @Override
        public ConfigurableFileTree setBuiltBy(Iterable<?> tasks) {
            buildDependency.setValues(tasks);
            return this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileTree.java

        /**
         * Returns the set of tasks which build the files of this collection.
         *
         * @return The set. Returns an empty set when there are no such tasks.
         */
        Set<Object> getBuiltBy();
    
        /**
         * Sets the tasks which build the files of this collection.
         *
         * @param tasks The tasks. These are evaluated as per {@link org.gradle.api.Task#dependsOn(Object...)}.
         * @return this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileCollection.java

        /**
         * Returns the set of tasks which build the files of this collection.
         *
         * @return The set. Returns an empty set when there are no such tasks.
         */
        Set<Object> getBuiltBy();
    
        /**
         * Sets the tasks which build the files of this collection.
         *
         * @param tasks The tasks. These are evaluated as per {@link org.gradle.api.Task#dependsOn(Object...)}.
         * @return this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top