Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for visitAnnotation (0.17 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedForIsolatedProjectsExtension.groovy

        @Override
        void visitSpecAnnotation(ToBeFixedForIsolatedProjects annotation, SpecInfo spec) {
            visitAnnotation(spec)
        }
    
        @Override
        void visitFeatureAnnotation(ToBeFixedForIsolatedProjects annotation, FeatureInfo feature) {
            visitAnnotation(feature)
        }
    
        private void visitAnnotation(SpecElementInfo specElementInfo) {
            if (GradleContextualExecuter.isNotIsolatedProjects()) {
                return
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/RequiresExtension.groovy

            visitAnnotation(annotation, spec)
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        void visitFeatureAnnotation(Requires annotation, FeatureInfo feature) {
            visitAnnotation(annotation, feature)
        }
    
        /**
         * Common method for handling annotations.
         */
        void visitAnnotation(Requires annotation, SpecElementInfo specOfFeature) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderFactory.java

                private boolean found;
    
                private AnnotationDetector() {
                    super(AsmConstants.ASM_LEVEL);
                }
    
                @Override
                public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
                    if (desc.equals(ANNOTATION_DESCRIPTOR)) {
                        found = true;
                    }
                    return new AnnotationVisitor(AsmConstants.ASM_LEVEL) {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/KotlinMetadata.kt

    }
    
    
    /**
     * Writes the given [header] to the class file as a [kotlin.Metadata] annotation.
     **/
    private
    fun ClassWriter.visitKotlinMetadataAnnotation(header: KotlinClassHeader) {
        visitAnnotation("Lkotlin/Metadata;", true).run {
            visit("mv", header.metadataVersion)
            visit("k", header.kind)
            visitArray("d1").run {
                header.data1.forEach { visit(null, it) }
                visitEnd()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top