- Sort Score
- Result 10 results
- Languages All
Results 971 - 980 of 1,507 for system (0.05 sec)
-
android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java
import static com.google.common.util.concurrent.SequentialExecutor.WorkerRunningState.QUEUING; import static com.google.common.util.concurrent.SequentialExecutor.WorkerRunningState.RUNNING; import static java.lang.System.identityHashCode; import com.google.common.annotations.GwtIncompatible; import com.google.common.annotations.J2ktIncompatible; import com.google.common.base.Preconditions;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
this.pageNumberList = pageNumberList; } /** * Gets the default page size from the Fess configuration. * * @return the default page size configured in the system */ protected int getDefaultPageSize() { return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/DataStoreExceptionTest.java
DataStoreException withNPE = new DataStoreException("NPE Error", new NullPointerException("Null value")); DataStoreException withCustom = new DataStoreException("Custom Error", new FessSystemException("System error")); assertTrue(withIOException.getCause() instanceof java.io.IOException); assertTrue(withNPE.getCause() instanceof NullPointerException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_details.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="scheduler"/> </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: Wed Feb 12 20:25:27 UTC 2020 - 12K bytes - Viewed (0) -
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)