- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for mellom (0.05 sec)
-
src/test/java/org/codelibs/core/crypto/CachedCipherTest.java
public class CachedCipherTest { @Test public void testEncryptDecryptBytes() { final CachedCipher cipher = new CachedCipher(); cipher.setKey("mySecretKey"); final byte[] original = "Hello World".getBytes(); final byte[] encrypted = cipher.encrypt(original); final byte[] decrypted = cipher.decrypt(encrypted); assertThat(encrypted, is(not(original)));Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 5.3K bytes - Viewed (0) -
fess-crawler/src/test/resources/extractor/markdown/test.md
- Lists and other formatting ### Code Examples Here is some inline `code` and a code block: ```java public class Example { public static void main(String[] args) { System.out.println("Hello, World!"); } } ``` ## Links Check out [Fess Crawler](https://github.com/codelibs/fess-crawler) for more information. ## ConclusionRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 03:46:53 UTC 2025 - 767 bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStreamTest.java
byte[] data = "Hello World".getBytes(); InputStream underlyingStream = new ByteArrayInputStream(data); IgnoreCloseInputStream stream = new IgnoreCloseInputStream(underlyingStream); byte[] buffer = new byte[5]; int bytesRead = stream.read(buffer); assertEquals(5, bytesRead); assertEquals("Hello", new String(buffer)); }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 6.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TextExtractorEnhancedTest.java
} /** * Test extraction with various Unicode characters. */ public void test_getText_unicodeContent_extractsCorrectly() { final String unicodeContent = "Hello 世界 مرحبا мир שלום"; final InputStream in = new ByteArrayInputStream(unicodeContent.getBytes()); final ExtractData result = textExtractor.getText(in, null); assertNotNull(result);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/core/misc/Base64UtilTest.java
* Test encode/decode round trip with various data * * @throws Exception */ public void testEncodeDecode_RoundTrip() throws Exception { // Test with ASCII text final String text = "Hello, World!"; final byte[] textBytes = text.getBytes("UTF-8"); final String encoded = Base64Util.encode(textBytes); final byte[] decoded = Base64Util.decode(encoded);Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 6K bytes - Viewed (0) -
fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlFilterServiceTest.java
settingsBuilder.put("http.cors.enabled", true); settingsBuilder.put("discovery.type", "single-node"); }).build(newConfigs().clusterName(clusterName).numOfNode(1)); // wait for yellow status runner.ensureYellow(); System.setProperty(FesenClient.HTTP_ADDRESS, "localhost:" + runner.node().settings().get("http.port", "9201")); super.setUp(); } @Override
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
@Test public void testEncodingSpecialCharacters() { CurlRequest request = new CurlRequest(Method.GET, "https://example.com"); // Test encoding of special characters request.param("query", "hello world & more"); request.param("special", "ñ€±"); // Should not throw exception assertNotNull(request); } @Test public void testUnsupportedEncodingThrowsException() {Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Mon Nov 24 03:10:07 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/crypto/CachedCipher.java
* </ul> * <p> * <strong>Usage Example:</strong> * </p> * <pre> * CachedCipher cipher = new CachedCipher(); * cipher.setKey("mySecretKey"); * * // Encrypt text * String encrypted = cipher.encryptText("Hello World"); * * // Decrypt text * String decrypted = cipher.decryptText(encrypted); * * // For AES encryption * CachedCipher aesCipher = new CachedCipher(); * aesCipher.setAlgorithm("AES");
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 15.9K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
*/ public boolean connected() { return connected; } /** * Connects to the OpenSearch cluster. * Creates a new client and waits for cluster health to be yellow or better. */ public void connect() { destroy(); client = createClient(); final String[] indices = targetIndices != null ? targetIndices : new String[0];Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 02:01:26 UTC 2025 - 26.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 122.4K bytes - Viewed (1)