Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 173 for GetMethod (0.52 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/UnrepresentableParameterException.java

            super(
                    String.format("Parameter %s of iteration %s of method '%s' toString() method threw exception",
                            paramIndex + 1, iTestResult.getMethod().getCurrentInvocationCount() + 1, iTestResult.getName()
                    ),
                    cause
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultImpl.java

         *
         * @see org.codelibs.fess.crawler.entity.AccessResult#getMethod()
         */
        @Override
        public String getMethod() {
            return method;
        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.AccessResult#setMethod(java.lang.String)
         */
        @Override
        public void setMethod(final String method) {
            this.method = method;
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/ReflectionDispatch.java

        public ReflectionDispatch(Object target) {
            this.target = target;
        }
    
        @Override
        public void dispatch(MethodInvocation message) {
            try {
                Method method = message.getMethod();
                method.setAccessible(true);
                method.invoke(target, message.getArguments());
            } catch (InvocationTargetException e) {
                throw UncheckedException.throwAsUncheckedException(e.getCause());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedRelocationIntegrationTest.groovy

                    def type = o.getClass()
                    def originalClassName = type.getMethod('getOriginalClassName').invoke(o)
                    def contentHash = type.getMethod('getContentHash').invoke(o)
                    println "\${title} class name: \${originalClassName} (remapped: \${type.name})"
                    println "\${title} class hash: \${contentHash}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/DefaultMethodRuleDefinition.java

            return new DefaultMethodRuleDefinition<T, R, S>(method, ModelType.of(source), returnType);
        }
    
        @Override
        public WeaklyTypeReferencingMethod<?, R> getMethod() {
            return method;
        }
    
        @Override
        public String getMethodName() {
            return method.getName();
        }
    
        @Override
        public ModelType<R> getReturnType() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureCancellationCauseTest.java

                executor.execute(runnable);
              }
            };
        Future<?> future = newFutureInstance();
        future
            .getClass()
            .getMethod(
                "setFuture",
                future.getClass().getClassLoader().loadClass(ListenableFuture.class.getName()))
            .invoke(future, badFuture);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractFutureCancellationCauseTest.java

                executor.execute(runnable);
              }
            };
        Future<?> future = newFutureInstance();
        future
            .getClass()
            .getMethod(
                "setFuture",
                future.getClass().getClassLoader().loadClass(ListenableFuture.class.getName()))
            .invoke(future, badFuture);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/FormattingValidationProblemCollectorTest.groovy

        }
    
        def "formats message with a single method problem"() {
            given:
            def collector = new FormattingValidationProblemCollector("<thing>", ModelType.of(String))
            collector.add(String.class.getMethod("indexOf", String), "rule", "is not annotated with anything.")
    
            expect:
            collector.format() == '''Type java.lang.String is not a valid <thing>:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/AbstractServiceMethod.java

        }
    
        @Override
        public Class<?> getOwner() {
            return owner;
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
        public Method getMethod() {
            return method;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/RespondWithPathToParent.groovy

        RespondWithPathToParent(String pathToParent) {
            this.pathToParent = pathToParent
        }
    
        @Override
        Object respond(IMockInvocation invocation) {
            if (invocation.getMethod().name == "getPathToParent") {
                return pathToParent
            }
            return EmptyOrDummyResponse.INSTANCE.respond(invocation)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top