Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for methodInfos (0.2 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeoutInterceptor.groovy

            } catch (Throwable t) {
                throw t
            }
        }
    
        void intercept(Action<Void> action) {
            MethodInfo methodInfo = new MethodInfo()
            methodInfo.setName('MockMethod')
            intercept(new MethodInvocation(null, null, null, null, null, methodInfo, null) {
                void proceed() throws Throwable {
                    action.execute(null)
                }
            })
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (1)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeoutExtension.java

    import groovy.lang.Closure;
    import org.spockframework.runtime.extension.IAnnotationDrivenExtension;
    import org.spockframework.runtime.model.FeatureInfo;
    import org.spockframework.runtime.model.MethodInfo;
    import org.spockframework.runtime.model.SpecInfo;
    
    import java.lang.reflect.Constructor;
    
    public class IntegrationTestTimeoutExtension implements IAnnotationDrivenExtension<IntegrationTestTimeout> {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/resolver.go

    	var pkgImports = make(map[*Package]bool)
    	for _, imp := range pkg.imports {
    		pkgImports[imp] = true
    	}
    
    	type methodInfo struct {
    		obj  *Func        // method
    		ptr  bool         // true if pointer receiver
    		recv *syntax.Name // receiver type name
    	}
    	var methods []methodInfo // collected methods with valid receivers and non-blank _ names
    	var fileScopes []*Scope
    	for fileNo, file := range check.files {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. src/go/types/resolver.go

    	var pkgImports = make(map[*Package]bool)
    	for _, imp := range pkg.imports {
    		pkgImports[imp] = true
    	}
    
    	type methodInfo struct {
    		obj  *Func      // method
    		ptr  bool       // true if pointer receiver
    		recv *ast.Ident // receiver type name
    	}
    	var methods []methodInfo // collected methods with valid receivers and non-blank _ names
    	var fileScopes []*Scope
    	for fileNo, file := range check.files {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    trospection; final synchronized class ClassMap$CacheMiss { private void ClassMap$CacheMiss(); } org/codehaus/plexus/util/introspection/ClassMap$MethodInfo.class package org.codehaus.plexus.util.introspection; final synchronized class ClassMap$MethodInfo { reflect.Method method; String name; Class[] parameterTypes; boolean upcast; void ClassMap$MethodInfo(reflect.Method); void tryUpcasting(Class) throws NoSuchMethodExceptio; } org/codehaus/plexus/util/introspection/ClassMap.class package org.code...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top