- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 113 for configured (0.05 sec)
-
src/main/java/org/codelibs/fess/helper/CurlHelper.java
* @return the configured CurlRequest */ public CurlRequest request(final Method method, final String path) { return request(new FesenRequest(new CurlRequest(method, null), nodeManager, path)); } /** * Configures the request with authentication and SSL settings. * @param request the request to configure * @return the configured request */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/Curl.java
* @return a new CurlRequest object configured with the PUT method and the specified URL */ public static CurlRequest put(final String url) { return new CurlRequest(Method.PUT, url); } /** * Creates a new CurlRequest with the DELETE method for the specified URL. * * @param url the URL to which the DELETE request will be sent
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java
* <p> * The serialization method used depends on the configured serializer type. * Supported types are Kryo and JavaBin serialization. * </p> * * @param obj the object to serialize * @return the serialized object as a byte array * @throws IllegalArgumentException if an unsupported serializer type is configured * @throws IORuntimeException if an I/O error occurs during serialization
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoManager.java
*/ public SsoManager() { // Default constructor } /** * Checks whether SSO authentication is available and configured. * * @return true if SSO is configured and available, false otherwise */ public boolean available() { final String ssoType = getSsoType(); if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeLogJob.java
* Executes the log purging job. * Performs the following cleanup operations: * - Purges old crawling sessions * - Purges search logs older than configured days * - Purges job logs older than configured days * - Purges user info logs older than configured days * - Updates job log status * * @return a string containing the execution result and any error messages */ public String execute() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java
} duplicateHostList.add(duplicateHost); } /** * Converts a URL using all configured duplicate host rules. * Applies each duplicate host rule in sequence to transform the URL * according to the configured patterns. * * @param url the URL to convert * @return the converted URL after applying all duplicate host rules,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
cb.query().addOrderBy_CreatedTime_Asc(); // search } /** * Retrieves a list of all available related content entities. * Results are ordered by term and limited by the configured maximum fetch size. * * @return a list of all available RelatedContent entities */ public List<RelatedContent> getAvailableRelatedContentList() { return relatedContentBhv.selectList(cb -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSocketFactory.kt
*/ package okhttp3 import java.io.IOException import java.net.InetAddress import java.net.Socket import javax.net.SocketFactory /** * A [SocketFactory] that delegates calls. Sockets can be configured after creation by * overriding [.configureSocket]. */ open class DelegatingSocketFactory( private val delegate: SocketFactory, ) : SocketFactory() { @Throws(IOException::class)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/GroupService.java
// setup condition cb.query().addOrderBy_Name_Asc(); // search } /** * Retrieves all available groups ordered by name in ascending order. * Limited by the configured maximum fetch size for groups. * * @return a list of all available groups */ public List<Group> getAvailableGroupList() { return groupBhv.selectList(cb -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java
import org.apache.logging.log4j.Logger; import org.codelibs.fess.util.ComponentUtil; /** * Job for purging expired thumbnail files from the system. * This job removes thumbnail files that have exceeded their configured expiration time * to prevent disk space from being consumed by old thumbnails. */ public class PurgeThumbnailJob { /** Logger instance for this class */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0)