- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 137 for engine2 (0.04 sec)
-
src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java
import org.codelibs.fess.util.ComponentUtil; import org.dbflute.mail.send.hook.SMailCallbackContext; import org.lastaflute.core.mail.Postbox; /** * Job for pinging search engine. */ public class PingSearchEngineJob { /** * Default constructor. */ public PingSearchEngineJob() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
* This class provides methods to retrieve paths for configuration files, templates, dictionaries, * thumbnails, plugins, and other resources required by the Fess search engine. * It supports both regular deployment and Docker container environments. * */ public class ResourceUtil { /** Environment variable name for overriding the configuration path */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ScriptEngineException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * This exception is thrown when a script engine error occurs. */ public class ScriptEngineException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructor. * @param message The exception message.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
okhttp-testing-support/build.gradle.kts
api(libs.bouncycastle.bcprov) implementation(libs.bouncycastle.bcpkix) implementation(libs.bouncycastle.bctls) api(libs.conscrypt.openjdk) api(libs.openjsse) api(rootProject.libs.junit.jupiter.engine) api(variantOf(libs.amazonCorretto) { classifier("linux-x86_64") }) api(libs.hamcrestLibrary) api(libs.junit.jupiter.api) api(libs.junit.jupiter.params) api(libs.junit.pioneer)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jun 14 16:09:26 UTC 2025 - 800 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
import org.codelibs.fess.ingest.Ingester; import org.codelibs.fess.util.ComponentUtil; import jakarta.annotation.PostConstruct; /** * Response processor implementation for the Fess search engine. * This processor extends DefaultResponseProcessor to provide additional * processing capabilities through the ingest framework, allowing for * custom data transformation and enrichment during the crawling process. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk
{"index":{"_index":"fess_config.scheduled_job","_id":"ping_es"}}
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Nov 07 06:19:20 UTC 2024 - 4.2K bytes - Viewed (0) -
container-tests/build.gradle.kts
dependencies { api(projects.okhttp) testImplementation(projects.okhttpTestingSupport) testImplementation(libs.junit.jupiter.api) testImplementation(libs.junit.jupiter.params) testImplementation(libs.junit.jupiter.engine) testImplementation(libs.assertk) testImplementation(libs.testcontainers) testImplementation(libs.mockserver) testImplementation(libs.mockserver.client) testImplementation(libs.testcontainers.junit5)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Mar 17 14:46:34 UTC 2024 - 1.1K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java
public class ScriptEngineExceptionTest extends UnitFessTestCase { public void test_constructor_withMessage() { // Test constructor with message only String message = "Script engine error occurred"; ScriptEngineException exception = new ScriptEngineException(message); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/sereq/UploadForm.java
package org.codelibs.fess.app.web.admin.sereq; import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form for uploading search request files to the Fess search engine. * This form is used in the admin interface to upload search request configuration files * that define search behaviors and request handling. */ public class UploadForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/UploadForm.java
package org.codelibs.fess.app.web.admin.elevateword; import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form for uploading elevate word files to the Fess search engine. * Elevate words are terms that should be promoted or given higher ranking in search results. * This form is used in the admin interface to upload elevate word configuration files. */ public class UploadForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0)