Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 679 for display2 (0.23 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    	FileName   string
    	UniqueName string // Disambiguates functions with same names
    	Inlined    bool   // If true this source was inlined into its caller
    
    	// Alternative names to display (with decreasing lengths) to make text fit.
    	// Guaranteed to be non-empty.
    	Display []string
    
    	// Places holds the list of stack slots where this source occurs.
    	// In particular, if [a,b] is an element in Places,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. platforms/jvm/ear/src/integTest/resources/org/gradle/plugins/ear/application_1_3.dtd

    tools used by the application ear file consumer will display the description when processing the parent element that contains the description. Used in: application, security-role --> <!ELEMENT description (#PCDATA)> <!-- The display-name element contains a short name that is intended to be displayed by tools. The display name need not be unique. Used in: application Example: <display-name>Employee Self Service</display-name> --> <!ELEMENT display-name (#PCDATA)> <!-- The ejb element specifies the URI...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/TaskReportTask.java

            return detail;
        }
    
        /**
         * Set a specific task group to be displayed.
         *
         * @since 5.1
         */
        @Option(option = "group", description = "Show tasks for a specific group.")
        public void setDisplayGroup(String group) {
            this.group = group;
        }
    
        /**
         * Returns the task group to be displayed.
         *
         * This property can be set via command-line option '--group'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/base.css

    }
    
    .content, .sidebar {
        display: inline-block;
    }
    
    .sidebar {
        float: right;
        width: 12.5rem;
    }
    
    @media screen and (max-width: 45em) {
        .container, .footer {
            max-width: 100%;
        }
        .content {
            display: block;
            width: auto;
        }
        .sidebar {
            display: none;
        }
        .container,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    /** Correct `block` display not defined in IE 8/9. */
    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    main,
    nav,
    section,
    summary {
    	display: block;
    }
    
    /** Correct `inline-block` display not defined in IE 8/9. */
    audio,
    canvas,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. JavadocStyleGuide.md

    `Settings -> Editor -> General -> Smart Keys -> "Insert closing tag on tag completion"`
    
    ### 1.5.2 Android Studio
    
    Android studio will not display javadoc following a `<p>` so make sure your summary fragment is well detailed:
    
    ```java
    /**
     * A // Displayed
     * <p>
     * B // Not displayed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformLoggingIntegrationTest.groovy

             """
    
            when:
            run("test")
    
            then:
            outputContains("Class level display name > Method display name")
            outputContains("Class level display name > Nested class display name > Nested test method display name")
        }
    
        def "should fall back to plain name if no display names present"() {
            given:
            file("src/test/java/pkg/TopLevelClass.java") << """
                package pkg;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. docs/en/docs/css/custom.css

    }
    
    a.announce-link:hover {
      color: var(--md-accent-fg-color);
    }
    
    .announce-wrapper {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
    }
    
    .announce-wrapper div.item {
      display: none;
    }
    
    .announce-wrapper .sponsor-badge {
      display: block;
      position: absolute;
      top: -10px;
      right: 0;
      font-size: 0.5rem;
      color: #999;
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 28 09:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/BuildStatusRendererTest.groovy

            renderer.onOutput(event1)
            renderer.onOutput(updateNow())
    
            then:
            statusBar.display == "<-------------> 0% INITIALIZING [0ms]"
    
            when:
            currentTimeMs += 1000
            renderer.onOutput(event2)
            renderer.onOutput(updateNow())
    
            then:
            statusBar.display == "<-------------> 0% INITIALIZING [1s]"
        }
    
        def "hides timer between build phases"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

    Help tasks
    ----------
    buildEnvironment - Displays all buildscript dependencies declared in root project '$projectName'.
    dependencies - Displays all dependencies declared in root project '$projectName'.
    dependencyInsight - Displays the insight into a specific dependency in root project '$projectName'.
    help - Displays a help message.
    javaToolchains - Displays the detected java toolchains.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top