Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 815 for Removed (0.3 sec)

  1. src/test/java/jcifs/util/InputValidatorTest.java

            // Test normal string without control characters
            assertEquals("test", InputValidator.sanitizeForLogging("test"));
    
            // Test removal of control characters (they are removed, not replaced with spaces)
            assertEquals("teststring", InputValidator.sanitizeForLogging("test\0string"));
            assertEquals("teststring", InputValidator.sanitizeForLogging("test\nstring"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Sets.java

       * are supported. When given an element that doesn't satisfy the predicate, the set's {@code
       * add()} and {@code addAll()} methods throw an {@link IllegalArgumentException}. When methods
       * such as {@code removeAll()} and {@code clear()} are called on the filtered set, only elements
       * that satisfy the filter will be removed from the underlying set.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/util/PathValidatorTest.java

        @Test
        public void testSmbUrlWithPort() throws Exception {
            String url = "smb://server:445/share";
            String normalized = validator.validateSmbUrl(url);
            // Standard port 445 might be removed in normalization
            assertTrue(normalized.contains("server"));
        }
    
        @Test
        public void testSmbUrlWithNonStandardPort() throws Exception {
            String url = "smb://server:8445/share";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java

        assertEquals((Integer) 2, it.next());
        it.remove();
        // After this remove, 400 has moved up and 20 down past cursor
        assertTrue("Heap is not intact after remove", mmHeap.isIntact());
        assertEquals((Integer) 10, it.next());
        assertEquals((Integer) 3, it.next());
        it.remove();
        // After this remove, 400 moved down again and 500 up past the cursor
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 36K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SmbTransportPoolImplTest.java

            SmbTransportImpl pooledSpy = spy(pooled);
            SmbTransportImpl nonPooledSpy = spy(nonPooled);
    
            // Replace with spies (remove and add back for concurrent queues)
            connections.remove(pooled);
            connections.offer(pooledSpy);
            nonPooledConnections.remove(nonPooled);
            nonPooledConnections.offer(nonPooledSpy);
    
            // Mock disconnect behavior
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  6. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedPriorityBlockingQueue.java

       *
       * @param o element to be removed from this queue, if present
       * @return {@code true} if this queue changed as a result of the call
       */
      @CanIgnoreReturnValue // pushed down from class to method
      @Override
      public boolean remove(@Nullable Object o) {
        Monitor monitor = this.monitor;
        monitor.enter();
        try {
          return q.remove(o);
        } finally {
          monitor.leave();
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/RegularImmutableMap.java

       *
       * @param entries the original array of entries including duplicates
       * @param n the number of valid entries in {@code entries}
       * @param newN the expected number of entries once duplicates are removed
       * @param duplicates a map of canonical {@link Entry} objects for each duplicate key. This map
       *     will be updated by the method, setting each value to false as soon as the {@link Entry} has
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMaker.java

       * comparison to determine equality of values. This technically violates the specifications of the
       * methods {@link Map#containsValue containsValue}, {@link ConcurrentMap#remove(Object, Object)
       * remove(Object, Object)} and {@link ConcurrentMap#replace(Object, Object, Object) replace(K, V,
       * V)}, and may not be what you expect.
       *
       * @throws IllegalStateException if the value strength was already set
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/MoreObjects.java

         *
         * <p>After calling this method, you can keep adding more properties to later call toString()
         * again and get a more complete representation of the same object; but properties cannot be
         * removed, so this only allows limited reuse of the helper instance. The helper allows
         * duplication of properties (multiple name/value pairs with the same name can be added).
         */
        @Override
        public String toString() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/ldap/LdapUserTest.java

                    // Do nothing
                }
            }, "activityHelper");
    
            String[] permissions = ldapUser.getPermissions();
    
            // Verify duplicates are removed
            assertNotNull(permissions);
            assertEquals(3, permissions.length);
            assertEquals("role1", permissions[0]);
            assertEquals("role2", permissions[1]);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.6K bytes
    - Viewed (0)
Back to top