Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 62 of 62 for getBuildPath (0.11 sec)

  1. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildTreeLocalComponentProvider.java

        }
    
        @Override
        public LocalComponentGraphResolveState getComponent(ProjectComponentIdentifier projectIdentifier, Path currentBuildPath) {
            boolean isLocalProject = projectIdentifier.getBuild().getBuildPath().equals(currentBuildPath.getPath());
            if (isLocalProject) {
                return getLocalComponent(projectIdentifier, projectStateRegistry.stateFor(projectIdentifier));
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/TaskInAnotherBuild.java

            BuildIdentifier targetBuild,
            BuildTreeWorkGraphController taskGraph
        ) {
            TaskIdentifier taskIdentifier = TaskIdentifier.of(targetBuild, taskPath);
            Path taskIdentityPath = Path.path(targetBuild.getBuildPath()).append(Path.path(taskPath));
            Lazy<IncludedBuildTaskResource> target = Lazy.unsafe().of(() -> taskGraph.locateTask(taskIdentifier));
            return new TaskInAnotherBuild(taskIdentityPath, taskPath, targetBuild) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 15:09:14 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top