- Sort Score
- Num 10 results
- Language All
Results 71 - 80 of 1,037 for currency (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
guava/src/com/google/common/collect/LinkedListMultimap.java
} previous = current = next; next = next.next; nextIndex++; return current; } @Override public void remove() { checkForConcurrentModification(); checkState(current != null, "no calls to next() since the last call to remove()"); if (current != next) { // after call to next() previous = current.previous; nextIndex--;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 27K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionDownloadPluginFuncTest.groovy
new File(bwcSubProjectFolder, 'current-marker.txt') << "current" new File(bwcSubProjectFolder, 'build.gradle') << """ import org.gradle.api.internal.artifacts.ArtifactAttributes; apply plugin:'distribution' def buildTar = tasks.register("buildTar", Tar) { from('current-marker.txt') archiveExtension = "tar.gz"
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 6.7K bytes - Click Count (0) -
compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml
</parent> ]]></configuration> <description> This is the MavenProject instance for the parent of the current POM. </description> </expression> <expression> <syntax>project.file</syntax> <description> This is the File instance that refers to the location of the current POM on disk. </description> </expression> <expression> <syntax>project.artifacts</syntax>Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 5.6K bytes - Click Count (0) -
apache-maven/src/assembly/maven/bin/JvmConfigParser.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Dec 10 16:40:06 GMT 2025 - 6.4K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+intake.yml
current-parameters: true git-revision: true - name: elastic+elasticsearch+%BRANCH%+intake+multijob+bwc kill-phase-on: NEVER current-parameters: true git-revision: true - name: elastic+elasticsearch+%BRANCH%+intake+multijob+rest-compat kill-phase-on: NEVER current-parameters: trueCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu May 06 21:46:09 GMT 2021 - 2.3K bytes - Click Count (0) -
build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/RestTestsFromSnippetsTask.groovy
current.println(" - skip:") current.println(" features: ") current.println(" - default_shards") current.println(" - stash_in_key") current.println(" - stash_in_path") current.println(" - stash_path_replace") current.println(" - warnings")
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 19.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java
*/ public void setPageSize(final int pageSize) { this.pageSize = pageSize; } /** * Gets the current page number being displayed. * If not set or invalid, returns the default current page number. * * @return the current page number */ public int getCurrentPageNumber() { if (currentPageNumber <= 0) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java
} /** * Gets the current page number being displayed. * * @return The current page number */ public int getCurrentPageNumber() { if (currentPageNumber <= 0) { currentPageNumber = getDefaultCurrentPageNumber(); } return currentPageNumber; } /** * Sets the current page number. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.8K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AtomicDouble.java
double nextVal = currentVal + delta; long next = doubleToRawLongBits(nextVal); if (value.compareAndSet(current, next)) { return nextVal; } } } /** * Returns the String representation of the current value. * * @return the String representation of the current value */ @Override public String toString() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 7.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
} /** * Returns the current page number. * * @return The current page number. */ public int getCurrentPageNumber() { if (currentPageNumber <= 0) { currentPageNumber = getDefaultCurrentPageNumber(); } return currentPageNumber; } /** * Sets the current page number. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.1K bytes - Click Count (0)