Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for inro (0.49 sec)

  1. api/maven-api-model/src/main/java/org/apache/maven/api/model/package-info.java

    Hervé Boutemy <******@****.***> 1672504327 +0100
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Dec 31 16:32:07 GMT 2022
    - 239 bytes
    - Viewed (0)
  2. api/maven-api-meta/src/main/java/org/apache/maven/api/annotations/package-info.java

    Guillaume Nodet <******@****.***> 1679549379 +0100
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 273 bytes
    - Viewed (0)
  3. api/maven-api-plugin/src/main/java/org/apache/maven/api/plugin/descriptor/lifecycle/package-info.java

    Guillaume Nodet <******@****.***> 1701763893 +0100
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 05 08:11:33 GMT 2023
    - 138 bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLog.java

        }
    
        @Override
        public void info(CharSequence content) {
            if (isInfoEnabled()) {
                logger.info(toString(content));
            }
        }
    
        @Override
        public void info(CharSequence content, Throwable error) {
            if (isInfoEnabled()) {
                logger.info(toString(content), error);
            }
        }
    
        @Override
        public void info(Throwable error) {
            logger.info("", error);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

         *
         * @param repositories The repositories into which to inject the mirror information, may be {@code null}.
         * @param mirrors The available mirrors, may be {@code null}.
         */
        void injectMirror(List<ArtifactRepository> repositories, List<Mirror> mirrors);
    
        /**
         * Injects the proxy information into the specified repositories. For each repository that is matched by a proxy,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

        /**
         * Name of the file to use as a sentinel value for deciding if a directory or a JAR is modular.
         */
        private static final String MODULE_INFO = "module-info.class";
    
        /**
         * The attribute for automatic module name in {@code META-INF/MANIFEST.MF} files.
         */
        private static final Attributes.Name AUTO_MODULE_NAME = new Attributes.Name("Automatic-Module-Name");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/DefaultRepositoryMetadataManager.java

                    } else {
                        update = updateCheckManager.isUpdateRequired(metadata, repository, file);
                    }
    
                    if (update) {
                        getLogger().info(metadata.getKey() + ": checking for updates from " + repository.getId());
                        try {
                            wagonManager.getArtifactMetadata(metadata, repository, file, policy.getChecksumPolicy());
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonManager.java

        /**
         * this method is only here for backward compat (project-info-reports:dependencies)
         * the default implementation will return an empty AuthenticationInfo
         *
         * @param id an id
         * @return corresponding authentication info
         */
        AuthenticationInfo getAuthenticationInfo(String id);
    
        ProxyInfo getProxy(String protocol);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    public void Log4JCategoryLog(String); public void Log4JCategoryLog(org.apache.log4j.Category); public void trace(Object); public void trace(Object, Throwable); public void debug(Object); public void debug(Object, Throwable); public void info(Object); public void info(Object, Throwable); public void warn(Object); public void warn(Object, Throwable); public void error(Object); public void error(Object, Throwable); public void fatal(Object); public void fatal(Object, Throwable); public org.apache.log4j.Category...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 37.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/api/services/model/LifecycleBindingsInjector.java

        /**
         * Injects plugin executions induced by lifecycle bindings into the specified model. The model has already undergone
         * injection of plugin management so any plugins that are injected by lifecycle bindings and are not already present
         * in the model's plugin section need to be subjected to the model's plugin management.
         *
         * @param model The model into which to inject the default plugin executions for its packaging, must not be
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 1.9K bytes
    - Viewed (0)
Back to top