- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 2,092 for C_value (0.05 sec)
-
guava-tests/test/com/google/common/primitives/UnsignedLongTest.java
for (long value : TEST_LONGS) { assertWithMessage(UnsignedLongs.toString(value)) .that(UnsignedLong.fromLongBits(value).longValue()) .isEqualTo(value); } } public void testAsUnsignedBigIntegerValue() { for (long value : TEST_LONGS) { BigInteger expected = (value >= 0) ? BigInteger.valueOf(value)
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
public void setCreatedTime(Long value) { registerModifiedProperty("createdTime"); this.createdTime = value; } public Integer getSortOrder() { checkSpecifiedProperty("sortOrder"); return sortOrder; } public void setSortOrder(Integer value) { registerModifiedProperty("sortOrder"); this.sortOrder = value; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.7K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/UnhashableObject.java
public class UnhashableObject implements Comparable<UnhashableObject> { private final int value; public UnhashableObject(int value) { this.value = value; } @Override public boolean equals(@Nullable Object object) { if (object instanceof UnhashableObject) { UnhashableObject that = (UnhashableObject) object; return this.value == that.value; } return false; } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Apr 20 11:19:03 UTC 2023 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsRelatedContent.java
public void setCreatedTime(Long value) { registerModifiedProperty("createdTime"); this.createdTime = value; } public Integer getSortOrder() { checkSpecifiedProperty("sortOrder"); return sortOrder; } public void setSortOrder(Integer value) { registerModifiedProperty("sortOrder"); this.sortOrder = value; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.1K bytes - Viewed (0) -
docs/en/docs/js/custom.js
const value = line.replace(promptLiteralStart, "").trimEnd(); useLines.push({ type: "input", value: value }); } else if (line.startsWith("// ")) { saveBuffer(); const value = "💬 " + line.replace("// ", "").trimEnd();
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 6.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/MapMakerInternalMap.java
newEntry(segment, entry.key, entry.hash, newNext); newEntry.value = entry.value; return newEntry; } @Override public void setValue( StrongKeyStrongValueSegment<K, V> segment, StrongKeyStrongValueEntry<K, V> entry, V value) { entry.value = value; } @Override public StrongKeyStrongValueEntry<K, V> newEntry(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 90.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptions.java
/** * 値がコピーの対象なら{@literal true}を返します。 * * @param value * コピー元の値 * @return 値がコピーの対象なら{@literal true} */ protected boolean isTargetValue(final Object value) { if (value == null) { return !excludesNull; } if (value instanceof String && excludesWhitespace && ((String) value).trim().isEmpty()) { return !excludesWhitespace; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.5K bytes - Viewed (0) -
deps.xml
<project name="deps" basedir="."> <property name="target.dir" value="${basedir}/target/deps" /> <property name="webinf.dir" value="${basedir}/src/main/webapp/WEB-INF" /> <property name="crawler.dir" value="${basedir}/src/main/webapp/WEB-INF/env/crawler" /> <property name="suggest.dir" value="${basedir}/src/main/webapp/WEB-INF/env/suggest" /> <property name="thumbnail.dir" value="${basedir}/src/main/webapp/WEB-INF/env/thumbnail" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 04:37:19 UTC 2024 - 2.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Chars.java
* @param value a primitive {@code char} value * @return a hash code for the value */ public static int hashCode(char value) { return value; } /** * Returns the {@code char} value that is equal to {@code value}, if possible. * * @param value any value in the range of the {@code char} type * @return the {@code char} value that equals {@code value}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 27 16:47:48 UTC 2024 - 23.9K bytes - Viewed (0)