Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultExecutorServiceFactory (0.39 sec)

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

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.consumer;
    
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    
    public class DefaultExecutorServiceFactory implements ExecutorServiceFactory {
        @Override
        public ExecutorService create() {
            return Executors.newSingleThreadExecutor();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 940 bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/ConnectorServices.java

                return new DefaultExecutorFactory();
            }
    
            @Provides
            protected ExecutorServiceFactory createExecutorServiceFactory() {
                return new DefaultExecutorServiceFactory();
            }
    
            @Provides
            protected Clock createTimeProvider() {
                return Time.clock();
            }
    
            @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.tooling.internal.consumer.DefaultExecutorServiceFactory> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (DefaultExecutorServiceFactory.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top