- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 476 for successor (0.13 sec)
-
docs/smb3-features/03-multi-channel-design.md
public void recordOperation(String channelId, long bytes, long latency, boolean success) { ChannelStatistics stats = channelStats.computeIfAbsent(channelId, k -> new ChannelStatistics()); stats.operations.incrementAndGet(); stats.latencyTotal.addAndGet(latency); if (success) { stats.bytesReceived.addAndGet(bytes); } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig_edit.jsp
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 9.6K 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/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) -
cmd/erasure-sets.go
----------------- - All Unformatted - format all and return success. - Some Unformatted - format all and return success. - Any JBOD inconsistent - return failure - Some are corrupt (missing format.json) - return failure - Any unrecognized disks - return failure Some disks are offline and we have quorum. ----------------- - Some unformatted - format all and return success, treat disks offline as corrupted.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 37K bytes - Viewed (1) -
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) -
guava/src/com/google/common/hash/LittleEndianByteArray.java
} }; @Override public boolean usesFastPath() { return true; } /* * non-private so that our `-source 8` build doesn't need to generate a synthetic accessor * method, whose mention of VarHandle would upset WriteReplaceOverridesTest under Java 8. */ static final VarHandle HANDLE = byteArrayViewVarHandle(long[].class, LITTLE_ENDIAN); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/ApiAdminReqheaderAction.java
} /** * Deletes a request header setting by ID. * * @param id the ID of the request header setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/reqheader/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { reqHeaderService.getRequestHeader(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/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) -
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)