Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 588 for Display (0.25 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultSourceDirectorySetTest.groovy

        void setup() {
            set = new DefaultSourceDirectorySet('files', '<display-name>', patternSetFactory, taskDependencyFactory, fileCollectionFactory, directoryFileTreeFactory, objectFactory)
        }
    
        void hasUsefulToString() {
            expect:
            set.displayName == '<display-name>'
            set.toString() == '<display-name>'
        }
    
        void viewsHaveSameDisplayNameAsSet() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/TestClassResult.java

        }
    
        private boolean hasDefaultDisplayName() {
            // both JUnit Jupiter and Vintage use the simple class name as the default display name
            // so we use this as a heuristic to determine whether the display name was customized
            return className.endsWith("." + classDisplayName) || className.endsWith("$" + classDisplayName);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/templates/home.html

            }
    
            function onerror(e) {
                console.error(e);
            }
        }
    
        function terminateProcess() {
            document.getElementById("terminate").style.display = "none";
            document.getElementById("terminated").style.display = "block";
    
            var url = window.location.protocol + "//" + window.location.host + "/homej/exit";
    
            var ajax = new XMLHttpRequest();
            ajax.onload = onload;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionInternal.java

         */
        void visitStructure(FileCollectionStructureVisitor visitor);
    
        /**
         * Returns the display name of this file collection. Used in log and error messages.
         *
         * @return the display name
         */
        String getDisplayName();
    
        /**
         * Appends diagnostic information about the contents of this collection to the given formatter.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/TestDisplayNameSpockCrossVersionSpec.groovy

                }
    
                test {
                    useJUnitPlatform()
                }
            }
            """
        }
    
        def "reports display names of class and method"() {
            file("src/test/groovy/org/example/SimpleTests.groovy") << """package org.example
    
    import spock.lang.Specification
    
    class SimpleTests extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/manifest.json

            {
                "src": "favicons/pwa-512x512.png",
                "sizes": "512x512",
                "type": "image/png"
            }
        ],
        "theme_color": "#466BB0",
        "background_color": "#ffffff",
        "display": "standalone"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 442 bytes
    - Viewed (0)
  9. releasenotes/notes/43706.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    
    issue:
    - 43705
    
    releaseNotes:
    - |
      **Added** `istioctl analyze` will display a error when encountering the following two situations:
      - For any namespace, if there are multiple Telemetry CRs without selector,
      - For any namespace, if there are multiple telemetry CRs with selector that select the same workload.
      
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 06:56:06 UTC 2023
    - 380 bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Describables.java

    import org.gradle.api.Describable;
    
    public class Describables {
        private Describables() {
        }
    
        /**
         * Returns a describable that converts the provided value to a string each time the display name is queried. Can pass a {@link Describable} or {@link DisplayName}.
         */
        public static DisplayName of(Object displayName) {
            if (displayName instanceof DisplayName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.9K bytes
    - Viewed (0)
Back to top