tree-sitter-java icon indicating copy to clipboard operation
tree-sitter-java copied to clipboard

Top 3 test repos

Open aymannadeem opened this issue 7 years ago • 1 comments

These are the repositories I'm testing the Java parser against.

Repository % error free 3/6 % error free 3/13 Pass?
google/guave 44% 94% :x:
ReactiveX/RxJava 46% 98% :x:
elastic/elasticsearch 43% 88% :x:

I asked @msantosm for the following if you're interested in how I determined what "popular" meant.

Most popular by number of stars

presto:entities> select repo_id, repo_nwo from repos where primary_language_id = 158 order by num_stars desc limit 10;

repo_id  |           repo_nwo            
----------+-------------------------------
 7508411 | ReactiveX/RxJava              
22790488 | iluwatar/java-design-patterns
  507775 | elastic/elasticsearch        
  892275 | square/retrofit              
 5152285 | square/okhttp                
20300177 | google/guava                  
 6296790 | spring-projects/spring-boot  
19148949 | PhilJay/MPAndroidChart        
11267509 | bumptech/glide                
 8575137 | JakeWharton/butterknife      
(10 rows)

Most amount of logged in viewers in the last 30 days

presto:entities> select repo_id, repo_nwo,num_logged_in_viewers_last_30_days from repos where primary_language_id = 158 order by num_logged_in_viewers_last_30_days desc limit 10;

repo_id  |          repo_nwo           | num_logged_in_viewers_last_30_days 
----------+-----------------------------+------------------------------------
 6296790 | spring-projects/spring-boot |                              78786
  507775 | elastic/elasticsearch       |                              42224
 7613257 | SeleniumHQ/selenium         |                              39351
 7508411 | ReactiveX/RxJava            |                              36220
  892275 | square/retrofit             |                              28819
 5152285 | square/okhttp               |                              27638
20300177 | google/guava                |                              27271
11267509 | bumptech/glide              |                              26621
57147349 | firebase/quickstart-android |                              19928
53662249 | wix/react-native-navigation |                              19612 
(10 rows)

Most amount of committers in the last 30 days

presto:entities> select repo_id, repo_nwo,num_committers_last_30_days from repos where primary_language_id = 158 order by num_committers_last_30_days desc limit 10;

 repo_id  |           repo_nwo           | num_committers_last_30_days 
-----------+------------------------------+-----------------------------
120466617 | HoldYourWaffle/libgdextop    |                         340
 50534077 | philips-emr/tasy-backend     |                         139
   317887 | liferay/liferay-portal       |                         127
   855115 | appian/ae                    |                         120
   836606 | okta/okta-core               |                         112
119999186 | mks66/picmaker               |                          93
  1553354 | AppDirect/AppDirect          |                          90
  9625970 | kenshoo/search               |                          81
  2009001 | Addepar/AMP                  |                          77
  2489216 | JetBrains/intellij-community |                          76 
(10 rows)

aymannadeem avatar Mar 05 '18 19:03 aymannadeem

Files with errors across the following repos: guava = 6% RxJava = <2% elasticsearch = 12%

aymannadeem avatar Mar 13 '18 22:03 aymannadeem