Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for launching (0.12 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerCrossVersionSpec.groovy

            when:
            EclipseProject project = loadToolingModel(EclipseProject)
    
            then:
            project.classpathContainers.size() == 3
            project.classpathContainers.find { it.path.startsWith 'org.eclipse.jdt.launching.JRE_CONTAINER' }
            project.classpathContainers.find { it.path == 'containerPath1' }
            project.classpathContainers.find { it.path == 'containerPath2' }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = """Extends platform-base with base types and interfaces specific to the Java Virtual Machine, including tasks for obtaining a JDK via toolchains, and for compiling and launching Java applications."""
    
    errorprone {
        disabledChecks.addAll(
            "StringCharset", // 1 occurrences
            "UnusedMethod", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. README.md

    The [Kubernetes Community](https://github.com/kubernetes/community/blob/master/governance.md) is the launching point for learning about how we organize ourselves.
    
    The [Kubernetes Steering community repo](https://github.com/kubernetes/steering) is used by the Kubernetes Steering Committee, which oversees governance of the Kubernetes project.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. 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)
  8. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

    public class ClasspathTest extends Specification {
        final fileReferenceFactory = new FileReferenceFactory()
        final customEntries = [
            new ProjectDependency("/test2"),
            new Container("org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"),
            new Library(fileReferenceFactory.fromPath("/apache-ant-1.7.1/lib/ant-antlr.jar")),
            new SourceFolder("src", "bin2"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Classpath.java

        }
    
        private boolean isJreContainer(ClasspathEntry entry) {
            return entry instanceof Container && ((Container) entry).getPath().startsWith("org.eclipse.jdt.launching.JRE_CONTAINER");
        }
    
        private boolean isOutputLocation(ClasspathEntry entry) {
            return entry instanceof Output;
        }
    
        /**
         * Creates a new {@link FileReference} instance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. 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)
Back to top