Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for doSomethingElse (0.22 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptVisibilityIntegrationTest.groovy

    def doSomething(def value) {
        return "{" + value + "}"
    }
    private String doSomethingElse(def value) {
        return "[" + value + "]"
    }
    println "root: " + doSomething(10)
    println "root: " + doSomethingElse(10)
    """
            file("child1/build.gradle") << """
    println "child: " + doSomething(11)
    println "child: " + doSomethingElse(11)
    """
    
            expect:
            // Invoke twice to exercise script caching
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top