- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 358 for unformat (0.23 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProviderTest.java
// Setup mock request manager with invalid format RequestManager mockRequestManager = createMockRequestManager("invalid_locale_format"); // Execute OptionalThing<Locale> result = provider.findBusinessLocale(null, mockRequestManager); // Verify - invalid format should return empty due to exception in LocaleUtils.toLocale assertFalse(result.isPresent());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Charsets.java
/** * UTF-8: eight-bit UCS Transformation Format. * * @deprecated Use {@link StandardCharsets#UTF_8} instead. */ @Deprecated public static final Charset UTF_8 = StandardCharsets.UTF_8; /** * UTF-16BE: sixteen-bit UCS Transformation Format, big-endian byte order. * * @deprecated Use {@link StandardCharsets#UTF_16BE} instead. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/Platform.java
/** * This class is emulated in GWT. * * @author Hayward Chan */ @GwtCompatible final class Platform { /** Format the template with args, only supports the placeholder {@code %s}. */ static String format(String template, Object... args) { return String.format(Locale.ROOT, template, args); } /** See {@link ListListIteratorTester} */ static int listListIteratorTesterNumIterations() { return 4;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 1.3K bytes - Viewed (0) -
src/main/assemblies/zip-bin.xml
<?xml version="1.0"?> <assembly> <id>zip</id> <formats> <format>zip</format> </formats> <includeBaseDirectory>false</includeBaseDirectory> <componentDescriptors> <componentDescriptor>src/main/assemblies/common-bin.xml </componentDescriptor> </componentDescriptors>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Dec 13 08:20:29 UTC 2015 - 291 bytes - Viewed (0) -
guava/src/com/google/common/base/MoreObjects.java
* * @since 18.0 (since 11.0 as {@code Objects.ToStringHelper.add()}). */ @CanIgnoreReturnValue public ToStringHelper add(String name, boolean value) { return addUnconditionalHolder(name, String.valueOf(value)); } /** * Adds a name/value pair to the formatted output in {@code name=value} format. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/resources/fess_indices/_cloud/fess/doc.json
"content_length": { "type": "long" }, "created": { "type": "date", "format": "date_optional_time" }, "timestamp": { "type": "date", "format": "date_optional_time" }, "expires": { "type": "date", "format": "date_optional_time" }, "digest": { "type": "text", "index": false },
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 15 11:50:35 UTC 2023 - 11.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/VerifyTest.java
verify(true, "%s", IGNORE_ME); } public void testVerify_complexMessage_failure() { VerifyException expected = assertThrows(VerifyException.class, () -> verify(false, FORMAT, 5)); checkMessage(expected); } private static final String NON_NULL_STRING = "foo"; public void testVerifyNotNull_simple_success() { String result = verifyNotNull(NON_NULL_STRING);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3.2K bytes - Viewed (0) -
docs/assets/css/app.css
font-family: cash-market; src: url("https://cash-f.squarecdn.com/static/fonts/cash-market/v2/CashMarket-Regular.woff2") format("woff2"); font-weight: 400; font-style: normal } @font-face { font-family: cash-market; src: url("https://cash-f.squarecdn.com/static/fonts/cash-market/v2/CashMarket-Medium.woff2") format("woff2"); font-weight: 500; font-style: normal } @font-face { font-family: cash-market;
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Feb 08 07:57:03 UTC 2022 - 1.1K bytes - Viewed (2) -
guava-tests/test/com/google/common/hash/MacHashFunctionTest.java
Hashing.hmacSha1(keyData).toString()); assertEquals( "Hashing.hmacSha256(Key[algorithm=HmacSHA256, format=RAW])", Hashing.hmacSha256(SHA256_KEY).toString()); assertEquals( "Hashing.hmacSha256(Key[algorithm=HmacSHA256, format=RAW])", Hashing.hmacSha256(keyData).toString()); assertEquals( "Hashing.hmacSha512(Key[algorithm=HmacSHA512, format=RAW])",
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Dec 27 16:19:35 UTC 2024 - 13.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java
// Verify the string format assertNotNull(result); assertTrue(result.contains("FessUserTimeZoneProcessProvider")); assertTrue(result.contains("useTimeZoneHandling=false")); assertTrue(result.contains("acceptCookieTimeZone=false")); assertTrue(result.contains("@")); // Verify that hashCode is included in hex format
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.9K bytes - Viewed (0)