- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 2,083 for return (0.04 sec)
-
src/main/java/org/codelibs/core/lang/GenericsUtil.java
* </p> * * @param type * the type to analyze * @return the element type of the set, or null if not a parameterized set */ public static Type getElementTypeOfSet(final Type type) { if (!isTypeOf(type, Set.class)) { return null; } return getGenericParameter(type, 0); } /**Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/JAASAuthenticatorTest.java
a.setSubject(new Subject()); return a; } case WITH_CONFIG: { // Use the constructor that sets a StaticJAASConfiguration to exercise that branch return new JAASAuthenticator(new HashMap<String, String>(), "DOM", "user", "pass"); } case DEFAULT_NO_PS: default: return new JAASAuthenticator(); } } @Test
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
} /** * Returns the Fess configuration instance. * * @return the Fess configuration */ @Override public FessConfig getFessConfig() { return fessConfig; } /** * Returns the logger instance for this class. * * @return the logger instance */ @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 54.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayUtil.java
*/ public static char[] asCharArray(final char... elements) { return elements; } /** * Returns an array of {@literal byte}. * * @param elements the elements of the array * @return the array */ public static byte[] asByteArray(final byte... elements) { return elements; } /** * Returns an array of {@literal short}. *Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 41.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultImpl.java
* * @see org.codelibs.fess.crawler.entity.AccessResult#getUrl() */ @Override public String getUrl() { return url; } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.entity.AccessResult#setUrl(java.lang.String) */ @Override public void setUrl(final String url) { this.url = url; } /*Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java
*/ public String getToken() { return token; } /** * Returns the segmentation. * * @return The segmentation. */ public String getSegmentation() { return segmentation; } /** * Returns the reading. * * @return The reading. */ public String getReading() { return reading;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.3K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
* @return the logon count */ public short getLogonCount() { return this.logonCount; } /** * Returns the number of failed password attempts for this user. * @return the bad password count */ public short getBadPasswordCount() { return this.badPasswordCount; } /** * Returns the user's account name. * @return the user nameRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactory.java
* @return A {@link ParameterizedClassDesc} that represents the return type of the method. */ public static ParameterizedClassDesc createParameterizedClassDesc(final Method method, final Map<TypeVariable<?>, Type> map) { assertArgumentNotNull("method", method); assertArgumentNotNull("map", map); return createParameterizedClassDesc(method.getGenericReturnType(), map); } /**Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 7.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java
this.client = client; } /** * Returns the maximum retry count. * @return The maximum retry count. */ public int getMaxRetryCount() { return maxRetryCount; } /** * Sets the maximum retry count. * @param maxRetryCount The maximum retry count. */ public void setMaxRetryCount(final int maxRetryCount) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
if (urlQueue == null || StringUtil.isBlank(urlQueue.getUrl()) || crawlerContext.getMaxDepth() >= 0 && urlQueue.getDepth() > crawlerContext.getMaxDepth()) { return false; } // url filter if (crawlerContext.urlFilter.match(urlQueue.getUrl())) { return true; } return false; } /**
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 20.4K bytes - Viewed (0)