Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for LogToClient (0.36 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/LogToClient.java

    import java.util.Queue;
    import java.util.concurrent.ConcurrentLinkedQueue;
    import java.util.concurrent.CountDownLatch;
    
    public class LogToClient extends BuildCommandOnly {
    
        public static final String DISABLE_OUTPUT = "org.gradle.daemon.disable-output";
        private static final Logger LOGGER = Logging.getLogger(LogToClient.class);
    
        private final LoggingOutputInternal loggingOutput;
        private final DaemonDiagnostics diagnostics;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonOutputToggleIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon
    
    import org.gradle.integtests.fixtures.daemon.DaemonIntegrationSpec
    import org.gradle.launcher.daemon.server.exec.LogToClient
    
    class DaemonOutputToggleIntegrationTest extends DaemonIntegrationSpec {
    
        def "output is received when toggle is off"() {
            when:
            executer.noExtraLogging()
            succeeds "help"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServices.java

    import org.gradle.launcher.daemon.server.exec.ForwardClientInput;
    import org.gradle.launcher.daemon.server.exec.HandleCancel;
    import org.gradle.launcher.daemon.server.exec.LogAndCheckHealth;
    import org.gradle.launcher.daemon.server.exec.LogToClient;
    import org.gradle.launcher.daemon.server.exec.RequestStopIfSingleUsedDaemon;
    import org.gradle.launcher.daemon.server.exec.ResetDeprecationLogger;
    import org.gradle.launcher.daemon.server.exec.ReturnResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RetryConditions.groovy

                        && daemon.logContains('java.lang.NullPointerException')
                        && daemon.logContains('org.gradle.launcher.daemon.server.exec.LogToClient')) {
                        println "Retrying test because the dispatcher was not ready for receiving a log event. Check log of daemon with PID ${daemon.context.pid}."
                        return cleanProjectDir(specification)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            // Making the daemon infrastructure log with DEBUG. This is only for the infrastructure!
            // Each build request carries it's own log level and it is used during the execution of the build (see LogToClient)
            loggingManager.setLevelInternal(LogLevel.DEBUG);
    
            loggingManager.start();
        }
    
        /**
         * Set the permissions for the daemon log to be only readable/writable by the current user.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.launcher.daemon.server.exec.LogToClient$AsynchronousLogDispatcher$1> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (LogToClient.java:0)
    Class <org.gradle.launcher.daemon.server.exec.LogToClient$AsynchronousLogDispatcher> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (LogToClient.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