Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for proto3 (0.14 sec)

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

        }
    
        /**
         * 配列に変換します。
         *
         * @param proto
         *            要素の格納先の配列。配列のサイズが十分でない場合は、同じ実行時の型で新しい配列が格納用として割り当てられる
         * @return 配列
         */
        public V[] toArray(final V[] proto) {
            @SuppressWarnings("unchecked")
            final V[] array = proto.length >= size ? proto : (V[]) Array.newInstance(proto.getClass().getComponentType(), size);
            for (int i = 0; i < array.length; i++) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 20.6K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/net/HttpHeaders.java

      public static final String X_FORWARDED_FOR = "X-Forwarded-For";
      /** The HTTP {@code X-Forwarded-Proto} header field name. */
      public static final String X_FORWARDED_PROTO = "X-Forwarded-Proto";
      /**
       * The HTTP <a href="http://goo.gl/lQirAH">{@code X-Forwarded-Host}</a> header field name.
       *
       * @since 20.0
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:08:08 GMT 2024
    - 34.3K bytes
    - Viewed (0)
Back to top