Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ObtainedValue (0.18 sec)

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

        data class InputFileSystemEntry(
            val file: File,
            val fileType: FileType
        ) : ConfigurationCacheFingerprint()
    
        data class ValueSource(
            val obtainedValue: ObtainedValue
        ) : ConfigurationCacheFingerprint()
    
        data class UndeclaredSystemProperty(
            val key: String,
            val value: Any?
        ) : ConfigurationCacheFingerprint()
    
    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/model-core/src/main/java/org/gradle/api/internal/provider/ValueSourceProviderFactory.java

         */
        @EventScope(Scope.Build.class)
        interface ComputationListener {
            void beforeValueObtained();
    
            void afterValueObtained();
        }
    
        @EventScope(Scope.Build.class)
        interface ValueListener {
            <T, P extends ValueSourceParameters> void valueObtained(
                ObtainedValue<T, P> obtainedValue,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top