Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 357 for display2 (0.71 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    The dependency tree indicates the selected version of each dependency.
    It also displays information about dependency conflict resolution.
    
    The `dependencies` task can be especially helpful for issues related to transitive dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/plugins/TestSuiteModelIntegrationSpec.groovy

                            doLast {
                                println "sources display name: ${sources.displayName}"
                            }
                        }
                    }
                }
            '''
    
            when:
            succeeds "printSourceDisplayName"
    
            then:
            output.contains "sources display name: Custom source 'main:main'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/AbstractFileCollectionTest.groovy

            expect:
            try {
                collection.getSingleFile()
                fail()
            } catch (IllegalStateException e) {
                assertThat(e.getMessage(), equalTo("Expected collection-display-name to contain exactly one file, however, it contains more than one file."))
            }
        }
    
        void failsToGetSingleFileWhenCollectionIsEmpty() {
            TestFileCollection collection = new TestFileCollection()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

        public CLIManager() {
            options = new Options();
            options.addOption(Option.builder(Character.toString(HELP))
                    .longOpt("help")
                    .desc("Display help information")
                    .build());
            options.addOption(Option.builder(Character.toString(ALTERNATE_POM_FILE))
                    .longOpt("file")
                    .hasArg()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ModelSetIntegrationTest.groovy

                        println "display-name: $people.displayName"
                        println "to-string: ${people.toString()}"
                      }
                    }
                  }
                }
            '''
    
            then:
            succeeds "printPeople"
    
            and:
            output.contains "name: people"
            output.contains "display-name: ModelSet<Person> 'people'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  7. src/net/mail/message_test.go

    			[]*Address{{
    				Name:    "Joe Q. Public",
    				Address: "******@****.***",
    			}},
    		},
    		// Comment in display name
    		{
    			`John (middle) Doe <******@****.***e>`,
    			[]*Address{{
    				Name:    "John Doe",
    				Address: "******@****.***e",
    			}},
    		},
    		// Display name is quoted string, so comment is not a comment
    		{
    			`"John (middle) Doe" <******@****.***e>`,
    			[]*Address{{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    In order to be able to visualize such issues, the outgoing variant reports handle those errors in a lenient fashion.
    This allows the report to display information about the issue.
    
    === Resolvable configurations report
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.jar

    ClassNotFoundExcepti; public abstract java.net.URL getResource(String); public abstract java.util.Enumeration findResources(String) throws java.io.IOException; public abstract java.io.InputStream getResourceAsStream(String); public abstract void display(); } org/codehaus/classworlds/ClassRealmAdapter.class package org.codehaus.classworlds; public synchronized class ClassRealmAdapter implements ClassRealm { private static java.util.HashMap instances; private org.codehaus.plexus.classworlds.realm.ClassRealm...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 41.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    `--foreground`::
    Starts the Gradle Daemon in a foreground process.
    
    `--status` (Standalone command)::
    Run `gradle --status` to list running and recently stopped Gradle daemons. It only displays daemons of the same Gradle version.
    
    `--stop` (Standalone command)::
    Run `gradle --stop` to stop all Gradle Daemons of the same version.
    
    `-Dorg.gradle.daemon.idletimeout=(number of milliseconds)`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top