Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,099 for plans (0.24 sec)

  1. 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)
  2. okhttp/src/main/kotlin/okhttp3/internal/connection/RoutePlanner.kt

     */
    interface RoutePlanner {
      val address: Address
    
      /** Follow-ups for failed plans and plans that lost a race. */
      val deferredPlans: ArrayDeque<Plan>
    
      fun isCanceled(): Boolean
    
      /** Returns a plan to attempt. */
      @Throws(IOException::class)
      fun plan(): Plan
    
      /**
       * Returns true if there's more route plans to try.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/FastFallbackExchangeFinder.kt

        if (plan is FailedPlan) return plan.result
    
        // Connect TCP asynchronously.
        tcpConnectsInFlight += plan
        val taskName = "$okHttpName connect ${routePlanner.address.url.redact()}"
        taskRunner.newQueue().schedule(
          object : Task(taskName) {
            override fun runOnce(): Long {
              val connectResult =
                try {
                  plan.connectTcp()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemSupport.java

         *
         * Available for compatibility with previously published modules.  Should <strong>NOT</strong> be used for new publishing.
         * No plans for permanent removal.
         */
        @Deprecated
        public static final String DEPRECATED_JAVA_API_JARS = "java-api-jars";
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/DefaultPlannedTask.java

                throw new IllegalStateException("Task-only dependencies are available only for task plans." +
                    " '" + taskIdentity + "' from the requested execution plan has dependencies with higher detail level: " + nonTaskDependencies);
            }
    
            @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 22 14:29:39 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. pkg/test/framework/features/README.md

    ```go
      func TestExample(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GenerationPlanBuilder.java

    import java.io.File;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.LinkedHashMap;
    import java.util.List;
    
    /**
     * Builder for the properly order list of {@link GenerationPlan generation plans}.
     *
     * <p>IMPL NOTE : Uses recursive calls to achieve ordering.</p>
     */
    public class GenerationPlanBuilder {
        private static final Logger LOGGER = LoggerFactory.getLogger(GenerationPlanBuilder.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/staticinit/sched.go

    	}
    
    	if base.Flag.Percent != 0 {
    		ir.Dump("not static", r)
    	}
    	return false
    }
    
    func (s *Schedule) initplan(n ir.Node) {
    	if s.Plans[n] != nil {
    		return
    	}
    	p := new(Plan)
    	s.Plans[n] = p
    	switch n.Op() {
    	default:
    		base.Fatalf("initplan")
    
    	case ir.OARRAYLIT, ir.OSLICELIT:
    		n := n.(*ir.CompLitExpr)
    		var k int64
    		for _, a := range n.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

            final WorkSource.Selection<Object> selection;
            final WorkSource<Object> plan;
            final Action<Object> executor;
    
            public WorkItem(WorkSource.Selection<Object> selection, WorkSource<Object> plan, Action<Object> executor) {
                this.selection = selection;
                this.plan = plan;
                this.executor = executor;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/build/BuildLifecycleController.java

         */
        void prepareToScheduleTasks();
    
        /**
         * Creates a new work plan for this build. This method can be called multiple times to create multiple plans.
         */
        BuildWorkPlan newWorkGraph();
    
        /**
         * Populates the given work plan with tasks and work from this build.
         */
        void populateWorkGraph(BuildWorkPlan plan, Consumer<? super WorkGraphBuilder> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top