- Sort Score
- Num 10 results
- Language All
Results 161 - 170 of 383 for json$ (0.02 seconds)
-
src/main/java/org/codelibs/fess/job/JsonIndexExportFormatter.java
if (!first) { json.append(",\n"); } first = false; json.append(" \"").append(escapeJson(field)).append("\": "); appendJsonValue(json, value); } json.append("\n}\n"); return json.toString(); } private void appendJsonValue(final StringBuilder json, final Object value) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Feb 07 10:31:36 GMT 2026 - 4.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/IndexExportJobTest.java
final String json = new JsonIndexExportFormatter().format(source, Collections.emptySet()); assertTrue(json.contains("\"title\": \"Test Title\"")); assertTrue(json.contains("\"content\": \"Test Content\"")); assertTrue(json.contains("\"url\": \"https://example.com/page.html\"")); assertTrue(json.startsWith("{")); assertTrue(json.trim().endsWith("}")); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 09:08:38 GMT 2026 - 66.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
/** * Extracts a string value from JSON response using Jackson parser. * * @param json the JSON response * @param key the key to extract * @return the extracted string value */ protected String extractJsonString(final String json, final String key) { try { final String cleanJson = stripCodeFences(json);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/ITBase.java
if (testToken != null) { return; } given().contentType("application/json").delete(getEsUrl() + "/fess_config.access_token/_doc/" + DEFAULT_TEST_TOKEN_ID); } public static void refresh() { given().contentType("application/json").post(getEsUrl() + "/_refresh"); } public static String getFessUrl() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 3.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
* as {@code jobLogId}. When job logging is disabled, {@code jobLogId} is {@code null}. * * @param id the ID of the scheduled job to start * @return JSON response with {@code jobLogId} (nullable) and status */ // PUT /api/admin/scheduler/{id}/start @Execute(urlPattern = "{}/@word") public JsonResponse<ApiResult> put$start(final String id) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 10.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/ApiAdminPathmapAction.java
* Returns list of path mapping settings. * Supports both GET and PUT requests for retrieving paginated path mapping configurations. * * @param body search parameters for filtering and pagination * @return JSON response containing path mapping settings list with pagination info */ @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {});Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 7.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/ApiAdminRelatedcontentAction.java
* Supports both GET and PUT requests for retrieving paginated related content configurations. * * @param body search parameters for filtering and pagination * @return JSON response containing related content settings list with pagination info */ @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {});Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 8.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/ApiAdminWebconfigAction.java
/** * Retrieves web configuration settings with pagination. * * @param body the search parameters for filtering and pagination * @return JSON response containing web configuration settings list */ // GET /api/admin/webconfig/settings // PUT /api/admin/webconfig/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 8.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/PopularWordsApiTests.java
import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; import io.restassured.RestAssured; import io.restassured.path.json.JsonPath; /** * Integration tests for the Popular Words API (/api/v1/popular-words) */ @Tag("it") public class PopularWordsApiTests extends ITBase { @BeforeAll protected static void initAll() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 3.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessActionAdjustmentProviderTest.java
final FessConfig fessConfig = createFessConfigWithResponseHeaders("*=X-Def:def\napplication/json=X-Json:jsonval"); FessActionAdjustmentProvider provider = new FessActionAdjustmentProvider(fessConfig); final Map<String, String> headerMap = new HashMap<>(); provider.adjustActionResponseHeaders("application/json", (k, v) -> headerMap.put(k, v)); assertEquals(2, headerMap.size());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 4K bytes - Click Count (0)