- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 1,635 for olisit (0.07 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsRoleTypeBhv.java
return doBatchInsert(new BulkList<>(list, call, entityCall), null); } public int[] batchUpdate(List<RoleType> list) { return batchUpdate(list, null, null); } public int[] batchUpdate(List<RoleType> list, RequestOptionCall<BulkRequestBuilder> call) { return batchUpdate(list, call, null); } public int[] batchUpdate(List<RoleType> list, RequestOptionCall<BulkRequestBuilder> call,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.5K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java
res.getArtifacts(), "Check artifact list"); ArtifactFilter filter = new ExclusionSetFilter(new String[] {"b"}); res = collect(a, filter); assertEquals(createSet(new Object[] {a.artifact, c.artifact}), res.getArtifacts(), "Check artifact list"); } @Test void testResolveCorrectDependenciesWhenDifferentDependenciesOnNearest()
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 42.7K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionList.java
RunnableExecutorPair reversedList = null; while (list != null) { RunnableExecutorPair tmp = list; list = list.next; tmp.next = reversedList; reversedList = tmp; } while (reversedList != null) { executeListener(reversedList.runnable, reversedList.executor); reversedList = reversedList.next; } } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6.9K bytes - Viewed (0) -
internal/lru/lru.go
// Next and previous pointers in the doubly-linked list of elements. // To simplify the implementation, internally a list l is implemented // as a ring, such that &l.root is both the next element of the last // list element (l.Back()) and the previous element of the first list // element (l.Front()). next, prev *Entry[K, V] // The list to which this element belongs. list *LruList[K, V] // The LRU Key of this element.
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Apr 25 08:22:26 UTC 2025 - 12.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
&& artifact.getFile() != null && artifact.getFile().exists(); } private List<ArtifactRepository> aggregateRepositories( List<ArtifactRepository> requestRepositories, List<ArtifactRepository> pomRepositories) { List<ArtifactRepository> repositories = requestRepositories; if (pomRepositories != null && !pomRepositories.isEmpty()) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 26 10:49:22 UTC 2025 - 30.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java
final List<String> list = new ArrayList<>(); final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String key = fessConfig.getSystemProperty("saml.attribute.group.name", "memberOf"); if (StringUtil.isNotBlank(key)) { final List<String> nameList = attributes.get(key); if (nameList != null) { list.addAll(nameList); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/cache/BatchRequestException.java
public <REQ extends Request<?>, REP extends Result<REQ>> BatchRequestException( String message, List<RequestResult<REQ, REP>> allResults) { super(message); this.results = List.copyOf(allResults); } /** * Returns the list of results from all requests that were part of the batch operation. * Each result contains the original request, the response (if successful), and any error
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/QueryNetworkInterfaceInfoResponse.java
} /** * Get the list of network interfaces * * @return list of network interface information */ public List<NetworkInterfaceInfo> getInterfaces() { return interfaces; } /** * Set the list of network interfaces * * @param interfaces list of network interface information */ public void setInterfaces(List<NetworkInterfaceInfo> interfaces) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 2.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/DoublesTest.java
double[] array = {0.0, 1.0}; List<Double> list = Doubles.asList(array); list.set(0, 2.0); assertThat(array).isEqualTo(new double[] {2.0, 1.0}); array[1] = 3.0; assertThat(list).containsExactly(2.0, 3.0).inOrder(); } public void testAsList_toArray_roundTrip() { double[] array = {0.0, 1.0, 2.0}; List<Double> list = Doubles.asList(array);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 30.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocumentUtilTest.java
doc.put("key", array); List<String> result = DocumentUtil.getValue(doc, "key", List.class); assertEquals(Arrays.asList("a", "b", "c"), result); } public void test_first_element_from_list() { Map<String, Object> doc = new HashMap<>(); List<String> list = Arrays.asList("first", "second", "third"); doc.put("key", list);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.7K bytes - Viewed (0)