- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 134 for engine1 (0.27 sec)
-
mockwebserver-junit5/build.gradle.kts
} } dependencies { api(projects.okhttp) api(projects.mockwebserver3) api(libs.junit.jupiter.api) compileOnly(libs.animalsniffer.annotations) testRuntimeOnly(libs.junit.jupiter.engine) testImplementation(libs.kotlin.junit5) testImplementation(projects.okhttpTestingSupport) testImplementation(libs.assertk) } mavenPublishing { configure(KotlinJvm(javadocJar = JavadocJar.Empty()))
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:34 UTC 2025 - 779 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/FessSystemException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * System exception class for the Fess search engine. * This exception is thrown when system-level errors occur in the Fess application, * such as configuration errors, initialization failures, or critical runtime issues. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/ApiAdminDictAction.java
import org.lastaflute.web.response.JsonResponse; import jakarta.annotation.Resource; /** * API action for admin dictionary management. * Provides REST endpoints for managing dictionaries in the Fess search engine. */ public class ApiAdminDictAction extends FessApiAdminAction { /** * Default constructor. */ public ApiAdminDictAction() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 2.6K bytes - Viewed (0) -
native-image-tests/build.gradle.kts
// ) // } //} dependencies { implementation(projects.okhttp) testImplementation(projects.mockwebserver3Junit5) testImplementation(libs.assertk) testRuntimeOnly(libs.junit.jupiter.engine) testImplementation(libs.kotlin.junit5) testImplementation(libs.junit.jupiter.params) } graalvmNative { testSupport = true binaries { named("test") {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 22 20:31:49 UTC 2025 - 904 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
return generateId(urlId); } /** * Retrieves a list of session IDs with their document counts from the search engine. * Uses aggregation to get session segments and their corresponding document counts. * * @param searchEngineClient the search engine client to perform the query * @return a list of maps containing session IDs and their document counts */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/UploadForm.java
import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form for uploading protected words files to the Fess search engine. * Protected words are terms that should not be stemmed or modified during text analysis. * This form is used in the admin interface to upload custom protected words dictionary files. */ public class UploadForm {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/resources/fess_api.xml
</component> <component name="searchApiManager" class="org.codelibs.fess.api.json.SearchApiManager"> </component> <component name="searchEngineApiManager" class="org.codelibs.fess.api.engine.SearchEngineApiManager"> </component>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Apr 02 03:04:36 UTC 2023 - 534 bytes - Viewed (0) -
mockwebserver-junit4/build.gradle.kts
} } dependencies { api(projects.okhttp) api(projects.mockwebserver3) api(libs.junit) testImplementation(libs.assertk) testImplementation(libs.junit.vintage.engine) } mavenPublishing { configure(KotlinJvm(javadocJar = JavadocJar.Empty()))
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 581 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/timer/HotThreadMonitorTarget.java
* This class extends MonitorTarget to provide monitoring functionality for * hot threads, which helps identify performance bottlenecks and resource * usage issues in the search engine cluster. */ public class HotThreadMonitorTarget extends MonitorTarget { private static final Logger logger = LogManager.getLogger(HotThreadMonitorTarget.class); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3.7K bytes - Viewed (0) -
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)