- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 510 for bplist (0.03 sec)
-
docs/smb3-features/04-directory-leasing-design.md
public List<SmbFile> batchExists(List<String> paths) { // Group paths by parent directory Map<String, List<String>> pathsByParent = paths.stream() .collect(Collectors.groupingBy(this::getParentPath)); List<SmbFile> results = new ArrayList<>(); for (Map.Entry<String, List<String>> entry : pathsByParent.entrySet()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
// Fall back to TCP return new SmbTransport(context, address.getAddress(), address.getPort()); } private RdmaProvider selectRdmaProvider() { // Try providers in order of preference List<RdmaProvider> providers = Arrays.asList( new DisniRdmaProvider(), // InfiniBand/RoCE new JxioRdmaProvider(), // Alternative RDMA library new TcpRdmaProvider() // TCP fallback );
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileDirectoryLeasingExtension.java
} /** * List files using directory leasing */ private static SmbFile[] listFilesWithDirectoryLeasing(SmbFile smbFile, DirectoryLeaseManager dirManager) throws SmbException { String directoryPath = smbFile.getPath(); // Check if we can use cached directory listing if (dirManager.canCacheDirectoryListing(directoryPath)) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbResourceLocatorInternalTest.java
Class<?> clazz = SmbResourceLocatorInternal.class; // Assert it's an interface and extends the right superinterface assertTrue(clazz.isInterface(), "Should be an interface"); assertTrue(Arrays.asList(clazz.getInterfaces()).contains(SmbResourceLocator.class), "Should extend SmbResourceLocator"); // shouldForceSigning(): boolean, no params, no checked exceptions Method m1 = clazz.getMethod("shouldForceSigning");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMultimap.java
import static com.google.common.collect.Iterators.emptyIterator; import static com.google.common.collect.Maps.immutableEntry; import static java.lang.Math.max; import static java.util.Arrays.asList; import static java.util.Objects.requireNonNull; import com.google.common.annotations.GwtCompatible; import com.google.common.annotations.GwtIncompatible; import com.google.common.annotations.J2ktIncompatible;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 28.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/DefaultNetworkImplementationsTest.java
private static final String E12_A = "1-2a"; private static final String E21 = "2-1"; private static final String E23 = "2-3"; @Parameters public static Collection<Object[]> parameters() { return Arrays.asList( new Object[][] { {UNDIRECTED}, {DIRECTED}, }); } private final EdgeType edgeType; public DefaultNetworkImplementationsTest(EdgeType edgeType) { this.edgeType = edgeType;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 7.4K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/CollectorTester.java
List<T> list = Arrays.asList(inputs); doExpectCollects(expectedResult, list); if (collector.characteristics().contains(Collector.Characteristics.UNORDERED)) { Collections.reverse(list); doExpectCollects(expectedResult, list); } return this; } private void doExpectCollects(R expectedResult, List<T> inputs) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu May 15 21:47:56 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java
final GroupPager pager = copyBeanToNewBean(body, GroupPager.class); final List<Group> list = groupService.getGroupList(pager); return asJson( new ApiResult.ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList())) .total(pager.getAllRecordCount()) .status(ApiResult.Status.OK)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/ApiAdminBoostdocAction.java
* @return JSON response containing list of boost document rule configurations */ // GET /api/admin/boostdoc // PUT /api/admin/boostdoc @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final BoostDocPager pager = copyBeanToNewBean(body, BoostDocPager.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/SignedBytesTest.java
assertThat(SignedBytes.join(",", (byte) -128, (byte) -1)).isEqualTo("-128,-1"); } @J2ktIncompatible // b/285319375 public void testLexicographicalComparator() { List<byte[]> ordered = Arrays.asList( new byte[] {}, new byte[] {LEAST}, new byte[] {LEAST, LEAST}, new byte[] {LEAST, (byte) 1}, new byte[] {(byte) 1},
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 7K bytes - Viewed (0)