- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 366 for EXTRA (0.03 sec)
-
guava/src/com/google/common/primitives/Booleans.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 20.5K bytes - Viewed (0) -
docs/uk/docs/index.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 24.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java
readParameterWordsWireFormat(buffer, bufferIndex + 4); /* * The SMB_COM_NT_CREATE_ANDX response wordCount is wrong. There's an * extra 16 bytes for some "Offline Files (CSC or Client Side Caching)" * junk. We need to bump up the wordCount here so that this method returns
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0) -
docs/es/docs/advanced/custom-response.md
Pero si estás seguro de que el contenido que estás devolviendo es **serializable con JSON**, puedes pasarlo directamente a la clase de response y evitar la sobrecarga extra que FastAPI tendría al pasar tu contenido de retorno a través de `jsonable_encoder` antes de pasarlo a la clase de response. {* ../../docs_src/custom_response/tutorial001b.py hl[2,7] *} /// info | Información
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 12.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/TraverserTest.java
* \ / * d * } */ private static final SuccessorsFunction<Character> DIAMOND_GRAPH = createDirectedGraph("ab", "ac", "bd", "cd"); /** * Same as {@link #DIAMOND_GRAPH}, but with an extra c->a edge and some self edges: * * {@snippet : * a<> * / \\ * b c * \ / * d<> * } * * {@code <>} indicates a self-loop */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 47.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/TraverserTest.java
* \ / * d * } */ private static final SuccessorsFunction<Character> DIAMOND_GRAPH = createDirectedGraph("ab", "ac", "bd", "cd"); /** * Same as {@link #DIAMOND_GRAPH}, but with an extra c->a edge and some self edges: * * {@snippet : * a<> * / \\ * b c * \ / * d<> * } * * {@code <>} indicates a self-loop */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 47.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java
assertTrue(result, "Should return true for valid signature with offset"); } @Test @DisplayName("Should handle extra padding") void testVerifyWithExtraPadding() { // Set signed flag SMBUtil.writeInt4(ServerMessageBlock2.SMB2_FLAGS_SIGNED, data, 16); // Place some signature
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 43.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java
int bytesRead = notification.readBytesWireFormat(buffer, 0); assertEquals(24, bytesRead); } @Test @DisplayName("Should handle buffer with extra data") void testBufferWithExtraData() throws Exception { byte[] buffer = new byte[100]; Arrays.fill(buffer, (byte) 0xFF); // Fill with non-zero values
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/archive/tar/strconv.go
// appropriate length. func formatPAXRecord(k, v string) (string, error) { if !validPAXRecord(k, v) { return "", ErrHeader } const padding = 3 // Extra padding for ' ', '=', and '\n' size := len(k) + len(v) + padding size += len(strconv.Itoa(size)) record := strconv.Itoa(size) + " " + k + "=" + v + "\n"
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Sep 08 17:08:20 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralRequestBufferTest.java
String path = "\\\\server\\share"; buffer = new DfsReferralRequestBuffer(path, 3); int offset = 1000; byte[] dst = new byte[offset + buffer.size() + 100]; // Extra space int bytesEncoded = buffer.encode(dst, offset); assertEquals(buffer.size(), bytesEncoded); // Verify data is at correct offset
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.5K bytes - Viewed (0)