Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,447 for resolved (0.21 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

                            || getBaseVersion().equals(LATEST_VERSION));
        }
    
        @Override
        public void setResolved(boolean resolved) {
            this.resolved = resolved;
        }
    
        @Override
        public boolean isResolved() {
            return resolved;
        }
    
        @Override
        public void setResolvedVersion(String version) {
            this.version = version;
            // retain baseVersion
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Feb 09 19:20:54 GMT 2024
    - 14.5K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/api/services/model/PathTranslator.java

     * under the License.
     */
    package org.apache.maven.api.services.model;
    
    import java.nio.file.Path;
    
    /**
     * Resolves relative paths against a specific base directory.
     *
     */
    public interface PathTranslator {
    
        /**
         * Resolves the specified path against the given base directory. The resolved path will be absolute and uses the
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/NetbiosAddress.java

         */
        boolean isActive ( CIFSContext tc ) throws UnknownHostException;
    
    
        /**
         * Determines if this address is set to be permanent.
         * 
         * @param tc
         *            context to use
         * @return whether this address is permanent
         *
         * @throws UnknownHostException
         *             if the host cannot be resolved to find out.
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

                    if (artifact.getFile() == null) {
                        Artifact resolved = map.get(artifact.getDependencyConflictId());
                        if (resolved != null) {
                            artifact.setFile(resolved.getFile());
                            artifact.setDependencyTrail(resolved.getDependencyTrail());
                            artifact.setResolvedVersion(resolved.getVersion());
                            artifact.setResolved(true);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/AbstractVersionTransformation.java

    import org.apache.maven.artifact.repository.metadata.SnapshotArtifactRepositoryMetadata;
    import org.apache.maven.artifact.repository.metadata.Versioning;
    import org.apache.maven.artifact.resolver.ArtifactNotFoundException;
    import org.apache.maven.artifact.resolver.ArtifactResolutionException;
    import org.apache.maven.repository.legacy.WagonManager;
    import org.codehaus.plexus.logging.AbstractLogEnabled;
    
    /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/aether/ReverseTreeRepositoryListener.java

                    break;
                }
                trace = trace.getParent();
            }
            return collectStepTrace;
        }
    
        /**
         * The event "artifact resolved" if fired WHENEVER an artifact is resolved, BUT it happens also when an artifact
         * descriptor (model, the POM) is being built, and parent (and parent of parent...) is being asked for. Hence, this
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Apr 12 11:08:37 GMT 2023
    - 9.8K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelResolver.java

    import org.apache.maven.api.model.Parent;
    
    /**
     * Resolves a POM from its coordinates.
     */
    public interface ModelResolver extends Service {
    
        /**
         * Tries to resolve the POM for the specified parent coordinates possibly updating {@code parent}.
         *
         * @param session The session to use to resolve the model, must not be {@code null}.
         * @param parent The parent coordinates to resolve, must not be {@code null}.
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SID.java

         * <p>
         * Specifically, if the SID has
         * been resolved and it is not a domain SID or builtin account,
         * the full DOMAIN\name form of the account will be
         * returned (e.g. MYDOM\alice or MYDOM\Domain Users).
         * If the SID has been resolved but it is is a domain SID,
         * only the domain name will be returned (e.g. MYDOM).
         * If the SID has been resolved but it is a builtin account,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 26.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     *
     * @throws UnknownHostException if the host cannot be resolved to find out.
     */ 
    
        public int getNodeType() throws UnknownHostException {
            checkData();
            return nodeType;
        }
    
    /** 
     * Determines if this address in the process of being deleted.
     *
     * @throws UnknownHostException if the host cannot be resolved to find out.
     */ 
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

            // The root artifact may, or may not be resolved so we need to check before we attempt to resolve.
            // This is often an artifact like a POM that is taken from disk and we already have hold of the
            // file reference. But this may be a Maven Plugin that we need to resolve from a remote repository
            // as well as its dependencies.
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 24.8K bytes
    - Viewed (0)
Back to top