- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 2,107 for projectId (1.62 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/CrawlingInfoDbm.java
// ========== protected final String _tableDbName = "crawling_info"; protected final String _tableDispName = "crawling_info"; protected final String _tablePropertyName = "CrawlingInfo"; public String getTableDbName() { return _tableDbName; } @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
*/ public class RoleService { /** * The behavior for roles. */ @Resource protected RoleBhv roleBhv; /** * The Fess configuration. */ @Resource protected FessConfig fessConfig; /** * The behavior for users. */ @Resource protected UserBhv userBhv; /** * Constructor. */ public RoleService() { super();Registered: Sat Dec 20 09:19:18 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/dict/protwords/CreateForm.java
import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * Form class for creating protected words dictionary entries. * Protected words are terms that should not be modified or analyzed during * text processing, preserving their original form in search indexes. * */ public class CreateForm { /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Tuple3.java
* @param <T3> * The type of the third value */ public class Tuple3<T1, T2, T3> { /** The first value */ protected T1 value1; /** The second value */ protected T2 value2; /** The third value */ protected T3 value3; /** * Creates and returns a tuple of three values. * * @param <T1> * The type of the first value
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TarExtractor.java
private static final Logger logger = LogManager.getLogger(TarExtractor.class); /** * The archive stream factory. */ @Resource protected ArchiveStreamFactory archiveStreamFactory; /** * Maximum content size. */ protected long maxContentSize = -1; /** * Creates a new TarExtractor instance. */ public TarExtractor() { super(); }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/LabelTypeService.java
/** * 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. */ public LabelTypeService() { super(); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/exbhv/ClickLogBhv.java
private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexLogIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_log"), name); } return indexName; } @Override protected LocalDateTime toLocalDateTime(final Object value) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsWebAuthenticationBhv.java
return facadeSelectByPK(id); } protected OptionalEntity<WebAuthentication> facadeSelectByPK(String id) { return doSelectOptionalByPK(id, typeOfSelectedEntity()); } protected <ENTITY extends WebAuthentication> ENTITY doSelectByPK(String id, Class<? extends ENTITY> tp) { return doSelectEntity(xprepareCBAsPK(id), tp); } protected WebAuthenticationCB xprepareCBAsPK(String id) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/DefaultIntervalController.java
protected long delayMillisAfterProcessing = 0L; /** Delay in milliseconds when no URL is in the queue */ protected long delayMillisAtNoUrlInQueue = 500L; /** Delay in milliseconds before processing a URL */ protected long delayMillisBeforeProcessing = 0L; /** Delay in milliseconds for waiting for new URLs */ protected long delayMillisForWaitingNewUrl = 1000L;Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:58:39 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exbhv/BoostDocumentRuleBhv.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class BoostDocumentRuleBhv extends BsBoostDocumentRuleBhv { private String indexName = null; @Override protected String asEsIndex() { if (indexName == null) { final String name = ComponentUtil.getFessConfig().getIndexConfigIndex(); indexName = super.asEsIndex().replaceFirst(Pattern.quote("fess_config"), name);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.2K bytes - Viewed (0)