Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 360 for promv1 (0.15 sec)

  1. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandler.java

                return prompt(prompt, defaultValue, sanitizedValue -> sanitizedValue);
            }
    
            private <T> T prompt(PromptOutputEvent prompt, final T defaultValue, final Transformer<T, String> parser) {
                T result = prompt(prompt, sanitizedInput -> {
                    if (sanitizedInput.isEmpty()) {
                        return defaultValue;
                    }
                    return parser.transform(sanitizedInput);
                });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. releasenotes/notes/prom-rewrite.yaml

    Brian Avery <******@****.***> 1597180858 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 208 bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/promotion/StartReleaseCycle.kt

                text("confirmationCode", "", label = "Confirmation Code", description = "Enter the value 'startCycle' (no quotes) to confirm the promotion", display = ParameterDisplay.PROMPT, allowEmpty = false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/AbstractUserInputRenderer.java

            // Start capturing input prior to displaying the prompt so that the input received after the prompt is displayed will be captured.
            // This does leave a small window where some text may be captured prior to the prompt being fully displayed, however this is
            // better than doing things in the other order, where there will be a small window where text may not be captured after prompt is fully displayed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/PromptOutputEvent.java

    /**
     * Requests that the client present the given prompt to the user and return the user's response as a single line of text.
     *
     * The response is delivered to the {@link UserInputReader} service.
     */
    public abstract class PromptOutputEvent extends RenderableOutputEvent implements InteractiveEvent {
        public PromptOutputEvent(long timestamp) {
            super(timestamp, "prompt", LogLevel.QUIET, null);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/term/terminal.go

    // a local terminal, that terminal must first have been put into raw mode.
    // prompt is a string that is written at the start of each input line (i.e.
    // "> ").
    func NewTerminal(c io.ReadWriter, prompt string) *Terminal {
    	return &Terminal{
    		Escape:       &vt100EscapeCodes,
    		c:            c,
    		prompt:       []rune(prompt),
    		termWidth:    80,
    		termHeight:   24,
    		echo:         true,
    		historyIndex: -1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 22.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/AnnotationProcessorDiscoveringCompilerTest.groovy

            given:
            def proc1 = Stub(AnnotationProcessorDeclaration)
            def proc2 = Stub(AnnotationProcessorDeclaration)
            detector.detectProcessors(_) >> [
                "Foo": proc1,
                "Bar": proc2
            ]
    
            when:
            compiler.execute(spec)
    
            then:
            spec.effectiveAnnotationProcessors == [proc1, proc2] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. docs/en/docs/js/custom.js

                            const promptStart = line.indexOf(promptLiteralStart);
                            if (promptStart === -1) {
                                console.error("Custom prompt found but no end delimiter", line)
                            }
                            const prompt = line.slice(0, promptStart).replace(customPromptLiteralStart, "")
                            let value = line.slice(promptStart + promptLiteralStart.length);
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 08 17:50:56 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r62/CapturingMultipleUserInputCrossVersionSpec.groovy

                runBuildWithStandardInput(connection, 'something one', 'something two')
            }
    
            then:
            output.contains(FOO.prompt)
            output.contains(FOO.answerOutput('something one'))
            output.contains(BAR.prompt)
            output.contains(BAR.answerOutput('something two'))
        }
    
        def "can capture multiple user input if standard input was provided using default values"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. maven-jline/src/main/java/org/apache/maven/jline/JLineMessageBuilderFactory.java

        }
    
        @Override
        public String prompt(String message) throws PrompterException {
            return prompt(message, null, null);
        }
    
        @Override
        public String prompt(String message, String defaultReply) throws PrompterException {
            return prompt(message, null, defaultReply);
        }
    
        @Override
        public String prompt(String message, List possibleValues) throws PrompterException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top