- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 247 for _this (0.02 seconds)
-
src/main/java/org/codelibs/fess/entity/HighlightInfo.java
} /** * Sets the highlighting type with fluent interface. * * @param type the highlighting type to set * @return this HighlightInfo instance for method chaining */ public HighlightInfo type(final String type) { this.type = type; return this; } /** * Gets the fragment size. * * @return the fragment size in characters */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 10:17:07 GMT 2026 - 5.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
return this; } /** * Sets the bug report properties. * @param bugReportProps The bug report properties. * @return This ApiSystemInfoResponse instance. */ public ApiSystemInfoResponse bugReportProps(final List<Map<String, String>> bugReportProps) { this.bugReportProps = bugReportProps; return this;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 25.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java
*/ @Execute @Secured({ ROLE }) public HtmlResponse create(final CreateForm form) { verifyCrudMode(form.crudMode, CrudMode.CREATE, this::asListHtml); validate(form, messages -> {}, this::asEditHtml); verifyToken(this::asEditHtml); getFileConfig(form).ifPresent(entity -> { try { fileConfigService.store(entity);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 21.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
public HtmlResponse create(final CreateForm form) { currentForm = form; verifyCrudMode(form.crudMode, CrudMode.CREATE, this::asListHtml); validate(form, messages -> {}, this::asEditHtml); validateFields(form.doc, v -> throwValidationError(v, this::asEditHtml)); verifyToken(this::asEditHtml); getDoc(form).ifPresent(entity -> { try {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 25.5K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
*/ @Execute @Secured({ ROLE }) public HtmlResponse create(final CreateForm form) { verifyCrudMode(form.crudMode, CrudMode.CREATE, this::asListHtml); validate(form, messages -> {}, this::asEditHtml); verifyToken(this::asEditHtml); getWebConfig(form).ifPresent(entity -> { try { webConfigService.store(entity);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 22.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
import jakarta.annotation.PreDestroy; /** * Groovy script engine implementation that extends AbstractScriptEngine. * This class provides support for executing Groovy scripts with parameter binding * and DI container integration. * * <p>Thread Safety: This class is thread-safe. Each cached entry holds its own * GroovyClassLoader. The cache uses Guava Cache with segment-based locking for
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 11.9K bytes - Click Count (0) -
src/main/webapp/js/marked.min.js
l{tokens;options;state;inlineQueue;tokenizer;constructor(e){this.tokens=[],this.tokens.links=Object.create(null),this.options=e||R,this.options.tokenizer=this.options.tokenizer||new w,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};let t={other:m,block:B.normal,inline:z.normal};this.options.pedantic?(t.block=B.pedantic,t.inline=z.pedantic):this.options.gfm&&(t.block=B.gfm,this.options.breaks?...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 41.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/ChatMessage.java
} sources.add(source); } /** * Checks if this is a user message. * * @return true if this is a user message */ public boolean isUser() { return ROLE_USER.equals(role); } /** * Checks if this is an assistant message. * * @return true if this is an assistant message */ public boolean isAssistant() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 04:52:31 GMT 2026 - 10.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/LogNotificationHelper.java
final String throwable) { this.timestamp = timestamp; this.level = level; this.loggerName = loggerName; this.message = message; this.throwable = throwable; } /** * Returns the event timestamp in milliseconds. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
final HttpServletRequest request, final String clientIp, final String virtualHostKey) { this.fessConfig = fessConfig; this.roles = roles; this.userCode = userCode; this.userId = userId; this.request = request; this.clientIp = clientIp; this.virtualHostKey = virtualHostKey; } } /** * Adds a search log to the queue.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 29.3K bytes - Click Count (0)