Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getFileCollectionFactory (0.4 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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