- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 633 for Member (0.03 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttp.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 20:33:04 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/CopyUtil.java
* </p> * * @param in the input stream (must not be {@literal null}) * @param out the output stream (must not be {@literal null}) * @return the number of bytes copied */ public static int copy(final InputStream in, final OutputStream out) { assertArgumentNotNull("in", in); assertArgumentNotNull("out", out);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 45.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/nio/ChannelUtil.java
* * @param channel * The file channel. Must not be {@literal null}. * @param buffer * The byte buffer. Must not be {@literal null}. * @return The number of bytes read. */ public static int read(final FileChannel channel, final ByteBuffer buffer) { assertArgumentNotNull("channel", channel); assertArgumentNotNull("buffer", buffer); try {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
*/ public ApiDeleteResponse() { // NOP } /** * The number of deleted items. */ protected long count = 1; /** * Sets the count of deleted items. * @param count The number of deleted items. * @return The ApiDeleteResponse instance. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
*/ @Size(max = 10) public String incrementalCrawling; /** * Number of days to keep crawled documents before cleanup. * Set to -1 to disable automatic cleanup. */ @Required @Min(-1) @Max(1000) @ValidateTypeFailure public Integer dayForCleanup; /** * Number of threads to use for crawling operations.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/PushObserver.kt
* skipped. * * @param streamId server-initiated stream ID: an even number. * @param source location of data corresponding with this stream ID. * @param byteCount number of bytes to read or skip from the source. * @param last when true, there are no data frames to follow. */ @Throws(IOException::class) fun onData( streamId: Int, source: BufferedSource,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/resources/fess_config.properties
page.user.max.fetch.size=1000 # Maximum number of role records to fetch per page. page.role.max.fetch.size=1000 # Maximum number of group records to fetch per page. page.group.max.fetch.size=1000 # Maximum number of crawling info parameters to fetch per page. page.crawling.info.param.max.fetch.size=100 # Maximum number of crawling info records to fetch per page.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/AutobahnTester.kt
} fun run() { try { val count = getTestCount() println("Test count: $count") for (number in 1..count) { runTest(number, count) } updateReports() } finally { client.dispatcher.executorService.shutdown() } } private fun runTest( number: Long, count: Long, ) { val latch = CountDownLatch(1) val startNanos = AtomicLong()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
private final List<E> parent; /** The total number of pages available. */ protected int allPageCount; /** The total number of records across all pages. */ protected int allRecordCount; /** The number of records per page. */ protected int pageSize; /** The current page number (1-based). */ protected int currentPageNumber;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
*/ public class SearchResult { /** The list of documents returned by the search query. */ protected final List<Map<String, Object>> documentList; /** The total number of records that match the search criteria. */ protected final long allRecordCount; /** The relation type indicating how the record count should be interpreted (e.g., "eq", "gte"). */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0)