- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 658 for entire (0.03 sec)
-
src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java
import org.opensearch.monitor.process.ProcessProbe; /** * This class is a timer target for monitoring system-level statistics. * It collects and logs information about the operating system, process, * JVM, and search engine. */ public class SystemMonitorTarget extends MonitorTarget { private static final Logger logger = LogManager.getLogger(SystemMonitorTarget.class); /** * Constructs a new system monitor target. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/ApiAdminPathmapAction.java
} /** * Creates an edit body from a path mapping entity for API responses. * * @param entity the path mapping entity to convert * @return edit body containing the entity data */ protected EditBody createEditBody(final PathMapping entity) { final EditBody body = new EditBody(); copyBeanToBean(entity, body, op -> op.exclude(Constants.COMMON_CONVERSION_RULE)); return body;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/ApiAdminRelatedcontentAction.java
} /** * Creates an edit body from a related content entity for API responses. * * @param entity the related content entity to convert * @return edit body containing the entity data */ protected EditBody createEditBody(final RelatedContent entity) { final EditBody body = new EditBody(); copyBeanToBean(entity, body, copyOp -> { copyOp.excludeNull(); });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/jcifs/context/SingletonContextTest.java
} @Test void testGetInstanceInitializesIfNull() { // Test getInstance initializes the context if it's null assertNull(getSingletonInstanceViaReflection()); // Ensure it's null initially CIFSContext context = SingletonContext.getInstance(); assertNotNull(context); assertNotNull(getSingletonInstanceViaReflection()); // Should be initialized now }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/RequestBody.kt
* * Because the encoding of interleaved data is not well-defined for HTTP/1, duplex request * bodies may only be used with HTTP/2. Calls to HTTP/1 servers will fail before the HTTP request * is transmitted. If you cannot ensure that your client and server both support HTTP/2, do not * use this feature. * * ### Duplex APIs * * With regular request bodies it is not legal to write bytes to the sink passed to
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 04 17:43:43 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2TransformHeader.java
* * @return byte array containing associated data */ public byte[] getAssociatedData() { final byte[] aad = new byte[52]; // Use full header size to ensure all data fits int index = 0; // Protocol ID SMBUtil.writeInt4(TRANSFORM_PROTOCOL_ID, aad, index); index += 4; // Skip signature (16 bytes of zeros for AAD)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.1K bytes - Viewed (0) -
cmd/bitrot.go
return errFileCorrupt } left -= read if !bytes.Equal(h.Sum(nil), hashBuf[:n]) { return errFileCorrupt } } return nil } // bitrotSelfTest performs a self-test to ensure that bitrot // algorithms compute correct checksums. If any algorithm // produces an incorrect checksum it fails with a hard error. // // bitrotSelfTest tries to catch any issue in the bitrot implementation
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Feb 26 19:26:13 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
throw SmbException.wrap(e); } } /** * @return * @throws SmbException */ synchronized SmbFileHandleImpl ensureOpen() throws CIFSException { // ensure file is open if (this.handle == null || !this.handle.isValid()) { // one extra acquire to keep this open till the stream is released this.handle =
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/JobHelperTest.java
@Override public void insertOrUpdate(JobLog entity) { // Mock implementation that doesn't require client entity.setLastUpdated(System.currentTimeMillis()); } @Override public void insert(JobLog entity) { // Mock implementation that doesn't require client entity.setLastUpdated(System.currentTimeMillis()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
} }); testThread.start(); long startTime = System.currentTimeMillis(); method.invoke(crawler, testThread); long endTime = System.currentTimeMillis(); assertTrue("Thread should have been joined", endTime - startTime >= 100); } // Test destroyContainer private static method via reflection public void test_destroyContainer() throws Exception {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0)