Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultStoreValueInProperty (0.32 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/serialization/SchemaSerialization.kt

                }
                polymorphic(ParameterSemantics::class) {
                    subclass(ParameterSemanticsInternal.DefaultStoreValueInProperty::class)
                    subclass(ParameterSemanticsInternal.DefaultUnknown::class)
                }
                polymorphic(SchemaFunction::class) {
                    polymorphic(SchemaMemberFunction::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

        override val semantics: ParameterSemantics
    ) : DataParameter
    
    
    object ParameterSemanticsInternal {
        @Serializable
        @SerialName("storeValueInProperty")
        data class DefaultStoreValueInProperty(override val dataProperty: DataProperty) : ParameterSemantics.StoreValueInProperty
    
        @Serializable
        @SerialName("unknown")
        data object DefaultUnknown : ParameterSemantics.Unknown {
            private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

                if (isPropertyLike) {
                    val storeProperty = checkNotNull(preIndex.getProperty(returnClass, propertyName))
                    return ParameterSemanticsInternal.DefaultStoreValueInProperty(storeProperty)
                }
            }
            return ParameterSemanticsInternal.DefaultUnknown
        }
    
        private
        fun inferFunctionSemanticsFromSignature(
            function: KFunction<*>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top