- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 354 for Snapshot (0.11 sec)
-
compat/maven-model-builder/src/test/resources/poms/depmgmt/root-dep-last.xml
<groupId>test</groupId> <artifactId>test</artifactId> <version>0.1-SNAPSHOT</version> <dependencyManagement> <dependencies> <dependency> <groupId>test</groupId> <artifactId>import</artifactId> <version>0.1-SNAPSHOT</version> <type>pom</type> <scope>import</scope> </dependency>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 951 bytes - Viewed (0) -
compat/maven-resolver-provider/src/test/resources/repo/org/apache/maven/its/dep-mng5459/0.4.0-SNAPSHOT/maven-metadata.xml
modelVersion="1.1.0"> <groupId>org.apache.maven.its</groupId> <artifactId>dep-mng5459</artifactId> <version>0.4.0-SNAPSHOT</version> <versioning> <snapshot> <timestamp>20130404.090532</timestamp> <buildNumber>2</buildNumber> </snapshot> <lastUpdated>20130404093657</lastUpdated> <snapshotVersions> <snapshotVersion> <extension>pom</extension>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
guava/src/com/google/common/math/PairedStatsAccumulator.java
} /** Returns an immutable snapshot of the current statistics. */ public PairedStats snapshot() { return new PairedStats(xStats.snapshot(), yStats.snapshot(), sumOfProductsOfDeltas); } /** Returns the number of pairs in the dataset. */ public long count() { return xStats.count(); } /** Returns an immutable snapshot of the statistics on the {@code x} values alone. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 17:02:53 UTC 2023 - 10.3K bytes - Viewed (0) -
tests/test_tutorial/test_header_param_models/test_tutorial001.py
import importlib import pytest from dirty_equals import IsDict from fastapi.testclient import TestClient from inline_snapshot import snapshot from tests.utils import needs_py39, needs_py310 @pytest.fixture( name="client", params=[ "tutorial001", pytest.param("tutorial001_py39", marks=needs_py39), pytest.param("tutorial001_py310", marks=needs_py310), "tutorial001_an",
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 8.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepPromote.kt
cleanCheckout = false ) { init { id("Promotion_SnapshotFromQuickFeedbackStepPromote") name = "Nightly Snapshot (from QuickFeedback) - Promote" description = "Promotes a previously built distribution on this agent on '${branch.branchName}' from Quick Feedback as a new nightly snapshot. This build checks out gradle-promote, so don't be misled by the 'master' branch." steps { buildStep(
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Dec 09 14:10:43 UTC 2022 - 1.9K bytes - Viewed (0) -
compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionRangeTest.java
} @Test void testLowerBoundInclusiveUpperBoundInclusive() { VersionRange range = parseValid("[1,2]"); assertContains(range, "1"); assertContains(range, "1.1-SNAPSHOT"); assertContains(range, "2"); assertEquals(range, parseValid(range.toString())); } @Test void testLowerBoundInclusiveUpperBoundExclusive() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.8K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/depmgmt/root-distance-explicit.xml
<groupId>test</groupId> <artifactId>test</artifactId> <version>0.1-SNAPSHOT</version> <dependencyManagement> <dependencies> <dependency> <groupId>test</groupId> <artifactId>other</artifactId> <version>0.1-SNAPSHOT</version> <type>pom</type> <scope>import</scope> </dependency>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java
assertTrue(range.containsVersion(new DefaultArtifactVersion("1.1-SNAPSHOT"))); assertTrue(range.containsVersion(new DefaultArtifactVersion("1.2-SNAPSHOT"))); range = VersionRange.createFromVersionSpec("[1.0-SNAPSHOT,1.2]"); assertTrue(range.containsVersion(new DefaultArtifactVersion("1.0-SNAPSHOT")));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 44.3K bytes - Viewed (0) -
tests/test_tutorial/test_cookie_param_models/test_tutorial002.py
import importlib import pytest from dirty_equals import IsDict from fastapi.testclient import TestClient from inline_snapshot import snapshot from tests.utils import needs_py39, needs_py310, needs_pydanticv1, needs_pydanticv2 @pytest.fixture( name="client", params=[ pytest.param("tutorial002", marks=needs_pydanticv2), pytest.param("tutorial002_py310", marks=[needs_py310, needs_pydanticv2]),
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 8.6K 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 Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 16 20:48:20 UTC 2023 - 245 bytes - Viewed (0)