Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 176 for 190 (0.03 sec)

  1. CHANGELOG/CHANGELOG-1.19.md

      - [Changelog since v1.19.0](#changelog-since-v1190)
      - [Changes by Kind](#changes-by-kind-15)
        - [Bug or Regression](#bug-or-regression-14)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake-6)
      - [Dependencies](#dependencies-15)
        - [Added](#added-15)
        - [Changed](#changed-15)
        - [Removed](#removed-15)
    - [v1.19.0](#v1190)
      - [Downloads for v1.19.0](#downloads-for-v1190)
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/VerifyException.java

       * null} if {@code cause} is null, and {@code cause.toString()} otherwise.
       *
       * @since 19.0
       */
      public VerifyException(@CheckForNull Throwable cause) {
        super(cause);
      }
    
      /**
       * Constructs a {@code VerifyException} with the message {@code message} and the cause {@code
       * cause}.
       *
       * @since 19.0
       */
      public VerifyException(@CheckForNull String message, @CheckForNull Throwable cause) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractListeningExecutorService.java

    @GwtIncompatible
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    public abstract class AbstractListeningExecutorService extends AbstractExecutorService
        implements ListeningExecutorService {
    
      /**
       * @since 19.0 (present with return type {@code ListenableFutureTask} since 14.0)
       */
      @CanIgnoreReturnValue // TODO(kak): consider removing this
      @Override
      protected final <T extends @Nullable Object> RunnableFuture<T> newTaskFor(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AbstractListeningExecutorService.java

    @GwtIncompatible
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    public abstract class AbstractListeningExecutorService extends AbstractExecutorService
        implements ListeningExecutorService {
    
      /**
       * @since 19.0 (present with return type {@code ListenableFutureTask} since 14.0)
       */
      @CanIgnoreReturnValue // TODO(kak): consider removing this
      @Override
      protected final <T extends @Nullable Object> RunnableFuture<T> newTaskFor(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/VerifyException.java

       * null} if {@code cause} is null, and {@code cause.toString()} otherwise.
       *
       * @since 19.0
       */
      public VerifyException(@CheckForNull Throwable cause) {
        super(cause);
      }
    
      /**
       * Constructs a {@code VerifyException} with the message {@code message} and the cause {@code
       * cause}.
       *
       * @since 19.0
       */
      public VerifyException(@CheckForNull String message, @CheckForNull Throwable cause) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/CharMatcher.java

       */
    
      // Constant matcher factory methods
    
      /**
       * Matches any character.
       *
       * @since 19.0 (since 1.0 as constant {@code ANY})
       */
      public static CharMatcher any() {
        return Any.INSTANCE;
      }
    
      /**
       * Matches no characters.
       *
       * @since 19.0 (since 1.0 as constant {@code NONE})
       */
      public static CharMatcher none() {
        return None.INSTANCE;
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:00:28 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableClassToInstanceMap.java

       * <p><b>Performance note:</b> the instance returned is a singleton.
       *
       * @since 19.0
       */
      @SuppressWarnings("unchecked")
      public static <B> ImmutableClassToInstanceMap<B> of() {
        return (ImmutableClassToInstanceMap<B>) EMPTY;
      }
    
      /**
       * Returns an {@code ImmutableClassToInstanceMap} containing a single entry.
       *
       * @since 19.0
       */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed May 10 21:56:03 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. api/except.txt

    pkg syscall (freebsd-386), const SYS_FSTATFS = 397
    pkg syscall (freebsd-386), const SYS_GETDIRENTRIES = 196
    pkg syscall (freebsd-386), const SYS_GETFSSTAT = 395
    pkg syscall (freebsd-386), const SYS_LSTAT = 190
    pkg syscall (freebsd-386), const SYS_LSTAT ideal-int
    pkg syscall (freebsd-386), const SYS_MKNODAT = 498
    pkg syscall (freebsd-386), const SYS_STAT = 188
    pkg syscall (freebsd-386), const SYS_STAT ideal-int
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Sun Jun 16 23:08:08 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableBiMap.java

          return this;
        }
    
        /**
         * Adds the given {@code entry} to the bimap. Duplicate keys or values are not allowed, and will
         * cause {@link #build} to fail.
         *
         * @since 19.0
         */
        @CanIgnoreReturnValue
        @Override
        public Builder<K, V> put(Entry<? extends K, ? extends V> entry) {
          super.put(entry);
          return this;
        }
    
        /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/RemovalNotification.java

       * the given {@code cause} for the removal. The {@code key} and/or {@code value} may be {@code
       * null} if they were already garbage collected.
       *
       * @since 19.0
       */
      public static <K, V> RemovalNotification<K, V> create(
          @CheckForNull K key, @CheckForNull V value, RemovalCause cause) {
        return new RemovalNotification<>(key, value, cause);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Feb 01 20:46:24 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top