Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for removendo (0.06 sec)

  1. docs/pt/docs/advanced/behind-a-proxy.md

    ## Sobre proxies com um prefixo de caminho removido
    
    Tenha em mente que um proxy com prefixo de caminho removido é apenas uma das maneiras de configurá-lo.
    
    Provavelmente, em muitos casos, o padrão será que o proxy não tenha um prefixo de caminho removido.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Nov 09 16:39:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/LinkedListMultimap.java

      /**
       * Removes the specified node from the linked list. This method is only intended to be used from
       * the {@code Iterator} classes. See also {@link LinkedListMultimap#removeAllNodes(Object)}.
       */
      private void removeNode(Node<K, V> node) {
        if (node.previous != null) {
          node.previous.next = node.next;
        } else { // node was head
          head = node.next;
        }
        if (node.next != null) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/util/SecureKeyManagerTest.java

            assertFalse(keyManager.hasSessionKey(sessionId + ".v2"), "Version 2 should be removed");
            assertFalse(keyManager.hasSessionKey(sessionId + ".v1"), "Version 1 should be removed");
            assertFalse(keyManager.hasSessionKey(sessionId + ".v0"), "Version 0 should be removed");
        }
    
        @Test
        public void testKeyAge() throws InterruptedException {
            String sessionId = "age-test";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/Network.java

       * this graph.
       *
       * <p>This is equal to the union of {@link #predecessors(Object)} and {@link #successors(Object)}.
       *
       * <p>If {@code node} is removed from the network after this method is called, the {@code Set}
       * {@code view} returned by this method will be invalidated, and will throw {@code
       * IllegalStateException} if it is accessed in any way, with the following exceptions:
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:03:02 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt

        validateKey(key)
        val entry = lruEntries[key] ?: return false
        val removed = removeEntry(entry)
        if (removed && size <= maxSize) mostRecentTrimFailed = false
        return removed
      }
    
      @Throws(IOException::class)
      internal fun removeEntry(entry: Entry): Boolean {
        // If we can't delete files that are still open, mark this entry as a zombie so its files will
        // be deleted when those files are closed.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 34.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java

                        handles.remove(path);
                        guidToHandle.remove(info.getCreateGuid());
                        removePersistedHandle(info);
                        log.warn("Reconnection failed, removed handle for: {}", path);
                    }
                }
            } finally {
                lock.writeLock().unlock();
            }
        }
    
        /**
         * Release a handle
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseManagerTest.java

            try {
                Thread.sleep(10);
            } catch (InterruptedException e) {
                // Ignore
            }
    
            // When lease is lost, cache entry should be removed
            when(baseLeaseManager.getLease(leaseKey)).thenReturn(null);
    
            assertNull(directoryLeaseManager.getCacheEntry(directoryPath));
        }
    
        @Test
        public void testCanCacheDirectoryListing() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  8. src/test/java/jcifs/FileNotifyInformationTest.java

                FileNotifyInformation addedImpl = createImplementation(FileNotifyInformation.FILE_ACTION_ADDED, "added.txt");
                FileNotifyInformation removedImpl = createImplementation(FileNotifyInformation.FILE_ACTION_REMOVED, "removed.txt");
                FileNotifyInformation modifiedImpl = createImplementation(FileNotifyInformation.FILE_ACTION_MODIFIED, "modified.txt");
    
                // Verify each implementation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/graph/AbstractNetworkTest.java

      public void removeNode_existingNode() {
        assume().that(graphIsMutable()).isTrue();
    
        addEdge(N1, N2, E12);
        addEdge(N4, N1, E41);
        assertTrue(networkAsMutableNetwork.removeNode(N1));
        assertFalse(networkAsMutableNetwork.removeNode(N1));
        assertThat(networkAsMutableNetwork.nodes()).containsExactly(N2, N4);
        assertThat(networkAsMutableNetwork.edges()).doesNotContain(E12);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Iterables.java

       *
       * @param removeFrom the iterable to (potentially) remove elements from
       * @param predicate a predicate that determines whether an element should be removed
       * @return {@code true} if any elements were removed from the iterable
       * @throws UnsupportedOperationException if the iterable does not support {@code remove()}.
       * @since 2.0
       */
      @CanIgnoreReturnValue
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 43.6K bytes
    - Viewed (0)
Back to top