Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for attachProcessConsole (0.18 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/DefaultLoggingManager.java

                loggingOutput.removeOutputEventListener(listener);
            }
        }
    
        @Override
        public void attachProcessConsole(ConsoleOutput consoleOutput) {
            loggingRouter.attachProcessConsole(consoleOutput);
        }
    
        @Override
        public void attachConsole(OutputStream outputStream, OutputStream errorStream, ConsoleOutput consoleOutput) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/DefaultLoggingManagerTest.groovy

            def snapshot = Stub(LoggingSystem.Snapshot)
    
            loggingManager.attachProcessConsole(ConsoleOutput.Auto)
    
            when:
            loggingManager.start()
    
            then:
            1 * loggingRouter.snapshot() >> snapshot
            1 * loggingRouter.attachProcessConsole(ConsoleOutput.Auto)
            0 * loggingRouter._
    
            when:
            loggingManager.stop()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/NativeServicesInitializingAction.java

        @Override
        public void execute(ExecutionListener executionListener) {
            NativeServices.initializeOnClient(buildLayout.getGradleUserHomeDir(), NativeServicesMode.fromSystemProperties());
            loggingManager.attachProcessConsole(loggingConfiguration.getConsoleOutput());
            action.execute(executionListener);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingOutputInternal.java

         * is connected to a console.
         *
         * <p>Removes standard output and/or error as a side-effect.
         */
        void attachProcessConsole(ConsoleOutput consoleOutput);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingServiceRegistry.java

         * </ul>
         *
         * <p>Does nothing until started.</p>
         *
         * <p>Allows dynamic and colored output to be written to the console. Use {@link LoggingManagerInternal#attachProcessConsole(org.gradle.api.logging.configuration.ConsoleOutput)} to enable this.</p>
         */
        public static LoggingServiceRegistry newCommandLineProcessLogging() {
            CommandLineLogging loggingServices = new CommandLineLogging();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventRenderer.java

            return originalStdOut;
        }
    
        public OutputStream getOriginalStdErr() {
            return originalStdErr;
        }
    
        @Override
        public void attachProcessConsole(ConsoleOutput consoleOutput) {
            synchronized (lock) {
                ConsoleConfigureAction.execute(this, consoleOutput);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top