Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getFileCollectionFactory (0.26 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultSharedLibraryBinarySpec.java

            return getSharedLibraryFile();
        }
    
        @Override
        public FileCollection getLinkFiles() {
            return getFileCollectionFactory().create(new SharedLibraryLinkOutputs());
        }
    
        @Override
        public FileCollection getRuntimeFiles() {
            return getFileCollectionFactory().create(new SharedLibraryRuntimeOutputs());
        }
    
        @Override
        protected ObjectFilesToBinary getCreateOrLink() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

        }
    
        @Inject
        protected FileCollectionFactory getFileCollectionFactory() {
            // Implementation provided by decoration
            throw new UnsupportedOperationException();
        }
    
        /**
         * All of the files that will be signed by this task.
         */
        @Internal
        public FileCollection getFilesToSign() {
            return getFileCollectionFactory().fixed("Task \'" + getPath() + "\' files to sign",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeLibraryBinarySpec.java

                if (sourceSet.hasBuildDependencies()) {
                    return true;
                }
            }
            return false;
        }
    
        public FileCollection getHeaderDirs() {
            return getFileCollectionFactory().create(new HeaderFileSet());
        }
    
        protected abstract class LibraryOutputs implements MinimalFileSet, Buildable {
            @Override
            public final Set<File> getFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultStaticLibraryBinarySpec.java

        @Override
        public void additionalLinkFiles(FileCollection files) {
            this.additionalLinkFiles.add(files);
        }
    
        @Override
        public FileCollection getLinkFiles() {
            return getFileCollectionFactory().create(new StaticLibraryLinkOutputs());
        }
    
        @Override
        public FileCollection getRuntimeFiles() {
            return FileCollectionFactory.empty("Runtime files for " + getDisplayName());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/software/publish/src/main/java/org/gradle/api/publish/tasks/GenerateModuleMetadata.java

            publications = Transient.of(objectFactory.listProperty(Publication.class));
    
            outputFile = objectFactory.fileProperty();
    
            variantFiles = getFileCollectionFactory().create(new VariantFiles(((ProjectInternal) getProject()).getTaskDependencyFactory()));
    
            suppressedValidationErrors = objectFactory.setProperty(String.class).convention(Collections.emptySet());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

        }
    
        @Override
        public void setResolver(NativeDependencyResolver resolver) {
            this.resolver = resolver;
        }
    
        protected FileCollectionFactory getFileCollectionFactory() {
            return fileCollectionFactory;
        }
    
        @Override
        public void setFileCollectionFactory(FileCollectionFactory fileCollectionFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/AbstractNativeCompileTask.java

        }
    
        @Inject
        protected BuildOperationLoggerFactory getOperationLoggerFactory() {
            throw new UnsupportedOperationException();
        }
    
        @Inject
        protected FileCollectionFactory getFileCollectionFactory() {
            throw new UnsupportedOperationException();
        }
    
        @TaskAction
        protected void compile(InputChanges inputs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

            missingDir2 = testDir.file("missing-dir2")
        }
    
        FileResolver getFileResolver() {
            return project.fileResolver
        }
    
        FileCollectionFactory getFileCollectionFactory() {
            return project.services.get(FileCollectionFactory)
        }
    
        def doesNothingToTaskWithNoTaskActionAnnotations() {
            given:
            def task = expectTaskCreated(DefaultTask)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
Back to top