Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 111 for fileCollectionFactory (0.35 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultVariant.java

                              AttributeContainerInternal parentAttributes,
                              NotationParser<Object, ConfigurablePublishArtifact> artifactNotationParser,
                              FileCollectionFactory fileCollectionFactory,
                              ImmutableAttributesFactory cache,
                              DomainObjectCollectionFactory domainObjectCollectionFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

                ImmutableWorkspaceProvider workspaceProvider,
                FileCollectionFactory fileCollectionFactory,
                InputFingerprinter inputFingerprinter,
                ClasspathElementTransformFactoryForLegacy transformFactoryForLegacy,
                ScriptCompilationHandler scriptCompilationHandler
            ) {
                super(workspaceProvider, fileCollectionFactory, inputFingerprinter, transformFactoryForLegacy);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/ExecFactory.java

        /**
         * Builder to configure an instance of the new factory.
         */
        interface Builder {
            Builder withFileResolver(FileResolver fileResolver);
    
            Builder withFileCollectionFactory(FileCollectionFactory fileCollectionFactory);
    
            Builder withInstantiator(Instantiator instantiator);
    
            Builder withObjectFactory(ObjectFactory objectFactory);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

                .build();
            this.loggingServices = loggingServices;
            this.fileCollectionFactory = basicServices.get(FileCollectionFactory.class);
            this.buildEnvironmentConfigurationConverter = new BuildEnvironmentConfigurationConverter(
                new BuildLayoutFactory(),
                fileCollectionFactory);
            this.jvmVersionDetector = basicServices.get(JvmVersionDetector.class);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FilteredFileCollection.java

                this.source = source;
                this.filter = filter;
            }
    
            @Override
            public FileCollectionInternal toFileCollection(FileCollectionFactory fileCollectionFactory) {
                return source.toFileCollection(fileCollectionFactory).filter(filter);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 08:16:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DefaultDependencyManagementServices.java

            DefaultServiceRegistry services = new DefaultServiceRegistry(parent);
            services.add(FileResolver.class, resolver);
            services.add(FileCollectionFactory.class, fileCollectionFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServices.java

        @Provides
        ExecFactory createExecFactory(ExecFactory parent, FileResolver fileResolver, FileCollectionFactory fileCollectionFactory, Instantiator instantiator, ObjectFactory objectFactory, JavaModuleDetector javaModuleDetector) {
            return parent.forContext()
                .withFileResolver(fileResolver)
                .withFileCollectionFactory(fileCollectionFactory)
                .withInstantiator(instantiator)
                .withObjectFactory(objectFactory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionExecutionTimeValue.java

     */
    public interface FileCollectionExecutionTimeValue {
    
        FileCollectionInternal toFileCollection(FileCollectionFactory fileCollectionFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 925 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

            BuildOperationRunner buildOperationRunner,
            ClassLoaderHierarchyHasher classLoaderHierarchyHasher,
            IsolatableFactory isolatableFactory,
            FileCollectionFactory fileCollectionFactory,
            FileLookup fileLookup,
            PropertyWalker parameterPropertyWalker,
            InstantiationScheme actionInstantiationScheme,
            DomainObjectContext owner,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/DependencyNotationParser.java

                                                      ClassPathRegistry classPathRegistry,
                                                      FileCollectionFactory fileCollectionFactory,
                                                      RuntimeShadedJarFactory runtimeShadedJarFactory,
                                                      Interner<String> stringInterner) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top