- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 51 for setLive (2 sec)
-
src/main/java/org/codelibs/core/convert/CalendarConversionUtil.java
return (Calendar) o; } final java.util.Date date = DateConversionUtil.toDate(o, pattern); if (date != null) { final Calendar cal = Calendar.getInstance(); cal.setTime(date); return cal; } return null; } /** * Converts to a {@link Calendar} with the local {@link TimeZone} and {@link Locale}. * * @param calendar
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ArchiveExtractorErrorHandlingTest.java
// Add a valid text entry final byte[] content1 = "Valid tar content ใในใ".getBytes("UTF-8"); final TarArchiveEntry entry1 = new TarArchiveEntry("valid.txt"); entry1.setSize(content1.length); tos.putArchiveEntry(entry1); tos.write(content1); tos.closeArchiveEntry(); // Add another valid entryRegistered: 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/request/popularwords/PopularWordsRequestBuilderTest.java
assertNotNull(response); } @Test public void test_setSize() throws Exception { indexItems(); PopularWordsResponse response = suggester.popularWords().setSize(5).execute().getResponse(); assertNotNull(response); } @Test public void test_addTag() throws Exception { indexItems();Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 5.1K bytes - Viewed (0) -
README.md
```java import org.codelibs.fess.suggest.request.suggest.SuggestResponse; // Synchronous suggestion request SuggestResponse response = suggester.suggest() .setQuery("sea") // user input .setSize(10) // max suggestions .execute() .getResponse(); // Process suggestions response.getItems().forEach(item -> { System.out.println("Suggestion: " + item.getText()[0]);
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Aug 31 03:31:14 UTC 2025 - 12.1K bytes - Viewed (1) -
src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java
*/ public Object getFile() { return file; } /** * Set the associated file object * @param file the file object */ public void setFile(Object file) { this.file = file; } /** * Update the file ID after successful create response * @param newFileId the new 16-byte file ID */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileInputStream.java
/** * Converts an SmbException to an IOException * * @param se the SmbException to convert * @return an IOException wrapping the SmbException */ protected static IOException seToIoe(final SmbException se) { IOException ioe = se; Throwable root = se.getCause(); if (root instanceof TransportException) { ioe = (TransportException) root;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
.setIndices(indexName) .setScroll(settings.getScrollTimeout()) .setQuery(queryBuilder) .setSize(scrollSize); for (final SortBuilder<?> sortBuilder : sortList) { builder.addSort(sortBuilder); }
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeInputStream.java
fd.markClosed(); return 0; } return resp.getAvailable(); } catch (final SmbException se) { throw seToIoe(se); } } @Override public void close() { // ignore, the shared file descriptor is closed by the pipe handle }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/persistent/HandleInfoTest.java
HandleInfo info = new HandleInfo("/test/file.txt", testGuid, testFileId, HandleType.DURABLE_V2, 120000, null); assertNull(info.getFile()); Object mockFile = new Object(); info.setFile(mockFile); assertEquals(mockFile, info.getFile()); } @Test public void testToString() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractBehavior.java
from = cb.getPageStartIndex(); size = cb.getFetchSize(); } else { from = 0; size = 10; } builder.setFrom(from); builder.setSize(size); final EsAbstractConditionBean esCb = (EsAbstractConditionBean) cb; if (esCb.getPreference() != null) { builder.setPreference(esCb.getPreference()); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 26.4K bytes - Viewed (0)