Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 505 for fileCollections (0.14 sec)

  1. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/CompositePublicationArtifactSet.java

                fileCollections[i] = (FileCollectionInternal) artifactSets[i].getFiles();
            }
            files = new UnionFileCollection(taskDependencyFactory, fileCollections);
        }
    
        @Override
        public FileCollection getFiles() {
            return files;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

            private final ImmutableList<FileCollectionInternal> fileCollections;
    
            public ResolvedItemsCollector(ImmutableList<FileCollectionInternal> fileCollections) {
                this.fileCollections = fileCollections;
            }
    
            @Override
            public boolean isEmpty() {
                return fileCollections.isEmpty();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/DependencyFilesNotationConverter.java

    public class DependencyFilesNotationConverter implements NotationConverter<FileCollection, FileCollectionDependency> {
        private final Instantiator instantiator;
    
        public DependencyFilesNotationConverter(Instantiator instantiator) {
            this.instantiator = instantiator;
        }
    
        @Override
        public void describe(DiagnosticsVisitor visitor) {
            visitor.candidate("FileCollections").example("files('some.jar', 'someOther.jar')");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/build.gradle.kts

    dependencies {
        api(projects.baseServices)
        api(projects.configurationCacheBase)
        api(projects.core)
        api(projects.coreApi)
        api(projects.dependencyManagement)
        api(projects.fileCollections)
        api(projects.flowServices)
        api(projects.graphSerialization)
        api(projects.stdlibJavaExtensions)
        api(projects.logging)
        api(projects.modelCore)
        api(projects.snapshots)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/software/testing-base/build.gradle.kts

        implementation(libs.ant) {
            because("only used for DateUtils")
        }
        implementation(libs.commonsLang)
        implementation(libs.kryo)
        implementation(libs.slf4jApi)
    
        testImplementation(projects.fileCollections)
        testImplementation(projects.enterpriseOperations)
        testImplementation(testFixtures(projects.baseServices))
        testImplementation(testFixtures(projects.core))
        testImplementation(testFixtures(projects.logging))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/build.gradle.kts

        implementation(projects.dependencyManagementSerializationCodecs)
        implementation(projects.enterpriseOperations)
        implementation(projects.execution)
        implementation(projects.fileCollections)
        implementation(projects.fileWatching)
        implementation(projects.files)
        implementation(projects.flowServices)
        implementation(projects.functional)
        implementation(projects.graphSerialization)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    include::sample[dir="snippets/files/fileCollections/kotlin",files="build.gradle.kts[tags=closure]"]
    include::sample[dir="snippets/files/fileCollections/groovy",files="build.gradle[tags=closure]"]
    ====
    
    ----
    $ gradle -q list
    include::{snippetsPath}/files/fileCollections/tests/fileCollectionsWithClosure.out[]
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FileCollection.java

         *
         * @param collection The other collection. Should not be null.
         * @return A new collection containing the union.
         */
        FileCollection plus(FileCollection collection);
    
        /**
         * <p>Returns a {@code FileCollection} which contains the difference between this collection and the given
         * collection. The returned collection is live, and tracks changes to both source collections.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:51:59 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/file/CalculatedTaskInputFileCollectionTest.groovy

            def calculated = Stub(MinimalFileSet)
            def fileCollection = new CalculatedTaskInputFileCollection(taskDependencyFactory, ":task", calculated)
    
            calculated.displayName >> "<files>"
    
            given:
            fileCollection.prepareValue()
            fileCollection.files
            fileCollection.cleanupValue()
    
            when:
            fileCollection.files
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyAssignmentIntegrationTest.groovy

            "FileCollection += FileCollection" | "+="      | "FileCollection" | 'files("a.txt")'  | '[a.txt]'
            "FileCollection << FileCollection" | "<<"      | "FileCollection" | 'files("a.txt")'  | unsupportedWithCause("No signature of method")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 28 14:39:49 UTC 2023
    - 36.6K bytes
    - Viewed (0)
Back to top