- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 3,215 for ulong (0.12 sec)
-
src/main/java/org/codelibs/fess/util/QueryResponseList.java
protected int currentPageNumber; protected long allRecordCount; protected String allRecordCountRelation; protected int allPageCount; protected boolean existNextPage; protected boolean existPrevPage; protected long currentStartRecordNumber; protected long currentEndRecordNumber; protected List<String> pageNumberList;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
} } protected static long getLimitDocNum(final long total, final long limitPercentage, final long limitNumber) { final long percentNum = (long) (total * (limitPercentage / 100f)); if (limitNumber < 0) { return percentNum; } return percentNum < limitNumber ? percentNum : limitNumber; } protected long getTotal() {
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 7.5K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/ConnectionEvent.kt
} data class ConnectionClosed( override val timestampNs: Long, override val connection: Connection, ) : ConnectionEvent() data class ConnectionAcquired( override val timestampNs: Long, override val connection: Connection, val call: Call, ) : ConnectionEvent() data class ConnectionReleased( override val timestampNs: Long, override val connection: Connection, val call: Call,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 2.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/ContentLengthHelper.java
/** * @author shinsuke * */ public class ContentLengthHelper { protected long defaultMaxLength = 10L * 1024L * 1024L;// 10M protected Map<String, Long> maxLengthMap = new HashMap<>(); public void addMaxLength(final String mimeType, final long maxLength) { if (StringUtil.isBlank(mimeType)) { throw new CrawlerSystemException("MIME type is a blank."); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/ConverterTest.java
@GwtCompatible(emulated = true) public class ConverterTest extends TestCase { private static final Converter<String, Long> STR_TO_LONG = new Converter<String, Long>() { @Override protected Long doForward(String object) { return Long.valueOf(object); } @Override protected String doBackward(Long object) { return String.valueOf(object); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 01 16:09:28 UTC 2024 - 8K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/Progress.java
} return bufferedSource; } private Source source(Source source) { return new ForwardingSource(source) { long totalBytesRead = 0L; @Override public long read(Buffer sink, long byteCount) throws IOException { long bytesRead = super.read(sink, byteCount); // read() returns the number of bytes read, or -1 if this source is exhausted.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 12 03:31:36 UTC 2019 - 3.9K bytes - Viewed (0) -
android/guava/src/com/google/common/math/DoubleUtils.java
// Double#doubleToRawLongBits(double)} spec. static final long SIGNIFICAND_MASK = 0x000fffffffffffffL; // The mask for the exponent, according to the {@link // Double#doubleToRawLongBits(double)} spec. static final long EXPONENT_MASK = 0x7ff0000000000000L; // The mask for the sign, according to the {@link // Double#doubleToRawLongBits(double)} spec. static final long SIGN_MASK = 0x8000000000000000L;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/MemoryUtil.java
} public static String getMemoryUsageLog() { final Runtime runtime = Runtime.getRuntime(); final long freeBytes = runtime.freeMemory(); final long maxBytes = runtime.maxMemory(); final long totalBytes = runtime.totalMemory(); final long usedBytes = totalBytes - freeBytes;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/interval/FessIntervalController.java
this.delayMillisAtNoUrlInQueue = delayMillisAtNoUrlInQueue; } public long getDelayMillisBeforeProcessing() { return delayMillisBeforeProcessing; } public void setDelayMillisBeforeProcessing(final long delayMillisBeforeProcessing) { this.delayMillisBeforeProcessing = delayMillisBeforeProcessing; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
@Resource protected SystemHelper systemHelper; @Resource protected IndexingHelper indexingHelper; protected boolean finishCrawling = false; protected long executeTime; protected long documentSize; protected int maxIndexerErrorCount = 0; protected int maxErrorCount = 2; protected List<String> finishedSessionIdList = new ArrayList<>();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 24.2K bytes - Viewed (0)