Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 208 for fileCollectionFactory (0.33 sec)

  1. 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)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/SingleParentCopySpec.java

        private final ObjectFactory objectFactory;
    
        public SingleParentCopySpec(FileCollectionFactory fileCollectionFactory, ObjectFactory objectFactory, Instantiator instantiator, Factory<PatternSet> patternSetFactory, CopySpecResolver parentResolver) {
            super(fileCollectionFactory, objectFactory, instantiator, patternSetFactory);
            this.parentResolver = parentResolver;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 27 14:16:37 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltStaticLibraryBinary.java

        public DefaultPrebuiltStaticLibraryBinary(String name, PrebuiltLibrary library, BuildType buildType, NativePlatform targetPlatform, Flavor flavor, FileCollectionFactory fileCollectionFactory) {
            super(name, library, buildType, targetPlatform, flavor, fileCollectionFactory);
        }
    
        @Override
        public String getDisplayName() {
            return "prebuilt static library '" + getComponent().getName() + ":" + getName() + "'";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformInvocationFactory.java

        private final TransformExecutionListener transformExecutionListener;
        private final ImmutableTransformWorkspaceServices immutableWorkspaceServices;
        private final FileCollectionFactory fileCollectionFactory;
        private final ProjectStateRegistry projectStateRegistry;
        private final BuildOperationRunner buildOperationRunner;
        private final BuildOperationProgressEventEmitter progressEventEmitter;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationFactory.java

        private final DependencyLockingProvider dependencyLockingProvider;
        private final DomainObjectContext domainObjectContext;
        private final FileCollectionFactory fileCollectionFactory;
        private final BuildOperationRunner buildOperationRunner;
        private final NotationParser<Object, ConfigurablePublishArtifact> artifactNotationParser;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/scripts/BuildScriptCompilationAndInstrumentation.java

        private final ClasspathElementTransformFactoryForLegacy transformFactory;
        protected final FileCollectionFactory fileCollectionFactory;
    
        public BuildScriptCompilationAndInstrumentation(
            ImmutableWorkspaceProvider workspaceProvider,
            FileCollectionFactory fileCollectionFactory,
            InputFingerprinter inputFingerprinter,
            ClasspathElementTransformFactoryForLegacy transformFactory
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/notations/DependencyClassPathNotationConverter.java

            Instantiator instantiator,
            ClassPathRegistry classPathRegistry,
            FileCollectionFactory fileCollectionFactory,
            RuntimeShadedJarFactory runtimeShadedJarFactory
        ) {
            this.instantiator = instantiator;
            this.classPathRegistry = classPathRegistry;
            this.fileCollectionFactory = fileCollectionFactory;
            this.runtimeShadedJarFactory = runtimeShadedJarFactory;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:30:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ConnectionScopeServices.java

            ServiceRegistry clientServices = daemonClientFactory.createMessageDaemonServices(services, new DaemonParameters(new BuildLayoutConverter().defaultValues(), fileCollectionFactory));
            DaemonStopClient client = clientServices.get(DaemonStopClient.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/artifact/DefaultIvyArtifactSet.java

            FileCollectionFactory fileCollectionFactory,
            CollectionCallbackActionDecorator collectionCallbackActionDecorator
        ) {
            super(IvyArtifact.class, collectionCallbackActionDecorator);
            this.publicationName = publicationName;
            this.ivyArtifactParser = ivyArtifactParser;
            this.files = fileCollectionFactory.create(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top