Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for extraAttrs (0.2 sec)

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

            }
        }
    }
    
    
    class CompositePropertyExtractor(internal val extractors: Iterable<PropertyExtractor>) : PropertyExtractor {
        override fun extractProperties(kClass: KClass<*>, propertyNamePredicate: (String) -> Boolean): Iterable<CollectedPropertyInformation> = buildList {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ScopedRuleTest.groovy

    import org.gradle.model.internal.inspect.*
    
    class ScopedRuleTest extends ProjectRegistrySpec {
        def extractors = [new DependencyAddingModelRuleExtractor()] + MethodModelRuleExtractors.coreExtractors(schemaStore)
        ModelRegistry registry = new ModelRegistryHelper(new ModelRuleExtractor(extractors, proxyFactory, schemaStore, structBindingsStore))
    
        static class RuleSourceUsingRuleWithDependencies extends RuleSource {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/schemaFromGradleExtensions.kt

     *
     * Given that, introduces the following features in the schema:
     * * Type discovery ensuring that the types of the extensions get discovered and included in the schema (but just those types, not recursing)
     * * Function extractors which introduce configuring functions for the extensions
     *
     * If object conversion is enabled ([ifConversionSupported]):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/PropertyTest.kt

            assertEquals("z", nonReadablePropertyError.property.name)
        }
    
        @Test
        fun `if multiple property extractors have properties with the same name, first wins`() {
            val expectedName = "test"
            val schema = schemaFromTypes(
                MyReceiver::class,
                listOf(MyReceiver::class),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/AbiExtractingClasspathResourceHasherTest.groovy

        @Rule
        TemporaryFolder temporaryDirectory = new TemporaryFolder()
    
        def setup() {
            temporaryDirectory.create()
        }
    
        def "api class extractors affect the configuration hash"() {
            def apiClassExtractor1 = Mock(ApiClassExtractor)
            def apiClassExtractor2 = Mock(ApiClassExtractor)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top