- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 63 for numeral (0.11 sec)
-
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) -
src/main/resources/fess_message_fr.properties
constraints.Size.message = La taille de {item} doit être comprise entre {min} et {max}. # ---------------------------------------------------------- # Hibernate Validator # ------------------- constraints.CreditCardNumber.message = {item} est un numéro de carte de crédit non valide. constraints.EAN.message = {item} est un code-barres {type} non valide. constraints.Email.message = {item} n'est pas une adresse e-mail valide.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 13.1K 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) -
src/main/java/org/codelibs/fess/Constants.java
/** Document crawler format identifier. */ public static final String DCF = "dcf"; /** Constant representing all languages. */ public static final String ALL_LANGUAGES = "all"; /** Invalid numeric parameter value. */ public static final String INVALID_NUMERIC_PARAMETER = "-1"; // ============================================================ // Facet and Query Constants
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
docs/changelogs/changelog_2x.md
This fixes a bug in resumed TLS sessions where the wrong protocol could be selected. * Fix: Don't crash in SPDY and HTTP/2 when disconnecting before connecting. * Fix: Avoid a reverse DNS-lookup for a numeric proxy address * Fix: Resurrect http/2 frame logging. * Fix: Limit to 20 authorization attempts. ## Version 2.1.0 _2014-11-11_
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0) -
src/main/webapp/js/admin/popper.min.js.map
{Object} styles\n * Object with a list of properties and values which will be applied to the element\n */\nexport default function setStyles(element, styles) {\n Object.keys(styles).forEach(prop => {\n let unit = '';\n // add unit if the value is numeric and is one of the following\n if (\n ['width', 'height', 'top', 'right', 'bottom', 'left'].indexOf(prop) !==\n -1 &&\n isNumeric(styles[prop])\n ) {\n unit = 'px';\n }\n element.style[prop] = styles[prop] + unit;\n...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 120.9K bytes - Viewed (0)