Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for EntryDetails (0.14 sec)

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

    import org.gradle.util.Path
    import java.io.File
    
    
    /**
     * 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)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

                val entryFile = layout.fileFor(StateType.Entry)
                val entryDetails = cacheIO.readCacheEntryDetailsFrom(entryFile)
                if (entryDetails == null) {
                    // No entry file -> treat the entry as empty/missing/invalid
                    CheckedFingerprint.NotFound
                } else {
                    checkFingerprint(entryDetails, layout)
                }
            }
        }
    
        private
    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/models/ProjectStateStore.kt

         */
        fun collectAccessedValues(): Map<K, BlockAddress> =
            currentValues.mapValues { it.value.get() }
    
        fun restoreFromCacheEntry(entryDetails: Map<K, BlockAddress>, checkedFingerprint: CheckedFingerprint.ProjectsInvalid) {
            for (entry in entryDetails) {
                val identityPath = projectPathForKey(entry.key)
                if (identityPath == null || !checkedFingerprint.invalidProjects.contains(identityPath)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

    import org.gradle.api.logging.LogLevel
    import org.gradle.cache.internal.streams.BlockAddress
    import org.gradle.cache.internal.streams.BlockAddressSerializer
    import org.gradle.internal.cc.impl.cacheentry.EntryDetails
    import org.gradle.internal.cc.impl.cacheentry.ModelKey
    import org.gradle.internal.cc.impl.initialization.ConfigurationCacheStartParameter
    import org.gradle.internal.cc.impl.problems.ConfigurationCacheProblems
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top