- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 2,113 for Gist (0.03 sec)
-
guava-tests/test/com/google/common/collect/ImmutableListCopyOfConcurrentlyModifiedInputTest.java
public void perform(List<Integer> list) { list.remove(0); } }; } static ListFrobber nop() { return new ListFrobber() { @Override public void perform(List<Integer> list) {} }; } /** A list that mutates itself after every call to each of its {@link List} methods. */ interface ConcurrentlyMutatedList<E> extends List<E> { /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
buildLabelTypeItems(labelTypeList); buildLabelTypePatternList(labelTypeList); } /** * Builds a list of label type items. * * @param labelTypeList The list of label types. */ protected void buildLabelTypeItems(final List<LabelType> labelTypeList) { final List<LabelTypeItem> itemList = new ArrayList<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableList.java
private static final class Itr<E> extends AbstractIndexedListIterator<E> { private final ImmutableList<E> list; Itr(ImmutableList<E> list, int index) { super(list.size(), index); this.list = list; } @Override protected E get(int index) { return list.get(index); } } @Override public int indexOf(@Nullable Object object) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 27.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/SortedListsTest.java
if (list.contains(key)) { assertEquals(list.lastIndexOf(key), answer); return; } break; case ANY_PRESENT: if (list.contains(key)) { assertEquals(key, list.get(answer)); return; } break; case FIRST_AFTER: if (list.contains(key)) { assertEquals(list.lastIndexOf(key) + 1, answer); return; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsUserBhv.java
return doBatchInsert(new BulkList<>(list, call, entityCall), null); } public int[] batchUpdate(List<User> list) { return batchUpdate(list, null, null); } public int[] batchUpdate(List<User> list, RequestOptionCall<BulkRequestBuilder> call) { return batchUpdate(list, call, null); } public int[] batchUpdate(List<User> list, RequestOptionCall<BulkRequestBuilder> call,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 12K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java
return isSubtype(list); } @TestSubtype(suppressGetSupertype = true, suppressGetSubtype = true) public <T> Iterable<? extends T> wildCardsDoNotMatchByUpperBound(List<?> list) { return notSubtype(list); } @TestSubtype(suppressGetSupertype = true, suppressGetSubtype = true) public <T> Iterable<? super String> wildcardsMatchByLowerBound(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 20.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/PeekingIteratorTest.java
} @Override protected void verify(List<T> elements) { // verify same objects were removed from reference and target assertEquals(elements, targetList); } } private <T extends @Nullable Object> void actsLikeIteratorHelper(List<T> list) { // Check with modifiable copies of the list new PeekingIteratorTester<T>(list).test(); // Check with unmodifiable lists
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.6K bytes - Viewed (0) -
dbflute_fess/dfprop/databaseInfoMap.dfprop
# #; objectTypeTargetList = list:{TABLE ; VIEW} # o tableExceptList: (NotRequired - Default list:{}) # If you want to exclude some tables in generating target, # you should specify the list of excepted table hints. # e.g. list:{PRODUCT_STATUS ; prefix:TMP_} # This is only for the main schema. Additional schemas are unconcerned.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
* * @return a list of all available WebConfig objects */ public List<WebConfig> getAllWebConfigList() { return getAllWebConfigList(true, true, true, null); } /** * Retrieves web crawling configurations filtered by a list of IDs. * If the ID list is null, returns all available configurations. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
PagingList<ProtwordsItem> list = protwordsFile.selectList(3, 10); assertEquals(2, list.size()); assertEquals("test\\4", list.get(0).getInput()); assertEquals("test5", list.get(1).getInput()); } public void test_selectList_withUnloadedData() { // Test selecting list when data is not loaded yet PagingList<ProtwordsItem> list = protwordsFile.selectList(0, 3);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0)