- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 1,177 for responses (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
} addDocumentsInResponse(queryResponseList, searchLog); searchLogQueue.add(searchLog); } /** * Adds documents in the response to the search log. * * @param queryResponseList The list of query responses. * @param searchLog The search log. */ protected void addDocumentsInResponse(final QueryResponseList queryResponseList, final SearchLog searchLog) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java
import org.codelibs.fess.dict.stemmeroverride.StemmerOverrideFile; import org.codelibs.fess.dict.stemmeroverride.StemmerOverrideItem; import org.lastaflute.web.Execute; import org.lastaflute.web.response.JsonResponse; import org.lastaflute.web.response.StreamResponse; import jakarta.annotation.Resource; /** * API action for admin Stemmer Override dictionary management.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.8K bytes - Viewed (0) -
docs/features/events.md
System.out.println("REQUEST 1 (new connection)"); try (Response response = client.newCall(request).execute()) { // Consume and discard the response body. response.body().source().readByteString(); } System.out.println("REQUEST 2 (pooled connection)"); try (Response response = client.newCall(request).execute()) { // Consume and discard the response body. response.body().source().readByteString(); } ```
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java
} return asJson(new ApiResult.ApiUpdateResponse().id(id).created(false).status(ApiResult.Status.OK).result()); } /** * Creates an edit body from a group entity for API responses. * * @param entity the group entity to convert * @return edit body containing the entity data */ protected EditBody createEditBody(final Group entity) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/ApiAdminBoostdocAction.java
}); return asJson(new ApiResponse().status(Status.OK).result()); } /** * Creates an EditBody from a BoostDocumentRule entity for API responses. * * @param entity the BoostDocumentRule entity to convert * @return the converted EditBody object */ protected EditBody createEditBody(final BoostDocumentRule entity) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.9K bytes - Viewed (0) -
docs/en/docs/advanced/behind-a-proxy.md
``` </div> ### Check the responses { #check-the-responses } Now, if you go to the URL with the port for Uvicorn: <a href="http://127.0.0.1:8000/app" class="external-link" target="_blank">http://127.0.0.1:8000/app</a>, you will see the normal response: ```JSON { "message": "Hello World", "root_path": "/api/v1" } ``` /// tip
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 19:34:08 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/ApiAdminAccesstokenAction.java
}); return asJson(new ApiResponse().status(Status.OK).result()); } /** * Creates an EditBody from an AccessToken entity for API responses. * Converts permissions and handles date formatting. * * @param entity the AccessToken entity to convert * @return the EditBody representation of the entity */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/NotifyResponseTest.java
assertNull(response2.getNextResponse()); // Verify each response maintains its own notifications assertEquals(1, response1.getNotifyInformation().size()); assertEquals(mockNotifyInfo1, response1.getNotifyInformation().get(0)); assertEquals(1, response2.getNotifyInformation().size()); assertEquals(mockNotifyInfo2, response2.getNotifyInformation().get(0)); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java
import org.codelibs.fess.dict.mapping.CharMappingFile; import org.codelibs.fess.dict.mapping.CharMappingItem; import org.lastaflute.web.Execute; import org.lastaflute.web.response.JsonResponse; import org.lastaflute.web.response.StreamResponse; import jakarta.annotation.Resource; /** * API action for CRUD and file operations on dictionary character mappings. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2CancelRequestTest.java
// When boolean isAsync = request.isResponseAsync(); // Then assertFalse(isAsync, "Cancel requests should not expect async responses"); } @Test @DisplayName("Test getNext returns null") void testGetNext() { // Given Smb2CancelRequest request = new Smb2CancelRequest(mockConfig, 1L, 0L); // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.8K bytes - Viewed (0)