- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 129 for pos5 (0.01 seconds)
-
src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java
})).status(ApiResult.Status.OK).result()); } // POST /api/admin/group/setting /** * Creates a new group setting. * * @param body group setting data to create * @return JSON response with created setting ID and status */ @Execute public JsonResponse<ApiResult> post$setting(final CreateBody body) { validateApi(body, messages -> {});
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 8K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateFixedIssuesInReleaseNotes.kt
var pos = startAfterIntro var pastBlankLine = false for (line in lines) { if (pastBlankLine && !line.startsWith("- ") && line.isNotBlank()) { return pos } if (line.isNotBlank()) { pastBlankLine = true } pos += line.length + 1 // +1 for the newline }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 14:49:33 GMT 2026 - 5.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/role/ApiAdminRoleAction.java
/** * Creates a new role setting. * * @param body the role data to create * @return JSON response containing the created role setting ID */ // POST /api/admin/role/setting @Execute public JsonResponse<ApiResult> post$setting(final CreateBody body) { validateApi(body, messages -> {}); body.crudMode = CrudMode.CREATE; final Role entity = getRole(body).orElseGet(() -> {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/mail/LogNotificationPostcard.java
LogNotificationPostcard postcard = new LogNotificationPostcard(); postcardLambda.write(postcard); postbox.post(postcard); return postcard; } // =================================================================================== // Meta Data
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/ApiAdminDataconfigAction.java
* * @param body the request body containing data config information * @return JSON response with result status */ // POST /api/admin/dataconfig/setting @Execute public JsonResponse<ApiResult> post$setting(final CreateBody body) { validateApi(body, messages -> {}); body.crudMode = CrudMode.CREATE;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 8.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
} // Test with valid Origin and CorsHandler found (POST request) @Test public void test_doFilter_withCorsHandler_post() throws IOException, ServletException { String origin = "http://example.com"; mockRequest.setHeader("Origin", origin); mockRequest.setMethod("POST"); TestCorsHandler handler = new TestCorsHandler();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 22.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 27 13:56:32 GMT 2026 - 55.4K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java
defaultSettings.put("onelogin.saml2.sp.assertion_consumer_service.url", baseUrl + "/sso/"); defaultSettings.put("onelogin.saml2.sp.assertion_consumer_service.binding", "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST"); defaultSettings.put("onelogin.saml2.sp.single_logout_service.url", baseUrl + "/sso/logout"); defaultSettings.put("onelogin.saml2.sp.single_logout_service.binding", "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 18.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java
* * @param body the key match data to create * @return JSON response containing the created key match setting ID */ // POST /api/admin/keymatch/setting @Execute public JsonResponse<ApiResult> post$setting(final CreateBody body) { validateApi(body, messages -> {}); body.crudMode = CrudMode.CREATE; final KeyMatch keyMatch = getKeyMatch(body).map(entity -> {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/mylasta/mail/TestmailPostcard.java
public static TestmailPostcard droppedInto(Postbox postbox, MPCall<TestmailPostcard> postcardLambda) { TestmailPostcard postcard = new TestmailPostcard(); postcardLambda.write(postcard); postbox.post(postcard); return postcard; } // =================================================================================== // Meta Data
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 3.9K bytes - Click Count (0)