Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonDisappearedException.java

    /**
     * Thrown when a daemon disconnects unexpectedly while a client is interacting with it.
     */
    public class DaemonDisappearedException extends GradleException {
    
        public static final String MESSAGE = "Gradle build daemon disappeared unexpectedly (it may have been killed or may have crashed)";
    
        public DaemonDisappearedException() {
            super(MESSAGE);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerMechanicalFailureIntegrationTest.groovy

    import org.gradle.initialization.StartParameterBuildOptions
    import org.gradle.integtests.fixtures.executer.OutputScrapingExecutionResult
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.launcher.daemon.client.DaemonDisappearedException
    import org.gradle.testkit.runner.fixtures.HideEnvVariableValuesInDaemonLog
    import org.gradle.testkit.runner.fixtures.InspectsBuildOutput
    import org.gradle.testkit.runner.fixtures.InspectsExecutedTasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressDaemonErrorsCrossVersionSpec.groovy

                        toolingApi.daemons.daemon.kill()
                        killed = true
                    }
                }, EnumSet.of(OperationType.TEST)).run()
            }
    
            then: "build fails with a DaemonDisappearedException"
            GradleConnectionException ex = thrown()
            ex.cause.message.contains('Gradle build daemon disappeared unexpectedly')
    
            and:
            !result.empty
        }
    
        def goodCode() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top