Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for Wong (0.2 sec)

  1. maven-core/src/test/java/org/apache/maven/settings/SettingsUtilsTest.java

                    .exists("exists" + Long.toHexString(entropy.nextLong()))
                    .missing("missing" + Long.toHexString(entropy.nextLong()))
                    .build();
            ActivationProperty ap = ActivationProperty.newBuilder()
                    .name("name" + Long.toHexString(entropy.nextLong()))
                    .value("value" + Long.toHexString(entropy.nextLong()))
                    .build();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/monitor/event/EventMonitor.java

    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);
    
        void errorEvent(String eventName, String target, long timestamp, Throwable cause);
    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)
  3. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon-provider-api/1.0-beta-2/wagon-provider-api-1.0-beta-2.jar

    package org.apache.maven.wagon.resource; public synchronized class Resource { private String name; private long lastModified; private long contentLength; public void Resource(); public void Resource(String); public String getName(); public void setName(String); public long getLastModified(); public void setLastModified(long); public long getContentLength(); public void setContentLength(long); public String toString(); } org/apache/maven/wagon/Wagon$1.class package org.apache.maven.wagon; synchronized...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 45.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverException.java

     */
    package org.apache.maven.api.services;
    
    import org.apache.maven.api.annotations.Experimental;
    
    @Experimental
    public class DependencyResolverException extends MavenException {
    
        private static final long serialVersionUID = 1101171569179057614L;
    
        public DependencyResolverException(String message, Throwable cause) {
            super(message, cause);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Dec 08 08:42:44 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverException.java

    import org.apache.maven.api.annotations.Experimental;
    
    /**
     *
     *
     * @since 4.0.0
     */
    @Experimental
    public class ArtifactResolverException extends MavenException {
    
        private static final long serialVersionUID = 7252294837746943917L;
    
        /**
         * @param message the message for the exception
         * @param e the exception itself
         */
        public ArtifactResolverException(String message, Exception e) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/execution/BuildSuccess.java

         *
         * @param project The project being summarized, must not be {@code null}.
         * @param time The build time of the project in milliseconds.
         */
        public BuildSuccess(MavenProject project, long time) {
            super(project, time);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    final String WINDOWS = Windows; protected java.util.Vector arguments; protected java.util.Map envVars; private long pid; private shell.Shell shell; protected String executable; private java.io.File workingDir; public void Commandline(String, shell.Shell); public void Commandline(shell.Shell); public void Commandline(String); public void Commandline(); public long getPid(); public void setPid(long); private void setDefaultShell(); public Commandline$Argument createArgument(); public Commandline$Argument...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 200.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    static StringBuffer format(int, StringBuffer); public static StringBuffer format(int, int, StringBuffer); private static void format2(int, int, StringBuffer); public static StringBuffer format(long, StringBuffer); public static StringBuffer format(long, int, StringBuffer); private static void format2(long, int, StringBuffer); public static StringBuffer format(float, StringBuffer); public static StringBuffer format(float, float, StringBuffer); public static StringBuffer format(double, StringBuffer);...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 160K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxer.java

            }
    
            @Override
            public void print(long l) {
                final PrintStream currentStream = getOutputStreamForCurrentThread();
                synchronized (currentStream) {
                    currentStream.print(l);
                    currentStream.notifyAll();
                }
            }
    
            @Override
            public void println(long x) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 12.8K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/MojoException.java

    public class MojoException extends MavenException {
    
        protected Object source;
    
        protected String longMessage;
    
        /**
         * Construct a new <code>MojoException</code> exception providing the source and a short and long message:
         * these messages are used to improve the message written at the end of Maven build.
         */
        public MojoException(Object source, String shortMessage, String longMessage) {
            super(shortMessage);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 2.5K bytes
    - Viewed (0)
Back to top