Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 208 for fileCollectionFactory (0.33 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/ProjectExecutionServices.java

            BuildOperationRunner buildOperationRunner,
            ClassLoaderHierarchyHasher classLoaderHierarchyHasher,
            ExecutionHistoryStore executionHistoryStore,
            FileCollectionFactory fileCollectionFactory,
            TaskDependencyFactory taskDependencyFactory,
            FileOperations fileOperations,
            ListenerManager listenerManager,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationPublicationsTest.groovy

        def fileCollectionFactory = TestFiles.fileCollectionFactory()
        def attributesFactory = AttributeTestUtil.attributesFactory()
        def displayName = Describables.of("<config>")
        def publications = new DefaultConfigurationPublications(displayName, artifacts, {
            allArtifacts
        }, parentAttributes, TestUtil.instantiatorFactory().decorateLenient(), artifactNotationParser, capabilityNotationParser, fileCollectionFactory, attributesFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

    import org.gradle.internal.serialize.graph.writeCollection
    import java.io.File
    import kotlin.jvm.optionals.getOrNull
    
    
    class FileCollectionCodec(
        private val fileCollectionFactory: FileCollectionFactory,
        private val artifactSetConverter: ArtifactSetToFileCollectionFactory
    ) : Codec<FileCollectionInternal> {
    
        override suspend fun WriteContext.encode(value: FileCollectionInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/LocalTaskNode.java

            ServiceRegistry serviceRegistry = taskProject.getServices();
            final FileCollectionFactory fileCollectionFactory = serviceRegistry.get(FileCollectionFactory.class);
            PropertyWalker propertyWalker = serviceRegistry.get(PropertyWalker.class);
            try {
                taskProperties = DefaultTaskProperties.resolve(propertyWalker, fileCollectionFactory, task);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

        }
    
        @Provides
        protected FileCollectionFactory decorateFileCollectionFactory(FileCollectionFactory fileCollectionFactory, FileResolver fileResolver) {
            return fileCollectionFactory.withResolver(fileResolver);
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/EmptyFileCollectionExecutionTimeValueTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.internal.file
    
    import spock.lang.Specification
    
    import static org.gradle.api.internal.file.TestFiles.fileCollectionFactory
    
    class EmptyFileCollectionExecutionTimeValueTest extends Specification {
    
        def "EmptyFileCollection supports execution time value"() {
            given:
            def collection = new EmptyFileCollection("foo")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaForkOptions.java

        private List<CommandLineArgumentProvider> jvmArgumentProviders;
    
        @Inject
        public DefaultJavaForkOptions(PathToFileResolver resolver, FileCollectionFactory fileCollectionFactory, JavaDebugOptions debugOptions) {
            super(resolver);
            options = new JvmOptions(fileCollectionFactory, debugOptions);
        }
    
        @Override
        public List<String> getAllJvmArgs() {
            if (hasJvmArgumentProviders(this)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/main/java/org/gradle/jvm/tasks/Jar.java

            }
            manifestInternal.setContentCharset(manifestContentCharset);
            return manifestInternal;
        }
    
        private FileCollectionFactory fileCollectionFactory() {
            return getServices().get(FileCollectionFactory.class);
        }
    
        private OutputChangeListener outputChangeListener() {
            return getServices().get(OutputChangeListener.class);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

                import ${PropertyWalker.name}
                import ${FileCollectionFactory.name}
    
                class CustomTask extends DefaultTask {
                    @Optional @$annotation.simpleName input
                    @TaskAction void doSomething() {
                        def fileCollectionFactory = services.get(FileCollectionFactory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/Ear.java

                    );
                }
    
                return null;
            }));
    
            appDir = getObjectFactory().directoryProperty();
        }
    
        private FileCollectionFactory fileCollectionFactory() {
            return getServices().get(FileCollectionFactory.class);
        }
    
        private OutputChangeListener outputChangeListener() {
            return getServices().get(OutputChangeListener.class);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top