Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for assertFalse (0.22 sec)

  1. src/test/java/jcifs/smb/SmbOperationExceptionTest.java

            assertFalse(SmbOperationException.ErrorCode.PATH_NOT_FOUND.isRetryable());
            assertFalse(SmbOperationException.ErrorCode.FILE_EXISTS.isRetryable());
            assertFalse(SmbOperationException.ErrorCode.DIRECTORY_NOT_EMPTY.isRetryable());
            assertFalse(SmbOperationException.ErrorCode.DISK_FULL.isRetryable());
            assertFalse(SmbOperationException.ErrorCode.QUOTA_EXCEEDED.isRetryable());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java

            assertTrue(urlFilter.match("https://example.com/page.html"));
            assertFalse(urlFilter.match("https://example.com/style.css"));
            assertFalse(urlFilter.match("https://example.com/script.js"));
            assertFalse(urlFilter.match("https://example.com/admin/login"));
            assertFalse(urlFilter.match("https://example.com/page#section"));
        }
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 19K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java

            auth.resetAuthenticationTimestamp();
            assertFalse(auth.isExpired());
    
            // Test with no expiration (TTL = 0)
            auth.setAuthenticationTTL(0);
            Thread.sleep(100);
            assertFalse(auth.isExpired());
    
            // Test with negative TTL (no expiration)
            auth.setAuthenticationTTL(-1);
            Thread.sleep(100);
            assertFalse(auth.isExpired());
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseStateTest.java

            // Should return false when write caching is not enabled
            assertFalse(DirectoryLeaseState.canCacheModifications(Smb2LeaseState.SMB2_LEASE_NONE));
            assertFalse(DirectoryLeaseState.canCacheModifications(Smb2LeaseState.SMB2_LEASE_READ_CACHING));
            assertFalse(DirectoryLeaseState.canCacheModifications(Smb2LeaseState.SMB2_LEASE_HANDLE_CACHING));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/util/ResourceManagerTest.java

            TestResource resource2 = new TestResource("cleanup2");
    
            resourceManager.registerResource(resource1);
            resourceManager.registerResource(resource2);
    
            assertFalse(resource1.isClosed());
            assertFalse(resource2.isClosed());
    
            int cleaned = resourceManager.forceCleanup();
            assertTrue(cleaned >= 2);
    
            assertTrue(resource1.isClosed());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/NtlmUtilTest.java

    package jcifs.smb;
    
    import static org.junit.jupiter.api.Assertions.assertArrayEquals;
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertFalse;
    import static org.junit.jupiter.api.Assertions.assertThrows;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    import static org.mockito.Mockito.atLeastOnce;
    import static org.mockito.Mockito.verify;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 12K bytes
    - Viewed (1)
  7. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertFalse(TypeToken.of(wildcardType).isSupertypeOf(wildcardType));
        assertFalse(TypeToken.of(int[].class).isSupertypeOf(wildcardType));
      }
    
      public void testAssignableWildcardTypeParameterToClassTypeParameter() {
        TypeToken<?> wildcardType = new TypeToken<Iterable<? extends Object[]>>() {};
        assertFalse(new TypeToken<Iterable<Object[]>>() {}.isSupertypeOf(wildcardType));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/lease/DirectoryCacheEntryTest.java

            entry.invalidate();
    
            assertFalse(entry.isComplete());
            assertTrue(entry.hasChanges());
            assertTrue(entry.getChildren().isEmpty());
        }
    
        @Test
        public void testExpiration() {
            // Set a very short max age
            entry.setMaxAge(100); // 100ms
    
            assertFalse(entry.isExpired());
            assertFalse(entry.needsRefresh());
    
            // Wait for expiration
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/config/BaseConfigurationTest.java

            assertNull(config.getMaximumVersion());
            assertFalse(config.isUseSMB2OnlyNegotiation());
            assertTrue(config.isRequireSecureNegotiate());
            assertFalse(config.isPort139FailoverEnabled());
            assertFalse(config.isUseBatching());
            assertTrue(config.isUseUnicode());
            assertFalse(config.isForceUnicode());
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerStatusTest.java

            // Different instances
            assertFalse(CrawlerStatus.INITIALIZING.equals(CrawlerStatus.RUNNING));
            assertFalse(CrawlerStatus.INITIALIZING.equals(CrawlerStatus.DONE));
            assertFalse(CrawlerStatus.RUNNING.equals(CrawlerStatus.DONE));
    
            // Null comparison
            assertFalse(CrawlerStatus.INITIALIZING.equals(null));
    
            // Different type comparison
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 15.8K bytes
    - Viewed (0)
Back to top