- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 1,909 for Pong (0.03 sec)
-
android/guava/src/com/google/common/cache/LongAdder.java
@GwtCompatible(emulated = true) @ElementTypesAreNonnullByDefault final class LongAdder extends Striped64 implements Serializable, LongAddable { private static final long serialVersionUID = 7249069246863182397L; /** Version of plus for use in retryUpdate */ @Override final long fn(long v, long x) { return v + x; } /** Creates a new adder with initial sum of zero. */ public LongAdder() {} /** * Adds the given value.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/util/SMBUtil.java
} public static long readTime ( byte[] src, int srcIndex ) { int low = readInt4(src, srcIndex); int hi = readInt4(src, srcIndex + 4); long t = ( (long) hi << 32L ) | ( low & 0xFFFFFFFFL ); t = ( t / 10000L - SmbConstants.MILLISECONDS_BETWEEN_1970_AND_1601 ); return t; } public static void writeTime ( long t, byte[] dst, int dstIndex ) { if ( t != 0L ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java
protected Map<String, Object> initParamMap; protected long maxCachedContentSize = 1024L * 1024L; //1mb protected Integer accessTimeout = null; // sec protected Long maxContentLength = null; public void init() { // max content length final Long maxContentLengthParam = getInitParameter(MAX_CONTENT_LENGTH, maxContentLength, Long.class); if (maxContentLengthParam != null) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComQueryInformationResponse.java
return this.fileAttributes; } @Override public long getCreateTime () { return convertTime(this.lastWriteTime); } /** * @param time * @return */ private long convertTime ( long time ) { return time + this.serverTimeZoneOffset; } @Override public long getLastWriteTime () { return convertTime(this.lastWriteTime); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.4K bytes - Viewed (0) -
guava/src/com/google/common/hash/BloomFilterStrategies.java
*/ public static long[] toPlainArray(AtomicLongArray atomicLongArray) { long[] array = new long[atomicLongArray.length()]; for (int i = 0; i < array.length; ++i) { array[i] = atomicLongArray.get(i); } return array; } /** Number of bits */ long bitSize() { return (long) data.length() * Long.SIZE; } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 10 19:45:10 UTC 2022 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileHandleImpl.java
/** * {@inheritDoc} * * @see jcifs.SmbFileHandle#close(long) */ @Override public synchronized void close ( long lastWriteTime ) throws CIFSException { closeInternal(lastWriteTime, true); } /** * @param lastWriteTime * @throws SmbException */ void closeInternal ( long lastWriteTime, boolean explicit ) throws CIFSException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.6K bytes - Viewed (1) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/util/OpenSearchResultList.java
private static final long serialVersionUID = 1L; private long totalHits; private long tookInMillis; public void setTotalHits(final long totalHits) { this.totalHits = totalHits; } public long getTotalHits() { return totalHits; } public void setTookInMillis(final long tookInMillis) { this.tookInMillis = tookInMillis; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 1.2K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/Striped64.java
* provided. */ static final class Cell { volatile long p0, p1, p2, p3, p4, p5, p6; volatile long value; volatile long q0, q1, q2, q3, q4, q5, q6; Cell(long x) { value = x; } final boolean cas(long cmp, long val) { return UNSAFE.compareAndSwapLong(this, valueOffset, cmp, val); } // Unsafe mechanics
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jun 14 17:55:55 UTC 2024 - 11.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueue.java
String getParentUrl(); void setParentUrl(String parentUrl); Integer getDepth(); void setDepth(Integer depth); Long getLastModified(); void setLastModified(Long lastModified); Long getCreateTime(); void setCreateTime(Long createTime); float getWeight(); void setWeight(float weight);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Mon Nov 04 07:44:18 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractEntity.java
public class DocMeta implements Serializable { private static final long serialVersionUID = 1L; protected String id; protected Long version; protected Long seqNo; protected Long primaryTerm; private transient RequestOptionCall<IndexRequestBuilder> indexOption;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.9K bytes - Viewed (0)