Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for launching (0.2 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            !events.tasks.empty
            events.operations == events.tasks
        }
    
        def "receive task 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: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   death test, which already incurs significant overhead by launching
    //   a child process.
    //
    // Known caveats:
    //
    //   A "threadsafe" style death test obtains the path to the test
    //   program from argv[0] and re-executes it in the sub-process.  For
    //   simplicity, the current implementation doesn't search the PATH
    //   when launching the sub-process.  This means that the user must
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   death test, which already incurs significant overhead by launching
    //   a child process.
    //
    // Known caveats:
    //
    //   A "threadsafe" style death test obtains the path to the test
    //   program from argv[0] and re-executes it in the sub-process.  For
    //   simplicity, the current implementation doesn't search the PATH
    //   when launching the sub-process.  This means that the user must
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
        String content
    
        private final String jreContainerPath = "org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-${JavaVersion.current().isJava9Compatible() ? JavaVersion.current().getMajorVersion() : JavaVersion.current()}/"
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  7. pkg/kubelet/network/dns/dns.go

    const (
    	podDNSCluster podDNSType = iota
    	podDNSHost
    	podDNSNone
    )
    
    const (
    	maxResolvConfLength = 10 * 1 << 20 // 10MB
    )
    
    // Configurer is used for setting up DNS resolver configuration when launching pods.
    type Configurer struct {
    	recorder         record.EventRecorder
    	getHostDNSConfig func(string) (*runtimeapi.DNSConfig, error)
    	nodeRef          *v1.ObjectReference
    	nodeIPs          []net.IP
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

    import javax.annotation.Nullable;
    import javax.inject.Inject;
    import java.io.File;
    import java.util.Collections;
    import java.util.LinkedList;
    import java.util.stream.Collectors;
    
    /**
     * 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
    - 13.5K bytes
    - Viewed (0)
  9. src/cmd/trace/main.go

    	-pprof=type: print a pprof-like profile instead
    	-d=int: print debug info such as parsed events (1 for high-level, 2 for low-level)
    
    Note that while the various profiles available when launching
    'go tool trace' work on every browser, the trace viewer itself
    (the 'view trace' page) comes from the Chrome/Chromium project
    and is only actively tested on that browser.
    `
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

    repositories {
        maven { url "${mavenRepo.uri}" }
    }
    
    eclipse {
        jdt {
            javaRuntimeName = "Jigsaw-1.9"
        }
    }"""
    
            assert classpath.containers == ["org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/Jigsaw-1.9/"]
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void eclipseFilesAreWrittenWithUtf8Encoding() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top