Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 503 for plan (0.67 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/VintageGradleBuild.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.api.internal.GradleInternal
    import org.gradle.execution.plan.ScheduledWork
    import org.gradle.internal.build.BuildState
    
    
    interface VintageGradleBuild {
        val isRootBuild: Boolean
        val state: BuildState
        val gradle: GradleInternal
        val hasScheduledWork: Boolean
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 983 bytes
    - Viewed (0)
  2. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/TestExecutionBuildTaskSchedulerTest.groovy

    import org.gradle.api.tasks.testing.TestFilter
    import org.gradle.execution.EntryTaskSelector
    import org.gradle.execution.TaskSelection
    import org.gradle.execution.TaskSelectionResult
    import org.gradle.execution.plan.ExecutionPlan
    import org.gradle.execution.plan.QueryableExecutionPlan
    import org.gradle.internal.build.BuildProjectRegistry
    import org.gradle.internal.build.BuildState
    import org.gradle.internal.build.event.types.DefaultTestDescriptor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ExecutionServices.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.service.scopes;
    
    import org.gradle.execution.plan.DefaultPlanExecutor;
    import org.gradle.internal.service.ServiceRegistration;
    
    public class ExecutionServices extends AbstractGradleModuleServices {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/MutationInfo.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 java.util.HashSet;
    import java.util.Set;
    
    class MutationInfo {
        private final Set<Node> nodesYetToConsumeOutput = new HashSet<>();
        final Set<String> outputPaths = new HashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/TaskNodeDependencyResolver.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 org.gradle.api.Action;
    import org.gradle.api.Task;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/OperationDependencyLookup.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.provider.runner;
    
    import org.gradle.execution.plan.Node;
    import org.gradle.tooling.internal.protocol.events.InternalOperationDescriptor;
    
    interface OperationDependencyLookup {
    
        InternalOperationDescriptor lookupExistingOperationDescriptor(Node node);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 911 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/OperationDependenciesResolver.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.provider.runner;
    
    import org.gradle.execution.plan.Node;
    import org.gradle.tooling.internal.protocol.events.InternalOperationDescriptor;
    
    import java.util.ArrayList;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Objects;
    import java.util.Set;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.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.
     */
    @Named(DefaultLifecycleMappingDelegate.HINT)
    @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/ProjectExecutionServices.java

    import org.gradle.api.internal.tasks.execution.SkipTaskWithNoActionsExecuter;
    import org.gradle.api.internal.tasks.execution.TaskCacheabilityResolver;
    import org.gradle.execution.plan.ExecutionNodeAccessHierarchies;
    import org.gradle.execution.plan.MissingTaskDependencyDetector;
    import org.gradle.execution.taskgraph.TaskExecutionGraphInternal;
    import org.gradle.execution.taskgraph.TaskListenerInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcweb/git.go

    	"slices"
    	"sync"
    )
    
    type gitHandler struct {
    	once       sync.Once
    	gitPath    string
    	gitPathErr error
    }
    
    func (h *gitHandler) Available() bool {
    	if runtime.GOOS == "plan9" {
    		// The Git command is usually not the real Git on Plan 9.
    		// See https://golang.org/issues/29640.
    		return false
    	}
    	h.once.Do(func() {
    		h.gitPath, h.gitPathErr = exec.LookPath("git")
    	})
    	return h.gitPathErr == nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top