Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for systemPropertyName (0.52 sec)

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

    }
    
    
    private
    fun InternalOptions.getInternalFlag(systemPropertyName: String, defaultValue: Boolean = false): Boolean =
        getOption(InternalFlag(systemPropertyName, defaultValue)).get()
    
    
    private
    fun InternalOptions.getInternalString(systemPropertyName: String, defaultValue: String?) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFeatureFlagsIntegrationTest.groovy

            configurationCacheRunLenient "check"
    
            then:
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRunLenient "-D${FeaturePreviews.Feature.STABLE_CONFIGURATION_CACHE.systemPropertyName}=true", "check"
    
            then:
            configurationCache.assertStateStored()
        }
    
        def "feature flag state is restored when running from cache"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

                if (projectDependencies.add(dependency)) {
                    projectScopedWriter.write(dependency)
                }
            }
        }
    
        override fun flagRead(flag: FeatureFlag) {
            flag.systemPropertyName?.let { propertyName ->
                sink().systemPropertyRead(propertyName, System.getProperty(propertyName))
            }
        }
    
        fun append(fingerprint: ProjectSpecificFingerprint) {
    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