- Sort Score
- Result 10 results
- Languages All
Results 1561 - 1570 of 2,083 for instance1 (0.05 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java
*/ protected volatile boolean isInit = false; /** * The MinIO client instance for interacting with object storage. */ protected MinioClient minioClient; /** * Creates a new StorageClient instance. */ public StorageClient() { super(); } @Override public synchronized void init() {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 17.9K bytes - Viewed (2) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleTest.java
TestRule rule2 = new TestRule("rule2", sharedProcessor, false); TestRule rule3 = new TestRule("rule3", sharedProcessor, true); // Same processor instance assertSame(sharedProcessor, rule1.getResponseProcessor()); assertSame(sharedProcessor, rule2.getResponseProcessor()); assertSame(sharedProcessor, rule3.getResponseProcessor());
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 22.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
assertTrue("Method may not exist in this version", true); } else if (e instanceof java.lang.NoSuchMethodException) { assertTrue("Method may not exist in this version", true); } else if (e instanceof java.lang.reflect.InvocationTargetException) { // Method exists but failed to execute, which is acceptable in test environment
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 26.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
Smb2ReadRequest readRequest = new Smb2ReadRequest(mockConfig, testFileId, buffer, 100); assertNotNull(readRequest); assertTrue(readRequest instanceof ServerMessageBlock2Request); assertTrue(readRequest instanceof RequestWithFileId); } @Test @DisplayName("Should initialize with SMB2_READ command") void testCommandInitialization() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
Map<String, Object> retrievedDoc = result.getDocumentList().get(0); assertEquals("complex", retrievedDoc.get("id")); assertTrue(retrievedDoc.get("nested") instanceof Map); assertTrue(retrievedDoc.get("list") instanceof List); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
return (T) method.invoke(target, args); } catch (final InvocationTargetException ex) { final Throwable t = ex.getCause(); if (t instanceof RuntimeException) { throw (RuntimeException) t; } if (t instanceof Error) { throw (Error) t; } throw new InvocationTargetRuntimeException(method.getDeclaringClass(), ex);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
// Verify parent class initialization assertNotNull(msrpcShareGetInfo.info); assertTrue(msrpcShareGetInfo.info instanceof srvsvc.ShareInfo502); assertEquals(502, msrpcShareGetInfo.level); assertEquals(testServer, msrpcShareGetInfo.servername); assertEquals(testSharename, msrpcShareGetInfo.sharename); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java
client.setAccessTimeout(1); try { client.doGet("smb://localhost/test.txt"); fail(); } catch (CrawlingAccessException e) { assertTrue(e.getCause() instanceof InterruptedException); } } public void test_doHead_accessTimeoutTarget() { SmbClient client = new SmbClient() { @Override
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 13.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientExceptionTest.java
// Verify the exception can be created (serialVersionUID is defined in the class) assertNotNull(exception); assertTrue(exception instanceof java.io.Serializable); } public void test_stackTrace() { // Test that stack trace is properly captured String message = "Stack trace test";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingMapEntry.java
* #equals(Object)} to forward to this implementation. * * @since 7.0 */ protected boolean standardEquals(@Nullable Object object) { if (object instanceof Entry) { Entry<?, ?> that = (Entry<?, ?>) object; return Objects.equals(this.getKey(), that.getKey()) && Objects.equals(this.getValue(), that.getValue()); } return false; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 17:32:30 UTC 2025 - 4.3K bytes - Viewed (0)