Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for userInput (0.14 sec)

  1. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/AbstractUserInputHandler.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 org.gradle.api.internal.provider.Providers;
    import org.gradle.api.provider.Provider;
    import org.gradle.internal.Try;
    
    import java.util.function.Function;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

        static final String STACKTRACE = "{info}> {normal}Run with {userinput}--stacktrace{normal} option to get the stack trace."
        static final String INFO_OR_DEBUG = "{info}> {normal}Run with {userinput}--info{normal} or {userinput}--debug{normal} option to get more log output."
        static final String INFO = "{info}> {normal}Run with {userinput}--info{normal} option to get more log output."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserInputHandler.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 org.gradle.api.provider.Provider;
    import org.gradle.internal.scan.UsedByScanPlugin;
    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: Thu May 09 04:50:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 693 bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/TaskReportRenderer.java

                clientMetaData.describeCommand(output.withStyle(UserInput), "tasks --all");
                output.println();
                output.println();
                output.text("To see more detail about a task, run ");
                clientMetaData.describeCommand(output.withStyle(UserInput), "help --task <task>");
                output.println();
            }
            super.complete();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 29 11:53:41 UTC 2021
    - 5K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/DefaultUserInputHandler.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 org.apache.commons.lang.BooleanUtils;
    import org.gradle.api.Transformer;
    import org.gradle.internal.logging.events.BooleanQuestionPromptEvent;
    import org.gradle.internal.logging.events.IntQuestionPromptEvent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

                    output.text("Run with ");
                    if (isLessThanInfo) {
                        output.withStyle(UserInput).format("--%s", INFO_LONG_OPTION);
                        output.text(" or ");
                    }
                    output.withStyle(UserInput).format("--%s", DEBUG_LONG_OPTION);
                    output.text(" option to get more log output.");
                });
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClient.java

            GlobalUserInputReceiver userInput,
            IdGenerator<UUID> idGenerator,
            ProcessEnvironment processEnvironment
        ) {
            this.connector = connector;
            this.outputEventListener = outputEventListener;
            this.compatibilitySpec = compatibilitySpec;
            this.buildStandardInput = buildStandardInput;
            this.userInput = userInput;
            this.idGenerator = idGenerator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/BuildScanUserInputHandler.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 org.gradle.internal.scan.UsedByScanPlugin;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    @UsedByScanPlugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/dependencies/AsciiDependencyReportRenderer.java

    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Identifier;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Info;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.UserInput;
    
    /**
     * Simple dependency graph renderer that emits an ASCII tree.
     */
    @NonNullApi
    public class AsciiDependencyReportRenderer extends TextReportRenderer implements DependencyReportRenderer {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 13 07:41:09 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top