Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NoUsableDaemonFoundException (0.54 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top