- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 37 for mention (0.16 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractorTest.java
assertFalse("Exception message should not be empty", message.trim().isEmpty()); assertTrue("Exception message should mention 'inputstream'", message.toLowerCase().contains("inputstream")); assertTrue("Exception message should mention 'null'", message.toLowerCase().contains("null")); } } /** * Test that validateInputStream does not modify or consume the stream.
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 8.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ArchiveExtractorErrorHandlingTest.java
try { zipExtractor.getText(invalidStream, null); fail("Expected ExtractException"); } catch (final ExtractException e) { assertTrue("Error message should mention ZIP archive", e.getMessage().contains("ZIP archive")); assertTrue("Error message should indicate failure",Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java
} } @Test public void testConvertWithNumbersAndSymbols() throws IOException { // Test convert with numbers and symbols String text = "123 456.789 #hashtag @mention"; String field = "content"; List<String> results = converter.convert(text, field, "en"); assertNotNull(results); }Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/FileUtilTest.java
try { FileUtil.readBytes(largeFile); fail("Expected IORuntimeException for large file"); } catch (final IORuntimeException e) { assertTrue("Error message should mention file size", e.getMessage().contains("File too large")); } } /** * Test readBytes with file within size limit * * @throws Exception */ @TestRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java
// It could be either "Unexpected number of update indices" or "Unexpected number of search indices" // depending on which check fails first assertTrue("Exception message should mention unexpected indices: " + exceptionMessage, exceptionMessage.contains("Unexpected number of update indices") || exceptionMessage.contains("Unexpected number of search indices"));
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 13.4K bytes - Viewed (0) -
LICENSE
If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Mon Jan 18 20:25:38 UTC 2016 - 25.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/DurableHandleReconnectResponse.java
import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.smb2.create.CreateContextResponse; /** * SMB2 Durable Handle Reconnect Response Create Context * * MS-SMB2 Section 2.2.14.2.5 */ public class DurableHandleReconnectResponse implements CreateContextResponse { /** * Context name for durable handle reconnect response */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/DurableHandleResponse.java
package jcifs.internal.smb2.persistent; import jcifs.internal.SMBProtocolDecodingException; import jcifs.internal.smb2.create.CreateContextResponse; /** * SMB2 Durable Handle Response Create Context * * MS-SMB2 Section 2.2.14.2.3 */ public class DurableHandleResponse implements CreateContextResponse { /** * Context name for durable handle response */ public static final String CONTEXT_NAME = "DHnQ";Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformation.java
/* windows98 has what appears to be another 4 0's followed by the share * name as a zero terminated ascii string "\TMP" + '\0' * * As is this works, but it deviates from the spec section 4.1.6.6 but * maybe I should put it in. Wonder what NT does? */ return dstIndex - start; } @Override int writeDataWireFormat(final byte[] dst, final int dstIndex) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/DurableHandleRequest.java
*/ package jcifs.internal.smb2.persistent; import jcifs.internal.smb2.create.CreateContextRequest; import jcifs.internal.util.SMBUtil; /** * SMB2 Durable Handle Request Create Context (DHnQ) * * MS-SMB2 Section 2.2.13.2.3 */ public class DurableHandleRequest implements CreateContextRequest { /** * Context name for durable handle request */ public static final String CONTEXT_NAME = "DHnQ";
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 2.6K bytes - Viewed (0)