- Sort Score
- Result 10 results
- Languages All
Results 311 - 320 of 2,440 for bist (0.02 sec)
-
compat/maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java
} @Override public List<ArtifactRepository> getEffectiveRepositories(List<ArtifactRepository> repositories) { return repositories; } @Override public Mirror getMirror(ArtifactRepository repository, List<Mirror> mirrors) { return null; } @Override public void injectAuthentication(List<ArtifactRepository> repositories, List<Server> servers) {} @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 10 08:42:00 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/IndexedIteratorTest.java
import java.io.StringReader; import java.util.List; import org.junit.Test; /** * @author wyukawa * */ public class IndexedIteratorTest { /** * @throws Exception */ @Test public void test() throws Exception { final List<String> list = newArrayList(); list.add("aaa"); list.add("bbb"); list.add("ccc");
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
assertEquals(doc1, qrList.get(1)); } public void test_listOperations_addAll() { List<Map<String, Object>> documentList = new ArrayList<>(); QueryResponseList qrList = new QueryResponseList(documentList, 0, 10, 0); List<Map<String, Object>> newDocs = new ArrayList<>(); Map<String, Object> doc1 = new HashMap<>(); doc1.put("title", "Doc1");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 39.7K bytes - Viewed (0) -
dbflute_fess/dfprop/replaceSchemaMap.dfprop
# o objectTypeTargetList: (NotRequired - Default list{TABLE;VIEW}) # #; additionalDropMapList = list:{ # ; map:{ # ; url = jdbc:oracle:thin:... # ; schema = NEXTEXAMPLEDB # ; user = NEXTEXAMPLEDB # ; password = NEXTEXAMPLEDB # ; propertiesMap = map:{} # ; objectTypeTargetList = list:{TABLE;VIEW} # } #}
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SynonymPager.java
} /** * Gets the list of page numbers for navigation. * * @return A list of page numbers. */ public List<Integer> getPageNumberList() { return pageNumberList; } /** * Sets the list of page numbers for navigation. * * @param pageNumberList A list of page numbers. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
} /** * Returns the list of page numbers. * * @return The list of page numbers. */ public List<Integer> getPageNumberList() { return pageNumberList; } /** * Sets the list of page numbers. * * @param pageNumberList The list of page numbers. */ public void setPageNumberList(final List<Integer> pageNumberList) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/CharsTest.java
} public void testToArray_withNull() { List<@Nullable Character> list = Arrays.asList((char) 0, (char) 1, null); assertThrows(NullPointerException.class, () -> Chars.toArray(list)); } @J2ktIncompatible // b/285319375 public void testAsList_isAView() { char[] array = {(char) 0, (char) 1}; List<Character> list = Chars.asList(array); list.set(0, (char) 2);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
/** * Constructor. */ public RoleService() { super(); } /** * Gets a list of roles based on the pager. * @param rolePager The pager for roles. * @return A list of roles. */ public List<Role> getRoleList(final RolePager rolePager) { final PagingResultBean<Role> roleList = roleBhv.selectPage(cb -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/features/ListFeature.java
import java.lang.annotation.RetentionPolicy; import java.util.List; import java.util.Set; /** * Optional features of classes derived from {@code List}. * * @author George van den Driessche */ @SuppressWarnings("rawtypes") // maybe avoidable if we rework the whole package? @GwtCompatible public enum ListFeature implements Feature<List> { SUPPORTS_SET, SUPPORTS_ADD_WITH_INDEX(CollectionFeature.SUPPORTS_ADD),
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 2K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/TestStringListGenerator.java
* #create(Object...)}. */ protected abstract List<String> create(String[] elements); @Override public String[] createArray(int length) { return new String[length]; } /** Returns the original element list, unchanged. */ @Override public List<String> order(List<String> insertionOrder) { return insertionOrder; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 1.7K bytes - Viewed (0)