- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 377 for curLeft (0.18 sec)
-
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
*/ protected String buildThrowableMessage(final Throwable t) { final StringBuilder buf = new StringBuilder(100); Throwable current = t; while (current != null) { buf.append(current.getLocalizedMessage()).append(' '); current = current.getCause(); } return buf.toString(); } /** * Checks if a checkbox value represents an enabled state.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java
searchPaging(data, form); }); } /** * Returns to the failure URL list page with the current search form. * * @param form the search form containing current search parameters * @return HTML response for the failure URL list page */ @Execute @Secured({ ROLE, ROLE + VIEW })
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10K bytes - Viewed (0) -
guava/src/com/google/common/collect/DiscreteDomain.java
*/ C offset(C origin, long distance) { C current = origin; checkNonnegative(distance, "distance"); for (long i = 0; i < distance; i++) { current = next(current); if (current == null) { throw new IllegalArgumentException( "overflowed computing offset(" + origin + ", " + distance + ")"); } } return current; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
public boolean existNextPage; /** Flag indicating if there is a previous page */ public boolean existPrevPage; /** Starting record number for current page */ public String currentStartRecordNumber; /** Ending record number for current page */ public String currentEndRecordNumber; /** List of page numbers for pagination */ public List<String> pageNumberList;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/api/admin/BaseSearchBody.java
if (size != null) { return size; } return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger(); } /** * Gets the current page number for search results. * @return The current page number. */ public int getCurrentPageNumber() { if (page != null) { return page; } return Constants.DEFAULT_ADMIN_PAGE_NUMBER; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/DiscreteDomain.java
*/ C offset(C origin, long distance) { C current = origin; checkNonnegative(distance, "distance"); for (long i = 0; i < distance; i++) { current = next(current); if (current == null) { throw new IllegalArgumentException( "overflowed computing offset(" + origin + ", " + distance + ")"); } } return current; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 10.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Interceptor.kt
* * Other exception types cancel the current call: * * * For synchronous calls made with [Call.execute], the exception is propagated to the caller. * * * For asynchronous calls made with [Call.enqueue], an [IOException] is propagated to the caller * indicating that the call was canceled. The interceptor's exception is delivered to the current
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/JobHelper.java
} /** * Sets the job runtime for the current thread. * * @param runtime the job runtime to set */ public void setJobRuntime(final LaJobRuntime runtime) { jobRuntimeLocal.set(runtime); } /** * Gets the job runtime for the current thread. * * @return the job runtime for the current thread */ public LaJobRuntime getJobRuntime() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java
} if (value != null) { return Float.parseFloat(value.toString()); } return 0.0f; } /** * Gets the current boost expression. * * @return the boost expression string */ public String getBoostExpression() { return boostExpression; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/DataStoreParams.java
return defaultValue; } /** * Creates a new DataStoreParams instance with a copy of the current parameters. * This provides an independent copy that can be modified without affecting the original. * * @return a new DataStoreParams instance containing a copy of the current parameters */ public DataStoreParams newInstance() { return new DataStoreParams(params); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0)