- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 1,909 for Pong (0.05 sec)
-
guava/src/com/google/common/hash/Murmur3_128HashFunction.java
protected void process(ByteBuffer bb) { long k1 = bb.getLong(); long k2 = bb.getLong(); bmix64(k1, k2); length += CHUNK_SIZE; } private void bmix64(long k1, long k2) { h1 ^= mixK1(k1); h1 = Long.rotateLeft(h1, 27); h1 += h2; h1 = h1 * 5 + 0x52dce729; h2 ^= mixK2(k2); h2 = Long.rotateLeft(h2, 31); h2 += h1;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 20 18:43:59 UTC 2021 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsFileConfig.java
public void setCreatedBy(String value) { registerModifiedProperty("createdBy"); this.createdBy = value; } public Long getCreatedTime() { checkSpecifiedProperty("createdTime"); return createdTime; } public void setCreatedTime(Long value) { registerModifiedProperty("createdTime"); this.createdTime = value; } public Integer getDepth() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 13.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFileAuthenticationCQ.java
return this; } public void setCreatedTime_Equal(Long createdTime) { setCreatedTime_Term(createdTime, null); } public void setCreatedTime_Equal(Long createdTime, ConditionOptionCall<TermQueryBuilder> opLambda) { setCreatedTime_Term(createdTime, opLambda); } public void setCreatedTime_Term(Long createdTime) { setCreatedTime_Term(createdTime, null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 88.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java
protected volatile boolean crawlerRunning = true; protected long crawlerWaitMillis = 10000; protected List<IntervalRule> ruleList = new ArrayList<>(); public void checkCrawlerStatus() { while (!crawlerRunning) { ThreadUtil.sleepQuietly(crawlerWaitMillis); } } public void delayByRules() { final long delay = getDelay(); if (delay > 0) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 5.8K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/CallEvent.kt
override val timestampNs: Long, override val call: Call, ) : CallEvent() data class RequestHeadersStart( override val timestampNs: Long, override val call: Call, ) : CallEvent() data class RequestHeadersEnd( override val timestampNs: Long, override val call: Call, val headerLength: Long, ) : CallEvent() {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 6.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/IntsTest.java
.isNull(); assertWithMessage("Max long").that(Ints.tryParse(Long.toString(Long.MAX_VALUE))).isNull(); assertWithMessage("Min long").that(Ints.tryParse(Long.toString(Long.MIN_VALUE))).isNull(); assertThat(Ints.tryParse("\u0662\u06f3")).isNull(); } /** * Applies {@link Ints#tryParse(String)} to the given string and asserts that the result is as * expected.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 29.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/UnsignedLongTest.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsBoostDocumentRule.java
/** createdBy */ protected String createdBy; /** createdTime */ protected Long createdTime; /** sortOrder */ protected Integer sortOrder; /** updatedBy */ protected String updatedBy; /** updatedTime */ protected Long updatedTime; /** urlExpr */ protected String urlExpr; // [Referrers] *comment only
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsRoleType.java
/** createdBy */ protected String createdBy; /** createdTime */ protected Long createdTime; /** name */ protected String name; /** sortOrder */ protected Integer sortOrder; /** updatedBy */ protected String updatedBy; /** updatedTime */ protected Long updatedTime; /** value */ protected String value; // [Referrers] *comment only
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java
private int pathConsumed; private long ttl; private String server; // Server private String share; // Share private String link; private String path; // Path relative to tree from which this referral was thrown private long expiration; private int rflags; private boolean resolveHashes; private DfsReferralDataImpl next;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:13:49 UTC 2021 - 11K bytes - Viewed (0)