Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CommandLineActionCreator (0.22 sec)

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

    import org.gradle.launcher.bootstrap.ExecutionListener;
    
    import javax.annotation.Nullable;
    
    /**
     * A factory for creating {@link Action}s from CLI commands.
     */
    public interface CommandLineActionCreator {
        /**
         * Configures the given action creator with a command-line parser.
         */
        void configureCommandLineParser(CommandLineParser parser);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

        /**
         * This method is left visible so that tests can override it to inject {@link CommandLineActionCreator}s which
         * don't actually attempt to run the build per normally.
         *
         * @param loggingServices logging services to use when instantiating any {@link CommandLineActionCreator}s
         * @param actionCreators collection of {@link CommandLineActionCreator}s to which to add a new {@link BuildActionsFactory}
         */
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/ContinuingAction.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.cli;
    
    import org.gradle.api.Action;
    
    /**
     * This marker interface extends {@link Action} to indicate that {@link CommandLineActionCreator}s
     * should continue processing the command line after creating this action.
     *
     * @param <T> The type of object which this action accepts
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 984 bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

        final ExecutionListener executionListener = Mock()
        final LoggingServiceRegistry loggingServices = Mock()
        final LoggingManagerInternal loggingManager = Mock()
        final CommandLineActionCreator actionFactory1 = Mock()
        final CommandLineActionCreator actionFactory2 = Mock()
        final CommandLineActionFactory factory = new DefaultCommandLineActionFactory() {
            @Override
            protected LoggingServiceRegistry createLoggingServices() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

    import org.gradle.tooling.internal.provider.RunInProcess;
    
    import java.lang.management.ManagementFactory;
    import java.util.Properties;
    import java.util.UUID;
    
    class BuildActionsFactory implements CommandLineActionCreator {
        private final BuildEnvironmentConfigurationConverter buildEnvironmentConfigurationConverter;
        private final ServiceRegistry loggingServices;
        private final JvmVersionDetector jvmVersionDetector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top