- Sort Score
- Num 10 results
- Language All
Results 411 - 420 of 1,249 for new1 (0.02 seconds)
-
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
private NamingConvention namingConvention; @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); namingConvention = new MockNamingConvention(); pagerCreator = new PagerCreator(namingConvention); } // Test constructor initialization @Test public void test_constructor() { // Verify suffix is set correctlyCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java
SpnegoAuthenticator authenticator = new SpnegoAuthenticator(); assertNotNull(authenticator); } @Test public void test_spnegoConfigClass() { // Verify the inner class is named correctly: SpnegoConfig (not SpengoConfig) // This test verifies the typo fix by ensuring the class compiles SpnegoAuthenticator authenticator = new SpnegoAuthenticator(); assertNotNull(authenticator);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/DictionaryManagerTest.java
public void test_storeSynonymFiles() throws Exception { final DictionaryManager dictionaryManager = new DictionaryManager(); final SynonymCreator synonymCreator = new SynonymCreator(); final SynonymFile synonymFile = (SynonymFile) synonymCreator.create(file1.getPath(), new Date()); dictionaryManager.store(synonymFile, file1);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 2.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/pager/BoostDocPagerTest.java
import org.junit.jupiter.api.Test; public class BoostDocPagerTest extends UnitFessTestCase { @Test public void test_BoostDocPage() { BoostDocPager boostdocpager = new BoostDocPager(); boostdocpager.clear(); assertEquals(0, boostdocpager.getAllRecordCount()); assertEquals(0, boostdocpager.getAllPageCount()); assertEquals(false, boostdocpager.isExistPrePage());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 2.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/pager/DuplicateHostPagerTest.java
import org.junit.jupiter.api.Test; public class DuplicateHostPagerTest extends UnitFessTestCase { @Test public void test_DuplicateHostPager() { DuplicateHostPager duplicatehostpager = new DuplicateHostPager(); duplicatehostpager.clear(); assertEquals(0, duplicatehostpager.getAllRecordCount()); assertEquals(0, duplicatehostpager.getAllPageCount());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/RelatedQueryTests.java
final Map<String, Object> requestBody = new HashMap<>(); final String keyProp = NAME_PREFIX + id; requestBody.put(KEY_PROPERTY, keyProp); requestBody.put("queries", "query" + id); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("queries", "new_query");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 2.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/dict/SynonymTests.java
final Map<String, Object> requestBody = new HashMap<>(); final String keyProp = NAME_PREFIX + id; requestBody.put(KEY_PROPERTY, keyProp); requestBody.put("outputs", "output"); return requestBody; } @Override protected Map<String, Object> getUpdateMap() { final Map<String, Object> updateMap = new HashMap<>(); updateMap.put("outputs", "new_outputs");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 2.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
} try (ZipInputStream zis = new ZipInputStream(Files.newInputStream(jarPath))) { ZipEntry entry; while ((entry = zis.getNextEntry()) != null) { if (!entry.isDirectory()) { final String[] names = StreamUtil.split(entry.getName(), "/") .get(stream -> stream.filter(s -> !"..".equals(s)).toArray(n -> new String[n]));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 7.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ErrorToWarnRewritePolicy.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineTest.java
public void test_evaluate_withNestedExpressions() { String template = "${level1.level2.value}"; Map<String, Object> paramMap = new HashMap<>(); Map<String, Object> level2 = new HashMap<>(); level2.put("value", "nested"); Map<String, Object> level1 = new HashMap<>(); level1.put("level2", level2); paramMap.put("level1", level1);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 12.5K bytes - Click Count (0)