Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 244 for Display (0.46 sec)

  1. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/modifiers/NamesTest.groovy

    package org.gradle.buildinit.plugins.internal.modifiers
    
    import spock.lang.Specification
    
    
    class NamesTest extends Specification {
        enum Test {
            ONE,
            THING_TWO
        }
    
        def "calculates display name"() {
            expect:
            Names.displayNameFor(Test.ONE) == "one"
            Names.displayNameFor(Test.THING_TWO) == "thing two"
        }
    
        def "calculates id"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/ComponentSelector.java

    /**
     * Represents a component selector. Used for displaying unresolved dependency warnings in the IDE.
     *
     * @since 6.7
     */
    public interface ComponentSelector {
    
        /**
         * Returns a human-readable display name for this selector.
         */
        String getDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 925 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedConfigurationApiIntegrationTest.groovy

    }
    
    task show {
        inputs.files configurations.compile
        doLast {
            println "files: " + configurations.compile.resolvedConfiguration.resolvedArtifacts.collect { it.file.name }
            println "display-names: " + configurations.compile.resolvedConfiguration.resolvedArtifacts.collect { it.toString() }
            println "ids: " + configurations.compile.resolvedConfiguration.resolvedArtifacts.collect { it.id.toString() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 18:17:47 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

         \--- com.google.j2objc:j2objc-annotations:1.3
    
    (*) - Indicates repeated occurrences of a transitive dependency subtree. Gradle expands transitive dependency subtrees only once per project; repeat occurrences only display the root of the subtree, followed by this annotation.
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalPluginIdentifier.java

    /**
     * DO NOT CHANGE THIS INTERFACE. It is part of the cross-version protocol.
     *
     * @since 5.1
     */
    public interface InternalPluginIdentifier extends InternalProtocolInterface {
    
        /**
         * Returns the display name of this plugin.
         */
        String getDisplayName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1018 bytes
    - Viewed (0)
  6. src/syscall/syscall.go

    // Package syscall contains an interface to the low-level operating system
    // primitives. The details vary depending on the underlying system, and
    // by default, godoc will display the syscall documentation for the current
    // system. If you want godoc to display syscall documentation for another
    // system, set $GOOS and $GOARCH to the desired system. For example, if
    // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/prebuilt/DefaultPrebuiltLibraryTest.groovy

     */
    
    package org.gradle.nativeplatform.internal.prebuilt
    
    
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    class DefaultPrebuiltLibraryTest extends Specification {
        def "has useful display name"() {
            def lib = new DefaultPrebuiltLibrary("someLib", TestUtil.objectFactory(), TestUtil.domainObjectCollectionFactory())
    
            expect:
            lib.toString() == "prebuilt library 'someLib'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/DisplayName.java

     * limitations under the License.
     */
    
    package org.gradle.internal;
    
    import org.gradle.api.Describable;
    
    public interface DisplayName extends Describable {
        /**
         * Returns a display name that can be used at the start of a sentence.
         */
        String getCapitalizedDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 867 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/PluginIdentifier.java

    /**
     * Identifies a Gradle plugin.
     *
     * @since 5.1
     * @see BinaryPluginIdentifier
     * @see ScriptPluginIdentifier
     */
    public interface PluginIdentifier {
    
        /**
         * Returns a human-readable display name for this plugin.
         */
        String getDisplayName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 918 bytes
    - Viewed (0)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildOperationIntegrationTest.groovy

        def operations = new BuildOperationsFixture(executer, temporaryFolder)
    
        @ToBeFixedForConfigurationCache
        def "generates configure, task graph and run tasks operations for source dependency build with #display"() {
            given:
            repo.file("settings.gradle") << """
                ${settings}
            """
            repo.file("build.gradle") << """
                apply plugin: 'java'
                group = 'org.test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top