- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 104 for detector (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/LanguageHelper.java
return l; } } return null; } /** * Sets the language detector. * * @param detector The language detector. */ public void setDetector(final LanguageDetector detector) { this.detector = detector; } /** * Creates a script for updating a document with language information. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
doc.put("content", "xyz"); // Without a real detector, this will throw NullPointerException try { languageHelper.updateDocument(doc); fail("Should throw NullPointerException without detector"); } catch (NullPointerException e) { // Expected since we don't have a detector } } public void test_updateDocument_emptyDoc() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/resources/fess.xml
<include path="esflute_log.xml"/> <component name="curlHelper" class="org.codelibs.fess.helper.CurlHelper"> </component> <component name="languageHelper" class="org.codelibs.fess.helper.LanguageHelper"> <property name="detector"> <component class="org.apache.tika.langdetect.optimaize.OptimaizeLangDetector"> <postConstruct name="loadModels"></postConstruct> </component> </property> </component>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jul 28 09:03:48 UTC 2024 - 5.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.8.md
- For all kinds in the API group version, a spec.selector default value is no longer available, because it's incompatible with `kubectl apply` and strategic merge patch. You must explicitly set the spec.selector value in your manifest. An object with a spec.selector value that does not match the labels in its spec.template is invalid. - Selector mutation is disabled for all kinds in the
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.16.md
- kube-proxy addon starts to use the label `node.kubernetes.io/kube-proxy-ds-ready` instead of `beta.kubernetes.io/kube-proxy-ds-ready` as its node selector. - metadata-proxy addon starts to use the label `cloud.google.com/metadata-proxy-ready` instead of `beta.kubernetes.io/metadata-proxy-ready` as its node selector. #### Storage
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Oct 23 20:13:20 UTC 2024 - 345.2K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java
* to check for a cycle that reaches the lock to be acquired. If no cycle is detected, a new * "safe" edge is created. * <li>If a cycle is detected, an "unsafe" (cyclic) edge is created to represent a potential * deadlock situation, and the appropriate Policy is executed. * </ul> * * <p>Note that detection of potential deadlock does not necessarily indicate that deadlock will
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 18 15:05:43 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/BaseApiManager.java
request.setAttribute(API_FORMAT_TYPE, formatType); return formatType; } /** * Detects the format type from the request parameters. * @param request The HTTP servlet request. * @return The detected format type. */ protected FormatType detectFormatType(final HttpServletRequest request) { String value = request.getParameter("type");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserAgentHelper.java
* The method analyzes the User-Agent header to categorize the browser type * and caches the result in the request attribute for subsequent calls. * * @return the detected user agent type, or OTHER if no specific type is detected */ public UserAgentType getUserAgentType() { return LaRequestUtil.getOptionalRequest().map(request -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
docs/changelogs/changelog_4x.md
* Fix: Use literal IP addresses directly rather than passing them to `DnsOverHttps`. * Fix: Embed Proguard rules to prevent warnings from tools like DexGuard and R8. These warnings were triggered by OkHttp’s feature detection for TLS packages like `org.conscrypt`, `org.bouncycastle`, and `org.openjsse`. * Upgrade: Explicitly depend on `kotlin-stdlib-jdk8`. This fixes a problem with dependency
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Apr 17 13:25:31 UTC 2024 - 25.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSet.java
} maxRunBeforeFallback = maxRunBeforeFallback(newTableSize); expandTableThreshold = (int) (DESIRED_LOAD_FACTOR * newTableSize); } /** * We attempt to detect deliberate hash flooding attempts. If one is detected, we fall back to a * wrapper around j.u.HashSet, which has built-in flooding protection. MAX_RUN_MULTIPLIER was * determined experimentally to match our desired probability of false positives.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.2K bytes - Viewed (0)