Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 431 for Display (0.22 sec)

  1. 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)
  2. 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)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultExclusiveCacheAccessCoordinatorTest.groovy

            when:
            access.open()
    
            then:
            1 * lockManager.lock(lockFile, mode(Shared), "<display-name>") >> lock
            1 * initializationAction.requiresInitialization(lock) >> true
            1 * lock.close()
    
            then:
            1 * lockManager.lock(lockFile, mode(Exclusive), "<display-name>") >> exclusiveLock
            1 * initializationAction.requiresInitialization(exclusiveLock) >> true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

            def mutableBean = create(HasMutableProperty, Describables.of("<display name>"))
    
            expect:
            finalReadOnlyBean.someValue.toString() == "<display name> property 'someValue'"
            readOnlyBean.someValue.toString() == "<display name> property 'someValue'"
            readOnlyBeanWithMapping.someValue.toString() == "<display name> property 'someValue'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratedManagedStateTest.groovy

            beanWithDisplayName.propBean.prop.toString() == "<display-name> property 'propBean.prop'"
        }
    
        def "assigns display name to read only non-final nested property that is not managed"() {
            def bean = create(NestedBeanClass)
            def beanWithDisplayName = create(NestedBeanClass, Describables.of("<display-name>"))
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.2K 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. src/main/webapp/js/suggestor.js

                    $boxElement.html("");
                    $boxElement.append($olEle);
                    $boxElement.css("display", "block");
                  } else {
                    $boxElement.css("display", "none");
                  }
                } else {
                  $boxElement.css("display", "none");
                }
                this.resize();
    
                suggestingSts = false;
              },
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top