Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 338 for charactersOf (0.12 sec)

  1. src/test/java/jcifs/netbios/NameServiceClientImplTest.java

        @DisplayName("Should handle invalid NetBIOS name quickly")
        @Timeout(value = 1, unit = TimeUnit.SECONDS) // Very short timeout
        void testGetNbtByNameInvalid() {
            // When/Then - Should fail quickly with invalid characters
            assertThrows(Exception.class, () -> {
                nameServiceClient.getNbtByName("INVALID@#$%NAME");
            }, "Should throw exception for invalid NetBIOS name");
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/fscc/FileRenameInformation2Test.java

            assertEquals(unicodeFileName, decodedName);
            assertEquals(20 + nameLength, bytesWritten);
        }
    
        @Test
        @DisplayName("Test with special characters in filename")
        void testWithSpecialCharactersInFilename() throws SMBProtocolDecodingException {
            String specialFileName = "file!@#$%^&*().txt";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/Constants.java

        // Query Reserved Characters and Patterns
        // ============================================================
    
        /** Array of reserved characters for query processing. */
        public static final String[] RESERVED =
                { "\\", "+", "-", "&&", "||", "!", "(", ")", "{", "}", "[", "]", "^", "~", "*", "?", ";", ":", "/" };
    
        /** Pattern for detecting reserved characters in Lucene field queries. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/FacetResponseTest.java

            assertEquals(unicodeString, decoded);
        }
    
        public void test_special_characters_base64_encoding() {
            // Test that special characters are properly encoded/decoded
            String specialString = "******@****.***";
            String encoded = BaseEncoding.base64().encode(specialString.getBytes(StandardCharsets.UTF_8));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt

            },
        )
    
      /**
       * Permits alphanumerics, spaces, and these:
       *
       * ```
       *   ' () + , - . / : = ?
       * ```
       *
       * TODO(jwilson): constrain to printable string characters.
       */
      val PRINTABLE_STRING =
        BasicDerAdapter(
          name = "PRINTABLE STRING",
          tagClass = DerHeader.TAG_CLASS_UNIVERSAL,
          tag = 19L,
          codec =
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/com/ServerDataTest.java

            serverData.oemDomainName = null;
            assertNull(serverData.oemDomainName);
    
            // Test with special characters
            serverData.oemDomainName = "DOMAIN-01.LOCAL";
            assertEquals("DOMAIN-01.LOCAL", serverData.oemDomainName);
    
            // Test with Unicode characters
            serverData.oemDomainName = "ドメイン";
            assertEquals("ドメイン", serverData.oemDomainName);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java

            // Test with file path containing special characters
            Path tempDir = Files.createTempDirectory("test-スレッドダンプ-dir");
            Path tempFile = tempDir.resolve("thread-dump-テスト.txt");
    
            try {
                ThreadDumpUtil.writeThreadDump(tempFile.toString());
    
                assertTrue("File with special characters should be created", Files.exists(tempFile));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/SambaHelperTest.java

                @Override
                public String getCanonicalLdapName(String name) {
                    return name;
                }
            });
            sambaHelper.init();
    
            // Test with Turkish locale characters that have special lowercase rules
            assertEquals("1üser", sambaHelper.getAccountId(createMockSID(1, "Üser")));
        }
    
        public void test_getAccountId_exception_handling() throws SmbException {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/request-files.md

    * `write(data)`: Writes `data` (`str` or `bytes`) to the file.
    * `read(size)`: Reads `size` (`int`) bytes/characters of the file.
    * `seek(offset)`: Goes to the byte position `offset` (`int`) in the file.
        * E.g., `await myfile.seek(0)` would go to the start of the file.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/job/JobExecutorTest.java

            assertEquals("Executed: groovy println 'test'", result);
        }
    
        public void test_execute_specialCharacters() {
            // Test scripts with special characters
            Object result = jobExecutor.execute("test", "script with\nnewline");
            assertEquals("Executed: test script with\nnewline", result);
    
            result = jobExecutor.execute("test", "script with\ttab");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
Back to top