Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for WithPath (0.16 sec)

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

            then:
            verifyTaskIds()
            def expectedTasks = [
                withPath(':buildSrc', ':sub:jar'),
                withPath(':buildSrc', ':jar'),
                withPath(':comp', ':sub:build'),
                withPath(':comp', ':build'),
                withPath(':', ':sub:build'),
                withPath(':', ':build')
            ]
            expectedTasks.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

                for (int i = 0; i < inputs.size(); i++) {
                    ModelReference<?> input = inputs.get(i);
                    if (input.getPath() != null) {
                        inputs.set(i, input.withPath(targetPath.descendant(input.getPath())));
                    } else {
                        inputs.set(i, input.inScope(ModelPath.ROOT));
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top