Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NamedDomainObjectSchema (0.17 sec)

  1. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/DefaultProjectSchemaProvider.kt

    private
    fun accessibleContainerSchema(collectionSchema: NamedDomainObjectCollectionSchema) =
        collectionSchema.elements
            .filter { isPublic(it.name) }
            .map(NamedDomainObjectSchema::toFirstKotlinPublicOrSelf)
    
    
    private
    fun NamedDomainObjectSchema.toFirstKotlinPublicOrSelf() =
        publicType.concreteClass.let { schemaType ->
            // Because a public Java class might not correspond necessarily to a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectCollection.java

                @Override
                public Iterable<? extends NamedDomainObjectSchema> getElements() {
                    // Simple scheme is to just present the public type of the container
                    return Iterables.transform(getNames(), new Function<String, NamedDomainObjectSchema>() {
                        @Override
                        public NamedDomainObjectSchema apply(final String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 35.6K bytes
    - Viewed (0)
Back to top