- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 325 for cleanUp (0.09 sec)
-
docs/es/docs/tutorial/dependencies/dependencies-with-yield.md
# Dependencias con yield FastAPI admite dependencias que realizan algunos <abbr title='sometimes also called "exit code", "cleanup code", "teardown code", "closing code", "context manager exit code", etc.'>pasos adicionales después de finalizar</abbr>. Para hacer esto, usa `yield` en lugar de `return` y escribe los pasos adicionales (código) después. /// tip | Consejo Asegúrate de usar `yield` una sola vez por dependencia. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 13K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.23.md
- [Changelog since v1.23.14](#changelog-since-v12314) - [Changes by Kind](#changes-by-kind-2) - [Feature](#feature-2) - [Bug or Regression](#bug-or-regression-2) - [Other (Cleanup or Flake)](#other-cleanup-or-flake) - [Dependencies](#dependencies-2) - [Added](#added-2) - [Changed](#changed-2) - [Removed](#removed-2) - [v1.23.14](#v12314) - [Downloads for v1.23.14](#downloads-for-v12314)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 28 21:06:52 UTC 2023 - 424.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
labelList = new ArrayList<>(); labelType = null; } /** * SAX event handler called at the end of document parsing. * Cleans up internal data structures used during parsing. * * @throws SAXException if a SAX error occurs during cleanup */ @Override public void endDocument() throws SAXException { globalParams.clear(); tagQueue.clear(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
assertEquals(liveCount, originalMap.size()); // can't compare map contents until cleanup occurs for (int i = 1; i <= originalCount * 2; i *= 2) { if (i > 1) { segment.expand(); } assertEquals(i, segment.table.length()); assertEquals(liveCount, countLiveEntries(map, 0)); // expansion cleanup is sloppy, with a goal of avoiding unnecessary copies
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 110.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
th.close(); } else { // Let connection pooling handle cleanup - this improves performance // for scenarios where the same file or directory is accessed multiple times log.trace("Tree handle released to connection pool for reuse"); // The connection pool will handle cleanup based on its own timeout settings } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
@Override public StatsObject load(final String key) { return new StatsObject(); } }); } /** * Cleanup method called when the helper is being destroyed. * Logs cache statistics and processes any remaining statistics * objects in the cache before shutdown. */ @PreDestroy public void destroy() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
totalRequests, totalChannelsCreated); } } /** * Cleanup and shutdown the multi-channel manager. */ public void shutdown() { log.info("Shutting down MultiChannelManager"); // Close all channels
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/jcifs/netbios/LmhostsTest.java
// Should handle IOException gracefully and return null NbtAddress result = lmhosts.getByName("ANYHOST", mockContext); assertNull(result); } // Cleanup lmhostsFile.setReadable(true); } @Test void testPopulateDirectCall() throws Exception { // Test direct populate call for code coverage
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.2K bytes - Viewed (0) -
cmd/local-locker_test.go
t.Fatalf("lockUID len, got %d, want %d + %d", len(l.lockUID), len(rResources), len(wResources)) } // Expire a minute ago. l.expireOldLocks(-time.Minute) if len(l.lockMap) != 0 { t.Fatalf("after cleanup should be empty, got %d", len(l.lockMap)) } if len(l.lockUID) != 0 { t.Fatalf("lockUID len, got %d, want %d", len(l.lockUID), 0) } } func TestLocalLockerUnlock(t *testing.T) { const n = 1000
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 11.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.24.md
- [Changes by Kind](#changes-by-kind-3) - [API Change](#api-change) - [Feature](#feature-3) - [Bug or Regression](#bug-or-regression-3) - [Other (Cleanup or Flake)](#other-cleanup-or-flake) - [Dependencies](#dependencies-3) - [Added](#added-3) - [Changed](#changed-3) - [Removed](#removed-3) - [v1.24.13](#v12413) - [Downloads for v1.24.13](#downloads-for-v12413)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Aug 24 00:02:43 UTC 2023 - 473.4K bytes - Viewed (0)