- Sort Score
- Result 10 results
- Languages All
Results 451 - 460 of 2,354 for param1 (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResultData.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
* This method performs batch deletion of both parameters and session records. * * @param activeSessionId the session ID to exclude from deletion (can be null) * @param name optional name filter for sessions to delete (can be null or blank) * @param date the expiration time threshold - sessions expired before this time will be deleted */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
* * @param name The role name. * @return The search role. */ public String getSearchRoleByRole(final String name) { return createSearchRole(ComponentUtil.getFessConfig().getRoleSearchRolePrefix(), name); } /** * Creates a search role string. * * @param type The type of the role. * @param name The name of the role.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
Thread.currentThread().interrupt(); } } /** * Log a security event with performance optimizations * * @param type event type * @param severity event severity * @param message event message * @param context additional context */ public void logEvent(EventType type, Severity severity, String message, Map<String, Object> context) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureKeyManager.java
} /** * Derive a new key from an existing key * * @param baseKey the base key * @param label key derivation label * @param context key derivation context * @param length desired key length in bytes * @return derived key * @throws GeneralSecurityException if key derivation fails */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientCreator.java
} /** * Loads a crawler client into the specified crawler client factory. * * @param crawlerClientFactory the factory to which the client will be added * @param regex the regular expression used to match URLs for this client * @param componentName the name of the component to be loaded as a client */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/DfsResolver.java
* * @param tf the CIFS context * @param domain the domain name * @return connection to the domain controller * @throws CIFSException if the connection fails */ SmbTransport getDc(CIFSContext tf, String domain) throws CIFSException; /** * Resolve the location of a DFS path * * @param domain the domain for the DFS referral
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
} /** * Formats code content with syntax highlighting and line numbers. * * @param prefix the line number prefix pattern * @param style the CSS class name for styling * @param mimetype the MIME type of the content (currently unused) * @param input the code content to format * @return HTML formatted code with line numbers and styling */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java
} /** * Gets a scheduled job by its ID. * @param id The ID of the scheduled job. * @return An optional entity of the scheduled job. */ public OptionalEntity<ScheduledJob> getScheduledJob(final String id) { return scheduledJobBhv.selectByPK(id); } /** * Deletes a scheduled job. * @param scheduledJob The scheduled job to delete. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
* * @param id the unique identifier of the user * @return an OptionalEntity containing the user if found */ public OptionalEntity<User> getUser(final String id) { return userBhv.selectByPK(id).map(u -> ComponentUtil.getAuthenticationManager().load(u)); } /** * Retrieves a user by their username. * * @param username the username to search for
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.7K bytes - Viewed (0)