Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 862 for Display (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFileCollectionFactoryTest.groovy

            collection.toString() == "file collection"
    
            def tree = collection.asFileTree
            emptyTree(tree)
            tree.toString() == "file tree"
        }
    
        def "constructs empty collection with display name"() {
            expect:
            def collection = FileCollectionFactory.empty("some collection")
            collection.files.empty
            collection.buildDependencies.getDependencies(null).empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.txt

    istio.io/telemetry/stats/prometheus/sidecar/Inbound/TCP       
    istio.io/telemetry/stats/prometheus/sidecar/Outbound/HTTP     
    istio.io/telemetry/stats/prometheus/sidecar/Outbound/TCP      
    default.display-metadata                                      envoy.extensions.filters.http.wasm.v3.Wasm
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 528 bytes
    - Viewed (0)
  6. CODE_OF_CONDUCT.md

    ## Code of Conduct
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 19 08:04:37 UTC 2019
    - 269 bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportTaskIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class ModelReportTaskIntegrationTest extends AbstractIntegrationSpec {
    
        def "should display the model report task options"() {
            when:
            run "help", "--task", "model"
    
            then:
            output.contains("Displays the configuration model of root project '${getTestDirectory().name}'. [deprecated]")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 29 12:52:59 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelMapIntegrationTest.groovy

                        println "display-name: $things.displayName"
                        println "to-string: ${things.toString()}"
                      }
                    }
                  }
                }
            '''
    
            then:
            succeeds "print"
    
            and:
            output.contains "name: things"
            output.contains "display-name: ModelMap<Thing> 'things'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/TestDisplayNameJUnit4CrossVersionSpec.groovy

                ${mavenCentralRepository()}
                dependencies {
                    testImplementation("junit:junit:4.13.2")
                }
            }
            """
        }
    
        def "reports display names of class and method"() {
            file("src/test/java/org/example/SimpleTests.java") << """package org.example;
    
    import org.junit.Test;
    
    public class SimpleTests {
    
        @Test
        public void test() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/exceptions/LocationAwareException.java

            super(cause);
            this.sourceDisplayName = sourceDisplayName;
            this.lineNumber = lineNumber;
        }
    
        /**
         * <p>Returns the display name of the script where this exception occurred.</p>
         *
         * @return The source display name.
         */
        @Nullable
        public String getSourceDisplayName() {
            return sourceDisplayName;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top