- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 219 for snapshot (0.04 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java
ArtifactRepository createArtifactRepository( String id, String url, ArtifactRepositoryLayout repositoryLayout, ArtifactRepositoryPolicy snapshots, ArtifactRepositoryPolicy releases); /** * Calculates the effective repositories for the given input repositories which are assumed to be already mirrored
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java
/** * Function code for server-side copy chunk operation */ public static final int FSCTL_SRV_COPYCHUNK = 0x001440F2; /** * Function code to enumerate volume shadow copy snapshots */ public static final int FSCTL_SRV_ENUMERATE_SNAPSHOTS = 0x00144064; /** * Function code to request a resume key for server-side copy */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/deployer/DefaultArtifactDeployer.java
request.addArtifact(mainArtifact); String versionKey = artifact.getGroupId() + ':' + artifact.getArtifactId(); String snapshotKey = null; if (artifact.isSnapshot()) { snapshotKey = versionKey + ':' + artifact.getBaseVersion(); request.addMetadata(relatedMetadata.get(snapshotKey)); } request.addMetadata(relatedMetadata.get(versionKey));
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.4K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java
import java.util.Map; import java.util.regex.Matcher; import org.apache.maven.artifact.versioning.VersionRange; /** * ArtifactUtils */ public final class ArtifactUtils { public static boolean isSnapshot(String version) { if (version != null) { if (version.regionMatches( true, version.length() - Artifact.SNAPSHOT_VERSION.length(),
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilCommon.kt
* typically false on Windows. * * If this returns false we won't permit simultaneous reads and writes. When writes commit we need * to delete the previous snapshots, and that won't succeed if the file is open. (We do permit * multiple simultaneous reads.) * * @param file a file in the directory to check. This file shouldn't already exist! */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 10.1K bytes - Viewed (0) -
.github/CODEOWNERS
platforms/core-execution/build-cache-spi/ @gradle/bt-cortex @gradle/dv-integrations-team platforms/core-execution/hashing/ @gradle/bt-cortex @gradle/dv-integrations-team platforms/core-execution/snapshots/ @gradle/bt-cortex @gradle/dv-integrations-team # Other core modules subprojects/core # @gradle/bt-cortex to be eventually moved to other core modules
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Mon Jul 28 01:45:03 UTC 2025 - 10.9K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
<association> <type>RepositoryPolicy</type> </association> </field> <field> <name>snapshots</name> <version>1.0.0+</version> <description> How to handle downloading of snapshots from this repository </description> <association> <type>RepositoryPolicy</type> </association>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 33.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java
ArtifactRepositoryPolicy policy = artifact.isSnapshot() ? repository.getSnapshots() : repository.getReleases(); if (!policy.isEnabled()) { logger.debug( "Skipping disabled repository " + repository.getId() + " for resolution of " + artifact.getId()); } else if (artifact.isSnapshot() || !artifact.getFile().exists()) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 29.9K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java
this.groupId = groupId; } @Override public void setArtifactId(String artifactId) { this.artifactId = artifactId; } @Override public boolean isSnapshot() { return getBaseVersion() != null && (getBaseVersion().endsWith(SNAPSHOT_VERSION) || getBaseVersion().equals(LATEST_VERSION)); } @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.8K bytes - Viewed (0)