Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for createExecutorFactory (0.2 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/ConnectorServices.java

                        return new DefaultGradleConnector(connectionFactory, distributionFactory);
                    }
                };
            }
    
            @Provides
            protected ExecutorFactory createExecutorFactory() {
                return new DefaultExecutorFactory();
            }
    
            @Provides
            protected ExecutorServiceFactory createExecutorServiceFactory() {
                return new DefaultExecutorServiceFactory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BasicGlobalScopeServices.java

                        return inetAddressFactory.getCommunicationAddresses();
                    }
                });
        }
    
        @Provides
        ExecutorFactory createExecutorFactory() {
            return new DefaultExecutorFactory();
        }
    
        @Provides
        DocumentationRegistry createDocumentationRegistry() {
            return new DocumentationRegistry();
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/UnicastMessagingIntegrationTest.groovy

                connection?.stop()
                services.close()
            }
        }
    
        class TestMessagingServices extends MessagingServices {
            @Provides
            protected ExecutorFactory createExecutorFactory() {
                return executorFactory
            }
        }
    }
    
    interface RemoteService1 {
        def doStuff(String value)
    }
    
    interface RemoteService2 {
        def doStuff(String value)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

                return new CompositeIdGenerator(workerProcessContext.getWorkerId(), new LongIdGenerator());
            }
    
            @Provides
            protected ExecutorFactory createExecutorFactory() {
                return new DefaultExecutorFactory();
            }
    
            @Provides
            protected ActorFactory createActorFactory(ExecutorFactory executorFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/BuildCacheClientModule.java

            );
        }
    
        @Provides
        FileAccessTimeJournal createFileAccessTimeJournal() {
            return new ModificationTimeFileAccessTimeJournal();
        }
    
        @Provides
        ExecutorFactory createExecutorFactory() {
            return new DefaultExecutorFactory();
        }
    
        @Provides
        FileLockContentionHandler createFileLockContentionHandler(ExecutorFactory executorFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top