Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for calculateIdentityPathForProject (0.32 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProjectStateRegistry.java

        private ProjectState addProject(BuildState owner, DefaultBuildProjectRegistry projectRegistry, DefaultProjectDescriptor descriptor) {
            Path projectPath = descriptor.path();
            Path identityPath = owner.calculateIdentityPathForProject(projectPath);
            String name = descriptor.getName();
            ProjectComponentIdentifier projectIdentifier = new DefaultProjectComponentIdentifier(owner.getBuildIdentifier(), identityPath, projectPath, name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/ProjectBuilderImpl.java

                return Path.ROOT;
            }
    
            @Override
            public boolean isImplicitBuild() {
                return false;
            }
    
            @Override
            public Path calculateIdentityPathForProject(Path projectPath) {
                return projectPath;
            }
    
            @Override
            public StartParameterInternal getStartParameter() {
                throw new UnsupportedOperationException();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:36 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectStateRegistryTest.groovy

            def build = Stub(BuildState)
            build.loadedSettings >> settings
            build.buildIdentifier >> DefaultBuildIdentifier.ROOT
            build.identityPath >> Path.ROOT
            build.calculateIdentityPathForProject(_) >> { Path path -> path }
            def services = new DefaultServiceRegistry()
            services.add(projectFactory)
            services.add(TestUtil.stateTransitionControllerFactory())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top