Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for load3 (0.15 sec)

  1. apache-maven/src/assembly/maven/bin/m2.conf

    set maven.conf default ${maven.home}/conf
    
    [plexus.core]
    load       ${maven.conf}/logging
    optionally ${maven.home}/lib/ext/redisson/*.jar
    optionally ${maven.home}/lib/ext/hazelcast/*.jar
    optionally ${user.home}/.m2/ext/*.jar
    optionally ${maven.home}/lib/ext/*.jar
    load       ${maven.home}/lib/maven-*.jar
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Oct 18 18:06:57 GMT 2023
    - 396 bytes
    - Viewed (0)
  2. maven-core/src/test/projects/plugin-manager/project-with-build-extensions-plugin/pom.xml

            <executions>
              <execution>
                <id>load</id>
                <phase>validate</phase>
                <configuration>
                  <resourcePaths>maven-core-it.properties</resourcePaths>
                  <pluginClassLoaderOutput>target/pcl.properties</pluginClassLoaderOutput>
                </configuration>
                <goals>
                  <goal>load</goal>
                </goals>
              </execution>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Dec 26 18:27:51 GMT 2014
    - 884 bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginDescriptorCache.java

        /**
         * A cache key.
         */
        interface Key {
            // marker interface for cache keys
        }
    
        @FunctionalInterface
        interface PluginDescriptorSupplier {
            PluginDescriptor load()
                    throws PluginResolutionException, PluginDescriptorParsingException, InvalidPluginDescriptorException;
        }
    
        Key createKey(Plugin plugin, List<RemoteRepository> repositories, RepositorySystemSession session);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/project/inheritance/t11/ProjectInheritanceTest.java

            File pom0 = new File(localRepo, "p0/pom.xml");
            File pom0Basedir = pom0.getParentFile();
            File pom1 = new File(pom0Basedir, "p1/pom.xml");
    
            // load the child project, which inherits from p0...
            MavenProject project0 = getProjectWithDependencies(pom0);
            MavenProject project1 = getProjectWithDependencies(pom1);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  5. maven-core/plugin-manager.txt

      also do this with the lister as well
    i'l
    // 1 the metadata -> model plugin/mojo descriptor
    // 2 tools for doing the mapping
    // 3 the component model -> interfaces for the plugin
    
    // The plugin manager should load up a directory structure of plugins.
    // - a plugin per directory where the plugin is present with its deps
    // - a plugin that has its dependencies packaged up with it
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 22:45:13 GMT 2022
    - 12.9K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

                    lock = channel.lock();
    
                    if (touchfile.canRead()) {
                        getLogger().debug("Reading resolution-state from: " + touchfile);
                        props.load(Channels.newInputStream(channel));
                    }
    
                    props.setProperty(key, Long.toString(System.currentTimeMillis()));
    
                    if (error != null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/PluginRealmCache.java

        }
    
        /**
         * A cache key.
         */
        interface Key {
            // marker interface for cache keys
        }
    
        @FunctionalInterface
        interface PluginRealmSupplier {
            CacheRecord load() throws PluginResolutionException, PluginContainerException;
        }
    
        Key createKey(
                Plugin plugin,
                ClassLoader parentRealm,
                Map<String, ClassLoader> foreignImports,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/lifecycle/DefaultLifecyclesTest.java

        void testCustomLifecycle() throws ComponentLookupException {
            List<Lifecycle> myLifecycles = new ArrayList<>();
            Lifecycle myLifecycle =
                    new Lifecycle("etl", Arrays.asList("extract", "transform", "load"), Collections.emptyMap());
            myLifecycles.add(myLifecycle);
            myLifecycles.addAll(defaultLifeCycles.getLifeCycles());
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginDescriptorCache.java

                if (desc == null) {
                    synchronized (key) {
                        desc = descriptors.get(key);
                        if (desc == null) {
                            desc = supplier.load();
                            descriptors.putIfAbsent(key, clone(desc));
                        }
                    }
                }
                return clone(desc);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:49 GMT 2024
    - 6K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

            File pom4 = new File(pom3.getParentFile(), "p4/pom.xml");
            File pom5 = new File(pom4.getParentFile(), "p5/pom.xml");
    
            System.out.println("Location of project-4's POM: " + pom4.getPath());
    
            // load everything...
            MavenProject project0 = getProject(pom0);
            MavenProject project1 = getProject(pom1);
            MavenProject project2 = getProject(pom2);
            MavenProject project3 = getProject(pom3);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 6.2K bytes
    - Viewed (0)
Back to top