Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 862 for Display (0.15 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

         *
         * @param displayNames candidate display names (may be different depending on the Gradle version under test)
         */
        List<Operation> operations(String... displayNames) {
            assertHasZeroOrMoreTrees()
            return operations.findAll { it.descriptor.displayName in displayNames }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  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. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

            display(SimpleMessage, 'dummy') {
                type(onType).property(onProperty)
                description(desc)
                reason(testReason)
            }.render()
        }
    
        String dummyValidationProblemWithLink(String onType = 'InvalidTask', String onProperty = 'dummy', String desc = 'test problem', String testReason = 'this is a test.') {
            display(SimpleMessage, 'dummy') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K 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. test-site/public/javascripts/suggestor.js

                            $boxElement.append($olEle);
                            $boxElement.css("display","block");
                        } else {
                            $boxElement.css("display","none");
                        }
                    } else {
                        $boxElement.css("display","none");
                    }
                    //ポジション設定
                    this.resize();
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K 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