Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for heddle (0.2 sec)

  1. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

     */
    @Named
    @Singleton
    public class DefaultExceptionHandler implements ExceptionHandler {
    
        public ExceptionSummary handleException(Throwable exception) {
            return handle("", exception);
        }
    
        private ExceptionSummary handle(String message, Throwable exception) {
            String reference = getReference(exception);
    
            List<ExceptionSummary> children = null;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jul 19 15:37:28 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/settings/SettingsUtilsV4.java

    import org.apache.maven.api.settings.RepositoryPolicy;
    import org.apache.maven.api.settings.Settings;
    import org.apache.maven.settings.v4.SettingsMerger;
    
    /**
     * Several convenience methods to handle settings
     *
     */
    public final class SettingsUtilsV4 {
    
        private SettingsUtilsV4() {
            // don't allow construction.
        }
    
        /**
         * @param dominant
         * @param recessive
         */
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Feb 15 08:42:00 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

                    return session;
                }
                newSession = new DefaultRepositorySystemSession(session);
            } else {
                newSession = new DefaultRepositorySystemSession(h -> false); // no close handle used
            }
    
            final LocalRepositoryManager llrm =
                    system.newLocalRepositoryManager(newSession, new LocalRepository(repository.getBasedir()));
            newSession.setLocalRepositoryManager(llrm);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 16K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

            return type;
        }
    
        /**
         * Selects the type of path where to place the given dependency.
         * This method returns one of the values specified in the given collection.
         * This method does not handle the patch-module paths, because the patches
         * depend on which modules have been previously added on the module-paths.
         *
         * <p>If the dependency can be a constituent of both the class-path and the module-path,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  5. maven-compat/src/main/resources/META-INF/maven/plugin.xml

              <type>org.apache.maven.execution.MavenSession</type>
              <required>true</required>
              <editable>false</editable>
              <description>The current MavenSession instance, which will handle the fork context.</description>
            </parameter>
            <parameter>
              <name>forkId</name>
              <type>int</type>
              <required>true</required>
              <editable>true</editable>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue May 28 09:19:32 GMT 2013
    - 9.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/artifact/AttachedArtifact.java

        }
    
        public boolean isSnapshot() {
            return parent.isSnapshot();
        }
    
        public void addMetadata(ArtifactMetadata metadata) {
            // ignore. The parent artifact will handle metadata.
            // we must fail silently here to avoid problems with the artifact transformers.
        }
    
        public Collection<ArtifactMetadata> getMetadataList() {
            return Collections.emptyList();
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/settings/SettingsUtils.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.settings;
    
    import org.apache.maven.internal.impl.SettingsUtilsV4;
    
    /**
     * Several convenience methods to handle settings
     *
     */
    public final class SettingsUtils {
    
        private SettingsUtils() {
            // don't allow construction.
        }
    
        /**
         * @param dominant
         * @param recessive
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4Test.java

                    .setBaseDirectory(new File(""))
                    .setLocalRepository(repo);
    
            DefaultRepositorySystemSession repositorySession =
                    new DefaultRepositorySystemSession(h -> false); // no close handle
            repositorySession.setLocalRepositoryManager(new SimpleLocalRepositoryManagerFactory()
                    .newInstance(repositorySession, new LocalRepository(repo.getUrl())));
            MavenSession session =
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 19.2K bytes
    - Viewed (0)
  9. maven-compat/src/main/mdo/profiles.mdo

              <version>1.0.0</version>
              <description>How to handle downloading of releases from this repository</description>
              <association>
                <type>RepositoryPolicy</type>
              </association>
            </field>
            <field>
              <name>snapshots</name>
              <version>1.0.0</version>
              <description>How to handle downloading of snapshots from this repository</description>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 03 21:08:35 GMT 2023
    - 13.8K bytes
    - Viewed (0)
  10. maven-core/src/site/apt/index.apt

       * known limitations are notably that:
    
         1. plugin goal execution in a child is usually simply appended (at end): you can't try to insert in the middle of pre-existing inherited executions,
    
         2. append happens at plugin level first, then goal level, independently from phases.
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jun 14 05:48:39 GMT 2023
    - 5.3K bytes
    - Viewed (0)
Back to top