- Sort Score
- Result 10 results
- Languages All
Results 2671 - 2680 of 4,663 for returned (0.6 sec)
-
src/main/java/jcifs/internal/smb1/net/SmbShareInfo.java
*/ switch (this.type & 0xFFFF) { case 1: return SmbConstants.TYPE_PRINTER; case 3: return SmbConstants.TYPE_NAMED_PIPE; } return SmbConstants.TYPE_SHARE; } @Override public int getAttributes() { return SmbConstants.ATTR_READONLY | SmbConstants.ATTR_DIRECTORY; } @OverrideRegistered: 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/jcifs/internal/smb2/create/LeaseV2CreateContextResponse.java
} /** * Gets the lease flags from the V2 server response * @return the lease flags */ public int getLeaseFlags() { return leaseFlags; } /** * Gets the parent lease key from the V2 response * @return the parent lease key */ public Smb2LeaseKey getParentLeaseKey() { return parentLeaseKey; } /**Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/LongConversionUtil.java
if (StringUtil.isEmpty(s)) { return null; } return Long.valueOf(DecimalFormatUtil.normalize(s)); } /** * Converts the given object to a {@literal long}. * * @param o * the object to convert * @return the converted {@literal long} */ public static long toPrimitiveLong(final Object o) { return toPrimitiveLong(o, null); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
* * @param field the field name to check * @return true if the field can be used for sorting, false otherwise */ protected boolean isSortField(final String field) { for (final String f : sortFields) { if (f.equals(field)) { return true; } } return false; } /**Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java
* @return The default current page number. */ protected int getDefaultCurrentPageNumber() { return Constants.DEFAULT_ADMIN_PAGE_NUMBER; } /** * Gets the default page size from configuration. * @return The default page size. */ protected int getDefaultPageSize() { return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java
* * @return The default current page number */ protected int getDefaultCurrentPageNumber() { return DEFAULT_CURRENT_PAGE_NUMBER; } /** * Gets the total number of records. * * @return The total record count */ public int getAllRecordCount() { return allRecordCount; } /**Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/util/Crypto.java
* @return MD4 digest instance */ public static MessageDigest getMD4() { try { return MessageDigest.getInstance("MD4", getProvider()); } catch (final NoSuchAlgorithmException e) { throw new CIFSUnsupportedCryptoException(e); } } /** * Get an MD5 message digest instance. * @return MD5 digest instance */Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsScheduledJobCB.java
public ScheduledJobDbm asDBMeta() { return ScheduledJobDbm.getInstance(); } @Override public String asTableDbName() { return "scheduled_job"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsWebAuthenticationCB.java
public WebAuthenticationDbm asDBMeta() { return WebAuthenticationDbm.getInstance(); } @Override public String asTableDbName() { return "web_authentication"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverRequest.java
this.coordinates = coordinates; return this; } @Nonnull public ArtifactResolverRequestBuilder repositories(List<RemoteRepository> repositories) { this.repositories = repositories; return this; } @Nonnull public ArtifactResolverRequest build() {Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 5.6K bytes - Viewed (0)