Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for withObjectFactory (0.49 sec)

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

            Builder withFileCollectionFactory(FileCollectionFactory fileCollectionFactory);
    
            Builder withInstantiator(Instantiator instantiator);
    
            Builder withObjectFactory(ObjectFactory objectFactory);
    
            Builder withJavaModuleDetector(JavaModuleDetector javaModuleDetector);
    
            Builder withBuildCancellationToken(BuildCancellationToken buildCancellationToken);
    
    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/test/groovy/org/gradle/process/internal/DefaultExecActionFactoryTest.groovy

                .forContext()
                .withInstantiator(instantiator.decorateLenient())
                .withObjectFactory(TestUtil.objectFactory())
                .build()
    
        def javaexec() {
            File testFile = tmpDir.file("someFile")
            List files = ClasspathUtil.getClasspath(getClass().classLoader).asFiles
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 15 17:11:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecActionFactory.java

                .withFileResolver(fileResolver)
                .withFileCollectionFactory(fileCollectionFactory)
                .withBuildCancellationToken(buildCancellationToken)
                .withObjectFactory(objectFactory)
                .withJavaModuleDetector(javaModuleDetector);
        }
    
        public ExecAction newDecoratedExecAction() {
            throw new UnsupportedOperationException();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 10 06:16:11 UTC 2023
    - 24K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/service/scopes/CoreBuildSessionServices.java

                .withFileCollectionFactory(fileCollectionFactory)
                .withInstantiator(instantiator)
                .withBuildCancellationToken(buildCancellationToken)
                .withObjectFactory(objectFactory)
                .withJavaModuleDetector(javaModuleDetector)
                .build();
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/groovy/scripts/DefaultScript.java

                        .withFileResolver(resolver)
                        .withFileCollectionFactory(fileCollectionFactoryWithBase)
                        .withInstantiator(instantiator)
                        .withObjectFactory(new InstantiatorBackedObjectFactory(instantiator))
                        .build();
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonServer.java

                    .withFileResolver(fileResolver)
                    .withFileCollectionFactory(fileCollectionFactory)
                    .withInstantiator(instantiator)
                    .withObjectFactory(objectFactory)
                    .build();
            }
    
            @Provides
            protected DefaultResourceHandler.Factory createResourceHandlerFactory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectScopeServices.java

                .withFileResolver(fileResolver)
                .withFileCollectionFactory(fileCollectionFactory)
                .withInstantiator(instantiatorFactory.decorateLenient())
                .withObjectFactory(objectFactory)
                .withJavaModuleDetector(javaModuleDetector)
                .withExternalProcessStartedListener(listenerManager.getBroadcaster(ExternalProcessStartedListener.class))
                .build();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/file/TestFiles.java

                .withFileResolver(resolver(baseDir))
                .withFileCollectionFactory(fileCollectionFactory(baseDir))
                .withInstantiator(TestUtil.instantiatorFactory().inject())
                .withObjectFactory(objectFactory())
                .build();
        }
    
        public static ExecActionFactory execActionFactory() {
            return execFactory();
        }
    
        public static ExecHandleFactory execHandleFactory() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServices.java

            return parent.forContext()
                .withFileResolver(fileResolver)
                .withFileCollectionFactory(fileCollectionFactory)
                .withInstantiator(instantiator)
                .withObjectFactory(objectFactory)
                .withJavaModuleDetector(javaModuleDetector)
                .build();
        }
    
        @Provides
        WorkerProcessFactory createWorkerProcessFactory(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

            return parent.forContext()
                .withFileResolver(fileResolver)
                .withFileCollectionFactory(fileCollectionFactory)
                .withInstantiator(instantiator)
                .withObjectFactory(objectFactory)
                .withJavaModuleDetector(javaModuleDetector)
                .withExternalProcessStartedListener(listenerManager.getBroadcaster(ExternalProcessStartedListener.class))
                .build();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
Back to top