Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 280 for executors (0.25 sec)

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

        private final InternalCancellableConnection executor;
        private final CancellationExceptionTransformer exceptionTransformer;
        private final VersionDetails versionDetails;
    
        CancellableActionRunner(InternalCancellableConnection executor, CancellationExceptionTransformer exceptionTransformer, VersionDetails versionDetails) {
            this.executor = executor;
            this.exceptionTransformer = exceptionTransformer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/DirectExecutorService.java

            }
          }
        }
      }
    
      /**
       * Checks if the executor has been shut down and increments the running task count.
       *
       * @throws RejectedExecutionException if the executor has been previously shutdown
       */
      private void startTask() {
        synchronized (lock) {
          if (shutdown) {
            throw new RejectedExecutionException("Executor already shutdown");
          }
          runningTasks++;
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/RunBuildAction.java

        public RunBuildAction(
            BuildActionExecutor<BuildActionParameters, ClientBuildRequestContext> executor, StartParameterInternal startParameter, GradleLauncherMetaData clientMetaData, long startTime,
            BuildActionParameters buildActionParameters, ServiceRegistry sharedServices, Stoppable stoppable) {
            this.executor = executor;
            this.startParameter = startParameter;
            this.clientMetaData = clientMetaData;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/async/DefaultAsyncConsumerActionExecutor.java

        private final ConsumerActionExecutor actionExecutor;
        private final ManagedExecutor executor;
        private final ServiceLifecycle lifecycle;
    
        public DefaultAsyncConsumerActionExecutor(ConsumerActionExecutor actionExecutor, ExecutorFactory executorFactory) {
            this.actionExecutor = actionExecutor;
            executor = executorFactory.create("Connection worker");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:55 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.cc

        "Counts how often a successful export from TF Dialect to Executor Dialect "
        "is",
        "status");
    
    constexpr char kExportSuccess[] = "success";
    constexpr char kExportFailed[] = "failed";
    
    namespace {
    
    void AddTfDialectToExecutorPasses(OpPassManager &pm) {
      pm.addPass(mlir::TF::CreateTFRegionControlFlowToFunctional());
    
      // First, we need to convert from functional, to executor dialect.
      pm.addNestedPass<FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/DirectExecutorService.java

            }
          }
        }
      }
    
      /**
       * Checks if the executor has been shut down and increments the running task count.
       *
       * @throws RejectedExecutionException if the executor has been previously shutdown
       */
      private void startTask() {
        synchronized (lock) {
          if (shutdown) {
            throw new RejectedExecutionException("Executor already shutdown");
          }
          runningTasks++;
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ExecutorPolicy.java

    import java.lang.reflect.UndeclaredThrowableException;
    import java.util.concurrent.Callable;
    import java.util.concurrent.atomic.AtomicReference;
    
    /**
     * Controls the behavior of an executor when a task is executed and an executor is stopped.
     */
    public interface ExecutorPolicy {
        /**
         * Special behavior when a task is executed.
         *
         * The Runnable's run() needs to be called from this method.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

        } // -- void setConfiguration( Object )
    
        /**
         * Set the goals to execute within the phase.
         *
         * @param executions a executions object.
         */
        public void setExecutions(java.util.List<Execution> executions) {
            this.executions = executions;
        } // -- void setExecutions( java.util.List )
    
        /**
         * Set the ID of this phase, e.g.,
         * <code>generate-sources</code>.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/AbstractJUnitTestClassProcessor.java

        private static final Logger LOGGER = LoggerFactory.getLogger(AbstractJUnitTestClassProcessor.class);
    
        private final ActorFactory actorFactory;
        private Actor resultProcessorActor;
        private Action<String> executor;
    
        public AbstractJUnitTestClassProcessor(ActorFactory actorFactory) {
            this.actorFactory = actorFactory;
        }
    
        @Override
        public void startProcessing(TestResultProcessor resultProcessor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonOutputConsumer.java

        private String processOutput;
        private InputStream processStdOutput;
    
        @Override
        public void connectStreams(Process process, String processName, Executor executor) {
            processStdOutput = process.getInputStream();
        }
    
        @Override
        @SuppressWarnings("DefaultCharset")
        public void start() {
            if (processStdOutput == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top