Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 206 for methodName2 (0.52 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

        java.lang.Exception: ouch
            at org.ClassName1.methodName1(FileName1.java:11)
            at org.ClassName2.methodName2(FileName2.java:22)
            at org.ClassName3.methodName3(FileName3.java:33)
    
            Caused by:
            java.lang.RuntimeException: oops
                at org.ClassName1.methodName1(FileName1.java:11)
                at org.ClassName2.methodName2(FileName2.java:22)
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/ShortExceptionFormatterTest.groovy

                new StackTraceElement("org.ClassName2", "methodName2", "FileName2.java", 22),
                new StackTraceElement("org.ClassName3", "methodName3", "FileName3.java", 33)
            ] as StackTraceElement[]
        }
    
        private createCauseTrace() {
            [
                new StackTraceElement("org.ClassName0", "methodName0", "FileName0.java", 1),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/CandidateMethods.java

            return builder.build();
        }
    
        /**
         * @param methodName Method name
         * @return Candidate methods named {@literal methodName} or {@literal null} if none
         */
        Map<Equivalence.Wrapper<Method>, Collection<Method>> methodsNamed(String methodName) {
            if (candidates.containsKey(methodName)) {
                return candidates.get(methodName);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":test")
            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":secondTest")
            assertTestExecuted(className: "example.MyTest", methodName: "foo2", task: ":test")
            assertTestExecuted(className: "example.MyTest", methodName: "foo2", task: ":secondTest")
            if (supportsEfficientClassFiltering()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultInternalJvmTestRequest.java

        private final String className;
        private final String methodName;
        private final String testPattern;
    
        public DefaultInternalJvmTestRequest(String className, @Nullable String methodName, @Nullable String testPattern) {
            this.className = className;
            this.methodName = methodName;
            this.testPattern = testPattern;
        }
    
        @Override
        public String getClassName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/ClassMethodNameStackTraceSpecTest.groovy

            def spec = new ClassMethodNameStackTraceSpec("ClassName", "methodName")
    
            expect:
            spec.isSatisfiedBy(new StackTraceElement("ClassName", "methodName", "SomeFile.java", 42))
            spec.isSatisfiedBy(new StackTraceElement("ClassName", "methodName", "OtherFile.java", 21))
            spec.isSatisfiedBy(new StackTraceElement('ClassName$1', "methodName", "ClassName.java", 21))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/MethodSignature.java

            ));
        }
    
        private final String methodName;
        private final MethodType methodType;
    
        private MethodSignature(String methodName, MethodType methodType) {
            this.methodName = methodName;
            this.methodType = methodType;
        }
    
        public String methodName() {
            return methodName;
        }
    
        public MethodType methodType() {
            return methodType;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 16 17:15:11 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/ClassMethodNameStackTraceSpec.java

        private final String className;
        private final String methodName;
    
        ClassMethodNameStackTraceSpec(String className, @Nullable String methodName) {
            this.className = className;
            this.methodName = methodName;
        }
    
        @Override
        public boolean isSatisfiedBy(StackTraceElement element) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/listener/ClosureBackedMethodInvocationDispatch.java

        private final String methodName;
        private final Closure closure;
    
        public ClosureBackedMethodInvocationDispatch(String methodName, Closure closure) {
            this.methodName = methodName;
            this.closure = closure;
        }
    
        @Override
        public void dispatch(MethodInvocation message) {
            if (message.getMethodName().equals(methodName)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 12:43:02 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/TestThread.java

        }
      }
    
      private static class Request {
        final String methodName;
        final Object[] arguments;
    
        Request(String methodName, Object[] arguments) {
          this.methodName = checkNotNull(methodName);
          this.arguments = checkNotNull(arguments);
        }
      }
    
      private static class Response {
        final String methodName;
        final Object result;
        final Throwable throwable;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top