- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for put$start (0.05 seconds)
-
src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java
return null; }); final ApiAdminSchedulerAction action = createActionWithMockService(scheduledJob); // Execute the real put$start() method final JsonResponse<ApiResult> jsonResponse = action.put$start("job-1"); // Verify: response contains non-null jobLogId assertNotNull(jsonResponse); final ApiResult apiResult = jsonResponse.getJsonResult();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 13K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java
* @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) { final String[] jobLogId = { null }; scheduledJobService.getScheduledJob(id).ifPresent(entity -> { if (!entity.isEnabled() || entity.isRunning()) {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/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java
int pathStart = Smb2Constants.SMB2_HEADER_LENGTH + 8; for (int i = 0; i < testPath.length(); i++) { char c = testPath.charAt(i); if (c < 128) { // ASCII character assertEquals(c, buffer[pathStart + i * 2]); assertEquals(0, buffer[pathStart + i * 2 + 1]); } } } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.6K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt
*/ @get:JvmName("encodedPath") val encodedPath: String get() { val pathStart = url.indexOf('/', scheme.length + 3) // "://".length() == 3. val pathEnd = url.delimiterOffset("?#", pathStart, url.length) return url.substring(pathStart, pathEnd) } /** * A list of encoded path segments like `["a", "b", "c"]` for the URL `http://host/a/b/c`. ThisCreated: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 63.5K bytes - Click Count (0)