Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for interceptSafe (0.14 sec)

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

            if (!expectedReceiver.equals(invocation.getReceiver())) {
                return invocation.callOriginal();
            }
            return interceptSafe(invocation, consumer);
        }
    
        /**
         * Same as the {@link AbstractCallInterceptor#intercept(Invocation, String)} but the {@code invocation.getReceiver()} is guaranteed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

            public IntegerGetIntegerInterceptor() {
                super(Integer.class, InterceptScope.methodsNamed("getInteger"));
            }
    
            @Override
            protected Object interceptSafe(Invocation invocation, String consumer) throws Throwable {
                switch (invocation.getArgsCount()) {
                    case 1:
                        return getInteger(invocation.getArgument(0).toString(), consumer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top