Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for UNSUPPORTED_NOTATION (0.22 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationActions.java

                reportUnsupportedValue(propertyName, context, targetType, value.get(), unsupportedNotationException.getCandidates());
            }
        }
    
        private static final String UNSUPPORTED_NOTATION = "UNSUPPORTED_NOTATION";
    
        private static void reportUnsupportedValue(String propertyName, PropertyValidationContext context, String targetType, Object value, Collection<String> candidates) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

    Type 'Human' property 'face' has unsupported value 'visible'.
    
    Reason: Type 'person' cannot be converted to a safe person.
    
    Possible solutions:
      1. Use a mask.
      2. Use a vaccine.
    
    ${validationMessage("unsupported_notation")}
    """
        }
    
        def "tests output of invalidUseOfCacheableAnnotation"() {
            when:
            render invalidUseOfCacheableAnnotation {
                type('SomeTransform')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    If you didn't intend to write in this directory, you should simply setup your task to write in a different location.
    
    [[unsupported_notation]]
    == Unsupported notation in file inputs
    
    This error indicates that a file, directory, collection of files, or a nested collection of files property, refers to an element that Gradle cannot convert to a file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

                .render()
        }
    
        String unsupportedNotation(@DelegatesTo(value = UnsupportedNotation, strategy = Closure.DELEGATE_FIRST) Closure<?> spec = {}) {
            def config = display(UnsupportedNotation, 'unsupported_notation', spec)
            config.description("has unsupported value '${config.value}'")
                .reason("Type '${config.type}' cannot be converted to a ${config.targetType}")
                .render()
        }
    
    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