Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for identityPath (0.14 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CachedBuildState.kt

     */
    internal
    sealed class CachedBuildState(
        val identityPath: Path,
    )
    
    
    /**
     * A build in the tree whose projects were loaded. May or may not have work scheduled.
     */
    internal
    sealed class BuildWithProjects(
        identityPath: Path,
        val rootProjectName: String,
        val projects: List<CachedProjectState>
    ) : CachedBuildState(identityPath)
    
    
    /**
     * A build in the tree with work scheduled.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultProjectComponentSelector.java

            this.identityPath = identityPath;
            this.projectPath = projectPath;
            this.projectName = projectName;
            this.attributes = attributes;
            this.requestedCapabilities = requestedCapabilities;
        }
    
        @Override
        public String getDisplayName() {
            if (displayName == null) {
                displayName = "project " + identityPath;
            }
            return displayName;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 01:47:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentIdentifierSerializerTest.groovy

            when:
            def result = serialize(identifier, serializer)
    
            then:
            result.identityPath == identifier.identityPath
            result.projectPath == identifier.projectPath
            result.buildTreePath == identifier.buildTreePath
            result.projectPath() == identifier.projectPath()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/JvmTestExecutionSpec.java

            this.candidateClassFiles = candidateClassFiles;
            this.scanForTestClasses = scanForTestClasses;
            this.testClassesDirs = testClassesDirs;
            this.path = path;
            this.identityPath = identityPath;
            this.forkEvery = forkEvery;
            this.javaForkOptions = javaForkOptions;
            this.maxParallelForks = maxParallelForks;
            this.previousFailedTestClasses = previousFailedTestClasses;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/DefaultProjectComponentIdentifier.java

        private final Path projectPath;
        private final Path identityPath;
        private final String projectName;
        private String displayName;
    
        public DefaultProjectComponentIdentifier(BuildIdentifier buildIdentifier, Path identityPath, Path projectPath, String projectName) {
            assert buildIdentifier != null : "build cannot be null";
            assert identityPath != null : "identity path cannot be null";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 18:25:54 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/IntermediateModelController.kt

                readNonNull()
            }
        }
    
        fun <T> loadOrCreateIntermediateModel(identityPath: Path?, modelName: String, parameter: ToolingModelParameterCarrier?, creator: () -> T): T? {
            val key = ModelKey(identityPath, modelName, parameter?.hash)
            return loadOrCreateValue(key) {
                try {
                    val model = if (identityPath != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/caching/internal/controller/impl/LifecycleAwareBuildCacheControllerFactory.java

        public LifecycleAwareBuildCacheController createForRootBuild(Path identityPath, BuildCacheControllerFactory buildCacheControllerFactory, InstanceGenerator instanceGenerator) {
            return rootController.init(identityPath, buildCacheControllerFactory, instanceGenerator);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:28:13 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/initialization/BuildStructureOperationProject.java

        private final String name;
        private final String path;
        private final String identityPath;
        private final String projectDir;
        private final String buildFile;
        private final Set<BuildStructureOperationProject> children;
    
        public BuildStructureOperationProject(String name, String path, String identityPath, String projectDir, String buildFile, Set<BuildStructureOperationProject> children) {
            this.name = name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 22 03:43:27 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectDependencyPublicationResolver.java

        /**
         * Determines the coordinates of the given type for the root component of the
         * project identified by {@code identityPath}.
         *
         * @throws UnsupportedOperationException if the project cannot be resolved.
         */
        <T> T resolveComponent(Class<T> coordsType, Path identityPath);
    
        /**
         * Determines the coordinates of the given type that should be used to reference the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/TasksFromDependentProjects.java

                    return false;
                }
    
                Path identityPath = ((ProjectInternal) originProject).getIdentityPath();
                return doesConfigurationDependOnProject(configuration, identityPath);
            }
    
            private static boolean doesConfigurationDependOnProject(Configuration configuration, Path identityPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top