Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for calculateIdentityPathForProject (0.55 sec)

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

        @Override
        public <T> T run(Function<? super BuildTreeLifecycleController, T> buildAction) {
            return buildAction.apply(buildTreeLifecycleController);
        }
    
        @Override
        public Path calculateIdentityPathForProject(Path projectPath) {
            return getBuildController().getGradle().getIdentityPath().append(projectPath);
        }
    
        @Override
        public File getBuildRootDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 05 13:02:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuild.java

            }
        }
    
        @Override
        public File getBuildRootDir() {
            return buildDefinition.getBuildRootDir();
        }
    
        @Override
        public Path calculateIdentityPathForProject(Path projectPath) {
            return getIdentityPath().append(projectPath);
        }
    
        @Override
        public Action<? super DependencySubstitutions> getRegisteredDependencySubstitutions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 15:09:14 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultRootBuildState.java

        }
    
        @Override
        public StartParameterInternal getStartParameter() {
            return getBuildController().getGradle().getStartParameter();
        }
    
        @Override
        public Path calculateIdentityPathForProject(Path path) {
            return path;
        }
    
        @Override
        protected void ensureChildBuildConfigured() {
            // nothing to do for the root build
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/BuildState.java

         */
        boolean isImportableBuild();
    
        /**
         * Calculates the identity path for a project in this build.
         */
        Path calculateIdentityPathForProject(Path projectPath) throws IllegalStateException;
    
        /**
         * Loads the projects for this build so that {@link #getProjects()} can be used, if not already done.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 17:48:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/RootOfNestedBuildTree.java

        public Path getIdentityPath() {
            return identityPath;
        }
    
        @Override
        public boolean isImplicitBuild() {
            return false;
        }
    
        @Override
        public Path calculateIdentityPathForProject(Path projectPath) {
            return getBuildController().getGradle().getIdentityPath().append(projectPath);
        }
    
        @Override
        public File getBuildRootDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:17:50 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top