- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 534 for Ressource (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/ApiAdminReqheaderAction.java
/** The request header service for managing request header settings. */ @Resource private RequestHeaderService reqHeaderService; /** The web config service for validating web configuration references. */ @Resource private WebConfigService webConfigService; // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java
/** The web authentication service for managing web authentication settings. */ @Resource private WebAuthenticationService webAuthService; /** The web config service for validating web configuration references. */ @Resource private WebConfigService webConfigService; // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java
// ========= /** Service for managing search log data */ @Resource private SearchLogService searchLogService; /** Pager for paginating search log results */ @Resource private SearchLogPager searchLogPager; // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java
import org.codelibs.fess.app.web.base.FessSearchAction; import org.codelibs.fess.util.DocumentUtil; import org.lastaflute.web.Execute; import org.lastaflute.web.response.ActionResponse; import jakarta.annotation.Resource; import jakarta.servlet.http.HttpServletResponse; /** * Action class for handling thumbnail image requests. * Serves thumbnail images for documents in the search results. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/suggest/AdminSuggestAction.java
import org.codelibs.fess.helper.SuggestHelper; import org.lastaflute.web.Execute; import org.lastaflute.web.response.HtmlResponse; import org.lastaflute.web.ruts.process.ActionRuntime; import jakarta.annotation.Resource; /** * Admin action for suggest management. * */ public class AdminSuggestAction extends FessAdminAction { /** * Default constructor. */ public AdminSuggestAction() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
cmd/metrics-v3-system-cpu.go
cpuNiceVal := math.Round(ts.Nice/tot*100*100) / 100 m.Set(sysCPUNice, cpuNiceVal) cpuStealVal := math.Round(ts.Steal/tot*100*100) / 100 m.Set(sysCPUSteal, cpuStealVal) } // metrics-resource.go runs a job to collect resource metrics including their Avg values and // stores them in resourceMetricsMap. We can use it to get the Avg values of CPU idle and IOWait. cpuResourceMetrics, found := resourceMetricsMap[cpuSubsystem] if found {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Jun 20 17:55:03 UTC 2024 - 3K bytes - Viewed (0) -
docs/en/docs/tutorial/cors.md
# CORS (Cross-Origin Resource Sharing) { #cors-cross-origin-resource-sharing } <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS" class="external-link" target="_blank">CORS or "Cross-Origin Resource Sharing"</a> refers to the situations when a frontend running in a browser has JavaScript code that communicates with a backend, and the backend is in a different "origin" than the frontend. ## Origin { #origin }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java
* and the Jar file contains a resource <code>/aaa/bbb/ccc/ddd/eee.txt</code>, the handler receives * the path <code>ccc/ddd/eee.txt</code>. * </p> * * @param jarFile * the Jar file (must not be {@literal null}) * @param prefix * the prefix that resource names must start with (must not be {@literal null}).
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/LabelTypeService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; /** * Service class for label types. */ public class LabelTypeService extends FessAppService { /** The LabelType behavior. */ @Resource protected LabelTypeBhv labelTypeBhv; /** The Fess config. */ @Resource protected FessConfig fessConfig; /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; /** * Service for managing stopwords. * This class provides methods to interact with stopwords dictionaries, * including retrieving, storing, and deleting stopwords. */ public class StopwordsService { /** The dictionary manager for accessing dictionary files. */ @Resource protected DictionaryManager dictionaryManager;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.6K bytes - Viewed (0)