- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 179 for W123 (0.27 sec)
-
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
assertEquals(value, ResourceUtil.resolve(value)); value = "${abc.xyz}"; assertEquals(value, ResourceUtil.resolve(value)); System.setProperty("abc", "123"); value = "${abc}"; assertEquals("123", ResourceUtil.resolve(value)); value = "xxx${abc}zzz"; assertEquals("xxx123zzz", ResourceUtil.resolve(value)); value = "${abc.xyz}";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.5K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Ints.java
} /** * Returns a string containing the supplied {@code int} values separated by {@code separator}. For * example, {@code join("-", 1, 2, 3)} returns the string {@code "1-2-3"}. * * @param separator the text that should appear between consecutive values in the resulting string * (but not at the start or end)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 31.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/RenderDataUtilTest.java
assertEquals("", data.getDataMap().get("key2")); } public void test_register_primitives() { RenderData data = new RenderData(); RenderDataUtil.register(data, "int", 123); assertEquals(123, data.getDataMap().get("int")); RenderDataUtil.register(data, "long", 456L); assertEquals(456L, data.getDataMap().get("long")); RenderDataUtil.register(data, "boolean", true);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
StopwordsItem item = new StopwordsItem(123, "word"); assertEquals("StopwordsItem [id=123, inputs=word, newInputs=null]", item.toString()); item.setNewInput("updated"); assertEquals("StopwordsItem [id=123, inputs=word, newInputs=updated]", item.toString()); item.setNewInput(""); assertEquals("StopwordsItem [id=123, inputs=word, newInputs=]", item.toString()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
@Override public String toString() { return "TestScheduledJob[id=123]"; } }; JobNotFoundException exception = new JobNotFoundException(scheduledJob); assertNotNull(exception); assertEquals("TestScheduledJob[id=123]", exception.getMessage()); assertNull(exception.getCause()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ContiguousSetTest.java
assertThat(set.headSet(4)).containsExactly(1, 2, 3).inOrder(); assertThat(set.headSet(Integer.MAX_VALUE)).containsExactly(1, 2, 3).inOrder(); assertThat(set.headSet(1, true)).containsExactly(1).inOrder(); assertThat(set.headSet(2, true)).containsExactly(1, 2).inOrder(); assertThat(set.headSet(3, true)).containsExactly(1, 2, 3).inOrder(); assertThat(set.headSet(4, true)).containsExactly(1, 2, 3).inOrder();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/StringConversionUtilTest.java
assertNull(StringConversionUtil.fromWindowsMapping(null)); assertEquals("", StringConversionUtil.fromWindowsMapping("")); assertEquals("abc 123", StringConversionUtil.fromWindowsMapping("abc 123")); assertEquals("abc\uFF5E\u2225\uFF0D\uFFE0\uFFE1\uFFE2", StringConversionUtil.fromWindowsMapping("abc\u301C\u2016\u2212\u00A2\u00A3\u00AC")); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.7K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java
IteratorTester<Integer> tester = new IteratorTester<Integer>( 1, MODIFIABLE, newArrayList(1, 2, 3), IteratorTester.KnownOrder.KNOWN_ORDER) { @Override protected Iterator<Integer> newTargetIterator() { return Lists.newArrayList(1, 2, 3).iterator(); } @Override protected void verify(List<Integer> elements) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
text = "123"; queries = new String[] { "123" }; assertEquals("<strong>123</strong>", viewHelper.replaceHighlightQueries(text, queries)); text = "abc123efg"; queries = new String[] { "123" }; assertEquals("abc<strong>123</strong>efg", viewHelper.replaceHighlightQueries(text, queries)); text = "123"; queries = new String[] { "123", "456" };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 27.3K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Shorts.java
* NumberFormatException} if the input string is invalid. * * <p><b>Warning:</b> please see {@link Short#decode} to understand exactly how strings are * parsed. For example, the string {@code "0123"} is treated as <i>octal</i> and converted to the * value {@code 83}. * * @since 16.0 */ public static Converter<String, Short> stringConverter() { return ShortConverter.INSTANCE; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25.8K bytes - Viewed (0)