Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 164 for find (0.26 sec)

  1. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

            return delegate.pathOfLocalRepositoryMetadata(
                    new ArtifactMetadataAdapter(metadata), new ArtifactRepositoryAdapter(repository));
        }
    
        public LocalArtifactResult find(RepositorySystemSession session, LocalArtifactRequest request) {
            String path = getPathForLocalArtifact(request.getArtifact());
            File file = new File(getRepository().getBasedir(), path);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java

         * the basis for the Method map.
         */
        private final Class<?> clazz;
    
        /**
         * Cache of Methods, or CACHE_MISS, keyed by method
         * name and actual arguments used to find it.
         */
        private final Map<String, Object> methodCache = new Hashtable<>();
    
        private MethodMap methodMap = new MethodMap();
    
        /**
         * Standard constructor
         * @param clazz The class.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

         *
         * @param key The name of the method.
         * @return List list of methods
         */
        List<Method> get(String key) {
            return methodByNameMap.get(key);
        }
    
        /**
         * Find a method.  Attempts to find the
         * most specific applicable method using the
         * algorithm described in the JLS section
         * 15.12.2 (with the exception that it can't
         * distinguish a primitive type argument from
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

    import org.codehaus.plexus.personality.plexus.lifecycle.phase.Initializable;
    import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException;
    
    /**
     * Use a regular expression search to find and resolve expressions within the POM.
     *
     * TODO Consolidate this logic with the PluginParameterExpressionEvaluator, minus deprecations/bans.
     */
    @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

                result.setVersion(version);
                result.setRepository(repo);
            } else {
                logger.warn(
                        resolvedPluginVersions
                                ? "Could not find compatible version of plugin {}:{} in any plugin repository"
                                : "Plugin {}:{} not found in any plugin repository",
                        request.getGroupId(),
                        request.getArtifactId());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 09 20:17:59 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                    // third time...)
                                    if (resetArtifact.getVersion() == null && resetArtifact.getVersionRange() != null) {
    
                                        // go find the version. This is a total hack. See previous comment.
                                        List<ArtifactVersion> versions = resetArtifact.getAvailableVersions();
                                        if (versions == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                //
                // mvn remote-resources:process
                //
                // From the metadata stored on the server which has been created as part of a standard
                // Maven plugin deployment we will find the right PluginDescriptor from the remote
                // repository.
    
                plugin = findPluginForPrefix(prefix, session);
            }
    
            int executionIdx = goal.indexOf('@');
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

                    // The system scoped dependencies will be present in the classloader for the plugin
                    return;
                }
            }
    
            fail("Can't find the system scoped dependency in the plugin artifacts.");
        }
    
        // -----------------------------------------------------------------------------------------------
        // Testing help
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

                        .findFirst()
                        .orElseThrow(() -> new MavenExecutionException(
                                "Could not find project to resume reactor build from: " + selector + " vs "
                                        + formatProjects(projects),
                                request.getPom()));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 09:23:26 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                    // This one we will eat when looking through remote repositories
                    // because we want to cycle through them all before squawking.
    
                    logger.debug(
                            "Unable to find artifact " + artifact.getId() + " in repository " + repository.getId() + " ("
                                    + repository.getUrl() + ")",
                            e);
    
                } catch (TransferFailedException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 29.9K bytes
    - Viewed (0)
Back to top