- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for isLetter (0.03 sec)
-
android/guava-tests/test/com/google/common/escape/UnicodeEscaperTest.java
// Inefficient implementation that defines all letters as escapable. @Override protected int nextEscapeIndex(CharSequence csq, int index, int end) { while (index < end && !Character.isLetter(csq.charAt(index))) { index++; } return index; } }; assertThat(e.escape("\0HeLLo \uD800\uDC00 WorlD!\n"))
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 6K bytes - Viewed (0) -
guava-tests/test/com/google/common/escape/UnicodeEscaperTest.java
// Inefficient implementation that defines all letters as escapable. @Override protected int nextEscapeIndex(CharSequence csq, int index, int end) { while (index < end && !Character.isLetter(csq.charAt(index))) { index++; } return index; } }; assertThat(e.escape("\0HeLLo \uD800\uDC00 WorlD!\n"))
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/PropertyDesc.java
*/ boolean hasReadMethod(); /** * Returns the setter method. * * @return the setter method */ Method getWriteMethod(); /** * Returns whether the property has a setter method. * * @return whether the property has a setter method */ boolean hasWriteMethod(); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
assertEquals("${temp}/file", generator.expandPath("${temp}/file")); // No partial replacement } public void test_directoryNameLength() { // Test directoryNameLength setter generator = new TestThumbnailGenerator(); // Default value assertEquals(5, generator.directoryNameLength); // Set new value generator.setDirectoryNameLength(10);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java
} // Test getExpiry with default value public void test_getExpiry_default() { assertEquals(30L * 24 * 60 * 60 * 1000L, purgeThumbnailJob.getExpiry()); } // Test expiry setter with valid value public void test_expiry_validValue() { long newExpiry = 60L * 24 * 60 * 60 * 1000L; // 60 days PurgeThumbnailJob result = purgeThumbnailJob.expiry(newExpiry);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.2K bytes - Viewed (0)