Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for validation_problems (1.01 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. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

                    .contextualLabel(unknownImplSnapshot.getProblemDescription())
                    .documentedAt(userManual("validation_problems", "implementation_unknown"))
                    .details(unknownImplSnapshot.getReasonDescription())
                    .solution(unknownImplSnapshot.getSolutionDescription())
                    .severity(ERROR)
                );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageDisplayConfiguration.groovy

            this.checker = checker
        }
    
        String typeName
        String property
        String propertyType
        String section
        String documentationId = "validation_problems"
        boolean includeLink = false
    
        T inPlugin(String pluginId) {
            this.pluginId = pluginId
            this
        }
    
        T description(String description) {
            this.description = description
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/MissingPropertyAnnotationHandler.java

                .contextualLabel("is missing " + displayName)
                .documentedAt(userManual("validation_problems", TextUtil.toLowerCaseLocaleSafe(missingAnnotation)))
                .severity(ERROR)
                .details("A property without annotation isn't considered during up-to-date checking")
                .solution("Add " + displayName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/AbstractTypeAnnotationHandler.java

                    .contextualLabel("is incorrectly annotated with @" + annotationType.getSimpleName())
                    .documentedAt(Documentation.userManual("validation_problems", "invalid_use_of_cacheable_annotation"))
                    .severity(Severity.ERROR)
                    .details(String.format("This annotation only makes sense on %s types", Arrays.stream(appliesOnlyTo)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/AbstractInputPropertyAnnotationHandler.java

                                    TypeOf.typeOf(propertyMetadata.getDeclaredType().getType()).getSimpleName()
                                )
                            )
                            .documentedAt(userManual("validation_problems", UNSUPPORTED_VALUE_TYPE.toLowerCase(Locale.ROOT)))
                            .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/ServiceReferencePropertyAnnotationHandler.java

                        .documentedAt(userManual("validation_problems", SERVICE_REFERENCE_MUST_BE_A_BUILD_SERVICE.toLowerCase(Locale.ROOT)))
                        .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/AbstractValidatingProperty.java

                    .contextualLabel("doesn't have a configured value")
                    .documentedAt(userManual("validation_problems", VALUE_NOT_SET.toLowerCase()))
                    .severity(Severity.ERROR)
                    .details("This property isn't marked as optional and no value has been configured");
                if (hasConfigurableValue) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/AbstractInputFilePropertyAnnotationHandler.java

                        .contextualLabel(String.format("is annotated with @%s but missing a normalization strategy", getAnnotationType().getSimpleName()))
                        .documentedAt(userManual("validation_problems", MISSING_NORMALIZATION_ANNOTATION.toLowerCase(Locale.ROOT)))
                        .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                    "Reason: Key of nested map must be one of the following types: 'Enum', 'Integer', 'String'.",
                'validation_problems',
                'unsupported_key_type_of_nested_map')
            run("customTask")
    
            then:
            executedAndNotSkipped(":customTask")
            file("output.txt").text == "[true:value1][false:value2]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top