Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for visitAnnotation (4.01 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. 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)
Back to top