- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 219 for snapshot (0.07 sec)
-
guava/src/com/google/common/graph/Graphs.java
* graph with an edge connecting node A to node B if node B is {@link #reachableNodes(Graph, * Object) reachable} from node A. * * <p>This is a "snapshot" based on the current topology of {@code graph}, rather than a live view * of the transitive closure of {@code graph}. In other words, the returned {@link Graph} will not * be updated after modifications to {@code graph}.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Aug 01 00:26:14 UTC 2025 - 23.3K bytes - Viewed (0) -
build.gradle.kts
configure<SpotlessExtension> { kotlin { target("**/*.kt") targetExclude("**/kotlinTemplates/**/*.kt") ktlint() } } allprojects { group = "com.squareup.okhttp3" version = "5.2.0-SNAPSHOT" repositories { mavenCentral() google() } tasks.register("downloadDependencies") { description = "Download all dependencies to the Gradle cache" doLast {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 11.3K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java
createArtifactSpec("b", "1.0-SNAPSHOT"); ArtifactResolutionResult res = collect(a); assertTrue(res.hasVersionRangeViolations()); /* * try { ArtifactResolutionResult res = collect( a ); fail( "Expected b not to resolve: " + res ); } catch ( * OverConstrainedVersionException e ) { assertTrue( e.getMessage().indexOf( "[1.0-SNAPSHOT]" ) <
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 42.7K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilterStrategies.java
} /** * Careful here: if threads are mutating the atomicLongArray while this method is executing, the * final long[] will be a "rolling snapshot" of the state of the bit array. This is usually good * enough, but should be kept in mind. */ public static long[] toPlainArray(AtomicLongArray atomicLongArray) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.6K bytes - Viewed (0) -
README.md
### Installation Add the dependency to your `pom.xml`: ```xml <dependency> <groupId>org.codelibs.fess</groupId> <artifactId>fess-suggest</artifactId> <version>15.2.0-SNAPSHOT</version> </dependency> ``` ### Basic Usage #### 1. Create Suggester Instance ```java import org.codelibs.fess.suggest.Suggester; import org.opensearch.client.Client;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun Aug 31 03:31:14 UTC 2025 - 12.1K bytes - Viewed (1) -
guava-gwt/pom.xml
<repository> <id>sonatype-google-snapshots</id> <name>sonatype-google-snapshots</name> <url>https://oss.sonatype.org/content/repositories/google-snapshots/</url> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>sonatype-snapshots</id> <name>sonatype-snapshots</name>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 19.4K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ServiceManager.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 33.2K bytes - Viewed (1) -
android/guava/src/com/google/common/cache/Cache.java
/** Discards all entries in the cache. */ void invalidateAll(); /** Returns the approximate number of entries in this cache. */ long size(); /** * Returns a current snapshot of this cache's cumulative statistics, or a set of default values if * the cache is not recording statistics. All statistics begin at zero and never decrease over the * lifetime of the cache. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 8.3K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvn.cmd
if not exist "%YJPLIB%" ( echo Error: Unable to autodetect the YJP library location. Please set YJPLIB variable >&2 exit /b 1 ) set "INTERNAL_MAVEN_OPTS=-agentpath:%YJPLIB%=onexit=snapshot,onexit=memory,tracing,onlylocal %INTERNAL_MAVEN_OPTS%" ) else if "%~1"=="--enc" ( set "MAVEN_MAIN_CLASS=org.apache.maven.cling.MavenEncCling" ) else if "%~1"=="--shell" (
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 24 09:49:07 UTC 2025 - 9.6K bytes - Viewed (3) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
"-s", "%additional.gradle.parameters%", if (isContinue) "--continue" else "", ) fun Dependencies.dependsOn(buildTypeId: RelativeId) { dependency(buildTypeId) { snapshot { onDependencyFailure = FailureAction.FAIL_TO_START onDependencyCancel = FailureAction.FAIL_TO_START } } } fun Dependencies.compileAllDependency(compileAllId: String) {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Sep 10 01:37:13 UTC 2025 - 15K bytes - Viewed (0)