- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 516 for succeed (0.05 sec)
-
cmd/sts-handlers.go
return } // It is required that parent user be set. if res.Success.User == "" { writeSTSErrorResponse(ctx, w, ErrSTSUpstreamError, errors.New("A valid user was not returned by the authenticator.")) return } // Expiry is set as minimum of requested value and value allowed by auth // plugin. expiry := res.Success.MaxValiditySeconds if durationParam != "" && requestedDuration < expiry {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 16 12:54:35 UTC 2023 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/role/ApiAdminRoleAction.java
} /** * Deletes a role setting by ID. * * @param id the ID of the role setting to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/role/setting/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String id) { final Role entity = roleService.getRole(id).orElseGet(() -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7K bytes - Viewed (0) -
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) -
src/main/java/jcifs/smb1/UniAddress.java
} return addrs; // Success default: throw new UnknownHostException(hostname); } final UniAddress[] addrs = new UniAddress[1]; addrs[0] = new UniAddress(addr); return addrs; // Success } catch (final IOException ioe) { // Failure }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketHttpTest.kt
// Send messages until the client's outgoing buffer overflows! val message: ByteString = ByteString.of(*ByteArray(1024 * 1024)) var messageCount: Long = 0 while (true) { val success = webSocket.send(message) if (!success) break messageCount++ val queueSize = webSocket.queueSize() assertThat(queueSize).isBetween(0L, messageCount * message.size) // Expect to fail before enqueueing 32 MiB.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 35.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRpcMessage.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 5.5K 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) -
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) -
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)