- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 56 for justru (0.05 seconds)
-
build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy
* This is super-hacky: this report is instantiated via {@code newInstance()}, within a different * classloader by {@link JApiCmpWorkerAction}, so there is no way to use a * normal property on the renderer instance and just set the location of the API file in it. * * Instead, we'll encode the path to the file in the description data field, as a link. This isCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jan 22 12:18:18 GMT 2026 - 7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java
} @Test public void test_render_strikethrough() { // Note: This depends on whether the extension is enabled String result = markdownRenderer.render("~~strikethrough~~"); // Just verify it doesn't break assertNotNull(result); } @Test public void test_render_nestedLists() { String markdown = "- Item 1\n - Nested 1\n - Nested 2\n- Item 2";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 11.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java
String expectedValue = "{labels." + expectedValuePart + "}"; // Some fields may have different conventions, so we just check if it starts correctly assertTrue("Field " + field.getName() + " value '" + value + "' should be related to its name", value.startsWith("{labels.")); } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14K bytes - Click Count (0) -
CONTRIBUTING.md
However, if there are no changes for more than a week, it's safe to assume that the issue is up for grabs. There is no need to ask for an assignment or for permission to work on those issues, just comment and start working on it. ## Setting up your development environment In order to make changes to Gradle, you'll need:
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 18:43:39 GMT 2026 - 19.1K bytes - Click Count (0) -
src/main/resources/fess_indices/fess.json
}, "french_elision": { "type": "elision", "articles_case": true, "articles": [ "l", "m", "t", "qu", "n", "s", "j", "d", "c", "jusqu", "quoiqu", "lorsqu", "puisqu" ] }, "french_stop": { "type": "stop", "stopwords_path": "${fess.dictionary.path}fr/stopwords.txt" },Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 07:52:55 GMT 2026 - 40K bytes - Click Count (0) -
src/main/assemblies/files/fess.in.sh
# new generation if [ "x$FESS_HEAP_NEWSIZE" != "x" ]; then FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Xmn${FESS_HEAP_NEWSIZE}" fi # set to headless, just in case FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Djava.awt.headless=true" # maximum # keep-alive connections to maintain at once FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dhttp.maxConnections=20" # Force the JVM to use IPv4 stack
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 03:48:59 GMT 2025 - 5.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
* * @return the logger instance */ Logger getLogger(); /** * Extracts the host name from a URL string. * Removes protocol and path components to return just the hostname. * * @param u the URL string to extract host from * @return the host name, or empty string if URL is blank, or unknown hostname if parsing fails */ default String getHost(final String u) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 14.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java
assertEquals("2001:db8:0:1::1", method.invoke(null, "2001:0db8:0:1:0:0:0:1")); // No compression when all segments are non-zero (just remove leading zeros) assertEquals("2001:db8:1:2:3:4:5:6", method.invoke(null, "2001:0db8:0001:0002:0003:0004:0005:0006")); // Single zero should not be compressed
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 08:31:03 GMT 2025 - 8.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/RenderDataUtilTest.java
public void test_register_arrayList() { RenderData data = new RenderData(); BsUser entity1 = new BsUser(); entity1.setName("user1"); // Test ArrayList specifically (not just List interface) ArrayList<BsUser> arrayList = new ArrayList<>(); arrayList.add(entity1); RenderDataUtil.register(data, "arrayList", arrayList);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java
try { for (int j = 0; j < urlsPerThread; j++) { // Access is synchronized internally in the actual implementation // Here we just verify no concurrent modification exceptions occur String url = "http://example.com/thread" + threadIndex + "/doc" + j; // Simulate the synchronized access that happens in deleteDocument()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)