- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 130 for vite (0.03 sec)
-
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
* * <p>Duplicate host configurations allow administrators to define hostname patterns * that should be treated as equivalent during crawling. This helps avoid indexing * duplicate content from the same logical site that may be accessible via different * hostnames (e.g., www.example.com and example.com).</p> */ public class DuplicateHostService extends FessAppService { /** * DBFlute behavior for duplicate host operations.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/SortedSetMultimap.java
* have the provided key, an empty collection is returned. * * <p>Changes to the returned collection will update the underlying multimap, and vice versa. * * <p>Because a {@code SortedSetMultimap} has unique sorted values for a given key, this method * returns a {@link SortedSet}, instead of the {@link java.util.Collection} specified in the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
.maxExpansions(fessConfig.getQueryBoostFuzzyContentExpansionsAsInteger())); } return defaultQuery; } /** * Converts a site field query to a prefix query for site filtering. * * @param fessConfig the Fess configuration * @param context the query context * @param termQuery the term query to convert * @param boost the boost value to apply
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
assertTrue(thumbPath.toString().contains("thumbnails")); } public void test_getSitePath() { Path sitePath = ResourceUtil.getSitePath("site.xml"); assertNotNull(sitePath); assertTrue(sitePath.toString().contains("site")); } public void test_getPluginPath() { Path pluginPath = ResourceUtil.getPluginPath("plugin.jar"); assertNotNull(pluginPath);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java
// Test with various field names public void test_convertFuzzyQuery_withVariousFields() { QueryContext context = new QueryContext("test", false); String[] fields = { "title", "content", "url", "site", "host", "mimetype" }; for (String field : fields) { Term term = new Term(field, "fuzzy"); FuzzyQuery fuzzyQuery = new FuzzyQuery(term);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java
"{\"term\":{\"url\":{\"value\":\"aaa\",\"boost\":1.0}}}", // "url:aaa"); assertQueryBuilder(PrefixQueryBuilder.class, // "{\"prefix\":{\"site\":{\"value\":\"aaa\",\"boost\":1.0}}}", // "site:aaa"); assertQueryBuilder("{\"timestamp\":{\"order\":\"asc\"}}", "sort:timestamp");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
} buf.append(segment); return buf.toString(); } /** * Gets the site path for display purposes. * Extracts and formats the site path from document URL. * * @param docMap the document data map * @return the formatted site path */ public Object getSitePath(final Map<String, Object> docMap) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.searchoptions_num={0} results labels.searchoptions_menu_lang=Language labels.searchoptions_menu_labels=Labels labels.error_title=Error labels.system_error_title=System Error labels.contact_site_admin=Please contact your site administrator. labels.request_error_title=Invalid Request Format. labels.bad_request=Your request to the URL is invalid. labels.page_not_found_title=Page Not Found. labels.check_url=Please check the URL.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java
@Override public String getIndexFieldHost() { return "host"; } @Override public String getIndexFieldSite() { return "site"; } @Override public String getIndexFieldLastModified() { return "last_modified"; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/help_ko.jsp
<h2>검색방법</h2> <dl> <dt>필드 지정 검색</dt> <dd> 필드 이름 뒤에 콜론 :에 지정된 모든 필드에서 검색 할 수 있습니다. 예를 들어, 문서의 title 필드에서 Fess가 포함 된 문서를 검색하려면 다음과 같이 입력합니다. <pre>title:Fess</pre> 기본으로 사용 가능한 필드는 url, host, site, title content, content_length, last_modified 및 mimetype입니다. 설정에서 지정하는 필드는 변경할 수 있습니다. </dd> <dt>정렬</dt> <dd> sort 연산자는 지정된 필드 이름으로 문서를 정렬합니다. sort 연산자의 사용 방법은 sort:<field>.<order>입니다.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 26 14:01:31 UTC 2018 - 3.1K bytes - Viewed (0)