- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 699 for currentVm (0.05 sec)
-
src/main/java/org/codelibs/fess/app/pager/RolePager.java
} /** * Gets the current page number. * @return The current page number. */ public int getCurrentPageNumber() { if (currentPageNumber <= 0) { currentPageNumber = getDefaultCurrentPageNumber(); } return currentPageNumber; } /** * Sets the current page number. * @param currentPageNumber The current page number.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java
} /** * Gets the current page number. * * @return The current page number. */ public int getCurrentPageNumber() { if (currentPageNumber <= 0) { currentPageNumber = getDefaultCurrentPageNumber(); } return currentPageNumber; } /** * Sets the current page number. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java
void omitForCycle(Artifact artifact); /** * This event means that the artifactScope has NOT been updated to a farther node artifactScope because current * node is in the first level pom * * @param artifact current node artifact, the one in the first level pom * @param ignoredScope artifactScope that was ignored because artifact was in first level pom */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Mar 30 23:08:36 UTC 2025 - 2.8K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/cache/ChainBenchmark.java
segment = cache.segments[0]; chain = null; for (int i = 0; i < length; i++) { Object key = new Object(); // TODO(b/145386688): This access should be guarded by 'this.segment', which is not currently // held chain = segment.newEntry(key, cache.hash(key), chain); if (i == 0) { head = chain; } } } @SuppressWarnings("GuardedBy") @Benchmark
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java
*/ public void setPageSize(final int pageSize) { this.pageSize = pageSize; } /** * Gets the current page number. * If not set or invalid, returns the default current page number. * * @return the current page number */ public int getCurrentPageNumber() { if (currentPageNumber <= 0) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/JvmUtil.java
} /** * Filters JVM options based on the current Java version. * Options can be prefixed with version numbers to specify compatibility. * Format: "version:option" or "version-:option" (for version and above). * * @param values the array of JVM options to filter * @return the filtered array of JVM options applicable to the current Java version */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java
*/ public void setPageSize(final int pageSize) { this.pageSize = pageSize; } /** * Gets the current page number being displayed. * If the current page number is not set or is invalid, returns the default page number. * * @return the current page number */ public int getCurrentPageNumber() { if (currentPageNumber <= 0) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java
} /** * Gets the current page number. * @return The current page number. */ public int getCurrentPageNumber() { if (currentPageNumber <= 0) { currentPageNumber = getDefaultCurrentPageNumber(); } return currentPageNumber; } /** * Sets the current page number. * @param currentPageNumber The current page number.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Dispatcher.kt
if (!isRunning && idleCallback != null) { idleCallback.run() } } /** Returns a snapshot of the calls currently awaiting execution. */ @Synchronized fun queuedCalls(): List<Call> = readyAsyncCalls.map { it.call }.unmodifiable() /** Returns a snapshot of the calls currently being executed. */ @Synchronized fun runningCalls(): List<Call> = (runningSyncCalls + runningAsyncCalls.map { it.call }).unmodifiable()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 8.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/ProjectDependenciesResolver.java
* @param scopesToResolve The dependency scopes that should be resolved, may be {@code null}. * @param session The current build session, must not be {@code null}. * @return The transitive dependencies of the specified project that match the requested scopes, never {@code null}. * @throws ArtifactResolutionException in case of resolution issue
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0)