Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 262 for Resolution (0.04 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

    import org.apache.maven.api.PathType;
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * The result of a dependency resolution request.
     *
     * @since 4.0.0
     * @see DependencyResolver#resolve(DependencyResolverRequest)
     */
    @Experimental
    public interface DependencyResolverResult extends Result<DependencyResolverRequest> {
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Mar 05 14:29:21 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

    /**
     * Implementation of DFS referral data for internal use.
     * Provides concrete implementation of DFS referral information including server details,
     * share paths, expiration handling, and referral management for DFS path resolution.
     *
     * @author mbechler
     */
    public class DfsReferralDataImpl implements DfsReferralDataInternal {
    
        private static final Logger log = LoggerFactory.getLogger(DfsReferralDataImpl.class);
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ObjectBasedValueSource.java

         * to the object graph below this root, using either 'getXXX()' or 'isXXX()'
         * accessor types to resolve the value for each successive expression part.
         * Finally, return the result of the last expression part's resolution.</p>
         *
         * <p><b>NOTE:</b> The object-graph navigation actually takes place via the
         * {@link ReflectionValueExtractor} class.</p>
         */
        @Override
        public Object getValue(String expression) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/Types.java

              throw new UnsupportedOperationException(
                  "Annotation methods are not supported on synthetic TypeVariables created during type"
                      + " resolution. The semantics of annotations on resolved types with modified"
                      + " bounds are undefined. Use the original TypeVariable for annotation access."
                      + " See b/147144588.");
            }
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Oct 31 19:34:24 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/AbstractVersionTransformation.java

    import org.apache.maven.repository.legacy.WagonManager;
    import org.codehaus.plexus.logging.AbstractLogEnabled;
    
    /**
     * Describes a version transformation during artifact resolution.
     *
     * TODO try and refactor to remove abstract methods - not particular happy about current design
     */
    @Deprecated
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.resolution;
    
    /**
     * Signals an error when resolving the path to an external model.
     *
     * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead
     */
    @Deprecated(since = "4.0.0")
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeStrategy.java

                context.info(result.errorCount() + " POM(s) had errors");
            }
            context.unindent();
        }
    
        /**
         * Extracts an Artifact from a POM document with parent resolution.
         * If groupId or version are missing, attempts to resolve from parent.
         *
         * <p>This method handles Maven's inheritance mechanism where groupId and version
         * can be inherited from the parent POM.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  8. compat/maven-compat/src/test/java/org/apache/maven/repository/LegacyRepositorySystemTest.java

            resolutionErrorHandler.throwErrors(request, result);
            assertEquals(1, result.getArtifacts().size());
    
            //
            // Put in a bogus file to make sure missing files cause the resolution to fail.
            //
            file = new File(getBasedir(), "src/test/repository-system/maven-monkey-2.1.0.jar");
            assertFalse(file.exists(), "Expected " + file + ".exists() to return false");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Dec 16 13:41:14 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

        }
    
        /**
         * This method collects, flattens and resolves the dependencies.
         *
         * @param request the request to resolve
         * @return the result of the resolution
         * @throws DependencyResolverException
         * @throws ArtifactResolverException
         *
         * @see DependencyResolver#collect(DependencyResolverRequest)
         * @see #flatten(Session, Node, PathScope)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Oct 16 14:15:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ArtifactDescriptorReaderDelegate.java

    import org.eclipse.aether.artifact.ArtifactTypeRegistry;
    import org.eclipse.aether.artifact.DefaultArtifact;
    import org.eclipse.aether.graph.Dependency;
    import org.eclipse.aether.graph.Exclusion;
    import org.eclipse.aether.resolution.ArtifactDescriptorResult;
    
    /**
     * Populates Aether {@link ArtifactDescriptorResult} from Maven project {@link Model}.
     * <p>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Mar 20 22:29:18 UTC 2025
    - 6K bytes
    - Viewed (0)
Back to top