Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 82 for identityPath (0.21 sec)

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

        }
    
        public StandAloneNestedBuild createNestedBuild(BuildIdentifier buildIdentifier, Path identityPath, BuildDefinition buildDefinition, BuildState owner) {
            DefaultNestedBuild build = new DefaultNestedBuild(buildIdentifier, identityPath, buildDefinition, owner, buildTreeState);
            // Expose any contributions from the parent's settings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/scripts/ProjectScopedScriptResolution.java

        ProjectScopedScriptResolution NO_OP = new ProjectScopedScriptResolution() {
            @Override
            public <T> T resolveScriptsForProject(Path identityPath, Supplier<T> action) {
                return action.get();
            }
        };
    
        <T> T resolveScriptsForProject(Path identityPath, Supplier<T> action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/GradleBuildBuilderTest.groovy

            rootProject.childProjects >> [].toSet()
            rootProject.identityPath >> Path.path(":some:identity:path")
    
            includedProject1.childProjects >> [].toSet()
            includedProject1.identityPath >> Path.path(":some:identity:path")
            includedProject2.childProjects >> [].toSet()
            includedProject2.identityPath >> Path.path(":some:identity:path")
    
            rootBuild.includedBuilds() >> [includedBuild1]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentIdentifierSerializer.java

                    Path identityPath = Path.path(decoder.readString());
                    return new DefaultProjectComponentIdentifier(buildIdentifier, identityPath, Path.ROOT, identityPath.getName());
                }
                case OTHER_BUILD_PROJECT: {
                    BuildIdentifier buildIdentifier = buildIdentifierSerializer.read(decoder);
                    Path identityPath = Path.path(decoder.readString());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildRegistry.java

            Path identityPath = assignPath(owner, buildDefinition.getName(), buildDefinition.getBuildRootDir());
            BuildIdentifier buildIdentifier = idFor(identityPath);
            StandAloneNestedBuild build = buildStateFactory.createNestedBuild(buildIdentifier, identityPath, buildDefinition, owner);
            buildSrcBuildsByOwner.put(owner, build);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:19 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

         *
         * @param identityPath The project for which the model should be created, or null for a build scoped model.
         */
        fun <T> loadOrCreateIntermediateModel(identityPath: Path?, modelName: String, parameter: ToolingModelParameterCarrier?, creator: () -> T?): T?
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingTaskExecutionGraph.kt

            }
            reportCrossProjectTaskAccess(otherProjects)
        }
    
        private
        val Project.isReferrerProject: Boolean
            get() = this is ProjectInternal && identityPath == referrerProject.identityPath
    
        private
        fun reportCrossProjectTaskAccess(coupledProjects: Iterable<ProjectInternal>, requestPath: String? = null) {
            reportCoupledProjects(coupledProjects)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            readString()
    
        private
        fun identifyBuild(state: CachedBuildState) {
            val identityPath = state.identityPath.toString()
    
            eventEmitter.emitNowForCurrent(BuildIdentifiedProgressDetails { identityPath })
    
            if (state is BuildWithProjects) {
                val projects = convertProjects(state.projects, state.rootProjectName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/ProjectStateStore.kt

            for (entry in entryDetails) {
                val identityPath = projectPathForKey(entry.key)
                if (identityPath == null || !checkedFingerprint.invalidProjects.contains(identityPath)) {
                    // Can reuse the value
                    previousValues[entry.key] = entry.value
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

            Path identityPath = projectInternal.getIdentityPath();
            String displayName = "Configure project " + identityPath;
    
            String progressDisplayName = identityPath.toString();
            if (identityPath.equals(Path.ROOT)) {
                progressDisplayName = "root project";
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top