- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for setLive (2.27 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java
} /** * Gets the live streaming flag. * @return the live value */ public String getLive() { return live; } /** * Sets the live streaming flag. * @param live the live value to set */ public void setLive(final String live) { this.live = live; } @Override public String toString() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestTest.java
request.setIndex("test-index"); request.setSize(20); request.setSeed("test-seed"); request.setWindowSize(30); request.setQueryFreqThreshold(5); assertNotNull(request); } @Test public void test_addTag() throws Exception { indexQueryItems(); PopularWordsResponse response = suggester.popularWords().setSize(10).addTag("tag1").execute().getResponse();
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestBuilder.java
} /** * Sets the size of results for the request. * @param size The size. * @return This builder instance. */ public PopularWordsRequestBuilder setSize(final int size) { request.setSize(size); return this; } /** * Adds a tag to filter by. * @param tag The tag. * @return This builder instance. */Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequestBuilder.java
} /** * Sets the size of results for the request. * @param size The size. * @return This builder instance. */ public SuggestRequestBuilder setSize(final int size) { request.setSize(size); return this; } /** * Sets the query string for the request. * @param query The query string. * @return This builder instance. */Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 4.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/request/suggest/SuggestRequestBuilderTest.java
assertNotNull(response); } @Test public void test_setSize() throws Exception { indexItems(); SuggestResponse response = suggester.suggest().setSize(5).execute().getResponse(); assertNotNull(response); } @Test public void test_setQuery() throws Exception { indexItems();Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java
} /** * Converts an SmbException to an IOException. * * @param se the SmbException to convert * @return the resulting IOException */ protected IOException seToIoe(final SmbException se) { IOException ioe = se; Throwable root = se.getRootCause(); if (root instanceof TransportException) { ioe = (TransportException) root;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.4K bytes - Viewed (0) -
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) -
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) -
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/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)