Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for idsOfBuildTree (0.11 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/internal/scopeids/ScopeIdsIntegrationTest.groovy

                    dir = file("other")
                }
            """
    
            then:
            succeeds "t"
            scopeIds.lastBuildPaths() == [":", ":other"]
            def ids = scopeIds.idsOfBuildTree(0)
            ids[":"].workspace != ids[":other"].workspace
        }
    
        def "gradle-build builds with different gradle user home does not inherit user id"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScopeIdsFixture.groovy

        }
    
        int getBuildCount() {
            idsOfBuildTrees.size()
        }
    
        List<ScopeIds> getIds() {
            idsOfBuildTrees.collect { it.get(":") }
        }
    
        Map<String, ScopeIds> idsOfBuildTree(int buildNum) {
            idsOfBuildTrees.get(buildNum)
        }
    
        ScopeIds ids(int buildNum) {
            assert idsOfBuildTrees.size() > buildNum
            getIds()[buildNum]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top