Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for userInput (0.54 sec)

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

         * The instance is not injected directly into this service as the instance will be constructed in some other scope.
         * </p>
         */
        void dispatchTo(UserInputReceiver userInput);
    
        /**
         * Discards the current {@link UserInputReceiver} instance used by this service.
         */
        void stopDispatching();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientTest.groovy

        final def idGenerator = new UUIDGenerator()
        final ProcessEnvironment processEnvironment = Mock()
        final GlobalUserInputReceiver userInput = Stub()
        final DaemonClient client = new DaemonClient(connector, outputEventListener, compatibilitySpec, new ByteArrayInputStream(new byte[0]), userInput, idGenerator, processEnvironment)
    
        def "executes action"() {
            def resultMessage = Stub(BuildActionResult)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-services/src/main/java/org/gradle/internal/daemon/clientinput/ClientInputForwarder.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.daemon.clientinput;
    
    import org.gradle.api.internal.tasks.userinput.UserInputReader;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.internal.IoActions;
    import org.gradle.internal.logging.events.OutputEvent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildScanUserInputFixture.groovy

            """
                import org.gradle.api.Project;
                import org.gradle.api.Plugin;
    
                import org.gradle.api.internal.project.ProjectInternal;
                import org.gradle.api.internal.tasks.userinput.BuildScanUserInputHandler;
    
                public class BuildScanPlugin implements Plugin<Project> {
                    @Override
                    public void apply(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r62/CapturingMultipleUserInputCrossVersionSpec.groovy

                import org.gradle.api.Project;
                import org.gradle.api.Plugin;
    
                import org.gradle.api.internal.project.ProjectInternal;
                import org.gradle.api.internal.tasks.userinput.UserInputHandler;
    
                public class MultipleUserInputPlugin implements Plugin<Project> {
                    @Override
                    public void apply(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/tasks/InitBuild.java

    import org.gradle.api.Incubating;
    import org.gradle.api.file.Directory;
    import org.gradle.api.file.ProjectLayout;
    import org.gradle.api.internal.tasks.userinput.NonInteractiveUserInputHandler;
    import org.gradle.api.internal.tasks.userinput.UserInputHandler;
    import org.gradle.api.internal.tasks.userinput.UserQuestions;
    import org.gradle.api.provider.Property;
    import org.gradle.api.provider.ProviderFactory;
    import org.gradle.api.tasks.Input;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserQuestions.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.userinput;
    
    import javax.annotation.Nullable;
    import java.util.Collection;
    
    /**
     * Allows the user to be asked various questions, potentially interactively.
     */
    public interface UserQuestions {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonServices.java

     * limitations under the License.
     */
    package org.gradle.launcher.daemon.server;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.api.internal.tasks.userinput.UserInputReader;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.internal.concurrent.ExecutorFactory;
    import org.gradle.internal.event.ListenerManager;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Info;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Normal;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.UserInput;
    
    /**
     * Generates a report that attempts to answer questions like:
     * <ul>
     * <li>Why is this dependency in the dependency graph?</li>
     * <li>Exactly which dependencies are pulling this dependency into the graph?</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandlerTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.userinput
    
    import org.gradle.internal.logging.events.BooleanQuestionPromptEvent
    import org.gradle.internal.logging.events.IntQuestionPromptEvent
    import org.gradle.internal.logging.events.OutputEventListener
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top