Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for syspropValue (0.29 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

            hasSystemProperty('mySystemProperty', 'newValue')
        }
    
        def "JVM arguments have precedence over system properties"() {
            when:
            runTask {
                withSystemProperties('customKey' : 'syspropValue')
                addJvmArguments('-DcustomKey=jvmargValue')
            }
    
            then:
            hasSystemProperty('customKey', 'jvmargValue')
        }
    
        def "Cannot modify immutable system properties"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top