Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 129 for fileCollectionFactory (0.25 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/FileCopier.java

    import java.io.File;
    
    public class FileCopier {
        private final Deleter deleter;
        private final DirectoryFileTreeFactory directoryFileTreeFactory;
        private final FileCollectionFactory fileCollectionFactory;
        private final FileResolver fileResolver;
        private final Factory<PatternSet> patternSetFactory;
        private final ObjectFactory objectFactory;
        private final FileSystem fileSystem;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/cleanup/DefaultBuildOutputCleanupRegistry.java

        private final Object lock = new Object();
    
        private final FileCollectionFactory fileCollectionFactory;
        private final Set<FileCollection> outputs = new HashSet<>();
        private Set<String> resolvedPaths;
    
        public DefaultBuildOutputCleanupRegistry(FileCollectionFactory fileCollectionFactory) {
            this.fileCollectionFactory = fileCollectionFactory;
        }
    
        @Override
        public void registerOutputs(Object files) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/CompileTaskConfig.java

                    return CollectionUtils.collect(libs, NativeDependencySet::getIncludeRoots);
                }
            });
            FileCollectionFactory fileCollectionFactory = ((ProjectInternal) task.getProject()).getServices().get(FileCollectionFactory.class);
            task.getSystemIncludes().from(fileCollectionFactory.create(new MinimalFileSet() {
                @Override
                public Set<File> getFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top