Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for Display (1.33 sec)

  1. 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)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractDependencyReportTask.java

    import java.util.Comparator;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Objects;
    import java.util.Set;
    import java.util.SortedSet;
    import java.util.TreeSet;
    
    /**
     * Displays the dependency tree for a configuration.
     */
    @DisableCachingByDefault(because = "Abstract super-class, not to be instantiated directly")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. doc/next/3-tools.md

    <!-- go.dev/issue/67111 ("cmd/go: add go telemetry subcommand") -->
    The new `go` `telemetry` command can be used to view and configure the telemetry collection
    mode. Without arguments, it displays the current mode. With `local`, `on`, or `off`, it sets
    the collection mode. `go` `env` now lists two values: the `GOTELEMETRY` value, which
    contains the telemetry collection mode, and the `GOTELEMETRYDIR` value setting which contains
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/BuildStatusRenderer.java

    import org.gradle.internal.operations.BuildOperationCategory;
    import org.gradle.internal.operations.OperationIdentifier;
    
    import java.util.HashSet;
    import java.util.Locale;
    import java.util.Set;
    
    /**
     * <p>This listener displays nothing unless it receives periodic {@link UpdateNowEvent} clock events.</p>
     */
    public class BuildStatusRenderer implements OutputEventListener {
        public static final int PROGRESS_BAR_WIDTH = 13;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistryTest.groovy

            then:
            installations.size() == 1
            installations[0].location == jre
            installations[0].source == "testSource"
        }
    
        def "displays progress"() {
            def jdk8 = createJdkInstallation("8")
            when:
            def registry = createRegistry([jdk8])
            def toolchains = registry.toolchains()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top