Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MethodInvoker (0.14 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/MethodInvoker.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.adapter;
    
    interface MethodInvoker {
        void invoke(MethodInvocation invocation) throws Throwable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 754 bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

                this.proxy = proxy;
            }
        }
    
        private static class ChainedMethodInvoker implements MethodInvoker {
            private final MethodInvoker[] invokers;
    
            private ChainedMethodInvoker(List<MethodInvoker> invokers) {
                this.invokers = invokers.toArray(new MethodInvoker[0]);
            }
    
            @Override
            public void invoke(MethodInvocation method) throws Throwable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    org.junit.runners.model.TestClass, internal.Assignments); protected void collectInitializatio(java.util.List); public org.junit.runners.model.Statement methodBlock(org.junit.runners.model.FrameworkMethod); protected org.junit.runners.model.Statement methodInvoker(org.junit.runners.model.FrameworkMethod, Object); public Object createTest() throws Exception; } org/junit/experimental/theories/DataPoints.class package org.junit.experimental.theories; public abstract interface DataPoints extends annotation.Annotation...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top