Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SystemPropertyMutate (0.29 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/CachedEnvironmentStateCodec.kt

                val key = read() as Any
                val value = read()
                when (clazz) {
                    ConfigurationCacheEnvironmentChangeTracker.SystemPropertyMutate::class.java ->
                        ConfigurationCacheEnvironmentChangeTracker.SystemPropertyMutate(key, value, PropertyTrace.Unknown)
                    ConfigurationCacheEnvironmentChangeTracker.SystemPropertyLoad::class.java ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

            }
    
            fun isSystemPropertyMutated(key: String): Boolean {
                return systemPropertiesCleared || mutatedSystemProperties[key] is SystemPropertyMutate
            }
    
            fun isSystemPropertyLoaded(key: String): Boolean {
                return mutatedSystemProperties[key] is SystemPropertyLoad
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top