Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 587 for Display (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall.go

    // Package unix contains an interface to the low-level operating system
    // primitives. OS details vary depending on the underlying system, and
    // by default, godoc will display OS-specific documentation for the current
    // system. If you want godoc to display OS 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: Thu Oct 19 23:33:33 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/binary/BaseBinarySpecTest.groovy

            def e = thrown ModelInstantiationException
            e.message == "Direct instantiation of a BaseBinarySpec is not permitted. Use a @ComponentType rule instead."
        }
    
        def "binary has name and sensible display name"() {
            def binary = create(SampleBinary, MySampleBinary, "sampleBinary")
    
            expect:
            binary instanceof SampleBinary
            binary.name == "sampleBinary"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedTypeWithUnmanagedPropertiesIntegrationTest.groovy

                      tasks.create("fromPlugin") {
                        doLast {
                            println "os: $os"
                            println "name: $os.name"
                            println "display-name: $os.displayName"
                        }
                      }
                    }
                }
    
                apply type: RulePlugin
            '''
    
            then:
            succeeds "fromPlugin"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentSourcesIntegrationTest.groovy

                            doLast {
                                println "sources display name: ${sources.displayName}"
                            }
                        }
                    }
                }
            '''
    
            when:
            succeeds "printSourceDisplayName"
    
            then:
            output.contains "sources display name: Custom source 'main:someLang'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java-feature-variant/producer-separate-sourceset/tests/build.out

              \--- org.mongodb:bson:3.9.1
    
    (*) - 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 Nov 27 17:53:42 UTC 2023
    - 784 bytes
    - Viewed (0)
Back to top