- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 489 for Void (0.02 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java
return __modifiedProperties.getPropertyNames(); } public void mymodifyProperty(String propertyName) { registerModifiedProperty(propertyName); } public void mymodifyPropertyCancel(String propertyName) { __modifiedProperties.remove(propertyName); } public void clearModifiedInfo() { __modifiedProperties.clear(); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 10.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/AccessResultImplTest.java
} public void test_idGetterSetter() { // Test ID getter/setter AccessResultImpl<Long> result = new AccessResultImpl<>(); result.setId(123L); assertEquals(Long.valueOf(123L), result.getId()); result.setId(null); assertNull(result.getId()); } public void test_sessionIdGetterSetter() { // Test session ID getter/setterRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 13.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/XmlUtilTest.java
*/ public class XmlUtilTest extends PlainTestCase { public void test_escapeXml_null() { // Test null input assertEquals(StringUtil.EMPTY, XmlUtil.escapeXml(null)); } public void test_escapeXml_empty() { // Test empty string assertEquals("", XmlUtil.escapeXml("")); } public void test_escapeXml_basic() { // Test basic XML escapingRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 8.3K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/io/ContentCacheTest.java
*/ public class ContentCacheTest { private File tempFile; @After public void tearDown() { if (tempFile != null && tempFile.exists()) { tempFile.delete(); } } @Test public void testMemoryBasedCacheConstructor() { byte[] data = "Hello, World!".getBytes(); ContentCache cache = new ContentCache(data);Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 11.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java
* * @param objs the log objects */ protected void processDefault(final Object... objs) { } /** * Processes system error log events. * * @param objs the log objects (should contain a Throwable) */ protected void processSystemError(final Object... objs) { final Throwable t = (Throwable) objs[0];Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 02:01:26 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
*/ public void addCookieNameMapping(final String cookieName, final String roleName) { if (cookieNameMap == null) { cookieNameMap = new HashMap<>(); } cookieNameMap.put(cookieName, roleName); } /** * Sets the cached cipher. * @param cipher The cached cipher. */ public void setCipher(final CachedCipher cipher) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 15.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CrawlingParameterUtilTest.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/crypto/CachedCipherTest.java
import static org.junit.Assert.assertThat; import org.junit.Test; /** * Tests for {@link CachedCipher}. */ public class CachedCipherTest { @Test public void testEncryptDecryptBytes() { final CachedCipher cipher = new CachedCipher(); cipher.setKey("mySecretKey"); final byte[] original = "Hello World".getBytes();Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/index/writer/SuggestWriterResultTest.java
public class SuggestWriterResultTest { @Test public void test_constructor() throws Exception { SuggestWriterResult result = new SuggestWriterResult(); assertNotNull(result); assertFalse(result.hasFailure()); assertNotNull(result.getFailures()); assertEquals(0, result.getFailures().size()); } @Test public void test_addFailure() throws Exception {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Nov 13 00:40:54 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverterTest.java
private KatakanaToAlphabetConverter converter; @Override protected void setUp() throws Exception { super.setUp(); converter = new KatakanaToAlphabetConverter(); converter.init(); } public void test_convert() { assertTrue(converter.convert("ケンサク", null).contains("kennsaku")); } public void test_convertBasicKatakana() {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:28:21 UTC 2025 - 5.9K bytes - Viewed (0)