Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultCallSiteDecorator (0.24 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

    /**
     * Holds a collection of interceptors and can decorate a Groovy CallSite if it is within a scope of a registered interceptor.
     */
    @NonNullApi
    public class DefaultCallSiteDecorator implements CallSiteDecorator, CallInterceptorResolver {
        private final Map<InterceptScope, CallInterceptor> interceptors = new HashMap<>();
        private final Set<String> interceptedCallSiteNames = new HashSet<>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallInterceptorRegistry.java

        }
    
        public static CallSiteDecorator getGroovyCallDecorator(BytecodeInterceptorFilter interceptorFilter) {
            return groovyDecorators.computeIfAbsent(interceptorFilter, key -> new DefaultCallSiteDecorator(currentGroovyCallInterceptorSet.getCallInterceptors(interceptorFilter)));
        }
    
        private static void setCurrentGroovyCallInterceptorSet(CallSiteInterceptorSet interceptorSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/classpath/CallInterceptingMetaClassTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.classpath
    
    import org.gradle.internal.classpath.intercept.DefaultCallSiteDecorator
    import org.gradle.internal.classpath.intercept.DefaultCallSiteInterceptorSet
    import org.gradle.internal.classpath.intercept.CallSiteInterceptorSet
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top