- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 135 for Logs (0.39 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java
// GET /api/admin/failureurl/logs // PUT /api/admin/failureurl/logs /** * Retrieves failure URL logs with pagination. * * @param body the search criteria * @return JSON response containing the failure URL logs */ @Execute public JsonResponse<ApiResult> logs(final SearchBody body) { validateApi(body, messages -> {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/resources/before_script.sh
fi if [[ ${error_count} -ge 60 ]] ; then echo "Fess is not available." cat ${temp_log_file} ./fess-*/logs/*.log exit 1 fi sleep 1 done pushd /tmp >/dev/null git clone https://github.com/codelibs/fess-testdata.git popd >/dev/null cat ${temp_log_file} ./fess-*/logs/*.log curl -s "http://localhost:9201/_cat/indices?v"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Feb 10 03:25:34 UTC 2024 - 863 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
import jakarta.annotation.Resource; /** * Service class for managing search logs and related analytics. * * This service provides functionality for querying, aggregating, and managing * various types of search logs including search logs, click logs, favorite logs, * and user information logs. It supports different aggregation types for * analytics and reporting purposes. */ public class SearchLogService {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java
/** * Retrieves crawling info logs with pagination support. * * @param body the search body containing pagination and filter parameters * @return JSON response containing list of crawling info logs */ // GET /api/admin/crawlinginfo/logs // PUT /api/admin/crawlinginfo/logs @Execute public JsonResponse<ApiResult> logs(final SearchBody body) { validateApi(body, messages -> {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java
assertEquals(5, userInfoDeletedDays[0]); // Assert skip message for job logs only assertTrue(result.contains("Skipped to purge job logs")); assertFalse(result.contains("Skipped to purge search logs")); assertFalse(result.contains("Skipped to purge user info logs")); } // Test exception in searchLogService public void test_execute_searchLogException() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
*/ protected long expiredJobInterval = 2 * 60 * 60 * 1000L; // 2hours /** * Retrieves a paginated list of job logs based on the provided pager configuration. * * @param jobLogPager the pager configuration for pagination and filtering * @return a list of job logs matching the criteria */ public List<JobLog> getJobLogList(final JobLogPager jobLogPager) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
regression-test/README.md
``` 2. Run an Emulator using Android Studio or from command line. ``` $ emulator -no-window -no-snapshot-load @pixel5 ``` 2. Turn on logs with logcat ``` $ adb logcat '*:E' OkHttp:D Http2:D TestRunner:D TaskRunner:D OkHttpTest:D GnssHAL_GnssInterface:F DeviceStateChecker:F memtrack:F ...
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Nov 13 07:09:56 UTC 2020 - 2.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.27.md
### CVE-2024-5321: Incorrect permissions on Windows containers logs A security issue was discovered in Kubernetes clusters with Windows nodes where BUILTIN\Users may be able to read container logs and NT AUTHORITY\Authenticated Users may be able to modify container logs. **Affected Versions**: - kubelet <= 1.27.15 - kubelet <= 1.28.11 - kubelet <= 1.29.6
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Jul 17 07:48:22 UTC 2024 - 466.3K bytes - Viewed (2) -
guava/src/com/google/common/util/concurrent/UncaughtExceptionHandlers.java
* * <pre> * public static void main(String[] args) { * Thread.currentThread().setUncaughtExceptionHandler(UncaughtExceptionHandlers.systemExit()); * ... * </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() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Feb 10 21:03:40 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/assemblies/common-bin.xml
<include>tomcat_config.properties</include> </includes> <outputDirectory>fess-${project.version}/lib/classes</outputDirectory> </fileSet> <!-- logs --> <fileSet> <directory>src/main/assemblies/files</directory> <outputDirectory>fess-${project.version}/logs</outputDirectory> <excludes> <exclude>*</exclude> </excludes> <filtered>false</filtered> </fileSet> <!-- temp --> <fileSet>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Mar 17 02:29:43 UTC 2022 - 3.7K bytes - Viewed (0)