Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 69 for userInput (0.24 sec)

  1. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ReportGeneratingProfileListener.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.File;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.UserInput;
    
    @ServiceScope(Scope.BuildTree.class)
    public class ReportGeneratingProfileListener {
        private final StyledTextOutputFactory textOutputFactory;
        private final BuildStateRegistry buildStateRegistry;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/UserInputStandardOutputRenderer.java

    public class UserInputStandardOutputRenderer extends AbstractUserInputRenderer {
        public UserInputStandardOutputRenderer(OutputEventListener delegate, GlobalUserInputReceiver userInput) {
            super(delegate, userInput);
        }
    
        @Override
        void startInput() {
        }
    
        @Override
        void handlePrompt(RenderableOutputEvent event) {
            delegate.onOutput(event);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ProjectReportTask.java

                textOutput.withStyle(UserInput),
                exampleProject.tasksTaskPath
            );
            textOutput.println();
    
            if (!model.isRootProject) {
                textOutput.println();
                textOutput.text("To see a list of all the projects in this build, run ");
                metaData.describeCommand(
                    textOutput.withStyle(UserInput),
                    model.rootProjectProjectsTaskPath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/BuildLayoutValidator.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.List;
    
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.UserInput;
    import static org.gradle.internal.scripts.ScriptFileUtil.getValidBuildFileNames;
    import static org.gradle.internal.scripts.ScriptFileUtil.getValidSettingsFileNames;
    
    @ServiceScope(Scope.BuildSession.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 07:26:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/LoggingBackedStyledTextOutputTest.groovy

            output.style(Header)
            output.text('')
            output.style(Normal)
            output.style(UserInput)
            output.println()
    
            then:
            1 * listener.onOutput(!null) >> { args ->
                def event = args[0]
                assert event.spans.size() == 1
                assert event.spans[0].style == UserInput
                assert event.spans[0].text == toNative('\n')
            }
            0 * listener._
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventRenderer.java

        private ListenerBroadcast<StandardOutputListener> userStderrListeners;
    
        public OutputEventRenderer(final Clock clock, GlobalUserInputReceiver userInput) {
            this.clock = clock;
            this.userInput = userInput;
        }
    
        @Override
        public Snapshot snapshot() {
            synchronized (lock) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/api/internal/tasks/userinput/DefaultBuildScanUserInputHandlerTest.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.internal.provider.Providers
    import spock.lang.Specification
    import spock.lang.Subject
    
    import java.util.function.Function
    
    class DefaultBuildScanUserInputHandlerTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginRequiredServicesIntegrationTest.groovy

     * 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.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.internal.logging.text.StyledTextOutputFactory
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginRequiredServices.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.enterprise.impl;
    
    import org.gradle.api.internal.tasks.userinput.UserInputHandler;
    import org.gradle.internal.enterprise.DevelocityPluginUnsafeConfigurationService;
    import org.gradle.internal.enterprise.GradleEnterprisePluginRequiredServices;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 16:27:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/ForwardClientInput.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.launcher.daemon.server.exec;
    
    import org.gradle.api.internal.tasks.userinput.UserInputReader;
    import org.gradle.internal.logging.events.OutputEventListener;
    import org.gradle.launcher.daemon.server.api.DaemonCommandAction;
    import org.gradle.launcher.daemon.server.api.DaemonCommandExecution;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top