- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 162 for indication (1.59 sec)
-
src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java
*/ private int allRecordCount; /** * Total number of pages. */ private int allPageCount; /** * Flag indicating if a previous page exists. */ private boolean existPrePage; /** * Flag indicating if a next page exists. */ private boolean existNextPage; /** * List of page numbers for pagination. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java
/** Total number of records available */ private int allRecordCount; /** Total number of pages available */ private int allPageCount; /** Flag indicating if previous page exists */ private boolean existPrePage; /** Flag indicating if next page exists */ private boolean existNextPage; /** List of page numbers for pagination display */ private List<Integer> pageNumberList;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
private int allRecordCount; /** Total number of pages available for pagination. */ private int allPageCount; /** Flag indicating whether a previous page exists. */ private boolean existPrePage; /** Flag indicating whether a next page exists. */ private boolean existNextPage; /** List of page numbers to display in pagination navigation. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java
FwAssistantDirector assistantDirector = createMockAssistantDirector(); // First invocation curtainFinallyHook.hook(assistantDirector); // Second invocation - should also work without issues curtainFinallyHook.hook(assistantDirector); // Third invocation curtainFinallyHook.hook(assistantDirector); // All invocations should complete successfully
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java
* * @return true if a previous page exists, false otherwise */ public boolean isExistPrePage() { return existPrePage; } /** * Sets the flag indicating whether a previous page exists. * * @param existPrePage true if a previous page exists, false otherwise */ public void setExistPrePage(final boolean existPrePage) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
throw new UnsupportedOperationException(); } /** * Starts a scheduled job by ID. * * @param id the ID of the scheduled job to start * @return JSON response indicating success or failure */ // PUT /api/admin/scheduler/{id}/start @Execute(urlPattern = "{}/@word") public JsonResponse<ApiResult> put$start(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java
private int allRecordCount; /** Total number of pages available. */ private int allPageCount; /** Flag indicating if a previous page exists. */ private boolean existPrePage; /** Flag indicating if a next page exists. */ private boolean existNextPage; /** List of page numbers for pagination navigation. */ private List<Integer> pageNumberList;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RolePager.java
*/ private int allRecordCount; /** * Total number of pages. */ private int allPageCount; /** * Flag indicating whether a previous page exists. */ private boolean existPrePage; /** * Flag indicating whether a next page exists. */ private boolean existNextPage; /** * List of page numbers for pagination navigation. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java
/** The total number of records. */ private int allRecordCount; /** The total number of pages. */ private int allPageCount; /** A flag indicating if a previous page exists. */ private boolean existPrePage; /** A flag indicating if a next page exists. */ private boolean existNextPage; /** A list of page numbers for navigation. */ private List<Integer> pageNumberList;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/UncaughtExceptionHandlers.java
* ... * </pre> * * <p>The returned handler logs any exception at severity {@code SEVERE} and then shuts down the * process with an exit status of 1, indicating abnormal termination. */ public static UncaughtExceptionHandler systemExit() { return new Exiter(Runtime.getRuntime()::exit); } @VisibleForTesting interface RuntimeWrapper {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Feb 10 21:03:40 UTC 2025 - 2.8K bytes - Viewed (0)