Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 336 for Display (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/style.css

        background-position: -18px 0;
        display: inline-block;
        width: 18px;
        height: 18px;
        position: relative;
        top: 4px;
    }
    .configuration h3.closed  ins {
        background-position: 0 0;
    }
    #dependencies {
        margin-right: 30px;
    }
    #insight {
        position: fixed;
        right: 50px;
        top: 50px;
        display: none;
        width: 70%;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 18 00:02:31 UTC 2014
    - 2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/AbstractDynamicObject.java

                return new MissingPropertyException(String.format("Could not get unknown property '%s' for object of type %s.", name,
                        publicType.getName()), name, publicType);
            } else {
                // Use the display name anyway
                return new MissingPropertyException(String.format("Could not get unknown property '%s' for %s.", name,
                        getDisplayName()), name, null);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/tasks/testing/TestDescriptor.java

         *
         * @return The test name
         */
        String getName();
    
        /**
         * Returns the display name of the test. It may be the same as or different from {@link #getName()}
         *
         * @return the name for display.
         * @since 6.1
         */
        String getDisplayName();
    
        /**
         * Returns the test class name for this test, if any.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top