- Sort Score
- Result 10 results
- Languages All
Results 911 - 920 of 3,495 for FINAL (0.02 sec)
-
src/main/java/org/codelibs/fess/app/service/JobLogService.java
} public void deleteBefore(final int days) { final long oneday = 24 * 60 * 60 * 1000L; final long targetTime = ComponentUtil.getSystemHelper().getCurrentTimeAsLong() - days * oneday; jobLogBhv.queryDelete(cb -> { cb.query().setEndTime_LessThan(targetTime); }); } public void deleteByJobStatus(final List<String> jobStatusList) { jobLogBhv.queryDelete(cb -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/fs/FileSystemClientTest.java
public void test_doGet_dir() { final File file = ResourceUtil.getResourceAsFile("test"); String path = file.getAbsolutePath(); if (!path.startsWith("/")) { path = "/" + path.replace('\\', '/'); } try { fsClient.doGet("file://" + path); fail(); } catch (final ChildUrlsException e) { final Set<RequestData> urlSet = e.getChildUrlList();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/AssertionUtil.java
* @param arraySize * インデックスが参照する配列の長さ * @throws ClIllegalArgumentException * 引数が配列のインデックスとして不正な場合場合。 */ public static void assertArgumentArrayIndex(final String argName, final int argValue, final int arraySize) { if (argValue < 0) { throw new ClIllegalArgumentException(argName, "ECL0014", asArray(argName)); } if (argValue >= arraySize) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 12.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/ITBase.java
public class ITBase { private static final Logger logger = LogManager.getLogger(ITBase.class); public static final String DEFAULT_FESS_URL = "http://localhost:8080"; public static final String DEFAULT_SEARCH_ENGINE_URL = "http://localhost:9200"; public static final String DEFAULT_TEST_TOKEN = "E44TjYrJQadtGBFFuECA0SBqqVtqj7lRGmhYep53ixNdvlRxnkhwqCVCpRoO"; public static final String DEFAULT_TEST_TOKEN_ID = "testToken";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/LruHashMap.java
private static final long serialVersionUID = 1L; /** * デフォルトの初期容量です。 */ protected static final int DEFAULT_INITIAL_CAPACITY = 16; /** * デフォルトのロードファクタです。 */ protected static final float DEFAULT_LOAD_FACTOR = 0.75f; /** * 上限サイズです。 */ protected final int limitSize; /** * {@link LruHashMap}を作成します。
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/EmptyArgumentException.java
private static final long serialVersionUID = 4625805280526951642L; /** * {@link EmptyArgumentException}を作成します。 * * @param argName * 引数の名前 * @param messageCode * メッセージコード * @param args * 引数の配列 */ public EmptyArgumentException(final String argName, final String messageCode, final Object[] args) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.8K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/PosConcatenationFilterFactory.java
public class PosConcatenationFilterFactory extends AbstractTokenFilterFactory { private final Set<String> posTags = new HashSet<>(); public PosConcatenationFilterFactory(final IndexSettings indexSettings, final Environment environment, final String name, final Settings settings) { super(indexSettings, name, settings); final List<String> tagList = Analysis.parseWordList(environment, settings, "tags", s -> s);
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableKeywordMarkerFilterFactory.java
private final Path keywordPath; private final long reloadInterval; public ReloadableKeywordMarkerFilterFactory(final IndexSettings indexSettings, final Environment environment, final String name, final Settings settings) { super(indexSettings, name, settings); final String path = settings.get("keywords_path"); if (path != null) {
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java
*/ @Deprecated(since = "4.0.0") class ClassMap { private static final class CacheMiss {} private static final CacheMiss CACHE_MISS = new CacheMiss(); private static final Object OBJECT = new Object(); /** * Class passed into the constructor used to as * the basis for the Method map. */ private final Class<?> clazz; /** * Cache of Methods, or CACHE_MISS, keyed by method
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java
} protected String getHostKey(final RelatedContent entity) { final String key = entity.getVirtualHost(); return StringUtil.isBlank(key) ? StringUtil.EMPTY : key; } public String[] getRelatedContents(final String query) { final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.8K bytes - Viewed (0)