repo
stringlengths
1
191
file
stringlengths
23
351
code
stringlengths
0
5.32M
file_length
int64
0
5.32M
avg_line_length
float64
0
2.9k
max_line_length
int64
0
288k
extension_type
stringclasses
1 value
AMLSim
AMLSim-master/src/main/java/amlsim/Alert.java
package amlsim; import amlsim.model.aml.AMLTypology; import java.util.*; /* * Group of suspicious transactions and involving accounts as an AML typology * Accounts in this class perform suspicious transactions based on the given typology (model) */ public class Alert { private long alertID; // Alert identif...
2,204
21.96875
93
java
AMLSim
AMLSim-master/src/main/java/amlsim/Branch.java
package amlsim; /** * A branch of a bank * In cash transactions, this class perform like an account */ public class Branch extends Account { private int id; // Branch identifier private float limitAmount = 100.0F; // Limit of deposit/withdrawal amount public Branch(int id){ this.id = id; ...
827
19.195122
78
java
AMLSim
AMLSim-master/src/main/java/amlsim/SARAccount.java
package amlsim; import java.util.Random; import amlsim.model.aml.*; import sim.engine.SimState; /** * Suspicious account class */ public class SARAccount extends Account { private int count = 0; SARAccount(String id, int interval, float init_balance, String bankID, Random random) { super(id, interval, init_b...
918
17.755102
88
java
AMLSim
AMLSim-master/src/main/java/amlsim/SimProperties.java
package amlsim; import java.io.*; import java.nio.file.*; import org.json.*; /** * Simulation properties and global parameters loaded from the configuration JSON file */ public class SimProperties { private static final String separator = File.separator; private JSONObject generalProp; private JSONObj...
5,065
30.6625
117
java
AMLSim
AMLSim-master/src/main/java/amlsim/TargetedTransactionAmount.java
package amlsim; import java.util.Random; public class TargetedTransactionAmount { private SimProperties simProperties; private Random random; private double target; public TargetedTransactionAmount(Number target, Random random) { this.simProperties = AMLSim.getSimProp(); this.random = rando...
1,199
23
77
java
AMLSim
AMLSim-master/src/main/java/amlsim/TransactionRepository.java
package amlsim; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.util.*; /** * AML Transaction repository (set of transactions) for performance optimizations */ public class TransactionRepository { public final int size; private int inde...
4,575
31.920863
125
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/AbstractTransactionModel.java
package amlsim.model; import amlsim.Account; import amlsim.AccountGroup; import amlsim.AMLSim; /** * Base class of transaction models */ public abstract class AbstractTransactionModel { // Transaction model ID public static final String SINGLE = "single"; // Make a single transaction to each neighbor acco...
5,106
33.979452
118
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/ModelParameters.java
package amlsim.model; import java.io.*; import java.util.Random; import java.util.Properties; import amlsim.AMLSim; import amlsim.Account; /** * Adjust transaction parameters for fine-tuning of the transaction network */ public class ModelParameters { // private static Random rand = new Random(AMLSim.getSeed()...
9,599
41.105263
116
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/aml/AMLTypology.java
// Source: http://files.acams.org/pdfs/English_Study_Guide/Chapter_5.pdf // Suspicious transactions which may lead to money laundering // - Unusually high monthly balances in comparison to known sources of income. // - Unusually large deposits, deposits in round numbers or deposits in repeated amounts that are not att...
7,889
39.880829
147
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/aml/BipartiteTypology.java
// // Note: No specific bank models are used for this AML typology model class. // package amlsim.model.aml; import amlsim.AMLSim; import amlsim.Account; import amlsim.TargetedTransactionAmount; import java.util.*; /** * Bipartite transaction model * Some accounts send money to a different account set */ public ...
1,871
28.25
112
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/aml/CycleTypology.java
// // Note: No specific bank models are used for this AML typology model class. // package amlsim.model.aml; import amlsim.AMLSim; import amlsim.Account; import amlsim.TargetedTransactionAmount; import java.util.*; /** * Cycle transaction model */ public class CycleTypology extends AMLTypology { // Transacti...
4,065
33.752137
128
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/aml/FanInTypology.java
// // Note: No specific bank models are used for this AML typology model class. // package amlsim.model.aml; import amlsim.AMLSim; import amlsim.Account; import amlsim.TargetedTransactionAmount; import java.util.*; /** * Multiple accounts send money to the main account */ public class FanInTypology extends AMLTyp...
3,217
31.505051
106
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/aml/FanOutTypology.java
// // Note: No specific bank models are used for this AML typology model class. // package amlsim.model.aml; import amlsim.AMLSim; import amlsim.Account; import amlsim.TargetedTransactionAmount; import java.util.*; /** * The main account distributes money to multiple members */ public class FanOutTypology extends...
3,179
29.576923
105
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/aml/GatherScatterTypology.java
package amlsim.model.aml; import amlsim.AMLSim; import amlsim.Account; import amlsim.TargetedTransactionAmount; import java.util.*; /** * Gather-Scatter transaction model (Multiple accounts -> fan-in -> main account -> fan-out -> multiple accounts) */ public class GatherScatterTypology extends AMLTypology { p...
4,016
34.866071
113
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/aml/RandomTypology.java
// // Note: No specific bank models are used for this AML typology model class. // package amlsim.model.aml; import amlsim.AMLSim; import amlsim.Account; import amlsim.TargetedTransactionAmount; import java.util.*; /** * The main account makes a transaction with one of the neighbor accounts * and the neighbor als...
2,228
31.779412
160
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/aml/ScatterGatherTypology.java
package amlsim.model.aml; import amlsim.AMLSim; import amlsim.Account; import amlsim.TargetedTransactionAmount; import java.util.*; /** * Scatter-Gather transaction model (Main originator account -> fan-out -> multiple accounts -> fan-in -> single account) */ public class ScatterGatherTypology extends AMLTypology ...
3,278
33.515789
121
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/aml/StackTypology.java
// // Note: No specific bank models are used for this AML typology model class. // package amlsim.model.aml; import java.util.Random; import amlsim.AMLSim; import amlsim.Account; import amlsim.TargetedTransactionAmount; /** * Stacked bipartite transactions */ public class StackTypology extends AMLTypology { ...
3,230
34.505495
119
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/cash/CashInModel.java
package amlsim.model.cash; import amlsim.Branch; /** * Cash-in (deposit) model */ public class CashInModel extends CashModel { private static int NORMAL_INTERVAL = 1; private static int SUSPICIOUS_INTERVAL = 1; private static float NORMAL_MIN = 10; private static float NORMAL_MAX = 100; private...
1,527
27.830189
124
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/cash/CashModel.java
package amlsim.model.cash; import amlsim.AMLSim; import amlsim.Account; import amlsim.model.AbstractTransactionModel; import java.util.Random; /** * Cash transaction model (between an account and a deposit account) * There are two subclasses: CashInModel (deposit) and CashOutModel (withdrawal) */ public abstract ...
1,267
28.488372
86
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/cash/CashOutModel.java
package amlsim.model.cash; import amlsim.Branch; /** * Cash-out (withdrawal) model */ public class CashOutModel extends CashModel { private static int NORMAL_INTERVAL = 1; private static int SUSPICIOUS_INTERVAL = 1; private static float NORMAL_MIN = 10; private static float NORMAL_MAX = 100; pr...
1,500
27.320755
124
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/normal/EmptyModel.java
package amlsim.model.normal; import java.util.Random; import amlsim.Account; import amlsim.AccountGroup; import amlsim.model.AbstractTransactionModel; /** * Empty transaction model (It does not make any transactions) * Used when invalid model IDs are specified */ public class EmptyModel extends AbstractTransactio...
629
19.322581
66
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/normal/FanInTransactionModel.java
package amlsim.model.normal; import amlsim.Account; import amlsim.AccountGroup; import amlsim.TargetedTransactionAmount; import amlsim.model.AbstractTransactionModel; import java.util.*; /** * Receive money from one of the senders (fan-in) */ public class FanInTransactionModel extends AbstractTransactionModel { ...
1,702
25.2
98
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/normal/FanOutTransactionModel.java
package amlsim.model.normal; import amlsim.*; import amlsim.model.AbstractTransactionModel; import java.util.*; /** * Distribute money to multiple neighboring accounts (fan-out) */ public class FanOutTransactionModel extends AbstractTransactionModel { private int index = 0; private Random random; ...
1,707
25.6875
93
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/normal/ForwardTransactionModel.java
package amlsim.model.normal; import amlsim.Account; import amlsim.AccountGroup; import amlsim.TargetedTransactionAmount; import amlsim.model.AbstractTransactionModel; import java.util.*; /** * Send money received from an account to another account in a similar way */ public class ForwardTransactionModel extends Ab...
1,574
25.25
114
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/normal/MutualTransactionModel.java
package amlsim.model.normal; import amlsim.*; import amlsim.model.AbstractTransactionModel; import java.util.List; import java.util.Random; /** * Return money to one of the previous senders */ public class MutualTransactionModel extends AbstractTransactionModel { private Random random; public MutualTrans...
1,607
26.254237
114
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/normal/PeriodicalTransactionModel.java
package amlsim.model.normal; import java.util.Random; import amlsim.Account; import amlsim.AccountGroup; import amlsim.TargetedTransactionAmount; import amlsim.model.AbstractTransactionModel; /** * Send money to neighbors periodically */ public class PeriodicalTransactionModel extends AbstractTransactionModel { ...
1,909
26.681159
126
java
AMLSim
AMLSim-master/src/main/java/amlsim/model/normal/SingleTransactionModel.java
package amlsim.model.normal; import amlsim.AMLSim; import amlsim.Account; import amlsim.AccountGroup; import amlsim.TargetedTransactionAmount; import amlsim.model.AbstractTransactionModel; import java.util.List; import java.util.Random; /** * Send money only for once to one of the neighboring accounts regardless th...
1,865
29.590164
114
java
AMLSim
AMLSim-master/src/main/java/amlsim/stat/Diameter.java
package amlsim.stat; import java.io.*; import java.util.*; import it.unimi.dsi.webgraph.*; import it.unimi.dsi.webgraph.algo.HyperBall; /** * Compute diameter and average distance of the transaction graph */ public class Diameter { private ArrayListMutableGraph graph; // Transaction graph (WebGraph) priva...
5,087
32.695364
112
java
AMLSim
AMLSim-master/src/test/java/amlsim/AccountTests.java
package amlsim; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.BeforeEach; import amlsim.model.ModelParameters; import amlsim.model.normal.SingleTransactionModel; import sim.engine.Schedule; import java.util.Random; import java.util.logging.Logger; import org.mockito.MockedStatic; import static org...
6,072
33.902299
140
java
AMLSim
AMLSim-master/src/test/java/amlsim/TargetedTransactionAmountTests.java
package amlsim; import org.junit.jupiter.api.Test; import org.mockito.MockedStatic; import java.util.Random; import org.junit.jupiter.api.BeforeEach; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.Mockito.mock; import s...
3,097
35.880952
108
java
empathic-jason
empathic-jason-master/argumentationServer/src/main/java/argumentation/ArgumentationServer.java
package main.java.argumentation; import java.io.IOException; import java.util.HashMap; import java.util.Map; import java.util.Collection; import java.util.Collections; import com.google.gson.*; import fi.iki.elonen.NanoHTTPD; import net.sf.tweety.arg.dung.reasoner.AbstractExtensionReasoner; import net.sf.tweety.arg....
5,386
40.122137
108
java
empathic-jason
empathic-jason-master/argumentationServer/src/test/java/argumentation/AppTest.java
package argumentation; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * Unit test for simple App. */ public class AppTest extends TestCase { /** * Create the test case * * @param testName name of the test case */ public AppTest( S...
641
15.461538
46
java
empathic-jason
empathic-jason-master/src/empathy/solve_argument.java
// Internal action code for project empathic_example.mas2j package empathy; import jason.*; import jason.asSemantics.*; import jason.asSyntax.*; import org.apache.http.*; import org.apache.http.client.HttpClient; import org.apache.http.client.ResponseHandler; import org.apache.http.impl.client.BasicResponseHandler; ...
3,086
38.075949
90
java
graphql-server-benchmark
graphql-server-benchmark-master/Java/springboot-graphql-java/src/main/java/com/github/graphql/server/benchmark/springboot/Application.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
952
31.862069
76
java
graphql-server-benchmark
graphql-server-benchmark-master/Java/springboot-graphql-java/src/main/java/com/github/graphql/server/benchmark/springboot/Author.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
1,198
23.469388
76
java
graphql-server-benchmark
graphql-server-benchmark-master/Java/springboot-graphql-java/src/main/java/com/github/graphql/server/benchmark/springboot/AuthorDao.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
2,274
34.546875
127
java
graphql-server-benchmark
graphql-server-benchmark-master/Java/springboot-graphql-java/src/main/java/com/github/graphql/server/benchmark/springboot/AuthorResolver.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
1,232
28.357143
76
java
graphql-server-benchmark
graphql-server-benchmark-master/Java/springboot-graphql-java/src/main/java/com/github/graphql/server/benchmark/springboot/Comment.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
1,089
24.348837
76
java
graphql-server-benchmark
graphql-server-benchmark-master/Java/springboot-graphql-java/src/main/java/com/github/graphql/server/benchmark/springboot/CommentDao.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
1,904
31.288136
96
java
graphql-server-benchmark
graphql-server-benchmark-master/Java/springboot-graphql-java/src/main/java/com/github/graphql/server/benchmark/springboot/CommentResolver.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
1,430
33.071429
88
java
graphql-server-benchmark
graphql-server-benchmark-master/Java/springboot-graphql-java/src/main/java/com/github/graphql/server/benchmark/springboot/CustomGraphQLContextBuilder.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
2,706
34.618421
106
java
graphql-server-benchmark
graphql-server-benchmark-master/Java/springboot-graphql-java/src/main/java/com/github/graphql/server/benchmark/springboot/Post.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
1,173
22.959184
76
java
graphql-server-benchmark
graphql-server-benchmark-master/Java/springboot-graphql-java/src/main/java/com/github/graphql/server/benchmark/springboot/PostDao.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
1,999
31.258065
109
java
graphql-server-benchmark
graphql-server-benchmark-master/Java/springboot-graphql-java/src/main/java/com/github/graphql/server/benchmark/springboot/PostResolver.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
1,456
32.883721
95
java
graphql-server-benchmark
graphql-server-benchmark-master/Java/springboot-graphql-java/src/main/java/com/github/graphql/server/benchmark/springboot/QueryResolver.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
1,257
28.255814
76
java
graphql-server-benchmark
graphql-server-benchmark-master/Java/vertx-graphql-java/src/main/java/com/github/graphql/server/benchmark/vertx/ServerVerticle.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
11,535
39.055556
140
java
graphql-server-benchmark
graphql-server-benchmark-master/backend/src/main/java/com/github/graphql/server/benchmark/backend/BackendVerticle.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
3,155
31.875
102
java
graphql-server-benchmark
graphql-server-benchmark-master/backend/src/main/java/com/github/graphql/server/benchmark/backend/Utils.java
/* * Copyright 2019 Red Hat, Inc. * * Red Hat licenses this file to you under the Apache License, version 2.0 * (the "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
2,554
34.985915
80
java
Tables_Provider
Tables_Provider-master/src/com/fluidops/iwb/provider/HTMLProvider.java
package com.fluidops.iwb.provider; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.io.Serializable; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.UR...
8,926
32.185874
115
java
Tables_Provider
Tables_Provider-master/src/com/fluidops/iwb/provider/PrepareDatabase.java
package com.fluidops.iwb.provider; import java.io.BufferedWriter; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.PrintWriter; import java.util.List; import org.jsoup.Jsoup; import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import org.jsoup.select.Elements; im...
5,654
30.769663
124
java
Tables_Provider
Tables_Provider-master/src/com/fluidops/iwb/provider/StringService.java
package com.fluidops.iwb.provider; import java.io.PrintWriter; import java.util.ArrayList; import java.util.List; import org.jsoup.nodes.Element; import org.jsoup.select.Elements; import uk.ac.shef.wit.simmetrics.similaritymetrics.AbstractStringMetric; import uk.ac.shef.wit.simmetrics.similaritymetrics.JaroWinkler;...
9,356
26.848214
74
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/main/java/org/sonar/education/EducationBuiltInQualityProfileDefinition.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
2,271
51.837209
119
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/main/java/org/sonar/education/EducationLanguage.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,222
28.829268
75
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/main/java/org/sonar/education/EducationPlugin.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,602
37.166667
75
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/main/java/org/sonar/education/EducationRulesDefinition.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
11,520
53.34434
143
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/main/java/org/sonar/education/sensors/EducationPrinciplesSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,278
37.757576
84
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/main/java/org/sonar/education/sensors/EducationRuleSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
3,519
34.918367
111
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/main/java/org/sonar/education/sensors/EducationWith2LinkedCodeSnippetsSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,329
39.30303
103
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/main/java/org/sonar/education/sensors/EducationWith4LinkedCodeSnippetsSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,329
39.30303
103
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/main/java/org/sonar/education/sensors/EducationWithContextsSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,265
37.363636
78
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/main/java/org/sonar/education/sensors/EducationWithDetectedContextSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,456
35.425
91
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/main/java/org/sonar/education/sensors/EducationWithSingleContextSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,293
38.212121
87
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/test/java/org/sonar/education/EducationBuiltInQualityProfileDefinitionTest.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,639
38.047619
127
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/test/java/org/sonar/education/EducationLanguageTest.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,466
27.764706
75
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/test/java/org/sonar/education/EducationPluginTest.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,687
35.695652
126
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/test/java/org/sonar/education/EducationRulesDefinitionTest.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,645
34.782609
87
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/test/java/org/sonar/education/sensors/EducationPrinciplesSensorTest.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,929
39.208333
109
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/test/java/org/sonar/education/sensors/EducationSensorTest.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,936
33.589286
75
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/test/java/org/sonar/education/sensors/EducationWith2LinkedCodeSnippetsSensorTest.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,979
41.12766
128
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/test/java/org/sonar/education/sensors/EducationWith4LinkedCodeSnippetsSensorTest.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,980
40.270833
128
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/test/java/org/sonar/education/sensors/EducationWithContextsSensorTest.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,919
39
109
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/test/java/org/sonar/education/sensors/EducationWithDetectedContextSensorTest.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,956
39.770833
118
java
sonarqube
sonarqube-master/plugins/sonar-education-plugin/src/test/java/org/sonar/education/sensors/EducationWithSingleContextSensorTest.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,946
39.5625
114
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/Xoo.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,624
27.017241
75
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/Xoo2.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,435
25.592593
75
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/Xoo3NoAutoPublish.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,448
26.339623
75
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/Xoo3QualityProfileDefinition.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,308
35.361111
112
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/XooPlugin.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
7,930
37.5
118
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/package-info.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
953
38.75
75
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/checks/Check.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,157
34.090909
75
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/checks/TemplateRuleCheck.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,743
33.88
137
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/coverage/AbstractCoverageSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
3,635
36.102041
133
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/coverage/ItCoverageSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,160
29.552632
75
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/coverage/OverallCoverageSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,180
30.078947
75
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/coverage/UtCoverageSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,156
29.447368
75
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/coverage/package-info.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
962
39.125
75
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/extensions/XooIssueFilter.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,722
33.46
98
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/extensions/XooPostJob.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,474
32.522727
78
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/extensions/XooProjectBuilder.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,642
32.530612
87
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/global/DeprecatedGlobalSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,750
37.065217
166
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/global/GlobalProjectSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
1,712
37.066667
155
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/lang/CpdTokenizerSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
2,964
33.476744
114
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/lang/LineMeasureSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
3,999
36.037037
126
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/lang/MeasureSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
5,185
38.287879
127
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/lang/SignificantCodeSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
3,578
36.673684
117
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/lang/SymbolReferencesSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
4,675
35.53125
125
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/lang/SyntaxHighlightingSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
3,926
37.126214
131
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/lang/package-info.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
958
38.958333
75
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/rule/AbstractXooRuleSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
2,307
33.447761
119
java
sonarqube
sonarqube-master/plugins/sonar-xoo-plugin/src/main/java/org/sonar/xoo/rule/AnalysisErrorSensor.java
/* * SonarQube * Copyright (C) 2009-2023 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, o...
3,306
33.447917
117
java