Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getBuiltBy (0.17 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            expect:
            fileTree.getBuiltBy().empty
    
            when:
            fileTree.builtBy("a")
            fileTree.builtBy("b")
            fileTree.from("f")
            then:
            fileTree.getBuiltBy() == ["a", "b"] as Set
            dep.mutableValues == ["a", "b"] as Set
    
            when:
            fileTree.setBuiltBy(["c"])
            then:
            fileTree.getBuiltBy() == ["c"] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

        }
    
        @Override
        public ConfigurableFileCollection builtBy(Object... tasks) {
            buildDependency.add(tasks);
            return this;
        }
    
        @Override
        public Set<Object> getBuiltBy() {
            return buildDependency.getMutableValues();
        }
    
        @Override
        public ConfigurableFileCollection setBuiltBy(Iterable<?> tasks) {
            buildDependency.setValues(tasks);
            return this;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.credentials.PasswordCredentials.getUsername()> does not have raw return type assignable to org.gradle.api.provider.Property in (PasswordCredentials.java:0)
    Method <org.gradle.api.file.ConfigurableFileTree.getBuiltBy()> does not have raw return type assignable to org.gradle.api.provider.Property in (ConfigurableFileTree.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top