blob_id stringlengths 40 40 | __id__ int64 225 39,780B | directory_id stringlengths 40 40 | path stringlengths 6 313 | content_id stringlengths 40 40 | detected_licenses list | license_type stringclasses 2
values | repo_name stringlengths 6 132 | repo_url stringlengths 25 151 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 70 | visit_date timestamp[ns] | revision_date timestamp[ns] | committer_date timestamp[ns] | github_id int64 7.28k 689M ⌀ | star_events_count int64 0 131k | fork_events_count int64 0 48k | gha_license_id stringclasses 23
values | gha_fork bool 2
classes | gha_event_created_at timestamp[ns] | gha_created_at timestamp[ns] | gha_updated_at timestamp[ns] | gha_pushed_at timestamp[ns] | gha_size int64 0 40.4M ⌀ | gha_stargazers_count int32 0 112k ⌀ | gha_forks_count int32 0 39.4k ⌀ | gha_open_issues_count int32 0 11k ⌀ | gha_language stringlengths 1 21 ⌀ | gha_archived bool 2
classes | gha_disabled bool 1
class | content stringlengths 7 4.37M | src_encoding stringlengths 3 16 | language stringclasses 1
value | length_bytes int64 7 4.37M | extension stringclasses 24
values | filename stringlengths 4 174 | language_id stringclasses 1
value | entities list | contaminating_dataset stringclasses 0
values | malware_signatures list | redacted_content stringlengths 7 4.37M | redacted_length_bytes int64 7 4.37M | alphanum_fraction float32 0.25 0.94 | alpha_fraction float32 0.25 0.94 | num_lines int32 1 84k | avg_line_length float32 0.76 99.9 | std_line_length float32 0 220 | max_line_length int32 5 998 | is_vendor bool 2
classes | is_generated bool 1
class | max_hex_length int32 0 319 | hex_fraction float32 0 0.38 | max_unicode_length int32 0 408 | unicode_fraction float32 0 0.36 | max_base64_length int32 0 506 | base64_fraction float32 0 0.5 | avg_csv_sep_count float32 0 4 | is_autogen_header bool 1
class | is_empty_html bool 1
class | shard stringclasses 16
values |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8e04c6eacbdc86a12e6f1011119a614bd0cdc71b | 5,471,788,356,471 | 686123f5e6cdadfe0e463d8d9b5a39091e87a58d | /Algorithms/src/main/java/Searching/Binary_Search/Two_Pointers/Count_Triplet_Sum.java | 914702e8e4a503ec226aca8e73e00c89fa295ead | [] | no_license | Motahharul-Haque/DSA | https://github.com/Motahharul-Haque/DSA | 7790cec68f9afcd4a868ccdf97c69fc6e8b079ea | 568eb240ffd1506ddf95d3299f2889b4f81ab12b | refs/heads/master | 2023-08-11T07:55:32.261000 | 2021-09-29T19:57:45 | 2021-09-29T19:57:45 | 310,914,344 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Searching.Binary_Search.Two_Pointers;
import java.util.Arrays;
public class Count_Triplet_Sum {
public static int findTriplet(int[] inArray, int sum)
{
int count = 0;
Arrays.sort(inArray);
for (int i = 0; i < inArray.length - 1; i++) {
int l = i + 1;
... | UTF-8 | Java | 1,002 | java | Count_Triplet_Sum.java | Java | [] | null | [] | package Searching.Binary_Search.Two_Pointers;
import java.util.Arrays;
public class Count_Triplet_Sum {
public static int findTriplet(int[] inArray, int sum)
{
int count = 0;
Arrays.sort(inArray);
for (int i = 0; i < inArray.length - 1; i++) {
int l = i + 1;
... | 1,002 | 0.416168 | 0.40519 | 42 | 22.857143 | 19.569864 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.595238 | false | false | 9 |
fcd981f3e9174409492b2f9c540b5d24453f4dc2 | 2,800,318,715,343 | bb4f26dcad105919e4e102ad9ff4dfb765d8ecd4 | /java/main/src/pl/vot/tomekby/World/DataMapper.java | f596dd8283df9c47f5f2f4b87de7bc7a5635d888 | [] | no_license | tomekby/symulator-swiata | https://github.com/tomekby/symulator-swiata | 5587ea8ff654b556fd4f4aef6cfd9ce8b7ba2352 | 9be6eb7b4c1589fa9182e3ff5298420b5f9719f5 | refs/heads/master | 2021-01-10T02:43:28.445000 | 2015-06-08T08:33:42 | 2015-06-08T08:33:42 | 36,874,418 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pl.vot.tomekby.World;
import java.util.Objects;
/**
* Created by Tomasz on 2015-05-10.
*/
interface DataMapper {
Object read_xml(Object o);
String write_xml(Object o);
}
| UTF-8 | Java | 190 | java | DataMapper.java | Java | [
{
"context": "rld;\n\nimport java.util.Objects;\n\n/**\n * Created by Tomasz on 2015-05-10.\n */\ninterface DataMapper {\n Obj",
"end": 82,
"score": 0.998302698135376,
"start": 76,
"tag": "NAME",
"value": "Tomasz"
}
] | null | [] | package pl.vot.tomekby.World;
import java.util.Objects;
/**
* Created by Tomasz on 2015-05-10.
*/
interface DataMapper {
Object read_xml(Object o);
String write_xml(Object o);
}
| 190 | 0.684211 | 0.642105 | 11 | 16.272728 | 13.955064 | 35 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.363636 | false | false | 9 |
bfd2dc261796335b2b62ce01ee6d10b5b93d48ae | 15,479,062,173,374 | 261fb7babdba51fc17504f7cc146584bc28847e9 | /src/main/java/com/example/emailer/dataprovider/EmailClientMailGun.java | 485e126bee1bebb065939aa8dc0bd600336e8460 | [] | no_license | allantim/emailer | https://github.com/allantim/emailer | 9aa56aa613de58513f748403f064f9d99463a2d3 | d161abef38a29bfcde0fe3e34a01160507fbf122 | refs/heads/main | 2023-08-18T12:13:11.941000 | 2021-09-26T04:54:04 | 2021-09-26T04:54:04 | 410,251,176 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.emailer.dataprovider;
import com.example.emailer.core.dto.SendEmailRequest;
import com.example.emailer.core.dto.SendEmailResponse;
import com.example.emailer.core.repository.EmailClient;
import com.example.emailer.core.repository.EmailResponse;
import lombok.extern.slf4j.Slf4j;
import org.apache.co... | UTF-8 | Java | 3,060 | java | EmailClientMailGun.java | Java | [
{
"context": " = basicAuthUser;\n this.basicAuthPassword = basicAuthPassword;\n }\n\n @Override\n public SendEmailRespons",
"end": 1572,
"score": 0.9981854557991028,
"start": 1555,
"tag": "PASSWORD",
"value": "basicAuthPassword"
},
{
"context": "lRequest.getBody());\n... | null | [] | package com.example.emailer.dataprovider;
import com.example.emailer.core.dto.SendEmailRequest;
import com.example.emailer.core.dto.SendEmailResponse;
import com.example.emailer.core.repository.EmailClient;
import com.example.emailer.core.repository.EmailResponse;
import lombok.extern.slf4j.Slf4j;
import org.apache.co... | 3,040 | 0.667647 | 0.66634 | 75 | 39.799999 | 28.378866 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.733333 | false | false | 9 |
075140befc923b506dd2c16738b70c57ecab10ed | 1,821,066,189,728 | 5845b08910af75a7a967e2c8713a893ff2e998dd | /src/Main.java | 28e38c459b0a363baf2e4f43d3ddd1c8f513133f | [] | no_license | ElifRana/LinkedListAccessElements | https://github.com/ElifRana/LinkedListAccessElements | bafaa46dd54f9726ad6c0da57b7d5c31d924a78a | 5768c51651527f6a41ff7cd67fabbf8e7de8ec34 | refs/heads/master | 2023-07-31T05:38:20.962000 | 2021-09-27T08:40:58 | 2021-09-27T08:40:58 | 410,806,491 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.LinkedList;
public class Main {
public static void main(String[] args) {
LinkedList<String> name = new LinkedList<>();
name.add("Elif");
name.add("Rana");
name.add("Taha");
name.addFirst("Reyhan");
name.add("Mustafa");
System.out.println(... | UTF-8 | Java | 699 | java | Main.java | Java | [
{
"context": "ng> name = new LinkedList<>();\n\n name.add(\"Elif\");\n name.add(\"Rana\");\n name.add(\"Ta",
"end": 174,
"score": 0.9995790719985962,
"start": 170,
"tag": "NAME",
"value": "Elif"
},
{
"context": ">();\n\n name.add(\"Elif\");\n name.a... | null | [] | import java.util.LinkedList;
public class Main {
public static void main(String[] args) {
LinkedList<String> name = new LinkedList<>();
name.add("Elif");
name.add("Rana");
name.add("Taha");
name.addFirst("Reyhan");
name.add("Mustafa");
System.out.println(... | 699 | 0.568768 | 0.555874 | 27 | 24.851852 | 21.547026 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.555556 | false | false | 9 |
1c52ef79b8cc8b2c17e9be975b42071d84f87336 | 28,372,553,959,201 | e45e617afc336eddd976255a643e78b7c30f4f4d | /src/dcp/logic/factory/TypeFactory.java | 85951e122508615674947b1df5e6164b0ab12c9f | [
"Apache-2.0"
] | permissive | jackred/devcompack | https://github.com/jackred/devcompack | dcf1b96b08df49d4f2c81c083a31738ddd893443 | 56073fb76c7526c004e888af284b8f81fe837789 | refs/heads/master | 2015-08-11T18:52:15.852000 | 2015-02-06T12:33:56 | 2015-02-06T12:33:56 | 20,133,869 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package dcp.logic.factory;
public class TypeFactory
{
// Pack install type
public enum INSTALL_TYPE {
DEFAULT,
COPY,
EXTRACT,
EXECUTE
}
// Pack install os
public enum PLATFORM {
ALL,
WINDOWS,
LINUX,
MAC
}
// Pack IzP... | UTF-8 | Java | 1,472 | java | TypeFactory.java | Java | [] | null | [] | package dcp.logic.factory;
public class TypeFactory
{
// Pack install type
public enum INSTALL_TYPE {
DEFAULT,
COPY,
EXTRACT,
EXECUTE
}
// Pack install os
public enum PLATFORM {
ALL,
WINDOWS,
LINUX,
MAC
}
// Pack IzP... | 1,472 | 0.481658 | 0.476223 | 78 | 17.871796 | 11.620449 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.384615 | false | false | 9 |
71c36b511a6c6cecd063b28ebc35ddab0d95d214 | 1,958,505,129,239 | 3ad1f7845d283da7f2c7dc41b88db47900187c51 | /app/src/main/java/com/app/ats/com/myloco/MapsActivity.java | 0883d290f6aa42941606975f06ee6a49a7728e33 | [] | no_license | thanseehabdulla/Locationdetection | https://github.com/thanseehabdulla/Locationdetection | 6ce7974b761fe56df320d3f1a3f021a2e29c293e | 08e372d1f08eeb2f6d648f134bd27b0ed7633aa4 | refs/heads/master | 2021-01-19T10:42:43.442000 | 2017-04-11T06:39:24 | 2017-04-11T06:39:24 | 87,895,839 | 3 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.app.ats.com.myloco;
import android.Manifest;
import android.annotation.SuppressLint;
import android.app.AlertDialog;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
import and... | UTF-8 | Java | 24,686 | java | MapsActivity.java | Java | [
{
"context": " loc.setSenderName(sprf.getString(\"username\", \"<Anonymous>\"));\n\n Geocoder geoCoder = new Geocoder(ge",
"end": 11544,
"score": 0.9935384392738342,
"start": 11535,
"tag": "USERNAME",
"value": "Anonymous"
}
] | null | [] | package com.app.ats.com.myloco;
import android.Manifest;
import android.annotation.SuppressLint;
import android.app.AlertDialog;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
import and... | 24,686 | 0.575954 | 0.573037 | 609 | 39.535305 | 31.062613 | 259 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.589491 | false | false | 9 |
f36ce8790dd35367c6ff9ef27ceebb3f00a90de7 | 29,738,353,563,548 | fb201e66252889d74df938b303fcf6ca90c475f5 | /src/com/example/ahacks/Profile.java | 808fa4fca95bc29efe7ab666494e59d411d871cd | [] | no_license | theAids/AHack | https://github.com/theAids/AHack | fe50a954389c142c08c4f81098c9b3d12d874cec | 4da8b83fcb52beb8f78a0773f540f8b98095c9db | refs/heads/master | 2015-08-19T03:05:48.533000 | 2015-01-11T03:50:44 | 2015-01-11T03:50:44 | 29,051,905 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.ahacks;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widg... | UTF-8 | Java | 1,580 | java | Profile.java | Java | [] | null | [] | package com.example.ahacks;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widg... | 1,580 | 0.739873 | 0.739241 | 60 | 25.333334 | 21.827099 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.916667 | false | false | 9 |
98344c6c71854224ebf01c1acd0e1df88f39cf5f | 30,090,540,885,868 | d9c317e6641a8089147357443fd3c8fbeac4f8e3 | /201708/20170831/Team2/SunGuiYong/works/work01/MyShopping.java | e2a9320d4a6494a17b5313e3221800cea5fbf045 | [
"Apache-2.0"
] | permissive | JAVA201708/Homework | https://github.com/JAVA201708/Homework | ec2032232d41e20c33f0401c4e6942a761516b43 | fce2f67f8b04ed60c46769d0d479d83218cf25d8 | refs/heads/master | 2020-02-22T09:11:36.003000 | 2017-11-21T13:46:30 | 2017-11-21T13:46:30 | 100,106,439 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.*;
public class MyShopping
{
public static void main(String[] args)
{
Menu menu = new Menu();
menu.showLoginMenu();
}
}
class Menu
{
public void showLoginMenu()
{
Scanner input = new Scanner(System.in);
System.out.println("欢迎使用我行我素购物管理系统\n1.登录系统\n2.退出");
System.out.prin... | UTF-8 | Java | 3,002 | java | MyShopping.java | Java | [
{
"context": "\tswitch (num)\r\n\t\t{\r\n\t\t\tcase 1:\r\n\t\t\t\ts.userName = \"admin\";\r\n\t\t\t\ts.password = \"admin\";\r\n\t\t\t\ts.check();\r\n\t\t\t",
"end": 456,
"score": 0.9662876725196838,
"start": 451,
"tag": "USERNAME",
"value": "admin"
},
{
"context": " 1:\r\n\t\t\t\ts.... | null | [] | import java.util.*;
public class MyShopping
{
public static void main(String[] args)
{
Menu menu = new Menu();
menu.showLoginMenu();
}
}
class Menu
{
public void showLoginMenu()
{
Scanner input = new Scanner(System.in);
System.out.println("欢迎使用我行我素购物管理系统\n1.登录系统\n2.退出");
System.out.prin... | 3,007 | 0.587747 | 0.577075 | 127 | 17.937008 | 15.29384 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.897638 | false | false | 9 |
486bb97d81c45ce9a6cb543de6083e8382ac1e69 | 19,705,309,977,448 | bf82f4affc1352195b6f8d3834fb4ec077a7517a | /infobutton-schema/src/main/java/edu/duke/mc/cfm/dci/infobutton/IDLite.java | d9efab967a69f38542f2abfc367e1c732baa1e52 | [] | no_license | ChristopherEdwards/Innovation-182 | https://github.com/ChristopherEdwards/Innovation-182 | e7f96335f48f723abefa66822d7fdddb6f3f6c9f | 8c927ed7749ab51a74ee28bc7b3d60c350ff0ba7 | refs/heads/master | 2020-11-30T16:19:43.112000 | 2013-04-24T20:11:43 | 2013-04-24T20:11:43 | 8,903,198 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package edu.duke.mc.cfm.dci.infobutton;
import org.hl7.v3.IILite;
/*
$Rev:: 1097 $: Revision of last commit
$Author:: ai28 $: Author of last commit
$Date:: 2010-10-01 1#$: Date of last commit
*/
public class IDLite {
private String root;
private String extension;
private St... | UTF-8 | Java | 1,527 | java | IDLite.java | Java | [
{
"context": "97 $: Revision of last commit\r\n$Author:: ai28 $: Author of last commit\r\n$Date:: 2010-10-",
"end": 140,
"score": 0.99964839220047,
"start": 136,
"tag": "USERNAME",
"value": "ai28"
}
] | null | [] | package edu.duke.mc.cfm.dci.infobutton;
import org.hl7.v3.IILite;
/*
$Rev:: 1097 $: Revision of last commit
$Author:: ai28 $: Author of last commit
$Date:: 2010-10-01 1#$: Date of last commit
*/
public class IDLite {
private String root;
private String extension;
private St... | 1,527 | 0.690897 | 0.679764 | 66 | 21.136364 | 21.161634 | 72 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.515152 | false | false | 9 |
8d45443ec5f4fddf17ba40be3064b02f0bdb84be | 16,827,681,896,077 | f4c2c2c31e104be79c708dd8f60f917c0719ebb8 | /app/src/main/java/com/example/hereshem/collegeapp/RegisterActivity.java | d6073a8768a926e0f35edc989a7ac0dbd89f2608 | [] | no_license | hereshem/CollegeApp | https://github.com/hereshem/CollegeApp | 72070dc403277f195cbb5957e8d41ee540c8e49e | 62aba684c9d4f71776d16bc7e087245640f2785e | refs/heads/master | 2021-01-22T11:27:50.502000 | 2017-06-14T03:14:20 | 2017-06-14T03:14:20 | 92,697,255 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.hereshem.collegeapp;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import java.util.List;
public class RegisterActivity extends AppCompatActivity {
... | UTF-8 | Java | 1,605 | java | RegisterActivity.java | Java | [
{
"context": "package com.example.hereshem.collegeapp;\n\nimport android.support.v7.app.AppCom",
"end": 28,
"score": 0.978865385055542,
"start": 20,
"tag": "USERNAME",
"value": "hereshem"
}
] | null | [] | package com.example.hereshem.collegeapp;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import java.util.List;
public class RegisterActivity extends AppCompatActivity {
... | 1,605 | 0.616822 | 0.616199 | 54 | 28.722221 | 24.414186 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.685185 | false | false | 9 |
712b93a9ffe531c4d2e4792bef4ff3537d862400 | 8,323,646,673,452 | 09acf5ff4176f6bd00dc51db58095f7270fcf1e7 | /connectors/chs-android-rpi-connector-gradle/app/src/main/java/com/iiitd/networking/SensorType.java | 48ba7f050f805d309bba6b213fde88a6d49c215c | [] | no_license | am2990/chs-iiitd | https://github.com/am2990/chs-iiitd | c4ea1a7e1e5913e0d2343b393fda194eb141d4e2 | c598ecffc9f20d3e5b02ee51c22cd670f080834d | refs/heads/master | 2020-02-26T14:48:34.240000 | 2016-02-03T07:00:17 | 2016-02-03T07:00:17 | 32,737,170 | 1 | 4 | null | false | 2016-01-22T07:17:39 | 2015-03-23T14:30:58 | 2016-01-15T09:37:02 | 2016-01-22T07:17:39 | 9,554 | 0 | 2 | 13 | Java | null | null | package com.iiitd.networking;
public enum SensorType {
MEDICAL, GENERIC, OTHERS
} | UTF-8 | Java | 87 | java | SensorType.java | Java | [] | null | [] | package com.iiitd.networking;
public enum SensorType {
MEDICAL, GENERIC, OTHERS
} | 87 | 0.747126 | 0.747126 | 5 | 16.6 | 13.275541 | 29 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6 | false | false | 9 |
91b662443d5f76e2234635a29f8798e298b3cc9a | 12,919,261,694,053 | c7cd96376b71c7fa23e1d9b0e723c772c3b14164 | /app/src/main/java/el917/rgames/biling/PreferencesHelper.java | 1c5821ac997d6f392fd572b7ed7b3054f46c1b97 | [] | no_license | a-dev-mobile/parser_metagames.ru | https://github.com/a-dev-mobile/parser_metagames.ru | be9b6885a4f59104a14a078f338173866bd95b5d | dd0d189edf2e2a968b3f27094d3f885ec797a46c | refs/heads/master | 2021-01-18T15:14:53.736000 | 2015-02-07T13:20:34 | 2015-02-07T13:20:34 | 30,455,564 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package el917.rgames.biling;
import android.content.Context;
import android.content.SharedPreferences;
public class PreferencesHelper {
public static final String SETTINGS = "settings";
private static final String TAG_DISABLED_ADS = "disabledADS";
private static boolean disabledADS;
public static bo... | UTF-8 | Java | 1,592 | java | PreferencesHelper.java | Java | [] | null | [] | package el917.rgames.biling;
import android.content.Context;
import android.content.SharedPreferences;
public class PreferencesHelper {
public static final String SETTINGS = "settings";
private static final String TAG_DISABLED_ADS = "disabledADS";
private static boolean disabledADS;
public static bo... | 1,592 | 0.628141 | 0.623744 | 56 | 27.428572 | 24.488232 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.571429 | false | false | 9 |
047acd08d926f116431a259280a8301bad2773fa | 15,341,623,234,449 | 9bb3e89d7053647f17f7bbdd0bdc3f71567787b6 | /src/main/java/com/prepurchase/Dump2.java | a1432812211e89285d731b7eb6f89b82c4df3ead | [] | no_license | tulasi55ram/PrepurchaseAPIs | https://github.com/tulasi55ram/PrepurchaseAPIs | c40dd80c4c971664c2e8a8947dc9db6deb1d91ae | 06d15b0780ea86f72053342a7abd8fde02abacc6 | refs/heads/master | 2020-02-27T00:49:38.901000 | 2016-06-08T09:44:38 | 2016-06-08T09:44:38 | 23,220,487 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.prepurchase;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.charset.Charset;
import java.util.Iterator;
import java.uti... | UTF-8 | Java | 6,156 | java | Dump2.java | Java | [] | null | [] | package com.prepurchase;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintStream;
import java.io.PrintWriter;
import java.nio.ByteBuffer;
import java.nio.CharBuffer;
import java.nio.charset.Charset;
import java.util.Iterator;
import java.uti... | 6,156 | 0.640351 | 0.620533 | 182 | 32.82967 | 29.369352 | 165 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.692308 | false | false | 9 |
8c19e3a2b616d04edad3224c584f2e7f237e0365 | 20,469,814,186,876 | e3926909c57ea720050ace610bda0a33537ea42a | /MemberProject/src/com/ssafy/controller/MainServlet.java | 5c69f38610cd5018a6fa96adf7c15b5aaef6239a | [] | no_license | se-wook/java | https://github.com/se-wook/java | 9d6377773f5dc834c383c28ebc09848943e5056a | 4a1a0e40beb8aab9eb58b8fc00af3b692ea3c2d7 | refs/heads/master | 2023-03-19T12:57:37.660000 | 2021-03-14T14:01:18 | 2021-03-14T14:01:18 | 347,650,977 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ssafy.controller;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java... | UTF-8 | Java | 3,886 | java | MainServlet.java | Java | [] | null | [] | package com.ssafy.controller;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java... | 3,886 | 0.713389 | 0.70999 | 117 | 31.589743 | 24.179935 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.760684 | false | false | 9 |
c63951d20f6ceea88291ec9e4b12c34f1f81aafb | 15,539,191,736,516 | 6e17fc05871007dfe89b525e8520cbd682193714 | /Security-Exchange/junit/exchangeStructures/Test_BidBook.java | bad89a342ca99c3071492c83b3afe2d194020316 | [] | no_license | ChenPH0522/Computing-in-Finance | https://github.com/ChenPH0522/Computing-in-Finance | 4bb6cc5dbdcf366fcd5ecf72809867c0ebcab6e6 | a050b4512ffd6d1d2c01d981661d364d8845dc42 | refs/heads/master | 2020-03-28T18:07:19.512000 | 2018-09-15T00:38:46 | 2018-09-15T00:38:46 | 148,854,145 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package exchangeStructures;
import static org.junit.Assert.*;
import java.util.HashMap;
import org.junit.Test;
import fills.*;
import orderSpecs.*;
import orderTypes.*;
import util.Pair;
public class Test_BidBook {
@Test
public void test_BidBook() {
Price p1_1 = new Price(7);
Price p1_2 = new Price(1);
Pr... | UTF-8 | Java | 3,346 | java | Test_BidBook.java | Java | [
{
"context": "\"IBM\" );\n\t\t\n\t\tClientId clientId0 = new ClientId( \"Lee\" );\n\t\tClientOrderId clientOrderId0 = new ClientOr",
"end": 936,
"score": 0.8413323163986206,
"start": 933,
"tag": "NAME",
"value": "Lee"
},
{
"context": "ancel();\n\t\t\n\t\tClientId clientId1 = new Clie... | null | [] | package exchangeStructures;
import static org.junit.Assert.*;
import java.util.HashMap;
import org.junit.Test;
import fills.*;
import orderSpecs.*;
import orderTypes.*;
import util.Pair;
public class Test_BidBook {
@Test
public void test_BidBook() {
Price p1_1 = new Price(7);
Price p1_2 = new Price(1);
Pr... | 3,346 | 0.684399 | 0.633294 | 124 | 25.983871 | 21.059052 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.741935 | false | false | 9 |
0d95809eb00329b2888b6527e6a8fc4c31cccaed | 37,417,755,092,003 | 2143902a6d5e56ecc1f13d9222874d18765cf0ba | /app/src/main/java/com/chromium/fontinstaller/core/FontDownloader.java | 57c0aec79317b1ab7621af4ab72dd084803a6d11 | [
"Apache-2.0"
] | permissive | samterer/Fontster | https://github.com/samterer/Fontster | eacfe7224aad9b212975eb5a986519ecc2ff3dd1 | dc3c3c56ded660c3aadc18798b83bf5c043d3103 | refs/heads/master | 2020-12-28T23:23:10.172000 | 2015-12-05T02:08:17 | 2015-12-05T02:08:17 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright 2015 Priyesh Patel
*
* Licensed 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 applicable law or agreed t... | UTF-8 | Java | 4,020 | java | FontDownloader.java | Java | [
{
"context": "/*\n * Copyright 2015 Priyesh Patel\n *\n * Licensed under the Apache License, Version ",
"end": 34,
"score": 0.9998345375061035,
"start": 21,
"tag": "NAME",
"value": "Priyesh Patel"
}
] | null | [] | /*
* Copyright 2015 <NAME>
*
* Licensed 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 applicable law or agreed to in wr... | 4,013 | 0.709204 | 0.706965 | 116 | 33.655174 | 28.70393 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.551724 | false | false | 9 |
684f74c63bbd71b3d6ef2528e7077101f608c343 | 37,598,143,717,098 | 704d554e439a2151bfa9bd11658a4b942e63dbdf | /android_App2/src/main/java/com/slife/gopapa/model/FromUserInfo.java | e56b9b43387741b5727c613c17706d20f07f595e | [] | no_license | townkoim/Andorid_Goty_Im_ | https://github.com/townkoim/Andorid_Goty_Im_ | 5fb35aef1c8bb648e0a37f537a69cb196dc17617 | 85f34b95e3b65761476df7608b4fbdadd88e7045 | refs/heads/master | 2021-01-21T13:07:41.055000 | 2016-05-12T08:26:45 | 2016-05-12T08:26:45 | 46,387,127 | 1 | 3 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* @Title: FromUserInfo.java
* @Package com.slife.gopapa.model
* @Description: TODO(用一句话描述该文件做什么)
* @author 肖邦
* @date 2015-1-22 上午9:57:36
* @version V1.0
*/
package com.slife.gopapa.model;
import java.io.Serializable;
/**
* @ClassName: FromUserInfo
* @Description: 约赛详情的发起者
* @author 肖邦
* @date 2015-1-22 ... | UTF-8 | Java | 1,971 | java | FromUserInfo.java | Java | [
{
"context": "odel\n* @Description: TODO(用一句话描述该文件做什么)\n* @author 肖邦\n* @date 2015-1-22 上午9:57:36\n* @version V1.0\n*/ \np",
"end": 116,
"score": 0.9814941883087158,
"start": 114,
"tag": "NAME",
"value": "肖邦"
},
{
"context": "FromUserInfo\n * @Description: 约赛详情的发起者\n * @author 肖邦\n *... | null | [] | /**
* @Title: FromUserInfo.java
* @Package com.slife.gopapa.model
* @Description: TODO(用一句话描述该文件做什么)
* @author 肖邦
* @date 2015-1-22 上午9:57:36
* @version V1.0
*/
package com.slife.gopapa.model;
import java.io.Serializable;
/**
* @ClassName: FromUserInfo
* @Description: 约赛详情的发起者
* @author 肖邦
* @date 2015-1-22 ... | 1,971 | 0.72189 | 0.673547 | 72 | 24.569445 | 18.234449 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.236111 | false | false | 9 |
9f4094f78c99d6cc64070835cf1009963ce40eaf | 25,580,825,260,025 | a68a5f475de08b35d6bfb46ba22b9c04cc62cc9a | /src/main/java/com/assetmgmt/repo/master/UnitMasterRepository.java | 566e20073acf457f524bf10e86f948ca1baccdc6 | [] | no_license | bhartiiaf/AssetMgmt | https://github.com/bhartiiaf/AssetMgmt | c8911cdc42ac6dd37438096d7187519701db3aeb | 56902f9945004438fea562f4f9a53c1015377fbd | refs/heads/master | 2022-06-11T04:45:45.855000 | 2020-05-09T18:04:37 | 2020-05-09T18:04:37 | 252,524,132 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.assetmgmt.repo.master;
import org.springframework.data.jpa.repository.JpaRepository;
import com.assetmgmt.modal.master.UnitMaster;
public interface UnitMasterRepository extends JpaRepository<UnitMaster, Integer> {
}
| UTF-8 | Java | 241 | java | UnitMasterRepository.java | Java | [] | null | [] | package com.assetmgmt.repo.master;
import org.springframework.data.jpa.repository.JpaRepository;
import com.assetmgmt.modal.master.UnitMaster;
public interface UnitMasterRepository extends JpaRepository<UnitMaster, Integer> {
}
| 241 | 0.804979 | 0.804979 | 9 | 24.777779 | 30.00288 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.444444 | false | false | 12 |
ce67d946e80be8d25bd03b7da12c26546d1a1487 | 25,426,206,415,156 | b652133d471c78a851345e0b94471780acb622de | /app/src/main/java/com/benben/sw2025/adapter/HomeNeedAdapter.java | 93ee585c23ee8c06bfd783d22c18e127457b798d | [] | no_license | sw2025/SW2025_ANDROID | https://github.com/sw2025/SW2025_ANDROID | 2fb24521fee54b1479c213ebc0db8742d1815a26 | 9a189e2760595c2b1b577762da16058317db6468 | refs/heads/master | 2020-06-27T22:30:03.610000 | 2017-08-11T09:37:29 | 2017-08-11T09:37:29 | 97,072,591 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.benben.sw2025.adapter;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import com.benben.sw2025.R;
import com.benben.sw2025.entit... | UTF-8 | Java | 2,813 | java | HomeNeedAdapter.java | Java | [
{
"context": "ection;\nimport java.util.List;\n\n/**\n * Created by 牛海丰 on 2017/8/11.\n */\n\npublic class HomeNeedAdapter",
"end": 411,
"score": 0.5064696073532104,
"start": 410,
"tag": "NAME",
"value": "牛"
},
{
"context": "ection;\nimport java.util.List;\n\n/**\n * Created by 牛海丰 o... | null | [] | package com.benben.sw2025.adapter;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import com.benben.sw2025.R;
import com.benben.sw2025.entit... | 2,813 | 0.654988 | 0.643547 | 100 | 26.969999 | 26.440292 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.53 | false | false | 12 |
2e63165188f605bf73b5723dabf99e2457296aa5 | 17,300,128,292,566 | 78e8cafd61042ebe2fc7a9ac521e7697f4afb7ca | /ejb/src/main/java/sigep/data/dao/ArchivoDao.java | e088e9cdaec57ae0bc3b980940553c38c9c3e1e2 | [] | no_license | cdavcp/abrazando_huellitas | https://github.com/cdavcp/abrazando_huellitas | ee5101dec4e59c2dab5520b6d5fe86ad46398022 | ecc770259e5d206eb3e6de64aad558693e463e74 | refs/heads/master | 2021-01-20T05:40:01.299000 | 2017-04-29T16:42:53 | 2017-04-29T16:42:53 | 89,797,559 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package sigep.data.dao;
import sigep.model.Archivo;
public class ArchivoDao extends DaoBase<Archivo>{
}
| UTF-8 | Java | 107 | java | ArchivoDao.java | Java | [] | null | [] | package sigep.data.dao;
import sigep.model.Archivo;
public class ArchivoDao extends DaoBase<Archivo>{
}
| 107 | 0.785047 | 0.785047 | 7 | 14.285714 | 17.854286 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.285714 | false | false | 12 |
1e8db0906ebdde10afe9d08d6c0c7702d43def44 | 20,727,512,190,021 | 429b528f5507a1e82495fe6d8cc38e8f7f1d5c68 | /app/src/main/java/com/app/dmitryteplyakov/sportdiary/Training/NewDayFragment.java | f6d63a5cbd63dc950a697a050199920a300ae95b | [] | no_license | dimon2242/sportdiary | https://github.com/dimon2242/sportdiary | 60947e823c962ed86570715afea32a4403f4d77d | a3758483ae7a5808e82fdbfc4360dabb11e41b62 | HEAD | 2018-11-09T05:14:29.704000 | 2018-08-20T21:21:51 | 2018-08-20T21:21:51 | 145,471,130 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.app.dmitryteplyakov.sportdiary.Training;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.w... | UTF-8 | Java | 5,347 | java | NewDayFragment.java | Java | [
{
"context": "il.List;\nimport java.util.UUID;\n\n/**\n * Created by Dmitry on 01.08.2017.\n */\n\npublic class NewDayFragment e",
"end": 1093,
"score": 0.9994571805000305,
"start": 1087,
"tag": "NAME",
"value": "Dmitry"
}
] | null | [] | package com.app.dmitryteplyakov.sportdiary.Training;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.w... | 5,347 | 0.68487 | 0.682252 | 118 | 44.31356 | 34.773041 | 181 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.779661 | false | false | 12 |
d0f2b0b3045e43ddb17866d2e93837045bc712ca | 35,390,530,528,997 | 05c2f6ad17412b0bb2d82e7c6159244aec6fff66 | /app/src/main/java/com/store/finder/OwnerHome.java | 838db2bb5b729c9128a654718ea8050d8447bd41 | [] | no_license | prakashsinha271/Local_Store_Finder | https://github.com/prakashsinha271/Local_Store_Finder | d91a2ccb28da0296c543f7f6b3992e12d654b32f | 93eab9ad4cc349e1f180f1d5eb0ac9ca2abebc23 | refs/heads/master | 2023-02-15T21:14:06.934000 | 2020-12-25T04:08:35 | 2020-12-25T04:08:35 | 324,282,482 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.store.finder;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.Intent;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.Bundle;
import android... | UTF-8 | Java | 6,878 | java | OwnerHome.java | Java | [] | null | [] | package com.store.finder;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.Intent;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.Bundle;
import android... | 6,878 | 0.620965 | 0.620529 | 185 | 36.183784 | 31.837744 | 165 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.524324 | false | false | 12 |
326e23fa97955d68ce09c37dca4214affb1e9770 | 2,190,433,374,222 | c74d966a5a70d100282e4a49644fd12b9449b074 | /RefugeePortal/src/main/java/com/refugees/db/model/RefugeeUser.java | f394ed31272eb04b9bab613728934b32a6df2e65 | [] | no_license | ShehataIbrahim/RefugeesCleaned | https://github.com/ShehataIbrahim/RefugeesCleaned | 2cf4a885e49b048e9b64564dd9a82f79372f5572 | 4dd500c9181bae758557030d4bb2311dbf628ee5 | refs/heads/master | 2020-05-03T12:08:20.692000 | 2019-04-09T18:23:37 | 2019-04-09T18:23:37 | 178,617,204 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.refugees.db.model;
import net.hitachifbbot.NamminUser;
import net.hitachifbbot.model.NamminUserData;
import java.util.Date;
public class RefugeeUser extends NamminUserData {
public NamminUser dbUserData;
//@Id
//@Column(name = "nammin_id")
private Integer userId ;
//@Column(name = "nammin_name")
p... | UTF-8 | Java | 3,244 | java | RefugeeUser.java | Java | [
{
"context": "serId;\n\t}\n\n\tpublic String getUserName() {\n\t\treturn userName;\n\t}\n\n\tpublic void setUserName(String userName) {\n",
"end": 1068,
"score": 0.9293689727783203,
"start": 1060,
"tag": "USERNAME",
"value": "userName"
},
{
"context": "d setUserName(String userName) ... | null | [] | package com.refugees.db.model;
import net.hitachifbbot.NamminUser;
import net.hitachifbbot.model.NamminUserData;
import java.util.Date;
public class RefugeeUser extends NamminUserData {
public NamminUser dbUserData;
//@Id
//@Column(name = "nammin_id")
private Integer userId ;
//@Column(name = "nammin_name")
p... | 3,244 | 0.752158 | 0.752158 | 140 | 22.171429 | 22.451836 | 150 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.435714 | false | false | 12 |
a77d690b9f30171e2f5f25ca0eb18c831042aad6 | 34,875,134,462,908 | a48e4ee3cb764a521679f5bb04b220899fcdfb32 | /src/main/java/org/acme/experience/stichingfacts/client/FactsEndpoint.java | 095babac840a23aede8d31e246e7ce0c133e7398 | [
"MIT"
] | permissive | hocinehacherouf/stiching-facts | https://github.com/hocinehacherouf/stiching-facts | 05d9d3ece03c51a6563f0a7c652c7ac7733d9f31 | dc1578a6be7bb7a149a598de9546377a55beb43e | refs/heads/main | 2023-04-11T23:33:22.760000 | 2021-05-18T13:41:06 | 2021-05-18T13:41:06 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.acme.experience.stichingfacts.client;
import lombok.SneakyThrows;
import org.acme.experience.stichingfacts.client.model.EnhancedFact;
import org.acme.experience.stichingfacts.client.model.Fact;
import org.acme.experience.stichingfacts.client.service.EnhancedFactService;
import org.acme.experience.stichingf... | UTF-8 | Java | 3,104 | java | FactsEndpoint.java | Java | [] | null | [] | package org.acme.experience.stichingfacts.client;
import lombok.SneakyThrows;
import org.acme.experience.stichingfacts.client.model.EnhancedFact;
import org.acme.experience.stichingfacts.client.model.Fact;
import org.acme.experience.stichingfacts.client.service.EnhancedFactService;
import org.acme.experience.stichingf... | 3,104 | 0.720039 | 0.717784 | 85 | 35.517647 | 32.786873 | 187 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.447059 | false | false | 12 |
dcc186f2449cc14a1d9c194677af2e90404d1d3d | 34,875,134,463,926 | bdbf4d3e012a1f9543011edd6d3ab818a08580d3 | /src/test/java/hu/dpc/edu/spring/SpringApplicationConfigTest.java | 04fa9a95854794981eb5ad478753ed5a639c0de0 | [] | no_license | thevrg/ericsson-custom-java-week2 | https://github.com/thevrg/ericsson-custom-java-week2 | ac96d13919820fd62ac47976529627523ac47d62 | 5f3ae179eb92a0b2844b23586d1f099c4f4713cc | refs/heads/master | 2020-12-24T10:11:47.892000 | 2016-11-08T13:40:44 | 2016-11-08T13:40:44 | 73,095,667 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package hu.dpc.edu.spring;
import hu.dpc.edu.Customer;
import hu.dpc.edu.CustomerController;
import hu.dpc.edu.CustomerRepository;
import hu.dpc.edu.components.AuditLogger;
import hu.dpc.edu.components.CustomComponent;
import org.junit.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationCont... | UTF-8 | Java | 2,956 | java | SpringApplicationConfigTest.java | Java | [
{
"context": "ic org.junit.Assert.assertSame;\n\n/**\n * Created by vrg on 2016. 11. 07..\n */\npublic class SpringApplicat",
"end": 557,
"score": 0.9995486736297607,
"start": 554,
"tag": "USERNAME",
"value": "vrg"
}
] | null | [] | package hu.dpc.edu.spring;
import hu.dpc.edu.Customer;
import hu.dpc.edu.CustomerController;
import hu.dpc.edu.CustomerRepository;
import hu.dpc.edu.components.AuditLogger;
import hu.dpc.edu.components.CustomComponent;
import org.junit.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationCont... | 2,956 | 0.714817 | 0.710081 | 66 | 43.78788 | 32.422642 | 122 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.757576 | false | false | 12 |
d3c3117743cb8819387804a0753e8ca3469689df | 36,679,020,721,081 | 23aed44fedc429c1d616cda8f6623d88a0ad8c44 | /GameManagerServer/src/server/Client.java | fd520518554028d8530adf3dc2581fed1f57bf1f | [] | no_license | Chakinn/GameManager | https://github.com/Chakinn/GameManager | 4c528e1fbd79b2b36f527236d976294d7a9324ed | 8b54ce318b8c27cf3e5abb5646384ccc8fde575b | refs/heads/master | 2020-04-17T18:44:57.853000 | 2019-01-21T15:48:35 | 2019-01-21T15:48:35 | 166,839,561 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package server;
import data.InfoDB;
import data.ServerFacade;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.InputStreamReader;
import java.net.Socket;
import java.util.HashSet;
public class Client extends Thread
{
private Integer ID;
private Socket sock... | UTF-8 | Java | 9,597 | java | Client.java | Java | [
{
"context": " public void addClan(int leaderID,String leaderUsername,String name)\n {\n int i= serverFacade.ad",
"end": 9329,
"score": 0.5835580229759216,
"start": 9321,
"tag": "USERNAME",
"value": "Username"
},
{
"context": " int i= serverFacade.addClan(leaderID,... | null | [] | package server;
import data.InfoDB;
import data.ServerFacade;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.InputStreamReader;
import java.net.Socket;
import java.util.HashSet;
public class Client extends Thread
{
private Integer ID;
private Socket sock... | 9,597 | 0.408357 | 0.401896 | 320 | 28.987499 | 19.632559 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.528125 | false | false | 12 |
c1291d90fd5089b8d128cab7844defc1362d02b4 | 34,840,774,710,295 | b60ab5cc2e5848bd552f620d6aab37d9ffe24d0c | /Genericos.java | 72ebcbf07f3dadf5a8a7d2287c625c1e3320c508 | [] | no_license | rene198/Estructura-de-Datos | https://github.com/rene198/Estructura-de-Datos | afbfe7c51144d820ccd05d224c76db52b6c840da | 71a7a7899abd0728acce0347b8aa2668a4a8a416 | refs/heads/main | 2023-02-09T10:19:09.152000 | 2021-01-02T15:15:10 | 2021-01-02T15:15:10 | 324,798,018 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* @author Quispe René Daniel
* @fecha 29/12/2020
* Tema: Tipo de datos Genéricos
*/
package genericos;
//T es un parámetro de tipo que será reemplazado por un tipo real cuando se crea un objeto de tipo genericos
public class Genericos<T extends Number> {
private T minX, maxX, minY, maxY; //Declara 4... | UTF-8 | Java | 1,239 | java | Genericos.java | Java | [
{
"context": "/*\r\n * @author Quispe René Daniel\r\n * @fecha 29/12/2020\r\n * Tema: Tipo de datos Gen",
"end": 33,
"score": 0.9998659491539001,
"start": 15,
"tag": "NAME",
"value": "Quispe René Daniel"
}
] | null | [] | /*
* @author <NAME>
* @fecha 29/12/2020
* Tema: Tipo de datos Genéricos
*/
package genericos;
//T es un parámetro de tipo que será reemplazado por un tipo real cuando se crea un objeto de tipo genericos
public class Genericos<T extends Number> {
private T minX, maxX, minY, maxY; //Declara 4 objetos de ... | 1,226 | 0.602429 | 0.593522 | 37 | 31.378378 | 25.973324 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.675676 | false | false | 12 |
33dc58189b40c76ce6491eb6a259b92b96b80570 | 19,980,187,909,408 | 74edfcff703ca22277c3ab6e067301f045da2ad2 | /zhuxuebao/src/main/java/com/wazxb/xuerongbao/storage/data/ShareData.java | 9ac2038259dc8b858bc5ace7654f8d5d773cb288 | [] | no_license | zxzx74147/App_xuerongbao | https://github.com/zxzx74147/App_xuerongbao | a096ce5da8f0fc1d04e53af970e16c6ee09b1734 | 661358140d8388b0bfe2d219330b61f64ccc430f | refs/heads/master | 2021-05-01T15:29:22.155000 | 2016-03-25T11:07:59 | 2016-03-25T11:07:59 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.wazxb.xuerongbao.storage.data;
import java.io.Serializable;
/**
* Created by zhengxin on 16/3/3.
*/
public class ShareData implements Serializable {
public String wbTxt;//微博分享文案
public String wbUrl;//微博分享Url
public String wxTxt;//微信分享文案
public String wxUrl;//微信分享Url
public String mmT... | UTF-8 | Java | 513 | java | ShareData.java | Java | [
{
"context": ";\n\nimport java.io.Serializable;\n\n/**\n * Created by zhengxin on 16/3/3.\n */\npublic class ShareData implements ",
"end": 100,
"score": 0.9991176128387451,
"start": 92,
"tag": "USERNAME",
"value": "zhengxin"
}
] | null | [] | package com.wazxb.xuerongbao.storage.data;
import java.io.Serializable;
/**
* Created by zhengxin on 16/3/3.
*/
public class ShareData implements Serializable {
public String wbTxt;//微博分享文案
public String wbUrl;//微博分享Url
public String wxTxt;//微信分享文案
public String wxUrl;//微信分享Url
public String mmT... | 513 | 0.720824 | 0.71167 | 17 | 24.705883 | 15.657228 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.588235 | false | false | 12 |
74f073aac46a9ecfb2d87a0c23acf7485f23151a | 19,980,187,910,642 | 882b281a1ec536c18b77766982b2c67c13124928 | /MainActivity.java | dd12c8d737f70456712bdd34e199ee2581c72d06 | [] | no_license | lutfurccn/GetOnePageToAnother | https://github.com/lutfurccn/GetOnePageToAnother | 534d7d159c8a528377ac302bc51268412f024ea7 | 9e93f7d57cbe34b070bcbcda4e1d7a58a94ca5da | refs/heads/master | 2017-12-01T09:42:00.434000 | 2016-06-11T04:09:45 | 2016-06-11T04:09:45 | 60,889,134 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.mobileappdevelop.intent;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
EditText firstName;... | UTF-8 | Java | 1,099 | java | MainActivity.java | Java | [] | null | [] | package com.example.mobileappdevelop.intent;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
EditText firstName;... | 1,099 | 0.720655 | 0.719745 | 35 | 30.4 | 24.790781 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.685714 | false | false | 12 |
46017f6d43d91f95cb57b7c76d128cb51bda7970 | 33,500,744,957,812 | 58aab388d0694ca9508f6c5ecdcda0da6c9b60db | /app/src/main/java/com/example/mobilecoursework/RSSparser.java | 14340959942eb4b0af019b01d9ccca1890ebdf20 | [] | no_license | Marcleese1/MobileCoursework | https://github.com/Marcleese1/MobileCoursework | 92689c99595d93aec32c32a4e6c0d00994fd4678 | a308e89089e6afd1cb0c1ab2c7bac89195d41ed0 | refs/heads/master | 2021-04-11T14:01:34.234000 | 2020-04-10T19:43:14 | 2020-04-10T19:43:14 | 249,025,663 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.mobilecoursework;
//Marc Leese
//S1827987
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.E... | UTF-8 | Java | 3,773 | java | RSSparser.java | Java | [
{
"context": "package com.example.mobilecoursework;\n//Marc Leese\n//S1827987\n\nimport org.apache.http.HttpEntity;\nim",
"end": 50,
"score": 0.9998831152915955,
"start": 40,
"tag": "NAME",
"value": "Marc Leese"
}
] | null | [] | package com.example.mobilecoursework;
//<NAME>
//S1827987
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.Entit... | 3,769 | 0.534853 | 0.532202 | 102 | 35.990196 | 24.001837 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.539216 | false | false | 12 |
21b6d2ac9ab2be6032d7e1889a5c831686d305a0 | 5,497,558,195,239 | 9f9feb18ee8e32b2fe147d57a23fdd338dc59efb | /app/src/main/java/com/example/song/myapplication/popular_movies/Data/APIConstants.java | 742c46056e49798be434256ba4a1ae951aa09d82 | [] | no_license | Songroid/Udacity | https://github.com/Songroid/Udacity | 5399f6366aa375bad6779b4e68b220aa4558b0a4 | 49db2dbb37c41abca09fb7eb57be6ee8308d4010 | refs/heads/master | 2021-01-10T15:39:43.787000 | 2016-01-07T20:06:20 | 2016-01-07T20:06:20 | 44,466,048 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.song.myapplication.popular_movies.Data;
/**
* Created by Song on 11/14/15.
*/
public class APIConstants {
public static final String BASE_URL = "http://api.themoviedb.org/3";
public static final String DISCOVER_MOVIE_URL = "/discover/movie?";
public static final String MOVIE_VIDEO_URL... | UTF-8 | Java | 1,617 | java | APIConstants.java | Java | [
{
"context": "pplication.popular_movies.Data;\n\n/**\n * Created by Song on 11/14/15.\n */\npublic class APIConstants {\n ",
"end": 83,
"score": 0.9963878393173218,
"start": 79,
"tag": "NAME",
"value": "Song"
}
] | null | [] | package com.example.song.myapplication.popular_movies.Data;
/**
* Created by Song on 11/14/15.
*/
public class APIConstants {
public static final String BASE_URL = "http://api.themoviedb.org/3";
public static final String DISCOVER_MOVIE_URL = "/discover/movie?";
public static final String MOVIE_VIDEO_URL... | 1,617 | 0.706246 | 0.700062 | 32 | 49.53125 | 22.10767 | 87 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.8125 | false | false | 12 |
06f669f07cce02c7b98dd756d4826af091730d16 | 29,472,065,617,968 | 96d2b99c3514a59668aabca0cf91b5990fc9c964 | /rest_home/src/main/java/com/e9cloud/core/support/SysPropertits.java | 7592a8e244fca3a813d85dbe204ec60ce29f91b6 | [] | no_license | donggua131432/33e9 | https://github.com/donggua131432/33e9 | 6599590a2c8eb5ee53ac235a6b50df88021c35af | 96089f5001828c10dbf5657a3352326055dd2802 | refs/heads/master | 2020-04-13T11:58:28.053000 | 2018-12-26T15:10:17 | 2018-12-26T15:10:17 | 163,189,038 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.e9cloud.core.support;
import org.springframework.stereotype.Component;
/**
* Created by Administrator on 2016/3/18.
*/
@Component
public class SysPropertits {
private String envName;
private String snCode;
private String ipPort;
public String getIpPort() {
return ipPort;
}
... | UTF-8 | Java | 690 | java | SysPropertits.java | Java | [] | null | [] | package com.e9cloud.core.support;
import org.springframework.stereotype.Component;
/**
* Created by Administrator on 2016/3/18.
*/
@Component
public class SysPropertits {
private String envName;
private String snCode;
private String ipPort;
public String getIpPort() {
return ipPort;
}
... | 690 | 0.636232 | 0.624638 | 36 | 18.166666 | 15.702972 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.305556 | false | false | 12 |
a31cf24f881db627bf46fdd511ea3484682db4e4 | 171,798,750,926 | eb435e07f890fa5220206baa0181582c73f4a8a3 | /src/jeude/DiceBean.java | f66bd3ac7f65acb8746c88f3c5ad258920f0021b | [] | no_license | elhem-dev/javaProject | https://github.com/elhem-dev/javaProject | cc8a343d046a796ee8e0a7e45a3d0862ac802424 | 3b97363d5f45827257a66ce22e860cdb91783381 | refs/heads/main | 2023-08-21T20:53:39.607000 | 2021-11-05T15:03:08 | 2021-11-05T15:03:08 | 424,984,911 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package jeude;
import java.util.Random;
public class DiceBean {
private int value = 1;
//Donne une valeur entre 1 et 6
public void roll() {
value = new Random().nextInt(6) + 1;
}
/* -------------------------------- */
// GET/SET
/* -------------------------------- */
public... | UTF-8 | Java | 443 | java | DiceBean.java | Java | [] | null | [] | package jeude;
import java.util.Random;
public class DiceBean {
private int value = 1;
//Donne une valeur entre 1 et 6
public void roll() {
value = new Random().nextInt(6) + 1;
}
/* -------------------------------- */
// GET/SET
/* -------------------------------- */
public... | 443 | 0.453725 | 0.442438 | 27 | 15.407408 | 15.362917 | 44 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.222222 | false | false | 12 |
488ddc9e8d710b75ca7c1ed8532c1735ddcb2643 | 21,861,383,603,429 | ed41064c4769cf4f11218389e854f89e16081d9a | /src/uplay/view/GameFrame.java | eee34b31a4a32665ef8148b183f24153f8571a6d | [] | no_license | Taewoo-Git/UPlay | https://github.com/Taewoo-Git/UPlay | 67edbc066e90d3a09352728753d009d1f3188f02 | 5132556d217616826aed16001c345b6710e4cd85 | refs/heads/master | 2021-01-16T07:46:42.217000 | 2020-08-24T11:38:07 | 2020-08-24T20:33:15 | 243,028,651 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package uplay.view;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GridLayout;
import java.awt.Point;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;... | WINDOWS-1252 | Java | 6,604 | java | GameFrame.java | Java | [] | null | [] | package uplay.view;
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GridLayout;
import java.awt.Point;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;... | 6,604 | 0.689292 | 0.66443 | 247 | 25.542511 | 23.439413 | 114 | false | false | 0 | 0 | 0 | 0 | 92 | 0.028066 | 2.356275 | false | false | 12 |
77aa3ffa70df98702d9cf5f9c534a2bf038cd008 | 27,685,359,230,626 | f3cc694c561ea706b635ecf5c6785f05d79244c8 | /core/src/main/java/com/tobedevoured/modelcitizen/policy/SkipReferenceFieldPolicy.java | 995d160307ef39da7e458c0b5e69d04355cc36a7 | [
"Apache-2.0"
] | permissive | mguymon/model-citizen | https://github.com/mguymon/model-citizen | 0151ce3648fd0049bc363fde06e2d070f52f50e3 | b5217a12b7a9292877b56942893bec67326247a3 | refs/heads/master | 2023-08-18T11:03:54.453000 | 2022-04-28T18:34:52 | 2022-04-28T18:34:52 | 1,556,938 | 61 | 14 | Apache-2.0 | false | 2023-08-19T01:12:17 | 2011-04-01T19:07:15 | 2023-03-30T10:36:58 | 2022-11-08T05:42:39 | 1,670 | 91 | 13 | 8 | Java | false | false | package com.tobedevoured.modelcitizen.policy;
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache... | UTF-8 | Java | 2,626 | java | SkipReferenceFieldPolicy.java | Java | [] | null | [] | package com.tobedevoured.modelcitizen.policy;
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache... | 2,626 | 0.735339 | 0.733054 | 86 | 29.534883 | 27.897528 | 127 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.453488 | false | false | 12 |
7d599be9d24012166808709fb6410271f03dc8cb | 11,708,080,912,223 | fe730c2bbba1cb60cff222cef8ef493f12d9dcd3 | /diruptor-netty-com/src/main/java/com/gj/disruptor/MessageConsumer.java | 2623a60d32467c6e128a664dbdef704fd348cd73 | [] | no_license | archine/disruptor-demo2 | https://github.com/archine/disruptor-demo2 | 3020b66c0dadcd3b60d78ec971d45a6ba7c000df | 627b87416c91d4ba1070e9c26ac4044717e4dad1 | refs/heads/master | 2020-05-31T07:49:20.477000 | 2019-06-05T10:15:05 | 2019-06-05T10:15:05 | 190,174,065 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.gj.disruptor;
import com.gj.TranslatorDataDto;
import com.lmax.disruptor.WorkHandler;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
/**
* @author Gjing
* 消费者
**/
@Getter
@Setter
public abstract class MessageConsumer implements WorkHandler<TranslatorDataDto> {
protecte... | UTF-8 | Java | 442 | java | MessageConsumer.java | Java | [
{
"context": "Constructor;\nimport lombok.Setter;\n\n/**\n * @author Gjing\n * 消费者\n **/\n@Getter\n@Setter\npublic abstract class",
"end": 197,
"score": 0.8667674660682678,
"start": 192,
"tag": "NAME",
"value": "Gjing"
}
] | null | [] | package com.gj.disruptor;
import com.gj.TranslatorDataDto;
import com.lmax.disruptor.WorkHandler;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
/**
* @author Gjing
* 消费者
**/
@Getter
@Setter
public abstract class MessageConsumer implements WorkHandler<TranslatorDataDto> {
protecte... | 442 | 0.759174 | 0.759174 | 21 | 19.761906 | 20.002153 | 81 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.380952 | false | false | 12 |
6788cec1be88573b365d498057fe4d3c6a4653eb | 5,849,745,465,464 | f0558be56a01aa686776bf8a2fa3d3cad71c409d | /VSSVelenje/Programiranje2/priprava_izpit/src/baza1/GUIDrzaveEdit.java | f6d33ac28b8ce5ed8b2bff03d29c6401ded38175 | [] | no_license | JureZajc/Old-exams-and-notes | https://github.com/JureZajc/Old-exams-and-notes | 53f9d1609edc1a6ae86cb5558edfe59f425126ca | 5b30f847a78be972aca6ff7d7e7c93ce1411485b | refs/heads/master | 2020-04-22T13:45:48.781000 | 2019-02-13T02:04:43 | 2019-02-13T02:04:43 | 170,420,761 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package baza1;
import java.awt.BorderLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.... | WINDOWS-1250 | Java | 5,664 | java | GUIDrzaveEdit.java | Java | [] | null | [] | package baza1;
import java.awt.BorderLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.... | 5,664 | 0.737725 | 0.726245 | 148 | 36.256756 | 26.350065 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.398649 | false | false | 12 |
2bce627bc7f4bef3aa104ba05ba8e7da13876fa3 | 5,849,745,464,329 | c2f8750024ee70646a83c2bf01694777b588347b | /src/main/java/com/google/solutions/df/video/analytics/common/WriteAllAnnotationsToBigQueryTransform.java | d2d95f1886eb4946f49fb9641b8df2ab5bab27c1 | [
"Apache-2.0"
] | permissive | GoogleCloudPlatform/dataflow-video-analytics | https://github.com/GoogleCloudPlatform/dataflow-video-analytics | 3464cb73f3a0bfcd411d6b869a364572a254ca54 | e457fd8b7c6b7a89b09ef560eb62e13dffb7aee5 | refs/heads/master | 2023-04-01T14:25:35.836000 | 2023-03-14T16:09:24 | 2023-03-14T16:09:24 | 271,614,177 | 34 | 25 | null | false | 2023-03-14T16:09:26 | 2020-06-11T18:03:13 | 2023-02-12T14:10:30 | 2023-03-14T16:09:24 | 1,407 | 30 | 24 | 6 | Java | false | false | /*
* Copyright 2020 Google LLC
*
* Licensed 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 applicable law or agreed to i... | UTF-8 | Java | 3,600 | java | WriteAllAnnotationsToBigQueryTransform.java | Java | [] | null | [] | /*
* Copyright 2020 Google LLC
*
* Licensed 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 applicable law or agreed to i... | 3,600 | 0.7025 | 0.698889 | 98 | 35.734695 | 27.562008 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.316327 | false | false | 12 |
533aba7ad25e6130824bc48e89dd031811f53e04 | 9,758,165,763,214 | dbf1f56825c4d18522d721562624b0db276086fc | /src/shop/OrderCompleteController.java | 2efd45a50b205f40d6043e35d78740cd1795fdf8 | [] | no_license | abdolazizsalimi/RestaurantProject | https://github.com/abdolazizsalimi/RestaurantProject | 6a99c8a9c7240778b87e2e79fea2b26de3f66767 | 470452044bfd35636caab71db2f40fbe05d81933 | refs/heads/master | 2023-04-30T03:04:53.500000 | 2021-11-24T18:55:59 | 2021-11-24T18:55:59 | 369,537,527 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package shop;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.ListView;
import java.awt.*;
import java.io.File;
import java... | UTF-8 | Java | 3,607 | java | OrderCompleteController.java | Java | [] | null | [] | package shop;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.ListView;
import java.awt.*;
import java.io.File;
import java... | 3,607 | 0.606598 | 0.603826 | 134 | 25.91791 | 21.46154 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.485075 | false | false | 12 |
77249120586b103ea49232abc36ad5d4f70dbc8e | 11,940,009,098,342 | e4ec2410abada41bd7c61d165083b8e546ab6857 | /src/test/java/Animal.java | 016119ea0179745e7e5a979c4a31c92eca74d4fc | [] | no_license | dhphust/JavaTrain | https://github.com/dhphust/JavaTrain | 8aa6cb166c5ad29aeb99eedf4207c6b3c47221e0 | d1bd664004a8af9a79c49999728182449fd5cb9c | refs/heads/master | 2023-04-04T19:47:41.600000 | 2023-03-25T07:54:17 | 2023-03-25T07:54:17 | 182,012,065 | 1 | 0 | null | false | 2022-12-10T05:24:56 | 2019-04-18T03:47:25 | 2020-04-17T02:04:14 | 2022-12-10T05:24:55 | 378 | 1 | 0 | 3 | Java | false | false | public class Animal {
public String name = "父类name";
public void move(){
System.out.println("父类move");
}
public void content(){
System.out.println("父类content");
}
}
class Bird extends Animal{
public String name = "子类name";
@Override
public void move() {
// TODO Au... | UTF-8 | Java | 1,075 | java | Animal.java | Java | [] | null | [] | public class Animal {
public String name = "父类name";
public void move(){
System.out.println("父类move");
}
public void content(){
System.out.println("父类content");
}
}
class Bird extends Animal{
public String name = "子类name";
@Override
public void move() {
// TODO Au... | 1,075 | 0.51338 | 0.51338 | 41 | 23.585365 | 14.710169 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.487805 | false | false | 12 |
8b141b9aa144abbbc75ffaacb0a0ec1b8007071d | 20,203,526,209,070 | b952e2db00fd55bd6754521138dedbc3282018d2 | /app/src/main/java/de/prog3/tetrix/Abstract/Piece3x3.java | 72819be5bc88e367dba601b861157d8b13ba6427 | [] | no_license | MihawkCola/TetriX | https://github.com/MihawkCola/TetriX | 829b15b8fecd7a68d712f8d329579f92e74f44da | 7927dd060c54dd28b08aaa1b9fe14a6349981418 | refs/heads/master | 2022-09-23T00:47:31.738000 | 2020-06-04T15:52:24 | 2020-06-04T15:52:24 | 262,044,893 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package de.prog3.tetrix.Abstract;
import android.graphics.Color;
import de.prog3.tetrix.Class.Block;
import de.prog3.tetrix.interfaces.IPiece;
public abstract class Piece3x3 implements IPiece {
private int x;
private int y;
protected int color;
/** The blocks inside te 3x3 Area that are blocked by ... | UTF-8 | Java | 4,494 | java | Piece3x3.java | Java | [] | null | [] | package de.prog3.tetrix.Abstract;
import android.graphics.Color;
import de.prog3.tetrix.Class.Block;
import de.prog3.tetrix.interfaces.IPiece;
public abstract class Piece3x3 implements IPiece {
private int x;
private int y;
protected int color;
/** The blocks inside te 3x3 Area that are blocked by ... | 4,494 | 0.390521 | 0.37806 | 184 | 23.423914 | 17.863148 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.407609 | false | false | 12 |
e9111660201313e3efe7488a99b625753bff5a25 | 12,592,844,140,319 | c368bda1271cb5fbb4e3b9fda45ecac7ce14fb27 | /generated/gov/nih/nci/cabio/domain/Location.java | a643f8b4d92f54363910f55cc9c559b17ad2216d | [] | no_license | joshmilind/cacoresystem | https://github.com/joshmilind/cacoresystem | 3ca393e65123ec20703d99c00325ef65a320ba32 | 18a7a5a22c77179f0a629a23038a76935cac4c5f | refs/heads/master | 2021-01-19T23:32:55.480000 | 2017-04-21T13:55:32 | 2017-04-21T13:55:32 | 88,277,428 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package gov.nih.nci.cabio.domain;
import gov.nih.nci.cabio.domain.*;
import gov.nih.nci.system.applicationservice.*;
import gov.nih.nci.common.util.HQLCriteria;
import java.util.*;
import org.apache.log4j.Logger;
/**
* <!-- LICENSE_TEXT_START -->
* <!-- LICENSE_TEXT_END -->
*/
/**
*/
public class Locatio... | UTF-8 | Java | 6,022 | java | Location.java | Java | [] | null | [] | package gov.nih.nci.cabio.domain;
import gov.nih.nci.cabio.domain.*;
import gov.nih.nci.system.applicationservice.*;
import gov.nih.nci.common.util.HQLCriteria;
import java.util.*;
import org.apache.log4j.Logger;
/**
* <!-- LICENSE_TEXT_START -->
* <!-- LICENSE_TEXT_END -->
*/
/**
*/
public class Locatio... | 6,022 | 0.676852 | 0.672866 | 210 | 27.680952 | 39.478966 | 226 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.766667 | false | false | 12 |
2c819b8a5f6e394a0682ddb24aded68793bec12b | 26,766,236,233,811 | 35dd6d4a724c0f3820c0153d00869f531b2ce989 | /kadai1/question.java | 1dccbc32304963c22055e6c01065df572dbf2d2b | [] | no_license | chika7271994/chika | https://github.com/chika7271994/chika | dbf84d68b4bfe4d7a32ac564a1b89c1c294f9259 | 250115636775089bb019e5e7b2c0b9016efa5dd6 | refs/heads/master | 2020-03-29T18:05:00.470000 | 2018-11-20T09:45:31 | 2018-11-20T09:45:31 | 150,193,682 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package jp.ibscorp.java.kadai1;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class question {
public static List<String> question = new ArrayList<String>();
boolean answer;
public void setSameWord(String setWord){
this.question.add(setWord);
}
public bool... | UTF-8 | Java | 423 | java | question.java | Java | [] | null | [] | package jp.ibscorp.java.kadai1;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class question {
public static List<String> question = new ArrayList<String>();
boolean answer;
public void setSameWord(String setWord){
this.question.add(setWord);
}
public bool... | 423 | 0.725768 | 0.723404 | 19 | 20.263159 | 20.222036 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.947368 | false | false | 12 |
f6927e9dccb1431a16f1a13280deecc0b02fa791 | 7,249,904,850,794 | fb6c3bc9790861d7b911809c607e126675a22a86 | /casa_do_codigo/src/main/java/br/com/casa_do_codigo/casa_do_codigo/controllers/StateController.java | 75fcd018acebd120f80352ad691d77a71d9ff990 | [] | no_license | whoismarviin/casa-do-codigo | https://github.com/whoismarviin/casa-do-codigo | bc762a3742926224c8b54cfbe5346e974e7a48e3 | ca28addb9917d37e5cdff90652ab180c93022162 | refs/heads/master | 2023-03-20T04:27:16.819000 | 2021-02-23T18:58:27 | 2021-02-23T19:00:30 | 341,657,000 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.com.casa_do_codigo.casa_do_codigo.controllers;
import br.com.casa_do_codigo.casa_do_codigo.models.State;
import br.com.casa_do_codigo.casa_do_codigo.requisicoes.EstadoRequest;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import javax.persistence.EntityM... | UTF-8 | Java | 831 | java | StateController.java | Java | [] | null | [] | package br.com.casa_do_codigo.casa_do_codigo.controllers;
import br.com.casa_do_codigo.casa_do_codigo.models.State;
import br.com.casa_do_codigo.casa_do_codigo.requisicoes.EstadoRequest;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import javax.persistence.EntityM... | 831 | 0.77858 | 0.77858 | 31 | 25.806452 | 23.411356 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.419355 | false | false | 12 |
449198ad58df7dbabcc3f1291093a46da0b178fd | 20,581,483,316,091 | cfb7176c25e9df49179abf1d4020f2221fb05590 | /src/main/java/com/aib/Article.java | 322d4c957cb6c6b7a3ac54c2aaa1dcae84821af4 | [
"MIT"
] | permissive | sergiu-chiuchiu/financial-investment | https://github.com/sergiu-chiuchiu/financial-investment | 6b2f6464a0fe7783217a71a3c3afb79bc3dd65f2 | cdfdceb2e84622e7927213abd99772cadc9770a8 | refs/heads/master | 2022-07-07T20:08:37.418000 | 2019-10-31T19:55:17 | 2019-10-31T19:55:17 | 218,371,427 | 0 | 0 | MIT | false | 2022-06-17T22:19:42 | 2019-10-29T19:51:59 | 2019-10-31T19:55:19 | 2022-06-17T22:19:41 | 32 | 0 | 0 | 2 | Java | false | false | package com.aib;
public class Article {
private Product product;
public Article() {
super();
// TODO Auto-generated constructor stub
}
public Article(Product product, Order order, Double quantity) {
super();
this.product = product;
this.order = order;
this.quantity = quantity;
}
publ... | UTF-8 | Java | 751 | java | Article.java | Java | [] | null | [] | package com.aib;
public class Article {
private Product product;
public Article() {
super();
// TODO Auto-generated constructor stub
}
public Article(Product product, Order order, Double quantity) {
super();
this.product = product;
this.order = order;
this.quantity = quantity;
}
publ... | 751 | 0.665779 | 0.665779 | 38 | 17.763159 | 15.067278 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.631579 | false | false | 12 |
748be4f5d3eb97047b1ad69f4596c6b74c6352ab | 27,788,438,416,726 | 8774d35b0036d410cea630ab68e10a7080a2f454 | /src/main/java/external/dao/ExchangeRateDao.java | 8ccecf9d1c0bf67b21caefd938a34509d458b363 | [] | no_license | IvanILnitskyi13/miniBank | https://github.com/IvanILnitskyi13/miniBank | 45667b1778a52c2ee36979256aeaa7d13359b4ad | bf6b001b49b9ed0f0902e9d1352beb2caeea09a9 | refs/heads/main | 2023-04-16T17:56:50.315000 | 2021-04-14T16:41:41 | 2021-04-14T16:41:41 | 357,690,850 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package external.dao;
import external.client.NbpRate;
import external.client.NbpTable;
import external.connection.HibernateUtil;
import external.entity.ExchangeRate;
import lombok.extern.log4j.Log4j;
import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.Transaction;
import java.ti... | UTF-8 | Java | 2,873 | java | ExchangeRateDao.java | Java | [] | null | [] | package external.dao;
import external.client.NbpRate;
import external.client.NbpTable;
import external.connection.HibernateUtil;
import external.entity.ExchangeRate;
import lombok.extern.log4j.Log4j;
import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.Transaction;
import java.ti... | 2,873 | 0.589279 | 0.588235 | 92 | 30.22826 | 25.16947 | 107 | true | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 12 |
6bf611ccfc7914529866bf2057b8c0ecb5e52127 | 27,573,690,051,885 | 3a6152649171349dc19c4d610447c20b59fd33ac | /src/main/java/com/ethan/ryds/entity/module/EvaluateInfo.java | 255c0e4aae7653f5af232f93dcc0d47d09f42e2b | [] | no_license | NightOnewith/wb20201216 | https://github.com/NightOnewith/wb20201216 | 61e94ff7263602c3e6360e2c1f0d548d6f28ae3d | c09ece96d1119622a752981dd9bb90fd19f124d3 | refs/heads/master | 2023-02-25T19:48:46.663000 | 2021-01-31T03:30:30 | 2021-01-31T03:30:30 | 334,564,024 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ethan.ryds.entity.module;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
im... | UTF-8 | Java | 1,071 | java | EvaluateInfo.java | Java | [
{
"context": "essors;\n\n/**\n * <p>\n * 评价信息表\n * </p>\n *\n * @author Ethan\n * @since 2020-07-05\n */\n@Data\n@EqualsAndHashCode",
"end": 404,
"score": 0.9888755083084106,
"start": 399,
"tag": "NAME",
"value": "Ethan"
}
] | null | [] | package com.ethan.ryds.entity.module;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import java.io.Serializable;
import lombok.Data;
import lombok.EqualsAndHashCode;
im... | 1,071 | 0.652386 | 0.643622 | 59 | 16.40678 | 16.637836 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.288136 | false | false | 12 |
2b05229dd1435c258f6f35bb4607c968863a8e26 | 25,314,537,252,943 | be2b8f4e2c5e388359f50e80b8a3d8c82b4209be | /app/src/main/java/com/example/ozner/mvpdemo/Utils/DateFormatCtrl.java | 84d6f553f3241800a94a76cb7e4b784c89e1663e | [] | no_license | QX-Zach/MvpDemo | https://github.com/QX-Zach/MvpDemo | c869f1ddfd384194abbb6c7282a0b9a2c54ecef2 | 0bb23422a4e76cc25b60466ceecfdf2543668372 | refs/heads/master | 2020-04-06T06:54:41.431000 | 2016-08-19T07:55:09 | 2016-08-19T07:55:09 | 62,862,675 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.ozner.mvpdemo.Utils;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
/**
* Created by ozner_67 on 2016/3/23.
*/
public class DateFormatCtrl {
private static SimpleDateFormat shortFomat = new SimpleDateFormat("yyyy-MM-dd");
private static SimpleDateFor... | UTF-8 | Java | 2,291 | java | DateFormatCtrl.java | Java | [
{
"context": "alendar;\nimport java.util.Date;\n\n/**\n * Created by ozner_67 on 2016/3/23.\n */\npublic class DateFormatCtrl {\n ",
"end": 154,
"score": 0.9995366930961609,
"start": 146,
"tag": "USERNAME",
"value": "ozner_67"
}
] | null | [] | package com.example.ozner.mvpdemo.Utils;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
/**
* Created by ozner_67 on 2016/3/23.
*/
public class DateFormatCtrl {
private static SimpleDateFormat shortFomat = new SimpleDateFormat("yyyy-MM-dd");
private static SimpleDateFor... | 2,291 | 0.536608 | 0.518872 | 81 | 26.148148 | 19.477186 | 90 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.506173 | false | false | 12 |
a3ededeb04b56cad8561f054e6e84b968d7b6688 | 32,023,276,171,536 | c808b78c98cbc57df305dacb0546542db05b3859 | /Atividades_POO/QuestesJava8/src/cap03/IfComElseAnimado.java | 1bb1307e4f930ae0374c0157014f6b9373fb0b53 | [] | no_license | JacaMan2097/Tecnologo_Em_ADS_IFPI | https://github.com/JacaMan2097/Tecnologo_Em_ADS_IFPI | b920e4a826cda50229cf4a8bdfe988fd4abc8640 | 251ba66a26af7c164b70593c0fe9c171de6da53e | refs/heads/master | 2020-05-27T13:57:26.523000 | 2018-08-24T00:07:26 | 2018-08-24T00:07:26 | 82,552,899 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cap03;
import javax.swing.*;
public class IfComElseAnimado {
public static void main(String[] args) {
String aux = JOptionPane.showInputDialog("Forneca o numero do mes: ");
if (aux != null) {
try {
int mes = Integer.parseInt(aux);
if (mes == 1) {
aux = "Janeiro";
} else if (mes == 2) ... | UTF-8 | Java | 600 | java | IfComElseAnimado.java | Java | [] | null | [] | package cap03;
import javax.swing.*;
public class IfComElseAnimado {
public static void main(String[] args) {
String aux = JOptionPane.showInputDialog("Forneca o numero do mes: ");
if (aux != null) {
try {
int mes = Integer.parseInt(aux);
if (mes == 1) {
aux = "Janeiro";
} else if (mes == 2) ... | 600 | 0.623333 | 0.615 | 25 | 23 | 21.092178 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3 | false | false | 12 |
99350f70b4c3086ace631872f5df90a5b2135fa4 | 6,777,458,410,109 | bf845813dd0ade896459c6f5ac1530fd2f712a99 | /common/base/src/main/java/hiram/springSecurity/exception/CustomAuthenticationException.java | 20590dbe19c71bd67206aa49ef519a07dbc436ff | [] | no_license | HiramHe/vein_scan_dms_single | https://github.com/HiramHe/vein_scan_dms_single | c62b013a6a48e94d5f758dc599d3e8d3c837639e | 3f5f9a98f6e5d4bd46c724b8790309b70bdc5b04 | refs/heads/master | 2023-02-21T08:04:14.112000 | 2021-01-23T03:42:44 | 2021-01-23T03:42:44 | 331,933,953 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package hiram.springSecurity.exception;
import hiram.enums.ResultCodeEnum;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.security.core.AuthenticationException;
/**
* @Author: HiramHe
* @Date: 2020/4/28 21:57
* @Description: ""
*/
/**
* 自定义异常类,继... | UTF-8 | Java | 957 | java | CustomAuthenticationException.java | Java | [
{
"context": "ity.core.AuthenticationException;\n\n/**\n * @Author: HiramHe\n * @Date: 2020/4/28 21:57\n * @Description: ",
"end": 247,
"score": 0.5148198008537292,
"start": 246,
"tag": "NAME",
"value": "H"
},
{
"context": "y.core.AuthenticationException;\n\n/**\n * @Author: HiramHe\... | null | [] | package hiram.springSecurity.exception;
import hiram.enums.ResultCodeEnum;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.security.core.AuthenticationException;
/**
* @Author: HiramHe
* @Date: 2020/4/28 21:57
* @Description: ""
*/
/**
* 自定义异常类,继... | 957 | 0.759156 | 0.746948 | 37 | 23.351351 | 22.498308 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.297297 | false | false | 12 |
6b1c5ac5ddee832027395dc09210f9001f540f7a | 16,088,947,506,794 | b1cb482879b0a541bb9cd9b0be61cc279d7409d9 | /app/src/main/java/ru/qagods/nnglebanov/elegion_multithreading/SimpleReceiver.java | ffe3c9267e2992b1f8527b9893b20ce2a95eceed | [
"Apache-2.0"
] | permissive | ECRSSS/elegion-multithreading | https://github.com/ECRSSS/elegion-multithreading | 1def0c55508d2b693063112b0cc08231f89ca5b2 | ff927becad95052645db7221a41566237c329a26 | refs/heads/master | 2020-04-07T08:20:54.708000 | 2018-11-19T19:16:55 | 2018-11-19T19:16:55 | 158,210,027 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ru.qagods.nnglebanov.elegion_multithreading;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.TextView;
import android.widget.Toast;
import java.lang.ref.WeakReference;
public class SimpleReceiver extends BroadcastReceiver {
p... | UTF-8 | Java | 981 | java | SimpleReceiver.java | Java | [] | null | [] | package ru.qagods.nnglebanov.elegion_multithreading;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.TextView;
import android.widget.Toast;
import java.lang.ref.WeakReference;
public class SimpleReceiver extends BroadcastReceiver {
p... | 981 | 0.7421 | 0.741081 | 30 | 31.700001 | 26.814362 | 105 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.733333 | false | false | 12 |
e3cae50d414ce9d0fa737dce92b93f995390e6ae | 23,940,147,726,095 | 84f1d7c2343851a9359a592ead1726da429fe196 | /api/src/main/java/com/xknower/api/ApiServerApplication.java | 42449accd1f7d4fc02674b68bd1e14473fa55353 | [] | no_license | xknower/wx-official-accounts | https://github.com/xknower/wx-official-accounts | 9a1772af11de5eb2855cd90bcdedd9541a233880 | 2748c1311cf8a3615542669d33728841903d0846 | refs/heads/master | 2022-12-24T15:22:33.725000 | 2020-09-22T00:01:45 | 2020-09-22T00:01:45 | 297,489,473 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.xknower.api;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.context.ConfigurableApplicationContext;
/**
* 微信公共号服务
*
* @author xknower
* @date 2020-09-21
*/
@SpringBootApplication
public ... | UTF-8 | Java | 525 | java | ApiServerApplication.java | Java | [
{
"context": "eApplicationContext;\n\n/**\n * 微信公共号服务\n *\n * @author xknower\n * @date 2020-09-21\n */\n@SpringBootApplication\npu",
"end": 265,
"score": 0.9996837973594666,
"start": 258,
"tag": "USERNAME",
"value": "xknower"
}
] | null | [] | package com.xknower.api;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.context.ConfigurableApplicationContext;
/**
* 微信公共号服务
*
* @author xknower
* @date 2020-09-21
*/
@SpringBootApplication
public ... | 525 | 0.790607 | 0.774951 | 18 | 27.388889 | 30.203272 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.277778 | false | false | 12 |
0c37f99a54e7b2627502ce918daa6f94b72eae23 | 23,940,147,722,125 | e1d7fb1469f5c53e54dee00ac81247cd2b2f3e98 | /src/java_version/arrays/FactorialRecursion.java | 6ad4dfa284d2ac27a34d3394ee5798fffb813007 | [] | no_license | coroutineDispatcher/algorithms_course | https://github.com/coroutineDispatcher/algorithms_course | 36371a6c0d7d55ba8576a3290d08ec3ea3190843 | 7ca9c33e26423e2248f6568bf2a1b8b982da1a4b | refs/heads/master | 2020-07-08T05:55:51.859000 | 2019-09-06T12:02:30 | 2019-09-06T12:02:30 | 203,585,253 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package java_version.arrays;
public class FactorialRecursion {
public static void main(String[] args) {
System.out.println("factorial = " + calculateFactorial(5));
System.out.println("factorial = " + calculateFactorialIteratively(5));
}
private static int calculateFactorial(int number) {
... | UTF-8 | Java | 716 | java | FactorialRecursion.java | Java | [] | null | [] | package java_version.arrays;
public class FactorialRecursion {
public static void main(String[] args) {
System.out.println("factorial = " + calculateFactorial(5));
System.out.println("factorial = " + calculateFactorialIteratively(5));
}
private static int calculateFactorial(int number) {
... | 716 | 0.561453 | 0.548883 | 32 | 21.375 | 22.775742 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.34375 | false | false | 12 |
acbb7e441e2f655063194a228666a357fc2db7c2 | 14,869,176,825,213 | 5804356c7ec2b74b23c958ff2735d583c30c786d | /app/src/main/java/com/lhd/huynhduc/managelibrary/BUS/BUS_NhanVien.java | a05f4e1349465ac5e5c99b14d3a60f3f0b88b05a | [] | no_license | huynhduca8/ManageLibrary | https://github.com/huynhduca8/ManageLibrary | 8e5d198f6068d74942983405fb704a8543dbc632 | 6822a765fe0f8b3eb0bc1c3b2e078993b14ab8cf | refs/heads/master | 2021-05-05T13:55:41.186000 | 2018-01-22T06:11:58 | 2018-01-22T06:11:58 | 118,414,396 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lhd.huynhduc.managelibrary.BUS;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import com.lhd.huynhduc.managelibrary.Class.Variable;
import com.lhd.huynhduc.managelibrary.Entity.EC_NhanVien;
import com.lhd.huynhduc.managelibrary.HTTPDataHandle;
import java.lang.reflect.Type;
import... | UTF-8 | Java | 3,015 | java | BUS_NhanVien.java | Java | [
{
"context": "rayList;\nimport java.util.List;\n\n/**\n * Created by huynhduc on 1/15/18.\n */\n\npublic class BUS_NhanVien {\n ",
"end": 392,
"score": 0.999606192111969,
"start": 384,
"tag": "USERNAME",
"value": "huynhduc"
}
] | null | [] | package com.lhd.huynhduc.managelibrary.BUS;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import com.lhd.huynhduc.managelibrary.Class.Variable;
import com.lhd.huynhduc.managelibrary.Entity.EC_NhanVien;
import com.lhd.huynhduc.managelibrary.HTTPDataHandle;
import java.lang.reflect.Type;
import... | 3,015 | 0.618456 | 0.616779 | 104 | 27.653847 | 21.777622 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.471154 | false | false | 12 |
016cfd32a9e37f4540278c3a51104b7175a6623b | 29,978,871,785,633 | 99b520d62d051acf6323f4ebbee2b44582d2368d | /src/com/ilmservice/personalbudget/data/Indexes.java | 684bad51fd3c42d055e88454da53b39afd623160 | [] | no_license | ForestJohnson/java-ee-budget-app | https://github.com/ForestJohnson/java-ee-budget-app | 0fe3721dbddfef1df36591e5729e48f3aa0be7d4 | 9f59ef821e7dc0af2030a26e8dbe8afc5d7fb171 | refs/heads/master | 2022-10-20T21:14:26.557000 | 2020-09-11T20:06:42 | 2020-09-11T20:06:42 | 71,962,903 | 1 | 0 | null | false | 2022-10-04T23:47:18 | 2016-10-26T03:30:27 | 2020-09-11T20:06:46 | 2022-10-04T23:47:16 | 713 | 1 | 0 | 1 | Java | false | false | package com.ilmservice.personalbudget.data;
public enum Indexes {
EventsById(1),
TransactionsByCategory(10),
TransactionsByDate(11),
TransactionCategoriesById(20),
TransactionCategoriesByKeyword(30);
private Indexes(int value) {
this.value = (short)value;
}
private short value = 0;
... | UTF-8 | Java | 377 | java | Indexes.java | Java | [] | null | [] | package com.ilmservice.personalbudget.data;
public enum Indexes {
EventsById(1),
TransactionsByCategory(10),
TransactionsByDate(11),
TransactionCategoriesById(20),
TransactionCategoriesByKeyword(30);
private Indexes(int value) {
this.value = (short)value;
}
private short value = 0;
... | 377 | 0.68435 | 0.657825 | 19 | 18.842106 | 13.635338 | 43 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.789474 | false | false | 12 |
2b8d88f3d69459936e66aab37b5691533e27aceb | 2,216,203,134,788 | 9526d75ac105a3387194a45491438107f64b4a89 | /13/src/devices/Komparator1.java | a269554aa84495f6d3057962548af027e94c5e9c | [] | no_license | PatrykAleksandrowicz/zad13 | https://github.com/PatrykAleksandrowicz/zad13 | 2715beb4a3005f6a223496da3f490398e5aec041 | d91c48b2f28cd62669bf4d9344a472cf31f624f9 | refs/heads/master | 2023-05-15T23:42:29.784000 | 2021-06-11T14:30:28 | 2021-06-11T14:30:28 | 376,052,068 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package devices;
import java.util.Comparator;
public class Komparator1 implements Comparator<Application> {
public int compare(Application a1, Application a2) {
if(a2 == null) return -1;
if(a1.getCena() > a2.getCena()) return 1;
else if(a1.getCena() < a2.getCena()) return -1;
else ... | UTF-8 | Java | 338 | java | Komparator1.java | Java | [] | null | [] | package devices;
import java.util.Comparator;
public class Komparator1 implements Comparator<Application> {
public int compare(Application a1, Application a2) {
if(a2 == null) return -1;
if(a1.getCena() > a2.getCena()) return 1;
else if(a1.getCena() < a2.getCena()) return -1;
else ... | 338 | 0.642012 | 0.606509 | 12 | 27.166666 | 22.48271 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.583333 | false | false | 12 |
3803b2c81ea756d9ec3e9f8c57927cd9126c218e | 2,310,692,453,609 | 3eb84f48a81abd48b7e11a5582beac8968f8064b | /app/src/main/java/br/com/halyson/materialdesign/gamefragments/AboutFragment.java | 9ed01ac1728ae7407bcf6a67e1c23834e5a7c4d8 | [
"Apache-2.0"
] | permissive | imilako/PaiGow | https://github.com/imilako/PaiGow | 7144cd3d12f446ee236f9cbbaec3c6befd0ecc49 | 6b39243494a70d07ff72061bb080852b79017c29 | refs/heads/master | 2021-01-10T09:43:29.233000 | 2015-06-16T22:36:56 | 2015-06-16T22:36:56 | 36,041,426 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.com.halyson.materialdesign.gamefragments;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import br.com.halyson.materialdesign.R;
import br.com.halyson.materialdesign.activity... | UTF-8 | Java | 1,016 | java | AboutFragment.java | Java | [
{
"context": "aldesign.activity.GameActivity;\n\n/**\n * Created by Ivan on 12.6.2015..\n */\npublic class AboutFragment ext",
"end": 358,
"score": 0.9906930327415466,
"start": 354,
"tag": "NAME",
"value": "Ivan"
}
] | null | [] | package br.com.halyson.materialdesign.gamefragments;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import br.com.halyson.materialdesign.R;
import br.com.halyson.materialdesign.activity... | 1,016 | 0.742126 | 0.725394 | 31 | 31.774193 | 30.078081 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.612903 | false | false | 12 |
42d90ed56fc4f4fb402369cab2566c6d91874ac2 | 21,586,505,654,186 | bdee37d4d9dcf339430c956cff3ccf68afff2127 | /week1-009.Divider/src/Divider.java | 21421f9c64cb08e651cffedb80acb60814d346ac | [] | no_license | DenissPota/MOOC-OOP_1 | https://github.com/DenissPota/MOOC-OOP_1 | 1289efb44de9553dcceb2ae5cc0c749b34b9b087 | 8be1578c9308d3be00d562a4dd74be8e5ba65835 | refs/heads/master | 2020-12-25T18:51:40.580000 | 2017-06-19T21:26:32 | 2017-06-19T21:26:32 | 93,993,310 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
import java.util.Scanner;
public class Divider {
public static void main(String[] args) {
Scanner reader = new Scanner(System.in);
System.out.print("Type a number: ");
int number = Integer.parseInt(reader.nextLine());
System.out.print("Type a number: ");
int numberTwo = ... | UTF-8 | Java | 533 | java | Divider.java | Java | [] | null | [] |
import java.util.Scanner;
public class Divider {
public static void main(String[] args) {
Scanner reader = new Scanner(System.in);
System.out.print("Type a number: ");
int number = Integer.parseInt(reader.nextLine());
System.out.print("Type a number: ");
int numberTwo = ... | 533 | 0.594747 | 0.594747 | 18 | 28.555555 | 25.643328 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 12 |
f244e804082c39ad6e38fb87ca060839614b395e | 18,399,639,911,446 | 4bc7d78ae816c71a74992e9be6f12d88f8ea57d9 | /src/main/java/org/lcsim/service/impl/DetectorServiceImpl.java | 9175e17979911befe312a4e7ffb774e46aa4be87 | [] | no_license | JeremyMcCormick/lcsim2 | https://github.com/JeremyMcCormick/lcsim2 | 8efbe8301b3d4ea6259b8fa0bd3159398b73febf | 2c7c7c135ca0143c62253776896313cc2c04ba80 | refs/heads/master | 2021-01-25T13:59:10.333000 | 2018-03-02T22:34:00 | 2018-03-02T22:34:00 | 123,637,909 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.lcsim.service.impl;
import org.lcsim.detector.IDetectorElement;
import org.lcsim.geometry.Detector;
import org.lcsim.geometry.util.DetectorLocator;
import org.lcsim.service.api.DetectorService;
/**
* @author Jeremy McCormick <jeremym@slac.stanford.edu>
* @version $Id: $
*/
public class DetectorServiceI... | UTF-8 | Java | 830 | java | DetectorServiceImpl.java | Java | [
{
"context": "lcsim.service.api.DetectorService;\n\n/**\n * @author Jeremy McCormick <jeremym@slac.stanford.edu>\n * @version $Id: $\n *",
"end": 239,
"score": 0.9998812079429626,
"start": 223,
"tag": "NAME",
"value": "Jeremy McCormick"
},
{
"context": "etectorService;\n\n/**\n * @au... | null | [] | package org.lcsim.service.impl;
import org.lcsim.detector.IDetectorElement;
import org.lcsim.geometry.Detector;
import org.lcsim.geometry.util.DetectorLocator;
import org.lcsim.service.api.DetectorService;
/**
* @author <NAME> <<EMAIL>>
* @version $Id: $
*/
public class DetectorServiceImpl extends AbstractService ... | 802 | 0.751807 | 0.751807 | 33 | 24.151516 | 22.975773 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.30303 | false | false | 12 |
ce73356c44e6a500d5c27e61e6548b1b504d9883 | 14,663,018,399,728 | 526cbcbbb283aa528d9e4b2c175d5eed5a9be532 | /map/app/src/main/java/com/example/tuan_dong/map/Database/DBHelper.java | febb7dd649e1085a2a614ea38b32e1c67a3350ee | [] | no_license | doanquoctoan0306/Cyvision | https://github.com/doanquoctoan0306/Cyvision | 7dd4d41e6783c86aa41e04c0981b22336285acdd | 89f1fb78f1259d8cb07732ea3e77ea7d3f74639f | refs/heads/master | 2021-01-24T16:39:48.254000 | 2018-02-28T01:07:40 | 2018-02-28T01:07:40 | 123,206,253 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.tuan_dong.map.Database;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
/**
* Created by Tuan-Dong on 1/24/2018.
*/
public class DBHelper extends SQLiteOpenHelper {
public static final String EMPTY_VALUE = "---"... | UTF-8 | Java | 2,092 | java | DBHelper.java | Java | [
{
"context": "tabase.sqlite.SQLiteOpenHelper;\n\n/**\n * Created by Tuan-Dong on 1/24/2018.\n */\n\npublic class DBHelper extends ",
"end": 201,
"score": 0.8882405161857605,
"start": 192,
"tag": "NAME",
"value": "Tuan-Dong"
},
{
"context": "\"address\";\n public static final Strin... | null | [] | package com.example.tuan_dong.map.Database;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
/**
* Created by Tuan-Dong on 1/24/2018.
*/
public class DBHelper extends SQLiteOpenHelper {
public static final String EMPTY_VALUE = "---"... | 2,092 | 0.669694 | 0.66587 | 56 | 36.375 | 27.857779 | 101 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.625 | false | false | 12 |
6daf3740332cb27ed360ca64cb8978406dad7b16 | 10,788,957,896,891 | 3f49fa1c3ff6f5cb4770fb7449cee44fbaf7e191 | /backend/src/main/java/wind/instrument/competitions/rest/OpinionService.java | 4359f019b0dd192b112a1a1be6343e03e4179c08 | [] | no_license | NikolauUB/BlfAngularJavaProject | https://github.com/NikolauUB/BlfAngularJavaProject | 256084eaa04df8ccd2b3c4a12c5f58464314e528 | db96533a08e9ffd8bad930fd06eca9da4851d9c9 | refs/heads/develop | 2023-05-11T04:40:53.328000 | 2023-04-26T22:45:23 | 2023-04-26T22:45:23 | 94,201,266 | 0 | 0 | null | false | 2023-09-02T20:46:33 | 2017-06-13T10:32:39 | 2022-01-10T09:22:24 | 2023-09-02T20:46:32 | 29,662 | 0 | 0 | 7 | Java | false | false | package wind.instrument.competitions.rest;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.*;
import wind.instrument.competitions.data.... | UTF-8 | Java | 12,102 | java | OpinionService.java | Java | [] | null | [] | package wind.instrument.competitions.rest;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.bind.annotation.*;
import wind.instrument.competitions.data.... | 12,102 | 0.633201 | 0.63221 | 242 | 49.008263 | 39.584618 | 197 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.731405 | false | false | 12 |
4effd0c000944958c93d29c93dd5b472e5e010cb | 10,788,957,896,315 | 06fc8ece5de163308825562075ab35fe4be9eeab | /drawerlayout_fragment3.2/src/main/java/com/example/drawerlayout_fragment/Activity/ShowImage.java | d7217ea6874261069bf0547ab39e5c59bdc1133a | [] | no_license | gitccount/MDBmob | https://github.com/gitccount/MDBmob | 3d941bdeca7c8fa1143ba92940ca5b1b0749cc0d | dd6698e8f0e9081ef2b2961478819f0cd58279d7 | refs/heads/master | 2021-01-19T12:16:56.119000 | 2017-02-17T14:12:56 | 2017-02-17T14:12:56 | 82,300,668 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.drawerlayout_fragment.Activity;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.widget.ImageView;
import android.widget.LinearLa... | UTF-8 | Java | 2,615 | java | ShowImage.java | Java | [
{
"context": "ner.SimpleImageLoadingListener;\n\n/**\n * Created by Administrator on 2016/10/28.\n */\n\npublic class ShowImage extend",
"end": 955,
"score": 0.761976420879364,
"start": 942,
"tag": "NAME",
"value": "Administrator"
}
] | null | [] | package com.example.drawerlayout_fragment.Activity;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.widget.ImageView;
import android.widget.LinearLa... | 2,615 | 0.704031 | 0.696737 | 71 | 35.676056 | 21.707903 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.732394 | false | false | 12 |
f51f2e104f1a46e55c9600d8764d588559c92c27 | 15,023,795,638,868 | 4ffe6477801eabdc10a0d46a71a644451992114f | /app/src/main/java/com/tcc/projeto/appcomputacaoplugada/fragments/IntroducaoFragment.java | e229a76a23d68dc62e2548c73c00626caa1cc8f6 | [] | no_license | barbosamaatheus/PluggedComputing | https://github.com/barbosamaatheus/PluggedComputing | 3778c9fec9d9126f23cf0bfb309223ee5a6ce7bc | 5d4aa083d162a2f08e333f576ca1ef1a08743012 | refs/heads/master | 2018-12-11T18:37:12.895000 | 2018-10-31T00:20:14 | 2018-10-31T00:20:14 | 148,335,344 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.tcc.projeto.appcomputacaoplugada.fragments;
import android.app.AlertDialog;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.RadioButton;
import andro... | UTF-8 | Java | 4,938 | java | IntroducaoFragment.java | Java | [] | null | [] | package com.tcc.projeto.appcomputacaoplugada.fragments;
import android.app.AlertDialog;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.RadioButton;
import andro... | 4,938 | 0.584042 | 0.568651 | 151 | 31.708609 | 24.932915 | 140 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.695364 | false | false | 12 |
5db887153510a355bfcea62129fc1c225d1e0b30 | 6,339,371,772,880 | 9ab49c6eeba682e91821540b1f8f54ae5fedfa3c | /workman/src/main/java/com/source/workman/controller/RestTestController.java | 6493006504595d682609918853ae82538665d555 | [] | no_license | xiangwentian/workmanbuild | https://github.com/xiangwentian/workmanbuild | 42a31f09624aef3cf708f31fcf83fc451b155867 | 49641c882ef8673e8e8f2e9a12cf023067e6d691 | refs/heads/master | 2023-03-06T08:47:32.612000 | 2023-02-05T09:14:23 | 2023-02-05T09:14:23 | 334,995,004 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.source.workman.controller;
import com.source.workman.constants.InterfaceConstant;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
impor... | UTF-8 | Java | 1,124 | java | RestTestController.java | Java | [
{
"context": "eb.bind.annotation.RestController;\n\n/**\n * @author liuzh\n */\n@Slf4j\n@RestController\n@RequestMapping({Inter",
"end": 399,
"score": 0.9996457099914551,
"start": 394,
"tag": "USERNAME",
"value": "liuzh"
}
] | null | [] | package com.source.workman.controller;
import com.source.workman.constants.InterfaceConstant;
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
impor... | 1,124 | 0.72242 | 0.715302 | 36 | 30.222221 | 26.668865 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.472222 | false | false | 12 |
1b5ac1b1545456125197fe22c098016cac83633a | 6,339,371,771,625 | a72c41ab78be81cf39907ce7c2c983932f06472d | /core/src/eu32k/ludumdare/ld26/pool/IObjectPoolItem.java | fc5b4621d9c53a666a08738f56294a09b79a9d8f | [] | no_license | brookman/Ludum-Dare-26 | https://github.com/brookman/Ludum-Dare-26 | 1bbb6d177f8d9092a575144bc0e4112ca470169e | 533134a66e9d792c2900a48492c43e346f2c389d | refs/heads/master | 2021-10-27T08:37:18.244000 | 2021-10-22T22:00:20 | 2021-10-22T22:00:20 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package eu32k.ludumdare.ld26.pool;
public interface IObjectPoolItem {
public boolean isInUse();
public void setInUse(boolean inUse);
}
| UTF-8 | Java | 142 | java | IObjectPoolItem.java | Java | [] | null | [] | package eu32k.ludumdare.ld26.pool;
public interface IObjectPoolItem {
public boolean isInUse();
public void setInUse(boolean inUse);
}
| 142 | 0.767606 | 0.739437 | 6 | 22.666666 | 15.996528 | 39 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 12 |
f123ae31e26f2288d37bb0700a99fa67efdbfe98 | 13,597,866,501,473 | ebb8bd9c908af7108c8751959b7d6cc3f19db555 | /src/main/java/myproject/entities/Cakes.java | 853cf19f8e9568688ba82c15ff485eee035ec988 | [] | no_license | Rekvinil/ProjectCake | https://github.com/Rekvinil/ProjectCake | 3f2c11a3be62652fd804851e29746eb8c7d6ec84 | 3b2e012e1bff5e7e052cca971a2c2f4e9c04df48 | refs/heads/master | 2022-06-02T00:43:53.806000 | 2019-11-05T17:10:45 | 2019-11-05T17:10:45 | 214,242,521 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package myproject.entities;
import org.springframework.data.annotation.Id;
public class Cakes {
@Id
private int id;
private int customerId;
private String name;
private int cakebase;
public Cakes(){
}
public Cakes(int id, int customerId, String name, int cakeBase) {
this.id... | UTF-8 | Java | 1,068 | java | Cakes.java | Java | [] | null | [] | package myproject.entities;
import org.springframework.data.annotation.Id;
public class Cakes {
@Id
private int id;
private int customerId;
private String name;
private int cakebase;
public Cakes(){
}
public Cakes(int id, int customerId, String name, int cakeBase) {
this.id... | 1,068 | 0.576779 | 0.576779 | 60 | 16.799999 | 15.795358 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.366667 | false | false | 12 |
cdad67588832d4436b55479147dd9db3b51fddc8 | 15,925,738,780,038 | b121f1a458c891e55147eb14ee20f6ec413cb278 | /core/wisdom-executors/src/main/java/org/wisdom/executors/ManagedExecutorServiceImpl.java | 703b86ce0c2be230d8567fd036d9d5c799fd444e | [
"Apache-2.0"
] | permissive | wisdom-framework/wisdom | https://github.com/wisdom-framework/wisdom | 3295da370182c1aca8c4bf193c936fef96f4f2e0 | e3288772cd040034d0175fa933fa5c13cb6783a4 | refs/heads/master | 2023-07-14T04:15:59.143000 | 2021-08-24T07:17:20 | 2021-08-24T07:17:20 | 14,581,444 | 60 | 47 | Apache-2.0 | false | 2022-10-05T01:43:22 | 2013-11-21T08:06:50 | 2022-07-05T11:18:23 | 2022-10-05T01:43:21 | 37,069 | 85 | 42 | 60 | Java | false | false | /*
* #%L
* Wisdom-Framework
* %%
* Copyright (C) 2013 - 2015 Wisdom Framework
* %%
* Licensed 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... | UTF-8 | Java | 4,881 | java | ManagedExecutorServiceImpl.java | Java | [] | null | [] | /*
* #%L
* Wisdom-Framework
* %%
* Copyright (C) 2013 - 2015 Wisdom Framework
* %%
* Licensed 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... | 4,881 | 0.632862 | 0.627535 | 127 | 37.433071 | 29.391891 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.685039 | false | false | 12 |
260e7b2c5fbff033c59e45d43e7fbd865aeae320 | 17,162,689,353,414 | b14d192d97ce42a027fb38e5d423ad21dd31e7a5 | /src/main/java/org/starsautohost/starsapi/block/CountersBlock.java | 4f2977bd8e88187d4272356dd0c95b9964eb0dff | [] | no_license | stars-4x/starsapi | https://github.com/stars-4x/starsapi | f2a660bd50315053dc6799fa1620bf7a0ae74f15 | 194732ce0d018b8ca818e5d732d0b14c01739768 | refs/heads/master | 2021-08-22T04:13:36.097000 | 2021-05-18T21:55:24 | 2021-05-18T21:55:24 | 49,889,610 | 6 | 2 | null | false | 2016-01-21T01:08:24 | 2016-01-18T16:35:54 | 2016-01-18T16:40:52 | 2016-01-21T01:08:23 | 184 | 0 | 1 | 0 | Java | null | null | package org.starsautohost.starsapi.block;
import org.starsautohost.starsapi.Util;
public class CountersBlock extends Block {
public int planetCount;
public int fleetCount;
public CountersBlock() {
typeId = BlockType.COUNTERS;
}
@Override
public void decode() throws Exception {
if (!hasDecrypt... | UTF-8 | Java | 996 | java | CountersBlock.java | Java | [] | null | [] | package org.starsautohost.starsapi.block;
import org.starsautohost.starsapi.Util;
public class CountersBlock extends Block {
public int planetCount;
public int fleetCount;
public CountersBlock() {
typeId = BlockType.COUNTERS;
}
@Override
public void decode() throws Exception {
if (!hasDecrypt... | 996 | 0.689759 | 0.665663 | 30 | 32.166668 | 28.897615 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.3 | false | false | 12 |
e062058cbe2238241b7eb5334ea944c85447efc9 | 33,285,996,581,255 | 248ea164cf995488bcba5646bed94ba548204448 | /ass1-jpa/src/main/java/dst/ass1/jpa/model/impl/Uplink.java | 0ce55f68badfe62d21f79adf36b737155aa77486 | [] | no_license | diatoskova/DistributedSystemsTechnologies | https://github.com/diatoskova/DistributedSystemsTechnologies | 1ee2b2737a2cbd1de7626a06ecc2369cd84eb572 | 8ef90b20778fc490b5af2ba3cfb38d30831e9063 | refs/heads/master | 2018-02-08T11:17:01.242000 | 2017-07-07T20:55:13 | 2017-07-07T20:55:13 | 96,575,851 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package dst.ass1.jpa.model.impl;
import dst.ass1.jpa.listener.UplinkListener;
import dst.ass1.jpa.model.IAddress;
import dst.ass1.jpa.model.IEventStreaming;
import dst.ass1.jpa.model.IStreamingServer;
import dst.ass1.jpa.model.IUplink;
import dst.ass1.jpa.validator.ViewerCapacity;
import javax.persistence.Embedded;
i... | UTF-8 | Java | 3,300 | java | Uplink.java | Java | [
{
"context": "ss1.jpa.listener.UplinkListener;\n/**\n * Created by diana on 3/10/17.\n */\n//\n//@Entity\n@EntityListeners(Upl",
"end": 674,
"score": 0.9995943307876587,
"start": 669,
"tag": "USERNAME",
"value": "diana"
}
] | null | [] | package dst.ass1.jpa.model.impl;
import dst.ass1.jpa.listener.UplinkListener;
import dst.ass1.jpa.model.IAddress;
import dst.ass1.jpa.model.IEventStreaming;
import dst.ass1.jpa.model.IStreamingServer;
import dst.ass1.jpa.model.IUplink;
import dst.ass1.jpa.validator.ViewerCapacity;
import javax.persistence.Embedded;
i... | 3,300 | 0.674545 | 0.665758 | 140 | 22.564285 | 19.163288 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.342857 | false | false | 12 |
efee2bb8bc27398734c7401ff64ecf676599c21b | 1,941,325,269,587 | ebddef479ab8603f5c290766fae7dfe23bf92068 | /payments-api/src/main/java/pl/training/cloud/payments/adapters/rest/GetPaymentApi.java | 161b433326a2ae4185026861da7c7a8003c859c6 | [] | no_license | pete21/spring-cloud-training | https://github.com/pete21/spring-cloud-training | 5c899ada54031e07ddb5210923bc0ab581671917 | 10a06597d9a1bc7d4a970a06c999e422592fcf90 | refs/heads/master | 2023-06-06T03:00:25.778000 | 2021-06-23T12:52:09 | 2021-06-23T12:52:09 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pl.training.cloud.payments.adapters.rest;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
public interface GetPaymentApi {
@GetMapping("payments/{id}")
ResponseEntity<PaymentDto> fi... | UTF-8 | Java | 356 | java | GetPaymentApi.java | Java | [] | null | [] | package pl.training.cloud.payments.adapters.rest;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
public interface GetPaymentApi {
@GetMapping("payments/{id}")
ResponseEntity<PaymentDto> fi... | 356 | 0.808989 | 0.808989 | 12 | 28.666666 | 25.798363 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.416667 | false | false | 12 |
c1f496099744887333cc0006e64f4880f6517c09 | 16,578,573,822,818 | e39f6a9c21533fbc1b42a7dfbcaddabbf7ad0434 | /src/main/java/com/userzrq/quartz/ScheduleRefreshCron.java | 155003ce7a389624a1f7409e3bd42799c7d2e62c | [
"Apache-2.0"
] | permissive | userzrq/study-api | https://github.com/userzrq/study-api | 12721e3293e5811ec1f81ca37ffb8ce331d4cbff | 042e4845a9ec1d73c7651f20fb202837c1649a51 | refs/heads/main | 2023-03-31T00:55:52.187000 | 2021-04-06T03:55:09 | 2021-04-06T03:55:09 | 355,049,887 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.userzrq.quartz;
import org.quartz.CronTrigger;
import org.quartz.JobDetail;
import org.quartz.Scheduler;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.spr... | UTF-8 | Java | 2,251 | java | ScheduleRefreshCron.java | Java | [] | null | [] | package com.userzrq.quartz;
import org.quartz.CronTrigger;
import org.quartz.JobDetail;
import org.quartz.Scheduler;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.spr... | 2,251 | 0.692944 | 0.686618 | 52 | 38.51923 | 27.04945 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.480769 | false | false | 12 |
19d947754aa400fa8523a20a5715a837fd93d3e0 | 4,913,442,634,332 | 1855dda7e906e214eca77e768a0b6d38aa06d5cb | /src/main/java/uk/ac/ebi/uniprot/ot/config/DiseaseAssocGuiceModule.java | 006b6c21df34a5bf624ffab515b4284da0cc992c | [] | no_license | ebi-uniprot/open-targets-core-db | https://github.com/ebi-uniprot/open-targets-core-db | c5c1a80a74c94851d50ba86f360ac3d8b0b77b14 | 3b063091cbc2824f3b048a621fffa5be6cba4f6b | refs/heads/master | 2023-05-15T02:52:07.139000 | 2023-04-27T16:25:54 | 2023-04-27T16:25:54 | 168,539,708 | 1 | 0 | null | false | 2022-11-16T10:49:57 | 2019-01-31T14:36:47 | 2021-10-12T06:43:34 | 2022-11-16T10:49:54 | 658 | 1 | 0 | 4 | Java | false | false | package uk.ac.ebi.uniprot.ot.config;
import com.google.inject.AbstractModule;
import com.google.inject.Provides;
import com.google.inject.name.Names;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import uk.ac.ebi.kraken.interfaces.uniprot.UniProtEntry;
import uk.ac.ebi.uniprot.dataservice.client.Client;
imp... | UTF-8 | Java | 3,089 | java | DiseaseAssocGuiceModule.java | Java | [
{
"context": "for generating disease associations.\n *\n * @author Edd <eddturner@ebi.ac.uk>\n */\npublic class DiseaseAss",
"end": 1052,
"score": 0.9903260469436646,
"start": 1049,
"tag": "USERNAME",
"value": "Edd"
},
{
"context": "nerating disease associations.\n *\n * @author Edd ... | null | [] | package uk.ac.ebi.uniprot.ot.config;
import com.google.inject.AbstractModule;
import com.google.inject.Provides;
import com.google.inject.name.Names;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import uk.ac.ebi.kraken.interfaces.uniprot.UniProtEntry;
import uk.ac.ebi.uniprot.dataservice.client.Client;
imp... | 3,077 | 0.777274 | 0.767886 | 80 | 37.612499 | 28.409723 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5125 | false | false | 12 |
63a0a65d79c043094a82f9c48f85fa1b7c69ffa2 | 27,848,567,986,948 | aa7f8e8dc88efd4f62e0e2875d1c9df391153908 | /app/src/main/java/com/manulife/employeedirectory/data_manager/web/StandardError.java | a80fb2a608193fee718cfa95ecd5ec0d58fe3c6e | [
"Apache-2.0"
] | permissive | mervyn777/Manulife-Employee-Directory-Android | https://github.com/mervyn777/Manulife-Employee-Directory-Android | 24956af9139cb0ab93e168514d8fb9a87f7c24a4 | 24501526f65c4653b80c39560b46402d8177272c | HEAD | 2016-09-10T05:46:57.499000 | 2016-07-06T17:13:40 | 2016-07-06T17:13:40 | 58,669,240 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.manulife.employeedirectory.data_manager.web;
public class StandardError {
private String title;
private String detail;
private int code;
public String getTitle() {
return title;
}
public String getDetail() {
return detail;
}
public int getCode() {
... | UTF-8 | Java | 344 | java | StandardError.java | Java | [] | null | [] | package com.manulife.employeedirectory.data_manager.web;
public class StandardError {
private String title;
private String detail;
private int code;
public String getTitle() {
return title;
}
public String getDetail() {
return detail;
}
public int getCode() {
... | 344 | 0.622093 | 0.622093 | 22 | 14.636364 | 14.904378 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.318182 | false | false | 12 |
a18d1c9fd0b0dcc639ef32102d79e227ad25ee23 | 12,412,455,535,793 | 020ab20ac6d8d9727f1dfccf002fa3c55cf528fc | /serve/src/main/java/com/platform/serve/common/util/CommonUtils.java | 8a0a2aa8da1aac6ed5b8cd4db065a16730e86511 | [] | no_license | Faichuis/email-houduan | https://github.com/Faichuis/email-houduan | e4ee51e3b9bb9fea011f149d6168965b44e5d9f1 | e0d4b8c9a9ffcc9348a03fcd9c8691f8d68a4615 | refs/heads/master | 2023-05-11T04:54:21.782000 | 2021-06-02T16:34:38 | 2021-06-02T16:34:38 | 364,625,300 | 0 | 0 | null | false | 2021-06-02T16:34:39 | 2021-05-05T15:35:49 | 2021-05-05T16:44:47 | 2021-06-02T16:34:38 | 149 | 0 | 0 | 0 | Java | false | false | package com.platform.serve.common.util;
import com.platform.serve.config.exception.CheckException;
import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct;
import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.time.Lo... | UTF-8 | Java | 3,480 | java | CommonUtils.java | Java | [
{
"context": "port java.util.UUID;\n\n/**\n * 公共方法工具类\n *\n * @author lids\n * @version 1.0\n * @date 2021/2/28 21:57\n */\n@Com",
"end": 481,
"score": 0.9995328187942505,
"start": 477,
"tag": "USERNAME",
"value": "lids"
}
] | null | [] | package com.platform.serve.common.util;
import com.platform.serve.config.exception.CheckException;
import org.apache.commons.lang3.StringUtils;
import org.springframework.stereotype.Component;
import javax.annotation.PostConstruct;
import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.time.Lo... | 3,480 | 0.569477 | 0.562352 | 151 | 21.304636 | 22.352383 | 127 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.271523 | false | false | 12 |
f902c71ef16d9a9a5db37955eb1fec7bab0cd365 | 17,188,459,179,760 | af0394ee0a030c9e3c8015c25b8162fa55303a21 | /src/main/java/db/mysql5/SessionServiceUtil.java | 9574d33d56675e511ace86a4046a50b58abdab10 | [] | no_license | AndreyMr/HibernateSpringData | https://github.com/AndreyMr/HibernateSpringData | f8ba15b107b5337e9d46ea44907fbac016ac12a7 | b1f33ea8363f6236566a0f55c76a76d3dca23fca | refs/heads/master | 2022-07-05T07:57:13.790000 | 2019-08-11T07:35:56 | 2019-08-11T07:35:56 | 201,732,784 | 0 | 0 | null | false | 2022-06-21T01:38:44 | 2019-08-11T07:32:29 | 2019-08-11T07:36:01 | 2022-06-21T01:38:41 | 13 | 0 | 0 | 2 | Java | false | false | package db.mysql5;
import org.hibernate.Session;
import org.hibernate.Transaction;
public class SessionServiceUtil {
private static Session session;
private static Transaction transaction;
public static Session getSession() {
return session;
}
public static Transaction getTransaction() {... | UTF-8 | Java | 814 | java | SessionServiceUtil.java | Java | [] | null | [] | package db.mysql5;
import org.hibernate.Session;
import org.hibernate.Transaction;
public class SessionServiceUtil {
private static Session session;
private static Transaction transaction;
public static Session getSession() {
return session;
}
public static Transaction getTransaction() {... | 814 | 0.689189 | 0.687961 | 31 | 25.258064 | 23.066479 | 111 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.451613 | false | false | 12 |
1e3aa4bc330c572261b128a808200307d32c1d4a | 35,536,559,427,154 | 477035187f26281a820587a041df3548703ecd8b | /src/main/java/com/andreamazzon/session4/inheritanceandconstructors/sportsmans/TestConstructors.java | 4bb400410b1df6c1cf7a81541657b16db4fae9d5 | [] | no_license | qntlb/javacourse-2021 | https://github.com/qntlb/javacourse-2021 | a9f2781cc427d98dbae3b8d0ea7c5291f53d1f4a | 66eacb1d27a5df660d5888cb3bae47a7c3021374 | refs/heads/master | 2023-04-10T00:28:57.050000 | 2021-04-23T21:19:23 | 2021-04-23T21:19:23 | 353,936,910 | 3 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.andreamazzon.session4.inheritanceandconstructors.sportsmans;
/**
* This class tests how inheritance works when the base class has more than one
* constructor. Note which constructors are called.
*
* @author Andrea Mazzon
*
*/
public class TestConstructors {
public static void main(String[] args) {... | UTF-8 | Java | 483 | java | TestConstructors.java | Java | [
{
"context": " Note which constructors are called.\n *\n * @author Andrea Mazzon\n *\n */\n\npublic class TestConstructors {\n\n\tpublic ",
"end": 237,
"score": 0.9998800158500671,
"start": 224,
"tag": "NAME",
"value": "Andrea Mazzon"
},
{
"context": " class\n\t\tTennisplayer federer... | null | [] | package com.andreamazzon.session4.inheritanceandconstructors.sportsmans;
/**
* This class tests how inheritance works when the base class has more than one
* constructor. Note which constructors are called.
*
* @author <NAME>
*
*/
public class TestConstructors {
public static void main(String[] args) {
Spo... | 476 | 0.745342 | 0.743271 | 19 | 24.473684 | 31.709816 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.526316 | false | false | 12 |
23a5185860da6da7987cf312bf1726fc40f12c32 | 29,188,597,783,688 | 99dfc968643b8d42d635f2a07947202be2c6c1c5 | /src/main/java/sr/hakrinbank/intranet/api/service/bean/ListedPersonGreyServiceBean.java | 355b11aa9571cf1561be42e6566e75144f864f20 | [] | no_license | clintatmo/hkb-intranet-api | https://github.com/clintatmo/hkb-intranet-api | 9a0f654f1cd6e9cc14a97bb56e359fa7d4c885d7 | bb17c285e8c12c49a525b58e0a85d7ca895867f5 | refs/heads/master | 2019-07-08T01:21:21.829000 | 2018-04-06T15:34:55 | 2018-04-06T15:34:55 | 88,074,818 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package sr.hakrinbank.intranet.api.service.bean;
import org.joda.time.DateTime;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.access.prepost.PostFilter;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
imp... | UTF-8 | Java | 5,651 | java | ListedPersonGreyServiceBean.java | Java | [] | null | [] | package sr.hakrinbank.intranet.api.service.bean;
import org.joda.time.DateTime;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.access.prepost.PostFilter;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
imp... | 5,651 | 0.732437 | 0.732437 | 135 | 40.866665 | 39.771717 | 209 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.481481 | false | false | 12 |
72320135175a8d65027e87fa4ce5e83766065b7c | 8,727,373,587,833 | b55cb102e6d406ae3bab7a295196e385e518bcb5 | /seata-common/src/main/java/net/yiyutao/seata/common/base/BaseService.java | 6e41dab638f1319c4cdf25f6009d17e4711baee1 | [] | no_license | yiyutao/springboot-dubbo-seata | https://github.com/yiyutao/springboot-dubbo-seata | 26362be3504dd422931767f9481ba8fcae3d86cb | 9b79ce200d0dc3cbf308f555d50e649f4899affc | refs/heads/master | 2020-05-07T18:43:14.356000 | 2019-04-17T11:46:58 | 2019-04-17T11:46:58 | 180,780,887 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.yiyutao.seata.common.base;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import net.yiyutao.seata.common.enums.ResultEnum;
import java.util.List;
/**
* @author masterYI
* @date 2019/4/11 16:48
*/
public class BaseService {
/**
* 解析分页查询的数据
*
* @para... | UTF-8 | Java | 1,385 | java | BaseService.java | Java | [
{
"context": "esultEnum;\n\nimport java.util.List;\n\n/**\n * @author masterYI\n * @date 2019/4/11 16:48\n */\npublic class BaseSer",
"end": 218,
"score": 0.9995378851890564,
"start": 210,
"tag": "USERNAME",
"value": "masterYI"
}
] | null | [] | package net.yiyutao.seata.common.base;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import net.yiyutao.seata.common.enums.ResultEnum;
import java.util.List;
/**
* @author masterYI
* @date 2019/4/11 16:48
*/
public class BaseService {
/**
* 解析分页查询的数据
*
* @para... | 1,385 | 0.613583 | 0.604996 | 48 | 25.6875 | 20.871788 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.416667 | false | false | 12 |
8d62a8f3a387db20eeacbb01f09e2ab4e0420639 | 20,968,030,341,689 | 7c04a174616b8e3e1af8b454aa72ad29545463d9 | /Code/src/com/infinity/vbd/FXMLController/MainFXMLDocumentController.java | 8ed39ace275aa5f6d5ad91dee18b249d31d27d66 | [] | no_license | iaminfinity8/VBD | https://github.com/iaminfinity8/VBD | 5026ff7601b6306bf3ce881da3af296fa50de2a5 | 41af55a49b003e941a73241415c2dfdbb919f48c | refs/heads/master | 2020-03-19T01:15:22.111000 | 2018-05-31T06:54:12 | 2018-05-31T06:54:12 | 135,531,868 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.infinity.vbd.FXMLController;
import com.infinity.vbd.Beans.VoiceResource;
import com.infinity.vbd.Dao.Search;
import com.j... | UTF-8 | Java | 7,964 | java | MainFXMLDocumentController.java | Java | [
{
"context": "Stage;\n\n/**\n * FXML Controller class\n *\n * @author Akash\n */\npublic class MainFXMLDocumentController imple",
"end": 892,
"score": 0.9614274501800537,
"start": 887,
"tag": "NAME",
"value": "Akash"
}
] | null | [] | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.infinity.vbd.FXMLController;
import com.infinity.vbd.Beans.VoiceResource;
import com.infinity.vbd.Dao.Search;
import com.j... | 7,964 | 0.678805 | 0.677172 | 226 | 34.238937 | 22.427177 | 101 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.60177 | false | false | 12 |
6f272cea44f829ed852b51f22b1740485960ad29 | 36,670,430,787,023 | f0487728aec297d3f49456bf6f4232702f12fa00 | /asciily-foundation-springboot/src/main/java/com/asciily/foundation/config/motan/server/MotanServerAnnotaionConfiguration.java | 592ac18e6009427ff70e8727712257d729d519c8 | [
"Apache-2.0"
] | permissive | swxiao/asciily-foundation | https://github.com/swxiao/asciily-foundation | c3aca0a80637fc2992e6d954d41d0c4c343559b5 | 881ca50cd47f254fbae3037d24e841f9aab1279f | refs/heads/master | 2022-06-24T10:43:00.961000 | 2019-08-01T06:03:23 | 2019-08-01T06:03:23 | 155,304,417 | 0 | 0 | Apache-2.0 | false | 2022-06-21T00:53:11 | 2018-10-30T01:17:22 | 2019-08-01T06:03:30 | 2022-06-21T00:53:08 | 136 | 0 | 0 | 1 | Java | false | false | /**
* Copyright [2015-2017]
*
* Licensed 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 applicable law or agreed to in writi... | UTF-8 | Java | 1,320 | java | MotanServerAnnotaionConfiguration.java | Java | [
{
"context": ".springsupport.AnnotationBean;\n\n/**\n * \n * @author xiaosw<xiaosw@msn.cn>\n * @since 2017年1月17日\n */\n@Configur",
"end": 973,
"score": 0.9996728897094727,
"start": 967,
"tag": "USERNAME",
"value": "xiaosw"
},
{
"context": "upport.AnnotationBean;\n\n/**\n * \n * @auth... | null | [] | /**
* Copyright [2015-2017]
*
* Licensed 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 applicable law or agreed to in writi... | 1,314 | 0.760305 | 0.745802 | 42 | 30.190475 | 36.917049 | 139 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 12 |
458a4b1718f4212a7d26616b2dff9c1d26010b83 | 20,486,994,063,527 | e48ef7ba25604db67e48036b765cef9e743f9fe6 | /OnlineShopping/build/generated-sources/ap-source-output/web/pro/model/History_.java | e03730f12abe4e26c4c32f4d7a87d0d3216235ca | [] | no_license | darkhager/OnlineShop | https://github.com/darkhager/OnlineShop | c89cee563d718215d31ae1cff4ea40f7c4b79dc4 | 5b158bf0af304af193230cb1ad8272d19f74d0c1 | refs/heads/master | 2020-04-04T13:15:32.215000 | 2018-11-29T12:33:15 | 2018-11-29T12:33:15 | 155,954,740 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package web.pro.model;
import java.util.Date;
import javax.annotation.Generated;
import javax.persistence.metamodel.SingularAttribute;
import javax.persistence.metamodel.StaticMetamodel;
import web.pro.model.Account;
import web.pro.model.Product;
@Generated(value="EclipseLink-2.5.2.v20140319-rNA", date="2018-11-29T16... | UTF-8 | Java | 894 | java | History_.java | Java | [] | null | [] | package web.pro.model;
import java.util.Date;
import javax.annotation.Generated;
import javax.persistence.metamodel.SingularAttribute;
import javax.persistence.metamodel.StaticMetamodel;
import web.pro.model.Account;
import web.pro.model.Product;
@Generated(value="EclipseLink-2.5.2.v20140319-rNA", date="2018-11-29T16... | 894 | 0.804251 | 0.776286 | 22 | 39.68182 | 28.485062 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1 | false | false | 12 |
36f6761bcf2759e1fe62a194ccb3505a68c8140d | 27,565,100,157,467 | 7ef4618d565d05ca4770f27466b783191971ca90 | /goosta/src/main/java/com/kh/goosta/member/Service/MemberService.java | d3906528b6578ef4340607fa716280652a99c901 | [] | no_license | gattwe/goosta | https://github.com/gattwe/goosta | 3b0bc6d6e2eab8b8c55c511af8ead20da11bda1f | 3a7fb8b9d366c685da6c0d7fe9597e2db8471f84 | refs/heads/master | 2021-01-22T06:53:52.004000 | 2017-03-09T08:45:00 | 2017-03-09T08:45:00 | 81,793,591 | 4 | 3 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.kh.goosta.member.Service;
import com.kh.goosta.member.vo.Member;
public interface MemberService {
int enroll2(Member m);
}
| UTF-8 | Java | 148 | java | MemberService.java | Java | [] | null | [] | package com.kh.goosta.member.Service;
import com.kh.goosta.member.vo.Member;
public interface MemberService {
int enroll2(Member m);
}
| 148 | 0.722973 | 0.716216 | 8 | 16.5 | 16.545393 | 38 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.625 | false | false | 12 |
f16f4c42d6cd98a41368723105a91bd5766f3a2d | 38,139,309,603,546 | 97ec83f53a6cd496215f4d57545d9985e4cccba5 | /Hibernate/ตัวอย่างการใช้ hibernate แบบต่าง/function สำหรับเกท applicationContext/FactoryUtil.java | 71a71a576dde7eae5d15a37d4189427b6f3711cc | [] | no_license | pobsaeng/MySources | https://github.com/pobsaeng/MySources | b79d39dbfe803197a86cde0e9111c77df426699b | a7e602719b85cbd9409dca2b4085a4379ee297cc | refs/heads/master | 2020-05-07T19:39:08.100000 | 2019-04-11T15:19:28 | 2019-04-11T15:19:28 | 180,819,437 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Created on Aug 25, 2005
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.ie.icon.util;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**... | UTF-8 | Java | 742 | java | FactoryUtil.java | Java | [
{
"context": "rt.ClassPathXmlApplicationContext;\n\n/**\n * @author Boing\n *\n * TODO To change the template for this genera",
"end": 337,
"score": 0.9971442818641663,
"start": 332,
"tag": "NAME",
"value": "Boing"
}
] | null | [] | /*
* Created on Aug 25, 2005
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.ie.icon.util;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**... | 742 | 0.734501 | 0.726415 | 27 | 26.481482 | 26.383736 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.592593 | false | false | 12 |
5f524f60bfd26aa6c99ef2c10b2412877391da41 | 38,508,676,785,191 | 729cecd15f257fbde46fa3acd483670b7399a516 | /java8/java8/src/main/java/com/java8/c12/discount/Discount.java | d17d0deca4c36e1e2bb345c55cc25b371836aa4b | [
"MIT",
"BSD-2-Clause"
] | permissive | ksfzhaohui/blog | https://github.com/ksfzhaohui/blog | dcb0f573741edc159c45bbce057863078ac70255 | 9d6994f2d66f760c3dda507f08fcf2b2046814b8 | refs/heads/master | 2023-06-21T15:14:38.733000 | 2023-06-18T13:26:26 | 2023-06-18T13:26:26 | 140,855,650 | 107 | 47 | BSD-2-Clause | false | 2022-12-16T00:37:19 | 2018-07-13T14:18:27 | 2022-11-24T09:28:17 | 2022-12-16T00:37:16 | 20,142 | 92 | 45 | 35 | Java | false | false | package com.java8.c12.discount;
public class Discount {
public enum Code {
NONE(0), SILVER(5), GOLD(10), PLATINUM(15), DIAMOND(20);
private final int percentage;
Code(int percentage) {
this.percentage = percentage;
}
}
public static String applyDiscount(Quote quote) {
return quote.getShopName() + " ... | UTF-8 | Java | 658 | java | Discount.java | Java | [] | null | [] | package com.java8.c12.discount;
public class Discount {
public enum Code {
NONE(0), SILVER(5), GOLD(10), PLATINUM(15), DIAMOND(20);
private final int percentage;
Code(int percentage) {
this.percentage = percentage;
}
}
public static String applyDiscount(Quote quote) {
return quote.getShopName() + " ... | 658 | 0.680851 | 0.648936 | 31 | 20.225807 | 23.816109 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.677419 | false | false | 12 |
2d43b7f06fa85d7b068ae3325d6f9224777c6cbf | 39,548,058,866,802 | 987d41d636fad6c666bfc92b8c9c7b87ce13e2fd | /TheResistanceAvalon/app/src/main/java/com/lcbs/theresistanceavalon/QuestVoteActivity.java | 57475b41312ce29691baf34035e8bf9778864765 | [] | no_license | scottdjwallace/resistance-avalon | https://github.com/scottdjwallace/resistance-avalon | ca3a25d27bd8ae5bb08984187156bf25d877451b | 105bd4c1e727795a889ef30521ed92f989d54f77 | refs/heads/master | 2016-09-10T20:07:51.329000 | 2015-04-06T01:17:17 | 2015-04-06T01:17:17 | 29,875,272 | 8 | 4 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lcbs.theresistanceavalon;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.Vi... | UTF-8 | Java | 6,198 | java | QuestVoteActivity.java | Java | [
{
"context": "QUEST WAS SUCCESSFUL!\";\n String message = \"Knights of King Arthur rejoice!\";\n\n AlertDial",
"end": 5065,
"score": 0.6425318717956543,
"start": 5063,
"tag": "NAME",
"value": "Kn"
},
{
"context": "SUCCESSFUL!\";\n String message = \"Knights of Ki... | null | [] | package com.lcbs.theresistanceavalon;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.Vi... | 6,198 | 0.577606 | 0.575024 | 171 | 35.245613 | 27.545994 | 136 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.54386 | false | false | 12 |
e42be41cd50fe7b8f7d2a7ba9febafb6e04776b3 | 4,904,852,698,440 | 36e905a7cf1a303dab17c1a02cbbf8a6a996f922 | /src/main/java/com/safeway/copient/rewrite/offer/business/model/OfferMetaDataBO.java | 14a8bfcbdaa306266413d11fe12c385474f88411 | [] | no_license | javaguruanil/MapStructPOC | https://github.com/javaguruanil/MapStructPOC | e8eb51024edb8883078cee3dca6017c128af9cc6 | 4eec2a8d6327433bfc79961d7f876eb5909f11c7 | refs/heads/master | 2021-01-02T05:39:57.745000 | 2020-02-10T13:10:40 | 2020-02-10T13:10:40 | 239,513,489 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.safeway.copient.rewrite.offer.business.model;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;
import java.util.Date;
@Data
@AllArgsConstructor
@NoArgsConstructor
@ToString
public class OfferMetaDataBO {
private Long offerId;
private D... | UTF-8 | Java | 710 | java | OfferMetaDataBO.java | Java | [] | null | [] | package com.safeway.copient.rewrite.offer.business.model;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;
import java.util.Date;
@Data
@AllArgsConstructor
@NoArgsConstructor
@ToString
public class OfferMetaDataBO {
private Long offerId;
private D... | 710 | 0.783099 | 0.783099 | 28 | 24.392857 | 14.470016 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.678571 | false | false | 12 |
0ab1cbe7c50febfad33a6040cd077375637a1cc5 | 17,626,545,833,830 | 3a33dad5738b8246ba4294819d68b7036ba176e2 | /src/test/java/com/example/inventory_mgmt_system/controller/UserControllerTest.java | af7bb72ac69abbb46ed6fafb93026406b76bf739 | [] | no_license | abhishekranjan1/inventory_mgmt_system | https://github.com/abhishekranjan1/inventory_mgmt_system | 940096e9fb9d5ac67789c5454f2260cfa51e6d12 | 6a5d4fffbb087727762a9acc36630aa962505273 | refs/heads/master | 2022-05-25T03:30:48.114000 | 2019-09-24T11:14:17 | 2019-09-24T11:14:17 | 210,343,033 | 0 | 0 | null | false | 2022-05-20T21:10:54 | 2019-09-23T11:54:43 | 2019-09-24T11:14:31 | 2022-05-20T21:10:53 | 20 | 0 | 0 | 1 | Java | false | false | package com.example.inventory_mgmt_system.controller;
import org.junit.Ignore;
import org.junit.Test;
import static org.junit.Assert.*;
@Ignore
public class UserControllerTest {
@Test
public void getAllUsersByOrganization() {
}
@Test
public void saveUser() {
}
} | UTF-8 | Java | 291 | java | UserControllerTest.java | Java | [] | null | [] | package com.example.inventory_mgmt_system.controller;
import org.junit.Ignore;
import org.junit.Test;
import static org.junit.Assert.*;
@Ignore
public class UserControllerTest {
@Test
public void getAllUsersByOrganization() {
}
@Test
public void saveUser() {
}
} | 291 | 0.707904 | 0.707904 | 18 | 15.222222 | 16.578283 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.222222 | false | false | 12 |
f9a4eb79dc18bf85a119e851545327dc7d176461 | 18,193,481,495,943 | d113afbde21c3a0a4f83634878d85de56bafb18f | /src/test/java/com/example/objects/TestCrewObjects.java | 6059863ea65911f9fb17ad2db029283acf695cbe | [] | no_license | MohammadRafi44/example-selenium-key-word-driven-framework | https://github.com/MohammadRafi44/example-selenium-key-word-driven-framework | c9ab59edff660af8c5d39cb7aa101d117ffae2aa | cef11faffb0664c259af09c43df4b80b11d57e0f | refs/heads/master | 2023-04-22T00:01:49.850000 | 2021-05-11T15:29:08 | 2021-05-11T15:29:08 | 366,410,840 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.objects;
import org.openqa.selenium.By;
public class TestCrewObjects {
public static final By TESTCREW_ABOUT_US = By.xpath("//a[@class='nav-link'][contains(.,'About Us')]");
public static final By TESTCREW_ABOUTUS_EMAIL_TEXT = By.cssSelector("div[class='col-md-4'] div:nth-child(3)");
p... | UTF-8 | Java | 1,538 | java | TestCrewObjects.java | Java | [
{
"context": " final String TESTCREW_ABOUTUS_EMAIL_TEXT_DATA = \"info@testcrew.sa\";\n\n public static final By TESTCREW_CONTACT_US",
"end": 398,
"score": 0.9999226927757263,
"start": 382,
"tag": "EMAIL",
"value": "info@testcrew.sa"
}
] | null | [] | package com.example.objects;
import org.openqa.selenium.By;
public class TestCrewObjects {
public static final By TESTCREW_ABOUT_US = By.xpath("//a[@class='nav-link'][contains(.,'About Us')]");
public static final By TESTCREW_ABOUTUS_EMAIL_TEXT = By.cssSelector("div[class='col-md-4'] div:nth-child(3)");
p... | 1,529 | 0.702211 | 0.693758 | 30 | 50.266666 | 51.32896 | 160 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 12 |
fe1027b662170f92dadfff7a7df2174b769d12de | 10,170,482,585,617 | 5abf450a6f39b39a496f99ec652ac243b0ed9c65 | /parent335/pinyougou-web-user/src/main/java/cn/itcast/core/controller/address/CityController.java | 41036213fdcc41f1980df6391083b89844385335 | [] | no_license | shangkai112138/pinyougou335 | https://github.com/shangkai112138/pinyougou335 | fefa3bbd87fa4b1349ae64d1af1205a8c6d2dc2a | 686e7a7dab6b3f8a0f716199a3286cf953587f03 | refs/heads/master | 2020-04-29T01:54:37.087000 | 2019-03-20T06:46:19 | 2019-03-20T06:46:19 | 175,746,074 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.itcast.core.controller.address;
import cn.itcast.core.pojo.address.Cities;
import cn.itcast.core.service.address.CitiesService;
import com.alibaba.dubbo.config.annotation.Reference;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
... | UTF-8 | Java | 737 | java | CityController.java | Java | [] | null | [] | package cn.itcast.core.controller.address;
import cn.itcast.core.pojo.address.Cities;
import cn.itcast.core.service.address.CitiesService;
import com.alibaba.dubbo.config.annotation.Reference;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
... | 737 | 0.755895 | 0.755895 | 27 | 25.703703 | 21.881525 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 12 |
3c5d5be41b1d893fb23ed26a1cf3755ad183f2bc | 10,342,281,274,680 | a23f737119f02e001005b7f792c73b941d52426a | /file.java | 3420710bd103b7a47d20cf884429905d46687b66 | [] | no_license | krishnajanolia1994/basic-java-program | https://github.com/krishnajanolia1994/basic-java-program | 54c2aa8effd1ba93fb03c2ccc1f426634be33d9b | 820913c91310a1c196f6cb6783f9ab32ebb71f57 | refs/heads/master | 2021-01-13T16:45:32.747000 | 2017-01-19T12:00:12 | 2017-01-19T12:00:12 | 77,048,015 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author student
*/
import java.io.*;
public class file {
/**
* @param args the command line arguments
*/
... | UTF-8 | Java | 579 | java | file.java | Java | [
{
"context": "the template in the editor.\n */\n\n/**\n *\n * @author student\n */\nimport java.io.*;\npublic class file {\n\n /*",
"end": 211,
"score": 0.994307279586792,
"start": 204,
"tag": "USERNAME",
"value": "student"
}
] | null | [] | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author student
*/
import java.io.*;
public class file {
/**
* @param args the command line arguments
*/
... | 579 | 0.618307 | 0.618307 | 27 | 20.444445 | 22.463688 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.296296 | false | false | 12 |
f831b9bcf33504d290398fb2e2ce913415d5db85 | 21,242,908,251,145 | 5654470f78f7ea5fa4a580a0a6a186172d868861 | /mongoose-buildins/src/main/java/com/anrisoftware/mongoose/buildins/logbuildins/TraceService.java | caa99eae003f0fe04f522659bab91fd04d3a5431 | [] | no_license | devent/mongoose | https://github.com/devent/mongoose | 84d26ea6d0cf371a354980cfbb6e080d654215ec | 8ce243330a8fb5372b24dd261869d7e00eaecf71 | refs/heads/master | 2020-04-11T02:40:50.737000 | 2014-09-13T14:49:44 | 2014-09-13T16:08:10 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright 2012 Erwin Müller <erwin.mueller@deventm.org>
*
* This file is part of groovybash-buildins.
*
* groovybash-buildins is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 3 of t... | UTF-8 | Java | 2,545 | java | TraceService.java | Java | [
{
"context": "/*\n * Copyright 2012 Erwin Müller <erwin.mueller@deventm.org>\n * \n * This file is p",
"end": 33,
"score": 0.9998836517333984,
"start": 21,
"tag": "NAME",
"value": "Erwin Müller"
},
{
"context": "/*\n * Copyright 2012 Erwin Müller <erwin.mueller@deventm.org>\n * \n * ... | null | [] | /*
* Copyright 2012 <NAME> <<EMAIL>>
*
* This file is part of groovybash-buildins.
*
* groovybash-buildins is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your ... | 2,495 | 0.748035 | 0.744497 | 82 | 30.024391 | 28.048727 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.04878 | false | false | 12 |
55eb1921a6638be168651122513ee774c751e4e1 | 28,750,511,139,611 | cf58cbf73848bac236d3f9bc22f0e3948c5f1dc4 | /DesafioCarreira/src/test/java/Utils/RelatorioExtentReport.java | 935384883cb0bb8d9a083cb98d4107187b3590f3 | [] | no_license | alanpaulodejesus/Desafio | https://github.com/alanpaulodejesus/Desafio | d8302deac1400104730b400f4449f655a284f491 | b86a6878a37907e8aae366d1f8b3fb346b18c459 | refs/heads/master | 2020-08-03T11:20:52.889000 | 2020-01-22T03:17:29 | 2020-01-22T03:17:29 | 211,732,959 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Utils;
import com.aventstack.extentreports.ExtentReports;
import com.aventstack.extentreports.reporter.ExtentHtmlReporter;
import com.aventstack.extentreports.reporter.configuration.Theme;
import java.io.File;
public class RelatorioExtentReport {
public static ExtentHtmlReporter htmlReporter;
public... | UTF-8 | Java | 1,301 | java | RelatorioExtentReport.java | Java | [
{
"context": " extent.setSystemInfo(\"Automation Tester\", \"Alan Paulo de Jesus\");\n extent.setSystemInfo(\"Organization",
"end": 1093,
"score": 0.9147056937217712,
"start": 1074,
"tag": "NAME",
"value": "Alan Paulo de Jesus"
}
] | null | [] | package Utils;
import com.aventstack.extentreports.ExtentReports;
import com.aventstack.extentreports.reporter.ExtentHtmlReporter;
import com.aventstack.extentreports.reporter.configuration.Theme;
import java.io.File;
public class RelatorioExtentReport {
public static ExtentHtmlReporter htmlReporter;
public... | 1,288 | 0.660508 | 0.658968 | 43 | 29.209303 | 31.604797 | 121 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.44186 | false | false | 12 |
d69d515b63a4d9cb090829fc7ab9c776b8bad5c9 | 2,774,548,880,078 | d77444d6fbfd68a42f431977d32a5849782d7cfa | /kaltura/src/main/java/com/miniteve/activity/VideoCategory.java | 1f2bc46b7b61053aecd2fd3165520b0d0bdeaf01 | [] | no_license | Mindgames/Miniteve | https://github.com/Mindgames/Miniteve | 9a58822c610fe127b09a8e727977de4126f4d6ad | b7c73d2bcd296b3a24f83cf67d6a5998c7a1af6b | refs/heads/master | 2016-08-04T06:56:01.296000 | 2014-07-28T08:37:59 | 2014-07-28T08:37:59 | 22,062,444 | 0 | 0 | null | false | 2014-07-28T08:37:59 | 2014-07-21T11:54:03 | 2014-07-26T14:38:33 | 2014-07-28T08:37:59 | 0 | 0 | 0 | 0 | Java | null | null | package com.miniteve.activity;
import android.app.Activity;
import android.content.pm.ActivityInfo;
import android.content.res.Configuration;
import android.graphics.Bitmap;
import android.graphics.Point;
import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v4.widget.DrawerLayout;
import andro... | UTF-8 | Java | 22,845 | java | VideoCategory.java | Java | [] | null | [] | package com.miniteve.activity;
import android.app.Activity;
import android.content.pm.ActivityInfo;
import android.content.res.Configuration;
import android.graphics.Bitmap;
import android.graphics.Point;
import android.os.AsyncTask;
import android.os.Bundle;
import android.support.v4.widget.DrawerLayout;
import andro... | 22,845 | 0.535697 | 0.528475 | 656 | 33.821648 | 27.722385 | 199 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.599085 | false | false | 12 |
086ca360adf641f94b60617e91531a4bdb463f04 | 12,180,527,308,667 | d50f15db8ae08188fb2bf2e636e019118d2b0e40 | /SimpleWidget/app/src/main/java/ca/nait/bsebagabo1/simplewidget/SimpleWidgetProvider.java | 701d85283cdfa2f340b69bfee3a28846fa974f14 | [] | no_license | blaiseAI/android_development_2504 | https://github.com/blaiseAI/android_development_2504 | 1901bc8e7c9a64a2eb4c65ae49d4e1520ea994c2 | c0f54de52a8cc63b8478b053085847fd6100a4a1 | refs/heads/master | 2020-12-19T22:09:40.222000 | 2020-03-17T03:07:30 | 2020-03-17T03:07:30 | 235,867,246 | 1 | 0 | null | false | 2020-02-05T17:45:44 | 2020-01-23T19:13:02 | 2020-02-05T17:44:51 | 2020-02-05T17:45:21 | 1 | 0 | 0 | 1 | Java | false | false | package ca.nait.bsebagabo1.simplewidget;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.ComponentName;
import android.content.Context;
import android.widget.RemoteViews;
public class SimpleWidgetProvider extends AppWidgetProvider
{
@Override
publi... | UTF-8 | Java | 749 | java | SimpleWidgetProvider.java | Java | [] | null | [] | package ca.nait.bsebagabo1.simplewidget;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.ComponentName;
import android.content.Context;
import android.widget.RemoteViews;
public class SimpleWidgetProvider extends AppWidgetProvider
{
@Override
publi... | 749 | 0.773031 | 0.769025 | 20 | 36.450001 | 30.284443 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.7 | false | false | 12 |
cbc4f328fe59f46d70ba0aeac816715daa0f65f9 | 12,180,527,312,199 | 0092a31717141f2c2a09206601dabaae332eb8c3 | /src/com/company/barBossHouse/TableOrderManager.java | bdef912c78109b80f0f8107c4980de641e9c6714 | [] | no_license | Xpesh/lb3 | https://github.com/Xpesh/lb3 | 0f87f1183ed7cabebe116dd428638e474eff6a4c | 0773434dad74dc9bf6a5a1c6d8c1fc1b7faf994d | refs/heads/master | 2018-09-30T08:41:58.439000 | 2018-06-18T06:46:54 | 2018-06-18T06:46:54 | 123,789,829 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.company.barBossHouse;
import java.time.LocalDateTime;
import java.util.*;
import java.util.function.Predicate;
public class TableOrderManager implements OrdersManager, List<Order> {
private Order[] orders;
public TableOrderManager(int amountDesk) throws NegativeSizeException {
if (amount... | UTF-8 | Java | 12,555 | java | TableOrderManager.java | Java | [] | null | [] | package com.company.barBossHouse;
import java.time.LocalDateTime;
import java.util.*;
import java.util.function.Predicate;
public class TableOrderManager implements OrdersManager, List<Order> {
private Order[] orders;
public TableOrderManager(int amountDesk) throws NegativeSizeException {
if (amount... | 12,555 | 0.490323 | 0.486738 | 491 | 24.572302 | 19.211767 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.389002 | false | false | 12 |
eab2bcf3d55fc876cd32ff3bf87341f22c6b8009 | 23,983,097,426,911 | ca030864a3a1c24be6b9d1802c2353da4ca0d441 | /classes6.dex_source_from_JADX/com/facebook/fbuploader/fbcommon/ResumableUploadPostMethod.java | 770ce7504fee6bbaf2c9dbe93ef301e8d73ea7b2 | [] | no_license | pxson001/facebook-app | https://github.com/pxson001/facebook-app | 87aa51e29195eeaae69adeb30219547f83a5b7b1 | 640630f078980f9818049625ebc42569c67c69f7 | refs/heads/master | 2020-04-07T20:36:45.758000 | 2018-03-07T09:04:57 | 2018-03-07T09:04:57 | 124,208,458 | 4 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.facebook.fbuploader.fbcommon;
import com.facebook.http.common.RequestIdempotency;
import com.facebook.http.protocol.ApiMethod;
import com.facebook.http.protocol.ApiRequest;
import com.facebook.http.protocol.ApiRequest.PostEntityType;
import com.facebook.http.protocol.ApiRequestBuilder;
import com.facebook.... | UTF-8 | Java | 2,004 | java | ResumableUploadPostMethod.java | Java | [] | null | [] | package com.facebook.fbuploader.fbcommon;
import com.facebook.http.common.RequestIdempotency;
import com.facebook.http.protocol.ApiMethod;
import com.facebook.http.protocol.ApiRequest;
import com.facebook.http.protocol.ApiRequest.PostEntityType;
import com.facebook.http.protocol.ApiRequestBuilder;
import com.facebook.... | 2,004 | 0.741018 | 0.723553 | 44 | 44.545456 | 28.112967 | 139 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.840909 | false | false | 12 |
0681f5534d0aa6401ef8352ccdc7d7ab193ebbab | 26,027,501,858,516 | 90afa11baba070d54a6ebeaaad965d64fdb439df | /src/m2/composant/InterfaceComp.java | a7efe153d1c1e06e233df25f229d183240f6cfd8 | [] | no_license | JeanChristopheGuerin/HADL | https://github.com/JeanChristopheGuerin/HADL | 973991cd5682b17d4bd9ad0cdda55d83b00731d1 | 194d573b08a3c512a12092ef3a6bf37dd4ddcc77 | refs/heads/master | 2021-01-19T21:18:46.404000 | 2016-11-28T16:07:43 | 2016-11-28T16:07:43 | 71,135,756 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package m2.composant;
public interface InterfaceComp {
public String getName();
public void setName(String s);
}
| UTF-8 | Java | 116 | java | InterfaceComp.java | Java | [] | null | [] | package m2.composant;
public interface InterfaceComp {
public String getName();
public void setName(String s);
}
| 116 | 0.767241 | 0.758621 | 6 | 18.333334 | 13.136041 | 32 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.833333 | false | false | 12 |
47abec9a63e1056f8a7733d1301e2be5b773aaee | 38,336,878,085,768 | 55ded5be6e97deecc222784b335fd2a8b937b179 | /Java_Applications/ChessGame/src/samp/Rook.java | d40b9df474bc82483b9cbadba3b0aecd7d75a84e | [] | no_license | SHareema12/Java | https://github.com/SHareema12/Java | d265440e93ef2d4fe6d259a6f631a957526db0c4 | f990504c3a57898ba3fd78842e69e2776f1c3aba | refs/heads/master | 2020-03-29T21:07:39.106000 | 2018-10-21T01:40:16 | 2018-10-21T01:40:16 | 139,207,358 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package samp;
import java.io.IOException;
import java.util.Objects;
/**
*/
public class Rook extends Piece {
public String color;
public boolean ePos;
public String name;
public boolean moved;
public int ID;
public Rook(String color, String name, int ID){
this.color = color;
... | UTF-8 | Java | 2,706 | java | Rook.java | Java | [] | null | [] | package samp;
import java.io.IOException;
import java.util.Objects;
/**
*/
public class Rook extends Piece {
public String color;
public boolean ePos;
public String name;
public boolean moved;
public int ID;
public Rook(String color, String name, int ID){
this.color = color;
... | 2,706 | 0.446046 | 0.424242 | 105 | 24.780952 | 19.774433 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.552381 | false | false | 12 |
dc8884c46b86606e83331143ba23e3e99020b43b | 35,227,321,767,448 | 7c54abbbd7e636460c8a2e3429231fff2ee9121a | /spring-boot/src/main/java/com/example/demo/util/Constants.java | 8a5ced1c3b9c47ca3683501d8b98adda77dd7173 | [] | no_license | 291122524/spring-boot | https://github.com/291122524/spring-boot | d83214b38d73c4d33580876b93776899e73ec8d4 | 1fabbf9344915f0133e0c89d62760c7613986085 | refs/heads/master | 2018-12-18T10:36:14.366000 | 2018-12-11T06:39:32 | 2018-12-11T06:39:32 | 139,659,629 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.demo.util;
/**
*
* @project: webframe-util
*
* @version: V1.0
*
* @author: 史延武
*
* @date: 2018年7月23日 下午2:36:06
*
* @class: webframe.util.Constants
*
* @description
* <p>
*
* </p>
*/
public interface Constants {
// 通用int型状态类型
public static final int INT_ST... | UTF-8 | Java | 1,724 | java | Constants.java | Java | [
{
"context": "rame-util\r\n *\r\n * @version: V1.0\r\n *\r\n * @author: 史延武\r\n *\r\n * @date: 2018年7月23日 下午2:36:06\t\r\n *\r\n * @cla",
"end": 114,
"score": 0.9998070597648621,
"start": 111,
"tag": "NAME",
"value": "史延武"
}
] | null | [] | package com.example.demo.util;
/**
*
* @project: webframe-util
*
* @version: V1.0
*
* @author: 史延武
*
* @date: 2018年7月23日 下午2:36:06
*
* @class: webframe.util.Constants
*
* @description
* <p>
*
* </p>
*/
public interface Constants {
// 通用int型状态类型
public static final int INT_ST... | 1,724 | 0.682299 | 0.665125 | 56 | 25.035715 | 28.619402 | 129 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.928571 | false | false | 12 |
b33497082f2120c567d5de0b5684d654546467c7 | 34,815,004,919,998 | d131e11e3c3b5416c7204e3e6d5de311cc5ec63b | /app/src/main/java/com/geobim/teamtask/util/api/CompanyAPI.java | 2daed3e746f5533affea7578e9dcc538b521dc69 | [] | no_license | JosephTF/TeamTask | https://github.com/JosephTF/TeamTask | 547e4f8b9b555c57f00a1add539d2c87cdfd2f8c | 3af7305a78677634a8163b09a903b128f6686852 | refs/heads/master | 2021-09-03T00:41:56.934000 | 2018-01-04T09:13:51 | 2018-01-04T09:13:51 | 111,651,254 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.geobim.teamtask.util.api;
/**
* 单位管理API
* Created by Joseph on 2017/11/30.
*/
public class CompanyAPI {
/**
* 获取地址:获取单位类型
* @return Url
*/
public static String getCompanyTypes(){
return WebAPI.getUrl()+"/sys/company/types";
}
/**
* 获取地址:获取单位列表(筛选、分页、排序)
... | UTF-8 | Java | 1,418 | java | CompanyAPI.java | Java | [
{
"context": "m.teamtask.util.api;\n\n/**\n * 单位管理API\n * Created by Joseph on 2017/11/30.\n */\n\npublic class CompanyAPI {\n ",
"end": 74,
"score": 0.782060980796814,
"start": 68,
"tag": "NAME",
"value": "Joseph"
}
] | null | [] | package com.geobim.teamtask.util.api;
/**
* 单位管理API
* Created by Joseph on 2017/11/30.
*/
public class CompanyAPI {
/**
* 获取地址:获取单位类型
* @return Url
*/
public static String getCompanyTypes(){
return WebAPI.getUrl()+"/sys/company/types";
}
/**
* 获取地址:获取单位列表(筛选、分页、排序)
... | 1,418 | 0.552419 | 0.545968 | 64 | 18.375 | 17.584173 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.125 | false | false | 12 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.