Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isDescendant (0.17 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/ModelPathTest.groovy

            expect:
            ModelPath.ROOT.isDescendant(ModelPath.path("p"))
            ModelPath.ROOT.isDescendant(ModelPath.path("a.b"))
            !ModelPath.ROOT.isDescendant(ModelPath.ROOT)
    
            ModelPath.path("a.b").isDescendant(ModelPath.path("a.b.c"))
            ModelPath.path("a.b").isDescendant(ModelPath.path("a.b.c.d.e"))
            !ModelPath.path("a.b").isDescendant(ModelPath.path("a.a"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top