- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 114 for textui (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
* * <p>Note: This class is not intended to be instantiated. * * @see TextNormalizeContext */ public final class TextUtil { private static final Logger logger = LogManager.getLogger(TextUtil.class); private TextUtil() { } /** * This class provides a context for normalizing text. */ public static class TextNormalizeContext { private final Reader reader;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
queryContext.addHighlightedQuery("text"); // Should not throw exception } // Test addHighlightedQuery with valid set public void test_addHighlightedQuery_validSet() { queryContext = new QueryContext("test", true); queryContext.addHighlightedQuery("text1"); queryContext.addHighlightedQuery("text2"); queryContext.addHighlightedQuery("text1"); // Duplicate
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java
assertEquals("ftp://localhost:10021/dir2", urlList.get(1)); assertEquals("ftp://localhost:10021/text 3.txt", urlList.get(2)); assertEquals("ftp://localhost:10021/text1.txt", urlList.get(3)); assertEquals("ftp://localhost:10021/text2.txt", urlList.get(4)); } finally { if (server != null) { server.stop(); } }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 18K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
final String text = new String(ch, start, length); if (logger.isDebugEnabled()) { logger.debug("Text: {}", text); } textBuf.append(text); } /** * Parses and filters URL patterns from text based on protocol types. * Processes each line of the input text, filtering URLs based on web and file protocol support. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
/** * Construct a SID from it's textual representation such as * {@code S-1-5-21-1496946806-2192648263-3843101252-1029}. * * @param textual the textual representation of the SID * @throws SmbException if the textual format is invalid */ public SID(final String textual) throws SmbException { final StringTokenizer st = new StringTokenizer(textual, "-");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
/** * Construct a SID from it's textual representation such as * {@code S-1-5-21-1496946806-2192648263-3843101252-1029}. * * @param textual the textual representation of the SID * @throws SmbException if the textual format is invalid */ public SID(final String textual) throws SmbException { final StringTokenizer st = new StringTokenizer(textual, "-");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/BigDecimalMathTest.java
new RoundToDoubleTester(BigDecimal.valueOf((1L << 53) + 1)) .setExpectation(twoToThe53, DOWN, FLOOR, HALF_DOWN, HALF_EVEN) .setExpectation(Math.nextUp(twoToThe53), CEILING, UP, HALF_UP) .roundUnnecessaryShouldThrow() .test(); } public void testRoundToDouble_twoToThe54PlusOne() { double twoToThe54 = Math.pow(2, 54);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDTest.java
class BasicTests { @Test @DisplayName("Textual constructor happy path and toString consistency") void testTextualConstructorAndToString() throws Exception { // Arrange SID sid = new SID("S-1-5-21-1-2-3-1029"); // Act & Assert // toString should reconstruct exact textual form assertEquals("S-1-5-21-1-2-3-1029", sid.toString());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SIDCacheImplTest.java
import jcifs.dcerpc.msrpc.lsarpc; @ExtendWith(MockitoExtension.class) class SIDCacheImplTest { // Helper to create a SID from text without throwing in the test body private static SID sid(String textual) { try { return new SID(textual); } catch (SmbException e) { throw new RuntimeException(e); } } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImplTest.java
} public void test_getContentType_content() throws IOException { assertContentType("text/plain", "test/text1.txt", "hoge.txt"); assertContentType("text/plain", null, "hoge.txt"); assertContentType("text/html", "html/test1.html", "hoge.html"); assertContentType("text/html", "html/test1.html", "hoge.htm");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 11.6K bytes - Viewed (0)