Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 433 for assertValue (0.04 sec)

  1. src/test/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValveTest.java

        public void test_showReportDisabled() {
            assertFalse(valve.isShowReport());
        }
    
        public void test_showServerInfoDisabled() {
            assertFalse(valve.isShowServerInfo());
        }
    
        public void test_defaultSettings() {
            final SuppressErrorReportValve newValve = new SuppressErrorReportValve();
            assertFalse(newValve.isShowReport());
            assertFalse(newValve.isShowServerInfo());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

                }
            };
    
            HashMap<String, Object> source = new HashMap<>();
            assertFalse(fessConfig.validateIndexRequiredFields(source));
            source.put("aaa", null);
            assertFalse(fessConfig.validateIndexRequiredFields(source));
            source.put("aaa", null);
            source.put("bbb", null);
            assertFalse(fessConfig.validateIndexRequiredFields(source));
            source.put("aaa", "");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/SmbNegotiationResponseTest.java

            when(negotiationResponse.isSigningRequired()).thenReturn(false);
            when(negotiationResponse.isSigningNegotiated()).thenReturn(false);
    
            assertFalse(negotiationResponse.isSigningEnabled());
            assertFalse(negotiationResponse.isSigningRequired());
            assertFalse(negotiationResponse.isSigningNegotiated());
    
            // Signing enabled but not required
            when(negotiationResponse.isSigningEnabled()).thenReturn(true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/persistent/HandleInfoTest.java

            assertFalse(info.isReconnecting());
            assertNull(info.getFile());
        }
    
        @Test
        public void testHandleInfoExpiration() {
            // Test durable handle expiration
            HandleInfo durableInfo = new HandleInfo("/test/file.txt", testGuid, testFileId, HandleType.DURABLE_V2, 100, // 100ms timeout
                    null);
    
            assertFalse(durableInfo.isExpired());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java

            // Test with different inputs
            assertFalse(item1.equals(item3));
            assertFalse(item3.equals(item1));
    
            // Test with different output
            assertFalse(item1.equals(item4));
    
            // Test with null
            assertFalse(item1.equals(null));
    
            // Test with different class
            assertFalse(item1.equals("string"));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java

            // Then
            assertTrue(response.haveCapabilitiy(0x01)); // Has this bit
            assertTrue(response.haveCapabilitiy(0x0F)); // Has all these bits
            assertFalse(response.haveCapabilitiy(0x10)); // Doesn't have this bit
            assertFalse(response.haveCapabilitiy(0x40)); // Doesn't have this bit
        }
    
        @Test
        @DisplayName("Should check DFS support correctly")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/SmbNegotiationRequestTest.java

    package jcifs.internal;
    
    import static org.junit.jupiter.api.Assertions.assertFalse;
    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    import static org.mockito.Mockito.mock;
    import static org.mockito.Mockito.times;
    import static org.mockito.Mockito.verify;
    import static org.mockito.Mockito.when;
    
    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.DisplayName;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.4K bytes
    - Viewed (0)
Back to top