- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 25 for dcList (0.04 sec)
-
src/main/java/jcifs/http/NtlmHttpFilter.java
if (this.dcList[i] != null) { try { return interrogate(getTransportContext(), this.dcList[i]); } catch (final SmbException se) { log.warn("Failed validate DC: " + this.dcList[i], se); } this.dcList[i] = null; } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocList.java
/** Total processing time for all documents in this list */ private long processingTime = 0; /** * Default constructor for DocList. * Creates a new empty document list with zero content size and processing time. */ public DocList() { super(); } /** * Clears all documents from the list and resets metrics.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocListTest.java
docList.addContentSize(100); assertEquals(100, docList.getContentSize()); docList.addContentSize(-30); assertEquals(70, docList.getContentSize()); docList.addContentSize(-100); assertEquals(-30, docList.getContentSize()); } public void test_addProcessingTime_negative() { DocList docList = new DocList();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper(); final LanguageHelper languageHelper = ComponentUtil.getLanguageHelper(); final List<Map<String, Object>> docList = body.documents.stream().map(doc -> { if (!doc.containsKey(indexFieldContentLength)) { long contentLength = 0; if (doc.get(indexFieldTitle) instanceof final String title) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
ComponentUtil.register(client, "searchEngineClient"); final DocList docList = new DocList(); assertEquals(0, indexingHelper.deleteOldDocuments(client, docList)); assertEquals(0, docList.size()); assertEquals(0, deletedDocIdList.size()); docList.clear(); deletedDocIdList.clear(); docList.add(new HashMap<>(Map.of(// "config_id", "W01", //
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 29.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
synchronized (docList) { docList.add(ingest(paramMap, dataMap)); final long contentSize = indexingHelper.calculateDocumentSize(dataMap); docList.addContentSize(contentSize); final long processingTime = systemHelper.getCurrentTimeAsLong() - startTime; docList.addProcessingTime(processingTime); if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
synchronized (docList) { docList.add(ingest(paramMap, dataMap)); final long contentSize = indexingHelper.calculateDocumentSize(dataMap); docList.addContentSize(contentSize); final long processingTime = systemHelper.getCurrentTimeAsLong() - startTime; docList.addProcessingTime(processingTime);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
* * @param searchEngineClient the search engine client to use for indexing * @param docList the list of documents to be indexed * @throws SearchEngineClientException if the bulk indexing operation fails */ public void sendDocuments(final SearchEngineClient searchEngineClient, final DocList docList) { if (docList.isEmpty()) { return; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
MemoryUtil.byteCountToDisplaySize(contentSize), processingTime, docList.size(), docList.getContentSize()); } if (docList.getContentSize() >= maxDocumentRequestSize) { indexingHelper.sendDocuments(searchEngineClient, docList); } documentSize++; if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
} } final int max = Math.min(dc_list.length, LOOKUP_RESP_LIMIT); for (int j = 0; j < max; j++) { final int i = dc_list_counter++ % max; if (dc_list[i] != null) { try { return interrogate(dc_list[i]); } catch (final SmbException se) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 20.7K bytes - Viewed (0)