- Sort Score
- Num 10 results
- Language All
Results 461 - 470 of 503 for a_value (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java
assertEquals(2, dataMap.size()); assertEquals("A0", dataMap.get("a")); assertEquals("B1", dataMap.get("b")); } /** Case 2: Key conflict (without .overwrite) → Overwrite with value from responseDataMap */ @Test public void test_mergeResponseData_keyConflict() { Map<String, Object> dataMap = new HashMap<>(); dataMap.put("x", "X0");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 19.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
DataStoreException withIOException = new DataStoreException("IO Error", new java.io.IOException("File not found")); DataStoreException withNPE = new DataStoreException("NPE Error", new NullPointerException("Null value")); DataStoreException withCustom = new DataStoreException("Custom Error", new FessSystemException("System error")); assertTrue(withIOException.getCause() instanceof java.io.IOException);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/FavoritesApiTests.java
createJob(requestBody); } private static String createCrawlLabel() { Map<String, Object> labelBody = new HashMap<>(); labelBody.put("name", CRAWL_LABEL); labelBody.put("value", CRAWL_LABEL); labelBody.put("included_paths", ".*"); Response response = checkMethodBase(labelBody).post("/api/admin/labeltype/setting"); JsonPath jsonPath = JsonPath.from(response.asString());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 9.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/chat/ChatClientTest.java
} } } return history; } String testEscapeQueryValue(final String value) { return escapeQueryValue(value); } List<Map<String, Object>> testSearchWithQuery(final String query) { return searchWithQuery(query); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 40.6K bytes - Click Count (0) -
src/main/resources/fess_label_zh_CN.properties
labels.crawling_thread_count=同时爬虫设置 labels.incremental_crawling=检查上次修改时间 labels.search_log_enabled=搜索日志 labels.user_info_enabled=用户日志 labels.user_favorite_enabled=收藏日志 labels.web_api_json_enabled=JSON响应 labels.app_value=系统属性 labels.default_label_value=默认标签值 labels.default_sort_value=默认排序值 labels.virtual_host_value=虚拟主机 labels.append_query_param_enabled=添加搜索参数 labels.login_required=需要登录 labels.result_collapsed=折叠重复结果
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java
@Test public void test_exceptionWithSpecialCharactersInMessage() { // Test with special characters in message int statusCode = 400; String message = "Error: \"Invalid JSON\" - {key: 'value'} \n\t@#$%^&*()"; WebApiException exception = new WebApiException(statusCode, message); assertEquals(statusCode, exception.getStatusCode()); assertEquals(message, exception.getMessage());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/ScrollSearchApiTests.java
createJob(requestBody); } private static String createCrawlLabel() { Map<String, Object> labelBody = new HashMap<>(); labelBody.put("name", CRAWL_LABEL); labelBody.put("value", CRAWL_LABEL); labelBody.put("included_paths", ".*"); Response response = checkMethodBase(labelBody).post("/api/admin/labeltype/setting"); JsonPath jsonPath = JsonPath.from(response.asString());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 7.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
final Method executeMethod = resource.getExecuteMethod(); final Secured secured = executeMethod.getAnnotation(Secured.class); if (secured != null && user.hasRoles(secured.value())) { return; } throw new UserRoleLoginException(RootAction.class); }); } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 12.1K bytes - Click Count (0) -
src/main/webapp/css/admin/bootstrap.min.css.map
\"spinners\";\n@import \"utilities\";\n@import \"print\";\n",":root {\n // Custom variable values only support SassScript inside `#{}`.\n @each $color, $value in $colors {\n --#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$color}: #{$value};\n }\n\n @each $bp, $value in $grid-breakpoints {\n --breakpoint-#{$bp}: #{$value};\n }\n\n // Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:49:09 GMT 2024 - 639.3K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/entity/FacetInfoTest.java
BucketOrder order = facetInfo.getBucketOrder(); assertNotNull(order); assertEquals(BucketOrder.key(true), order); } // Test getBucketOrder with invalid sort value @Test public void test_getBucketOrder_invalidSort() { facetInfo.sort = "invalid.desc"; BucketOrder order = facetInfo.getBucketOrder(); assertNotNull(order);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13.4K bytes - Click Count (0)