Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for myProp1 (3.8 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionIntegrationTest.groovy

            'List<Long>'     | ['--myProp=123', '--myProp=456']     | '[123, 456]'        | 'provided'
            'List<Long>'     | []                                   | 'null'              | 'not provided'
            'List<TestEnum>' | ['--myProp=OPT_2', '--myProp=OPT_3'] | '[OPT_2, OPT_3]'    | 'provided with upper case'
            'List<TestEnum>' | ['--myProp=opt_2', '--myProp=opt_3'] | '[OPT_2, OPT_3]'    | 'provided with lower case'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestInputAnnotationFailuresIntegrationTest.groovy

            "Property<File>" | "final Property<File> myProp = getObjectFactory().property(File.class)" | "myProp.set(project.layout.projectDirectory.file('myFile').getAsFile())" | 'myProp.get().absolutePath'
        }
    
        @Issue("https://github.com/gradle/gradle/issues/24979")
    
        def "cannot annotate type 'java.net.URL' with @Input"() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationKotlinDslIntegTest.groovy

                                        post.set("******@****.***")
                                    }
                                }
                                properties.set(mapOf(
                                    "myProp" to "myValue",
                                    "prop.with.dots" to "anotherValue"
                                ))
                                withXml {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

                                        post = "******@****.***"
                                    }
                                }
                                properties = [
                                    myProp: "myValue",
                                    "prop.with.dots": "anotherValue"
                                ]
                                withXml {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top