Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCurrentInterceptorSet (0.39 sec)

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

            def decorator = getCurrentInterceptorSet()
            if (decorator instanceof ThreadLocalInterceptorSet) {
                return decorator as ThreadLocalInterceptorSet<T>
            }
            return null
        }
    
        private void maybeRevertGlobalJvmBytecodeInterceptorFactorySet() {
            def interceptorFactorySet = 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

            CallInterceptorRegistry.GroovyJvmCallInterceptorInternalTesting.currentJvmBytecodeInterceptorFactorySet = newInterceptorSet
        }
    
        @Override
        JvmBytecodeInterceptorFactorySet getCurrentInterceptorSet() {
            return CallInterceptorRegistry.GroovyJvmCallInterceptorInternalTesting.currentJvmBytecodeInterceptorFactorySet;
        }
    
    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

            CallInterceptorRegistry.GroovyJvmCallInterceptorInternalTesting.currentGroovyCallInterceptorSet = newInterceptorSet
        }
    
        @Override
        CallSiteInterceptorSet getCurrentInterceptorSet() {
            return CallInterceptorRegistry.GroovyJvmCallInterceptorInternalTesting.currentGroovyCallInterceptorSet;
        }
    
    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