Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for high (0.15 sec)

  1. guava/src/com/google/common/collect/CompactLinkedHashMap.java

          CompactLinkedHashMap<K, V> create() {
        return new CompactLinkedHashMap<>();
      }
    
      /**
       * Creates a {@code CompactLinkedHashMap} instance, with a high enough "initial capacity" that it
       * <i>should</i> hold {@code expectedSize} elements without rebuilding internal data structures.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/Hashing.java

       * Returns a hash function implementing FarmHash's Fingerprint64, an open-source algorithm.
       *
       * <p>This is designed for generating persistent fingerprints of strings. It isn't
       * cryptographically secure, but it produces a high-quality hash with fewer collisions than some
       * alternatives we've used in the past.
       *
       * <p>FarmHash fingerprints are encoded by {@link HashCode#asBytes} in little-endian order. This
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 09 00:37:15 GMT 2024
    - 29.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableSet.java

         * wrapper around j.u.HashSet, which has built-in flooding protection. MAX_RUN_MULTIPLIER was
         * determined experimentally to match our desired probability of false positives.
         */
        // NB: yes, this is surprisingly high, but that's what the experiments said was necessary
        // Raising this number slows the worst-case contains behavior, speeds up hashFloodingDetected,
        // and reduces the false-positive probability.
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 35.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/lang/FieldUtil.java

    import java.lang.reflect.Type;
    
    import org.codelibs.core.exception.ClIllegalArgumentException;
    import org.codelibs.core.exception.IllegalAccessRuntimeException;
    
    /**
     * {@link Field}用のユーティリティクラスです。
     *
     * @author higa
     */
    public abstract class FieldUtil {
    
        /**
         * {@link Field}によって表される{@code static}フィールドの値を返します。
         *
         * @param <T>
         *            フィールドの型
         * @param field
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/log/Logger.java

    import org.codelibs.core.exception.ClIllegalArgumentException;
    import org.codelibs.core.message.MessageFormatter;
    import org.codelibs.core.misc.DisposableUtil;
    
    /**
     * ログ出力を提供するクラスです。
     *
     * @author higa
     */
    public class Logger {
    
        /**
         * ログの出力レベルです。
         */
        public enum LogLevel {
            /** デバッグ */
            DEBUG,
            /** 情報 */
            INFO,
            /** 警告 */
            WARN,
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

    import org.codelibs.core.lang.ClassUtil;
    import org.codelibs.core.lang.FieldUtil;
    import org.codelibs.core.lang.StringUtil;
    
    /**
     * {@link BeanDesc}の実装クラスです。
     *
     * @author higa
     */
    public class BeanDescImpl implements BeanDesc {
    
        /** 空のオブジェクト配列 */
        protected static final Object[] EMPTY_ARGS = new Object[0];
    
        /** 空のクラス配列 */
    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)
  7. src/main/java/org/codelibs/core/convert/DateConversionUtil.java

     * <td>{@literal yyyyMMdd}</td>
     * </tr>
     * <tr>
     * <td>その他</td>
     * <td>{@link java.sql.Date#valueOf(String) Jdbcエスケープ構文}形式</td>
     * <td>{@literal yyyy-MM-dd}</td>
     * </tr>
     * </table>
     *
     * @author higa
     * @see TimeConversionUtil
     * @see TimestampConversionUtil
     */
    public abstract class DateConversionUtil {
    
        /** {@link DateFormat}が持つスタイルの配列 */
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

     * </pre>
     * <p>
     * メソッドチェーンでオプションを複数指定することもできます。
     * </p>
     *
     * <pre>
     * copyBeanToBean(srcBean, destBean, excludeNull().dateConverter("date", "MM/dd"));
     * </pre>
     *
     * @author Kimura Satoshi
     * @author higa
     * @author shinsuke
     * @see CopyOptionsUtil
     * @see CopyOptions
     */
    public abstract class BeanUtil {
    
        /** デフォルトのオプション */
        protected static final CopyOptions DEFAULT_OPTIONS = new CopyOptions();
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

    import org.codelibs.core.io.SerializeUtil;
    import org.junit.After;
    import org.junit.Before;
    import org.junit.Rule;
    import org.junit.Test;
    import org.junit.rules.ExpectedException;
    
    /**
     * @author higa
     *
     */
    public class ArrayMapTest {
    
        /**
         * @see org.junit.rules.ExpectedException
         */
        @Rule
        public ExpectedException exception = ExpectedException.none();
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

    import org.codelibs.core.lang.FieldUtil;
    import org.codelibs.core.lang.MethodUtil;
    import org.codelibs.core.lang.ModifierUtil;
    
    /**
     * {@link PropertyDesc}の実装クラスです。
     *
     * @author higa
     */
    public class PropertyDescImpl implements PropertyDesc {
    
        private static final Object[] EMPTY_ARGS = new Object[0];
    
        private final String propertyName;
    
        private final Class<?> propertyType;
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.3K bytes
    - Viewed (0)
Back to top