Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for TaskSelection (0.18 sec)

  1. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/TestExecutionBuildTaskSchedulerTest.groovy

    import org.gradle.api.tasks.testing.AbstractTestTask
    import org.gradle.api.tasks.testing.Test
    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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/EntryTaskSelector.java

        void applyTasksTo(Context context, ExecutionPlan plan);
    
        default void postProcessExecutionPlan(Context context, QueryableExecutionPlan plan) {
        }
    
        interface Context {
            TaskSelection getSelection(String taskPath);
    
            GradleInternal getGradle();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/TaskSelector.java

    import org.gradle.util.Path;
    
    @ServiceScope(Scope.BuildTree.class)
    public interface TaskSelector {
        Spec<Task> getFilter(SelectionContext context, ProjectState project, String taskName, boolean selectAllMatching);
    
        TaskSelection getSelection(SelectionContext context, ProjectState project, String taskName, boolean selectAllMatching);
    
        class SelectionContext {
            private final Path originalPath;
            private final String type;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

            @Override
            public TaskSelection getSelection(String taskPath) {
                // We assume taskPath is valid since the selector has been used before
                return selectionOf(path(taskPath));
            }
    
            private TaskSelection selectionOf(Path taskPath) {
                Path taskProjectPath = taskPath.getParent();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/GradleCoreProblemGroup.java

            return DEPRECATION_PROBLEM_GROUP;
        }
    
        public static ValidationProblemGroup validation() {
            return VALIDATION_PROBLEM_GROUP;
        }
    
        public static ProblemGroup taskSelection() {
            return TASK_SELECTION_PROBLEM_GROUP;
        }
    
        public static ProblemGroup versionCatalog() {
            return VERSION_CATALOG_PROBLEM_GROUP;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top