Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for annotationInvalidInContext (0.35 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformValuesInjectionIntegrationTest.groovy

                'conflictingAnnotations': [
                    conflictingAnnotationsMessage,
                    annotationInvalidInContext { annotation('InputFile').forTransformAction() }
                ],
                inputFile: annotationInvalidInContext { annotation('InputFile').forTransformAction() },
                noPathSensitivity: missingNormalizationStrategy { annotatedWith('InputArtifact').noIntro() },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 11:12:24 UTC 2023
    - 37.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

    Possible solution: Choose between one of the conflicting annotations.
    
    ${validationMessage("conflicting_annotations")}
    """
        }
    
        def "tests output of annotationInvalidInContext"() {
            when:
            render annotationInvalidInContext {
                type('SomeType').property('prop')
                annotation('Invalid')
                forTransformAction()
                includeLink()
            }
    
            then:
    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/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

                .reason("The different annotations have different semantics and Gradle cannot determine which one to pick")
                .solution("Choose between one of the conflicting annotations")
        }
    
        String annotationInvalidInContext(@DelegatesTo(value = AnnotationContext, strategy = Closure.DELEGATE_FIRST) Closure<?> spec = {}) {
            AnnotationContext config = annotationInvalidInContextConfig(spec)
            config.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