Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SystemPropertyLoad (0.24 sec)

  1. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

            }
    
            fun isSystemPropertyLoaded(key: String): Boolean {
                return mutatedSystemProperties[key] is SystemPropertyLoad
            }
    
            fun getLoadedPropertyOldValue(key: String): Any? {
                return (mutatedSystemProperties[key] as? SystemPropertyLoad)?.oldValue
            }
    
            fun getCachedState(): CachedEnvironmentState {
                return CachedEnvironmentState(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/CachedEnvironmentStateCodec.kt

                        ConfigurationCacheEnvironmentChangeTracker.SystemPropertyMutate(key, value, PropertyTrace.Unknown)
                    ConfigurationCacheEnvironmentChangeTracker.SystemPropertyLoad::class.java ->
                        ConfigurationCacheEnvironmentChangeTracker.SystemPropertyLoad(key, value, null)
                    else -> throw IllegalStateException("$clazz instances is not expected to be stored")
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top