Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for LoggingManagerInternal (0.27 sec)

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

         */
        LoggingManagerInternal captureSystemSources();
    
        /**
         * Sets the log level to capture stdout at. Does not enable capture.
         */
        @Override
        LoggingManagerInternal captureStandardOutput(LogLevel level);
    
        /**
         * Sets the log level to capture stderr at. Does not enable capture.
         */
        @Override
        LoggingManagerInternal captureStandardError(LogLevel level);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/ForegroundDaemonAction.java

            this.loggingRegistry = loggingRegistry;
            this.configuration = configuration;
        }
    
        @Override
        public void run() {
            LoggingManagerInternal loggingManager = loggingRegistry.newInstance(LoggingManagerInternal.class);
            loggingManager.start();
    
            DaemonProcessState daemonProcessState = new DaemonProcessState(configuration, loggingRegistry, loggingManager, DefaultClassPath.of());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/LoggingServiceRegistryTest.groovy

    import org.gradle.api.logging.LogLevel
    import org.gradle.api.logging.StandardOutputListener
    import org.gradle.internal.SystemProperties
    import org.gradle.internal.logging.ConfigureLogging
    import org.gradle.internal.logging.LoggingManagerInternal
    import org.gradle.internal.logging.TestOutputEventListener
    import org.gradle.internal.logging.text.StyledTextOutputFactory
    import org.gradle.util.internal.RedirectStdOutAndErr
    import org.gradle.util.internal.TextUtil
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingServiceRegistry.java

     * <li>Create an instance of {@link LoggingManagerInternal}.</li>
     * <li>Configure the logging manager as appropriate.</li>
     * <li>Start the logging manager using {@link LoggingManagerInternal#start()}.</li>
     * <li>When finished, stop the logging manager using {@link LoggingManagerInternal#stop()}.</li>
     * </ol>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/BuildProcessScopeServices.java

    import org.gradle.internal.buildprocess.execution.SetupLoggingActionExecutor;
    import org.gradle.internal.buildprocess.execution.StartParamsValidatingActionExecutor;
    import org.gradle.internal.logging.LoggingManagerInternal;
    import org.gradle.internal.service.DefaultServiceLocator;
    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ServiceRegistration;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/SystemApplicationClassLoaderWorker.java

                }
            });
        }
    
        LoggingManagerInternal createLoggingManager(LoggingServiceRegistry loggingServiceRegistry) {
            LoggingManagerInternal loggingManagerInternal = loggingServiceRegistry.newInstance(LoggingManagerInternal.class);
            loggingManagerInternal.captureSystemSources();
            return loggingManagerInternal;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/DefaultLoggingManagerFactory.java

    package org.gradle.internal.logging.services;
    
    import org.gradle.internal.Factory;
    import org.gradle.internal.logging.LoggingManagerInternal;
    import org.gradle.internal.logging.config.LoggingRouter;
    import org.gradle.internal.logging.config.LoggingSourceSystem;
    
    public class DefaultLoggingManagerFactory implements Factory<LoggingManagerInternal> {
        private final LoggingSourceSystem slfLoggingSystem;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/NativeServicesInitializingAction.java

        private final LoggingConfiguration loggingConfiguration;
        private final LoggingManagerInternal loggingManager;
        private final Action<ExecutionListener> action;
    
        public NativeServicesInitializingAction(
            BuildLayoutResult buildLayout,
            LoggingConfiguration loggingConfiguration,
            LoggingManagerInternal loggingManager,
            Action<ExecutionListener> action
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/TestGlobalScopeServices.java

            return new TestInMemoryCacheFactory();
        }
    
        @Provides
        LoggingManagerInternal createLoggingManager(Factory<LoggingManagerInternal> loggingManagerFactory) {
            return loggingManagerFactory.create();
        }
    
        @Provides
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/SetupLoggingActionExecutor.java

     */
    public class SetupLoggingActionExecutor implements BuildExecutor {
        private final BuildActionExecutor<BuildActionParameters, BuildRequestContext> delegate;
        private final LoggingManagerInternal loggingManager;
    
        public SetupLoggingActionExecutor(LoggingManagerInternal loggingManager, BuildActionExecutor<BuildActionParameters, BuildRequestContext> delegate) {
            this.loggingManager = loggingManager;
            this.delegate = delegate;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top