- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 58 for jorn (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/dict/synonym/SynonymItem.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java
final String jwtClaim = "{\"sub\":\"user123\",\"name\":\"John Doe\",\"email\":\"john@example.com\"}"; final Map<String, Object> attributes = new HashMap<>(); authenticator.parseJwtClaim(jwtClaim, attributes); assertEquals("user123", attributes.get("sub")); assertEquals("John Doe", attributes.get("name")); assertEquals("john@example.com", attributes.get("email")); } @TestCreated: 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/util/JobProcessTest.java
JobProcess jobProcess = new JobProcess(mockProcess, 100, callback); InputStreamThread thread = jobProcess.getInputStreamThread(); thread.start(); thread.join(1000); assertEquals(2, callbackResults.size()); assertEquals("integration test", callbackResults.get(0)); assertEquals("second line", callbackResults.get(1));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 8.8K bytes - Click Count (0) -
.teamcity/scripts/FindCommits.java
if (r.exitCode != 0) { throw new AssertionError(String.join(" ", cmd) + " failed: " + r); } } private static String stdout(String... cmd) throws IOException, InterruptedException { ExecResult r = exec(cmd); if (r.exitCode != 0) { throw new AssertionError(String.join(" ", cmd) + " failed: " + r); } return r.stdout; }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jan 20 03:53:25 GMT 2026 - 5.5K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/UpgradePropertiesRulePostProcess.java
return accessor.getBinaryCompatibility() == BinaryCompatibility.ACCESSORS_KEPT; }); if (!keptAccessors.isEmpty()) { String formattedLeft = CollectionUtils.join("\n", keptAccessors.keySet()); throw new RuntimeException("The following accessors were upgraded, but didn't match any removed/changed method:\n\n" + formattedLeft); }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Aug 19 15:30:48 GMT 2024 - 3.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java
* * @return The stopword as a string. */ public String toLineString() { if (isUpdated()) { return StringUtils.join(newInput); } return StringUtils.join(input); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 3.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
value = "\"John Doe\",\"Software Engineer\",\"john******@****.***\",\"Loves \"\"coding\"\" and coffee\""; result = KuromojiCSVUtil.parse(value); assertEquals(4, result.length); assertEquals("John Doe", result[0]); assertEquals("Software Engineer", result[1]); assertEquals("john******@****.***", result[2]);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 18.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java
* @return the string representation of this item */ public String toLineString() { if (isUpdated()) { return StringUtils.join(newInput); } return StringUtils.join(input); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 3.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 19.7K bytes - Click Count (0)