Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for from (0.14 sec)

  1. src/main/java/org/codelibs/core/collection/LruHashSet.java

         */
        @Override
        public boolean add(final E o) {
            return map.put(o, PRESENT) == null;
        }
    
        /**
         * Removes the specified element from this set if it is present.
         *
         * @param o
         *            object to be removed from this set, if present.
         * @return true if the set contained the specified element.
         */
        @Override
        public boolean remove(final Object o) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/CopyUtil.java

     */
    public abstract class CopyUtil {
    
        /** コピーで使用するバッファサイズ */
        protected static final int DEFAULT_BUF_SIZE = 4096;
    
        // ////////////////////////////////////////////////////////////////
        // from InputStream to OutputStream
        //
        /**
         * 入力ストリームから出力ストリームへコピーします。
         * <p>
         * 入力ストリーム、出力ストリームともクローズされません。
         * </p>
         *
         * @param in
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 52.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/net/URLUtil.java

            }
        }
    
        /**
         * 指定のエンコーディング方式を使用して文字列を<code>application/x-www-form-urlencoded</code>
         * 形式に変換します。
         *
         * @param s
         *            変換対象の文字列。{@literal null}や空文字列であってはいけません
         * @param enc
         *            エンコーディング。{@literal null}や空文字列であってはいけません
         * @return <code>application/x-www-form-urlencoded</code>でエンコード文字列
         */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/nio/ChannelUtil.java

        }
    
        /**
         * ファイルチャネル{@literal from}を{@literal to}へ転送します。
         *
         * @param from
         *            転送元のファイルチャネル。{@literal null}であってはいけません
         * @param to
         *            転送先のファイルチャネル。{@literal null}であってはいけません
         * @return 転送されたバイト数
         */
        public static long transfer(final FileChannel from, final FileChannel to) {
            assertArgumentNotNull("from", from);
            assertArgumentNotNull("to", to);
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/concurrent/CommonPoolUtil.java

                currentThread.setContextClassLoader(CommonPoolUtil.class.getClassLoader());
                try {
                    task.run();
                } catch (final Exception e) {
                    logger.error("Uncaught exception from " + task, e);
                } finally {
                    currentThread.setContextClassLoader(orignal);
                }
            });
        }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.5K bytes
    - Viewed (1)
Back to top