Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JvmInterceptorsSubstitution (0.3 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/internal/classpath/intercept/JvmInterceptorsSubstitution.groovy

     */
    
    package org.gradle.internal.classpath.intercept
    
    import org.gradle.internal.instrumentation.api.types.BytecodeInterceptorFilter
    
    class JvmInterceptorsSubstitution extends TestInterceptorsSubstitution<JvmBytecodeInterceptorFactorySet> {
    
        JvmInterceptorsSubstitution(JvmBytecodeInterceptorFactoryProvider testProvider) {
            super(new DefaultJvmBytecodeInterceptorFactorySet(testProvider));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/classpath/AbstractCallInterceptionTest.groovy

        private JvmInterceptorsSubstitution jvmInterceptorsSubstitution
        private GroovyInterceptorsSubstitution groovyInterceptorsSubstitution
    
        def setup() {
            // Substitutions should be set before the InstrumentedClasses is constructed
            jvmInterceptorsSubstitution = new JvmInterceptorsSubstitution(jvmBytecodeInterceptorSet())
            jvmInterceptorsSubstitution.setupForCurrentThread()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top