Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 517 for plan (0.03 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformStepNodeDependencyResolver.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.transform;
    
    import org.gradle.api.Action;
    import org.gradle.api.Task;
    import org.gradle.execution.plan.DependencyResolver;
    import org.gradle.execution.plan.Node;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Resolves dependencies to {@link TransformStepNode} objects.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/connection/FailedPlan.kt

     * proxy in a list, looking up a subsequent one may succeed.
     */
    internal class FailedPlan(e: Throwable) : RoutePlanner.Plan {
      val result = RoutePlanner.ConnectResult(plan = this, throwable = e)
    
      override val isReady = false
    
      override fun connectTcp() = result
    
      override fun connectTlsEtc() = result
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/kotlin/antLoadfileResources/agile.manifesto.txt

    Individuals and interactions over processes and tools
    Working software over comprehensive documentation
    Customer collaboration  over contract negotiation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 196 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/antLoadfileWithMethod/kotlin/antLoadfileResources/agile.manifesto.txt

    Individuals and interactions over processes and tools
    Working software over comprehensive documentation
    Customer collaboration  over contract negotiation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 196 bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleScopeServices.java

    import org.gradle.execution.commandline.CommandLineTaskConfigurer;
    import org.gradle.execution.commandline.CommandLineTaskParser;
    import org.gradle.execution.plan.LocalTaskNodeExecutor;
    import org.gradle.execution.plan.NodeExecutor;
    import org.gradle.execution.plan.PlanExecutor;
    import org.gradle.execution.plan.WorkNodeExecutor;
    import org.gradle.execution.selection.BuildTaskSelector;
    import org.gradle.execution.taskgraph.DefaultTaskExecutionGraph;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/groovy/antLoadfileResources/agile.manifesto.txt

    Individuals and interactions over processes and tools
    Working software over comprehensive documentation
    Customer collaboration  over contract negotiation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 196 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/antLoadfileWithMethod/groovy/antLoadfileResources/agile.manifesto.txt

    Individuals and interactions over processes and tools
    Working software over comprehensive documentation
    Customer collaboration  over contract negotiation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 196 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/output/types.go

    	Description string
    
    	Components []ComponentUpgradePlan
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // UpgradePlan represents information about upgrade plan for the output
    // produced by 'kubeadm upgrade plan'
    type UpgradePlan struct {
    	metav1.TypeMeta
    
    	AvailableUpgrades []AvailableUpgrade
    
    	ConfigVersions []ComponentConfigVersionState
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleMappingDelegate.java

    import org.apache.maven.project.MavenProject;
    
    /**
     * Lifecycle mapping delegate component interface. Calculates project build execution plan given {@link Lifecycle} and
     * lifecycle phase. Standard lifecycles use plugin execution {@code <phase>} or mojo default lifecycle phase to
     * calculate the execution plan, but custom lifecycles can use alternative mapping strategies.
     * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/lifecycle/internal/builder/BuilderCommonTest.java

            final BuilderCommon builderCommon = getBuilderCommon(logger);
            final MavenExecutionPlan plan =
                    builderCommon.resolveBuildPlan(session1, ProjectDependencyGraphStub.A, taskSegment1, new HashSet<>());
            assertEquals(
                    LifecycleExecutionPlanCalculatorStub.getProjectAExecutionPlan().size(), plan.size());
        }
    
        @Test
        void testDefaultBindingPluginsWarning() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top