- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 354 for SUCCESS (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java
} /** * Deletes a web authentication setting by ID. * * @param id the ID of the web authentication setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/webauth/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { webAuthService.getWebAuthentication(id).ifPresent(entity -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/webapp/js/search.js
'url("' + contextPath + '/images/loading.gif")' ); loadImage(this, $(this).attr("data-src"), IMG_LOADING_MAX); }); clipboard = new ClipboardJS(".url-copy"); clipboard.on("success", function(e) { e.trigger.classList.remove("url-copy"); e.trigger.classList.remove("far"); e.trigger.classList.remove("fa-copy"); e.trigger.classList.add("url-copied"); e.trigger.classList.add("fas");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 7.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CertificatePinner.kt
"sha256" -> { if (sha256 == null) sha256 = peerCertificate.sha256Hash() if (pin.hash == sha256) return // Success! } "sha1" -> { if (sha1 == null) sha1 = peerCertificate.sha1Hash() if (pin.hash == sha1) return // Success! } else -> throw AssertionError("unsupported hashAlgorithm: ${pin.hashAlgorithm}") } } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 14.1K bytes - Viewed (0) -
tests/hooks_test.go
p := Product5{Name: "unique_code"} DB.Model(&Product5{}).Create(&p) err := DB.Model(&Product5{}).Where("id", p.ID).Update("name", "update_name_1").Error if err != nil { t.Fatalf("should update success, but got err %v", err) } if beforeUpdateCall != 1 { t.Fatalf("before update should be called") } err = DB.Model(Product5{}).Where("id", p.ID).Update("name", "update_name_2").Error
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jun 17 03:59:06 UTC 2024 - 16.7K bytes - Viewed (0) -
cmd/object-multipart-handlers.go
if res.ChecksumType != "" { w.Header().Set(xhttp.AmzChecksumType, res.ChecksumType) } } encodedSuccessResponse := encodeResponse(response) // Write success response. writeSuccessResponseXML(w, encodedSuccessResponse) } // CopyObjectPartHandler - uploads a part by copying data from an existing object as data source.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Sep 07 16:13:09 UTC 2025 - 39.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt
} server.enqueue(MockResponse(body = "Success!")) val credential = basic("jesse", "secret") client = client .newBuilder() .authenticator(RecordingOkAuthenticator(credential, null)) .build() executeSynchronously("/") .assertCode(200) .assertBody("Success!") } @Test fun doesNotAttemptAuthorization21Times() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 146.6K bytes - Viewed (0) -
src/main/java/jcifs/util/AuthenticationRateLimiter.java
windowStart = now; } recentAttempts.incrementAndGet(); lastAttempt = now; } void recordSuccess() { // Reduce counter on success to allow recovery recentAttempts.updateAndGet(val -> Math.max(0, val - 1)); } void reset() { recentAttempts.set(0); blocked.set(false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
* * This method handles the primary SSO authentication flow. It checks if a user * is already logged in, attempts SSO authentication, and handles various * authentication scenarios including success, failure, and challenge responses. * * @return ActionResponse directing to the appropriate page based on authentication result */ @Execute public ActionResponse index() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/ApiAdminWebconfigAction.java
} /** * Deletes a web configuration setting by ID. * * @param id the ID of the web configuration setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/webconfig/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { webConfigService.getWebConfig(id).ifPresent(entity -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog.jsp
</c:when> <c:when test="${data.jobStatus == 'running'}"> <span class="badge bg-success"><la:message key="labels.joblog_status_running"/></span> </c:when>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 11.4K bytes - Viewed (0)