Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for doTestVarargWithArray (0.16 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/classpath/BasicCallInterceptionTest.groovy

    import static org.gradle.internal.classpath.JavaCallerForBasicCallInterceptorTest.doTestVararg
    import static org.gradle.internal.classpath.JavaCallerForBasicCallInterceptorTest.doTestVarargWithArray
    import static org.gradle.internal.classpath.JavaCallerForBasicCallInterceptorTest.doTestVarargWithNullItem
    import static org.gradle.internal.classpath.intercept.JvmBytecodeInterceptorFactoryProvider.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:44:54 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/classpath/JavaCallerForBasicCallInterceptorTest.java

            receiver.test(null);
        }
    
        public static void doTestVararg(InterceptorTestReceiver receiver) {
            receiver.testVararg(receiver, receiver, receiver);
        }
    
        public static void doTestVarargWithArray(InterceptorTestReceiver receiver) {
            //noinspection RedundantArrayCreation
            receiver.testVararg(new Object[]{receiver, receiver, receiver});
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:55 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top