- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 29 for nothing (0.57 sec)
-
src/main/java/org/codelibs/fess/suggest/request/Request.java
* * @param <T> the type of response produced by this request */ public abstract class Request<T extends Response> { /** * Constructs a new request. */ public Request() { // nothing } /** * Executes the request. * @param client The OpenSearch client. * @return A Promise that will be resolved with the response or rejected with an error. */
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Nov 23 11:21:40 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
* to purge old suggest data. */ public class SuggestCreator { /** * Constructs a new suggest creator. */ public SuggestCreator() { // do nothing } private static final Logger logger = LogManager.getLogger(SuggestCreator.class); /** The search engine client for interacting with OpenSearch. */ @ResourceRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 11.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/SuggesterBuilder.java
*/ public class SuggesterBuilder { /** * Constructs a new {@link SuggesterBuilder}. */ public SuggesterBuilder() { // nothing } /** The suggest settings. */ protected SuggestSettings settings; /** The suggest settings builder. */ protected SuggestSettingsBuilder settingsBuilder; /** The reading converter. */Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
*/ public void crawl(final String sessionId) { final List<DataConfig> configList = ComponentUtil.getCrawlingConfigHelper().getAllDataConfigList(); if (configList.isEmpty()) { // nothing if (logger.isInfoEnabled()) { logger.info("No crawling target data."); } return; } doCrawl(sessionId, configList); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/s3/S3ClientTest.java
assertEquals(0, values.length); } try (final ResponseData responseData = s3Client.doGet("")) { fail(); } catch (CrawlerSystemException e) { // nothing } } public void test_doHead() throws Exception { try (final ResponseData responseData = s3Client.doHead("s3://fess/file1.txt")) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 07:57:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
protected org.codelibs.spnego.SpnegoAuthenticator authenticator = null; /** * Constructs a new SPNEGO authenticator. */ public SpnegoAuthenticator() { // do nothing } /** * Initializes the SPNEGO authenticator and registers it with the SSO manager. * This method is called automatically after dependency injection is complete. */ @PostConstructRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/helper/LanguageHelper.java
/** The maximum text length for language detection. */ protected int maxTextLength; /** * Default constructor. */ public LanguageHelper() { // do nothing } /** * Initializes the helper. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlResponse.java
*/ public class CurlResponse implements Closeable { /** * Constructs a new CurlResponse. */ public CurlResponse() { // nothing } /** * The HTTP status code of the response. */ private int httpStatusCode; /** * The content cache that stores the response content. */Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/AbstractDataStore.java
* Volatile to ensure visibility across threads. */ protected volatile boolean alive = true; /** * Default constructor. */ public AbstractDataStore() { // nothing } /** * Register this data store. */ public void register() { ComponentUtil.getDataStoreFactory().add(getName(), this); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.6K bytes - Viewed (0)