Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TestInterceptorsSubstitution (0.23 sec)

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

     *
     * The interceptors are substituted per-thread because other threads may be executing unrelated tests.
     */
    abstract class TestInterceptorsSubstitution<T> {
        private final T substitution
    
        TestInterceptorsSubstitution(T substitution) {
            this.substitution = substitution
        }
    
        abstract T getCurrentInterceptorSet();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 16:29:37 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. 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));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/internal/classpath/intercept/GroovyInterceptorsSubstitution.groovy

    import org.gradle.internal.classpath.GroovyCallInterceptorsProvider
    import org.gradle.internal.instrumentation.api.types.BytecodeInterceptorFilter
    
    class GroovyInterceptorsSubstitution extends TestInterceptorsSubstitution<CallSiteInterceptorSet> {
    
        GroovyInterceptorsSubstitution(GroovyCallInterceptorsProvider testProvider) {
            super(new DefaultCallSiteInterceptorSet(testProvider));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top