- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 42 for fragments (0.39 sec)
-
src/main/java/org/codelibs/fess/entity/HighlightInfo.java
} /** * Gets the number of fragments. * * @return the maximum number of highlighted fragments */ public int getNumOfFragments() { return numOfFragments; } /** * Sets the number of fragments with fluent interface. * * @param numOfFragments the maximum number of highlighted fragments * @return this HighlightInfo instance for method chaining
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
/** * Creates highlighted text from highlight field fragments. * * @param highlightField the highlight field containing fragments * @return the combined highlighted text */ public String createHighlightText(final HighlightField highlightField) { final Text[] fragments = highlightField.fragments(); if (fragments != null && fragments.length != 0) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
ViewHelper.TextFragment[] fragments = new ViewHelper.TextFragment[2]; fragments[0] = new ViewHelper.TextFragment(null, "test", null, null); fragments[1] = new ViewHelper.TextFragment(null, "example", null, null); document.put("text_fragments", fragments); String result = viewHelper.appendHTMLSearchWord(document, url);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 27.3K bytes - Viewed (0) -
src/main/webapp/js/admin/popper.min.js.map
regex addresses values with the plus or minus sign in front (+10, -20, etc)\n const fragments = offset.split(/(\\+|\\-)/).map(frag => frag.trim());\n\n // Detect if the offset string contains a pair of values or a single one\n // they could be separated by comma or space\n const divider = fragments.indexOf(\n find(fragments, frag => frag.search(/,|\\s/) !== -1)\n );\n\n if (fragments[divider] && fragments[divider].indexOf(',') === -1) {\n console.warn(\n 'Offsets separated by white...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 120.9K bytes - Viewed (0) -
guava/src/com/google/common/net/UrlEscapers.java
/** * Returns an {@link Escaper} instance that escapes strings so they can be safely included in a <a * href="https://url.spec.whatwg.org/#concept-url-fragment">URL fragment</a>. The returned escaper * escapes all non-ASCII characters. * * <p>When escaping a String, the following rules apply: * * <ul>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 7.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketReader.kt
if (!isControlFrame) { break } readControlFrame() } } /** * Reads a message body into across one or more frames. Control frames that occur between * fragments will be processed. If the message payload is masked this will unmask as it's being * processed. */ @Throws(IOException::class) private fun readMessage() { while (true) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 29 22:04:11 UTC 2025 - 9.9K bytes - Viewed (0) -
android/guava/src/com/google/common/net/UrlEscapers.java
/** * Returns an {@link Escaper} instance that escapes strings so they can be safely included in a <a * href="https://url.spec.whatwg.org/#concept-url-fragment">URL fragment</a>. The returned escaper * escapes all non-ASCII characters. * * <p>When escaping a String, the following rules apply: * * <ul>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 7.1K bytes - Viewed (0) -
gradlew
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' # Collect all arguments for the java command: # * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, # and any embedded shellness will be escaped. # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be # treated as '${Hostname}' itself on the command line.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 8.5K bytes - Viewed (0) -
docs/changelogs/changelog_2x.md
behavior is consistent with Firefox and Chrome. * Fix: Allow a body in `OPTIONS` requests. * Fix: Don't percent-encode non-ASCII characters in URL fragments. * Fix: Handle null fragments. * Fix: Don’t crash on interceptors that throw `IOException` before a connection is attempted. * New: Support [WebDAV][webdav] HTTP methods. * New: Buffer WebSocket frames for better performance.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0) -
src/main/resources/fess_config.properties
query.highlight.boundary.position.detect=true # Type for text fragment in query highlighting. query.highlight.text.fragment.type=query # Size for text fragment in query highlighting. query.highlight.text.fragment.size=3 # Prefix length for text fragment in query highlighting. query.highlight.text.fragment.prefix.length=5 # Suffix length for text fragment in query highlighting. query.highlight.text.fragment.suffix.length=5
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0)