Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for handik (0.42 sec)

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

     */
    @Named
    @Singleton
    public class DefaultExceptionHandler implements ExceptionHandler {
        @Override
        public ExceptionSummary handleException(Throwable exception) {
            return handle("", exception);
        }
    
        private ExceptionSummary handle(String message, Throwable exception) {
            String reference = getReference(Collections.newSetFromMap(new IdentityHashMap<>()), exception);
    
            List<ExceptionSummary> children = null;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. .fleet/settings.json

    {
        "backend.maxHeapSizeMb": 2602,
    
        // https://youtrack.jetbrains.com/issue/FL-22276
        // Fleet cannot handle nested maven projects until FL-22276
        "ignored.project.globs": [
            "**/pom.xml"
        ]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Oct 16 13:48:21 UTC 2023
    - 214 bytes
    - Viewed (0)
  3. 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>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. 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
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemUtils.java

         */
        @Deprecated
        public static DefaultRepositorySystemSession newSession() {
            DefaultRepositorySystemSession session = new DefaultRepositorySystemSession(h -> false); // no close handle
            MavenSessionBuilderSupplier builder = new MavenSessionBuilderSupplier();
            session.setDependencyTraverser(builder.getDependencyTraverser());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 09:51:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. maven-jline/src/main/java/org/apache/maven/jline/FastTerminal.java

            }
        }
    
        @Override
        public String getName() {
            return getTerminal().getName();
        }
    
        @Override
        public SignalHandler handle(Signal signal, SignalHandler signalHandler) {
            return getTerminal().handle(signal, signalHandler);
        }
    
        @Override
        public void raise(Signal signal) {
            getTerminal().raise(signal);
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. api/maven-api-settings/src/main/mdo/settings.mdo

              <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
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. 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,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorSubModulesTest.java

    import org.apache.maven.lifecycle.internal.MojoExecutor;
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertNotNull;
    
    /**
     * Just asserts that it's able to create those components. Handy when CDI container gets a nervous breakdown.
     *
     */
    class LifecycleExecutorSubModulesTest extends AbstractCoreMavenComponentTestCase {
        @Inject
        private DefaultLifecycles defaultLifeCycles;
    
        @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/qualifiers/UsualClassTypeQualifierBuilder.kt

            }
            return when (declaration) {
                is FirAnonymousObject -> listOf(declaration)
                is FirRegularClass -> declaration.collectForLocal()
                is FirTypeAlias -> listOf(declaration) // TODO: handle type aliases
                else -> errorWithAttachment("Invalid declaration ${declaration::class}") {
                    withFirEntry("declaration", declaration)
                }
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top