Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ClosureBackedMethodInvocationDispatch (0.4 sec)

  1. subprojects/core/src/main/java/org/gradle/listener/ClosureBackedMethodInvocationDispatch.java

    import org.gradle.internal.dispatch.MethodInvocation;
    
    import java.util.Arrays;
    
    public class ClosureBackedMethodInvocationDispatch implements Dispatch<MethodInvocation> {
        private final String methodName;
        private final Closure closure;
    
        public ClosureBackedMethodInvocationDispatch(String methodName, Closure closure) {
            this.methodName = methodName;
            this.closure = closure;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 12:43:02 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/invocation/DefaultGradle.java

            assertProjectMutatingMethodAllowed(signature);
            projectEvaluationListenerBroadcast.add(new ClosureBackedMethodInvocationDispatch(methodName, decorate(registrationPoint, closure)));
        }
    
        private void registerBuildListener(String methodName, Closure<?> closure) {
            buildListenerBroadcast.add(new ClosureBackedMethodInvocationDispatch(methodName, closure));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

    import org.gradle.internal.service.ServiceRegistry;
    import org.gradle.internal.service.scopes.ServiceRegistryFactory;
    import org.gradle.internal.typeconversion.TypeConverter;
    import org.gradle.listener.ClosureBackedMethodInvocationDispatch;
    import org.gradle.model.Model;
    import org.gradle.model.RuleSource;
    import org.gradle.model.dsl.internal.NonTransformedModelDslBacking;
    import org.gradle.model.dsl.internal.TransformedModelDslBacking;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.listener.ClosureBackedMethodInvocationDispatch> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ClosureBackedMethodInvocationDispatch.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top