Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,572 for Actions (0.19 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Actions.java

         *
         * @param actions The actions to make a composite of.
         * @param <T> The type of the object that action is for
         * @return The composite action.
         */
        public static <T> Action<T> composite(Iterable<? extends Action<? super T>> actions) {
            ImmutableList.Builder<Action<? super T>> builder = ImmutableList.builder();
            for (Action<? super T> action : actions) {
                if (doesSomething(action)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    [[sec:configure_github_actions]]
    == Configure GitHub Actions
    
    You can create a GitHub Actions workflow by adding a `.github/workflows/<workflow-name>.yml` file to your repository.
    This workflow definition file contains all relevant instructions for building the project on GitHub Actions.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-workflows.png

    github-actions-workflows.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 19:03:12 UTC 2024
    - 137.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-workflow.png

    github-actions-workflow.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 19:03:12 UTC 2024
    - 255.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-dependency-graph.png

    github-actions-dependency-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:06:09 UTC 2024
    - 251.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-dependency-alerts.png

    github-actions-dependency-alerts.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:06:09 UTC 2024
    - 188.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-job-details.png

    github-actions-job-details.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 19:03:12 UTC 2024
    - 333.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-cache-details.png

    github-actions-cache-details.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 19:03:12 UTC 2024
    - 226.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/ci-systems/github-actions-create-repository.png

    github-actions-create-repository.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 19:03:12 UTC 2024
    - 311.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ImmutableActionSetTest.groovy

        }
    
        def "can add multiple actions to a set"() {
            def action1 = Mock(Action)
            def action2 = Mock(Action)
            def action3 = Mock(Action)
            def action4 = Mock(Action)
            def action5 = Mock(Action)
            def action6 = Mock(Action)
            def action7 = Mock(Action)
    
            when:
            def set = ImmutableActionSet.empty().add(action1)
            set.execute("value")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top