- Sort Score
- Result 10 results
- Languages All
Results 971 - 980 of 1,341 for SYSTEM (0.48 sec)
-
src/main/java/org/codelibs/fess/suggest/settings/ElevateWordSettings.java
import org.codelibs.fess.suggest.entity.ElevateWord; import org.opensearch.transport.client.Client; /** * The ElevateWordSettings class manages the settings for elevate words in the suggestion system. * It provides methods to retrieve, add, and delete elevate words from the settings. * * <p>Constants:</p> * <ul> * <li>{@code ELEVATE_WORD_SETTINGD_KEY} - The key for elevate word settings.</li>
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
/** * Helper class for document processing and manipulation in the Fess search system. * This class provides utilities for processing document content, titles, and digests, * handling text normalization, content extraction, and similar document hash encoding/decoding. * It also manages document processing requests and integrates with the crawler system. * */ public class DocumentHelper {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/EventBus.java
* designed exclusively to replace traditional Java in-process event distribution using explicit * registration. It is not a general-purpose publish-subscribe system, nor is it intended * for interprocess communication. * * <h2>Receiving Events</h2> * * <p>To receive events, an object should: * * <ol>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 12.7K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java
lsarpc.LsarOpenPolicy2 openPolicy2 = new lsarpc.LsarOpenPolicy2("system", mockObjAttr, 1, mockPolicyHandle); openPolicy2.encode_in(mockNdrBuffer); verify(mockNdrBuffer).enc_ndr_referent("system", 1); verify(mockNdrBuffer).enc_ndr_string("system"); verify(mockObjAttr).encode(mockNdrBuffer); verify(mockNdrBuffer).enc_ndr_long(1); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 60.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/SsoManager.java
if (ComponentUtil.hasComponent(name)) { return ComponentUtil.getComponent(name); } return null; } /** * Gets the configured SSO type from the system configuration. * * @return The SSO type string from configuration */ protected String getSsoType() { return ComponentUtil.getFessConfig().getSsoType(); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java
dstIndex += 4; final int bufferOffsetOffset = dstIndex; dstIndex += 4; SMBUtil.writeInt4(this.additionalInformation, dst, dstIndex); dstIndex += 4; System.arraycopy(this.fileId, 0, dst, dstIndex, 16); dstIndex += 16; SMBUtil.writeInt2(dstIndex - getHeaderStart(), dst, bufferOffsetOffset); final int len = this.info.encode(dst, dstIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
} System.arraycopy(Strings.getUNIBytes(str), 0, dst, dstIndex, str.length() * 2); dstIndex += str.length() * 2; dst[dstIndex] = (byte) '\0'; dstIndex++; dst[dstIndex++] = (byte) '\0'; } else { final byte[] b = Strings.getOEMBytes(str, this.getConfig()); System.arraycopy(b, 0, dst, dstIndex, b.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/Invokable.java
TypeVariable<?>[] result = new TypeVariable<?>[declaredByClass.length + declaredByConstructor.length]; System.arraycopy(declaredByClass, 0, result, 0, declaredByClass.length); System.arraycopy( declaredByConstructor, 0, result, declaredByClass.length, declaredByConstructor.length); return result; } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 18.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dict/kuromoji/admin_dict_kuromoji.jsp
<div class="wrapper"> <jsp:include page="/WEB-INF/view/common/admin/header.jsp"></jsp:include> <jsp:include page="/WEB-INF/view/common/admin/sidebar.jsp"> <jsp:param name="menuCategoryType" value="system"/> <jsp:param name="menuType" value="dict"/> </jsp:include> <div class="content-wrapper"> <div class="content-header"> <div class="container-fluid">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Mar 27 06:24:23 UTC 2020 - 10.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java
assertNull(e.getCause()); } } public void test_throwAndCatchWithCause() { // Test throwing and catching the exception with cause String expectedMessage = "System error occurred"; Exception expectedCause = new IllegalStateException("Invalid state"); try { throw new FessSystemException(expectedMessage, expectedCause);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.4K bytes - Viewed (0)