- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 743 for resolves (0.13 sec)
-
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
String groupId, String artifactId, String version, String classifier, String extension) { Path repo = getProjectLocalRepo(); return repo.resolve(groupId) .resolve(artifactId) .resolve(version) .resolve(artifactId + "-" + version + (classifier != null && !classifier.isEmpty() ? "-" + classifier : "")
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.3K bytes - Viewed (0) -
impl/maven-core/plugin-manager.txt
/* * * h2. Concerns for the plugin manager * * h3. resolving the dependencies of a plugin - these could be resolved remotely at runtime or, - * they could be resolved from a local repository - I think we need a simple dependency model here * that is more mercury related and not Maven related i.e. no POMs - workspace resolver - we need * tools to pre-populate this repository * * h3. create an isolated classloader *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.9K bytes - Viewed (0) -
src/test/java/jcifs/tests/DfsTest.java
}; dfs.cache(context, "\\" + hostname + "\\" + root + path, dr); DfsReferralData ref = dfs.resolve(context, hostname, root, path + "lalala\\foo\\"); assertNotNull(ref); DfsReferralData ref2 = dfs.resolve(context, hostname, root, path + "lalala\\foo"); assertNotNull(ref2); } /** * @return * @throws URISyntaxException
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 01 09:46:04 UTC 2020 - 13.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java
} /** {@inheritDoc} */ public int compareTo(Artifact a) { return artifact.compareTo(a); } /** {@inheritDoc} */ public void setResolved(boolean resolved) { artifact.setResolved(resolved); } /** {@inheritDoc} */ public boolean isResolved() { return artifact.isResolved(); } /** {@inheritDoc} */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Resolution.java
* {@code List<}{@link org.apache.maven.api.Node Node}{@code >}, * and {@code pathScope != ""}, the dependencies will be <i>flattened</i>. * Else the dependencies will be <i>resolved</i> and {@code pathScope} must be non empty, * and the field type can be {@link org.apache.maven.api.Node Node}, * {@code List<}{@link org.apache.maven.api.Node Node}{@code >},
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Jun 11 07:23:04 UTC 2024 - 3.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java
import org.apache.maven.artifact.repository.ArtifactRepositoryPolicy; import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout; import org.apache.maven.artifact.resolver.ArtifactResolutionRequest; import org.apache.maven.artifact.resolver.ArtifactResolutionResult; import org.apache.maven.bridge.MavenRepositorySystem; import org.apache.maven.model.Dependency; import org.apache.maven.model.Plugin;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Dfs.java
/* Store references to the map and key so that * SmbFile.resolveDfs can re-insert the dr list with * the dr that was successful so that subsequent * attempts to resolve DFS use the last successful * referral first. */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
import org.apache.maven.artifact.resolver.ArtifactResolutionException; import org.apache.maven.artifact.resolver.MultipleArtifactsNotFoundException; import org.apache.maven.artifact.resolver.filter.AndArtifactFilter; import org.apache.maven.artifact.resolver.filter.ArtifactFilter; import org.apache.maven.artifact.resolver.filter.ExclusionArtifactFilter;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0) -
cmd/global-heal.go
return } send(healEntryDone(entry.name)) // Wait and proceed if there are active requests waitForLowHTTPReq() } // How to resolve partial results. resolver := metadataResolutionParams{ dirQuorum: 1, objQuorum: 1, bucket: bucket, } err = listPathRaw(ctx, listPathRawOptions{ disks: disks,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:58:27 UTC 2024 - 16.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
} @Override public void resolveCredential(final LoginCredentialResolver resolver) { resolver.resolve(OpenIdConnectCredential.class, credential -> OptionalEntity.of(credential.getUser())); } @Override public ActionResponse getResponse(final SsoResponseType responseType) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 12.3K bytes - Viewed (0)