Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createBuildActionFactoryActionCreator (0.52 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

         * @param actionCreators collection of {@link CommandLineActionCreator}s to which to add a new {@link BuildActionsFactory}
         */
        @VisibleForTesting
        protected void createBuildActionFactoryActionCreator(ServiceRegistry loggingServices, List<CommandLineActionCreator> actionCreators) {
            actionCreators.add(new BuildActionsFactory(loggingServices));
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

            @Override
            protected LoggingServiceRegistry createLoggingServices() {
                return loggingServices
            }
    
            @Override
            protected void createBuildActionFactoryActionCreator(ServiceRegistry loggingServices, List<CommandLineActionCreator> actionCreators) {
                actionCreators.add(actionFactory1)
                actionCreators.add(actionFactory2)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top