- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for sourceArray (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/suggest/settings/ElevateWordSettings.java
@SuppressWarnings("unchecked") final List<String> readings = (List<String>) sourceArray[i].get(ELEVATE_WORD_READING); @SuppressWarnings("unchecked") final List<String> fields = (List<String>) sourceArray[i].get(ELEVATE_WORD_FIELDS); @SuppressWarnings("unchecked") final List<String> tags = (List<String>) sourceArray[i].get(ELEVATE_WORD_TAGS);Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 7.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/IterablesTest.java
} @GwtIncompatible // Iterables.toArray(Iterable, Class) public void testToArray() { String[] sourceArray = new String[] {"a", "b", "c"}; Iterable<String> iterable = asList(sourceArray); String[] newArray = Iterables.toArray(iterable, String.class); assertThat(newArray).isEqualTo(sourceArray); } public void testAny() { List<String> list = new ArrayList<>();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 47.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/IteratorsTest.java
} @GwtIncompatible // Iterators.toArray(Iterator, Class) public void testToArray() { String[] sourceArray = new String[] {"a", "b", "c"}; Iterator<String> iterator = asList(sourceArray).iterator(); String[] newArray = Iterators.toArray(iterator, String.class); assertThat(newArray).isEqualTo(sourceArray); } public void testFilterSimple() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 57.3K bytes - Click Count (0)