- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 145 for infer (0.02 sec)
-
src/test/java/jcifs/smb1/smb1/SmbComNegotiateResponseTest.java
private SmbTransport.ServerData serverData; private SmbComNegotiateResponse response; @BeforeEach void setUp() throws UnknownHostException { // To instantiate the non-static inner class ServerData, we need an instance of the outer class SmbTransport. UniAddress uniAddress = new UniAddress(InetAddress.getByName("127.0.0.1")); SmbTransport transport = new SmbTransport(uniAddress, 445, null, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareEnumTest.java
srvsvc.ShareInfo1 shareInfo1 = new srvsvc.ShareInfo1(); shareInfo1.netname = "TestShare"; shareInfo1.type = 0; shareInfo1.remark = "Test remark"; // Test MsrpcShareInfo1 inner class MsrpcShareEnum.MsrpcShareInfo1 msrpcShareInfo1 = new MsrpcShareEnum(TEST_SERVER_NAME).new MsrpcShareInfo1(shareInfo1); assertNotNull(msrpcShareInfo1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java
logError("Error updating file", e); } } return true; } /** * Gets the fully qualified class name for a type element, including handling inner classes. * * @param typeElement the type element to get the class name for * @return the fully qualified class name */ private String getFullClassName(TypeElement typeElement) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
} } @Override public String toString() { return "StopwordsFile [path=" + path + ", stopwordsItemList=" + stopwordsItemList + ", id=" + id + "]"; } /** * An inner class for updating the stopwords file. * This class handles the process of writing changes to a temporary file * and then replacing the original file upon successful commit. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/BooleanQueryCommandTest.java
assertNull(result); } // Test convertBooleanQuery with nested BooleanQuery public void test_convertBooleanQuery_withNestedBooleanQuery() { // Create inner BooleanQuery BooleanQuery.Builder innerBoolQueryBuilder = new BooleanQuery.Builder(); TermQuery innerTermQuery = new TermQuery(new Term("innerField", "innerValue"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
callback.store(params, booleanData); // Test with nested map Map<String, Object> nestedData = new HashMap<>(); Map<String, String> innerMap = new HashMap<>(); innerMap.put("inner", "value"); nestedData.put("nested", innerMap); callback.store(params, nestedData); assertEquals(4L, callback.getDocumentSize()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/HMACT64Test.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java
// Test with nested exceptions String url = "http://example.com/test"; String message = "Outer error message"; Exception innerCause = new IllegalArgumentException("Inner cause"); Exception middleCause = new IllegalStateException("Middle cause", innerCause); Exception outerCause = new RuntimeException("Outer cause", middleCause);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/jcifs/SmbResourceLocator.java
* @throws CIFSException if the address cannot be resolved */ Address getAddress() throws CIFSException; /** * Determines whether this resource represents an IPC (Inter-Process Communication) connection. * * @return whether this is a IPC connection */ boolean isIPC(); /** * Returns type of of object this <code>SmbFile</code> represents. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0)