- Sort Score
- Num 10 results
- Language All
Results 351 - 360 of 1,001 for new1 (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/entity/ChatSession.java
private final Object messagesLock = new Object(); /** * Default constructor. */ public ChatSession() { this.sessionId = UUID.randomUUID().toString(); this.createdAt = LocalDateTime.now(); this.lastAccessedAt = this.createdAt; this.messages = new CopyOnWriteArrayList<>(); } /** * Creates a new chat session for the specified user. *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 01:53:06 GMT 2026 - 6.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java
final int threadCount = 10; final Thread[] threads = new Thread[threadCount]; final Exception[] exceptions = new Exception[threadCount]; final String[][] results = new String[threadCount][]; DataStoreFactory testFactory = new DataStoreFactory() { @Override protected List<String> loadDataStoreNameList() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/cbean/ca/bs/BsUserInfoCA.java
UserInfoCQ cq = new UserInfoCQ(); if (queryLambda != null) { queryLambda.callback(cq); } FilterAggregationBuilder builder = regFilterA(name, cq.getQuery()); if (opLambda != null) { opLambda.callback(builder); } if (aggsLambda != null) { UserInfoCA ca = new UserInfoCA(); aggsLambda.callback(ca);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 12.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
super.setUp(testInfo); suggestCreator = new SuggestCreator(); } @Override protected void tearDown(TestInfo testInfo) throws Exception { super.tearDown(testInfo); } // Test constructor @Test public void test_constructor() { SuggestCreator creator = new SuggestCreator(); assertNotNull(creator); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/DocumentHelperTest.java
} @Test public void test_getContent_withTikaExtractor() { DocumentHelper documentHelper = new DocumentHelper(); ResponseData responseData = new ResponseData(); Map<String, Object> dataMap = new HashMap<>(); responseData.getMetaDataMap().put(TikaExtractor.class.getSimpleName(), new TikaExtractor()); String content = " Test Content ";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 13.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/pager/PathMapPagerTest.java
assertEquals(999, pathMapPager.getCurrentPageNumber()); List<Integer> pageNumberList = new ArrayList<Integer>(1); pathMapPager.setPageNumberList(pageNumberList); assertEquals(pageNumberList, pathMapPager.getPageNumberList()); } public void test_clear() { PathMapPager pathMapPager = new PathMapPager(); pathMapPager.id = "testId"; pathMapPager.regex = "testRegex";
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 12:58:11 GMT 2026 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/CreateForm.java
*/ public Map<String, String> attributes = new HashMap<>(); /** * The roles assigned to the user. */ public String[] roles; /** * The groups assigned to the user. */ public String[] groups; /** * Initializes the form with default values for creating a new user. */ public void initialize() { crudMode = CrudMode.CREATE;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/pager/CrawlingInfoPagerTest.java
import org.junit.jupiter.api.Test; public class CrawlingInfoPagerTest extends UnitFessTestCase { @Test public void test_CrawlingInfoPage() { CrawlingInfoPager crawlinginfopage = new CrawlingInfoPager(); crawlinginfopage.clear(); assertEquals(0, crawlinginfopage.getAllRecordCount()); assertEquals(0, crawlinginfopage.getAllPageCount());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 2.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionQuery.java
throw new InvalidQueryRegisteredException(msg); } } protected void checkEsInvalidQueryCollection(String name, Collection<?> values) { if (values == null || values.isEmpty()) { String msg = "Cannot register null or empty query collection: name=" + name + " values=" + values; throw new InvalidQueryRegisteredException(msg); } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 21.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
.status(ApiResult.Status.OK) .result()); } /** * Create a new protected words entry for the specified dictionary. * * @param dictId identifier of the dictionary * @param body create request payload * @return JSON response containing creation result and new entry ID */ // POST /api/admin/dict/protwords/setting/{dictId} @Execute
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 9.4K bytes - Click Count (0)