Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 2,328 for executors (0.18 sec)

  1. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelIntegrationTest.groovy

            def handler = blockingHttpServer.expectConcurrentAndBlock(maxWorkers, calls)
    
            when:
            args("--max-workers=${maxWorkers}")
            executer.withTasks("parallelWorkTask")
            def gradle = executer.start()
    
            then:
            handler.waitForAllPendingCalls()
    
            when:
            handler.release(1)
    
            then:
            handler.waitForAllPendingCalls()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiDistributionResolver.groovy

    import org.gradle.api.internal.project.ProjectInternal
    import org.gradle.integtests.fixtures.RepoScriptBlockUtil
    import org.gradle.integtests.fixtures.executer.CommitDistribution
    import org.gradle.integtests.fixtures.executer.IntegrationTestBuildContext
    import org.gradle.internal.exceptions.DefaultMultiCauseException
    import org.gradle.testfixtures.ProjectBuilder
    import org.gradle.testfixtures.internal.ProjectBuilderImpl
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ContinuousBuildToolingApiSpecification.groovy

    import groovy.transform.stc.ClosureParams
    import groovy.transform.stc.SimpleType
    import org.gradle.integtests.fixtures.executer.ExecutionFailure
    import org.gradle.integtests.fixtures.executer.ExecutionResult
    import org.gradle.integtests.fixtures.executer.OutputScrapingExecutionResult
    import org.gradle.integtests.fixtures.executer.UnexpectedBuildFailure
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.test.fixtures.ConcurrentTestUtil
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/Futures.java

        executor.execute(task);
        return task;
      }
    
      /**
       * Executes {@code runnable} on the specified {@code executor}, returning a {@code Future} that
       * will complete after execution.
       *
       * @throws RejectedExecutionException if the task cannot be scheduled for execution
       * @since 28.2
       */
      public static ListenableFuture<@Nullable Void> submit(Runnable runnable, Executor executor) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/parallel_execute_to_islands.cc

        tf_device::ParallelExecuteOp parallel_execute_op, OpBuilder* builder,
        llvm::SmallVectorImpl<tf_executor::IslandOp>& executes,
        bool legacy_graph_export, int parallel_group_idx) {
      const int num_regions = parallel_execute_op.getOperation()->getNumRegions();
      executes.reserve(num_regions);
    
      for (int i : llvm::seq<int>(0, num_regions)) {
        Block& execute_block = parallel_execute_op.GetRegionBlockWithIndex(i);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/background-tasks.md

    # Tâches d'arrière-plan
    
    Vous pouvez définir des tâches d'arrière-plan qui seront exécutées après avoir retourné une réponse.
    
    Ceci est utile pour les opérations qui doivent avoir lieu après une requête, mais où le client n'a pas réellement besoin d'attendre que l'opération soit terminée pour recevoir une réponse.
    
    Cela comprend, par exemple :
    
    * Les notifications par email envoyées après l'exécution d'une action :
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildActionExecuter.java

             */
            <T> Builder buildFinished(BuildAction<T> buildAction, IntermediateResultHandler<? super T> handler) throws IllegalArgumentException;
    
            /**
             * Builds the executer from the added actions.
             *
             * @return The executer.
             */
            BuildActionExecuter<Void> build();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:31:25 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestTaskIntegrationTest.groovy

            when:
            run("build")
    
            then:
            result.assertTaskSkipped(":test")
        }
    
        @Requires(UnitTestPreconditions.Jdk9OrLater)
        def "compiles and executes a Java 9 test suite"() {
            given:
            buildFile << java9Build()
    
            file('src/test/java/MyTest.java') << standaloneTestClass
    
            when:
            succeeds 'test'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheConfigurationsContinuousIntegrationTest.groovy

        def setup() {
            requireOwnGradleUserHomeDir()
        }
    
        @Override
        TestFile getGradleUserHomeDir() {
            return executer.gradleUserHomeDir
        }
    
        def "can configure caches via init script and execute multiple builds in a session"() {
            def initDir = new File(executer.gradleUserHomeDir, "init.d")
            initDir.mkdirs()
            new File(initDir, "cache-settings.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Futures.java

        executor.execute(task);
        return task;
      }
    
      /**
       * Executes {@code runnable} on the specified {@code executor}, returning a {@code Future} that
       * will complete after execution.
       *
       * @throws RejectedExecutionException if the task cannot be scheduled for execution
       * @since 28.2
       */
      public static ListenableFuture<@Nullable Void> submit(Runnable runnable, Executor executor) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
Back to top