Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 79 for launching (0.15 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/LibraryTest.groovy

                        <classpathentry exported="true" kind="lib" path="/ant.jar" sourcepath="/ant-src.jar">
                            <attributes>
                                <attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="mynative"/>
                                <attribute name="javadoc_location" value="jar:%FILE_URI%!/"/>
                            </attributes>
                            <accessrules>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/VariableTest.groovy

                    <classpathentry exported="true" kind="var" path="/GRADLE_CACHE/ant.jar" sourcepath="/GRADLE_CACHE/ant-src.jar">
                        <attributes>
                            <attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="mynative"/>
                            <attribute name="javadoc_location" value="jar:%FILE_URI%!/"/>
                        </attributes>
                        <accessrules>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseJavaProjectIntegrationTest.groovy

                java.targetCompatibility = $version
            """
    
            when:
            run "eclipse"
    
            then:
            def classpath = classpath
            classpath.containers == [ "org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/$expectedContainer/" ]
    
            where:
            version | expectedContainer
            '1.1'   | 'JRE-1.1'
            '1.2'   | 'J2SE-1.2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webserviceClasspath.xml

    		<attributes>
    			<attribute name="gradle_scope" value="main"/>
    			<attribute name="gradle_used_by_scope" value="main,test"/>
    		</attributes>
    	</classpathentry>
    	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7/"/>
    	<classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
    	<classpathentry kind="src" path="/api">
    		<attributes>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/process-services/src/main/java/org/gradle/process/BaseExecSpec.java

     * limitations under the License.
     */
    package org.gradle.process;
    
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.util.List;
    
    /**
     * Specifies options for launching a child process.
     */
    public interface BaseExecSpec extends ProcessForkOptions {
        /**
         * Sets whether a non-zero exit value is ignored, or an exception thrown.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/main/java/org/gradle/api/tasks/application/CreateStartScripts.java

     * limitations under the License.
     */
    package org.gradle.api.tasks.application;
    
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Creates start scripts for launching JVM applications.
     * <p>
     * Example:
     * <pre class='autoTested'>
     * task createStartScripts(type: CreateStartScripts) {
     *   outputDir = file('build/sample')
     *   mainClass = 'org.gradle.test.Main'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. 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)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/commonClasspath.xml

    			<attribute name="gradle_used_by_scope" value="test"/>
    			<attribute name="test" value="true"/>
    		</attributes>
    	</classpathentry>
    	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7/"/>
    	<classpathentry kind="src" path="/api">
    		<attributes>
    			<attribute name="without_test_code" value="true"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                            // keep the ordering we had in earlier gradle versions
                            Set<String> containers = new LinkedHashSet<>();
                            containers.add("org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/" + model.getJdt().getJavaRuntimeName() + "/");
                            containers.addAll(model.getClasspath().getContainers());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressCrossVersionSpec.groovy

            !events.tests.empty
            events.operations == events.tests
            events.trees.size() == 1
        }
    
        def "receive test progress events when launching a build"() {
            given:
            goodCode()
    
            when: "launching a build"
            def events = ProgressEvents.create()
            withConnection {
                ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top