Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for userInput (0.46 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginRequiredServices.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.enterprise;
    
    import org.gradle.api.internal.tasks.userinput.UserInputHandler;
    import org.gradle.internal.logging.text.StyledTextOutputFactory;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/DefaultBuildScanUserInputHandler.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;
    
    public class DefaultBuildScanUserInputHandler implements BuildScanUserInputHandler {
        private final UserInputHandler userInputHandler;
    
        public DefaultBuildScanUserInputHandler(UserInputHandler userInputHandler) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/AbstractUserInputHandlerIntegrationTest.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.api.logging.configuration.ConsoleOutput
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    abstract class AbstractUserInputHandlerIntegrationTest extends AbstractIntegrationSpec {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 23 21:21:49 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultUserInputReaderTest.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.test.fixtures.concurrent.ConcurrentSpec
    
    class DefaultUserInputReaderTest extends ConcurrentSpec {
        def userInputReader = new DefaultUserInputReader()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Success;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.SuccessHeader;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.UserInput;
    
    public class DefaultColorMap implements ColorMap {
        private static final String STATUS_BAR = "statusbar";
        private static final String BOLD = "bold";
        private static final String COLOR_DIVIDER = "-";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ForwardStdInToThisProcess.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.provider;
    
    import org.gradle.api.internal.tasks.userinput.UserInputReader;
    import org.gradle.initialization.BuildRequestContext;
    import org.gradle.internal.invocation.BuildAction;
    import org.gradle.internal.logging.console.GlobalUserInputReceiver;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/NonInteractiveUserInputHandlerTest.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 spock.lang.Specification
    import spock.lang.Subject
    
    class NonInteractiveUserInputHandlerTest extends Specification {
        @Subject
        def userInputHandler = new NonInteractiveUserInputHandler()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/Choice.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 java.util.function.Function;
    
    /**
     * Asks the user to select an option from a list of options. Allows the choice to be configured in various ways.
     *
     * @param <T> The type of the options of this choice.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/NonInteractiveUserInputHandler.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 java.util.Collection;
    import java.util.function.Function;
    
    public class NonInteractiveUserInputHandler extends AbstractUserInputHandler implements AbstractUserInputHandler.UserInteraction {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/text/StyledTextOutput.java

        enum Style {
            /**
             * Regular text.
             */
            Normal,
            /**
             * A header.
             */
            Header,
            /**
             * User input
             */
            UserInput,
            /**
             * An identifier for something
             */
            Identifier,
            /**
             * The description of something
             */
            Description,
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top