- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 1,220 for entity (0.03 sec)
-
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
}).orElse(Collections.emptyList()); } /** * Retrieves a stopwords file for a given dictionary ID. * * @param dictId The ID of the dictionary. * @return An optional entity containing the stopwords file, or empty if not found. */ public OptionalEntity<StopwordsFile> getStopwordsFile(final String dictId) { return dictionaryManager.getDictionaryFile(dictId)
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
}).orElse(Collections.emptyList()); } /** * Retrieves a synonym file for a given dictionary ID. * * @param dictId The ID of the dictionary. * @return An optional entity containing the synonym file, or empty if not found. */ public OptionalEntity<SynonymFile> getSynonymFile(final String dictId) { return dictionaryManager.getDictionaryFile(dictId)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedQueryService.java
} /** * Stores (inserts or updates) a related query in the database. * After storing, the related query helper is updated to refresh the cache. * * @param relatedQuery the RelatedQuery entity to store */ public void store(final RelatedQuery relatedQuery) { relatedQueryBhv.insertOrUpdate(relatedQuery, op -> op.setRefreshPolicy(Constants.TRUE));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java
* <li>org.codelibs.fess.crawler.exception.CrawlerSystemException</li> * <li>org.codelibs.fess.crawler.entity.AccessResultData</li> * <li>org.codelibs.core.lang.StringUtil</li> * </ul> * * @see org.codelibs.fess.crawler.Constants * @see org.codelibs.fess.crawler.exception.CrawlerSystemException * @see org.codelibs.fess.crawler.entity.AccessResultData * @see org.codelibs.core.lang.StringUtil */ public final class XmlUtil {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.4K bytes - Viewed (0) -
docs/en/docs/tutorial/extra-models.md
## Recap { #recap } Use multiple Pydantic models and inherit freely for each case.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/GeoInfo.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.entity; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.codelibs.core.lang.StringUtil; import org.codelibs.core.stream.StreamUtil;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
for (final Map.Entry<String, Object> entry : attributeMap.entrySet()) { factory.setAttribute(entry.getKey(), entry.getValue()); } for (final Map.Entry<String, String> entry : featureMap.entrySet()) { factory.setFeature(entry.getKey(), "true".equalsIgnoreCase(entry.getValue())); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 23.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
import org.codelibs.core.misc.Tuple3; import org.codelibs.fess.Constants; import org.codelibs.fess.crawler.entity.AccessResultData; import org.codelibs.fess.crawler.entity.ExtractData; import org.codelibs.fess.crawler.entity.ResponseData; import org.codelibs.fess.crawler.entity.ResultData; import org.codelibs.fess.crawler.entity.UrlQueue; import org.codelibs.fess.crawler.exception.CrawlerSystemException;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.6K bytes - Viewed (0) -
apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt
to its Contributions set forth herein, no assurances are provided by any Contributor that the Program does not infringe the patent or other intellectual property rights of any other entity. Each Contributor disclaims any liability to Recipient for claims brought by any other entity based on infringement of intellectual property rights or otherwise. As a condition to exercising the rights and
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Sep 17 05:50:12 UTC 2018 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractEntity.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.user.allcommon; import java.io.Serializable; import java.util.Map; import java.util.Set; import org.dbflute.Entity; import org.dbflute.FunCustodial; import org.dbflute.dbmeta.accessory.EntityModifiedProperties; import org.dbflute.dbmeta.accessory.EntityUniqueDrivenProperties; import org.dbflute.util.DfCollectionUtil;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.9K bytes - Viewed (0)