Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for PropertyFileCollection (0.51 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/PropertyFileCollection.java

    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;
    
        public PropertyFileCollection(String ownerDisplayName, String propertyName, String type, FileCollectionInternal files) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 03 07:26:08 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/GetInputFilesVisitor.java

    import com.google.common.collect.ImmutableSortedSet;
    import org.gradle.api.internal.file.FileCollectionFactory;
    import org.gradle.api.internal.file.FileCollectionInternal;
    import org.gradle.api.internal.tasks.PropertyFileCollection;
    import org.gradle.internal.fingerprint.DirectorySensitivity;
    import org.gradle.internal.fingerprint.FileNormalizer;
    import org.gradle.internal.fingerprint.LineEndingSensitivity;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/OutputUnpacker.java

    import org.gradle.api.internal.file.FileTreeInternal;
    import org.gradle.api.internal.file.collections.FileSystemMirroringFileTree;
    import org.gradle.api.internal.tasks.PropertyFileCollection;
    import org.gradle.api.provider.Provider;
    import org.gradle.api.tasks.util.PatternSet;
    import org.gradle.internal.MutableBoolean;
    import org.gradle.internal.file.TreeType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:56 UTC 2022
    - 9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskInputs.java

                            FileCollectionInternal actualValue = FileParameterUtils.resolveInputFileValue(fileCollectionFactory, filePropertyType, value);
                            visitor.accept(new PropertyFileCollection(task.toString(), propertyName, "input", actualValue));
                        }
                    }
                });
            }
        }
    
        private static class HasInputsVisitor implements PropertyVisitor {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top