Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DaemonDisappearedException (0.16 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientTest.groovy

            parameters.currentDir >> new File(".")
    
            when:
            client.execute(Stub(BuildAction), parameters, Stub(ClientBuildRequestContext))
    
            then:
            thrown(DaemonDisappearedException)
    
            and:
            connector.connect(compatibilitySpec) >> connection
            _ * connection.daemon >> Stub(DaemonConnectDetails)
            1 * connection.dispatch({ it instanceof Build })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

            findCrashLogFile(build, diagnostics).ifPresent(crashLogFile ->
                LOGGER.error("JVM crash log found: " + new ConsoleRenderer().asClickableFileUrl(crashLogFile))
            );
            throw new DaemonDisappearedException();
        }
    
        /**
         * <a href="https://stackoverflow.com/a/5154619/104894">See why this logic exists in this SO post.</a>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.launcher.daemon.client.DaemonDisappearedException> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (DaemonDisappearedException.java:0)
    Class <org.gradle.launcher.daemon.client.DaemonGreeter> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (DaemonGreeter.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top