Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 537 for plan (0.19 sec)

  1. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestExecutionBuildConfigurationAction.java

            configureTestTasksForTestDescriptors(context);
            configureTestTasksForInternalJvmTestRequest(plan);
            configureTestTasksInBuild(context);
        }
    
        private static void addEntryTasksTo(ExecutionPlan plan, Set<Task> allTasksToRun) {
            for (Task task : allTasksToRun) {
                plan.addEntryTask(task);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

      private var routeSelector: RouteSelector? = null
      private var nextRouteToTry: Route? = null
    
      override val deferredPlans = ArrayDeque<Plan>()
    
      override fun isCanceled(): Boolean = connectionUser.isCanceled()
    
      @Throws(IOException::class)
      override fun plan(): Plan {
        val reuseCallConnection = planReuseCallConnection()
        if (reuseCallConnection != null) return reuseCallConnection
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

     * limitations under the License.
     */
    
    package org.gradle.execution.plan;
    
    import com.google.common.annotations.VisibleForTesting;
    import org.gradle.api.Action;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.api.tasks.VerificationException;
    import org.gradle.execution.plan.edges.DependencyNodesSet;
    import org.gradle.execution.plan.edges.DependentNodesSet;
    import org.gradle.internal.resources.ResourceLock;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

      private val user: ConnectionUser,
      private val routePlanner: RealRoutePlanner,
      // Specifics to this plan.
      override val route: Route,
      internal val routes: List<Route>?,
      private val attempt: Int,
      private val tunnelRequest: Request?,
      internal val connectionSpecIndex: Int,
      internal val isTlsFallback: Boolean,
    ) : RoutePlanner.Plan, ExchangeCodec.Carrier {
      /** True if this connect was canceled; typically because it lost a race. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/build/PlannedNodeGraphTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.build
    
    import org.gradle.execution.plan.Node
    import org.gradle.execution.plan.PlannedNodeInternal
    import org.gradle.execution.plan.TaskDependencyResolver
    import org.gradle.execution.plan.ToPlannedNodeConverter
    import org.gradle.execution.plan.ToPlannedNodeConverterRegistry
    import org.gradle.internal.taskgraph.NodeIdentity
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 21 13:11:56 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. 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)
  7. cmd/kubeadm/app/cmd/upgrade/common.go

    	if err != nil {
    		return nil, nil, nil, nil, errors.Wrap(err, "[upgrade/upgrade config] FATAL")
    	}
    
    	// `dryRun` should be always be `false` for `kubeadm plan`.
    	isDryRun := ptr.To(false)
    	printConfigCfg := upgradeCfg.Plan.PrintConfig
    	ignoreErrCfg := upgradeCfg.Plan.IgnorePreflightErrors
    	ok := false
    	if upgradeApply {
    		printConfigCfg = upgradeCfg.Apply.PrintConfig
    		ignoreErrCfg = upgradeCfg.Apply.IgnorePreflightErrors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. tools/docker-builder/types.go

    	// Suffix on artifacts, used for multi-arch images where we cannot use manifests
    	suffix string
    
    	// Plan describes the build plan, read from file.
    	// This is a map of architecture -> plan, as the plan is arch specific.
    	Plan map[string]BuildPlan
    }
    
    func (a Args) PlanFor(arch string) BuildPlan {
    	return a.Plan[arch]
    }
    
    func (a Args) String() string {
    	var b strings.Builder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/DetermineExecutionPlanAction.java

    import java.util.Map;
    import java.util.Set;
    
    import static java.lang.String.format;
    import static org.gradle.execution.plan.NodeSets.sortedListOf;
    
    /**
     * Determines the execution plan, checking for cycles and making sure `finalizedBy` constraints are honored.
     *
     * The final plan is communicated via the mutation of the given `nodeMapping`, `ordinalNodeAccess` and `finalizers` collections.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultExecutionPlan.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.execution.plan;
    
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.ImmutableSet;
    import org.gradle.api.NonNullApi;
    import org.gradle.api.Task;
    import org.gradle.api.specs.Spec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top