Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for forLaunchables (0.19 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/DisabledTaskExecutionOnIncludedBuildsCrossVersionSpec.groovy

            when:
            withBuild { BuildLauncher launcher ->
                launcher.forLaunchables(includedSelector)
            }
    
            then:
            thrown(BuildException)
    
            when:
            withBuild { BuildLauncher launcher ->
                launcher.forLaunchables(includedTask)
            }
    
            then:
            thrown(BuildException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultBuildLauncher.java

        @Override
        public BuildLauncher forTasks(Iterable<? extends Task> tasks) {
            forLaunchables(tasks);
            return this;
        }
    
        @Override
        public BuildLauncher forLaunchables(Launchable... launchables) {
            return forLaunchables(Arrays.asList(launchables));
        }
    
        @Override
        public BuildLauncher forLaunchables(Iterable<? extends Launchable> launchables) {
            preprocessLaunchables(launchables);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildLauncher.java

         * @since 1.12
         */
        BuildLauncher forLaunchables(Launchable... launchables);
    
        /**
         * Sets the launchables to execute. If no entries are specified, the project's default tasks are executed.
         *
         * @param launchables The launchables for this build.
         * @return this
         * @since 1.12
         */
        BuildLauncher forLaunchables(Iterable<? extends Launchable> launchables);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/Launchable.java

     *
     * <p>To launch a build, you pass one or more {@link org.gradle.tooling.model.Launchable} instances
     * to either {@link org.gradle.tooling.BuildLauncher#forTasks(Iterable)} or {@link org.gradle.tooling.BuildLauncher#forLaunchables(Iterable)}.</p>
     *
     * @since 1.12
     */
    public interface Launchable extends ProjectModel {
        /**
         * Returns the identifier for the Gradle project that this model originated from.
         *
         * @since 2.13
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/gradle/BuildInvocations.java

     *
     * <p>To launch a build, you pass one or more {@link org.gradle.tooling.model.Launchable} instances
     * to either {@link org.gradle.tooling.BuildLauncher#forTasks(Iterable)} or {@link org.gradle.tooling.BuildLauncher#forLaunchables(Iterable)}.</p>
     *
     * @since 1.12
     */
    public interface BuildInvocations extends Model, ProjectModel {
    
        /**
         * Returns the identifier for the Gradle project that these invocations originate from.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top