- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 2,000 for VALUE (0.04 sec)
-
src/main/java/org/codelibs/core/misc/Pair.java
* The type of the first value * @param <T2> * The type of the second value */ public class Pair<T1, T2> { /** The first value */ protected T1 first; /** The second value */ protected T2 second; /** * Creates and returns a pair of two values. * * @param <T1> * The type of the first value * @param <T2>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheReferencesTest.java
// A simple type whose .toString() will return the same value each time, but without maintaining // a strong reference to that value. static class Key { private final int value; private WeakReference<String> toString; Key(int value) { this.value = value; } @Override public synchronized String toString() { String s;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 20:58:01 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcConstantsTest.java
assertEquals(expectedUuid, actualUuid, "DCERPC_UUID_SYNTAX_NDR should have the correct UUID value"); } } @Nested @DisplayName("Fragment Flag Constants Tests") class FragmentFlagTests { @Test @DisplayName("DCERPC_FIRST_FRAG should have correct value") void testDcerpcFirstFrag() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineTest.java
} // Test evaluate method with null parameter value public void test_evaluate_withNullParameterValue() { String template = "Value is: ${value}"; Map<String, Object> paramMap = new HashMap<>(); paramMap.put("value", null); Object result = scriptEngine.evaluate(template, paramMap); assertEquals("Value is: null", result); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacDataInputStream.java
} /** * Reads a 16-bit character value with proper alignment. * @return the character value * @throws IOException if an I/O error occurs */ public char readChar() throws IOException { align(2); return this.dis.readChar(); } /** * Reads a single byte value. * @return the byte value * @throws IOException if an I/O error occurs */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
} } this.value = ALIASES.getProperty(value, value); } @Override public int getType() { return STRING_ITEM; } @Override public boolean isNull() { return value == null || value.isEmpty(); } /** * Returns a comparable value for a qualifier. * <p>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 26.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsKeyMatch.java
} public void setCreatedTime(Long value) { registerModifiedProperty("createdTime"); this.createdTime = value; } public Integer getMaxSize() { checkSpecifiedProperty("maxSize"); return maxSize; } public void setMaxSize(Integer value) { registerModifiedProperty("maxSize"); this.maxSize = value; } public String getQuery() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
value = transformer.normalizeCanonicalUrl("http://hoge.com/", "aaa"); assertEquals("http://hoge.com/aaa", value); value = transformer.normalizeCanonicalUrl("http://hoge.com/", "/aaa"); assertEquals("http://hoge.com/aaa", value); value = transformer.normalizeCanonicalUrl("http://hoge.com/bbb", "aaa"); assertEquals("http://hoge.com/aaa", value);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 41.5K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Longs.java
/** * Returns a hash code for {@code value}; obsolete alternative to {@link Long#hashCode(long)}. * * @param value a primitive {@code long} value * @return a hash code for the value */ @InlineMe(replacement = "Long.hashCode(value)") public static int hashCode(long value) { return Long.hashCode(value); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 29.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java
if (cookieKey.equals(cookie.getName())) { final String value = cookie.getValue(); if (logger.isDebugEnabled()) { logger.debug("{}:{}", cookieKey, value); } if (StringUtil.isNotEmpty(value)) { parseRoleSet(value, encryptedCookieValue, roleSet); } } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.1K bytes - Viewed (0)