Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Janitor (0.22 sec)

  1. maven-core/src/main/resources/META-INF/maven/extension.xml

        <exportedPackage>org.apache.maven.graph</exportedPackage>
        <exportedPackage>org.apache.maven.lifecycle</exportedPackage>
        <exportedPackage>org.apache.maven.model</exportedPackage>
        <exportedPackage>org.apache.maven.monitor</exportedPackage>
        <exportedPackage>org.apache.maven.plugin</exportedPackage>
        <exportedPackage>org.apache.maven.profiles</exportedPackage>
        <exportedPackage>org.apache.maven.project</exportedPackage>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jan 08 10:37:09 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  2. maven-core/src/test/remote-repo/org/apache/maven/maven/2.0/maven-2.0.pom

        <module>maven-artifact-ant</module>
        <module>maven-artifact-test</module>
        <module>maven-core</module>
        <module>maven-error-diagnostics</module>
        <module>maven-model</module>
        <module>maven-monitor</module>
        <module>maven-plugin-api</module>
        <module>maven-plugin-descriptor</module>
        <module>maven-plugin-parameter-documenter</module>
        <module>maven-plugin-registry</module>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Oct 27 10:08:56 GMT 2020
    - 8.6K bytes
    - Viewed (0)
  3. maven-core/pom.xml

                  <include>org.apache.maven.graph</include>
                  <include>org.apache.maven.lifecycle</include>
                  <include>org.apache.maven.model</include>
                  <include>org.apache.maven.monitor</include>
                  <include>org.apache.maven.plugin</include>
                  <include>org.apache.maven.profiles</include>
                  <include>org.apache.maven.project</include>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    ner) throws Exception; } org/junit/runner/notification/SynchronizedRunListe.class package org.junit.runner.notification; final synchronized class SynchronizedRunListe extends RunListener { private final RunListener listener; private final Object monitor; void SynchronizedRunListe(RunListener, Object); public void testRunStarted(org.junit.runner.Description) throws Exception; public void testRunFinished(org.junit.runner.Result) throws Exception; public void testSuiteStarted(org.junit.runner.Description)...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/monitor/event/EventMonitor.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.monitor.event;
    
    /**
     */
    @Deprecated
    public interface EventMonitor {
    
        void startEvent(String eventName, String target, long timestamp);
    
        void endEvent(String eventName, String target, long timestamp);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

    import org.apache.maven.artifact.repository.RepositoryCache;
    import org.apache.maven.internal.impl.SettingsUtilsV4;
    import org.apache.maven.model.Profile;
    import org.apache.maven.monitor.event.EventDispatcher;
    import org.apache.maven.plugin.descriptor.PluginDescriptor;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.ProjectBuildingRequest;
    import org.apache.maven.settings.Mirror;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                        wagon.removeTransferListener(sha1ChecksumObserver);
                    }
    
                    if (downloaded) {
                        // keep the checksum files from showing up on the download monitor...
                        if (downloadMonitor != null) {
                            wagon.removeTransferListener(downloadMonitor);
                        }
    
                        // try to verify the SHA-1 checksum for this file.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 29.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/monitor/event/EventDispatcher.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.monitor.event;
    
    /**
     */
    @Deprecated
    public interface EventDispatcher {
    
        void addEventMonitor(EventMonitor monitor);
    
        void dispatchStart(String event, String target);
    
        void dispatchEnd(String event, String target);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/eventspy/EventSpy.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.eventspy;
    
    import java.util.Map;
    
    /**
     * A core extension to monitor Maven's execution. Typically, such an extension gets loaded into Maven by specifying the
     * property {@code maven.ext.class.path} on the command line. As soon as dependency injection is set up, Maven
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 2.6K bytes
    - Viewed (0)
Back to top