- Sort Score
- Result 10 results
- Languages All
Results 1701 - 1710 of 3,587 for findall (0.06 sec)
-
src/main/java/jcifs/smb/DirFileEntryAdapterIterator.java
* @param filter */ public DirFileEntryAdapterIterator(final SmbResource parent, final CloseableIterator<FileEntry> delegate, final ResourceFilter filter) { super(parent, delegate, filter); } /** * @param fe * @return * @throws MalformedURLException */ @Override protected SmbResource adapt(final FileEntry e) throws MalformedURLException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
* * @param netName the network name of the share * @param type the type of the share * @param remark the optional comment or description for the share */ public SmbShareInfo(final String netName, final int type, final String remark) { this.netName = netName; this.type = type; this.remark = remark; } @Override public String getName() { return this.netName; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RoleService.java
} /** * 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 -> { cb.paging(rolePager.getPageSize(), rolePager.getCurrentPageNumber()); setupListCondition(cb, rolePager); });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreatorTest.java
super.setUp(); originalFessConfig = ComponentUtil.getFessConfig(); // Set up test configuration ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String getMailFromName() { return "Test Admin"; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.2K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java
private static class NoDelegateToEquals implements Equals { private static final Function<Equals, Equals> WRAPPER = new Function<Equals, Equals>() { @Override public NoDelegateToEquals apply(Equals delegate) { return new NoDelegateToEquals(delegate); } }; private final Equals delegate; NoDelegateToEquals(Equals delegate) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 15.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/BenchmarkHelpers.java
* * @author Christopher Swenson * @author Louis Wasserman */ @NullUnmarked final class BenchmarkHelpers { private static final String WHITESPACE_CHARACTERS = "\u00a0\u180e\u202f\t\n\013\f\r \u0085" + "\u1680\u2028\u2029\u205f\u3000\u2000\u2001\u2002\u2003\u2004\u2005" + "\u2006\u2007\u2008\u2009\u200a"; private static final String ASCII_CHARACTERS; static { int spaceInAscii = 32;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/SamrAliasHandle.java
* @throws IOException if an I/O error occurs during handle creation */ public SamrAliasHandle(final DcerpcHandle handle, final SamrDomainHandle domainHandle, final int access, final int rid) throws IOException { this.handle = handle; final MsrpcSamrOpenAlias rpc = new MsrpcSamrOpenAlias(domainHandle, access, rid, this); handle.sendrecv(rpc); if (rpc.retval != 0) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/FacetResponse.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
* * @return the BucketOrder instance representing the sort configuration */ public BucketOrder getBucketOrder() { if (StringUtil.isNotBlank(sort)) { final String[] values = sort.split("\\."); final boolean asc; if (values.length > 1) { asc = !"desc".equalsIgnoreCase(values[1]); } else { asc = true; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactFactoryRequest.java
implements ArtifactFactoryRequest { private final String groupId; private final String artifactId; private final String version; private final String classifier; private final String extension; private final String type; @SuppressWarnings("checkstyle:ParameterNumber")
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 7.3K bytes - Viewed (0)