Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 366 for display2 (0.54 sec)

  1. src/internal/trace/traceviewer/http.go

      on the same logical processor. Clicking on the event displays the stack trace
      at the moment it occurred.
    </p>
    <p>
      The causal relationships between spans of goroutine execution
      can be displayed by clicking the Flow Events button at the top.
    </p>
    <p>
      At the top ("STATS"), there are three additional timelines that
      display statistical information.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    
    @UnsupportedWithConfigurationCache(because = "software model")
    class ModelReportIntegrationTest extends AbstractIntegrationSpec {
    
        def "displays basic structure of an empty project"() {
            given:
            buildFile
    
            when:
            run "model"
    
            then:
            def modelReportOutput = ModelReportOutput.from(output)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        return true;
      }
    
      // Display action menu (triggered by right-click on a frame)
      function showActionMenu(e, box) {
        if (box.src == 0) return; // No action menu for root
        e.preventDefault(); // Disable browser context menu
        const src = stacks.Sources[box.src];
        actionTitle.innerText = src.Display[src.Display.length-1];
        const menu = actions;
        menu.style.display = 'block';
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/plugins/HelpTasksPlugin.java

                String description;
                if (noChildren) {
                    description = "Displays the tasks runnable from " + projectName + ".";
                } else {
                    description = "Displays the tasks runnable from " + projectName + " (some of the displayed tasks may belong to subprojects).";
                }
                task.setDescription(description);
                task.setGroup(HELP_GROUP);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 30 16:15:23 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

        /**
         * Returns the display granularity of the events to be logged. For example, if set to 0, a method-level event will be displayed as "Test Run &gt; Test Worker x &gt; org.SomeClass &gt; org.someMethod". If
         * set to 2, the same event will be displayed as "org.someClass &gt; org.someMethod". <p>-1 denotes the highest granularity and corresponds to an atomic test.
         *
         * @return the display granularity of the events to be logged
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/ObjectExtensionInstantiationIntegrationTest.groovy

                println("no display name = \${noDisplayName}")
                println("display name = \${displayName}")
            """
    
            expect:
            succeeds()
            outputContains("no display name = extension 'no-name'")
            outputContains("display name = <display name>")
        }
    
        def "generates a display name for settings extension"() {
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 16.9K 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