Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 301 for Display (0.17 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/Launchable.java

         *
         * @since 2.13
         */
        @Override
        ProjectIdentifier getProjectIdentifier();
    
        /**
         * Returns a human-consumable display name for this launchable.
         *
         * @return Display name of this launchable.
         * @since 1.12
         */
        String getDisplayName();
    
        /**
         * Returns the description of this launchable, or {@code null} if it has no description.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. releasenotes/notes/43765.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 43765
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 09 08:47:20 UTC 2023
    - 192 bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecatedFeatureUsageTest.groovy

        def "formats messages"() {
            given:
            def featureUsage = new DeprecatedFeatureUsage(summary, removalDetails, advice, contextualAdvice, documentationReference, DeprecatedFeatureUsage.Type.USER_CODE_DIRECT, "id display name", "id", getClass())
    
            expect:
            featureUsage.formattedMessage() == expected
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. releasenotes/notes/49049.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 18:21:48 UTC 2024
    - 220 bytes
    - Viewed (0)
  5. releasenotes/notes/35429.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - 35429
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 09 00:46:04 UTC 2021
    - 226 bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/FileTreeAdapterTest.groovy

        }
    
        def toStringUsesDisplayName() {
            MinimalFileTree tree = Mock()
            _ * tree.displayName >> 'display name'
    
            FileTreeAdapter adapter = newFileTreeAdapter(tree)
    
            expect:
            adapter.toString() == 'display name'
        }
    
        def visitDelegatesToTargetTree() {
            MinimalFileTree tree = Mock()
            FileTreeAdapter adapter = newFileTreeAdapter(tree)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/CalculatedValueContainerCodec.kt

                val available = readBoolean()
                if (available) {
                    val value = read()
                    // TODO - restore the correct display name when the container is attached to its owner (rather than writing the display name to the cache)
                    calculatedValueContainerFactory.create(Describables.of("unknown value"), value as Any)
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. releasenotes/notes/49443.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 15:24:34 UTC 2024
    - 168 bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsTest.kt

    import java.util.UUID
    
    
    class ConfigurationCacheBuildOperationsTest {
        @JvmField
        @Rule
        val testDirectoryProvider = TestNameTestDirectoryProvider(javaClass)
    
        @Test
        fun `sets progress display name on store`() {
            // given:
            val buildOperationRunner = mock<BuildOperationRunner> {
                on { call<Unit>(any()) } doReturn Unit
            }
            val stateFile = testDirectoryProvider.file("stateFile")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/resources/src/main/java/org/gradle/internal/resource/ResourceLocation.java

    import java.io.File;
    import java.net.URI;
    
    /**
     * Represents the location or identity of a resource.
     */
    public interface ResourceLocation {
        /**
         * Returns a display name for the resource. This can be used in log and error messages.
         *
         * @return the display name
         */
        String getDisplayName();
    
        /**
         * Returns a file representing the location of the resource. Not all resources are available as a file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top