Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for removeLastOccurrence (0.28 sec)

  1. android/guava/src/com/google/common/collect/ForwardingDeque.java

      public boolean removeFirstOccurrence(@CheckForNull Object o) {
        return delegate().removeFirstOccurrence(o);
      }
    
      @CanIgnoreReturnValue
      @Override
      public boolean removeLastOccurrence(@CheckForNull Object o) {
        return delegate().removeLastOccurrence(o);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ForwardingDeque.java

      public boolean removeFirstOccurrence(@CheckForNull Object o) {
        return delegate().removeFirstOccurrence(o);
      }
    
      @CanIgnoreReturnValue
      @Override
      public boolean removeLastOccurrence(@CheckForNull Object o) {
        return delegate().removeLastOccurrence(o);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java

          synchronized (queue) {
            boolean removed =
                (workerRunningState == IDLE || workerRunningState == QUEUING)
                    && queue.removeLastOccurrence(submittedTask);
            // If the delegate is directExecutor(), the submitted runnable could have thrown a REE. But
            // that's handled by the log check that catches RuntimeExceptions in the queue worker.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/SequentialExecutor.java

          synchronized (queue) {
            boolean removed =
                (workerRunningState == IDLE || workerRunningState == QUEUING)
                    && queue.removeLastOccurrence(submittedTask);
            // If the delegate is directExecutor(), the submitted runnable could have thrown a REE. But
            // that's handled by the log check that catches RuntimeExceptions in the queue worker.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Synchronized.java

          synchronized (mutex) {
            return delegate().removeFirstOccurrence(o);
          }
        }
    
        @Override
        public boolean removeLastOccurrence(@CheckForNull Object o) {
          synchronized (mutex) {
            return delegate().removeLastOccurrence(o);
          }
        }
    
        @Override
        public void push(E e) {
          synchronized (mutex) {
            delegate().push(e);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Synchronized.java

          synchronized (mutex) {
            return delegate().removeFirstOccurrence(o);
          }
        }
    
        @Override
        public boolean removeLastOccurrence(@CheckForNull Object o) {
          synchronized (mutex) {
            return delegate().removeLastOccurrence(o);
          }
        }
    
        @Override
        public void push(E e) {
          synchronized (mutex) {
            delegate().push(e);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
Back to top