Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for excludeTasks (0.34 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/taskgraph/DefaultTaskExecutionGraph.java

            /*
                Note: we currently extract this information from the execution plan because it's
                buried under functions in #filter. This could be detangled/simplified by introducing
                excludeTasks(Iterable<Task>) as an analog to addEntryTasks(Iterable<Task>).
    
                This is too drastic a change for the stage in the release cycle were exposing this information
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle dist --exclude-task test
    ----
    ----
    include::{snippetsPath}/tutorial/excludeTasks/tests/excludeTask.out[]
    ----
    
    .Simple Task Graph
    image::commandLineTutorialTasks.png[]
    
    You can see that the `test` task is not executed, even though the `dist` task depends on it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/excludeTasks/tests/excludeTask.sample.conf

    # tag::cli[]
    # gradle dist --exclude-task=test
    # end::cli[]
    executable: gradle
    args: dist
    flags: "--exclude-task=test"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 157 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/excludeTasks/tests/excludeTask.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 129 bytes
    - Viewed (0)
Back to top