- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 156 for SNAPSHOT (0.04 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/internal/cache/DiskLruCacheTest.kt
creator.setString(0, "A") creator.setString(1, "B") creator.commit() cache.close() createNewCache() val snapshot = cache["k1"]!! snapshot.assertValue(0, "A") snapshot.assertValue(1, "B") snapshot.close() } @ParameterizedTest @ArgumentsSource(FileSystemParamProvider::class)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 75.7K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/ArtifactUtilsTest.java
assertEquals("1.2.3", ArtifactUtils.toSnapshotVersion("1.2.3")); assertEquals("1.2.3-SNAPSHOT", ArtifactUtils.toSnapshotVersion("1.2.3-SNAPSHOT")); assertEquals("1.2.3-SNAPSHOT", ArtifactUtils.toSnapshotVersion("1.2.3-20090413.094722-2")); assertEquals("1.2.3-20090413X094722-2", ArtifactUtils.toSnapshotVersion("1.2.3-20090413X094722-2")); } /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
maven-tests/pom.xml
</properties> <dependencyManagement> <dependencies> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp-bom</artifactId> <version>[5.2.0-SNAPSHOT,6.0.0-SNAPSHOT)</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>junit</groupId>
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Jul 13 08:32:01 UTC 2025 - 1.8K bytes - Viewed (0) -
README.md
## Snapshots and Documentation Snapshots of Guava built from the `master` branch are available through Maven using version `999.0.0-HEAD-jre-SNAPSHOT`, or `999.0.0-HEAD-android-SNAPSHOT` for the Android flavor. [Snapshot API Javadoc][guava-snapshot-api-docs] as well as [Snapshot API Diffs][guava-snapshot-api-diffs] are also available. Another easy way to get to the Javadoc is to open
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Aug 05 15:30:14 UTC 2025 - 6.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/AbstractCacheTest.java
cache.invalidateAll(toInvalidate); assertEquals(toInvalidate, invalidated); } public void testEmptySimpleStats() { StatsCounter counter = new SimpleStatsCounter(); CacheStats stats = counter.snapshot(); assertEquals(0, stats.requestCount()); assertEquals(0, stats.hitCount()); assertThat(stats.hitRate()).isEqualTo(1.0); assertEquals(0, stats.missCount());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 6.3K bytes - Viewed (0) -
util/deploy_snapshot.sh
#!/bin/bash # see https://coderwall.com/p/9b_lfq set -e -u function mvn_deploy() { ./mvnw clean deploy -DskipTests=true "$@" } echo "Publishing Maven snapshot..." mvn_deploy mvn_deploy -f android/pom.xml
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Oct 16 20:48:20 UTC 2023 - 245 bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractService.java
case NEW: snapshot = new StateSnapshot(TERMINATED); enqueueTerminatedEvent(NEW); break; case STARTING: snapshot = new StateSnapshot(STARTING, true, null); enqueueStoppingEvent(STARTING); doCancelStart(); break; case RUNNING: snapshot = new StateSnapshot(STOPPING);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 20.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java
public static final String MAVEN_VERSION_PATCH = "maven.version.patch"; /** * Maven snapshot: contains "true" if this Maven is a snapshot version. * * @since 4.0.0 */ @Config(readOnly = true, source = Config.Source.SYSTEM_PROPERTIES) public static final String MAVEN_VERSION_SNAPSHOT = "maven.version.snapshot"; /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jul 25 11:08:20 UTC 2025 - 25.4K bytes - Viewed (0) -
compat/maven-artifact/src/site/apt/index.apt
+----+ $ java -jar maven-artifact-*.jar 3.2.4-alpha-1 3.2.4-SNAPSHOT 3.2.4.0 Display parameters as parsed by Maven (in canonical form) and comparison result: 1. 3.2.4-alpha-1 == 3.2.4.alpha.1 3.2.4-alpha-1 < 3.2.4-SNAPSHOT 2. 3.2.4-SNAPSHOT == 3.2.4.snapshot 3.2.4-SNAPSHOT < 3.2.4.0 3. 3.2.4.0 == 3.2.4 +----+ * Useful entry points
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Artifact.java
* those keywords are replaced by, for example, the actual timestamp. * * @see ArtifactCoordinates#getVersionConstraint() */ @Nonnull Version getVersion(); /** * {@return the version or meta-version of the artifact}. * A meta-version is a version suffixed with the {@code SNAPSHOT} keyword.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 4.6K bytes - Viewed (0)