Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 1250 (0.16 sec)

  1. docs/en/docs/release-notes.md

    * 🌐 Add Spanish translation for `advanced/additional-status-codes.md`. PR [#1252](https://github.com/tiangolo/fastapi/pull/1252) by [@jfunez](https://github.com/jfunez).
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

      abstract ImmutableSortedSet<E> tailSetImpl(E fromElement, boolean inclusive);
    
      /** @since 12.0 */
      @GwtIncompatible // NavigableSet
      @Override
      @CheckForNull
      public E lower(E e) {
        return Iterators.<@Nullable E>getNext(headSet(e, false).descendingIterator(), null);
      }
    
      /** @since 12.0 */
      @Override
      @CheckForNull
      public E floor(E e) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  3. .bazelrc

    # Target Moneterey as the minimum compatible OS version
    build:release_macos_arm64 --macos_minimum_os=12.0
    build:release_macos_arm64 --action_env MACOSX_DEPLOYMENT_TARGET=12.0
    
    # Base test configs for macOS
    test:release_macos_base --verbose_failures=true --local_test_jobs=HOST_CPUS
    test:release_macos_base --test_timeout=300,450,1200,3600 --test_output=errors
    test:release_macos_base --build_tests_only --keep_going
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Thu May 02 19:34:20 GMT 2024
    - 52.8K bytes
    - Viewed (2)
  4. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

     * "https://github.com/google/guava/wiki/ImmutableCollectionsExplained">immutable collections</a>.
     *
     * @author Jared Levy
     * @author Louis Wasserman
     * @since 2.0 (implements {@code NavigableMap} since 12.0)
     */
    @GwtCompatible(serializable = true, emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class ImmutableSortedMap<K, V> extends ImmutableMap<K, V>
        implements NavigableMap<K, V> {
      /**
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 53.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

     *
     * <p>See the Guava User Guide article on <a href=
     * "https://github.com/google/guava/wiki/ImmutableCollectionsExplained">immutable collections</a>.
     *
     * @author Louis Wasserman
     * @since 12.0
     */
    @GwtIncompatible // hasn't been tested yet
    @ElementTypesAreNonnullByDefault
    public abstract class ImmutableSortedMultiset<E> extends ImmutableMultiset<E>
        implements SortedMultiset<E> {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 35.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

       *
       * <p><b>Note:</b> if you need an immutable empty {@link Set}, use {@link Collections#emptySet}
       * instead.
       *
       * @return a new, empty {@code CopyOnWriteArraySet}
       * @since 12.0
       */
      @J2ktIncompatible
      @GwtIncompatible // CopyOnWriteArraySet
      public static <E extends @Nullable Object> CopyOnWriteArraySet<E> newCopyOnWriteArraySet() {
        return new CopyOnWriteArraySet<>();
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 77.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

       * must work on any type of {@code K}.
       *
       * @param map the navigable map for which an unmodifiable view is to be returned
       * @return an unmodifiable view of the specified navigable map
       * @since 12.0
       */
      @GwtIncompatible // NavigableMap
      public static <K extends @Nullable Object, V extends @Nullable Object>
          NavigableMap<K, V> unmodifiableNavigableMap(NavigableMap<K, ? extends V> map) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
Back to top