Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for startBuild (0.35 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompileDaemonCancellationIntegrationTest.groovy

            startBuild("compileJava")
    
            then:
            handler.waitForAllPendingCalls()
    
            then:
            handler.releaseAll()
    
            then:
            succeeds()
    
            and:
            pidFile().exists()
            def pid2 = pidFile().text.strip() as long
            pid2 == pid1
        }
    
        private void startBuild(String task) {
            executer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

        def buildDirWithScript(buildNum, buildScript) {
            def dir = buildDir(buildNum)
            dir.file("settings.gradle").touch()
            dir.file("build.gradle") << buildScript
            dir
        }
    
        void startBuild(String javaHome = null, String buildEncoding = null) {
            run {
                executer.withTasks("watch")
                executer.withDaemonIdleTimeoutSecs(daemonIdleTimeout)
                executer.withArguments(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top