Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ExtensionSchema (0.44 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/DefaultExtensionsSchema.java

        public static ExtensionsSchema create(Iterable<? extends ExtensionSchema> schemas) {
            return new DefaultExtensionsSchema(Cast.<Iterable<ExtensionSchema>>uncheckedCast(schemas));
        }
    
        private final Iterable<ExtensionSchema> extensionSchemas;
    
        private DefaultExtensionsSchema(Iterable<ExtensionSchema> extensionSchemas) {
            this.extensionSchemas = extensionSchemas;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtensionsSchema.java

     */
    public interface ExtensionsSchema extends NamedDomainObjectCollectionSchema, Iterable<ExtensionsSchema.ExtensionSchema> {
    
        /**
         * {@inheritDoc}
         */
        @Override
        Iterable<ExtensionSchema> getElements();
    
        /**
         * Schema of an extension.
         *
         * @since 4.5
         */
        interface ExtensionSchema extends NamedDomainObjectCollectionSchema.NamedDomainObjectSchema {
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 16:56:20 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-provider-plugins/src/test/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultProjectSchemaProviderTest.kt

        internal
        open class KotlinJvmOptionsBase : KotlinJvmOptions
    
        interface KotlinJvmOptions
    
        private
        fun <T> extensionSchema(name: String, publicType: TypeOf<T>): ExtensionsSchema.ExtensionSchema = mock {
            on { getName() } doReturn name
            on { getPublicType() } doReturn publicType
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/test/kotlin/org/gradle/internal/declarativedsl/SettingsExtensionsSchemaTest.kt

                    val myExtensionMock = mock<MyExtension>()
                    val extensionsSchemaMock = mock<ExtensionsSchema> {
                        on { elements }.thenReturn(listOf<ExtensionSchema>(object : ExtensionSchema {
                            override fun getName(): String = "myExtension"
                            override fun getPublicType(): TypeOf<*> = TypeOf.typeOf(MyExtension::class.java)
                        }))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 09:57:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GenerateVersionCatalogAccessors.kt

    import java.io.BufferedWriter
    import java.io.File
    import kotlin.reflect.KClass
    
    
    internal
    class GenerateVersionCatalogAccessors(
        private val versionCatalogExtensionSchemas: List<ExtensionsSchema.ExtensionSchema>,
        rootProject: Project,
        buildSrcClassLoaderScope: ClassLoaderScope,
        classLoaderHash: HashCode,
        fileCollectionFactory: FileCollectionFactory,
        inputFingerprinter: InputFingerprinter,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/extensibility/ExtensionsStorage.java

        }
    
        private static class ExtensionHolder<T> implements ExtensionsSchema.ExtensionSchema {
            private final String name;
            private final TypeOf<T> publicType;
            protected final T extension;
    
            private ExtensionHolder(String name, TypeOf<T> publicType, T extension) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 17 11:25:34 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The `@DeferredConfigurable` annotation has been removed.
     * The method `isDeferredConfigurable()` was removed from `ExtensionSchema`.
     * `IdeaPlugin.performPostEvaluationActions()` and `EclipsePlugin.performPostEvaluationActions()` have been removed.
     * `The `BroadcastingCollectionEventRegister.getAddAction()` method has been removed with no replacement.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top