Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 100 for FileCollectionInternal (0.82 sec)

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

            super(taskDependencyFactory);
        }
    
        private FileCollectionInternal delegate;
    
        @Override
        protected void visitChildren(Consumer<FileCollectionInternal> visitor) {
            if (delegate == null) {
                delegate = (FileCollectionInternal) createDelegate();
            }
            visitor.accept(delegate);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFileCollectionFactory.java

            if (sources instanceof FileCollectionInternal) {
                return (FileCollectionInternal) sources;
            }
            if (isEmptyArray(sources)) {
                return FileCollectionFactory.empty();
            }
            return resolving(FileCollectionInternal.DEFAULT_COLLECTION_DISPLAY_NAME, providerResolutionStrategy, sources);
        }
    
        @Override
        public FileCollectionInternal fixed(File... files) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 18:57:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/api/file/FileCollectionMatchers.java

                    if (expected instanceof FileCollectionInternal) {
                        FileCollectionInternal collection = (CompositeFileCollection) expected;
                        List<Object> collections = new ArrayList<>();
                        collection.visitStructure(new FileCollectionStructureVisitor() {
                            @Override
                            public void visitCollection(FileCollectionInternal.Source source, Iterable<File> contents) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 10 12:44:30 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/PropertyFileCollection.java

    import org.gradle.api.internal.file.FileCollectionInternal;
    
    import java.util.function.Consumer;
    
    public class PropertyFileCollection extends CompositeFileCollection {
        private final String ownerDisplayName;
        private final String type;
        private final String propertyName;
        private final FileCollectionInternal files;
        private String displayName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 03 07:26:08 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/EndCollection.java

    import org.gradle.api.internal.file.FileCollectionInternal;
    import org.gradle.internal.operations.BuildOperationQueue;
    import org.gradle.internal.operations.RunnableBuildOperation;
    
    public class EndCollection implements ResolvedArtifactSet.Artifacts {
        private final FileCollectionInternal.Source source;
    
        public EndCollection(FileCollectionInternal.Source source) {
            this.source = source;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/UnionFileCollectionTest.groovy

        }
    
        def "can replace one of the source collections"() {
            def source1 = Mock(FileCollectionInternal)
            def source2 = Mock(FileCollectionInternal)
            def source3 = Mock(FileCollectionInternal)
            def source4 = Mock(FileCollectionInternal)
    
            def collection = newUnionFileCollection(source1, source2)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/CachingDependencyResolveContext.java

        private class DependencyGraph implements DirectedGraph<Object, FileCollectionInternal> {
            @Override
            public void getNodeValues(Object node, Collection<? super FileCollectionInternal> values, Collection<? super Object> connectedNodes) {
                if (node instanceof FileCollectionInternal) {
                    FileCollectionInternal fileCollection = (FileCollectionInternal) node;
                    values.add(fileCollection);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactBackedResolvedVariantTest.groovy

    import org.gradle.api.artifacts.component.ProjectComponentIdentifier
    import org.gradle.api.internal.attributes.AttributeContainerInternal
    import org.gradle.api.internal.file.FileCollectionInternal
    import org.gradle.api.internal.tasks.TaskDependencyResolveContext
    import org.gradle.internal.Describables
    import org.gradle.internal.Try
    import org.gradle.internal.component.external.model.ImmutableCapabilities
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/UnpackingVisitorTest.groovy

            1 * resolver.resolve(path) >> file
            1 * context.accept(_) >> { FileCollectionInternal collection ->
                collection.files == [file] as Set
            }
            0 * context._
        }
    
        def "recursively resolves return value of a Closure"() {
            def fileCollection = Mock(FileCollectionInternal)
    
            when:
            visitor.add { fileCollection }
    
            then:
            1 * context.accept(fileCollection)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ResolvedFileCollectionVisitor.java

     */
    
    package org.gradle.api.internal.artifacts.ivyservice;
    
    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.artifact.ResolvedFileVisitor;
    import org.gradle.api.internal.file.FileCollectionInternal;
    import org.gradle.api.internal.file.FileCollectionStructureVisitor;
    
    import java.io.File;
    import java.util.LinkedHashSet;
    import java.util.Set;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top