Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ExtraPropertiesExtension (0.37 sec)

  1. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/ExtraPropertiesExtensionExtensions.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.extensions.core
    
    import org.gradle.api.plugins.ExtraPropertiesExtension
    
    
    fun ExtraPropertiesExtension.remove(key: String): Any? {
        val value = this[key]
        if (value != null) {
            this[key] = null
        }
        return value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 877 bytes
    - Viewed (0)
  2. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/ProjectExtensions.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.extensions.core
    
    import org.gradle.api.Project
    import org.gradle.api.plugins.ExtraPropertiesExtension
    import org.gradle.internal.extensions.stdlib.uncheckedCast
    
    
    inline fun <reified T : Any> Project.setSingletonProperty(value: T) {
        extra[T::class.java.name] = value
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultConvention.java

        private static final TypeOf<ExtraPropertiesExtension> EXTRA_PROPERTIES_EXTENSION_TYPE = typeOf(ExtraPropertiesExtension.class);
        private final DefaultConvention.ExtensionsDynamicObject extensionsDynamicObject = new ExtensionsDynamicObject();
        private final ExtensionsStorage extensionsStorage = new ExtensionsStorage();
        private final ExtraPropertiesExtension extraProperties = new DefaultExtraPropertiesExtension();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
                <tr>
                    <td>org.gradle.api.plugins.ExtensionAware</td>
                </tr>
                <tr>
                    <td>org.gradle.api.plugins.ExtraPropertiesExtension</td>
                </tr>
                <tr>
                    <td>org.gradle.plugin.use.PluginDependenciesSpec</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.kotlin.dsl.ExtraPropertiesExtensionsKt.invoke(org.gradle.api.plugins.ExtraPropertiesExtension, kotlin.jvm.functions.Function0)> has arguments/return type kotlin.jvm.functions.Function0 that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (ExtraPropertiesExtensions.kt:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top