Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for unsupported_nested_type (0.24 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/NestedValidationUtil.java

                        .contextualLabel("with nested type '" + beanType.getName() + "' is not supported")
                        .documentedAt(userManual("validation_problems", "unsupported_nested_type"))
                        .severity(WARNING)
                        .details(reason)
                        .solution("Use a different input annotation if type is not a bean")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                "Type 'CustomTask' property 'my$type' with nested type '$className' is not supported. " +
                    "Reason: $reason",
                'validation_problems',
                'unsupported_nested_type')
    
            expect:
            succeeds("customTask")
    
            where:
            type       | parameterType      | producer                                         | className               | reason
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

            assertValidationFailsWith([
                warning(nestedTypeUnsupportedConfig { type("MyTask").property("my$typeName").annotatedType(className).reason(reason) },
                    'validation_problems', 'unsupported_nested_type'),
            ])
    
            and:
            verifyAll(receivedProblem) {
                fqid == 'validation:property-validation:nested-type-unsupported'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    To fix this problem, change the type of the key to `Enum`, `Integer`, or `String`.
    
    [[unsupported_nested_type]]
    == Unsupported nested type
    
    This error indicates that an unsupported type is annotated as nested.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

        }
    
        NestedTypeUnsupported nestedTypeUnsupportedConfig(@DelegatesTo(value = NestedTypeUnsupported, strategy = Closure.DELEGATE_FIRST) Closure<?> spec) {
            def config = display(NestedTypeUnsupported, "unsupported_nested_type", spec)
            config.description("with nested type '${config.annotatedType}' is not supported.")
                .solution("Use a different input annotation if type is not a bean.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
Back to top