Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 137 for Display (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

                                operationDisplayName "a class display name"
                                testDisplayName "a class display name"
                                test("test()") {
                                    operationDisplayName "and a test display name"
                                    testDisplayName "and a test display name"
                                }
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIdentityIntegrationTest.groovy

            where:
            settings                     | buildName | dependencyName | display
            ""                           | "buildB"  | "buildB"       | "default root project name"
            "rootProject.name='someLib'" | "buildB"  | "someLib"      | "configured root project name"
        }
    
        def "includes build identifier in dependency report with #display"() {
            dependency "org.test:${dependencyName}:1.0"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.css

        background-position: 17px 80%;
        background-repeat: no-repeat;
        background-size: 11px 11px;
        padding-left: 2.3em;
    }
    
    .multi-language-selector {
        display: block;
    }
    
    .multi-language-selector .language-option[data-lang='groovy'] {
        background-position: 20px center;
        padding-left: 32px;
    }
    
    .multi-language-selector .language-option[data-lang='kotlin'] {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 00:27:34 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CollectionPropertyIntegrationTest.groovy

            then:
            outputContains("prop = $display")
    
            where:
            type            | value                                                                | display
            "String"        | '["a", "b", "c"]'                                                    | '[a, b, c]'
            "Param<String>" | '[new Param<String>(display: "a"), new Param<String>(display: "b")]' | '[a, b]'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:57:00 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      let currentDeleteTarget = null;
    
      function showDialog(dialog) {
        if (currentDialog != null) {
          overlay.style.display = 'none';
          currentDialog.style.display = 'none';
        }
        currentDialog = dialog;
        if (dialog != null) {
          overlay.style.display = 'block';
          dialog.style.display = 'block';
        }
      }
    
      function cancelDialog(e) {
        showDialog(null);
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top