Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 862 for Display (0.2 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcBuildOperationsIntegrationTest.groovy

            file("buildSrc/src/main/java/Thing.java") << "class Thing { }"
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "includes build identifier in build operations with #display"() {
            when:
            file("buildSrc/settings.gradle") << settings << "\n"
            succeeds()
    
            then:
            def root = ops.root(RunBuildBuildOperationType)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeFixture.groovy

            def records = all(displayName)
            if (records.isEmpty()) {
                throw new AssertionFailedError("No operations found with display name that matches $displayName")
            } else if (records.size() > 1) {
                throw new AssertionFailedError("Multiple operations found with display name that matches $displayName")
            }
            return records.first()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

                }
    
                def key = new Param<String>(display: 'a')
                def map = [:]
                map[key] = new Param<Number>(display: 12)
    
                tasks.create("thing", MyTask) {
                    prop = $value
                }
            """
    
            when:
            succeeds("thing")
    
            then:
            outputContains("prop = $display")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/ComponentFileArtifactIdentifierTest.groovy

            def componentId = new DummyComponentIdentifier()
    
            expect:
            new ComponentFileArtifactIdentifier(componentId, "thing").toString() == "thing (example)"
        }
    
        def "identifiers are equal when display names are equal"() {
            def componentId = new DummyComponentIdentifier()
            def otherId = new DummyComponentIdentifier()
    
            def id = new ComponentFileArtifactIdentifier(componentId, "one")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pkg/printers/storage/storage.go

    		switch t := tableOptions.(type) {
    		case *metav1.TableOptions:
    			if t != nil {
    				noHeaders = t.NoHeaders
    			}
    		default:
    			return nil, fmt.Errorf("unrecognized type %T for table options, can't display tabular output", tableOptions)
    		}
    	}
    	return c.TableGenerator.GenerateTable(obj, printers.GenerateOptions{Wide: true, NoHeaders: noHeaders})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 26 18:18:18 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/SocketInetAddressTest.groovy

    import org.gradle.util.Matchers
    import spock.lang.Specification
    
    class SocketInetAddressTest extends Specification {
        def localhost = java.net.InetAddress.getByName("localhost")
    
        def "has useful display name"() {
            def address = new SocketInetAddress(localhost, 234)
    
            expect:
            address.displayName == "localhost/${localhost.hostAddress}:234"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

        /**
         * Returns the display granularity of the events to be logged. For example, if set to 0, a method-level event will be displayed as "Test Run &gt; Test Worker x &gt; org.SomeClass &gt; org.someMethod". If
         * set to 2, the same event will be displayed as "org.someClass &gt; org.someMethod". <p>-1 denotes the highest granularity and corresponds to an atomic test.
         *
         * @return the display granularity of the events to be logged
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandlerTest.groovy

            def resource = Stub(TextResource)
            _ * source.className >> scriptClassName
            _ * source.fileName >> scriptFileName
            _ * source.displayName >> "script-display-name"
            _ * source.longDisplayName >> Describables.of("script-display-name")
            _ * source.resource >> resource
            _ * resource.text >> scriptText
            return source
        }
    
        def testCompileScriptToDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/launcher/cli/WelcomeMessageConfiguration.java

     * limitations under the License.
     */
    
    package org.gradle.api.launcher.cli;
    
    import org.gradle.api.Incubating;
    
    import java.io.Serializable;
    
    /**
     * Configures when to display the welcome message on the command line.
     *
     * @since 7.5
     */
    @Incubating
    public class WelcomeMessageConfiguration implements Serializable {
    
        private WelcomeMessageDisplayMode welcomeMessageDisplayMode;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 13 13:24:29 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  10. maven-compat/src/site/apt/index.apt

     Plugins should avoid these classes and be updated to use only Maven3 dependencies (and require Maven3): see
     {{{https://cwiki.apache.org/confluence/display/MAVEN/Plugin+migration+to+Maven3+dependencies} Plugin migration to Maven3 dependencies}}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 24 22:50:10 UTC 2017
    - 1.3K bytes
    - Viewed (0)
Back to top