- Sort Score
- Result 10 results
- Languages All
Results 901 - 910 of 1,124 for Turning (0.04 sec)
-
docs/ko/docs/advanced/events.md
`FastAPI` 애플리케이션의 `lifespan` 매개변수는 **비동기 컨텍스트 매니저**를 받기 때문에, 새로운 `lifespan` 비동기 컨텍스트 매니저를 FastAPI에 전달할 수 있습니다. {* ../../docs_src/events/tutorial003.py hl[22] *} ## 대체 이벤트 (사용 중단) /// warning | 경고 *시작*과 *종료*를 처리하는 권장 방법은 위에서 설명한 대로 `FastAPI` 애플리케이션의 `lifespan` 매개변수를 사용하는 것입니다. `lifespan` 매개변수를 제공하면 `startup`과 `shutdown` 이벤트 핸들러는 더 이상 호출되지 않습니다. `lifespan`을 사용할지, 모든 이벤트를 사용할지 선택해야 하며 둘 다 사용할 수는 없습니다.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:33:53 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileOutputStream.java
} /** * Initialize the output stream with the tree handle configuration. * * @param th the tree handle to use for configuration * @throws CIFSException if an error occurs during initialization */ protected final void init(final SmbTreeHandleImpl th) throws CIFSException { final int sendBufferSize = th.getSendBufferSize(); if (this.smb2) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java
* * <p>It also handles the exclusion of search words based on certain criteria and manages the * maximum length of analyzed content.</p> * * <p>Methods in this class may throw SuggesterException in case of failures during the parsing process.</p> * * <p>Usage example:</p> * <pre> * {@code * DefaultContentsParser parser = new DefaultContentsParser();
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 15.4K bytes - Viewed (0) -
src/test/java/jcifs/SmbSessionTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/AndXServerMessageBlockTest.java
block.digest = digest; byte[] buf = new byte[256]; int len = block.encode(buf, 0); assertTrue(len > 0); assertTrue(digest.called, "sign() should be called during encode"); assertEquals(len, digest.lastLength); } @Test @DisplayName("writeAndXWireFormat without andx writes 0xFF and sentinel offset") void testWriteAndXWireFormatWithoutAndx() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectResponseTest.java
assertEquals("Structure size != 4", exception.getMessage()); } } } @Test @DisplayName("Should not modify buffer during write operation") void testWriteDoesNotModifyBuffer() { // Given byte[] buffer = new byte[256]; // Fill buffer with test pattern for (int i = 0; i < buffer.length; i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java
*/ protected abstract void doReceiveFragment(byte[] buf, boolean isDirect) throws IOException; /** * Closes this DCERPC handle and releases resources * @throws IOException if an I/O error occurs during close */ public abstract void close() throws IOException;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java
* the maximum number of duplicated paths to attempt, and the character set for encoding the file path. * </p> * * <p> * It handles potential exceptions during file creation and storage, throwing * {@link org.codelibs.fess.crawler.exception.CrawlerSystemException} in case of errors. * </p> * * <p>
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 11.7K bytes - Viewed (0) -
docs/distributed/DESIGN.md
> http://host2/export8 ``` *A noticeable trait of this expansion is that it chooses unique hosts such the setup provides maximum protection and availability.* - Choosing an erasure set for the object is decided during `PutObject()`, object names are used to find the right erasure set using the following pseudo code. ```go // hashes the key returning an integer. func sipHashMod(key string, cardinality int, id [16]byte) int {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Feb 26 09:25:50 UTC 2025 - 8K bytes - Viewed (2) -
guava/src/com/google/common/collect/Iterables.java
* iterable}. The iterator's {@code hasNext()} method returns {@code true} until {@code iterable} * is empty. * * <p><b>Warning:</b> Typical uses of the resulting iterator may produce an infinite loop. You * should use an explicit {@code break} or be certain that you will eventually remove all the * elements. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 43.3K bytes - Viewed (0)