Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for methodName (0.39 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. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocMethodsBuilder.java

                }
                String methodName = cells.get(0).getTextContent().trim();
                Collection<MethodMetaData> methods = classDoc.getClassMetaData().findDeclaredMethods(methodName);
                if (methods.isEmpty()) {
                    throw new RuntimeException(String.format("No metadata for method '%s.%s()'. Available methods: %s", classDoc.getName(), methodName, classDoc.getClassMetaData().getDeclaredMethodNames()));
    Java
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.2K 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 Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/exception/MethodNotStaticRuntimeException.java

        private final String methodName;
    
        /**
         * {@link MethodNotStaticRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
         * @param methodName
         *            メソッド名
         */
        public MethodNotStaticRuntimeException(final Class<?> targetClass, final String methodName) {
            super("ECL0100", asArray(targetClass.getName(), methodName));
            this.targetClass = targetClass;
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk8WithJettyBootPlatform.kt

          args: Array<Any>?,
        ): Any? {
          val callArgs = args ?: arrayOf<Any?>()
          val methodName = method.name
          val returnType = method.returnType
          if (methodName == "supports" && Boolean::class.javaPrimitiveType == returnType) {
            return true // ALPN is supported.
          } else if (methodName == "unsupported" && Void.TYPE == returnType) {
            this.unsupported = true // Peer doesn't support ALPN.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 6K bytes
    - Viewed (0)
  6. 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 Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 26 20:07:17 GMT 2023
    - 10.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/beans/BeanDesc.java

         *
         * @param methodName
         *            メソッド名。{@literal null}や空文字列であってはいけません
         * @param paramTypes
         *            メソッドの引数型の並び
         * @return 引数の型に応じた{@link MethodDesc}
         */
        MethodDesc getMethodDescNoException(String methodName, Class<?>... paramTypes);
    
        /**
         * 引数に適合する{@link MethodDesc}を返します。
         *
         * @param methodName
         *            メソッド名。{@literal null}や空文字列であってはいけません
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperty.java

            private final String containingType;
            private final String methodName;
            private final String descriptor;
    
            private AccessorKey(String containingType, String methodName, String descriptor) {
                this.containingType = containingType;
                this.methodName = methodName;
                this.descriptor = descriptor;
            }
    
    Java
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  9. 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 Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 26.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java

            super("ECL0049", asArray(targetClass.getName(), MethodUtil.getSignature(methodName, methodArgClasses)));
            this.targetClass = targetClass;
            this.methodName = methodName;
            this.methodArgClasses = methodArgClasses;
        }
    
        /**
         * ターゲットの{@link Class}を返します。
         *
         * @return ターゲットの{@link Class}
         */
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.3K bytes
    - Viewed (0)
Back to top