- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for deprecate (1.53 sec)
-
src/main/java/org/codelibs/core/crypto/CachedCipher.java
/** * Encrypts the given data. * * @param data * the data to encrypt * @return the encrypted data * @deprecated Use {@link #encrypt(byte[])} instead. This method name contains a typo. */ @Deprecated public byte[] encrypto(final byte[] data) { return encrypt(data); } /** * Encrypts the given data with the specified key. *Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 15.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
* @param attr the attribute name to extract URLs from * @param encoding the character encoding to use * @return a list of extracted URLs * @deprecated Use {@link #getUrlFromTagAttribute(URI, Document, String, String, String)} instead. */ @Deprecated protected List<String> getUrlFromTagAttribute(final URL url, final Document document, final String xpath, final String attr, final String encoding) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 29 07:42:33 UTC 2025 - 30.5K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
* @param type The document type (deprecated, no longer used). * @param queryBuilder The query to match documents for deletion. * @return The number of deleted documents. * @throws OpenSearchAccessException if the deletion fails. * @deprecated Use {@link #deleteByQuery(String, QueryBuilder)} instead. The type parameter is no longer used. */ @Deprecated
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 02:01:26 UTC 2025 - 26.2K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/client/FesenClientTest.java
assertEquals(1, deleted); verify(mockClearScrollBuilder, times(1)).addScrollId("scroll1"); } /** * Test: deleteByQuery deprecated method delegates to new method * Verifies backward compatibility */ @Test @SuppressWarnings("deprecation") public void testDeleteByQueryDeprecatedMethodDelegates() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:44:44 UTC 2025 - 17K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
* It now uses the standard String constructor. * </p> * * @param chars * the char array * @return a new String, or null if the input is null * @deprecated This method originally used internal JDK APIs (sun.misc.SharedSecrets) for * performance optimization, but those APIs have been removed for safety andRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java
value = getHandlerParameterMap().get("timeToLive"); // TODO remove if (StringUtil.isBlank(value)) { return null; } logger.warn("timeToLive is deprecated. Please use time_to_live."); } try { return Integer.parseInt(value); } catch (final NumberFormatException e) { if (logger.isDebugEnabled()) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
} /** * Creates a bulk line for OpenSearch indexing from the given parameters. * * @param index the name of the OpenSearch index * @param type the type of the document (deprecated in newer versions of OpenSearch) * @param item the SuggestItem containing the data to be indexed * @return a string representing the bulk line for OpenSearch indexingRegistered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Nov 23 11:21:40 UTC 2025 - 17.5K bytes - Viewed (1)