Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for withFileCollectionFactory (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/ExecFactory.java

        Builder forContext();
    
        /**
         * Builder to configure an instance of the new factory.
         */
        interface Builder {
            Builder withFileResolver(FileResolver fileResolver);
    
            Builder withFileCollectionFactory(FileCollectionFactory fileCollectionFactory);
    
            Builder withInstantiator(Instantiator instantiator);
    
            Builder withObjectFactory(ObjectFactory objectFactory);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/service/scopes/CoreBuildSessionServices.java

            return execFactory.forContext()
                .withFileResolver(fileResolver)
                .withFileCollectionFactory(fileCollectionFactory)
                .withInstantiator(instantiator)
                .withBuildCancellationToken(buildCancellationToken)
                .withObjectFactory(objectFactory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/DefaultScript.java

                    processOperations = services.get(ExecFactory.class).forContext()
                        .withFileResolver(resolver)
                        .withFileCollectionFactory(fileCollectionFactoryWithBase)
                        .withInstantiator(instantiator)
                        .withObjectFactory(new InstantiatorBackedObjectFactory(instantiator))
                        .build();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top