Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for Display (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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