Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 159 for DOC (0.01 sec)

  1. src/test/java/jcifs/util/InputValidatorTest.java

        }
    
        @ParameterizedTest
        @DisplayName("Test valid SMB paths")
        @ValueSource(strings = { "\\\\server\\share\\file.txt", "folder\\subfolder\\file.doc", "Documents\\Reports\\2024", "file.txt", "" })
        void testValidSmbPaths(String path) {
            assertDoesNotThrow(() -> InputValidator.validateSmbPath(path));
        }
    
        @ParameterizedTest
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  2. docs/features/connections.md

    Since version 5.0, `OkHttpClient` supports fast fallback, which is our implementation of Happy Eyeballs [RFC 6555](https://datatracker.ietf.org/doc/html/rfc6555).
    
    With fast fallback, OkHttp attempts to connect to multiple web servers concurrently. It keeps whichever route connects first and cancels all of the others. Its rules are:
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Feb 21 03:33:59 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  3. src/test/java/jcifs/util/PathValidatorTest.java

            });
        }
    
        @Test
        public void testWindowsReservedLPT() throws Exception {
            assertThrows(SmbException.class, () -> {
                validator.validatePath("\\share\\LPT9.doc");
            });
        }
    
        @Test
        public void testDangerousCharacters() throws Exception {
            assertThrows(SmbException.class, () -> {
                strictValidator.validatePath("\\share\\file<script>.txt");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationTest.java

        }
    
        @Test
        void testToStringWithDifferentPaths() {
            // Test with various path formats
            String[] testPaths = { "simple.txt", "path/to/file.doc", "//server/share/file.txt", "folder\\windows\\style.txt", "" // empty path
            };
    
            for (String path : testPaths) {
                trans2QueryPathInfo = new Trans2QueryPathInformation(config, path, TEST_INFO_LEVEL);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

            assertTrue(fessConfig.isExtensionAllowed("gif"));
            assertTrue(fessConfig.isExtensionAllowed("png"));
            assertFalse(fessConfig.isExtensionAllowed("pdf"));
            assertFalse(fessConfig.isExtensionAllowed("doc"));
        }
    
        // Test available extensions
        public void test_getAvailableExtensions() {
            String[] extensions = fessConfig.getAvailableExtensions();
            assertEquals(4, extensions.length);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.2.md

    Pod’s SELinux context, if specified
      * A stable client library release\_1\_2 is added. The library is [here](pkg/client/clientset_generated/), and detailed doc is [here](docs/devel/generating-clientset.md#released-clientsets). We will keep the interface of this go client stable.
      * New Azure File Service Volume Plugin enables mounting Microsoft Azure File
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImplTest.java

        }
    
        @Test
        @DisplayName("Test decode correctly calculates bytes read")
        void testDecodeBytesReadCalculation() throws SMBProtocolDecodingException {
            String fileName = "test123.doc";
            byte[] buffer = createValidNotificationBuffer(fileName, FileNotifyInformation.FILE_ACTION_ADDED);
    
            int bytesRead = notifyInfo.decode(buffer, 0, buffer.length);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequestTest.java

        void testWildcardPatterns() {
            request = new Smb2QueryDirectoryRequest(mockConfig);
    
            // Test various wildcard patterns
            String[] patterns = { "*", "*.txt", "test*.*", "?test?.doc" };
    
            for (String pattern : patterns) {
                request.setFileName(pattern);
    
                byte[] buffer = new byte[1024];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/com/SmbComRenameTest.java

        public void testWriteBytesWireFormatSpecialCharacters() {
            // Given
            String oldFileName = "file with spaces.txt";
            String newFileName = "file@#$%.doc";
            byte[] dst = new byte[200];
            smbComRename = new SmbComRename(config, oldFileName, newFileName);
            int dstIndex = 0;
    
            // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  10. src/main/resources/fess_config.properties

    # Number of documents per suggestion update request.
    suggest.update.doc.per.request=2
    # Percentage limit for suggestion update contents.
    suggest.update.contents.limit.num.percentage=50%
    # Maximum number of suggestion update contents.
    suggest.update.contents.limit.num=10000
    # Maximum document size for suggestion update.
    suggest.update.contents.limit.doc.size=50000
    # Scroll size for suggestion source reader.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
Back to top