Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for identityPath (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/TasksFromProjectDependencies.java

            String taskName
        ) {
            for (ProjectDependency projectDependency : projectDependencies) {
                Path identityPath = ((ProjectDependencyInternal) projectDependency).getIdentityPath();
                ProjectState projectState = projectStateRegistry.stateFor(identityPath);
                projectState.ensureTasksDiscovered();
    
                Task nextTask = projectState.getMutableModel().getTasks().findByName(taskName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:17:37 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheProblemsListener.kt

            } else {
                PropertyTrace.Task(GeneratedSubclasses.unpackType(task), task.identityPath.path)
            }
    
        private
        fun problemsListenerFor(task: TaskInternal): ProblemsListener = when {
            task.isCompatibleWithConfigurationCache -> problems
            else -> problems.forIncompatibleTask(task.identityPath.path)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/init.gradle

    def prefix = "init $gradle.identityPath"
    
    println "$prefix QUIET out"
    logging.captureStandardOutput LogLevel.INFO
    println "$prefix INFO out"
    
    System.err.println "$prefix ERROR err"
    logging.captureStandardError LogLevel.INFO
    System.err.println "$prefix INFO err"
    
    logger.lifecycle("$prefix lifecycle log")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 337 bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingParentDynamicObject.kt

                    text("Project ")
                    reference(referrerProject.identityPath.toString())
                    text(" cannot dynamically look up a ")
                    text(memberKind.name.lowercase(Locale.ENGLISH))
                    text(" in the parent project ")
                    reference(ownerProject.identityPath.toString())
                }
                    .mapLocation { location ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/ResolutionBackedComponentDependencyResolver.java

            //       via the resolution result.
            Path identityPath = ((ProjectDependencyInternal) dependency).getIdentityPath();
            ModuleVersionIdentifier identifier = projectDependencyResolver.resolveComponent(ModuleVersionIdentifier.class, identityPath);
            return ResolvedCoordinates.create(identifier);
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerSpec.groovy

            Mock(ResolutionStrategyFactory)
        )
    
        def setup() {
            metadataBuilder.withConfigurationsProvider(_) >> metadataBuilder
        }
    
        def "adds and gets"() {
            1 * domainObjectContext.identityPath("compile") >> Path.path(":build:compile")
            1 * domainObjectContext.projectPath("compile") >> Path.path(":compile")
            1 * domainObjectContext.model >> RootScriptDomainObjectContext.INSTANCE
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top