Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 506 for remain (0.05 sec)

  1. src/main/java/jcifs/internal/smb2/io/Smb2WriteRequest.java

            if (dstIndex + this.dataLength > dst.length) {
                throw new IllegalArgumentException(
                        String.format("Data exceeds buffer size ( remain buffer: %d data length: %d)", dst.length - dstIndex, this.dataLength));
            }
    
            System.arraycopy(this.data, this.dataOffset, dst, dstIndex, this.dataLength);
            dstIndex += this.dataLength;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/HandlerTest.java

            // Assert
            assertEquals("smb", url.getProtocol());
            assertEquals(SmbConstants.DEFAULT_PORT, url.getPort(), "Default port applied for root smb URL");
            assertNull(url.getRef(), "Ref should remain null for root URL");
        }
    
        @Test
        @DisplayName("parseURL: fragment is moved into path and ref cleared")
        void testParseURL_FragmentMovedToPath() throws MalformedURLException {
            // Arrange & Act
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/escape/Escapers.java

        private Builder() {}
    
        /**
         * Sets the safe range of characters for the escaper. Characters in this range that have no
         * explicit replacement are considered 'safe' and remain unescaped in the output. If {@code
         * safeMax < safeMin} then the safe range is empty.
         *
         * @param safeMin the lowest 'safe' character
         * @param safeMax the highest 'safe' character
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java

                // Given
                byte[] buffer = new byte[60];
                SMBUtil.writeInt2(60, buffer, 0); // Structure size
                // All other values remain zero
    
                // When
                int bytesRead = response.readBytesWireFormat(buffer, 0);
    
                // Then
                assertEquals(60, bytesRead);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java

                // This is consistent with the actual implementation behavior
                // The reserved bytes remain as they were in the buffer
                for (int i = 0; i < 4; i++) {
                    assertEquals((byte) 0xFF, buffer[startIndex + SOURCE_KEY_SIZE + 4 + i],
                            "Reserved byte at position " + i + " should remain unchanged");
                }
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java

            doc.put("content", "コンテンツ");
    
            languageHelper.updateDocument(doc);
    
            assertEquals("ja", doc.get("lang"));
            assertEquals("既存のタイトル", doc.get("title_ja")); // Should remain unchanged
            assertEquals("コンテンツ", doc.get("content_ja"));
        }
    
        public void test_detectLanguage_blank() {
            assertNull(languageHelper.detectLanguage(null));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/SmbFileInputStreamTest.java

                assertEquals(0x12345 & 0xFFFF, req.getMaxCount(), "maxCount should contain lower 16 bits");
                assertEquals(0x12345, req.getMinCount(), "minCount should remain original full value");
            }
    
            @Test
            @DisplayName("Named pipe request uses fixed 1024 hints")
            void namedPipeRequestHints() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectResponseTest.java

            // When
            int bytesWritten = response.writeBytesWireFormat(buffer, 10);
    
            // Then
            assertEquals(0, bytesWritten);
            assertArrayEquals(originalBuffer, buffer); // Buffer should remain unchanged
        }
    
        @Test
        @DisplayName("Should handle null configuration gracefully")
        void testNullConfiguration() {
            // When - constructor accepts null config without throwing
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/generate-clients.md

    By ✨ [**sponsoring FastAPI**](../help-fastapi.md#sponsor-the-author){.internal-link target=_blank} ✨, these companies help ensure the framework and its **ecosystem** remain healthy and **sustainable**.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java

            assertFalse(d.getParametersDone(), "parametersDone should be false for partial read");
            assertFalse(d.getDataDone(), "dataDone should be false for partial read");
            assertTrue(d.getHasMore(), "hasMore should remain true for partial read");
        }
    
        /**
         * Test scenario with no data to read
         */
        @Test
        public void readBytesWireFormat_noData_succeeds() {
            DummyResponse d = new DummyResponse();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12K bytes
    - Viewed (0)
Back to top