Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ProjectMetadata (0.19 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/internal/ProjectDependencyBuilderTest.groovy

        }
    
        def "should create dependency using eclipse projectName"() {
            given:
            def projectMetadata = Stub(EclipseProjectMetadata) {
                getName() >> "foo"
            }
            artifactRegistry.getIdeProject(EclipseProjectMetadata, projectId) >> projectMetadata
    
            when:
            def dependency = builder.build(projectId, null, null, false, false)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            if (projectResult is CheckedFingerprint.ProjectsInvalid) {
                intermediateModels.restoreFromCacheEntry(entryDetails.intermediateModels, projectResult)
                projectMetadata.restoreFromCacheEntry(entryDetails.projectMetadata, projectResult)
            }
    
            if (projectResult is CheckedFingerprint.Valid) {
                val sideEffects = buildTreeModelSideEffects.restoreFromCacheEntry(entryDetails.sideEffects)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/cacheentry/EntryDetails.kt

     * Data stored in the "entry details" file. Provides some metadata about the cache entry.
     */
    internal
    class EntryDetails(
        val rootDirs: List<File>,
        val intermediateModels: Map<ModelKey, BlockAddress>,
        val projectMetadata: Map<Path, BlockAddress>,
        val sideEffects: List<BlockAddress>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

        internal
        fun writeCacheEntryDetailsTo(
            buildStateRegistry: BuildStateRegistry,
            intermediateModels: Map<ModelKey, BlockAddress>,
            projectMetadata: Map<Path, BlockAddress>,
            sideEffects: List<BlockAddress>,
            stateFile: ConfigurationCacheStateFile
        ) {
            val rootDirs = collectRootDirs(buildStateRegistry)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/metadata/ProjectMetadataController.kt

        store: ConfigurationCacheStateStore,
        calculatedValueContainerFactory: CalculatedValueContainerFactory
    ) : ProjectStateStore<Path, LocalComponentGraphResolveState>(store, StateType.ProjectMetadata, "project metadata", calculatedValueContainerFactory) {
    
        override fun projectPathForKey(key: Path) = key
    
        override fun write(encoder: Encoder, value: LocalComponentGraphResolveState) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

         */
        IntermediateModels(true),
    
        /**
         * Contains the dependency resolution metadata for each project.
         */
        ProjectMetadata(false),
        BuildFingerprint(true),
        ProjectFingerprint(true),
    
        /**
         * The index file that points to all of these things
         */
        Entry(false)
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top