Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ProjectMetadata (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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