- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 354 for SUCCESS (0.04 sec)
-
PULL_REQUESTS_ETIQUETTE.md
6. **Testing**: - Assume the submitter tested the code. If testing is unclear, ask for details (e.g., “How was this tested?”). - Reject untested PRs unless testing is infeasible, then assist with test setup. ## Tips for Success - **Small PRs**: Easier to review, faster to merge. Split large changes logically. - **Clear Commits**: Use `git rebase -i` to refine history before submitting.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun May 25 16:32:03 UTC 2025 - 4.7K bytes - Viewed (0) -
cmd/storage-rest-client.go
if !client.IsOnlineWS() { // make sure to check if the disk is offline, since the underlying // value is cached we should attempt to invalidate it if such calls // were attempted. This can lead to false success under certain conditions // - this change attempts to avoid stale information if the underlying // transport is already down. return "", errDiskNotFound }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 08 02:38:41 UTC 2025 - 30.4K bytes - Viewed (0) -
cmd/api-response.go
mimeXML mimeType = "application/xml" ) // writeSuccessResponseJSON writes success headers and response if any, // with content-type set to `application/json`. func writeSuccessResponseJSON(w http.ResponseWriter, response []byte) { writeResponse(w, http.StatusOK, response, mimeJSON) } // writeSuccessResponseXML writes success headers and response if any, // with content-type set to `application/xml`.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 33.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupResponseTest.java
resp.prepare(nextReq); assertEquals(expectedSessionId, nextReq.getSessionId(), "prepare() should propagate sessionId"); } @Test @DisplayName("Decode with SUCCESS should parse body and non-guest flag") void testDecodeSuccessParsesBody() throws Exception { Smb2SessionSetupResponse resp = newResponse(); byte[] buf = new byte[256]; int headerStart = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java
} /** * Deletes a key match setting by ID. * * @param id the ID of the key match setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/keymatch/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { keyMatchService.getKeyMatch(id).ifPresent(entity -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
* and cleanup operations. * * @param options parsed command-line options containing crawling configuration * @return exit code (Constants.EXIT_OK for success, Constants.EXIT_FAIL for failure) */ private static int process(final Options options) { final Crawler crawler = ComponentUtil.getComponent(Crawler.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
final CountDownLatch latch = new CountDownLatch(1); logger.info("Parsing words from indexed documents."); suggestHelper.indexFromDocuments(ret -> { logger.info("Success indexing from documents."); latch.countDown(); }, t -> { logger.error("Failed to update suggest index.", t); exitCode.set(1); latch.countDown();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java
} /** * Deletes a label type setting by ID. * * @param id the ID of the label type setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/labeltype/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { labelTypeService.getLabelType(id).ifPresent(entity -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_edit.jsp
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 15.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/transport/Transport.java
state = 4; /* error */ thread = null; throw te; } state = 3; /* Success! */ } } } catch (final InterruptedException ie) { state = 0; thread = null; throw new TransportException(ie); } finally {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.3K bytes - Viewed (0)