- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for intKey (0.03 sec)
-
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
} // Test getAsString with non-String value public void test_getAsStringWithNonStringValue() { dataStoreParams.put("intKey", 123); assertEquals("123", dataStoreParams.getAsString("intKey")); dataStoreParams.put("longKey", 456L); assertEquals("456", dataStoreParams.getAsString("longKey")); dataStoreParams.put("boolKey", true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
public void test_get_numericValues() { String intKey = "numeric.int"; String floatKey = "numeric.float"; System.setProperty(Constants.FESS_CONFIG_PREFIX + intKey, "123"); System.setProperty(Constants.FESS_CONFIG_PREFIX + floatKey, "45.67"); try { String intValue = fessConfig.get(intKey); assertEquals("123", intValue);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
public void test_append_integerValue() { StringBuilder buf = new StringBuilder(); Supplier<Object> supplier = () -> Integer.valueOf(123); monitorTarget.append(buf, "intKey", supplier); assertEquals("\"intKey\":123", buf.toString()); } // Test append method with Long value public void test_append_longValue() { StringBuilder buf = new StringBuilder();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/RenderDataUtilTest.java
} public void test_register_nonEntitySet() { RenderData data = new RenderData(); Set<Integer> intSet = new HashSet<>(Arrays.asList(1, 2, 3)); RenderDataUtil.register(data, "numbers", intSet); Object result = data.getDataMap().get("numbers"); assertEquals(intSet, result); // Non-entity collections are registered as-is } public void test_register_mixedList() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 9K bytes - Viewed (0) -
guava/src/com/google/common/hash/Fingerprint2011.java
import com.google.common.annotations.VisibleForTesting; /** * Implementation of Geoff Pike's fingerprint2011 hash function. See {@link Hashing#fingerprint2011} * for information on the behaviour of the algorithm. * * <p>On Intel Core2 2.66, on 1000 bytes, fingerprint2011 takes 0.9 microseconds compared to * fingerprint at 4.0 microseconds and md5 at 4.5 microseconds. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/UserAgentHelperTest.java
assertEquals(UserAgentType.FIREFOX, userAgentHelper.getUserAgentType()); } public void test_getUserAgentType_Safari() { getMockRequest().addHeader("user-agent", "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/600.8.9 (KHTML, like Gecko) Version/8.0.8 Safari/600.8.9"); assertEquals(UserAgentType.SAFARI, userAgentHelper.getUserAgentType()); } public void test_getUserAgentType_Opera() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 7.1K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Fingerprint2011.java
import com.google.common.annotations.VisibleForTesting; /** * Implementation of Geoff Pike's fingerprint2011 hash function. See {@link Hashing#fingerprint2011} * for information on the behaviour of the algorithm. * * <p>On Intel Core2 2.66, on 1000 bytes, fingerprint2011 takes 0.9 microseconds compared to * fingerprint at 4.0 microseconds and md5 at 4.5 microseconds. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/resources/fess_indices/_aws/fess.json
"dintre", "drept", "după", "ea", "ei", "el", "ele", "eram", "este", "eşti", "eu", "face", "fără", "fi", "fie", "fiecare", "fii", "fim", "fiţi", "iar", "ieri", "îi", "îl", "îmi", "împotriva", "în ", "înainte", "înaintea", "încât", "încît", "încotro", "între", "întrucât", "întrucît", "îţi", "la", "lângă", "le", "li", "lîngă", "lor", "lui", "mă", "mâine", "mea", "mei", "mele", "mereu", "meu", "mi", "mine", "mult", "multă", "mulţi", "ne", "nicăieri", "nici", "nimeni", "nişte", "noastră", "noastre", "noi",...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 14 00:36:40 UTC 2025 - 117.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.34.md
- The Kubernetes API server merged selectors built from `matchLabelKeys` into the `labelSelector` of `topologySpreadConstraints`, aligning Pod Topology Spread behavior with Inter-Pod Affinity. To prevent breaking existing Pods using `matchLabelKeys`, this scheduler behavior was preserved until v1.34. Upgrades from v1.32 to v1.34 should be done incrementally (v1.32 → v1.33 → v1.34), ensuring Pods created at v1.32 with `matchLabelKeys`...
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 27 10:36:10 UTC 2025 - 292.8K bytes - Viewed (0)