- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 150 for tago (0.07 sec)
-
src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java
suggestHelper.addElevateWord("test", "reading", new String[] { "tag1" }, new String[] { "role1" }, 1.0f, true); assertTrue(true); } catch (Exception e) { assertTrue(true); } } public void test_addElevateWord_noReading() { try { suggestHelper.addElevateWord("test word", null, new String[] { "tag1" }, new String[] { "role1" }, 1.0f, true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16K bytes - Viewed (0) -
docs/en/docs/how-to/general.md
## Documentation Tags - OpenAPI { #documentation-tags-openapi } To add tags to your *path operations*, and group them in the docs UI, read the docs for [Tutorial - Path Operation Configurations - Tags](../tutorial/path-operation-configuration.md#tags){.internal-link target=_blank}.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# Number of fragments for query highlighting. query.highlight.number.of.fragments=2 # Type of query highlighting. query.highlight.type=fvh # Tag to use before highlighted text. query.highlight.tag.pre=<strong> # Tag to use after highlighted text. query.highlight.tag.post=</strong> # Boundary characters for query highlighting. query.highlight.boundary.chars=u0009u000Au0013u0020 # Maximum scan for query highlight boundaries.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
/** * Creates a new PrunedTag instance with the specified tag name. * * @param tag the HTML tag name to match (e.g., "div", "span", "p") */ public PrunedTag(final String tag) { this.tag = tag; } /** * Checks if this pruned tag configuration matches the given DOM node. * The matching is based on tag name, and optionally ID, CSS class, or custom attributes. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/resources/osdd/osdd.xml
<?xml version="1.0" encoding="UTF-8"?> <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"> <ShortName>Fess</ShortName> <Description>Full Text Search for Your Documents.</Description> <Tags>Full Text Search</Tags> <Contact>******@****.***</Contact> <SearchForm>http://localhost:8080/fess/</SearchForm> <Url type="text/html" template="http://localhost:8080/fess/search?q={searchTerms}"/> <InputEncoding>UTF-8</InputEncoding>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 08 05:17:08 UTC 2024 - 535 bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerAdapter.kt
return buffer.readByteString() } /** * Returns an adapter that expects this value wrapped by another value. Typically this occurs * when a value has both a context or application tag and a universal tag. * * Use this for EXPLICIT tag types: * * ``` * [5] EXPLICIT UTF8String * ``` * * @param forceConstructed non-null to set the constructed bit to the specified value, even if the
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/config/openapi/openapi-user.yaml
servers: - url: http://localhost:8080/api/v1 tags: - name: search description: Search operations - name: popularword description: Popular word operations - name: monitor description: Monitoring operations - name: suggest description: Suggest operations - name: favorite description: Favorite operations paths: /documents: get: tags: - search
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu May 09 06:31:27 UTC 2024 - 21.6K bytes - Viewed (0) -
docs/en/docs/tutorial/body-nested-models.md
So, in our example, we can make `tags` be specifically a "list of strings": {* ../../docs_src/body_nested_models/tutorial002_py310.py hl[12] *} ## Set types { #set-types } But then we think about it, and realize that tags shouldn't repeat, they would probably be unique strings. And Python has a special data type for sets of unique items, the `set`. Then we can declare `tags` as a set of strings:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.3K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/android/AndroidLog.kt
} fun enable() { try { for ((logger, tag) in knownLoggers) { enableLogging(logger, tag) } } catch (re: RuntimeException) { System.err.println("Possibly running android unit test without robolectric") re.printStackTrace() } } private fun enableLogging( logger: String, tag: String, ) { val logger = Logger.getLogger(logger)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 22 20:03:31 UTC 2025 - 4K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt
tagClass = header.tagClass, tag = header.tag, constructed = header.constructed, length = header.length, bytes = bytes, ) } } override fun toDer( writer: DerWriter, value: AnyValue, ) { writer.write("ANY", value.tagClass, value.tag) { writer.writeOctetString(value.bytes)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 15K bytes - Viewed (0)