Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for groovyCallInterceptors (0.2 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/AbstractCallInterceptionTest.groovy

        protected abstract JvmBytecodeInterceptorFactoryProvider jvmBytecodeInterceptorSet()
    
        protected abstract GroovyCallInterceptorsProvider groovyCallInterceptors()
    
        protected InstrumentationTypeRegistry typeRegistry() {
            InstrumentationTypeRegistry.empty()
        }
    
        protected InstrumentedClasses instrumentedClasses
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/classpath/CallInterceptionFilteringTest.groovy

            return DEFAULT + new ClassLoaderSourceJvmBytecodeInterceptorFactoryProvider(this.class.classLoader, TEST_GENERATED_CLASSES_PACKAGE)
        }
    
        @Override
        protected GroovyCallInterceptorsProvider groovyCallInterceptors() {
            return new ClassLoaderSourceGroovyCallInterceptorsProvider(this.getClass().classLoader, TEST_GENERATED_CLASSES_PACKAGE)
        }
    
        def originalMetaClass = null
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InheritedMethodsInterceptionTest.groovy

            return new ClassLoaderSourceJvmBytecodeInterceptorFactoryProvider(this.class.classLoader, TEST_GENERATED_CLASSES_PACKAGE)
        }
    
        @Override
        protected GroovyCallInterceptorsProvider groovyCallInterceptors() {
            return new ClassLoaderSourceGroovyCallInterceptorsProvider(this.getClass().classLoader, TEST_GENERATED_CLASSES_PACKAGE)
        }
    
        @Override
        protected InstrumentationTypeRegistry typeRegistry() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/classpath/BasicCallInterceptionTest.groovy

            return DEFAULT + new ClassLoaderSourceJvmBytecodeInterceptorFactoryProvider(this.class.classLoader, TEST_GENERATED_CLASSES_PACKAGE)
        }
    
        @Override
        protected GroovyCallInterceptorsProvider groovyCallInterceptors() {
            return new ClassLoaderSourceGroovyCallInterceptorsProvider(this.getClass().classLoader, TEST_GENERATED_CLASSES_PACKAGE)
        }
    
        // We don't want to interfere with other tests that modify the meta class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:44:54 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/classpath/CompositeCallInterceptionTest.groovy

            return DEFAULT + new ClassLoaderSourceJvmBytecodeInterceptorFactoryProvider(this.class.classLoader, TEST_GENERATED_CLASSES_PACKAGE)
        }
    
        @Override
        protected GroovyCallInterceptorsProvider groovyCallInterceptors() {
            return new ClassLoaderSourceGroovyCallInterceptorsProvider(this.getClass().classLoader, TEST_GENERATED_CLASSES_PACKAGE)
        }
    
        // We don't want to interfere with other tests that modify the meta class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 11:38:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/classpath/GroovyDynamicDispatchingInterceptingTest.groovy

        protected JvmBytecodeInterceptorFactoryProvider jvmBytecodeInterceptorSet() {
            JvmBytecodeInterceptorFactoryProvider.DEFAULT
        }
    
        @Override
        protected GroovyCallInterceptorsProvider groovyCallInterceptors() {
            return DEFAULT + new ClassLoaderSourceGroovyCallInterceptorsProvider(this.getClass().classLoader, TEST_GENERATED_CLASSES_PACKAGE)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:44:54 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top