Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 208 for fileCollectionFactory (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementServices.java

         */
        void addDslServices(ServiceRegistration registration, DomainObjectContext domainObjectContext);
    
        DependencyResolutionServices create(FileResolver resolver, FileCollectionFactory fileCollectionFactory, DependencyMetaDataProvider dependencyMetaDataProvider,
                                            ProjectFinder projectFinder, DomainObjectContext domainObjectContext);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 22 23:43:14 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/process/internal/CurrentProcessTest.groovy

        def "default JVM is the current process JVM"() {
            def currentProcess = new CurrentProcess(Mock(FileCollectionFactory))
            expect:
            currentProcess.jvm == Jvm.current()
        }
    
        def "agent arguments are ignored"() {
            def options = inferJvmOptions(Mock(FileCollectionFactory), ['-Xmx1g', '-javaagent:foo.jar', '-javaagent:' + AgentUtils.AGENT_MODULE_NAME + '.jar'])
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/artifact/DefaultMavenArtifactSet.java

            FileCollectionFactory fileCollectionFactory,
            CollectionCallbackActionDecorator collectionCallbackActionDecorator
        ) {
            super(MavenArtifact.class, collectionCallbackActionDecorator);
            this.publicationName = publicationName;
            this.mavenArtifactParser = mavenArtifactParser;
            this.files = fileCollectionFactory.create(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/FileParameterUtils.java

         */
        public static FileCollectionInternal resolveInputFileValue(FileCollectionFactory fileCollectionFactory, InputFilePropertyType inputFilePropertyType, Object path) {
            FileCollectionInternal fileCollection = fileCollectionFactory.resolvingLeniently(path);
            return inputFilePropertyType == InputFilePropertyType.DIRECTORY
                ? fileCollection.getAsFileTree()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeScopeServices.java

            PropertyFactory propertyFactory, FilePropertyFactory filePropertyFactory, TaskDependencyFactory taskDependencyFactory, FileCollectionFactory fileCollectionFactory,
            DomainObjectCollectionFactory domainObjectCollectionFactory, NamedObjectInstantiator instantiator
        ) {
            return new DefaultObjectFactory(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/JavaExecHandleBuilder.java

            JavaForkOptions javaOptions
        ) {
            super(fileResolver, executor, buildCancellationToken);
            this.fileCollectionFactory = fileCollectionFactory;
            this.temporaryFileProvider = temporaryFileProvider;
            this.javaModuleDetector = javaModuleDetector;
            this.classpath = fileCollectionFactory.configurableFiles("classpath");
            this.mainModule = objectFactory.property(String.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 27 09:47:37 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/EmptyFileCollection.java

                this.displayName = displayName;
            }
    
            @Override
            public FileCollectionInternal toFileCollection(FileCollectionFactory fileCollectionFactory) {
                return FileCollectionFactory.empty(displayName);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/FilteredFileCollectionExecutionTimeValueTest.groovy

    import org.gradle.api.specs.Spec
    import spock.lang.Specification
    
    import static org.gradle.api.internal.file.TestFiles.fileCollectionFactory
    
    class FilteredFileCollectionExecutionTimeValueTest extends Specification {
    
        def "FilteredFileCollection supports execution time value"() {
            given:
            def source = fileCollectionFactory().fixed(
                new File("foo.txt"),
                new File("bar.txt"),
                new File("baz.txt"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 08:16:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementProjectScopeServices.java

        @Provides
        DependencyFactoryInternal createDependencyFactory(
            Instantiator instantiator,
            DefaultProjectDependencyFactory factory,
            ClassPathRegistry classPathRegistry,
            FileCollectionFactory fileCollectionFactory,
            RuntimeShadedJarFactory runtimeShadedJarFactory,
            ImmutableAttributesFactory attributesFactory,
            SimpleMapInterner stringInterner,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultDependencyScopeConfiguration.java

            ComponentIdentifierFactory componentIdentifierFactory,
            DependencyLockingProvider dependencyLockingProvider,
            Factory<ResolutionStrategyInternal> resolutionStrategyFactory,
            FileCollectionFactory fileCollectionFactory,
            BuildOperationRunner buildOperationRunner,
            Instantiator instantiator,
            NotationParser<Object, ConfigurablePublishArtifact> artifactNotationParser,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top