- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for hello_world (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java
@Test public void test_decodeBase64_urlSafe() { // Base64 URL encoding (uses - and _ instead of + and /) final byte[] result = authenticator.decodeBase64("SGVsbG9Xb3JsZA"); assertEquals("HelloWorld", new String(result)); } @Test public void test_decodeBase64_withPadding() { // Standard Base64 with padding final byte[] result = authenticator.decodeBase64("dGVzdA==");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 11K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java
public void test_evaluate_stringOperations() { final Map<String, Object> params = new HashMap<>(); params.put("first", "Hello"); params.put("second", "World"); assertEquals("HelloWorld", groovyEngine.evaluate("return first + second", params)); assertEquals("HELLO", groovyEngine.evaluate("return first.toUpperCase()", params)); assertEquals(5, groovyEngine.evaluate("return first.length()", params));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 29.1K bytes - Click Count (0)