- Sort Score
- Result 10 results
- Languages All
Results 1741 - 1750 of 1,983 for Long (0.03 sec)
-
src/test/java/jcifs/http/NtlmServletTest.java
@ExtendWith(MockitoExtension.class) class NtlmServletTest { // A concrete implementation of the abstract NtlmServlet for testing purposes. private static class TestNtlmServlet extends NtlmServlet { private static final long serialVersionUID = 1L; @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { // Do nothing - just for testing }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.5K bytes - Viewed (0) -
cmd/api-headers.go
// of =?UTF-8?B?w7Y=?=. This mirrors errors like the ä½ in another string. // // S3 uses B-encoding (Base64) for non-ASCII-heavy metadata and Q-encoding // (quoted-printable) for mostly ASCII strings. Long strings are split at word // boundaries to fit RFC 2047’s 75-character limit, ensuring HTTP parser // compatibility. // // However, this splitting increases header size and can introduce errors, unlike Go’s
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java
* @param id the entry ID * @return HTML response for the details page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse details(final String dictId, final int crudMode, final long id) { verifyCrudMode(crudMode, CrudMode.DETAILS, dictId); saveToken(); return asDetailsHtml().useForm(EditForm.class, op -> { op.setup(form -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.3K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java
private final int n; private final String delimiters; private final boolean expand; private final boolean ignoreCase; private final SynonymLoader synonymLoader; private long lastModified; private SynonymMap synonymMap = null; private FST.Arc<BytesRef> scratchArc; private FST<BytesRef> fst; private FST.BytesReader fstReader;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 17K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
assertNull(languageHelper.getSupportedLanguage(" ja")); } // Mock classes private static class MockFessConfig extends FessConfig.SimpleImpl { private static final long serialVersionUID = 1L; @Override public String[] getIndexerLanguageFieldsAsArray() { return new String[] { "title", "content" }; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileInputStreamTest.java
// Reflectively inspect the private 'offset' field to assert it used the advanced fp Field offField = Smb2ReadRequest.class.getDeclaredField("offset"); offField.setAccessible(true); long offVal = offField.getLong(req); assertEquals(2L, offVal, "Request offset should match skipped bytes"); } @Test @DisplayName("read(byte[]) delegates to read(byte[],off,len)")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/ReadingConverterTest.java
assertEquals(1, readings.size()); assertEquals(" TEST \n\t TEXT ", readings.get(0)); } @Test public void testConvertWithLongText() throws IOException { // Test convert with long text converter.init(); StringBuilder sb = new StringBuilder(); for (int i = 0; i < 1000; i++) { sb.append("word").append(i).append(" "); }
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 13.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java
final ZipEntry entry = new ZipEntry(id + "/" + filePath.getFileName().toString()); try { zos.putNextEntry(entry); final long len = Files.copy(filePath, zos); if (logger.isDebugEnabled()) { logger.debug("{}: {}", filePath.getFileName(), len); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
CharMappingItem item2 = result.get(1); assertArrayEquals(new String[] { "中", "文" }, item2.getInputs()); assertEquals("字", item2.getOutput()); } // Test with very long input line public void test_veryLongLine() throws Exception { StringBuilder sb = new StringBuilder(); for (int i = 0; i < 100; i++) { if (i > 0) sb.append(",");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java
SameIntegerInstance that = (SameIntegerInstance) obj; return i == that.i; } return false; } } static class SameLongInstance { private final Long i; public SameLongInstance(Long i) { this.i = checkNotNull(i); } @Override public int hashCode() { return i.hashCode(); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 36.2K bytes - Viewed (0)