Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for fileCollectionFactory (0.24 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/util/DefaultJavaForkOptionsTest.groovy

        private final resolver = TestFiles.pathToFileResolver(tmpDir.testDirectory)
        private final fileCollectionFactory = TestFiles.fileCollectionFactory(tmpDir.testDirectory)
        private DefaultJavaForkOptions options
    
        def setup() {
            options = new DefaultJavaForkOptions(resolver, fileCollectionFactory, new DefaultJavaDebugOptions())
        }
    
        def "provides correct default values"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskInputs.java

            this.task = task;
            this.taskMutator = taskMutator;
            this.propertyWalker = propertyWalker;
            this.fileCollectionFactory = fileCollectionFactory;
            String taskDisplayName = task.toString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFilePropertyFactory.java

        private final FileResolver fileResolver;
        private final FileCollectionFactory fileCollectionFactory;
    
        public DefaultFilePropertyFactory(PropertyHost host, FileResolver resolver, FileCollectionFactory fileCollectionFactory) {
            this.host = host;
            this.fileResolver = resolver;
            this.fileCollectionFactory = fileCollectionFactory;
        }
    
        @Override
        public DirectoryProperty newDirectoryProperty() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:53:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecActionFactory.java

                this.fileResolver = fileResolver;
                return this;
            }
    
            @Override
            public Builder withFileCollectionFactory(FileCollectionFactory fileCollectionFactory) {
                this.fileCollectionFactory = fileCollectionFactory;
                return this;
            }
    
            @Override
            public Builder withInstantiator(Instantiator instantiator) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 10 06:16:11 UTC 2023
    - 24K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/internal/PluginUseServices.java

                FileResolver fileResolver, FileCollectionFactory fileCollectionFactory,
                DependencyManagementServices dependencyManagementServices, DependencyMetaDataProvider dependencyMetaDataProvider
            ) {
                return new PluginDependencyResolutionServices(
                    makeDependencyResolutionServicesFactory(fileResolver, fileCollectionFactory, dependencyManagementServices, dependencyMetaDataProvider));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultTaskProperties.java

            private final String beanName;
            private final FileCollectionFactory fileCollectionFactory;
            private final List<Object> localState = new ArrayList<>();
    
            public GetLocalStateVisitor(String beanName, FileCollectionFactory fileCollectionFactory) {
                this.beanName = beanName;
                this.fileCollectionFactory = fileCollectionFactory;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

            private final TaskInternal task;
            private final FileCollectionFactory fileCollectionFactory;
            private final ImmutableSortedMap<String, FileSystemSnapshot> previousOutputs;
    
            public PreviousOutputFileCollection(TaskInternal task, TaskDependencyFactory taskDependencyFactory, FileCollectionFactory fileCollectionFactory, ImmutableSortedMap<String, FileSystemSnapshot> previousOutputs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultSourceDirectorySet.java

            super(taskDependencyFactory);
            this.name = name;
            this.displayName = displayName;
            this.fileCollectionFactory = fileCollectionFactory;
            this.directoryFileTreeFactory = directoryFileTreeFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Oct 29 02:23:21 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/file/TestFiles.java

            );
        }
    
        public static FileCollectionFactory fileCollectionFactory() {
            return new DefaultFileCollectionFactory(pathToFileResolver(), DefaultTaskDependencyFactory.withNoAssociatedProject(), directoryFileTreeFactory(), getPatternSetFactory(), PropertyHost.NO_OP, fileSystem());
        }
    
        public static FileCollectionFactory fileCollectionFactory(File baseDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultBaseRepositoryFactory.java

        private final FileStore<String> externalResourcesFileStore;
        private final MetaDataParser<MutableMavenModuleResolveMetadata> pomParser;
        private final FileCollectionFactory fileCollectionFactory;
        private final GradleModuleMetadataParser metadataParser;
        private final AuthenticationSchemeRegistry authenticationSchemeRegistry;
        private final IvyContextManager ivyContextManager;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top