Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for Launchable (0.3 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/Task.java

    import org.gradle.api.Incubating;
    
    import javax.annotation.Nullable;
    
    /**
     * Represents a task which is executable by Gradle.
     *
     * <p>Note: {@code Task} extends {@code Launchable} since 1.12.</p>
     *
     * @since 1.0-milestone-3
     */
    public interface Task extends Launchable {
        /**
         * Returns the path of this task. This is a fully qualified unique name for this task.
         *
         * @return The path of this task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-main/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.launchable-jar")
    }
    
    description = "Entry point for the Gradle daemon process. Bootstraps the daemon server implementation in :daemon-server."
    
    app {
        mainClassName = "org.gradle.launcher.daemon.bootstrap.GradleDaemon"
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

                def gradleProjects = connection.action(new LoadCompositeModel(GradleProject)).run()
                def launchables = findLaunchables(gradleProjects, taskName)
                assert launchables.size == 1
                def build = connection.newBuild()
                collectOutputs(build)
                build.forLaunchables(launchables[0]).run()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/gradle-cli-main/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.launchable-jar")
        id("gradlebuild.start-scripts")
    }
    
    description = "Java 6-compatible entry point of the `gradle` command. Boostraps the Gradle client implementation in :launcher."
    
    gradlebuildJava.usedForStartup()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.launchable-jar")
    }
    
    description = "Implementation for launching, controlling and communicating with Gradle Daemon from CLI and TAPI"
    
    dependencies {
        api(project(":base-services"))
        api(project(":build-events"))
        api(project(":build-operations"))
        api(project(":build-option"))
        api(project(":build-state"))
        api(project(":cli"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

            BuildState defaultBuild = targetBuild;
            if (rootDir != null) {
                // When a root dir is specified, the project path and task name have come from a `Launchable` request from the tooling API client
                // Use exact lookup rather than pattern matching
                RootBuildState rootBuild = buildRegistry.getRootBuild();
                if (rootDir.equals(rootBuild.getBuildRootDir())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/ConsumerOperationParametersTest.groovy

        }
    
        def "launchables from adapters"() {
            when:
            def launchable1 = Mock(TaskListingLaunchable)
            def paths1 = new TreeSet<>()
            paths1.add(':a')
            _ * launchable1.taskNames >> paths1
            def launchable2 = Mock(TaskListingLaunchable)
            def paths2 = new TreeSet<>()
            paths2.add(':b')
            paths2.add(':lib:b')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/DisabledTaskExecutionOnIncludedBuildsCrossVersionSpec.groovy

    @TargetGradleVersion('>=3.3')
    class DisabledTaskExecutionOnIncludedBuildsCrossVersionSpec extends ToolingApiSpecification {
    
        @TargetGradleVersion('>=3.3 <6.8')
        def "Can't launch tasks from included builds via launchables obtained from GradleProject model"() {
            setup:
            singleProjectBuildInRootFolder("root") {
                settingsFile << """
                    includeBuild 'includedBuild'
                """
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalLaunchable.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.protocol;
    
    import org.gradle.tooling.internal.gradle.GradleProjectIdentity;
    
    /**
     * A marker interface for launchables.
     *
     * The real implementation exists elsewhere and is only interesting for provider.
     * Consumer will see public part of the contract from *.model.* packages and will send it back
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/ProviderStartParameterConverterTest.groovy

            then:
            start.configureOnDemand
        }
    
        abstract class LaunchableExecutionRequest implements InternalLaunchable, TaskExecutionRequest {}
    
        def "accepts launchables from consumer"() {
            given:
            def selector = Mock(LaunchableExecutionRequest)
            _ * selector.args >> ['myTask']
            _ * selector.projectPath >> ':child'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top