Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 862 for Display (0.11 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/DefaultNativePlatformTest.groovy

        def "can configure operating system"() {
            when:
            platform.operatingSystem "the-os"
    
            then:
            platform.operatingSystem.name == "the-os"
        }
    
        def "host platform has useful display name"() {
            expect:
            def host = DefaultNativePlatform.host()
            host.displayName.startsWith("host operating system")
            host.toString() == host.displayName
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/OperatingSystem.java

     *     </tr>
     * </table>
     */
    public interface OperatingSystem extends Named {
        @Input
        @Override
        String getName();
    
        /**
         * Returns a human-consumable display name for this operating system.
         */
        @Internal
        String getDisplayName();
    
        /**
         * Is this the current OS?
         */
        @Internal
        boolean isCurrent();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ResolvedVariantResult.java

         * @since 6.8
         */
        ComponentIdentifier getOwner();
    
        /**
         * The attributes associated with this variant.
         */
        AttributeContainer getAttributes();
    
        /**
         * The display name of this variant, for diagnostics.
         *
         * @since 4.6
         */
        String getDisplayName();
    
        /**
         * The capabilities provided by this variant
         *
         * @since 5.3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 00:34:16 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/LegendRenderer.java

                output.println();
                output.withStyle(Info).println("(*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.");
            }
            if (hasUnresolvableConfigurations) {
                output.println();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 03 14:10:29 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

      font-weight: bold;
    }
    /* Ensure that pprof menu is above boxes */
    .submenu { z-index: 3; }
    /* Right-click menu */
    #action-menu {
      max-width: 15em;
    }
    /* Right-click menu title */
    #action-title {
      display: block;
      padding: 0.5em 1em;
      background: #888;
      text-overflow: ellipsis;
      overflow: hidden;
    }
    /* Internal canvas used to measure text size when picking fonts */
    #textsizer {
      position: absolute;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/ui.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package typeutil
    
    // This file defines utilities for user interfaces that display types.
    
    import (
    	"go/types"
    
    	"golang.org/x/tools/internal/aliases"
    )
    
    // IntuitiveMethodSet returns the intuitive method set of a type T,
    // which is the set of methods you can call on an addressable value of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ResultsStore.java

    import java.util.Collections;
    import java.util.List;
    import java.util.Map;
    
    public interface ResultsStore extends Closeable {
        /**
         * Returns the performance experiments known to this store, in display order.
         */
        List<PerformanceExperiment> getPerformanceExperiments();
    
        /**
         * Returns the n most recent instances of the given test which are younger than the max age.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/tests/dependenciesWithBOM.out

    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. 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)
  10. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/jvm/toolchain/internal/operations/JavaToolchainUsageProgressDetails.java

        interface JavaToolchain {
    
            /**
             * Returns Java language version such as {@code 11.0.15}.
             */
            String getJavaVersion();
    
            /**
             * Returns the display name of the toolchain vendor such as {@code Eclipse Temurin}.
             * <p>
             * The value could be normalized for uniformity, and does not necessarily correspond to a system property value.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top