Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,667 for plan (0.06 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/build/BuildWorkPreparer.java

    import org.gradle.api.internal.GradleInternal;
    import org.gradle.execution.plan.ExecutionPlan;
    import org.gradle.execution.plan.FinalizedExecutionPlan;
    
    import java.util.function.Consumer;
    
    public interface BuildWorkPreparer {
        /**
         * Creates a new, empty plan.
         */
        ExecutionPlan newExecutionPlan();
    
        /**
         * Populates the given execution plan using the given action.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildWorkGraphController.java

    import org.gradle.composite.internal.TaskIdentifier;
    import org.gradle.execution.EntryTaskSelector;
    import org.gradle.execution.plan.BuildWorkPlan;
    import org.gradle.execution.plan.LocalTaskNode;
    import org.gradle.execution.plan.QueryableExecutionPlan;
    import org.gradle.execution.plan.TaskNode;
    import org.gradle.execution.plan.TaskNodeFactory;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.work.WorkerLeaseService;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionPlan.java

        /**
         * Adds an entry task to the execution plan. If called multiple times then execution plan follows the method invocation order.
         *
         */
        void addEntryTask(Task task);
    
        /**
         * Adds entry tasks to the execution plan. No ordering can be assumed between the elements of the target collection. If called multiple times then execution plan follows the method invocation order.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. 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)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/SequentialExchangeFinder.kt

        while (true) {
          if (routePlanner.isCanceled()) throw IOException("Canceled")
    
          try {
            val plan = routePlanner.plan()
    
            if (!plan.isReady) {
              val tcpConnectResult = plan.connectTcp()
              val connectResult =
                when {
                  tcpConnectResult.isSuccess -> plan.connectTlsEtc()
                  else -> tcpConnectResult
                }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/BuildOperationFiringBuildWorkerExecutor.java

            return buildOperationRunner.call(new ExecuteTasks(gradle, plan));
        }
    
        private class ExecuteTasks implements CallableBuildOperation<ExecutionResult<Void>> {
            private final GradleInternal gradle;
            private final FinalizedExecutionPlan plan;
    
            public ExecuteTasks(GradleInternal gradle, FinalizedExecutionPlan plan) {
                this.gradle = gradle;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

    import org.gradle.execution.plan.BuildWorkPlan
    import org.gradle.execution.plan.DefaultExecutionPlan
    import org.gradle.execution.plan.DefaultPlanExecutor
    import org.gradle.execution.plan.ExecutionNodeAccessHierarchies
    import org.gradle.execution.plan.ExecutionPlan
    import org.gradle.execution.plan.FinalizedExecutionPlan
    import org.gradle.execution.plan.Node
    import org.gradle.execution.plan.NodeValidator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

    import org.gradle.execution.TaskSelection;
    import org.gradle.execution.plan.BuildWorkPlan;
    import org.gradle.execution.plan.ExecutionPlan;
    import org.gradle.execution.plan.FinalizedExecutionPlan;
    import org.gradle.execution.plan.LocalTaskNode;
    import org.gradle.execution.plan.QueryableExecutionPlan;
    import org.gradle.execution.plan.ScheduledWork;
    import org.gradle.initialization.exception.ExceptionAnalyser;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/FakeRoutePlanner.kt

        if (nextPlanIndex >= plans.size && autoGeneratePlans) addPlan()
    
        require(nextPlanIndex < plans.size) {
          "not enough plans! call addPlan() or set autoGeneratePlans=true in the test to set this up"
        }
        val result = plans[nextPlanIndex++]
        events += "take plan ${result.id}"
    
        if (result.yieldBeforePlanReturns) {
          taskFaker.yield()
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/lifecycle/MavenExecutionPlanTest.java

            // There is only a single threadsafe plugin here...
            assertEquals(plan.size() - 1, unSafePlugins.size());
        }
    
        @Test
        void testFindLastWhenFirst() throws Exception {
            MavenExecutionPlan plan = LifecycleExecutionPlanCalculatorStub.getProjectAExecutionPlan();
    
            ExecutionPlanItem beerPhase = plan.findLastInPhase(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top