- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 68 for numeric (0.08 sec)
-
guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java
if (removalListener != null) { removalListener.onRemoval(RemovalNotification.create(key, value, cause)); } } @SuppressWarnings("GoodTime") // timestamps as numeric primitives private V load(K key) throws ExecutionException { long startTime = ticker.read(); V calculatedValue; try { calculatedValue = loader.load(key); put(key, calculatedValue);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 21.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineTest.java
paramMap.put("level1", level1); Object result = scriptEngine.evaluate(template, paramMap); assertEquals("nested", result); } // Test evaluate method with numeric values public void test_evaluate_withNumericValues() { String template = "Result: ${number1} + ${number2} = ${sum}"; Map<String, Object> paramMap = new HashMap<>(); paramMap.put("number1", 10);
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/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
// Test with String data Map<String, Object> stringData = new HashMap<>(); stringData.put("text", "test value"); callback.store(params, stringData); // Test with numeric data Map<String, Object> numericData = new HashMap<>(); numericData.put("integer", 123); numericData.put("long", 456L); numericData.put("double", 789.0);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 21.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/OptionalUtilTest.java
assertFalse(opt.isPresent()); } } public void test_ofNullable_edgeCaseValues() { // Test with special numeric values OptionalEntity<Double> nanOpt = OptionalUtil.ofNullable(Double.NaN); assertTrue(nanOpt.isPresent()); assertTrue(Double.isNaN(nanOpt.get()));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
fail("Should throw NumberFormatException"); } catch (NumberFormatException e) { // Expected exception assertNotNull(e); } } // Test various numeric values for time adjust public void xtest_getTimeAdjustTimeMillisAsLong_variousValues() { // Test negative value FessEnv.SimpleImpl negativeEnv = new FessEnv.SimpleImpl() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/webapp/css/admin/font-awesome.min.css
sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-down-alt:before{content:"\f886"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-numeric-up-alt:before{content:"\f887"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-s...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Dec 14 21:22:25 UTC 2019 - 55.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
assertEquals("default", fessConfig.get(FessConfig.search_engine_TYPE)); assertEquals("http://localhost:9201", fessConfig.get(FessConfig.search_engine_HTTP_URL)); } // Test numeric conversions public void test_numericConversions() { // Test integer conversion Integer heartbeatInterval = fessConfig.getSearchEngineHeartbeatIntervalAsInteger(); assertNotNull(heartbeatInterval);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.8K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
* parts other than the last may begin with a digit (for example, "3com.com"). It's important to * disallow an initial digit in the last part; it's the only thing that stops an IPv4 numeric * address like 127.0.0.1 from looking like a valid domain name. */ if (isFinalPart && DIGIT_MATCHER.matches(part.charAt(0))) { return false; } return true; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.9K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
* other difference is that this method outputs any scope ID in the format that it was provided at * creation time, while Android may always output it as an interface name, even if it was supplied * as a numeric ID. * * <p>This method uses hexadecimal for all IPv6 addresses, including IPv4-mapped IPv6 addresses * such as "::c000:201". * * @param ip {@link InetAddress} to be converted to an address string
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0)