Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for newCommandLineProcessLogging (0.37 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/LoggingServiceRegistryTest.groovy

            given:
            def registry = LoggingServiceRegistry.newCommandLineProcessLogging()
    
            expect:
            def factory = registry.getFactory(LoggingManagerInternal.class)
            factory instanceof DefaultLoggingManagerFactory
        }
    
        def providesAStyledTextOutputFactory() {
            given:
            def registry = LoggingServiceRegistry.newCommandLineProcessLogging()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilderTest.groovy

        }
    
        def "warns if multiple entries use the same alias"() {
            StandardOutputListener listener = Mock()
            def registry = LoggingServiceRegistry.newCommandLineProcessLogging()
            def loggingManager = registry.newInstance(LoggingManagerInternal)
            loggingManager.enableUserStandardOutputListeners()
            loggingManager.addStandardOutputListener(listener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            LoggingServiceRegistry loggingRegistry = LoggingServiceRegistry.newCommandLineProcessLogging();
            LoggingManagerInternal loggingManager = loggingRegistry.newInstance(LoggingManagerInternal.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingServiceRegistry.java

         */
        public static LoggingServiceRegistry newCommandLineProcessLogging() {
            CommandLineLogging loggingServices = new CommandLineLogging();
            LoggingManagerInternal rootLoggingManager = loggingServices.get(DefaultLoggingManagerFactory.class).getRoot();
    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/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

         *
         * @return the created {@link ServiceRegistry}
         */
        @VisibleForTesting
        protected ServiceRegistry createLoggingServices() {
            return LoggingServiceRegistry.newCommandLineProcessLogging();
        }
    
        private static class BuiltInActionCreator implements CommandLineActionCreator {
            @Override
            public void configureCommandLineParser(CommandLineParser parser) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        protected static final ServiceRegistry GLOBAL_SERVICES = new BuildProcessState(
            true,
            AgentStatus.of(isAgentInstrumentationEnabled()),
            ClassPath.EMPTY,
            newCommandLineProcessLogging(),
            NativeServicesTestFixture.getInstance(),
            ValidationServicesFixture.getServices()
        ).getServices();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top