- Sort Score
- Result 10 results
- Languages All
Results 431 - 440 of 4,058 for finally (0.83 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
} return ":" + firstFailedProject.getArtifactId(); } protected static final Pattern NEXT_LINE = Pattern.compile("\r?\n"); protected static final Pattern LAST_ANSI_SEQUENCE = Pattern.compile("(\u001B\\[[;\\d]*[ -/]*[@-~])[^\u001B]*$"); protected static final String ANSI_RESET = "\u001B\u005Bm"; protected void logSummary(Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 11 17:20:46 UTC 2025 - 28.2K bytes - Viewed (0) -
docs/ja/docs/tutorial/dependencies/dependencies-with-yield.md
例えば、途中のどこかの時点で、別の依存関係や*path operation*の中で、データベーストランザクションを「ロールバック」したり、その他のエラーを作成したりするコードがあった場合、依存関係の中で例外を受け取ることになります。 そのため、依存関係の中にある特定の例外を`except SomeException`で探すことができます。 同様に、`finally`を用いて例外があったかどうかにかかわらず、終了ステップを確実に実行することができます。 {* ../../docs_src/dependencies/tutorial007.py hl[3,5] *} ## `yield`を持つサブ依存関係 任意の大きさや形のサブ依存関係やサブ依存関係の「ツリー」を持つことができ、その中で`yield`を使用することができます。Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 12.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Queues.java
if (e == null) { break; // we already waited enough, and there are no more elements in sight } buffer.add(e); added++; } } } finally { if (interrupted) { Thread.currentThread().interrupt(); } } return added; } /**
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Nov 04 17:24:58 UTC 2025 - 18.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
*/ protected boolean bucketExists(final String name) { try { final HeadBucketRequest request = HeadBucketRequest.builder().bucket(name).build(); awsS3Client.headBucket(request); return true; } catch (final NoSuchBucketException e) { return false; } catch (final Exception e) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 21.4K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
@Override public ExplainRequestBuilder prepareExplain(final String index, final String id) { return client.prepareExplain(index, id); } @Override public ActionFuture<ExplainResponse> explain(final ExplainRequest request) { return client.explain(request); } @Override public void explain(final ExplainRequest request, final ActionListener<ExplainResponse> listener) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 02:01:26 UTC 2025 - 26.2K bytes - Viewed (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
*/ HALF_OPEN } private final String name; private final AtomicReference<State> state = new AtomicReference<>(State.CLOSED); private final AtomicInteger failureCount = new AtomicInteger(0); private final AtomicInteger successCount = new AtomicInteger(0); private final AtomicLong lastFailureTime = new AtomicLong(0);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java
} } catch (Exception e) { context.failure("Failed to apply inference optimizations" + ": " + e.getMessage()); errorPoms.add(pomPath); } finally { context.unindent(); } } return new UpgradeResult(processedPoms, modifiedPoms, errorPoms); } /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 27.6K bytes - Viewed (0) -
docs/en/docs/tutorial/sql-databases.md
Next, we create a `HeroPublic` model, this is the one that will be **returned** to the clients of the API. It has the same fields as `HeroBase`, so it won't include `secret_name`. Finally, the identity of our heroes is protected! 🥷
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 02 05:06:56 UTC 2025 - 15.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/Queues.java
if (e == null) { break; // we already waited enough, and there are no more elements in sight } buffer.add(e); added++; } } } finally { if (interrupted) { Thread.currentThread().interrupt(); } } return added; } /**
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Nov 04 17:24:58 UTC 2025 - 18K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
private static final long serialVersionUID = 1L; private final String path; private final HandleGuid createGuid; private final byte[] fileId; private final HandleType type; private final long timeout; private final long createTime; private volatile long lastAccessTime; private final Smb2LeaseKey leaseKey; // Associated lease if anyRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0)