Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getInterceptScopes (0.26 sec)

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

                    return second.intercept(invocation, consumer);
                }
            }, consumer);
        }
    
        @Override
        public Set<InterceptScope> getInterceptScopes() {
            return Sets.union(first.getInterceptScopes(), second.getInterceptScopes());
        }
    
        @Nullable
        @Override
        public Class<?> matchesProperty(Class<?> receiverClass) {
            Class<?> typeOfProperty = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/AbstractCallInterceptor.java

            boolean isSpread = (flags & IndyInterface.SPREAD_CALL) != 0;
            return intercept(new MethodHandleInvocation(original, args, isSpread), consumer);
        }
    
        @Override
        public Set<InterceptScope> getInterceptScopes() {
            return interceptScopes;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallInterceptor.java

         */
        Object intercept(Invocation invocation, String consumer) throws Throwable;
    
        MethodHandle decorateMethodHandle(MethodHandle original, MethodHandles.Lookup caller, int flags);
    
        Set<InterceptScope> getInterceptScopes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

            callInterceptors.forEach(this::addInterceptor);
        }
    
        private void addInterceptor(CallInterceptor interceptor) {
            for (InterceptScope scope : interceptor.getInterceptScopes()) {
                interceptors.compute(scope, (__, previous) -> previous == null ? interceptor : new CompositeCallInterceptor(previous, interceptor));
                interceptedCallSiteNames.add(scope.getCallSiteName());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top