Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for calculateIdentityPathForProject (0.52 sec)

  1. 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)
  2. 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)
  3. 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