Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 168 for display2 (0.2 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/PromptOutputEvent.java

            // Add a newline at the start of each question
            output.println();
            output.text(getPrompt());
        }
    
        /**
         * Converts the given text into the response object, or returns a new prompt to display to the user.
         */
        public abstract PromptResult<?> convert(String text);
    
        public static class PromptResult<T> {
            public final T response;
            public final String newPrompt;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/Choice.java

         *
         * @return this
         */
        Choice<T> whenNotConnected(T defaultOption);
    
        /**
         * Specifies how to display each option.
         *
         * @return this
         */
        Choice<T> renderUsing(Function<T, String> renderer);
    
        /**
         * Prompts the user to select an option.
         */
        T ask();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/validation/TypeValidationProblemRenderer.java

                    );
                    formatter.endChildren();
                }
            }
        }
    
        /**
         * This is an adhoc reformatting tool which should go away as soon as we have
         * a better way to display multiline deprecation warnings
         */
        public static String convertToSingleLine(String message) {
            return message.replaceAll("(\\r?\\n *)+", ". ")
                .replaceAll("[.]+", ".")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestOperationMapper.java

        }
    
        /**
         * This is a workaround to preserve backward compatibility with IntelliJ IDEA.
         * The problem only occurs in IntelliJ IDEA because it parses {@link OperationDescriptor#getDisplayName()} to get the test display name.
         * Once its code is updated to use {@link org.gradle.tooling.events.test.TestOperationDescriptor#getTestDisplayName()}, the workaround can be removed as well.
         * Alternatively, it can be removed in Gradle 9.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCacheFactoryTest.groovy

            when:
            def cache = factory.open(tmpDir.testDirectory, "<display>", [prop: 'value'], mode(Shared), null, null)
    
            then:
            cache.reference.cache instanceof DefaultPersistentDirectoryCache
            cache.baseDir == tmpDir.testDirectory
            cache.toString().startsWith "<display>"
    
            cleanup:
            factory.close()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

            """
    
            when:
            succeeds("thing")
    
            then:
            outputContains("prop = $display")
    
            where:
            type            | value                               | display
            "String"        | "'abc'"                             | "abc"
            "Param<String>" | "new Param<String>(display: 'abc')" | "abc"
        }
    
        def "can define task with abstract nested property"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    $ gradle build --scan
    ----
    
    For older Gradle versions, the
    https://docs.gradle.com/build-scan-plugin/#getting_set_up[Build Scan Plugin User Manual]
    explains how to enable build scans.
    
    At the end of your build, Gradle displays a URL where you can find your build scan:
    
    ----
    BUILD SUCCESSFUL in 2s
    4 actionable tasks: 4 executed
    
    Publishing build scan...
    https://gradle.com/s/e6ircx2wjbf7e
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    Most of time you will end up extracting data from your CI server via the corresponding REST API (see https://wiki.jenkins-ci.org/display/JENKINS/Remote+access+API[Jenkins remote access API] and https://confluence.jetbrains.com/display/TCD10/REST+API[Teamcity REST API]).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. internal/logger/logger.go

    var matchingFuncNames = [...]string{
    	"http.HandlerFunc.ServeHTTP",
    	"cmd.serverMain",
    	// add more here ..
    }
    
    // quietFlag: Hide startup messages if enabled
    // jsonFlag: Display in JSON format, if enabled
    var (
    	quietFlag, jsonFlag, anonFlag bool
    	// Custom function to format error
    	errorFmtFunc func(string, error, bool) string
    )
    
    // EnableQuiet - turns quiet option on.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

            return showSinglePathToDependency;
        }
    
        /**
         * Tells if the report should only display a single path to each dependency, which
         * can be useful when the graph is large. This is false by default, meaning that for
         * each dependency, the report will display all paths leading to it.
         *
         * <p>
         * This method is exposed to the command line interface. Example usage:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
Back to top