Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 336 for Display (0.3 sec)

  1. docs/en/docs/css/termynal.css

        width: 100%;
        text-align: center;
    }
    
    a[data-terminal-control] {
        text-align: right;
        display: block;
        color: #aebbff;
    }
    
    [data-ty] {
        display: block;
        line-height: 2;
    }
    
    [data-ty]:before {
        /* Set up defaults and ensure empty lines are displayed. */
        content: '';
        display: inline-block;
        vertical-align: middle;
    }
    
    [data-ty="input"]:before,
    [data-ty-prompt]:before {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

      font-size: 13px;
      line-height: 1.4;
      display: flex;
      flex-direction: column;
    }
    a {
      color: #2a66d9;
    }
    .header {
      display: flex;
      align-items: center;
      height: 44px;
      min-height: 44px;
      background-color: #eee;
      color: #212121;
      padding: 0 1rem;
    }
    .header > div {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  3. Development.md

    ### Remove generic suggestions
    
    For some scenarios, it doesn't make sense to display all the generic suggestions we currently have.
    E.g. `--stacktrace` for a compilation error is not helpful.
    
    To influence the generic suggestions Gradle displays, the NonGradleCause interface was introduced.
    If an exception implements this interface, Gradle will not display the `--stacktrace` option.
    
    Another more targeted interface is `CompilationFailedIndicator`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/WorkInProgressRendererTest.groovy

            renderer.onOutput(updateNow())
            console.flush()
    
            then:
            progressArea.display == ["> :foo"]
    
            and:
            renderer.onOutput(complete(2))
            renderer.onOutput(updateNow())
            console.flush()
    
            then:
            progressArea.display == ["> :bar"]
        }
    
        def "forward the event unmodified to the listener"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryStoreTest.groovy

            }
        }
    
        @Subject @AutoCleanup
        def store = new DefaultPersistentDirectoryStore(cacheDir, "<display>", mode(OnDemand), cacheCleanup, lockManager, Mock(ExecutorFactory), buildOperationRunner)
    
        def "has useful toString() implementation"() {
            expect:
            store.toString() == "<display> ($cacheDir)"
        }
    
        def "open creates directory if it does not exist"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryCacheTest.groovy

            def emptyDir = temporaryFolder.getTestDirectory().file("dir")
    
            expect:
            emptyDir.assertDoesNotExist()
    
            when:
            def cache = new DefaultPersistentDirectoryCache(emptyDir, "<display-name>", properties, mode(FileLockManager.LockMode.Shared), initializationAction, cacheCleanup, lockManager, Mock(ExecutorFactory), buildOperationRunner)
            try {
                cache.open()
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/AbstractDynamicObjectTest.java

    public class AbstractDynamicObjectTest {
        private final AbstractDynamicObject object = new AbstractDynamicObject() {
            @Nonnull
            public String getDisplayName() {
                return "<display-name>";
            }
        };
    
        @Test
        public void hasNoProperties() {
            assertFalse(object.hasProperty("something"));
            assertTrue(object.getProperties().isEmpty());
    
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

    .daterangepicker .drp-calendar.left...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/TestStyledLabel.groovy

    import org.gradle.internal.logging.text.StyledTextOutput
    
    class TestStyledLabel implements StyledLabel {
        String display = ""
        Map<String, StyledTextOutput.Style> stringToStyleMap = new HashMap<>()
    
        String getDisplay() {
            display
        }
    
        void setText(String text) {
            display = text
        }
    
        @Override
        void setText(StyledTextOutputEvent.Span span) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/resources/org/gradle/reporting/base-style.css

    }
    
    ul.tabLinks a {
        font-size: 120%;
        display: block;
        outline: none;
        text-decoration: none;
        margin: 0;
        padding: 0;
    }
    
    ul.tabLinks li h2 {
        margin: 0;
        padding: 0;
    }
    
    div.tab {
    }
    
    div.selected {
        display: block;
    }
    
    div.deselected {
        display: none;
    }
    
    div.tab table {
        min-width: 350px;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 10 15:05:34 UTC 2020
    - 2.6K bytes
    - Viewed (0)
Back to top