- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 390 for sizeOf (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java
chain.load(user1); // Verify state tracking assertEquals(1, chain.updateCalls.size()); assertEquals(1, chain.deleteCalls.size()); assertEquals(1, chain.changePasswordCalls.size()); assertEquals(1, chain.loadCalls.size()); // Verify independence of operations assertEquals(user1, chain.updateCalls.get(0));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 14.8K bytes - Click Count (0) -
src/main/webapp/css/chat.css
box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25); } .empty-state-icon i { font-size: 2rem; color: white; } .empty-state-title { font-size: 1.25rem; font-weight: 600; color: #172b4d; margin-bottom: 0.5rem; } .empty-state-description { font-size: 0.9375rem; color: #6b778c; max-width: 400px; margin-bottom: 1.5rem; line-height: 1.6;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 19.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/ActionForm.java
*/ @Size(max = 10) public String resetDictionaries; /** * The number of shards for doc. */ @Size(max = 10) public String numberOfShardsForDoc = ComponentUtil.getFessConfig().getIndexNumberOfShards(); /** * The auto expand replicas for doc. */ @Size(max = 10) public String autoExpandReplicasForDoc = ComponentUtil.getFessConfig().getIndexAutoExpandReplicas();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java
*/ @Size(max = 10) public String protocolScheme; /** * The username for authentication. */ @Required @Size(max = 100) public String username; /** * The password for authentication. */ @Size(max = 100) public String password; /** * Additional parameters for the authentication. */ @Size(max = 1000)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/CreateForm.java
/** Configuration name for identifying this data source */ @Required @Size(max = 200) public String name; /** Optional description of this data configuration */ @Size(max = 1000) public String description; /** Handler class name for processing this data source */ @Required @CustomSize(maxKey = "form.admin.max.input.size") public String handlerName;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiFileTest.java
assertEquals(0, kuromojiFile.selectList(5, 5).size()); assertEquals(0, kuromojiFile.selectList(-1, 5).size()); } @Test public void test_selectList2() { final PagingList<KuromojiItem> itemList = kuromojiFile.selectList(0, 5); for (int i = 0; i < itemList.size(); i++) { final KuromojiItem kuromojiItem = itemList.get(i);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 7.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
} return deletedDocIdList.size(); } }; ComponentUtil.register(client, "searchEngineClient"); final DocList docList = new DocList(); assertEquals(0, indexingHelper.deleteOldDocuments(client, docList)); assertEquals(0, docList.size()); assertEquals(0, deletedDocIdList.size()); docList.clear(); deletedDocIdList.clear();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 29.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/LogNotificationAppenderTest.java
} @Test public void test_append_nonExcludedLogger() { final LogEvent event = createLogEvent(Level.ERROR, "org.codelibs.fess.helper.SystemHelper", "not excluded"); appender.append(event); final List<LogNotificationEvent> events = ComponentUtil.getLogNotificationHelper().drainAll(); assertEquals(1, events.size());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 10.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/DocMapTest.java
assertTrue(docMap.isEmpty()); assertEquals(0, docMap.size()); docMap.put("key1", "value1"); assertFalse(docMap.isEmpty()); assertEquals(1, docMap.size()); docMap.put("key2", "value2"); assertFalse(docMap.isEmpty()); assertEquals(2, docMap.size()); docMap.clear(); assertTrue(docMap.isEmpty());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/CreateForm.java
@Required @Size(max = 100) public String username; /** The password for file authentication (maximum 100 characters). */ @Size(max = 100) public String password; /** Additional parameters for file authentication (maximum 1000 characters). */ @Size(max = 1000) public String parameters;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.8K bytes - Click Count (0)