- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 144 for entre (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java
* Indicates whether this is a create, read, update, or delete operation. */ @ValidateTypeFailure public int crudMode; /** * The unique identifier of the crawling information entry being edited. * This is a required field for identifying which crawling info to update. */ @Required @Size(max = 1000) public String id; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/LogNotificationJob.java
events.stream().collect(Collectors.groupingBy(LogNotificationEvent::getLevel)); for (final Map.Entry<String, List<LogNotificationEvent>> entry : eventsByLevel.entrySet()) { final String level = entry.getKey(); final List<LogNotificationEvent> levelEvents = entry.getValue(); final String details = formatDetails(levelEvents, maxDetailsLength, maxDisplayEvents, maxMessageLength);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 9.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java
try (ZipOutputStream zos = new ZipOutputStream(Files.newOutputStream(zipPath))) { // Directory entry (should be skipped) ZipEntry dirEntry = new ZipEntry("view/"); zos.putNextEntry(dirEntry); zos.closeEntry(); // File entry ZipEntry fileEntry = new ZipEntry("view/file.ftl"); zos.putNextEntry(fileEntry);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java
* Indicates whether this is a create, read, update, or delete operation. */ @ValidateTypeFailure public int crudMode; /** * The unique identifier of the job log entry being edited. * This is a required field for identifying which job log to update. */ @Required @ValidateTypeFailure public String id; /** * The name of the job that was executed.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 13.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 26.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java
public String fileConfigId; /** The user who created this file authentication entry. */ public String createdBy; /** The timestamp when this file authentication entry was created. */ public String createdTime; /** The version number for optimistic locking. */ public String versionNo; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7K bytes - Click Count (0) -
src/main/webapp/js/suggestor.js
* Provides real-time search suggestions with keyboard and mouse navigation */ (function ($) { "use strict"; // Key code constants for better readability var KEY_CODES = { BACKSPACE: 8, ENTER: 13, SPACE: 32, UP: 38, DOWN: 40, DELETE: 46, NUM_0: 48, NUM_9: 57, A: 65, Z: 90, NUMPAD_0: 96, NUMPAD_9: 105, SEMICOLON: 186, EQUALS: 187,Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 11:04:08 GMT 2025 - 13.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/SearchLogService.java
} /** * Retrieves a specific search log entry by log type and ID. * * @param logType The type of log to retrieve (search, click, favorite, userinfo) * @param id The ID of the log entry * @return Optional entity containing the log entry if found */ public OptionalEntity<?> getSearchLog(final String logType, final String id) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 32.7K bytes - Click Count (0)