Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DynamicDependencyVersion (0.26 sec)

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

        abstract class ChangingDependencyResolutionValue(
            val expireAt: Long
        ) : ConfigurationCacheFingerprint() {
            abstract val reason: String
        }
    
        class DynamicDependencyVersion(
            val displayName: String,
            expireAt: Long
        ) : ChangingDependencyResolutionValue(expireAt) {
            override val reason: String
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

            // from one of the configured repositories.
            if (versions.isEmpty()) return
            val expireAt = host.buildStartTime + expiry.keepFor.toMillis()
            onChangingValue(ConfigurationCacheFingerprint.DynamicDependencyVersion(requested.displayName, expireAt))
        }
    
        override fun onChangingModuleResolve(moduleId: ModuleComponentIdentifier, expiry: Expiry) {
            val expireAt = host.buildStartTime + expiry.keepFor.toMillis()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top