Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 208 for fileCollectionFactory (0.35 sec)

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

    public interface FileCollectionFactory {
        /**
         * Creates a copy of this factory that uses the given resolver to convert various types to File instances.
         */
        FileCollectionFactory withResolver(PathToFileResolver fileResolver);
    
        FileCollectionFactory forChildScope(FileCollectionObservationListener listener);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. 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)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/resolve/SourceSetNativeDependencyResolver.java

        private final NativeDependencyResolver delegate;
        private final FileCollectionFactory fileCollectionFactory;
    
        public SourceSetNativeDependencyResolver(NativeDependencyResolver delegate, FileCollectionFactory fileCollectionFactory) {
            this.delegate = delegate;
            this.fileCollectionFactory = fileCollectionFactory;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. 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)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/AbstractPrebuiltLibraryBinary.java

        private final NativePlatform targetPlatform;
        private final Flavor flavor;
        protected final FileCollectionFactory fileCollectionFactory;
    
        public AbstractPrebuiltLibraryBinary(String name, PrebuiltLibrary library, BuildType buildType, NativePlatform targetPlatform, Flavor flavor, FileCollectionFactory fileCollectionFactory) {
            this.name = name;
            this.library = library;
            this.buildType = buildType;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaExecSpec.java

        private final FileCollectionFactory fileCollectionFactory;
        private ConfigurableFileCollection classpath;
    
        @Inject
        public DefaultJavaExecSpec(
            ObjectFactory objectFactory,
            PathToFileResolver resolver,
            FileCollectionFactory fileCollectionFactory
        ) {
            super(resolver, fileCollectionFactory, objectFactory.newInstance(DefaultJavaDebugOptions.class));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 27 09:47:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/PrebuiltLibraryInitializer.java

            createNativeBinary(DefaultPrebuiltStaticLibraryBinary.class, "static", library, platform, buildType, flavor, fileCollectionFactory);
        }
    
        public <T extends NativeLibraryBinary> void createNativeBinary(Class<T> type, String typeName, PrebuiltLibrary library, NativePlatform platform, BuildType buildType, Flavor flavor, FileCollectionFactory fileCollectionFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top