You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hama.apache.org by "Edward J. Yoon (JIRA)" <ji...@apache.org> on 2008/10/14 08:27:44 UTC

[jira] Created: (HAMA-81) Add subVector(int i0, int i1) to Vector interface

Add subVector(int i0, int i1) to Vector interface
-------------------------------------------------

                 Key: HAMA-81
                 URL: https://issues.apache.org/jira/browse/HAMA-81
             Project: Hama
          Issue Type: New Feature
          Components: interface
            Reporter: Edward J. Yoon
            Assignee: Edward J. Yoon
             Fix For: 0.1.0


  /** 
   * Returns a sub-vector.
   *  @param i0   the index of the first element
   *  @param i1   the index of the last element
   *  @return     v[i0:i1]
   */
  public Vector  subvector( int i0, int i1 );



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (HAMA-81) Add subVector(int i0, int i1) to Vector interface

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HAMA-81?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12639326#action_12639326 ] 

Hudson commented on HAMA-81:
----------------------------

+1 overall.  Here are the results of testing the latest attachment 
http://issues.apache.org/jira/secure/attachment/12392066/HAMA-81.patch
against trunk revision 703995.

    @author +1.  The patch does not contain any @author tags.

    tests included +1.  The patch appears to include 3 new or modified tests.

    javadoc +1.  The javadoc tool did not generate any warning messages.

    javac +1.  The applied patch does not generate any new javac compiler warnings.

    release audit +1.  The applied patch does not generate any new release audit warnings.

    findbugs +1.  The patch does not introduce any new Findbugs warnings.

    core tests +1.  The patch passed core unit tests.

Test results: http://hudson.zones.apache.org/hudson/job/Hama-Patch/91/testReport/
Findbugs warnings: http://hudson.zones.apache.org/hudson/job/Hama-Patch/91/artifact/trunk/build/reports/findbugs/newPatchFindbugsWarnings.html
Checkstyle results: http://hudson.zones.apache.org/hudson/job/Hama-Patch/91/artifact/trunk/build/test/checkstyle-errors.html
Console output: http://hudson.zones.apache.org/hudson/job/Hama-Patch/91/console

This message is automatically generated.

> Add subVector(int i0, int i1) to Vector interface
> -------------------------------------------------
>
>                 Key: HAMA-81
>                 URL: https://issues.apache.org/jira/browse/HAMA-81
>             Project: Hama
>          Issue Type: New Feature
>          Components: interface
>            Reporter: Edward J. Yoon
>            Assignee: Edward J. Yoon
>             Fix For: 0.1.0
>
>         Attachments: HAMA-81.patch
>
>
>   /** 
>    * Returns a sub-vector.
>    *  @param i0   the index of the first element
>    *  @param i1   the index of the last element
>    *  @return     v[i0:i1]
>    */
>   public Vector  subvector( int i0, int i1 );

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HAMA-81) Add subVector(int i0, int i1) to Vector interface

Posted by "Edward J. Yoon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HAMA-81?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Edward J. Yoon updated HAMA-81:
-------------------------------

    Status: Patch Available  (was: Open)

Submit to hudson.

> Add subVector(int i0, int i1) to Vector interface
> -------------------------------------------------
>
>                 Key: HAMA-81
>                 URL: https://issues.apache.org/jira/browse/HAMA-81
>             Project: Hama
>          Issue Type: New Feature
>          Components: interface
>            Reporter: Edward J. Yoon
>            Assignee: Edward J. Yoon
>             Fix For: 0.1.0
>
>         Attachments: HAMA-81.patch
>
>
>   /** 
>    * Returns a sub-vector.
>    *  @param i0   the index of the first element
>    *  @param i1   the index of the last element
>    *  @return     v[i0:i1]
>    */
>   public Vector  subvector( int i0, int i1 );

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HAMA-81) Add subVector(int i0, int i1) to Vector interface

Posted by "Edward J. Yoon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HAMA-81?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Edward J. Yoon updated HAMA-81:
-------------------------------

    Attachment: HAMA-81.patch

I added it. But, It should be modified on file read level.

> Add subVector(int i0, int i1) to Vector interface
> -------------------------------------------------
>
>                 Key: HAMA-81
>                 URL: https://issues.apache.org/jira/browse/HAMA-81
>             Project: Hama
>          Issue Type: New Feature
>          Components: interface
>            Reporter: Edward J. Yoon
>            Assignee: Edward J. Yoon
>             Fix For: 0.1.0
>
>         Attachments: HAMA-81.patch
>
>
>   /** 
>    * Returns a sub-vector.
>    *  @param i0   the index of the first element
>    *  @param i1   the index of the last element
>    *  @return     v[i0:i1]
>    */
>   public Vector  subvector( int i0, int i1 );

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HAMA-81) Add subVector(int i0, int i1) to Vector interface

Posted by "Edward J. Yoon (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HAMA-81?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Edward J. Yoon updated HAMA-81:
-------------------------------

    Resolution: Fixed
        Status: Resolved  (was: Patch Available)

Committed.

> Add subVector(int i0, int i1) to Vector interface
> -------------------------------------------------
>
>                 Key: HAMA-81
>                 URL: https://issues.apache.org/jira/browse/HAMA-81
>             Project: Hama
>          Issue Type: New Feature
>          Components: interface
>            Reporter: Edward J. Yoon
>            Assignee: Edward J. Yoon
>             Fix For: 0.1.0
>
>         Attachments: HAMA-81.patch
>
>
>   /** 
>    * Returns a sub-vector.
>    *  @param i0   the index of the first element
>    *  @param i1   the index of the last element
>    *  @return     v[i0:i1]
>    */
>   public Vector  subvector( int i0, int i1 );

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.