- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 2,228 for final (0.02 sec)
-
src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java
* @param e the underlying exception that caused this error * @param abort whether the crawling process should be aborted due to this error */ public DataStoreCrawlingException(final String url, final String message, final Exception e, final boolean abort) { super(message, e); this.url = url; this.abort = abort; } /** * Gets the URL where the crawling error occurred. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/dict/DictCrudTestBase.java
@Override protected void testRead() { final Map<String, Object> searchBody = new HashMap<>(); String response = checkGetMethod(searchBody, getListEndpointSuffix()).asString(); final int total = JsonPath.from(response).getInt("response.total"); final List<Map<String, String>> items = JsonPath.from(response).getList("response.settings"); final int status = JsonPath.from(response).getInt("response.status");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java
// GET /api/admin/labeltype/settings // PUT /api/admin/labeltype/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final LabelTypePager pager = copyBeanToNewBean(body, LabelTypePager.class); final List<LabelType> list = labelTypeService.getLabelTypeList(pager); return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java
*/ // GET /api/admin/keymatch/settings // PUT /api/admin/keymatch/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final KeyMatchPager pager = copyBeanToNewBean(body, KeyMatchPager.class); final List<KeyMatch> list = keyMatchService.getKeyMatchList(pager); return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/Maps.java
*/ public static <KEY, VALUE> Maps<KEY, VALUE> weakHashMap(final KEY key, final VALUE value) { return new Maps<>(new WeakHashMap<KEY, VALUE>()).$(key, value); } /** * Constructs an instance. * * @param map the <code>Map</code> to which keys and values are added */ protected Maps(final Map<K, V> map) { this.map = map; } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 7.2K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFutureState.java
} return false; } final @Nullable Object value() { return value; } final @Nullable Listener listeners() { return listeners; } final void releaseWaiters() {} AbstractFutureState() {} static final Object NULL = new Object(); static final LazyLogger log = new LazyLogger(AbstractFuture.class); static final boolean GENERATE_CANCELLATION_CAUSES = false;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Feb 21 02:38:37 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NoSuchMethodRuntimeException.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/KeyMatchDbm.java
protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // =================================================================================== // Singleton // ========= private static final KeyMatchDbm _instance = new KeyMatchDbm();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
* @return A list of stopwords. */ public List<StopwordsItem> getStopwordsList(final String dictId, final StopwordsPager stopwordsPager) { return getStopwordsFile(dictId).map(file -> { final int pageSize = stopwordsPager.getPageSize(); final PagingList<StopwordsItem> stopwordsList =
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SynonymService.java
* @return A list of synonyms. */ public List<SynonymItem> getSynonymList(final String dictId, final SynonymPager synonymPager) { return getSynonymFile(dictId).map(file -> { final int pageSize = synonymPager.getPageSize(); final PagingList<SynonymItem> synonymList = file.selectList((synonymPager.getCurrentPageNumber() - 1) * pageSize, pageSize);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.5K bytes - Viewed (0)