Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for methodName (0.22 sec)

  1. 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;
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Apr 26 20:07:17 GMT 2023
    - 10.9K bytes
    - Viewed (0)
  2. 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;
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 26 20:07:17 GMT 2023
    - 10.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/MethodUtil.java

        /**
         * シグニチャの文字列表現を返します。
         *
         * @param methodName
         *            メソッド名。{@literal null}や空文字列であってはいけません
         * @param argTypes
         *            引数型のな並び
         * @return シグニチャの文字列表現
         */
        public static String getSignature(final String methodName, final Class<?>... argTypes) {
            assertArgumentNotEmpty("methodName", methodName);
    
            final StringBuilder buf = new StringBuilder(100);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

        }
    
        @Override
        public MethodDesc[] getMethodDescs(final String methodName) {
            assertArgumentNotEmpty("methodName", methodName);
    
            final MethodDesc[] methodDescs = methodDescsCache.get(methodName);
            if (methodDescs == null) {
                throw new MethodNotFoundRuntimeException(beanClass, methodName, null);
            }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  5. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

                            <thead><tr><td>Name</td></tr></thead>
                            <tr><td>methodName</td></tr>
                        </table>
                    </section>
                </chapter>
            ''')
    
            ClassDoc classDoc = classDoc('Class', content: content)
            MethodDoc method1 = methodDoc('methodName', id: 'method1Id', returnType: 'ReturnType1', description: 'method description', comment: 'method comment')
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 40.8K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/reflect/TypesTest.java

        @SuppressWarnings("unused")
        void withLowerBound(List<? super String[][]> list) {}
    
        static WildcardType getWildcardType(String methodName) throws Exception {
          ParameterizedType parameterType =
              (ParameterizedType)
                  WithWildcardType.class.getDeclaredMethod(methodName, List.class)
                      .getGenericParameterTypes()[0];
          return (WildcardType) parameterType.getActualTypeArguments()[0];
        }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 14.8K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                        "resources/upgraded-properties.json",
                        """
                            [{
                                "containingType": "com.example.Task",
                                "methodName": "getSourceCompatibility",
                                "methodDescriptor": "()Lorg/gradle/api/provider/Property;",
                                "propertyName": "sourceCompatibility",
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  8. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

        for (String methodName : STATIC_ONE_ARG_METHODS_SHOULD_PASS) {
          Method method = OneArg.class.getMethod(methodName, String.class);
          try {
            new NullPointerTester().testMethodParameter(new OneArg(), method, 0);
          } catch (AssertionFailedError unexpected) {
            fail("Should not have flagged method " + methodName);
          }
        }
      }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 47.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/reflect/TypesTest.java

        @SuppressWarnings("unused")
        void withLowerBound(List<? super String[][]> list) {}
    
        static WildcardType getWildcardType(String methodName) throws Exception {
          ParameterizedType parameterType =
              (ParameterizedType)
                  WithWildcardType.class.getDeclaredMethod(methodName, List.class)
                      .getGenericParameterTypes()[0];
          return (WildcardType) parameterType.getActualTypeArguments()[0];
        }
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 14.8K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

        @SuppressWarnings("unused")
        void withWildcardUpperBound(List<? extends A> list) {}
    
        Type getTargetType(String methodName) throws Exception {
          ParameterizedType parameterType =
              (ParameterizedType)
                  WithGenericBound.class.getDeclaredMethod(methodName, List.class)
                      .getGenericParameterTypes()[0];
          parameterType =
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 19.5K bytes
    - Viewed (0)
Back to top