Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for annotationName (0.25 sec)

  1. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotationName.kt

    Kristoffer Andersen <******@****.***> 1659368814 +0200
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 110 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotationName.txt

    Kristoffer Andersen <******@****.***> 1659368814 +0200
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 80 bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/AnnotationProcessorFixture.groovy

            this.annotationName = annotationName
            this.supportedAnnotationTypes = processAllCode ? '"*"' : "${annotationName}.class.getName()"
            this.annotationPackageName = annotationPackageName
            this.fqAnnotationName = annotationPackageName.empty ? annotationName : "${annotationPackageName}.${annotationName}"
        }
    
        final void writeApiTo(TestFile projectDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/registry/AbstractAnnotationModelRuleExtractorTest.groovy

        abstract Class<? extends Annotation> getAnnotation();
    
        abstract Class<?> getRuleClass();
    
        def "handles methods annotated with @#annotationName"() {
            when:
            1 * ruleDefinition.isAnnotationPresent(annotation) >> false
    
            then:
            !ruleHandler.isSatisfiedBy(ruleDefinition)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/HelperProcessorFixture.groovy

        }
    
        def writeSupportLibraryTo(TestFile projectDir) {
            // Some library class used by processor at runtime
            def utilClass = projectDir.file("src/main/java/${annotationName}Util.java")
            utilClass.text = """
                class HelperUtil {
                    static String getValue() { return "${message}"; }
                }
    """
        }
    
        String getGeneratorCode() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/AbstractLanguageElement.java

        }
    
        @Override
        public List<String> getAnnotationTypeNames() {
            return annotationNames;
        }
    
        public void addAnnotationTypeName(String annotationType) {
            annotationNames.add(annotationType);
        }
    
        @Override
        public boolean isDeprecated() {
            return annotationNames.contains(Deprecated.class.getName());
        }
    
        @Override
        public boolean isIncubating() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.9K bytes
    - Viewed (0)
Back to top