Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NoUsableDaemonFoundException (0.34 sec)

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

    import java.util.Collections;
    import java.util.List;
    
    public class NoUsableDaemonFoundException extends DefaultMultiCauseException implements ResolutionProvider {
    
        private static final List<String> RESOLUTION = Collections.singletonList(Documentation.userManual("troubleshooting", "network_connection").getConsultDocumentationMessage());
    
        public NoUsableDaemonFoundException(String message, Iterable<? extends Throwable> causes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

                        // 3. target gradle version (or home)
                        // 4. target JDK
                        // 5. gradle user home
                        // 6. whether or not we're allowed to ignore "NoUsableDaemonFoundException" exceptions
                        String action = args[0];
                        File projectDir = new File(args[1]);
                        String gradleVersion = args[2];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientTest.groovy

            connection.receive() >> Mock(DaemonUnavailable)
    
            when:
            client.execute(Stub(BuildAction), Stub(BuildActionParameters), Stub(ClientBuildRequestContext))
    
            then:
            thrown(NoUsableDaemonFoundException)
        }
    
        def "does not try to start more than one daemon"() {
            given:
            DaemonClientConnection connection2 = Mock()
            DaemonClientConnection connection3 = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

            } catch (DaemonInitialConnectException e) {
                // This means we could not connect to the daemon we just started.  fail and don't try again
                throw new NoUsableDaemonFoundException("A new daemon was started but could not be connected to: " +
                    "pid=" + connection.getDaemon() + ", address= " + connection.getDaemon().getAddress() + ".",
                    accumulatedExceptions);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.launcher.daemon.client.NoUsableDaemonFoundException> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (NoUsableDaemonFoundException.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