Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CallInterceptionFilteringTestReceiver (0.59 sec)

  1. subprojects/core/src/testInterceptors/java/org/gradle/internal/classpath/CallInterceptionFilteringTestReceiver.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.classpath;
    
    public class CallInterceptionFilteringTestReceiver {
    
        public String intercepted = null;
    
        public void testInstrumentation() {}
    
        public void testBytecodeUpgrade() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 17:53:39 UTC 2023
    - 835 bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/classpath/JavaCallerForCallInterceptionFilteringTest.java

    public class JavaCallerForCallInterceptionFilteringTest {
    
        public static void doTestInstrumentation(CallInterceptionFilteringTestReceiver receiver) {
            receiver.testInstrumentation();
        }
    
        public static void doTestBytecodeUpgrade(CallInterceptionFilteringTestReceiver receiver) {
            receiver.testBytecodeUpgrade();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 17:53:39 UTC 2023
    - 1001 bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/classpath/CallInterceptionFilteringTest.groovy

        def setup() {
            originalMetaClass = CallInterceptionFilteringTestReceiver.metaClass
        }
    
        def cleanup() {
            CallInterceptionFilteringTestReceiver.metaClass = originalMetaClass
        }
    
        String interceptedWhen(
            boolean shouldDelegate,
            @ClosureParams(value = SimpleType, options = "CallInterceptionFilteringTestReceiver") Closure<?> call
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. subprojects/core/src/testInterceptors/java/org/gradle/internal/classpath/CallInterceptionFilteringTestInstrumentationDeclaration.java

        @InterceptCalls
        @CallableKind.InstanceMethod
        @SuppressWarnings("NewMethodNamingConvention")
        public static void intercept_testInstrumentation(@ParameterKind.Receiver CallInterceptionFilteringTestReceiver self) {
            self.intercepted = "testInstrumentation()";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 17:53:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. subprojects/core/src/testInterceptors/java/org/gradle/internal/classpath/CallInterceptionFilteringTestBytecodeUpgradeDeclaration.java

        @InterceptCalls
        @CallableKind.InstanceMethod
        @SuppressWarnings("NewMethodNamingConvention")
        public static void intercept_testBytecodeUpgrade(@ParameterKind.Receiver CallInterceptionFilteringTestReceiver self) {
            self.intercepted = "testBytecodeUpgrade()";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 17:53:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top