[jira] [Comment Edited] (IGNITE-5018) review and improve javadocs in ML module

2017-04-24 Thread Anton Vinogradov (JIRA)

[ 
https://issues.apache.org/jira/browse/IGNITE-5018?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15980975#comment-15980975
 ] 

Anton Vinogradov edited comment on IGNITE-5018 at 4/24/17 10:26 AM:


[~oignatenko]
I've merged pullrequest, looks good to me. 
Only one thing I've fixed - is imports, see commit 
7378bc38abf8ec6ed8aca9c3608eec00f1a86fb2 for details.
Thanks for contribution. Merged to ignite-2.0.


was (Author: avinogradov):
[~oignatenko]
I've merged pullrequest, looks good to me. 
Only one thing I've fixes - is imports, see commit 
7378bc38abf8ec6ed8aca9c3608eec00f1a86fb2 for details.
Thanks for contribution. Merged to ignite-2.0.

> review and improve javadocs in ML module
> 
>
> Key: IGNITE-5018
> URL: https://issues.apache.org/jira/browse/IGNITE-5018
> Project: Ignite
>  Issue Type: Task
>  Components: ml
>Reporter: Oleg Ignatenko
>Assignee: Oleg Ignatenko
>Priority: Minor
> Fix For: 2.0
>
>
> Review and improve javadocs in Ignite ML module (added per IGNITE-4572). To 
> name a few, add descriptions for constructor parameters in classes 
> {{CacheMatrix}}, {{CacheMatrixStorage}}, {{RandomVector}}. Etc.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Comment Edited] (IGNITE-5018) review and improve javadocs in ML module

2017-04-19 Thread Anton Vinogradov (JIRA)

[ 
https://issues.apache.org/jira/browse/IGNITE-5018?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15975098#comment-15975098
 ] 

Anton Vinogradov edited comment on IGNITE-5018 at 4/19/17 5:09 PM:
---

After merge I found that ML module does not match project requirements:
https://cwiki.apache.org/confluence/display/IGNITE/Coding+Guidelines

I've found at least 26 files with wrong code style using automatical formatting 
using IDEA's codestyle from idea/ignite_codeStyle.xml

most of found related to javadoc
Provided:
{noformat}
/** */ private IgniteFunction getFunc;
/** */ private IntDoubleToVoidFunction setFunc;
/** */ private int size;

{noformat}

Correct:
{noformat}
/** */
private IgniteFunction getFunc;

/** */
private IntDoubleToVoidFunction setFunc;

/** */
private int size;
{noformat}

Formatting and abbreviations should be checked prior to any merge request.
Hope this will be checked and fixed before next merge and/or on each commiters 
request.





was (Author: avinogradov):
After merge I found that ML module does not match project requirements:
https://cwiki.apache.org/confluence/display/IGNITE/Coding+Guidelines

I've found at least 26 files with wrong code style using automatical formatting 
using IDEA's codestyle from idea/ignite_codeStyle.xml

most of found related to javadoc
Provided:
{noformat}
/** */ private IgniteFunction getFunc;
/** */ private IntDoubleToVoidFunction setFunc;
/** */ private int size;

{noformat}

Correct:
{noformat}
/** */
private IgniteFunction getFunc;
/** */
private IntDoubleToVoidFunction setFunc;
/** */
private int size;
{noformat}

Formatting and abbreviations should be checked prior to any merge request.
Hope this will be checked and fixed before next merge and/or on each commiters 
request.




> review and improve javadocs in ML module
> 
>
> Key: IGNITE-5018
> URL: https://issues.apache.org/jira/browse/IGNITE-5018
> Project: Ignite
>  Issue Type: Task
>Reporter: Oleg Ignatenko
>Assignee: Oleg Ignatenko
>Priority: Minor
> Fix For: 2.0
>
>
> Review and improve javadocs in Ignite ML module (added per IGNITE-4572). To 
> name a few, add descriptions for constructor parameters in classes 
> {{CacheMatrix}}, {{CacheMatrixStorage}}, {{RandomVector}}. Etc.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)