Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getUserJobExecutor (0.17 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginBackgroundJobExecutors.java

         * The job is also allowed to freely start external processes.
         *
         * @return an instance of Executor
         */
        Executor getUserJobExecutor();
    
        /**
         * Returns {@code true} if the current thread is running the background job submitted to one of executors owned by this class.
         */
        boolean isInBackground();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginBackgroundJobExecutors.java

            this.unsafeConfigurationService = unsafeConfigurationService;
        }
    
        @Override
        public Executor getUserJobExecutor() {
            return this::executeUserJob;
        }
    
        private void executeUserJob(Runnable job) {
            executorService.execute(() -> unsafeConfigurationService.withConfigurationInputTrackingDisabled(() -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 16:27:53 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top