Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,088 for Link (0.3 sec)

  1. android/guava/src/com/google/common/io/CharSource.java

       *
       * <ul>
       *   <li>use {@link StringReader} instead of {@link CharSequenceReader}. It is faster since it can
       *       use {@link String#getChars(int, int, char[], int)} instead of copying characters one by
       *       one with {@link CharSequence#charAt(int)}.
       *   <li>use {@link Appendable#append(CharSequence)} in {@link #copyTo(Appendable)} and {@link
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed May 17 14:35:11 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  2. docs/en/data/external_links.yml

        author_link: https://twitter.com/Stavros
        link: https://www.stavros.io/posts/fastapi-with-django/
        title: Using FastAPI with Django
      - author: Twilio
        author_link: https://www.twilio.com
        link: https://www.twilio.com/blog/build-secure-twilio-webhook-python-fastapi
        title: Build a Secure Twilio Webhook with Python and FastAPI
      - author: Sebastián Ramírez (tiangolo)
        author_link: https://twitter.com/tiangolo
    Others
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Mar 21 20:57:27 GMT 2024
    - 21.3K bytes
    - Viewed (2)
  3. guava/src/com/google/common/collect/ForwardingMap.java

      }
    
      /**
       * A sensible implementation of {@link Map#values} in terms of the following methods: {@link
       * ForwardingMap#clear}, {@link ForwardingMap#containsValue}, {@link ForwardingMap#isEmpty},
       * {@link ForwardingMap#size}, and the {@link Set#iterator} method of {@link
       * ForwardingMap#entrySet}. In many cases, you may wish to override {@link ForwardingMap#values}
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri May 12 15:26:39 GMT 2023
    - 9.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/convert/TimeConversionUtil.java

    import org.codelibs.core.misc.LocaleUtil;
    
    /**
     * 時刻を表現するオブジェクトから{@link Date}、{@link Calendar}、{@link Time} への変換ユーティリティです。
     * <p>
     * 日付だけを表現するオブジェクトを変換する場合は {@link DateConversionUtil}を、 日付と時刻を表現するオブジェクトを変換する場合は
     * {@link TimestampConversionUtil}を 参照してください。
     * </p>
     * <p>
     * 変換元のオブジェクトが{@link Date}、{@link Calendar}、{@link Time}の場合は、
     * それらの持つミリ秒単位の値を使って変換後のオブジェクトを作成します。
     * その他の型の場合は変換元オブジェクトの文字列表現から変換後のオブジェクトを作成します。
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/ByteSource.java

       *     sink}
       */
      @CanIgnoreReturnValue
      public long copyTo(ByteSink sink) throws IOException {
        checkNotNull(sink);
    
        Closer closer = Closer.create();
        try {
          InputStream in = closer.register(openStream());
          OutputStream out = closer.register(sink.openStream());
          return ByteStreams.copy(in, out);
        } catch (Throwable e) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed May 17 14:35:11 GMT 2023
    - 26.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/StatsAccumulator.java

       * contains both {@link Double#POSITIVE_INFINITY} and {@link Double#NEGATIVE_INFINITY} then the
       * result is {@link Double#NaN}. If it contains {@link Double#POSITIVE_INFINITY} and finite values
       * only or {@link Double#POSITIVE_INFINITY} only, the result is {@link Double#POSITIVE_INFINITY}.
       * If it contains {@link Double#NEGATIVE_INFINITY} and finite values only or {@link
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 17:02:53 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/ValueGraph.java

       * IllegalArgumentException}.
       */
      @Override
      boolean allowsSelfLoops();
    
      /** Returns the order of iteration for the elements of {@link #nodes()}. */
      @Override
      ElementOrder<N> nodeOrder();
    
      /**
       * Returns an {@link ElementOrder} that specifies the order of iteration for the elements of
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jan 22 17:29:38 GMT 2024
    - 15K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java

    import org.codelibs.core.misc.LocaleUtil;
    
    /**
     * 日付と時刻を表現するオブジェクトから{@link Date}、{@link Calendar}、{@link Timestamp}
     * への変換ユーティリティです。
     * <p>
     * 日付だけを表現するオブジェクトを変換する場合は{@link DateConversionUtil}を、 時刻だけを表現するオブジェクトを変換する場合は
     * {@link TimeConversionUtil}を参照してください。
     * </p>
     * <p>
     * 変換元のオブジェクトが{@link Date}、{@link Calendar}、{@link Timestamp}の場合は、
     * それらの持つミリ秒単位の値を使って変換後のオブジェクトを作成します。
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 22.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Multiset.java

     * the standard collection operations {@link #add(Object)} or {@link #remove(Object)} are encouraged
     * to implement the related methods as well. Finally, two collection views are provided: {@link
     * #elementSet} contains the distinct elements of the multiset "with duplicates collapsed", and
     * {@link #entrySet} is similar but contains {@link Entry Multiset.Entry} instances, each providing
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Sat Jun 17 14:40:53 GMT 2023
    - 19.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ForwardingMultiset.java

      /**
       * A sensible implementation of {@link Multiset#elementSet} in terms of the following methods:
       * {@link ForwardingMultiset#clear}, {@link ForwardingMultiset#contains}, {@link
       * ForwardingMultiset#containsAll}, {@link ForwardingMultiset#count}, {@link
       * ForwardingMultiset#isEmpty}, the {@link Set#size} and {@link Set#iterator} methods of {@link
       * ForwardingMultiset#entrySet}, and {@link ForwardingMultiset#remove(Object, int)}. In many
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri May 12 15:26:39 GMT 2023
    - 10.4K bytes
    - Viewed (0)
Back to top