- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 1,909 for Long (0.03 sec)
-
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/LabelTypeDbm.java
false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false); protected final ColumnInfo _columnCreatedTime = cci("createdTime", "createdTime", null, null, Long.class, "createdTime", null, false, false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false); protected final ColumnInfo _columnExcludedPaths = cci("excludedPaths", "excludedPaths", null, null, String.class, "excludedPaths", null,
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java
/** * @return the lastWriteTime */ @Override public final long getLastWriteTime () { return this.lastWriteTime; } /** * {@inheritDoc} * * @see jcifs.internal.SmbBasicFileInfo#getCreateTime() */ @Override public long getCreateTime () { return 0; } /** * {@inheritDoc} *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java
private static final Logger logger = LogManager.getLogger(WebFsIndexHelper.class); private static final String DISABLE_URL_ENCODE = "#DISABLE_URL_ENCODE"; protected long maxAccessCount = Long.MAX_VALUE; protected long crawlingExecutionInterval = Constants.DEFAULT_CRAWLING_EXECUTION_INTERVAL; protected int indexUpdaterPriority = Thread.MAX_PRIORITY; protected int crawlerPriority = Thread.NORM_PRIORITY;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 22.6K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt
private inner class FixedLengthSource(private var bytesRemaining: Long) : AbstractSource() { init { if (bytesRemaining == 0L) { responseBodyComplete() } } override fun read( sink: Buffer, byteCount: Long, ): Long { require(byteCount >= 0L) { "byteCount < 0: $byteCount" } check(!closed) { "closed" }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 16.2K bytes - Viewed (0) -
src/main/java/jcifs/util/Encdec.java
return 8; } public static long dec_uint64be ( byte[] src, int si ) { long l; l = dec_uint32be(src, si) & 0xFFFFFFFFL; l <<= 32L; l |= dec_uint32be(src, si + 4) & 0xFFFFFFFFL; return l; } public static long dec_uint64le ( byte[] src, int si ) { long l; l = dec_uint32le(src, si + 4) & 0xFFFFFFFFL;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 11K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileStandardInfo.java
return 0; } @Override public long getCreateTime () { return 0L; } @Override public long getLastWriteTime () { return 0L; } @Override public long getLastAccessTime () { return 0L; } @Override public long getSize () { return this.endOfFile; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MemoryDataHelper.java
} public synchronized List<AccessResultImpl<Long>> getAccessResultList(final String url) { final List<AccessResultImpl<Long>> acList = new ArrayList<>(); for (final Map.Entry<String, Map<String, AccessResultImpl<Long>>> entry : sessionMap.entrySet()) { if (entry.getValue() != null) { final AccessResultImpl<Long> ar = entry.getValue().get(url); if (ar != null) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 4.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java
return SECONDS.toMicros(1L) / stableIntervalMicros; } @Override final long queryEarliestAvailable(long nowMicros) { return nextFreeTicketMicros; } @Override final long reserveEarliestAvailable(int requiredPermits, long nowMicros) { resync(nowMicros); long returnValue = nextFreeTicketMicros; double storedPermitsToSpend = min(requiredPermits, this.storedPermits);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 04 09:45:04 UTC 2023 - 19.3K bytes - Viewed (0) -
src/main/config/es/fess_config_file_config.json
}, "configParameter" : { "type" : "keyword" }, "createdBy" : { "type" : "keyword" }, "createdTime" : { "type" : "long" }, "depth" : { "type" : "integer" }, "description" : { "type" : "text" }, "excludedDocPaths" : {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 2.3K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/StopwatchBenchmark.java
*/ public class StopwatchBenchmark { @Benchmark long stopwatch(int reps) { long total = 0; for (int i = 0; i < reps; i++) { Stopwatch s = Stopwatch.createStarted(); // here is where you would do something total += s.elapsed(NANOSECONDS); } return total; } @Benchmark long manual(int reps) { long total = 0; for (int i = 0; i < reps; i++) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 1.5K bytes - Viewed (0)