Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 858 for removal (0.05 sec)

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

      }
    
      @CanIgnoreReturnValue
      @Override
      public boolean remove(@Nullable Object key, @Nullable Object value) {
        return delegate().remove(key, value);
      }
    
      @CanIgnoreReturnValue
      @Override
      public Collection<V> removeAll(@Nullable Object key) {
        return delegate().removeAll(key);
      }
    
      @CanIgnoreReturnValue
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 21:10:54 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingSet.java

      }
    
      @Override
      public int hashCode() {
        return delegate().hashCode();
      }
    
      /**
       * A sensible definition of {@link #removeAll} in terms of {@link #iterator} and {@link #remove}.
       * If you override {@code iterator} or {@code remove}, you may wish to override {@link #removeAll}
       * to forward to this implementation.
       *
       * @since 7.0 (this version overrides the {@code ForwardingCollection} version as of 12.0)
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ForwardingMultimap.java

      }
    
      @CanIgnoreReturnValue
      @Override
      public boolean remove(@Nullable Object key, @Nullable Object value) {
        return delegate().remove(key, value);
      }
    
      @CanIgnoreReturnValue
      @Override
      public Collection<V> removeAll(@Nullable Object key) {
        return delegate().removeAll(key);
      }
    
      @CanIgnoreReturnValue
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 21:10:54 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

         * to ["a", "b", ""].
         */
        private fun pop() {
          val removed = encodedPathSegments.removeAt(encodedPathSegments.size - 1)
    
          // Make sure the path ends with a '/' by either adding an empty string or clearing a segment.
          if (removed.isEmpty() && encodedPathSegments.isNotEmpty()) {
            encodedPathSegments[encodedPathSegments.size - 1] = ""
          } else {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/LockHeldAssertingSet.java

      @Override
      public boolean remove(@Nullable Object o) {
        assertTrue(Thread.holdsLock(mutex));
        return super.remove(o);
      }
    
      @Override
      public boolean removeAll(Collection<?> c) {
        assertTrue(Thread.holdsLock(mutex));
        return super.removeAll(c);
      }
    
      @Override
      public boolean retainAll(Collection<?> c) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/multichannel/ChannelManager.java

            return channels.values().stream().filter(c -> c.getTransport() == transport).findFirst().orElse(null);
        }
    
        /**
         * Remove a channel
         *
         * @param channel channel to remove
         */
        public void removeChannel(ChannelInfo channel) {
            channels.remove(channel.getChannelId());
            try {
                if (channel.getTransport() != null) {
                    channel.getTransport().close();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 20K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/LockHeldAssertingSet.java

        return delegate.spliterator();
      }
    
      @Override
      public boolean remove(@Nullable Object o) {
        assertTrue(Thread.holdsLock(mutex));
        return super.remove(o);
      }
    
      @Override
      public boolean removeAll(Collection<?> c) {
        assertTrue(Thread.holdsLock(mutex));
        return super.removeAll(c);
      }
    
      @Override
      public boolean retainAll(Collection<?> c) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/MutableGraph.java

      @CanIgnoreReturnValue
      boolean putEdge(EndpointPair<N> endpoints);
    
      /**
       * Removes {@code node} if it is present; all edges incident to {@code node} will also be removed.
       *
       * @return {@code true} if the graph was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean removeNode(N node);
    
      /**
       * Removes the edge connecting {@code nodeU} to {@code nodeV}, if it is present.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. cmd/metacache-bucket.go

    	b.updated = true
    	b.debugf("returning new cache %s, bucket: %v", best.id, best.bucket)
    	return best
    }
    
    // cleanup removes redundant and outdated entries.
    func (b *bucketMetacache) cleanup() {
    	// Entries to remove.
    	remove := make(map[string]struct{})
    
    	// Test on a copy
    	// cleanup is the only one deleting caches.
    	caches, _ := b.cloneCaches()
    
    	for id, cache := range caches {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/util/SecureKeyManagerTest.java

            // Remove main key
            keyManager.removeSessionKey(sessionId);
    
            // Verify main key is removed (archives stay)
            assertFalse(keyManager.hasSessionKey(sessionId), "Main key should be removed");
            // Note: Archives are not automatically removed when removing main key
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top