- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 782 for updated1 (0.07 sec)
-
CHANGELOG/CHANGELOG-1.18.md
### Other (Cleanup or Flake) - Build: Update Debian base images - debian-base:v2.1.3 - debian-iptables:v12.1.2 - debian-hyperkube-base:v1.1.3 ([#93754](https://github.com/kubernetes/kubernetes/pull/93754), [@justaugustus](https://github.com/justaugustus)) [SIG API Machinery, Cluster Lifecycle, Release and Testing] - Update Golang to v1.13.14 - Update bazel to 2.2.0 - Update repo-infra to 0.0.8 (to support go1.14.6 and go1.13.14)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Jun 16 17:18:28 UTC 2021 - 373.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.13.md
- The default Go version was updated to 1.11.2. ([#70665](https://github.com/kubernetes/kubernetes/pull/70665)) - The minimum supported Go version was updated to 1.11.2 ([#69386](https://github.com/kubernetes/kubernetes/pull/69386)) - CNI is unchanged at v0.6.0 since Kubernetes 1.10 ([#51250](https://github.com/kubernetes/kubernetes/pull/51250))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 273.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/role/ApiAdminRoleAction.java
return asJson(new ApiResult.ApiUpdateResponse().id(entity.getId()).created(true).status(ApiResult.Status.OK).result()); } /** * Updates an existing role setting. * * @param body the role data to update * @return JSON response containing the updated role setting ID */ // PUT /api/admin/role/setting @Execute public JsonResponse<ApiResult> put$setting(final EditBody body) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
} // PUT /api/admin/fileauth/setting /** * Updates an existing file authentication setting. * * @param body file authentication setting data to update * @return JSON response with updated setting ID and status */ @Execute public JsonResponse<ApiResult> put$setting(final EditBody body) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
updateItem.setNewOutput("o"); charMappingFile.update(updateItem); // Verify the update OptionalEntity<CharMappingItem> updated = charMappingFile.get(1L); assertTrue(updated.isPresent()); CharMappingItem item = updated.get(); assertArrayEquals(new String[] { "m", "n" }, item.getInputs()); assertEquals("o", item.getOutput()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
} // PUT /api/admin/elevateword/setting /** * Updates an existing elevate word setting. * Refreshes all elevate words in the suggest helper to maintain consistency. * * @param body elevate word setting data to update * @return JSON response with updated setting ID and status */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.8K bytes - Viewed (0) -
guava/src/com/google/common/hash/ChecksumHashFunction.java
return toString; } /** Hasher that updates a checksum. */ private final class ChecksumHasher extends AbstractByteHasher { private final Checksum checksum; private ChecksumHasher(Checksum checksum) { this.checksum = checkNotNull(checksum); } @Override protected void update(byte b) { checksum.update(b); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java
return asJson(new ApiUpdateResponse().id(keyMatch.getId()).created(true).status(Status.OK).result()); } /** * Updates an existing key match setting. * * @param body the key match data to update * @return JSON response containing the updated key match setting ID */ // PUT /api/admin/keymatch/setting @Execute
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/test/java/jcifs/smb1/smb1/SmbComWriteTest.java
assertEquals((int) offset, getFieldValue(write, "offset"), "Offset should be updated"); assertEquals(remaining, getFieldValue(write, "remaining"), "Remaining should be updated"); assertEquals(buffer, getFieldValue(write, "b"), "Buffer should be updated"); assertEquals(off, getFieldValue(write, "off"), "Off should be updated");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
}); return redirect(getClass()); } /** * Updates an existing web crawler configuration. * * @param form the edit form containing the updated web config data * @return HTML response redirecting to the list page after update */ @Execute @Secured({ ROLE }) public HtmlResponse update(final EditForm form) { verifyCrudMode(form.crudMode, CrudMode.EDIT);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21K bytes - Viewed (0)