Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 862 for Display (0.13 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ConsoleStub.java

            }
    
            public List<String> getDisplay() {
                List<String> display = new ArrayList<String>(testableLabels.size());
                for (TestableRedrawableLabel label : testableLabels) {
                    display.add(label.getDisplay());
                }
                return display;
            }
    
            void redraw() {
                for (TestableRedrawableLabel label : testableLabels) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ProcessMetaDataProvider.java

         * Returns a unique identifier for this process. Should be unique across all processes on the local machine.
         */
        String getProcessIdentifier();
    
        /**
         * Returns a display name for this process. Should allow a human to figure out which process the display name refers to.
         */
        String getProcessDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/javadoc.css

    div.checkboxes > label > input {
        margin: 0 2px;
    }
    .two-column-summary {
        display: grid;
        grid-template-columns: minmax(25%, max-content) minmax(25%, auto);
    }
    .three-column-summary {
        display: grid;
        grid-template-columns: minmax(15%, max-content) minmax(20%, max-content) minmax(20%, auto);
    }
    .three-column-release-summary {
        display: grid;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ComponentIdentifier.java

     *
     * @since 1.10
     */
    @UsedByScanPlugin
    public interface ComponentIdentifier {
        /**
         * Returns a human-consumable display name for this identifier.
         *
         * @return Component identifier display name
         * @since 1.10
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 09 14:40:00 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/internal/resource/Resource.java

     */
    public interface Resource extends Describable {
        /**
         * Returns a display name for this resource. This can be used in log and error messages.
         *
         * @return the display name
         */
        @Override
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/release-notes.css

    h4 {
      margin-top: 1rem;
      font-size: 1.0625rem;
      font-style: italic;
    }
    
    pre {
        overflow: auto;
    }
    
    ul.toc-sub {
      margin-bottom: 0;
    }
    
    button.display-toggle {
      cursor: pointer;
    }
    
    a.incubating-marker {
      display: inline;
      color: white;
      font-style: italic;
      font-size: 0.6em;
      text-shadow: none;
      margin-left: 0.6em;
      border-radius: 6px;
      background-color: rgb(160, 160, 160);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. docs/en/docs/js/custom.js

            children = shuffle(children)
            let index = 0
            const announceRandom = () => {
                children.forEach((el, i) => {el.style.display = "none"});
                children[index].style.display = "block"
                index = (index + 1) % children.length
            }
            announceRandom()
            setInterval(announceRandom, timeInterval
            )
        }
    }
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 08 17:50:56 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ConsoleLayoutCalculator.java

        /**
         * Calculate number of Console lines to use for work-in-progress display.
         *
         * @param ideal number of Console lines
         * @return height of progress area.
         */
        public int calculateNumWorkersForConsoleDisplay(int ideal) {
            if (maximumAvailableLines == -1) {
                // Disallow work-in-progress to take up more than half of the console display
                // If the screen size is unknown, allow 4 lines
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ScalarCollectionIntegrationTest.groovy

                    println "display-name: \$strings.displayName"
                }
            }
        }
    }
    
    apply plugin: Rules
    """
    
            when:
            run("show")
    
            then:
            output.contains("strings: ${type.simpleName}<String> 'strings'")
            output.contains("name: strings")
            output.contains("display-name: ${type.simpleName}<String> 'strings'")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/ComponentSelector.java

     * expose specific details about the criteria.
     *
     * @since 1.10
     */
    @UsedByScanPlugin
    public interface ComponentSelector {
        /**
         * Returns a human-consumable display name for this selector.
         *
         * @return Display name
         * @since 1.10
         */
        String getDisplayName();
    
        /**
         * Checks if selector matches component identifier.
         *
         * @param identifier Component identifier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2K bytes
    - Viewed (0)
Back to top