- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 93 for noihin (0.04 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/maintenance/ActionForm.java
import jakarta.validation.constraints.Size; /** * The form for maintenance actions. */ public class ActionForm { /** * Default constructor. */ public ActionForm() { // nothing } /** * The flag to replace aliases. */ @Size(max = 10) public String replaceAliases; /** * The flag to reset dictionaries. */ @Size(max = 10)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/test/java/org/codelibs/fess/it/admin/SuggestTests.java
assertEquals(Integer.valueOf(0), JsonPath.from(response).get("response.status")); } @Override @AfterEach protected void tearDown() { // do nothing } @Test void crudTest() { testRead(); } @Test void testDeleteAllWords_ok() { // Test deleting all suggest words
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 3.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/AccessTokenHelper.java
/** * The helper for access token. */ public class AccessTokenHelper { /** * Default constructor. */ public AccessTokenHelper() { // nothing } /** * The bearer string. */ protected static final String BEARER = "Bearer"; /** * The random instance. */ protected Random random = new SecureRandom();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/LogTests.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 2.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
} // Test implementation of ThumbnailManager to avoid container dependencies private class TestThumbnailManager extends ThumbnailManager { @Override public void init() { // Do nothing to avoid container access } @Override protected void storeQueue(List<Tuple3<String, String, String>> taskList) { // Override to avoid database operations taskList.clear();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 20.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/JvmUtil.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
}); } /** * Inserts a login record for the given member. * Currently this method does nothing. * * @param member the member to insert a login record for */ protected void insertLogin(final Object member) { // nothing } /** * Checks if the current user has permission to access the given resource.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 12.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatPhaseCallback.java
* @param error the error message */ void onError(String phase, String error); /** * Returns a no-op callback implementation. * * @return a callback that does nothing */ static ChatPhaseCallback noOp() { return new ChatPhaseCallback() { @Override public void onPhaseStart(final String phase, final String message) { // no-opCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:32:04 GMT 2026 - 3.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
long processingTime = 0; long currentTime = System.currentTimeMillis(); @Override public boolean calibrateCpuLoad() { // Do nothing return true; } @Override public long getCurrentTimeAsLong() { long time = currentTime; currentTime += processingTime; return time;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/AccessTokenPager.java
*/ public class AccessTokenPager implements Serializable { private static final long serialVersionUID = 1L; /** * Default constructor. */ public AccessTokenPager() { // nothing } /** * The default current page number. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** * The total number of records available. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.7K bytes - Click Count (0)