Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TaskSelection (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.Specs;
    import org.gradle.configuration.project.BuiltInCommand;
    import org.gradle.execution.ProjectSelectionException;
    import org.gradle.execution.TaskSelection;
    import org.gradle.execution.TaskSelectionException;
    import org.gradle.execution.TaskSelector;
    import org.gradle.internal.build.BuildState;
    import org.gradle.internal.build.BuildStateRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestExecutionBuildConfigurationAction.java

            TaskSelection taskSelection;
            try {
                taskSelection = context.getSelection(testTaskPath);
            } catch (TaskSelectionException e) {
                throw new TestExecutionException(String.format("Requested test task with path '%s' cannot be found.", testTaskPath));
            }
    
            Set<Task> tasks = taskSelection.getTasks();
            if (tasks.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. 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)
Back to top