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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e86ec85ec69ceae9d125462b161fbb9f766b9194 | 28,836,410,456,780 | 08002882f8980242899ca9e5fb3c1ff02a1f184c | /src/com/blaszczyk/dominik/Server.java | 355410d8e5b775388b7b1b730a00392ab007f39b | [] | no_license | DominikBlaszczyk/Lets-talk-v1.0 | https://github.com/DominikBlaszczyk/Lets-talk-v1.0 | c2fa434bb1219ecc72c70c254b01c7fce1f51c91 | 6537d4c76b3347c1ae65a28d36e2d043c0b7d2d6 | refs/heads/master | 2020-04-15T13:53:18.671000 | 2019-01-08T21:29:08 | 2019-01-08T21:29:08 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.blaszczyk.dominik;
import javax.swing.*;
import java.io.*;
import java.net.*;
public class Server extends Window {
static ServerSocket server_socket;
static Socket socket;
public Server() {
this.textArea1.append("Hello in Let's Talk!\nWaiting for a client...\n");
try {
... | UTF-8 | Java | 1,845 | java | Server.java | Java | [] | null | [] | package com.blaszczyk.dominik;
import javax.swing.*;
import java.io.*;
import java.net.*;
public class Server extends Window {
static ServerSocket server_socket;
static Socket socket;
public Server() {
this.textArea1.append("Hello in Let's Talk!\nWaiting for a client...\n");
try {
... | 1,845 | 0.462331 | 0.456369 | 55 | 32.50909 | 31.460146 | 185 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.472727 | false | false | 7 |
297f90d321b694d098564d51550725943421aa71 | 24,137,716,235,257 | 98f96951c127c4da4619e102538519cc47425360 | /program_topic_java/src/sword_offer/JZ54_3.java | e4b05701f413b8e9b6927949264f665915b4c997 | [] | no_license | xidianlina/off_inter | https://github.com/xidianlina/off_inter | e117cf2ba90d5e5f0074374d3fe810b7ba890e39 | 56d4d7350588f81bc9720d941bf33cb44c796230 | refs/heads/master | 2023-07-16T09:22:25.496000 | 2021-08-29T12:12:28 | 2021-08-29T12:12:28 | 340,666,571 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package sword_offer;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* 题目描述
* 请实现一个函数用来找出字符流中第一个只出现一次的字符。例如,当从字符流中只读出前两个字符"go"时,
* 第一个只出现一次的字符是"g"。当从该字符流中读出前六个字符“google"时,第一个只出现一次的字符是"l"。
* 返回值描述:
* 如果当前字符流没有存在出现一次的字符,返回#字符。
*/
public class JZ54_3 {
HashMap<Character, Int... | UTF-8 | Java | 968 | java | JZ54_3.java | Java | [] | null | [] | package sword_offer;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* 题目描述
* 请实现一个函数用来找出字符流中第一个只出现一次的字符。例如,当从字符流中只读出前两个字符"go"时,
* 第一个只出现一次的字符是"g"。当从该字符流中读出前六个字符“google"时,第一个只出现一次的字符是"l"。
* 返回值描述:
* 如果当前字符流没有存在出现一次的字符,返回#字符。
*/
public class JZ54_3 {
HashMap<Character, Int... | 968 | 0.560773 | 0.552486 | 33 | 20.939394 | 17.288881 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.363636 | false | false | 7 |
4bf3c7717776fb0c563f40dbdbe41cc1d3ba522e | 5,033,701,706,197 | 86d8e7f6d9379c42acbfe0f521dca799319e93e6 | /p2p/src/hac_p2p/P2P.java | 7803579561c88d2a697e109c123fdc2d882f1aa7 | [] | no_license | jwMaxwell/HAC-protocol | https://github.com/jwMaxwell/HAC-protocol | e946d8171dce5a92aad5b30472e53c78ff1a3287 | 9417f640fd024b43b4ee7e190219bdd5c8a87a4b | refs/heads/main | 2023-03-25T12:54:44.436000 | 2021-03-22T03:51:37 | 2021-03-22T03:51:37 | 345,777,728 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* @author Cameron Krueger
*
* P2P implementation of the notify and update functionality of a basic HAC
* protocol
*/
package hac_p2p;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.*;
import java.util.ArrayList;
import java.util.Scanner;
import java.ut... | UTF-8 | Java | 10,774 | java | P2P.java | Java | [
{
"context": "/**\n * @author Cameron Krueger\n * \n * P2P implementation of the notify and updat",
"end": 30,
"score": 0.9998782277107239,
"start": 15,
"tag": "NAME",
"value": "Cameron Krueger"
}
] | null | [] | /**
* @author <NAME>
*
* P2P implementation of the notify and update functionality of a basic HAC
* protocol
*/
package hac_p2p;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.*;
import java.util.ArrayList;
import java.util.Scanner;
import java.util.Random... | 10,765 | 0.644143 | 0.637182 | 378 | 27.502645 | 23.682226 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.18254 | false | false | 7 |
fbd7ec8e029d24f96a6e29c2ac75c45e00f339c5 | 4,440,996,218,882 | da0c7138f80906e0af4be9da71b6a010f8007b84 | /family_order/src/soa/com/asiainfo/veris/crm/order/soa/person/busi/hytuserchangetrade/order/buildrequest/BuildHYTUserChangeRequestData.java | 73c02d0dd209aa799176508c05aa9c4e04081459 | [] | no_license | bellmit/origin | https://github.com/bellmit/origin | 9d0e392cefc0f0c975ee042f2a7a93e3415ba7e6 | 9309074f033a53ba58144085cd044a660911ddb5 | refs/heads/master | 2022-12-02T16:08:42.301000 | 2020-08-21T05:34:24 | 2020-08-21T05:34:24 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.asiainfo.veris.crm.order.soa.person.busi.hytuserchangetrade.order.buildrequest;
import com.ailk.common.data.IData;
import com.ailk.org.apache.commons.lang3.StringUtils;
import com.asiainfo.veris.crm.order.soa.frame.bof.builder.IBuilder;
import com.asiainfo.veris.crm.order.soa.frame.bof.builder.impl.BaseB... | UTF-8 | Java | 1,542 | java | BuildHYTUserChangeRequestData.java | Java | [] | null | [] | package com.asiainfo.veris.crm.order.soa.person.busi.hytuserchangetrade.order.buildrequest;
import com.ailk.common.data.IData;
import com.ailk.org.apache.commons.lang3.StringUtils;
import com.asiainfo.veris.crm.order.soa.frame.bof.builder.IBuilder;
import com.asiainfo.veris.crm.order.soa.frame.bof.builder.impl.BaseB... | 1,542 | 0.830091 | 0.825551 | 34 | 44.35294 | 42.359028 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.176471 | false | false | 7 |
c5b55478b331436b824593514fcf288d61a22f9b | 12,962,211,332,817 | c37b577b4f457b621191683f3cd22e26e7d18977 | /.svn/pristine/3a/3a95fbd4f70699acb162dadc31c9b07fb8c14db0.svn-base | b88e36c0416eeaea59afe1b1e4f4394dfb88c36a | [
"Apache-2.0"
] | permissive | OscarGuo777/quoteoperation | https://github.com/OscarGuo777/quoteoperation | dd8077856e86a7c561a2f71ce1c78cc8adabddd9 | cc78cf9d26bdc103149923ab3ad311a17e0b8c6b | refs/heads/master | 2020-03-27T08:18:31.566000 | 2018-08-27T03:17:12 | 2018-08-27T03:17:12 | 146,242,723 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jz.quoteoperation.user.bo;
import com.jz.quoteoperation.role.bo.RoleInfoBO;
import java.io.Serializable;
import java.util.List;
public class UserInfoBO implements Serializable {
//serialVersionUID = -4808890421695804291, local class serialVersionUID = -4871521950035993223
private static final lon... | UTF-8 | Java | 1,957 | 3a95fbd4f70699acb162dadc31c9b07fb8c14db0.svn-base | Java | [] | null | [] | package com.jz.quoteoperation.user.bo;
import com.jz.quoteoperation.role.bo.RoleInfoBO;
import java.io.Serializable;
import java.util.List;
public class UserInfoBO implements Serializable {
//serialVersionUID = -4808890421695804291, local class serialVersionUID = -4871521950035993223
private static final lon... | 1,957 | 0.631068 | 0.601942 | 101 | 18.376238 | 18.767916 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.326733 | false | false | 7 | |
861f35f998f7c3fa7e72076fbc26842ffa9d4201 | 27,264,452,443,491 | 1b638187e962b39a7057d62f80c17536a25fb746 | /app/src/main/java/emiliano/emilianotest/words_history/storage/WordsDBRepository.java | 6d0be38bb6469d7e925885872296f7fc9aecdf82 | [] | no_license | emi-net21/feedsTest | https://github.com/emi-net21/feedsTest | 85a567e71072c2f33c4828e2f9e05889b9cd9ad9 | 241a8b0e25049cf41de3ecb61853f60fb47c46d5 | refs/heads/master | 2021-01-21T06:06:18.073000 | 2017-10-15T19:57:26 | 2017-10-15T19:57:26 | 101,938,176 | 0 | 0 | null | false | 2017-09-03T19:36:52 | 2017-08-30T23:31:22 | 2017-08-30T23:44:47 | 2017-09-03T19:36:52 | 149 | 0 | 0 | 0 | Java | null | null | package emiliano.emilianotest.words_history.storage;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import java.util.ArrayList;
import java.util.List;
public class WordsDBRepository {
private WordsDbHelper mDbH... | UTF-8 | Java | 2,254 | java | WordsDBRepository.java | Java | [] | null | [] | package emiliano.emilianotest.words_history.storage;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import java.util.ArrayList;
import java.util.List;
public class WordsDBRepository {
private WordsDbHelper mDbH... | 2,254 | 0.577196 | 0.577196 | 60 | 36.566666 | 30.505938 | 110 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.516667 | false | false | 7 |
3476c608af4632e5d759b4f32fce0972219fda4d | 25,563,645,386,034 | 78564afb8524e44a2f9d9b43d4c43cf304ea4c6d | /src/main/java/cn/hbis/erp/modular/system/controller/ExportController.java | ad423133d162e224713e7fbea5d72dd0cef96197 | [] | no_license | hbistcjiall/hbis_erp | https://github.com/hbistcjiall/hbis_erp | 7d8167c4d9b0c306331722606a23d952acda2ad8 | 5194e8e29f0a9902de181c99282bcc6c94afbc23 | refs/heads/master | 2022-02-06T10:48:23.532000 | 2019-07-22T08:32:50 | 2019-07-22T08:32:50 | 198,122,851 | 0 | 0 | null | true | 2019-07-22T01:12:06 | 2019-07-22T01:12:06 | 2019-06-28T07:20:29 | 2019-06-28T07:20:27 | 2,312 | 0 | 0 | 0 | null | false | false | /**
* FileName: ExportController
* Author: zhangb
* Date: 2019/5/8 8:42
*/
package cn.hbis.erp.modular.system.controller;
import cn.hbis.erp.core.util.DateUtil;
import cn.hbis.erp.core.util.ExcelNewUtil;
import cn.hbis.erp.modular.system.service.AccountabilityUnitManageService;
import cn.hbis.erp.modular.sys... | UTF-8 | Java | 43,538 | java | ExportController.java | Java | [
{
"context": "/**\n * FileName: ExportController\n * Author: zhangb\n * Date: 2019/5/8 8:42\n */\npackage cn.hbis.er",
"end": 53,
"score": 0.9994363784790039,
"start": 47,
"tag": "USERNAME",
"value": "zhangb"
}
] | null | [] | /**
* FileName: ExportController
* Author: zhangb
* Date: 2019/5/8 8:42
*/
package cn.hbis.erp.modular.system.controller;
import cn.hbis.erp.core.util.DateUtil;
import cn.hbis.erp.core.util.ExcelNewUtil;
import cn.hbis.erp.modular.system.service.AccountabilityUnitManageService;
import cn.hbis.erp.modular.sys... | 43,538 | 0.594743 | 0.57445 | 827 | 45.59734 | 28.625103 | 210 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.893591 | false | false | 7 |
e6fd0e03f9eca1dd683c6744e8e17c747f3b5dac | 7,705,171,391,817 | e7818707dea8bd46885d610b290d5f2829fde6cf | /HomeWork/hw6/Home.java | f4029884e58fc07b7135ff7223a285e689cd33c9 | [] | no_license | SarikaKshatriya/Object-Oriented-Business-Programming | https://github.com/SarikaKshatriya/Object-Oriented-Business-Programming | 734f1b8b5738de3851a0253a977633710dff22cd | d148873d4451b73d5dd359c71938771bc8d27a80 | refs/heads/master | 2020-03-26T18:36:00.738000 | 2018-08-18T13:18:48 | 2018-08-18T13:18:48 | 145,221,253 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package insy.java.hw6;
//Name: Sarika Kshatriya
//class to hold details for the name of the occupying family and the date they moved in
public class Home extends House
{
//declare variables
private String familyOccupying;
private OurDate dateMovedIn;
//default constructor
public Home()
{
super();... | UTF-8 | Java | 1,351 | java | Home.java | Java | [
{
"context": "package insy.java.hw6;\r\n//Name: Sarika Kshatriya\r\n\r\n//class to hold details for the name of the oc",
"end": 48,
"score": 0.9998754858970642,
"start": 32,
"tag": "NAME",
"value": "Sarika Kshatriya"
}
] | null | [] | package insy.java.hw6;
//Name: <NAME>
//class to hold details for the name of the occupying family and the date they moved in
public class Home extends House
{
//declare variables
private String familyOccupying;
private OurDate dateMovedIn;
//default constructor
public Home()
{
super();
setFam... | 1,341 | 0.695041 | 0.69282 | 59 | 20.898306 | 25.147493 | 122 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.694915 | false | false | 7 |
866c854142053318a9135ccafc5a9361fc3460e6 | 12,936,441,514,309 | 1ef3b2565b8128737a84cff52f9ebeb855076d08 | /App1/src/main/java/com/example/nikhar/mst04v10/PromptAnnotationObject.java | 25315efb6c0217ac71bde2324476be4ce62ace24 | [] | no_license | SangeMax97/MST04-code | https://github.com/SangeMax97/MST04-code | 9ada01ec6f9dbba64c24f218e3c95170500ebdd7 | 6a0e868495303744a076cff6cad7030b0ec9c199 | refs/heads/master | 2020-04-02T11:40:23.750000 | 2018-10-25T02:21:01 | 2018-10-25T02:21:01 | 154,400,899 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.nikhar.mst04v10;
/**
* Created by Nikhar on 2017/10/12.
*/
public class PromptAnnotationObject {
int wordNo;
String word;
Double start;
Double end;
String mfcc;
public void setMfcc(String mfcc) {
this.mfcc = mfcc;
}
public PromptAnnotati... | UTF-8 | Java | 629 | java | PromptAnnotationObject.java | Java | [
{
"context": "com.example.nikhar.mst04v10;\r\n\r\n/**\r\n * Created by Nikhar on 2017/10/12.\r\n */\r\n\r\npublic class PromptAnnotat",
"end": 65,
"score": 0.9992401599884033,
"start": 59,
"tag": "NAME",
"value": "Nikhar"
}
] | null | [] | package com.example.nikhar.mst04v10;
/**
* Created by Nikhar on 2017/10/12.
*/
public class PromptAnnotationObject {
int wordNo;
String word;
Double start;
Double end;
String mfcc;
public void setMfcc(String mfcc) {
this.mfcc = mfcc;
}
public PromptAnnotati... | 629 | 0.562798 | 0.54372 | 32 | 17.65625 | 17.641586 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 7 |
b70f70dbfffbcb2dfea011c3f8369d031a28d8e3 | 4,200,478,035,845 | 69a1ac06cfbbd128f04c40ce4c2d792e02ac2c5d | /nettoyer/ui/about/AboutViewModel.java | 645f911ae504e426dd52dc862c889395fbe76f4f | [] | no_license | creazer-v/NettoyerEwasteAppandroid | https://github.com/creazer-v/NettoyerEwasteAppandroid | eb671770366a3ff3f119106fbd5be4442e915e39 | 797434f0501b214b1fb3f1ba0b586dbb7c18c541 | refs/heads/main | 2023-02-13T07:09:32.590000 | 2021-01-14T14:44:54 | 2021-01-14T14:44:54 | 329,632,834 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.play.nettoyer.ui.about;
import androidx.lifecycle.ViewModel;
public class AboutViewModel extends ViewModel {
// TODO: Implement the ViewModel
}
| UTF-8 | Java | 169 | java | AboutViewModel.java | Java | [] | null | [] | package com.play.nettoyer.ui.about;
import androidx.lifecycle.ViewModel;
public class AboutViewModel extends ViewModel {
// TODO: Implement the ViewModel
}
| 169 | 0.751479 | 0.751479 | 7 | 22.142857 | 19.253412 | 47 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.285714 | false | false | 7 |
13c962a7d2319154c4121dd3f828ad8eea358776 | 901,943,143,745 | c30bdfb3bd04aba2fc692a1b3fec4cb81a8992a4 | /src/kontroler/PrzyciskiDniObsluga.java | d4a4b55a3435b009a6e8594243b950aaa182da05 | [] | no_license | nmateuszuk/Kalendarz | https://github.com/nmateuszuk/Kalendarz | 886bfe1ad01185e188d43cc3235c445906dd886d | 9c86ac33980ce7b9cb03ae6b3162851938c5d534 | refs/heads/master | 2020-09-14T21:29:53.631000 | 2017-06-18T19:44:21 | 2017-06-18T19:44:21 | 94,473,157 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package kontroler;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.sql.Date;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.List;
import javax.swing.BorderFactory;
import javax.swing.JTextArea;
import model.Zdarzenie;
import ... | UTF-8 | Java | 1,490 | java | PrzyciskiDniObsluga.java | Java | [
{
"context": "l.ggeasy.nazwa.pl:3306\", \"ggeasy_2\", \"ggeasy_2\", \"Haslo123\");\n\t\tOrganizer org = new Organizer(sqlPolacz);\n\t\t",
"end": 910,
"score": 0.9141956567764282,
"start": 902,
"tag": "USERNAME",
"value": "Haslo123"
}
] | null | [] | package kontroler;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.sql.Date;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.List;
import javax.swing.BorderFactory;
import javax.swing.JTextArea;
import model.Zdarzenie;
import ... | 1,490 | 0.715436 | 0.704698 | 56 | 25.607143 | 23.586224 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.071429 | false | false | 7 |
4c11a029ea448faf38cede3b9eb503334921d71a | 11,003,706,241,864 | e8295e003a8e9b18ffde2ba1dd1e2719cf300ff9 | /MasakKuy/app/src/main/java/com/example/projectmobile/SecondActivity.java | 12dad1eb8a89ec58ba98add91214c6a75313456c | [] | no_license | UMM-2020-mobile-programming/class-C | https://github.com/UMM-2020-mobile-programming/class-C | 1ef2045cb936edabf6ba23dc054a234f91071e9c | 8309f7f5c1cd4746074f593840423910dda08058 | refs/heads/master | 2022-10-10T06:03:46.872000 | 2020-06-13T16:42:27 | 2020-06-13T16:42:27 | 256,929,301 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.projectmobile;
import androidx.annotation.NonNull;
import androidx.appcompat.app.ActionBar;
import androidx.appcompat.app.AppCompatActivity;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentTransaction;
import android.content.Intent;
import android.os.Bundle;
import andr... | UTF-8 | Java | 2,744 | java | SecondActivity.java | Java | [
{
"context": " passwordedit =getIntent().getStringExtra(\"passwordedit\");\n emailedit =getIntent().getStringExtra(",
"end": 1274,
"score": 0.9476713538169861,
"start": 1262,
"tag": "PASSWORD",
"value": "passwordedit"
}
] | null | [] | package com.example.projectmobile;
import androidx.annotation.NonNull;
import androidx.appcompat.app.ActionBar;
import androidx.appcompat.app.AppCompatActivity;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentTransaction;
import android.content.Intent;
import android.os.Bundle;
import andr... | 2,742 | 0.677114 | 0.677114 | 80 | 33.287498 | 25.189877 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6 | false | false | 7 |
d6dbb412385c8487634cd2a297696e913f50f621 | 32,040,456,084,100 | 3bd8268b245e4021ce91972a33f99dfa2df630d4 | /app/src/main/java/co/bagga/simplemvp/Presentation/UserPresenter.java | 71cd0cfcf173f2f1bd4fd6e7272ccfcf54718d1a | [] | no_license | davin12x/MVP-Pattern | https://github.com/davin12x/MVP-Pattern | 3f980e76d383629a9735bd5258bf3365316bebc1 | 72b6b432f42de2f04c58eb17c20ff9b0b9766d71 | refs/heads/master | 2020-05-31T18:14:59.158000 | 2017-06-12T01:26:48 | 2017-06-12T01:26:48 | 94,043,328 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package co.bagga.simplemvp.Presentation;
import co.bagga.simplemvp.View.Activity.UserView;
/**
* Created by Lalit Bagga on 2017-06-11.
*/
public interface UserPresenter extends LifecyclePresenter {
void loadUserDetails();
void setView(UserView userView);
void saveUser();
}
| UTF-8 | Java | 291 | java | UserPresenter.java | Java | [
{
"context": "mplemvp.View.Activity.UserView;\n\n/**\n * Created by Lalit Bagga on 2017-06-11.\n */\n\npublic interface UserPresente",
"end": 122,
"score": 0.9998734593391418,
"start": 111,
"tag": "NAME",
"value": "Lalit Bagga"
}
] | null | [] | package co.bagga.simplemvp.Presentation;
import co.bagga.simplemvp.View.Activity.UserView;
/**
* Created by <NAME> on 2017-06-11.
*/
public interface UserPresenter extends LifecyclePresenter {
void loadUserDetails();
void setView(UserView userView);
void saveUser();
}
| 286 | 0.745704 | 0.718213 | 13 | 21.384615 | 20.719885 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.384615 | false | false | 7 |
04069116125b58e9caa178eff8af6ce052c88c3f | 25,821,343,454,125 | 1afc635778e3282268fede35c4f7ed159dc392b0 | /imeji_presentation/src/main/java/de/mpg/imeji/logic/util/MetadataFactory.java | 6f9c7a3a4cd76267a1cba325ad4222798a456e60 | [] | no_license | PEPGenEd/imeji | https://github.com/PEPGenEd/imeji | af8377d4301bc10e71535d12e26d894402888cb9 | b1db8fe1a37e69f3354383e71a17e7fb0adbde6a | refs/heads/master | 2021-01-15T22:52:18.977000 | 2012-08-08T15:31:31 | 2012-08-08T15:31:31 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* License: src/main/resources/license/escidoc.license
*/
package de.mpg.imeji.logic.util;
import de.mpg.imeji.logic.vo.Metadata;
import de.mpg.imeji.logic.vo.Statement;
import de.mpg.imeji.logic.vo.predefinedMetadata.ConePerson;
import de.mpg.imeji.logic.vo.predefinedMetadata.Date;
import de.mpg.imeji.logic.vo.p... | UTF-8 | Java | 4,544 | java | MetadataFactory.java | Java | [] | null | [] | /**
* License: src/main/resources/license/escidoc.license
*/
package de.mpg.imeji.logic.util;
import de.mpg.imeji.logic.vo.Metadata;
import de.mpg.imeji.logic.vo.Statement;
import de.mpg.imeji.logic.vo.predefinedMetadata.ConePerson;
import de.mpg.imeji.logic.vo.predefinedMetadata.Date;
import de.mpg.imeji.logic.vo.p... | 4,544 | 0.587368 | 0.584287 | 156 | 28.128204 | 24.85128 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.519231 | false | false | 7 |
e75d526639fea0780e5342e588f92cfbeeadf398 | 20,925,080,705,339 | 1428d2415972b37d131e6c2347f14a43576745a7 | /src/com/company/UserResume.java | 41a7286b713a0f4f19e6ac483a2701fd2a9c7e15 | [] | no_license | NargesMohammadYari/Tamrin4-2 | https://github.com/NargesMohammadYari/Tamrin4-2 | 6d22492b9070dde97db8a9a0a0203bf38bc36bff | 01e099e15e631f03e0d0efc263ad10989cbb9ca3 | refs/heads/master | 2020-12-23T04:18:35.085000 | 2020-01-29T17:07:35 | 2020-01-29T17:07:35 | 237,031,517 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.company;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
/**
* Created by narges nastran on 10/24/2019.
*/
public class UserResume {
private String Name;
private String ID;
private String Password;
@Override
public String toString(){
return "User... | UTF-8 | Java | 1,445 | java | UserResume.java | Java | [
{
"context": "List;\nimport java.util.Scanner;\n\n/**\n * Created by narges nastran on 10/24/2019.\n */\npublic class UserResume {\n ",
"end": 132,
"score": 0.9998741745948792,
"start": 118,
"tag": "NAME",
"value": "narges nastran"
},
{
"context": " setPassword(String password) {\... | null | [] | package com.company;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
/**
* Created by <NAME> on 10/24/2019.
*/
public class UserResume {
private String Name;
private String ID;
private String Password;
@Override
public String toString(){
return "UserResume{"... | 1,439 | 0.504498 | 0.487197 | 69 | 19.942028 | 14.150213 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.478261 | false | false | 7 |
dcce75d6a1a8c5763ea3fc7d0afd76c0adc22298 | 16,441,134,859,183 | 9bdcda0497461f9d6c7e72718adfa5eb77f4b21b | /src/main/java/com/altran/shoppingcart/service/impl/UserServiceImpl.java | 625c055b03a47fa6122256e245b5c47cd387d607 | [] | no_license | priscilaluz/shopping-cart-api | https://github.com/priscilaluz/shopping-cart-api | e79b9208cf0abeda370a6d208d7d6eaede3707c6 | 0e45136cce1237058bf01ce7265a1b2b283644b7 | refs/heads/master | 2020-09-12T02:39:21.074000 | 2019-11-17T16:24:55 | 2019-11-17T16:24:55 | 222,273,489 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.altran.shoppingcart.service.impl;
import com.altran.shoppingcart.document.ShoppingCart;
import com.altran.shoppingcart.document.User;
import com.altran.shoppingcart.dto.UserDTO;
import com.altran.shoppingcart.error.BusinessException;
import com.altran.shoppingcart.repository.ShoppingCartRepository;
import ... | UTF-8 | Java | 3,295 | java | UserServiceImpl.java | Java | [
{
"context": "rt org.modelmapper.ModelMapper;\n\n/**\n *\n * @author priscilaluz\n */\n@Service\npublic class UserServiceImpl impleme",
"end": 788,
"score": 0.9958145022392273,
"start": 777,
"tag": "USERNAME",
"value": "priscilaluz"
}
] | null | [] | package com.altran.shoppingcart.service.impl;
import com.altran.shoppingcart.document.ShoppingCart;
import com.altran.shoppingcart.document.User;
import com.altran.shoppingcart.dto.UserDTO;
import com.altran.shoppingcart.error.BusinessException;
import com.altran.shoppingcart.repository.ShoppingCartRepository;
import ... | 3,295 | 0.672534 | 0.672534 | 98 | 32.622448 | 25.062988 | 128 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.561224 | false | false | 7 |
b83bd43109bd98688f0c8bd7e9892d7ffe135cc4 | 15,410,342,713,321 | dac64dd8eb7cea341722073e9aa2d1e5cb259de8 | /micro-deps/micro-deps/src/main/java/com/ofg/infrastructure/discovery/IgnorePayloadInstanceSerializer.java | 6cb6daf813d240f4cfdc3c5ed3d939d07e4ccf86 | [
"Apache-2.0"
] | permissive | 4finance/micro-infra-spring | https://github.com/4finance/micro-infra-spring | af8d571d426a744ab95b11612d714ba1a35a0251 | 2479deec28bad8c9b05cbae92219041c34a39261 | refs/heads/master | 2021-01-17T02:11:36.424000 | 2020-02-21T14:29:16 | 2020-02-21T14:29:16 | 22,647,956 | 196 | 58 | Apache-2.0 | false | 2019-11-21T20:52:42 | 2014-08-05T15:07:55 | 2019-10-22T09:23:41 | 2018-04-16T08:27:11 | 3,187 | 205 | 53 | 53 | Groovy | false | false | package com.ofg.infrastructure.discovery;
import java.util.Map;
import org.apache.curator.x.discovery.ServiceInstance;
import org.apache.curator.x.discovery.details.JsonInstanceSerializer;
import org.codehaus.jackson.map.ObjectMapper;
import org.codehaus.jackson.type.JavaType;
public class IgnorePayloadInstanceSeria... | UTF-8 | Java | 1,455 | java | IgnorePayloadInstanceSerializer.java | Java | [] | null | [] | package com.ofg.infrastructure.discovery;
import java.util.Map;
import org.apache.curator.x.discovery.ServiceInstance;
import org.apache.curator.x.discovery.details.JsonInstanceSerializer;
import org.codehaus.jackson.map.ObjectMapper;
import org.codehaus.jackson.type.JavaType;
public class IgnorePayloadInstanceSeria... | 1,455 | 0.745704 | 0.745704 | 39 | 36.307693 | 31.464392 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.589744 | false | false | 7 |
285f0bbac93b1de1f24fc4ba28af2a268bd34bd4 | 15,410,342,710,713 | 3a323e90b4f84388b28e6adac3e8918ddd53cf07 | /Programa/ProjetoFinal/src/telas/Usuario_Cadastro.java | e7a9ebace02803704db558508d257a77b0f6cfe8 | [
"Apache-2.0"
] | permissive | vanjura/Gestao_De_Vendas_De_Passagens_Aereas | https://github.com/vanjura/Gestao_De_Vendas_De_Passagens_Aereas | 6b10df93c7c65cbf1bf5a0074f37b5257b690987 | aadb12a605858e264328a439bbf702117347c649 | refs/heads/master | 2020-03-17T21:33:20.444000 | 2018-06-29T00:13:23 | 2018-06-29T00:13:23 | 133,963,944 | 0 | 0 | Apache-2.0 | false | 2018-06-28T19:08:05 | 2018-05-18T14:17:59 | 2018-06-28T16:49:16 | 2018-06-28T19:08:05 | 13,596 | 0 | 0 | 0 | Java | false | 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 telas;
import connection.UsuarioCRUD;
import javax.swing.JOptionPane;
import passagens_aereas.Usuario;
/**
*
* @author luca... | UTF-8 | Java | 12,416 | java | Usuario_Cadastro.java | Java | [
{
"context": "mport passagens_aereas.Usuario;\n\n/**\n *\n * @author lucas_nuze0yo\n */\npublic class Usuario_Cadastro extends Default",
"end": 329,
"score": 0.9994022846221924,
"start": 316,
"tag": "USERNAME",
"value": "lucas_nuze0yo"
}
] | 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 telas;
import connection.UsuarioCRUD;
import javax.swing.JOptionPane;
import passagens_aereas.Usuario;
/**
*
* @author luca... | 12,416 | 0.615496 | 0.602435 | 355 | 33.938026 | 25.062775 | 131 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.628169 | false | false | 7 |
7022ff6c431533a52954d4aff8342c94ce9451d8 | 7,962,869,413,131 | 0857d623125833d66296316f99e017ebcfd844a9 | /src/main/java/application/converter/UserToUserDto.java | 5c5ce8dcd10025780641aec0ddcefe32a2ba74a1 | [] | no_license | arsnatenkov/Kursach2 | https://github.com/arsnatenkov/Kursach2 | ef1a1dbb7765a4713cde507cc353d1064f8f1511 | cf41dc9ee5e5abdba97ed7a6c96a1150010be954 | refs/heads/main | 2023-04-26T11:14:35.445000 | 2022-05-15T16:16:15 | 2022-05-15T16:16:15 | 357,698,978 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package application.converter;
import application.dto.UserDTO;
import application.entity.User;
import org.springframework.stereotype.Component;
/**
* Класс конвертации пользователя во внутреннюю структуру
*/
@Component
public class UserToUserDto {
/**
* Метод конвертации
* @param user Пользователь
... | UTF-8 | Java | 809 | java | UserToUserDto.java | Java | [
{
"context": "l(user.getEmail())\n .password(user.getPassword())\n .name(user.getName())\n ",
"end": 591,
"score": 0.5285089612007141,
"start": 580,
"tag": "PASSWORD",
"value": "getPassword"
}
] | null | [] | package application.converter;
import application.dto.UserDTO;
import application.entity.User;
import org.springframework.stereotype.Component;
/**
* Класс конвертации пользователя во внутреннюю структуру
*/
@Component
public class UserToUserDto {
/**
* Метод конвертации
* @param user Пользователь
... | 808 | 0.603086 | 0.603086 | 29 | 23.586206 | 17.293646 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.206897 | false | false | 7 |
73027d9b228060cade6e533a6a613cb92fcaf244 | 29,506,425,367,234 | 9ae438275af306d5598513241bde59b3da300807 | /src/org/sqlbroker/util/JdbcURLBuilder.java | 73072b184786dca48a2f909add27c7bdc8a835c1 | [
"Apache-2.0"
] | permissive | macvelli/SQLBroker | https://github.com/macvelli/SQLBroker | 96aa5505a9b6905fbf6fe8f5d59356760b5924ff | 79581da63512a1498eab70497e8fe2a35039f83b | refs/heads/master | 2020-12-30T11:03:36.427000 | 2020-04-28T04:07:50 | 2020-04-28T04:07:50 | 19,497,869 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.sqlbroker.util;
/**
* TODO Need a JDBC URL Builder that makes it super easy using enum values (i.e. jTDS), strings (schema name, port number, username, password, etc), and key-value pairs for optional config settings to build up a connection string
*
* @author esmith
* @version 1.0
*/
public class Jd... | UTF-8 | Java | 360 | java | JdbcURLBuilder.java | Java | [
{
"context": "ngs to build up a connection string\n * \n * @author esmith\n * @version 1.0\n */\npublic class JdbcURLBuilder {",
"end": 284,
"score": 0.9996252059936523,
"start": 278,
"tag": "USERNAME",
"value": "esmith"
}
] | null | [] | package org.sqlbroker.util;
/**
* TODO Need a JDBC URL Builder that makes it super easy using enum values (i.e. jTDS), strings (schema name, port number, username, password, etc), and key-value pairs for optional config settings to build up a connection string
*
* @author esmith
* @version 1.0
*/
public class Jd... | 360 | 0.730556 | 0.725 | 11 | 31.727272 | 63.251434 | 229 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.727273 | false | false | 7 |
6b2e16ed0222321d2554688505014cfba7872672 | 9,972,914,128,930 | 506e0c1482aae1f39fa08c11d050540bea3f8b5a | /src/test/java/com/company/Connection/GETConnectionTest.java | ae8948503858ba2d2a128f4b1b2ead6271ccaaf8 | [] | no_license | radeonxray/Bowling | https://github.com/radeonxray/Bowling | efb4c81b247050c29930c98bab9e225f20121cf0 | 77c7b3ada5ce407fa72bd052b0d7c1b224bc76ac | refs/heads/master | 2023-04-26T07:03:20.282000 | 2020-08-09T14:23:03 | 2020-08-09T14:23:03 | 262,848,792 | 0 | 0 | null | false | 2023-04-14T17:43:32 | 2020-05-10T18:20:18 | 2020-08-09T14:23:07 | 2023-04-14T17:43:32 | 5,259 | 0 | 0 | 1 | Java | false | false | package com.company.Connection;
import org.junit.jupiter.api.Test;
import java.io.IOException;
import static org.junit.jupiter.api.Assertions.*;
class GETConnectionTest {
/**
* Testing Skat Backend
* Simple test to show that the GET-method returns a string with content, and is not empty or null
... | UTF-8 | Java | 1,111 | java | GETConnectionTest.java | Java | [] | null | [] | package com.company.Connection;
import org.junit.jupiter.api.Test;
import java.io.IOException;
import static org.junit.jupiter.api.Assertions.*;
class GETConnectionTest {
/**
* Testing Skat Backend
* Simple test to show that the GET-method returns a string with content, and is not empty or null
... | 1,111 | 0.69577 | 0.69577 | 34 | 31.705883 | 31.282892 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.411765 | false | false | 7 |
240440374c191db9a28393c866566b7a21edaaad | 33,749,853,074,728 | ff27196ffddc9937a74215daa24da0af0e398a65 | /repository/api/src/main/java/org/outerj/daisy/repository/query/PredicateExpression.java | 126ea75ab521411ece5c6b5e62fd1e44435c2f64 | [
"Apache-2.0"
] | permissive | stevekaeser/daisycms | https://github.com/stevekaeser/daisycms | ac3a9cc7e6f2c0d46c8938f01eba63ea41569eaa | e772652c98742dbdb5268a9516a6ae210b9b4348 | refs/heads/master | 2023-03-08T10:14:43.600000 | 2022-03-16T16:42:29 | 2022-03-16T16:42:29 | 250,640,483 | 0 | 3 | Apache-2.0 | false | 2023-02-22T00:15:26 | 2020-03-27T20:32:37 | 2022-03-16T16:42:42 | 2023-02-22T00:15:22 | 8,180 | 0 | 2 | 45 | Java | false | false | /*
* Copyright 2004 Outerthought bvba and Schaubroeck nv
*
* 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 app... | UTF-8 | Java | 2,708 | java | PredicateExpression.java | Java | [
{
"context": "/*\n * Copyright 2004 Outerthought bvba and Schaubroeck nv\n *\n * Licensed under the Apache License, Versi",
"end": 54,
"score": 0.9117489457130432,
"start": 43,
"tag": "NAME",
"value": "Schaubroeck"
}
] | null | [] | /*
* Copyright 2004 Outerthought bvba and Schaubroeck nv
*
* 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 app... | 2,708 | 0.748523 | 0.745569 | 59 | 44.898304 | 41.217361 | 164 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.644068 | false | false | 5 |
97039b24845f83aeac3874cbf99e806e8c2ebf51 | 37,142,877,209,466 | 0f8b77255a8d7e1ccbbd00818d8ae4360883cf5d | /app/src/main/java/org/payio/wallet/mvp/login/RegisterActivity.java | b1c900cbfb9b696c577393c6baa008637e6e93f5 | [] | no_license | hunglv88/pullpay-wallet-android | https://github.com/hunglv88/pullpay-wallet-android | 0c4fc42719ced5af5d4d9246fc4e0b37ded0fc18 | 9ca804e92918723a30cef9c65ecaa1dcc7078103 | refs/heads/master | 2022-03-03T23:05:14.709000 | 2019-10-29T09:39:48 | 2019-10-29T09:39:48 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.payio.wallet.mvp.login;
import android.app.Activity;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AlertDialog;
import android.text.Editable;
import android.text.TextUtils;
import android.text.TextWatcher;
import android.view.... | UTF-8 | Java | 11,945 | java | RegisterActivity.java | Java | [
{
"context": ").toString().trim();\n String password = mPassword.getText().toString().trim();\n String c",
"end": 5862,
"score": 0.5369684100151062,
"start": 5853,
"tag": "PASSWORD",
"value": "mPassword"
}
] | null | [] | package org.payio.wallet.mvp.login;
import android.app.Activity;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AlertDialog;
import android.text.Editable;
import android.text.TextUtils;
import android.text.TextWatcher;
import android.view.... | 11,946 | 0.602146 | 0.600637 | 312 | 37.233974 | 28.091877 | 127 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.583333 | false | false | 5 |
b6d9c30b548d30ce69c0a0d2f454efcb07efecfd | 35,588,099,065,884 | b4a4782f06b3bc6bf3ef1d7885dc194707eab833 | /src/main/java/com/lookfood/backend/repositories/ProfessionalRepository.java | b2cd4ec92d103e25f442889a100b128621c37620 | [] | no_license | francocapra/lookfood-backend | https://github.com/francocapra/lookfood-backend | d326f2333a2e46ad91cace40859c582f8f65f417 | ecaaa3abe9986371e273a83074f2ad52701c41ec | refs/heads/master | 2020-03-12T19:04:39.586000 | 2018-07-02T20:18:56 | 2018-07-02T20:18:56 | 130,240,777 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lookfood.backend.repositories;
import java.util.List;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import org.springframework.ster... | UTF-8 | Java | 898 | java | ProfessionalRepository.java | Java | [] | null | [] | package com.lookfood.backend.repositories;
import java.util.List;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import org.springframework.ster... | 898 | 0.793987 | 0.793987 | 25 | 34.919998 | 25.876507 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.04 | false | false | 5 |
f15858eb39654c3abd1bcb42ed34b778e3962b7a | 36,653,250,947,594 | 38650f9fdb30c5be33b0e618a93988ad4d67f47f | /src/main/java/com/org/services/TaskService.java | cb1d6346e7148b1f9efb8208ea4a3251a3419d1e | [] | no_license | sachin-budni/task-manager | https://github.com/sachin-budni/task-manager | 1f1ce629e09fb6e95d93408364c335aa00cba495 | a3640136e66d0f625df6fb7efac0487cff30fde6 | refs/heads/master | 2023-01-23T01:32:43.750000 | 2020-11-08T16:33:52 | 2020-11-08T16:33:52 | 311,062,693 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.org.services;
import java.util.Date;
import java.util.HashMap;
import java.util.Optional;
import java.util.Random;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.org.models.Task;
import com.org.models.User;
import com.org.repositor... | UTF-8 | Java | 1,358 | java | TaskService.java | Java | [] | null | [] | package com.org.services;
import java.util.Date;
import java.util.HashMap;
import java.util.Optional;
import java.util.Random;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.org.models.Task;
import com.org.models.User;
import com.org.repositor... | 1,358 | 0.724595 | 0.720177 | 57 | 22.824562 | 20.894156 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.649123 | false | false | 5 |
dd55d5d884bedcb124e8edb8c2ee1b1a148773e9 | 38,774,964,802,847 | 2fae74fc980fe3f76ad11c2634031baeef39f616 | /src/main/java/com/alivc/vod/service/VodVideoService.java | ac9745f4f028f3359195e8fe191df46932a91956 | [] | no_license | bellmit/jellyvodserver | https://github.com/bellmit/jellyvodserver | 81f7a67f54e6060534b7198c538ba41e681ca95c | 78ca136643c0eaf1156b147b064df7ee401e35e1 | refs/heads/master | 2023-04-11T15:07:44.734000 | 2020-03-20T12:41:25 | 2020-03-20T12:41:25 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.alivc.vod.service;
import java.util.List;
import com.alivc.vod.pojo.PersonageVideo;
import com.alivc.vod.pojo.RecommendVideo;
import com.alivc.vod.pojo.TranscodeRequest;
import com.alivc.vod.pojo.VideoFile;
import com.alivc.vod.pojo.VideoSnapshot;
import com.alivc.vod.pojo.VideosParam;
/**
... | UTF-8 | Java | 4,043 | java | VodVideoService.java | Java | [
{
"context": "> \r\n * Date: 2018年11月10日 <br/> \r\n * @author tz \r\n * @version v0.0.1\r\n * @since JDK 1.8 \r\n *",
"end": 485,
"score": 0.8090243935585022,
"start": 483,
"tag": "USERNAME",
"value": "tz"
}
] | null | [] | package com.alivc.vod.service;
import java.util.List;
import com.alivc.vod.pojo.PersonageVideo;
import com.alivc.vod.pojo.RecommendVideo;
import com.alivc.vod.pojo.TranscodeRequest;
import com.alivc.vod.pojo.VideoFile;
import com.alivc.vod.pojo.VideoSnapshot;
import com.alivc.vod.pojo.VideosParam;
/**
... | 4,043 | 0.628782 | 0.625238 | 158 | 21.221519 | 20.036556 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.822785 | false | false | 5 |
8ac59f77b998655df6e1f4d9dba241946e9f1d93 | 35,553,739,326,336 | 80571b2b98fea5a19cd4a423f37f0d72290a7943 | /src/test/java/com/dnd/example/springboot/web/HelloControllerTest.java | d4b3ab35e5271a88f4705eb33ee0103d2152350a | [] | no_license | thenewseason/dnd-springboot-ex | https://github.com/thenewseason/dnd-springboot-ex | f0c1bd9c8f74c59315df7d52e4d7d4498e556e74 | f4a0cb392edfb8fc17ddc2f786e0c4ad2a142993 | refs/heads/master | 2023-04-02T23:29:43.354000 | 2021-04-18T23:11:40 | 2021-04-18T23:11:40 | 352,112,617 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dnd.example.springboot.web;
import com.dnd.example.springboot.config.auth.SecurityConfig;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
import org.springframew... | UTF-8 | Java | 2,751 | java | HelloControllerTest.java | Java | [
{
"context": "eturn() throws Exception {\n String name = \"TEST\";\n int amount = 5000;\n\n mvc.perform",
"end": 2063,
"score": 0.6342583894729614,
"start": 2059,
"tag": "NAME",
"value": "TEST"
}
] | null | [] | package com.dnd.example.springboot.web;
import com.dnd.example.springboot.config.auth.SecurityConfig;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
import org.springframew... | 2,751 | 0.694364 | 0.691074 | 66 | 35.833332 | 25.288387 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.439394 | false | false | 5 |
5795f38a623ed6838510f1558112ca69f200730e | 36,292,473,677,865 | 061b8e0a8a93480ca1ab6ff4c911008b5069a045 | /src/Weapon.java | 2300f6d914119e4dd02c787a09652d24b0551a0b | [] | no_license | RolandMunsil/TextRPG | https://github.com/RolandMunsil/TextRPG | 62bf5db03a8fcc81e875af30ad347b6870139c03 | 4da473a12b3ddc5c60250f94308ac600667e7c8c | refs/heads/master | 2020-05-24T13:26:55.934000 | 2015-02-21T00:59:16 | 2015-02-21T00:59:16 | 29,715,867 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class Weapon extends Item {
public int baseDamage; //base damage
//public boolean enchanted; //if it is enchanted or not
//public double exp; //allows the weapon to go up a level? maybe include
public String name; //what the weapon is called (if any);
//public int size; //How big it is, bigge... | UTF-8 | Java | 1,045 | java | Weapon.java | Java | [] | null | [] | public class Weapon extends Item {
public int baseDamage; //base damage
//public boolean enchanted; //if it is enchanted or not
//public double exp; //allows the weapon to go up a level? maybe include
public String name; //what the weapon is called (if any);
//public int size; //How big it is, bigge... | 1,045 | 0.552153 | 0.545455 | 31 | 32.741936 | 23.497381 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.83871 | false | false | 5 |
fab55757601c1c6ac7307fbc201b1ed62c6c6edc | 36,584,531,444,439 | 56b7ca394915586c83faf41b37c2684a7716ad19 | /task_viewP/src/com/example/database/DataBaseHelper.java | 445ec183a2ff901068af3cd92291ef98021f0546 | [] | no_license | zhjali/com.study_android.repository | https://github.com/zhjali/com.study_android.repository | a45bb3665d1bf320a52552644917b44f02d3e1ca | d2278ca6d29f18251d59168852b8b3762ff2f7d6 | refs/heads/master | 2021-01-19T06:08:33.408000 | 2014-05-22T11:32:55 | 2014-05-22T11:32:55 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.database;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
import com.example.database.TeaProviderMetaData.TableCollectMetaData;
import com.example.database.TeaProviderMetaData.TableMaindataMeta... | GB18030 | Java | 2,365 | java | DataBaseHelper.java | Java | [] | null | [] | package com.example.database;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
import com.example.database.TeaProviderMetaData.TableCollectMetaData;
import com.example.database.TeaProviderMetaData.TableMaindataMeta... | 2,365 | 0.719642 | 0.715807 | 71 | 32.056339 | 23.140652 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.577465 | false | false | 5 |
1bb78e1d6539e23bdc022429a6853217bb24f00e | 37,744,172,600,825 | f97ca2649c11c34af7836a77fa1a421851a9504b | /src/main/java/houji/bean/UserInfo.java | 5aa6a626757650e29e39b18df57c032ca7c8cc10 | [] | no_license | zplll/houji | https://github.com/zplll/houji | 7508e308276b233e01b1f79873588d8136a4d5bb | 7e90e7fb7e3ce505c7c2bf1df7b4cd2b9a514abc | refs/heads/master | 2021-01-17T14:19:20.860000 | 2017-07-18T07:24:49 | 2017-07-18T07:24:49 | 84,083,825 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package houji.bean;
import java.io.Serializable;
/**
* Created by Administrator on 2017/3/6.
*/
public class UserInfo implements Serializable {
private int userId;
private String name;
private String password;
private String email;
private String roleId;
private String createTime;
@Ov... | UTF-8 | Java | 1,871 | java | UserInfo.java | Java | [
{
"context": "assword(String password) {\n this.password = password;\n }\n\n public String getEmail() {\n re",
"end": 1583,
"score": 0.8603990077972412,
"start": 1575,
"tag": "PASSWORD",
"value": "password"
}
] | null | [] | package houji.bean;
import java.io.Serializable;
/**
* Created by Administrator on 2017/3/6.
*/
public class UserInfo implements Serializable {
private int userId;
private String name;
private String password;
private String email;
private String roleId;
private String createTime;
@Ov... | 1,873 | 0.543025 | 0.539818 | 87 | 20.505747 | 16.390265 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.402299 | false | false | 5 |
732a953fde9a0662569b438bf7d86e4cfe6d0bfe | 32,744,830,709,290 | bc4bd1c2b5259285522965acb388bf9f080429b7 | /app/src/main/java/com/bm/csxy/view/interfaces/ProductView.java | 1a4063646520b72839d9a9103e1b38fbb45c5ecd | [] | no_license | tmyzh13/csxy | https://github.com/tmyzh13/csxy | 7771b5b5da82860f174eb8c5b048f926791b4351 | c3842a83920b88677c55a2c046b24e849ef71b35 | refs/heads/master | 2020-03-09T06:45:20.969000 | 2018-04-08T14:20:20 | 2018-04-08T14:27:24 | 128,647,410 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.bm.csxy.view.interfaces;
import com.bm.csxy.model.bean.TravelBean;
import com.corelibs.base.BasePaginationView;
import java.util.List;
/**
* Created by john on 2017/11/7.
*/
public interface ProductView extends BasePaginationView {
void renderProducts(boolean reload, List<TravelBean> list);
}
| UTF-8 | Java | 317 | java | ProductView.java | Java | [
{
"context": "onView;\n\nimport java.util.List;\n\n/**\n * Created by john on 2017/11/7.\n */\n\npublic interface ProductView e",
"end": 172,
"score": 0.9978725910186768,
"start": 168,
"tag": "USERNAME",
"value": "john"
}
] | null | [] | package com.bm.csxy.view.interfaces;
import com.bm.csxy.model.bean.TravelBean;
import com.corelibs.base.BasePaginationView;
import java.util.List;
/**
* Created by john on 2017/11/7.
*/
public interface ProductView extends BasePaginationView {
void renderProducts(boolean reload, List<TravelBean> list);
}
| 317 | 0.766562 | 0.744479 | 15 | 20.133333 | 22.476259 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 5 |
f17e2aed7a0ea5f64065398eedf0a95379f5d749 | 35,175,782,194,481 | 6367141e0d2b16012d400dd151147f11bc6e0c8d | /src/main/java/pl/echoweb/dao/ITemplateDAO.java | b80c0fae6879be13020db7218048e3f146f548fb | [] | no_license | rafik991/XmlGenerator | https://github.com/rafik991/XmlGenerator | 342442cfb176e68777e9fa0ff3018d92e9aee91d | 9a44a998e4bbb42e3aa0df4ea99ab91dd1b3fccd | refs/heads/master | 2021-01-19T08:11:37.731000 | 2019-12-09T17:39:48 | 2019-12-09T17:39:48 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pl.echoweb.dao;
import java.util.List;
import pl.echoweb.model.entity.TemplateEntity;
/**
* Interfejs osblugujacy {@link TemplateEntity}.
*
* @author rafal.machnik
*
*/
public interface ITemplateDAO {
/**
* Metoda pobiera szablon po Id.
*
* @param id
* @return encje pobranego szablonu.
*/... | UTF-8 | Java | 1,107 | java | ITemplateDAO.java | Java | [
{
"context": "osblugujacy {@link TemplateEntity}.\n * \n * @author rafal.machnik\n * \n */\npublic interface ITemplateDAO {\n\n",
"end": 170,
"score": 0.7686709761619568,
"start": 165,
"tag": "NAME",
"value": "rafal"
},
{
"context": "ujacy {@link TemplateEntity}.\n * \n * @author raf... | null | [] | package pl.echoweb.dao;
import java.util.List;
import pl.echoweb.model.entity.TemplateEntity;
/**
* Interfejs osblugujacy {@link TemplateEntity}.
*
* @author rafal.machnik
*
*/
public interface ITemplateDAO {
/**
* Metoda pobiera szablon po Id.
*
* @param id
* @return encje pobranego szablonu.
*/... | 1,107 | 0.65673 | 0.65673 | 69 | 15.043478 | 16.224363 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.826087 | false | false | 5 |
0fd6bd66196d34573d228e79b01a8c0cdc5ebbdc | 12,120,397,761,869 | 53e1aeaa7e58538aca5e5b0996fbf21ae4564bfd | /code/java/DevelopmentLevel2/FindFourElementsSumabequalsSumcd.java | 1dfc06968e897feecf774b8093461ffadd35e962 | [] | no_license | ronik18/ds_coding | https://github.com/ronik18/ds_coding | 7acb7193b6563bcd6aeeb6bdf84059bfaf91e9b1 | 4fc6370e493ae65c902d8a5811f0ee7e1c984003 | refs/heads/master | 2018-03-23T18:30:59.075000 | 2016-12-23T13:28:44 | 2016-12-23T13:28:44 | 66,442,540 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
import java.util.HashMap;
/**
* Created by ronik.basak on 01/09/16.
*/
public class FindFourElementsSumabequalsSumcd {
public class pair {
int first, second;
pair(int f, int s) {
first = f;
second = s;
}
}
public boolean findPairs(int arr[]){
... | UTF-8 | Java | 1,755 | java | FindFourElementsSumabequalsSumcd.java | Java | [
{
"context": "\n\nimport java.util.HashMap;\n\n/**\n * Created by ronik.basak on 01/09/16.\n */\npublic class FindFourEle",
"end": 50,
"score": 0.5753549337387085,
"start": 47,
"tag": "NAME",
"value": "ron"
},
{
"context": "\n\nimport java.util.HashMap;\n\n/**\n * Created by ronik.ba... | null | [] |
import java.util.HashMap;
/**
* Created by ronik.basak on 01/09/16.
*/
public class FindFourElementsSumabequalsSumcd {
public class pair {
int first, second;
pair(int f, int s) {
first = f;
second = s;
}
}
public boolean findPairs(int arr[]){
... | 1,755 | 0.45584 | 0.447293 | 58 | 29.224138 | 26.490755 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.603448 | false | false | 5 |
ae403b56f74458c8f71d8972fd734dd7400c6552 | 33,990,371,221,592 | 7b733d7be68f0fa4df79359b57e814f5253fc72d | /system/src/main/java/com/percussion/data/PSFilterResultSetWrapper.java | 331e97230cacb343a8cb2456f1927421c35fc157 | [
"LicenseRef-scancode-dco-1.1",
"Apache-2.0",
"OFL-1.1",
"LGPL-2.0-or-later"
] | permissive | percussion/percussioncms | https://github.com/percussion/percussioncms | 318ac0ef62dce12eb96acf65fc658775d15d95ad | c8527de53c626097d589dc28dba4a4b5d6e4dd2b | refs/heads/development | 2023-08-31T14:34:09.593000 | 2023-08-31T14:04:23 | 2023-08-31T14:04:23 | 331,373,975 | 18 | 6 | Apache-2.0 | false | 2023-09-14T21:29:25 | 2021-01-20T17:03:38 | 2023-09-14T01:11:27 | 2023-09-14T21:29:24 | 174,353 | 10 | 5 | 60 | Java | false | false | /*
* Copyright 1999-2023 Percussion Software, Inc.
*
* 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 applicabl... | UTF-8 | Java | 95,794 | java | PSFilterResultSetWrapper.java | Java | [] | null | [] | /*
* Copyright 1999-2023 Percussion Software, Inc.
*
* 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 applicabl... | 95,794 | 0.667119 | 0.663852 | 2,766 | 33.632683 | 30.499201 | 98 | false | false | 0 | 0 | 0 | 0 | 74 | 0.004583 | 0.265365 | false | false | 5 |
54e8e4b9784945ef9fd04a4b53644bcba88dc0f5 | 28,939,489,643,033 | be82e4bc1dbb2fc90b50fbb02817c8864e0ab72d | /Attestation2/Attestation2/DZ/myproject/src/main/java/com/dibirov/dibirov/model/TestList.java | d42ec6a67f7f3d431dbf592938a891e29eeccfcf | [] | no_license | Zeoforex/JAVA-task | https://github.com/Zeoforex/JAVA-task | e5c6f95cc106a12a6c983a40900da6aef8f643ad | 35add7ac5be5506afa927d27ce76eb550395630b | refs/heads/main | 2023-01-30T20:17:06.875000 | 2020-12-11T18:51:20 | 2020-12-11T18:51:20 | 313,061,559 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dibirov.dibirov.model;
public class TestList {
public <StudentAnswer> void setTeacher(User<StudentAnswer> studentAnswerUser) {
}
}
| UTF-8 | Java | 153 | java | TestList.java | Java | [] | null | [] | package com.dibirov.dibirov.model;
public class TestList {
public <StudentAnswer> void setTeacher(User<StudentAnswer> studentAnswerUser) {
}
}
| 153 | 0.751634 | 0.751634 | 7 | 20.857143 | 28.170038 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.142857 | false | false | 5 |
41235853ab1c20dc73372d510c8d604cba100a46 | 22,763,326,708,122 | 4d72ea4636e1ff8d4310875ebe85fd81e5bf102a | /eureka-client/user-service-consumer/src/main/java/org/user/service/consumer/service/UserProxy.java | 90c08de92c495da9bb172d3f701d349f2b28997b | [] | no_license | 2015Abel/spring-cloud-demo | https://github.com/2015Abel/spring-cloud-demo | c15ddaa1ff1fbac68207a4437c58467448317138 | 5c002c1f589690bb8420d80130693d29618d81bd | refs/heads/master | 2021-08-08T02:24:15.295000 | 2017-11-09T10:23:49 | 2017-11-09T10:23:49 | 108,345,787 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
*
*/
package org.user.service.consumer.service;
import java.util.Collection;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
import org.user.api.entity.User;
import org.user.api.service.... | UTF-8 | Java | 1,207 | java | UserProxy.java | Java | [
{
"context": "ame: UserProxy\r\n * @Description: TODO\r\n * @author: liuzijian\r\n * @date: 2017年10月31日 下午11:13:26\r\n */\r\n@Service(",
"end": 411,
"score": 0.9994926452636719,
"start": 402,
"tag": "USERNAME",
"value": "liuzijian"
}
] | null | [] | /**
*
*/
package org.user.service.consumer.service;
import java.util.Collection;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
import org.user.api.entity.User;
import org.user.api.service.... | 1,207 | 0.670638 | 0.658723 | 43 | 25.325581 | 28.670317 | 130 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.767442 | false | false | 5 |
c52e39f539a1293617a6e6e4c4a7b8db6496157c | 7,645,041,815,861 | eedb7880a05c3076e43eba08547de4cc09e56ed0 | /classes.dex_source_from_JADX/in/juspay/widget/qrscanner/com/google/zxing/C1284e.java | add1e351c24c82f810d43e877268b9da23f3243c | [] | no_license | abhilash42-zz/CN_Lab | https://github.com/abhilash42-zz/CN_Lab | a7fb89c73c50dfe5f5299e9129cf9ab41eec6b34 | 6d3424cdb29d146fb62650f8585d78f35da2b0a5 | refs/heads/master | 2021-07-25T03:26:54.380000 | 2017-11-06T06:36:06 | 2017-11-06T06:36:06 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package in.juspay.widget.qrscanner.com.google.zxing;
public enum C1284e {
ERROR_CORRECTION,
CHARACTER_SET,
MIN_SIZE,
MAX_SIZE,
MARGIN,
QR_VERSION
}
| UTF-8 | Java | 173 | java | C1284e.java | Java | [] | null | [] | package in.juspay.widget.qrscanner.com.google.zxing;
public enum C1284e {
ERROR_CORRECTION,
CHARACTER_SET,
MIN_SIZE,
MAX_SIZE,
MARGIN,
QR_VERSION
}
| 173 | 0.67052 | 0.647399 | 10 | 16.299999 | 13.667846 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6 | false | false | 5 |
522480e4137ba8c957406cc076dbb14e4654c4db | 8,263,517,146,872 | d2343b56b57ed49114f9a9acb75773881d2b24a4 | /panamaFastenersCore/src/main/java/org/jllinares/api/panama/fasteners/commons/beans/BaseBean.java | 0ee80f9821bf490062c782a4ed36a5328ca43fa3 | [] | no_license | ServicesVenezuela/panamaFasteners | https://github.com/ServicesVenezuela/panamaFasteners | e0542cc87154d372d06e4bb31160cf926f6af0c8 | 14f88f35ea7bd039d28017beccae1c99c401074d | refs/heads/master | 2021-01-10T15:36:52.188000 | 2015-11-21T18:58:00 | 2015-11-21T18:58:00 | 43,912,039 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
*
*/
package org.jllinares.api.panama.fasteners.commons.beans;
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
public class BaseBean {
public String toString() {
return ReflectionToStringBuilder.toString(this, ToStringStyle... | UTF-8 | Java | 346 | java | BaseBean.java | Java | [] | null | [] | /*
*
*/
package org.jllinares.api.panama.fasteners.commons.beans;
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
public class BaseBean {
public String toString() {
return ReflectionToStringBuilder.toString(this, ToStringStyle... | 346 | 0.763006 | 0.757225 | 14 | 22.857143 | 28.304106 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.642857 | false | false | 5 |
f5882e3fc4d32f3ad4e0270a562fc7b237689504 | 27,891,517,667,476 | a22943360e9f09ec666df65f59a5d23b3ff3be45 | /spi-demo/src/main/java/com/sankuai/spi/cartlist/impl/query/QueryItemFromSourceB.java | 599a9ccd75bc79fddebd50dcde5fb24bd40beaaa | [] | no_license | Noxsara/spi-engine | https://github.com/Noxsara/spi-engine | 9897b65923cabe751bd3237ead895e6f440e2af0 | 44bad075a3be0a1774628babf3913163137f7224 | refs/heads/master | 2018-11-22T00:31:03.175000 | 2018-03-30T01:51:49 | 2018-03-30T01:51:49 | 127,104,841 | 3 | 3 | null | false | 2018-08-20T08:38:25 | 2018-03-28T07:56:42 | 2018-08-17T08:51:20 | 2018-08-20T08:37:43 | 25 | 4 | 2 | 1 | Java | false | null | package com.sankuai.spi.cartlist.impl.query;
import com.google.common.collect.Lists;
import com.sankuai.spi.SpiConfig;
import com.sankuai.spi.annotation.BizSpi;
import com.sankuai.spi.cartlist.CartListSDTO;
import com.sankuai.spi.cartlist.domain.Item;
import com.sankuai.spi.cartlist.SpiContext;
import com.sankuai.spi.... | UTF-8 | Java | 1,555 | java | QueryItemFromSourceB.java | Java | [] | null | [] | package com.sankuai.spi.cartlist.impl.query;
import com.google.common.collect.Lists;
import com.sankuai.spi.SpiConfig;
import com.sankuai.spi.annotation.BizSpi;
import com.sankuai.spi.cartlist.CartListSDTO;
import com.sankuai.spi.cartlist.domain.Item;
import com.sankuai.spi.cartlist.SpiContext;
import com.sankuai.spi.... | 1,555 | 0.682958 | 0.677814 | 54 | 27.796297 | 22.620361 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.518519 | false | false | 5 |
bac060ef515dd917883751abffe21272b347cfaa | 24,678,882,142,012 | d7faa78c00694cc31c96a8389ec912b9b69b4cd1 | /library/src/main/java/io/palaima/eventscalendar/renderer/DefaultEventRenderer.java | ab738acb1c3bdf134a16e6c09df81a01e7d4f80e | [
"Apache-2.0"
] | permissive | palaima/EventCalendar | https://github.com/palaima/EventCalendar | d9cf467eabf50e5b467df7706d67de457aceccdb | a1c358f733f906476c0b0a9b9c0545f85d81c5ce | refs/heads/master | 2021-03-19T13:57:28.825000 | 2016-08-25T15:41:50 | 2016-08-25T15:41:50 | 53,725,759 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package io.palaima.eventscalendar.renderer;
import android.graphics.Canvas;
import android.graphics.RectF;
import android.support.annotation.NonNull;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;
import io.palaima.eventscalendar.Config;
import io.palaima.eventscalendar.DateHelper;
imp... | UTF-8 | Java | 6,255 | java | DefaultEventRenderer.java | Java | [] | null | [] | package io.palaima.eventscalendar.renderer;
import android.graphics.Canvas;
import android.graphics.RectF;
import android.support.annotation.NonNull;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;
import io.palaima.eventscalendar.Config;
import io.palaima.eventscalendar.DateHelper;
imp... | 6,255 | 0.644444 | 0.639968 | 171 | 35.578949 | 33.671936 | 196 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.71345 | false | false | 5 |
1c583c292757d6fe76960d65f8380d56930e51a8 | 24,678,882,139,102 | 970ea36e6d1422d10987fa0c5ba30b843ec20d40 | /TourAgency-server/src/main/java/com/oliinyk/practice/touragencyserver/controller/ServiceTypeController.java | b591b3a457c6e3bb99fd2fbbb9b896fbf7d7a2aa | [] | no_license | TarasOil/TourAgency | https://github.com/TarasOil/TourAgency | af60a3811b5639adfbf9548ce22161cbdc6a1986 | f50f342026f9fe3b9d554cdb22bdb042ba03dc3a | refs/heads/master | 2023-05-10T12:56:47.717000 | 2021-06-08T13:15:53 | 2021-06-08T13:15:53 | 372,591,268 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.oliinyk.practice.touragencyserver.controller;
import com.oliinyk.practice.touragencyserver.entity.ServiceType;
import com.oliinyk.practice.touragencyserver.repository.ServiceTypeRepository;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframewor... | UTF-8 | Java | 2,260 | java | ServiceTypeController.java | Java | [] | null | [] | package com.oliinyk.practice.touragencyserver.controller;
import com.oliinyk.practice.touragencyserver.entity.ServiceType;
import com.oliinyk.practice.touragencyserver.repository.ServiceTypeRepository;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframewor... | 2,260 | 0.737168 | 0.737168 | 58 | 37.982758 | 31.748739 | 128 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.465517 | false | false | 5 |
3d72e3b486a129b8ab19e87952a1e0cae2603b70 | 3,839,700,808,798 | 32a9d0e2491046483dea4b44b16b60f4f0018f6c | /src/com/hopsun/tppas/entity/TeconomicIndicatorB.java | 48d120f57b5b830bb6d96bd9d8f86386bbabf339 | [] | no_license | liyl10/tppass | https://github.com/liyl10/tppass | b37b03d4ddd60ec853f8f166c42ade9509c6f260 | 441c5bf1a5d6aeb8e1b9c2c218fbf03331129842 | refs/heads/master | 2016-09-10T13:39:23.117000 | 2013-12-11T03:10:31 | 2013-12-11T03:10:31 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hopsun.tppas.entity;
import java.sql.Timestamp;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
im... | UTF-8 | Java | 10,157 | java | TeconomicIndicatorB.java | Java | [] | null | [] | package com.hopsun.tppas.entity;
import java.sql.Timestamp;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
im... | 10,157 | 0.721178 | 0.698238 | 380 | 24.734211 | 20.746475 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.610526 | false | false | 5 |
3fe8471ae2cdf04072cb6558a4897948431a1124 | 31,817,117,795,593 | 78cd308135a3260fcaf0ca46da01ba743f51f557 | /Tp1IngSoft/src/view/CrearSalida.java | e8968b1753c7759bd1809f856aa39cea419b6a56 | [] | no_license | josdan23/Tp1_IngSoft | https://github.com/josdan23/Tp1_IngSoft | 329024fd75b86ec92a479a59dd6b1f55858402b8 | 0f57d33a6491967528c00ebd75f76aec1ae07528 | refs/heads/master | 2020-06-30T21:49:04.755000 | 2016-09-02T03:11:44 | 2016-09-02T03:11:44 | 66,985,030 | 2 | 0 | null | false | 2016-09-02T03:11:45 | 2016-08-30T23:27:19 | 2016-09-02T02:56:29 | 2016-09-02T03:11:44 | 120 | 1 | 0 | 0 | Java | null | null | package view;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import javax.swing.DefaultComboBoxModel;
import javax.swing.JOptionPane;
import model.Paquete;
import model.Unidad;
import presenter.Agencia;
/**
*
* @author josdan
*/
public class CrearSalida exte... | UTF-8 | Java | 14,544 | java | CrearSalida.java | Java | [
{
"context": "idad;\nimport presenter.Agencia;\n\n/**\n *\n * @author josdan\n */\npublic class CrearSalida extends javax.swing.",
"end": 286,
"score": 0.9658809304237366,
"start": 280,
"tag": "USERNAME",
"value": "josdan"
}
] | null | [] | package view;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import javax.swing.DefaultComboBoxModel;
import javax.swing.JOptionPane;
import model.Paquete;
import model.Unidad;
import presenter.Agencia;
/**
*
* @author josdan
*/
public class CrearSalida exte... | 14,544 | 0.662954 | 0.655322 | 301 | 47.318935 | 36.965343 | 167 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.707641 | false | false | 5 |
93c9b185d2ebd2fed148beb7f4cc00cce65eb0dc | 21,182,778,734,279 | 6706ed9df7816d5014599e1fb27afeea486e9bb4 | /source/src/cn/krait/nabo/module/markdown/utils/EditorHandler.java | 69151bbb9fef2fd76279cca669455b0e80cf5577 | [
"Apache-2.0"
] | permissive | 54itfan/nabo | https://github.com/54itfan/nabo | ee5f2d8fd1cf26b4fc27d0fa94bb3c070bff0dc5 | 044b00c22d2777fc960143c3d731cd5ea5841e4f | refs/heads/master | 2022-12-07T23:42:04.552000 | 2020-09-02T11:16:24 | 2020-09-02T11:16:24 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.krait.nabo.module.markdown.utils;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.net.Uri;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.EditText;
import android.widget.... | UTF-8 | Java | 8,028 | java | EditorHandler.java | Java | [
{
"context": "ort ren.qinc.edit.PerformEdit;\n\n\n/**\n * Created by zk on 2017/9/9.\n */\n\npublic class EditorHandler impl",
"end": 600,
"score": 0.9956730008125305,
"start": 598,
"tag": "USERNAME",
"value": "zk"
}
] | null | [] | package cn.krait.nabo.module.markdown.utils;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.net.Uri;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.EditText;
import android.widget.... | 8,028 | 0.607018 | 0.603397 | 245 | 31.685715 | 26.71977 | 118 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.579592 | false | false | 5 |
04449056860aba485480ddccfd231109aae3cdc5 | 21,371,757,269,708 | f68ac83386bca359c02293ebe0152b0d844f0801 | /src/main/java/demo/designpatterns/observer/jdk/Watcher.java | a8f4444764d078246abf12ebc9434d0338628797 | [] | no_license | quexinyan/study-demo | https://github.com/quexinyan/study-demo | cddb7e73cd43ca65cef33f35b047ee1c5f0554e8 | 978bcf5e1e5c9b6b4729ea72357f62f68996190e | refs/heads/master | 2020-03-18T23:26:59.925000 | 2019-05-11T12:15:56 | 2019-05-11T12:15:56 | 135,403,509 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package demo.designpatterns.observer.jdk;
import java.util.Observable;
import java.util.Observer;
/**
*
* @ClassName: Watcher
* @Description: 观察者
* @author gaox
* @date 2018年5月18日 上午11:18:58
*/
public class Watcher implements Observer{
// 将观察者对象添加到被观察者对象中
public Watcher(Observable o) {
o... | UTF-8 | Java | 556 | java | Watcher.java | Java | [
{
"context": "sName: Watcher \r\n* @Description: 观察者 \r\n* @author gaox \r\n* @date 2018年5月18日 上午11:18:58\r\n */\r\npublic cla",
"end": 177,
"score": 0.9996318817138672,
"start": 173,
"tag": "USERNAME",
"value": "gaox"
}
] | null | [] | package demo.designpatterns.observer.jdk;
import java.util.Observable;
import java.util.Observer;
/**
*
* @ClassName: Watcher
* @Description: 观察者
* @author gaox
* @date 2018年5月18日 上午11:18:58
*/
public class Watcher implements Observer{
// 将观察者对象添加到被观察者对象中
public Watcher(Observable o) {
o... | 556 | 0.670124 | 0.643154 | 25 | 17.280001 | 17.273148 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.68 | false | false | 5 |
e8fbd73429cc98c02e3cec47903b19acace39a62 | 30,562,987,287,489 | 66688451cb0da2f28d47edb12e7bda9fd871aee5 | /src/test/java/io/github/kjens93/conversations/conversations/Conversations_IT.java | 9ced33bf734058df2063f6b0624828e54b5c1653 | [
"Apache-2.0"
] | permissive | Kjens93/conversations-java | https://github.com/Kjens93/conversations-java | 79dbe9f038a82a10af7276f73b8f84880ec71f10 | d5ef7593db7b0de4a355aff7baede02348e98359 | refs/heads/master | 2020-06-23T20:25:17.111000 | 2016-12-17T00:00:45 | 2016-12-17T00:00:45 | 74,637,012 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package io.github.kjens93.conversations.conversations;
import io.github.kjens93.conversations.TestMessage;
import io.github.kjens93.conversations.communications.Endpoint;
import io.github.kjens93.conversations.messages.Message;
import org.junit.Before;
import org.junit.Test;
import java.util.concurrent.TimeUnit;
impo... | UTF-8 | Java | 2,229 | java | Conversations_IT.java | Java | [
{
"context": "package io.github.kjens93.conversations.conversations;\n\nimport io.github.kj",
"end": 25,
"score": 0.9995140433311462,
"start": 18,
"tag": "USERNAME",
"value": "kjens93"
},
{
"context": "93.conversations.conversations;\n\nimport io.github.kjens93.conversations.TestMess... | null | [] | package io.github.kjens93.conversations.conversations;
import io.github.kjens93.conversations.TestMessage;
import io.github.kjens93.conversations.communications.Endpoint;
import io.github.kjens93.conversations.messages.Message;
import org.junit.Before;
import org.junit.Test;
import java.util.concurrent.TimeUnit;
impo... | 2,229 | 0.637506 | 0.621804 | 80 | 26.862499 | 24.809647 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5375 | false | false | 5 |
317f8a17e8a3398a17c64c45d8bc22941a76296a | 30,562,987,284,006 | 1dd62bc48474e7eed17be48c64adc40f8517981e | /homework-9/src/main/java/com/ishmuradov/otus/homework9/App.java | dbaa91cd73be0fd96f93fe81952fd438faa5735c | [] | no_license | evilchewits/otus-java-2017-10-ishmuradov | https://github.com/evilchewits/otus-java-2017-10-ishmuradov | a0a5be06c112f56ba130e04cabcfda66681e3cd6 | aab5c6ff4900a0ee68444cc75f65b9b1185a3a92 | refs/heads/master | 2020-03-30T08:17:10.179000 | 2018-09-30T20:16:25 | 2018-09-30T20:16:25 | 106,963,863 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ishmuradov.otus.homework9;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.Arrays;
import com.ishmuradov.otus.homework9.db.DbHelper;
import com.ishmuradov.otus.homework9.model.User;
import com.ishmuradov.otus.homework9.services.UserService;
public class App {
public static v... | UTF-8 | Java | 1,041 | java | App.java | Java | [
{
"context": "areTables(Connection) method.\n new User(\"Boris\", 32 /*, true */),\n new User(\"Eugeny\", 2",
"end": 818,
"score": 0.999830961227417,
"start": 813,
"tag": "NAME",
"value": "Boris"
},
{
"context": "ser(\"Boris\", 32 /*, true */),\n new User(\... | null | [] | package com.ishmuradov.otus.homework9;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.Arrays;
import com.ishmuradov.otus.homework9.db.DbHelper;
import com.ishmuradov.otus.homework9.model.User;
import com.ishmuradov.otus.homework9.services.UserService;
public class App {
public static v... | 1,041 | 0.681076 | 0.67147 | 32 | 31.53125 | 21.568184 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5625 | false | false | 5 |
1d0e45237ffa6d16a76cb7b7f20a2f86e6fe6d5b | 25,580,825,215,522 | e81f0a4137c2802a087f9ab25c98037434a538ec | /JavaWeb/LogisticsSystem/src/qztc/sxl/service/WaybillService.java | a5f1ab6e6258b4e13dace13855977d8f0dc2c09a | [] | no_license | xl-sun/GraduationProject | https://github.com/xl-sun/GraduationProject | c3284a1b6789d5651b6955210e323f4402b5eaa9 | 50d08f93fc7a3ac0c8503fffe48afb306be39fb2 | refs/heads/master | 2020-05-17T10:17:26.504000 | 2019-04-26T15:43:48 | 2019-04-26T15:43:48 | 183,652,588 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package qztc.sxl.service;
public interface WaybillService {
public String getQRcodeById(String id);
public boolean checkSheetId(String id);
}
| UTF-8 | Java | 146 | java | WaybillService.java | Java | [] | null | [] | package qztc.sxl.service;
public interface WaybillService {
public String getQRcodeById(String id);
public boolean checkSheetId(String id);
}
| 146 | 0.794521 | 0.794521 | 7 | 19.857143 | 17.545277 | 40 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.714286 | false | false | 5 |
24eb6a9fe35368920db1a931d151e5c388cca020 | 21,852,793,612,103 | 7af3437c3ef721e740e6164b90130092bd105933 | /app/src/main/java/com/example/memsl/myapplication/test.java | 2aec37c8e093ce1bbf2f955e7043dcb7874f67b1 | [] | no_license | yenwei100606/MyApplication10 | https://github.com/yenwei100606/MyApplication10 | 9467d4b3215bd8fa4f59cda56538f5fedecad41f | bf0561359cc65333a7597ca023ab48bfdb337cbe | refs/heads/master | 2020-06-24T09:24:12.965000 | 2019-07-26T01:56:02 | 2019-07-26T01:56:02 | 198,927,954 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.memsl.myapplication;
abstract class test {
}
| UTF-8 | Java | 66 | java | test.java | Java | [] | null | [] | package com.example.memsl.myapplication;
abstract class test {
}
| 66 | 0.787879 | 0.787879 | 4 | 15.5 | 16.439281 | 40 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.25 | false | false | 5 |
4f9087279c61391d623acd05d110be694a99fbd0 | 21,706,764,724,783 | aeada8c0b5bdcc7bbde9f06a9a1f1e3e1ce78fe8 | /src/main/java/com/zhenxuan/tradeapi/service/impl/UserServiceImpl.java | 69786610ddd1ed6424a892accc5039f5d314dbbc | [] | no_license | juanxiuxu/zhenxuan | https://github.com/juanxiuxu/zhenxuan | d7debaa1ccea52d964decab76603ed265abe7c52 | 4772b0ab33bfcffc8f97728daccc1c05edc2a93e | refs/heads/master | 2020-04-05T10:11:00.032000 | 2018-11-09T02:18:14 | 2018-11-09T02:18:14 | 154,793,265 | 0 | 0 | null | true | 2018-10-26T07:17:10 | 2018-10-26T07:17:10 | 2018-10-26T06:23:31 | 2018-10-26T06:23:30 | 111 | 0 | 0 | 0 | null | false | null | package com.zhenxuan.tradeapi.service.impl;
import com.zhenxuan.tradeapi.common.ZXException;
import com.zhenxuan.tradeapi.common.enums.ResultStatusCode;
import com.zhenxuan.tradeapi.domain.UserWXInfo;
import com.zhenxuan.tradeapi.dao.entity.ShopItem;
import com.zhenxuan.tradeapi.dao.entity.UserAuthEntity;
import com.z... | UTF-8 | Java | 11,135 | java | UserServiceImpl.java | Java | [] | null | [] | package com.zhenxuan.tradeapi.service.impl;
import com.zhenxuan.tradeapi.common.ZXException;
import com.zhenxuan.tradeapi.common.enums.ResultStatusCode;
import com.zhenxuan.tradeapi.domain.UserWXInfo;
import com.zhenxuan.tradeapi.dao.entity.ShopItem;
import com.zhenxuan.tradeapi.dao.entity.UserAuthEntity;
import com.z... | 11,135 | 0.688771 | 0.687312 | 285 | 37.466667 | 31.057781 | 185 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.607018 | false | false | 5 |
a1bb4ca92978ae34b006dd2e1737f4022414f118 | 26,998,164,435,062 | 395d1368168a0bb67d07c446a79625e4b2cc4f47 | /src/commandPattern/util/Dom4JDemo.java | d506a52ed15c1d06d6b4d4a53ba1341cc22fa32f | [] | no_license | Elliott6/DesignPattern | https://github.com/Elliott6/DesignPattern | bf601e650d55f6aa2069431f6fca70b8894d60fd | 3796cb25baf96584dbb25281e8afc228fa54f094 | refs/heads/master | 2020-03-18T04:14:49.055000 | 2018-06-14T06:11:26 | 2018-06-14T06:11:26 | 134,274,876 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package commandPattern.util;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;
import java.io.File;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* 读取XML配置文件
*
* @author Mr.H
* @version ... | UTF-8 | Java | 1,778 | java | Dom4JDemo.java | Java | [
{
"context": "ort java.util.Map;\n\n/**\n * 读取XML配置文件\n *\n * @author Mr.H\n * @version 1.0\n * @since <pre>六月 8, 2018</pre>",
"end": 305,
"score": 0.5301297903060913,
"start": 303,
"tag": "NAME",
"value": "Mr"
},
{
"context": " java.util.Map;\n\n/**\n * 读取XML配置文件\n *\n * @author Mr.... | null | [] | package commandPattern.util;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;
import java.io.File;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* 读取XML配置文件
*
* @author Mr.H
* @version ... | 1,778 | 0.609535 | 0.602724 | 54 | 31.629629 | 24.862061 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.648148 | false | false | 5 |
a48e5dc03d0d48df691c6b9fa49757b35127e4b2 | 2,817,498,563,400 | ef2d8c527a9706c2a05e7270ed3d5de153e413b1 | /tsne-core/src/main/java/com/jujutsu/tsne/barneshut/AtomicDouble.java | 99d07253347226a1ff96ba3de162ebe8439b9f81 | [] | no_license | automenta/tsnej | https://github.com/automenta/tsnej | 5479e2fa2c4d0f119b182cbb8d142ccc380513bf | 20ad79d8a6f0981e2ef05ede5ebb885fd735c5a1 | refs/heads/master | 2021-04-09T17:01:02.207000 | 2018-03-18T03:43:11 | 2018-03-18T03:43:11 | 125,689,414 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jujutsu.tsne.barneshut;
import java.util.concurrent.atomic.AtomicReference;
class AtomicDouble {
private final AtomicReference<Double> value = new AtomicReference<>(0.0);
double addAndGet(double delta) {
return value.updateAndGet((x)-> x+ delta);
// while (true) {
// doub... | UTF-8 | Java | 581 | java | AtomicDouble.java | Java | [] | null | [] | package com.jujutsu.tsne.barneshut;
import java.util.concurrent.atomic.AtomicReference;
class AtomicDouble {
private final AtomicReference<Double> value = new AtomicReference<>(0.0);
double addAndGet(double delta) {
return value.updateAndGet((x)-> x+ delta);
// while (true) {
// doub... | 581 | 0.607573 | 0.604131 | 20 | 28.1 | 22.60951 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 5 |
2d38c299c458bc11866517915766ad396a24ceac | 2,817,498,561,240 | 9e4aba2c1bec26fa41fecdbce6fe58ee379dde57 | /src/main/java/com/example/pay/configuration/activemq/ActivemqProperties.java | d4dceaff531e2673c654244c56412950cf5bcfba | [] | no_license | zdzjut/gmgyl-alipay | https://github.com/zdzjut/gmgyl-alipay | 78ba1d4441020706379caaa6b39d8217a0ae93ba | 7d9f914e46023ac41e5a90585ef6f00a2e9ffb6b | refs/heads/master | 2021-06-09T12:54:50.018000 | 2019-06-26T03:09:05 | 2019-06-26T03:09:05 | 174,962,004 | 0 | 0 | null | false | 2021-06-04T01:49:34 | 2019-03-11T08:59:00 | 2019-06-26T03:09:19 | 2021-06-04T01:49:33 | 43 | 0 | 0 | 1 | Java | false | false | package com.example.pay.configuration.activemq;
import org.springframework.boot.context.properties.ConfigurationProperties;
import javax.annotation.PostConstruct;
/**
* activemq的参数配置
*/
@ConfigurationProperties(prefix = "spring.activemq")
public class ActivemqProperties {
private String waizong;
private S... | UTF-8 | Java | 1,694 | java | ActivemqProperties.java | Java | [] | null | [] | package com.example.pay.configuration.activemq;
import org.springframework.boot.context.properties.ConfigurationProperties;
import javax.annotation.PostConstruct;
/**
* activemq的参数配置
*/
@ConfigurationProperties(prefix = "spring.activemq")
public class ActivemqProperties {
private String waizong;
private S... | 1,694 | 0.644893 | 0.644893 | 80 | 20.049999 | 17.658497 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3375 | false | false | 5 |
ad2831b9129b9a71b666bd9157099970c057a17e | 35,287,451,318,006 | f487532281c1c6a36a5c62a29744d8323584891b | /sdk/java/src/main/java/com/pulumi/azure/appservice/outputs/SourceControlGithubActionConfiguration.java | fc5761c92a1894c5e58bd4a2cf9bece8a9ef9dfe | [
"BSD-3-Clause",
"MPL-2.0",
"Apache-2.0"
] | permissive | pulumi/pulumi-azure | https://github.com/pulumi/pulumi-azure | a8f8f21c46c802aecf1397c737662ddcc438a2db | c16962e5c4f5810efec2806b8bb49d0da960d1ea | refs/heads/master | 2023-08-25T00:17:05.290000 | 2023-08-24T06:11:55 | 2023-08-24T06:11:55 | 103,183,737 | 129 | 57 | Apache-2.0 | false | 2023-09-13T05:44:10 | 2017-09-11T20:19:15 | 2023-08-09T05:39:20 | 2023-09-13T05:44:08 | 186,735 | 125 | 46 | 62 | Java | false | false | // *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azure.appservice.outputs;
import com.pulumi.azure.appservice.outputs.SourceControlGithubActionConfigurationCodeConfiguration;
import com.pulumi.azure.app... | UTF-8 | Java | 4,625 | java | SourceControlGithubActionConfiguration.java | Java | [] | null | [] | // *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azure.appservice.outputs;
import com.pulumi.azure.appservice.outputs.SourceControlGithubActionConfigurationCodeConfiguration;
import com.pulumi.azure.app... | 4,625 | 0.717622 | 0.717622 | 110 | 41.045456 | 36.450562 | 142 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.418182 | false | false | 5 |
762d6c2bf96e67b84be664c6dd02f9bad327c89c | 34,342,558,506,469 | 497c15af5abf8e3493c4238a07d07bbc3685e86a | /src/no/systema/tvinn/sad/nctsexport/controller/ajax/SadNctsExportAjaxHandlerController.java | 70e02e089e8341163b3ce21d7404228ee25535a4 | [] | no_license | SystemaAS/espedsgtvinnsad | https://github.com/SystemaAS/espedsgtvinnsad | 0d37b6a282793f88c2c08c3db0980b6bab5cdfd7 | 77812a19cb7319444b16a2033a9432c592f01abb | refs/heads/master | 2023-08-22T16:58:54.994000 | 2023-08-22T11:44:32 | 2023-08-22T11:44:32 | 128,168,457 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
*
*/
package no.systema.tvinn.sad.nctsexport.controller.ajax;
import java.util.*;
import org.slf4j.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.beans.factory.annotation.Required;
import org.springfra... | UTF-8 | Java | 19,462 | java | SadNctsExportAjaxHandlerController.java | Java | [
{
"context": "ction or other javascript alike... \n * \n * @author oscardelatorre\n * @date Feb 19, 2016\n * \n */\n@Controller\npublic ",
"end": 2732,
"score": 0.9978033304214478,
"start": 2718,
"tag": "USERNAME",
"value": "oscardelatorre"
},
{
"context": "\t//url params\n\t\t\t\t\t... | null | [] | /**
*
*/
package no.systema.tvinn.sad.nctsexport.controller.ajax;
import java.util.*;
import org.slf4j.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.beans.factory.annotation.Required;
import org.springfra... | 19,462 | 0.710616 | 0.70928 | 434 | 43.843319 | 40.979069 | 197 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.605991 | false | false | 5 |
0be58ecbc78c57f1b5b41295f4379ec3a230501c | 10,445,360,497,086 | b32fc4d8d4a786f8c73ea147f998edbe8f70b964 | /src/main/java/com/luandeptrai/toi/dto/PagedDTO.java | 234ad63173b2d919aa0adcf96666aaafc87ac754 | [] | no_license | luanldt/toi-funny-app | https://github.com/luanldt/toi-funny-app | aa51c5714c49036f79514f7fcad26c5b9b9bda21 | 6032bd70bafdfaf4694145d173fb3d92ac8caae0 | refs/heads/master | 2021-04-09T10:59:47.405000 | 2018-06-07T02:10:16 | 2018-06-07T02:10:16 | 125,542,008 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.luandeptrai.toi.dto;
import lombok.Data;
import java.util.List;
@Data
public class PagedDTO<T> {
private MetaDTO meta;
private List<T> elements;
public PagedDTO(MetaDTO meta, List<T> elements) {
this.meta = meta;
this.elements = elements;
}
}
| UTF-8 | Java | 275 | java | PagedDTO.java | Java | [] | null | [] | package com.luandeptrai.toi.dto;
import lombok.Data;
import java.util.List;
@Data
public class PagedDTO<T> {
private MetaDTO meta;
private List<T> elements;
public PagedDTO(MetaDTO meta, List<T> elements) {
this.meta = meta;
this.elements = elements;
}
}
| 275 | 0.701818 | 0.701818 | 16 | 16.1875 | 14.850163 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 5 |
bbcfd75ec8827da65ad544b2755632fe1106b0ce | 33,621,004,037,816 | 73df970bb7dac1422daa63c6da108ddfcf130d3f | /122.best-time-to-buy-and-sell-stock-ii.java | b27638acb72f8fe89520100cf60d9b838b4082d4 | [] | no_license | Cabbage-Cat/LeetCode-Solution | https://github.com/Cabbage-Cat/LeetCode-Solution | 650d2f0ec223f72faf86044c3edcdf8a4d76724e | 9e3f962799e977d4d034716f079afb66268de9b2 | refs/heads/master | 2022-07-17T20:40:26.273000 | 2020-04-07T13:25:48 | 2020-04-07T13:25:48 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* @lc app=leetcode id=122 lang=java
*
* [122] Best Time to Buy and Sell Stock II
*/
// @lc code=start
class Solution {
public int maxProfit(int[] prices) {
int profit = 0;
int slow = 0, fast = 1;
for (; fast < prices.length; fast++) {
if (prices[fast] > prices[fast - 1]) ... | UTF-8 | Java | 629 | java | 122.best-time-to-buy-and-sell-stock-ii.java | Java | [] | null | [] | /*
* @lc app=leetcode id=122 lang=java
*
* [122] Best Time to Buy and Sell Stock II
*/
// @lc code=start
class Solution {
public int maxProfit(int[] prices) {
int profit = 0;
int slow = 0, fast = 1;
for (; fast < prices.length; fast++) {
if (prices[fast] > prices[fast - 1]) ... | 629 | 0.483307 | 0.459459 | 24 | 25.166666 | 25.827419 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.416667 | false | false | 5 |
a28e71c0e5f3560f130114196a154282d79c27f6 | 23,622,320,196,298 | b88868344f6b249399747db5fe83cc174fc1d9e3 | /com.ibm.wala.util/src/com/ibm/wala/util/graph/impl/SlowSparseNumberedGraph.java | e6337723d9fd59dcbe25657864a816328f7aaf21 | [] | no_license | panagosg7/Android-NoSleep | https://github.com/panagosg7/Android-NoSleep | fdddfd5e641d70dce4869bdd87300f797d755b8a | 764326682e4f5aef1e4e3680fc959e0c081f8012 | refs/heads/master | 2016-09-06T03:13:41.681000 | 2014-12-02T22:33:35 | 2014-12-02T22:33:35 | 27,431,590 | 4 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*******************************************************************************
* Copyright (c) 2002 - 2006 IBM Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... | UTF-8 | Java | 2,881 | java | SlowSparseNumberedGraph.java | Java | [] | null | [] | /*******************************************************************************
* Copyright (c) 2002 - 2006 IBM Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is a... | 2,881 | 0.640403 | 0.634849 | 87 | 31.114943 | 30.433052 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.402299 | false | false | 5 |
18ca6776d78db8f0f2f58261aa007d2f32ee05e1 | 3,289,944,990,504 | f4fe7ed4fcd9a6b50d6592026dd0791598e545c9 | /src/main/java/it/gmarigi/jmedia/utility/Mp3FileIcon.java | fed74ba5d0f70e3a94af5f810f2048ce1da093ab | [] | no_license | hifly81/jmedia | https://github.com/hifly81/jmedia | 9eeaf4aa975f306f30792109f25d2bfa2ec486b9 | 0e9d99852874e01a77fe795c74c3cb410e00c8bf | refs/heads/master | 2022-11-15T09:05:56.098000 | 2022-11-02T12:58:38 | 2022-11-02T12:58:38 | 1,416,025 | 4 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Created on 5-feb-2005
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package it.gmarigi.jmedia.utility;
import javax.swing.filechooser.FileView;
import javax.swing.*;
import java.io.File;
/**
* @author HiFly
*
* TODO To change... | UTF-8 | Java | 642 | java | Mp3FileIcon.java | Java | [
{
"context": "vax.swing.*;\n\nimport java.io.File;\n\n/**\n * @author HiFly\n *\n * TODO To change the template for this genera",
"end": 299,
"score": 0.9993108510971069,
"start": 294,
"tag": "USERNAME",
"value": "HiFly"
}
] | null | [] | /*
* Created on 5-feb-2005
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package it.gmarigi.jmedia.utility;
import javax.swing.filechooser.FileView;
import javax.swing.*;
import java.io.File;
/**
* @author HiFly
*
* TODO To change... | 642 | 0.694704 | 0.682243 | 30 | 20.4 | 22.008484 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.733333 | false | false | 5 |
efe2205d547d078a0f5f3f7ff8c9d71d0c164ef3 | 31,069,793,435,486 | 98c8a9dc3ee416c5175288da1325d9d2aaa25bd5 | /src/main/ChefRestaurant.java | bbcca5e92a3e19590ed0680e653e033364b86557 | [] | no_license | jprakhar77/codeforces | https://github.com/jprakhar77/codeforces | b2d7d1e056887dcc1a23a3c19a7a227ad33d4bee | 6664ae2b63e3c9ec678ef7d41fb13550b71b6e12 | refs/heads/master | 2020-03-12T13:26:23.095000 | 2019-02-18T23:22:59 | 2019-02-18T23:22:59 | 130,642,112 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package main;
import fastio.InputReader;
import fastio.OutputWriter;
import java.util.Arrays;
public class ChefRestaurant {
class pair {
int s;
int e;
public pair(int s, int e) {
this.s = s;
this.e = e;
}
}
public void solve(int testNumber, InputR... | UTF-8 | Java | 1,379 | java | ChefRestaurant.java | Java | [] | null | [] | package main;
import fastio.InputReader;
import fastio.OutputWriter;
import java.util.Arrays;
public class ChefRestaurant {
class pair {
int s;
int e;
public pair(int s, int e) {
this.s = s;
this.e = e;
}
}
public void solve(int testNumber, InputR... | 1,379 | 0.364032 | 0.354605 | 62 | 21.241936 | 16.181118 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.596774 | false | false | 5 |
a2f7deba1fcd8cae3a03e3e06d3de7d9e1cdbbbf | 6,287,832,156,448 | 5121c129bcaaac4a5bbea3cccdf41c3a68c60028 | /src/main/java/org/hydroelectricity/dao/UserLoginDao.java | c242b97433b97f02b76b1b2f2ce18381f2c2b40f | [] | no_license | xzsw/V2 | https://github.com/xzsw/V2 | e8c962026bacd21ef7eecb74f3ed9e69ee354166 | b40e30b8bc798877d0dfbd068a2047b23c0d8179 | refs/heads/master | 2018-09-09T08:28:53.673000 | 2018-06-05T03:37:14 | 2018-06-05T03:37:14 | 133,923,947 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.hydroelectricity.dao;
import java.util.List;
import org.hydroelectricity.entity.UserLogin;
public interface UserLoginDao {
/**
* 注册
* @param ul
* @return
*/
int createUserLogin(UserLogin ul);
/**
* 获取最后一条插入数据的uid
* @return
*/
long getLastInsertUID(... | UTF-8 | Java | 786 | java | UserLoginDao.java | Java | [] | null | [] | package org.hydroelectricity.dao;
import java.util.List;
import org.hydroelectricity.entity.UserLogin;
public interface UserLoginDao {
/**
* 注册
* @param ul
* @return
*/
int createUserLogin(UserLogin ul);
/**
* 获取最后一条插入数据的uid
* @return
*/
long getLastInsertUID(... | 786 | 0.546875 | 0.546875 | 44 | 15 | 13.299009 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.181818 | false | false | 5 |
a552ff31351c84b82872c40ed8c9b41651af98a7 | 6,330,781,862,717 | 9f8b459060ed54a9b087806b1ca52cede02fd74a | /plugins/com.agritrace.edairy.desktop.member.ui/src/com/agritrace/edairy/desktop/member/ui/dialog/ViewContainerDialog.java | 92fff705f4712fda51231e051b32843bd439667d | [] | no_license | oraclebill/edairy_desktop | https://github.com/oraclebill/edairy_desktop | 7ddb61b2d3dcd0ddba89abe89e10c376f37c5fba | f9b775f2086fdcb3a4027d68f950a41e7ec50aa4 | refs/heads/master | 2020-04-10T14:55:40.472000 | 2011-03-30T11:46:55 | 2011-03-30T11:46:55 | 571,107 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.agritrace.edairy.desktop.member.ui.dialog;
import org.eclipse.jface.layout.GridDataFactory;
import org.eclipse.jface.layout.GridLayoutFactory;
import org.eclipse.riena.ui.swt.utils.UIControlsFactory;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.CCombo;
import org.eclipse.swt.layout.GridData;
i... | UTF-8 | Java | 4,292 | java | ViewContainerDialog.java | Java | [] | null | [] | package com.agritrace.edairy.desktop.member.ui.dialog;
import org.eclipse.jface.layout.GridDataFactory;
import org.eclipse.jface.layout.GridLayoutFactory;
import org.eclipse.riena.ui.swt.utils.UIControlsFactory;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.CCombo;
import org.eclipse.swt.layout.GridData;
i... | 4,292 | 0.785881 | 0.783085 | 109 | 38.376148 | 35.183865 | 138 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.944954 | false | false | 5 |
b08b0cabfa2d32a4f63ef52866e0f81e77939f2a | 33,002,528,739,014 | 83cdcc8cb89cab91f7539af2bca89b1dd0d33891 | /src/com/bean/goods.java | 33eaef8d71576bc11b92894eb32956a98e459773 | [] | no_license | yuanyoukaai/yuan | https://github.com/yuanyoukaai/yuan | c9d5226f7910810adff67eb48ca183495eadf2f4 | e6070e0d27f1dd6f327fc9c3217d3aba99652902 | refs/heads/master | 2020-09-10T05:00:17.148000 | 2019-11-14T08:46:12 | 2019-11-14T08:46:12 | 221,654,234 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.bean;
import java.io.Serializable;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.springframework.web.multipart.MultipartFile;
public class goods implements Serializable{
private int gid;
private String gname;
private float gprice;
p... | GB18030 | Java | 6,122 | java | goods.java | Java | [
{
"context": ") {\r\n\t\tsuper();\r\n\t\tthis.gid = gid;\r\n\t\tthis.gname = gname;\r\n\t\tthis.gprice = gprice;\r\n\t\tthis.gprice_floa",
"end": 1664,
"score": 0.9259973168373108,
"start": 1663,
"tag": "NAME",
"value": "g"
},
{
"context": ") {\r\n\t\tsuper();\r\n\t\tthis.gid = gid;\... | null | [] | package com.bean;
import java.io.Serializable;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.springframework.web.multipart.MultipartFile;
public class goods implements Serializable{
private int gid;
private String gname;
private float gprice;
p... | 6,122 | 0.668687 | 0.668687 | 220 | 25.754545 | 23.059088 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.463636 | false | false | 5 |
88888857de37e69ed749f1c138f867d618a61beb | 34,394,098,106,896 | a0197be8027f3cde8d6fe2128a607fb0944e36ac | /app/src/main/java/nyc/c4q/powershopper/ui/HomeActivity.java | b6342fd0f38084e71d7fe56cc9b92f311679b420 | [] | no_license | mbryantramirez/PowerShopper | https://github.com/mbryantramirez/PowerShopper | 6a0d7a284b7cc28e41df897e00f47a0e40409a60 | fb793ccfdc8bdc459200427c239f6b6d84d9768b | refs/heads/master | 2020-03-14T04:22:18.557000 | 2018-05-31T07:04:03 | 2018-05-31T07:04:03 | 131,440,640 | 0 | 0 | null | false | 2018-05-31T07:04:04 | 2018-04-28T20:06:57 | 2018-05-29T08:35:17 | 2018-05-31T07:04:04 | 134 | 0 | 0 | 0 | Java | false | null | package nyc.c4q.powershopper.ui;
import android.content.res.Configuration;
import android.os.PersistableBundle;
import android.support.annotation.Nullable;
import android.support.design.widget.NavigationView;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import and... | UTF-8 | Java | 2,492 | java | HomeActivity.java | Java | [] | null | [] | package nyc.c4q.powershopper.ui;
import android.content.res.Configuration;
import android.os.PersistableBundle;
import android.support.annotation.Nullable;
import android.support.design.widget.NavigationView;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarDrawerToggle;
import and... | 2,492 | 0.738363 | 0.735955 | 71 | 34.098591 | 27.142895 | 112 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.605634 | false | false | 5 |
8df84c7f8d5e1ccc1fc421981084fd0b9d0d0cb2 | 6,021,544,159,263 | 00a28ad64af38a3969fc12e560c63693ab366d9f | /src/display/MainWindow.java | 42a622a89d3cb5ca95f879e1e9790e463bb3fcf2 | [] | no_license | frosqh/GestionBotClient | https://github.com/frosqh/GestionBotClient | 5361e8bbe75864d12d8d1de00b799a68bb34df05 | d68fa7d6f78d82bddf3b49658d6faa70642f1e13 | refs/heads/master | 2021-01-12T06:23:07.532000 | 2017-03-24T11:26:58 | 2017-03-24T11:26:58 | 77,351,801 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package display;
import java.awt.AWTException;
import java.awt.CheckboxMenuItem;
import java.awt.Image;
import java.awt.MenuItem;
import java.awt.PopupMenu;
import java.awt.SystemTray;
import java.awt.TrayIcon;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter... | ISO-8859-1 | Java | 4,668 | java | MainWindow.java | Java | [] | null | [] | package display;
import java.awt.AWTException;
import java.awt.CheckboxMenuItem;
import java.awt.Image;
import java.awt.MenuItem;
import java.awt.PopupMenu;
import java.awt.SystemTray;
import java.awt.TrayIcon;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter... | 4,668 | 0.701093 | 0.697236 | 221 | 20.117647 | 19.225847 | 89 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.330317 | false | false | 5 |
91d4cf8c51acf363cd4d1f4fd52adb404a266146 | 16,750,372,457,095 | 0a4dac3c8554b1b0d52a697f8603431518caa6cb | /dhbw.java.examples/src/main/java/dhbw/java/examples/imageImplementation/ImageImplementation.java | 43055c9aea8dcce30d36bac39c55f610b104c306 | [] | no_license | Bauz/dhbw_practice | https://github.com/Bauz/dhbw_practice | dce6f9dd74b92d1d7a0b12b0857fae678975b1b5 | 806a8505146672b03fb504d3e927bcfedb4c9cb2 | refs/heads/master | 2020-05-19T09:44:46.132000 | 2014-05-05T08:06:53 | 2014-05-05T08:06:53 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package dhbw.java.examples.imageImplementation;
import javax.swing.JFrame;
import javax.swing.WindowConstants;
public class ImageImplementation extends JFrame {
public ImageImplementation() {
// // Variante 1 - Bild im Projektordner
// BufferedImage myPicture = null;
// try {
// myPicture = ImageIO.read(... | UTF-8 | Java | 929 | java | ImageImplementation.java | Java | [] | null | [] | package dhbw.java.examples.imageImplementation;
import javax.swing.JFrame;
import javax.swing.WindowConstants;
public class ImageImplementation extends JFrame {
public ImageImplementation() {
// // Variante 1 - Bild im Projektordner
// BufferedImage myPicture = null;
// try {
// myPicture = ImageIO.read(... | 929 | 0.677072 | 0.666308 | 39 | 22.820513 | 20.44865 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.615385 | false | false | 5 |
6078ceb4a107035fd295ef6227aa4094b0319c72 | 5,385,889,001,716 | 482d91cbcae9388d58ec5c0288a01abd26d5d347 | /Idea code/第十章/src/E06/Form.java | 1ba9caf07d7157ccc0820d6fd39fc5f65363c79a | [] | no_license | Beichenggudao/Thinking-in-java-down | https://github.com/Beichenggudao/Thinking-in-java-down | 1bf456f23ef9b998db082bd4deeb079e5e288c4f | ad93161afdbf29e02af0d2787e0ebfe11f158cbf | refs/heads/master | 2021-06-13T14:39:58.889000 | 2017-02-28T12:56:32 | 2017-02-28T12:56:32 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package E06;
/**
* Created by Seanol on 2017/2/26.
*/
public interface Form {
void f1();
void f2();
}
| UTF-8 | Java | 113 | java | Form.java | Java | [
{
"context": "package E06;\n\n/**\n * Created by Seanol on 2017/2/26.\n */\npublic interface Form {\n voi",
"end": 38,
"score": 0.9636690616607666,
"start": 32,
"tag": "NAME",
"value": "Seanol"
}
] | null | [] | package E06;
/**
* Created by Seanol on 2017/2/26.
*/
public interface Form {
void f1();
void f2();
}
| 113 | 0.575221 | 0.477876 | 9 | 11.555555 | 10.740485 | 34 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 5 |
1a38e19a28a8b56bef5d7b9e098cdc42bb6184bc | 33,973,191,313,398 | 1638a08aac5a49359d38a308d28501488b9cb9ad | /Farhan_Zaman_Assignment3/src/sortByTitle.java | 0aaec779fd66b1da9c44dff3f3242f36b5467186 | [] | no_license | fzaman2258/Java | https://github.com/fzaman2258/Java | 2147f5222e319cd7e04e83e3c5e30ac5a5a12378 | 48a7b1c91dfcbb35b80a48adb14782d97ab8ee91 | refs/heads/master | 2023-03-06T08:33:59.061000 | 2023-02-27T15:42:13 | 2023-02-27T15:42:13 | 195,282,025 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Comparator;
public class sortByTitle implements Comparator
{
@Override
public int compare(Object entry1, Object entry2)
{
if(entry1 instanceof String &&entry2 instanceof String)
{
String s1 = (String)entry1;
String s2 = (String)entry2;
return s1.compareTo(s2);
}
return 0;
}
}
| UTF-8 | Java | 320 | java | sortByTitle.java | Java | [] | null | [] | import java.util.Comparator;
public class sortByTitle implements Comparator
{
@Override
public int compare(Object entry1, Object entry2)
{
if(entry1 instanceof String &&entry2 instanceof String)
{
String s1 = (String)entry1;
String s2 = (String)entry2;
return s1.compareTo(s2);
}
return 0;
}
}
| 320 | 0.70625 | 0.671875 | 17 | 17.82353 | 19.042477 | 58 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.647059 | false | false | 5 |
575c3c4f14b9b325b2fb79a653c71325a860dbd8 | 6,262,062,370,957 | 95183eeaaf02d578f5d5473e0e96818e1cf4295d | /src/main/java/com/laptrinhjavaweb/buider/UserSearchBuilder.java | 1293cbc19f7471610c818cd9715df90252177618 | [] | no_license | phamhung8062/spring-mvc-jpa | https://github.com/phamhung8062/spring-mvc-jpa | e3952b801f3dfb4ac59490d08c065ba7637206b0 | 7a4920e563c143245ee91d4a1c8c9802fc3d383c | refs/heads/master | 2021-12-14T07:32:15.585000 | 2020-04-03T13:15:33 | 2020-04-03T13:15:33 | 252,735,492 | 0 | 0 | null | false | 2021-12-09T22:09:58 | 2020-04-03T13:10:18 | 2020-04-03T13:15:54 | 2021-12-09T22:09:58 | 2,735 | 0 | 0 | 5 | Java | false | false | package com.laptrinhjavaweb.buider;
public class UserSearchBuilder {
private String userName;
private String checked;
private String phone;
private String email;
private String fullName;
public String getPhone() {
return phone;
}
public String getChecked() {
return checked;
}
public String getEmail() {
... | UTF-8 | Java | 1,424 | java | UserSearchBuilder.java | Java | [
{
"context": " email;\n\t}\n\tpublic String getUsername() {\n\t\treturn userName;\n\t}\n\t\n\tpublic String getUserName() {\n\t\treturn use",
"end": 387,
"score": 0.952787458896637,
"start": 379,
"tag": "USERNAME",
"value": "userName"
},
{
"context": "Name;\n\t}\n\t\n\tpublic String ... | null | [] | package com.laptrinhjavaweb.buider;
public class UserSearchBuilder {
private String userName;
private String checked;
private String phone;
private String email;
private String fullName;
public String getPhone() {
return phone;
}
public String getChecked() {
return checked;
}
public String getEmail() {
... | 1,424 | 0.713483 | 0.713483 | 81 | 16.580246 | 14.4708 | 47 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.82716 | false | false | 5 |
787b7b3b465eaa801e5ab51bc4c1d4a4425c19c4 | 11,665,131,230,570 | dc0e7f6a2dd590c205d09379c3b4837851488ce9 | /loginVerification/src/main/java/com/srm/finance/Controller/TwilioController.java | 4fe5a7edb55ca16f498c0383990734f384884789 | [] | no_license | GayathriKumar-08/StarFinanceProject | https://github.com/GayathriKumar-08/StarFinanceProject | 99bb4e2fe1badb17b821c08845b35d407dc65c64 | cccf247aae93916821eb18b310dcb8d924cc52b5 | refs/heads/main | 2023-04-26T15:37:19.563000 | 2021-05-19T05:47:34 | 2021-05-19T05:47:34 | 359,501,116 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.srm.finance.Controller;
import com.srm.finance.Services.PhoneVerification;
import com.srm.finance.Services.VerificationData;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework... | UTF-8 | Java | 1,614 | java | TwilioController.java | Java | [] | null | [] | package com.srm.finance.Controller;
import com.srm.finance.Services.PhoneVerification;
import com.srm.finance.Services.VerificationData;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework... | 1,614 | 0.774473 | 0.774473 | 51 | 30.647058 | 29.133112 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.156863 | false | false | 5 |
4fe689fb8729feaf36fac36bc0efb87e0935bb68 | 12,610,024,029,517 | dc95afa06a95e30f6270ee00af30caece54b62e7 | /Project2/src/pt2016/project2/model/ProductModel.java | d75b9880a6020fb09f400bd2e6298874b8a67df9 | [] | no_license | AlexaGh/PT-2016 | https://github.com/AlexaGh/PT-2016 | f37efdb38daaba4bb4cda640a95f1704dde54a73 | 6a68ca821c328aa39560d1105ac75c55beabc4ba | refs/heads/master | 2021-01-17T07:15:25.063000 | 2016-05-26T17:09:00 | 2016-05-26T17:09:00 | 52,529,409 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pt2016.project2.model;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
import pt2016.project2.dao.*;
import pt2016.project2.entity.*;
public class ProductModel implements ProductDAO {
@Override
public List<Product> readAll() {
try {
Lis... | UTF-8 | Java | 2,703 | java | ProductModel.java | Java | [] | null | [] | package pt2016.project2.model;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
import java.util.List;
import pt2016.project2.dao.*;
import pt2016.project2.entity.*;
public class ProductModel implements ProductDAO {
@Override
public List<Product> readAll() {
try {
Lis... | 2,703 | 0.682575 | 0.672586 | 98 | 26.581633 | 26.943979 | 146 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.714286 | false | false | 5 |
26a88daea6afaffcb202df798273e6473471bed2 | 12,610,024,028,762 | 2841720690e9ad52bf3bea28d4a5c06fbb33a997 | /src/main/java/fr/rss/download/api/model/RemoteFile.java | 24c502cbd3e4a0168ae11e954076b1da2f77d115 | [
"MIT"
] | permissive | gremi64/RSS_DOWNLOADER | https://github.com/gremi64/RSS_DOWNLOADER | 877e086e6ae0b332ea8d10bcdbec28416b2c6bf0 | 133f28f4c7c077a8024b33a9864f32865071ae4b | refs/heads/master | 2021-01-02T08:23:26.464000 | 2018-05-12T20:24:52 | 2018-05-12T20:24:52 | 99,000,593 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package fr.rss.download.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
public class RemoteFile {
@JsonProperty("link")
String link;
@JsonProperty("file_name")
String fileName;
@JsonProperty("file_size")
long fileSize;
@JsonProperty("file_location")
String fileLocation;
public String ge... | UTF-8 | Java | 996 | java | RemoteFile.java | Java | [] | null | [] | package fr.rss.download.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
public class RemoteFile {
@JsonProperty("link")
String link;
@JsonProperty("file_name")
String fileName;
@JsonProperty("file_size")
long fileSize;
@JsonProperty("file_location")
String fileLocation;
public String ge... | 996 | 0.704819 | 0.704819 | 56 | 16.785715 | 21.592587 | 131 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.125 | false | false | 5 |
95fc55d482219a9b7902e1fabf3c24dcead2c747 | 17,583,596,121,926 | 428cb7fd88edf144e3d61a66d98aec1db76e4285 | /app/src/main/java/com/george/bookopen/Main3Activity.java | ab3f809f656ff24f6dbeead3d262fc7fc8a715a4 | [] | no_license | geogie/BookOpen2 | https://github.com/geogie/BookOpen2 | ffceb92f71d8bd84222fe8b887e624cb000dbfc0 | ac66b6850837b0513df38ea6e2d75a9d36015241 | refs/heads/master | 2020-04-15T16:27:07.706000 | 2019-01-10T06:41:25 | 2019-01-10T06:41:25 | 164,836,868 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.george.bookopen;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import com.george.bookopen.book.BookOpenViewValue;
import com.george.bookopen.book2.BookOpenView2;
public class Main3Activity... | UTF-8 | Java | 2,834 | java | Main3Activity.java | Java | [] | null | [] | package com.george.bookopen;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import com.george.bookopen.book.BookOpenViewValue;
import com.george.bookopen.book2.BookOpenView2;
public class Main3Activity... | 2,834 | 0.60374 | 0.59139 | 69 | 40.072464 | 27.748518 | 110 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.681159 | false | false | 5 |
e13db848a4280f2185d403e7e661d8daea0fb29f | 7,395,933,702,080 | 8ddd98c1e7b26926fda7f656234e92730159d6ff | /jlpServiceProvider/src/main/java/com/callan/service/provider/config/BeanWrapperUtil.java | fc0344550687edb6920603261d7f7a7e02cce606 | [] | no_license | nianqingren2008/JLPWebAPI | https://github.com/nianqingren2008/JLPWebAPI | 6b1fcea9b6e02c90a294351fa85a50826de90b0a | 000f15af476d0dbdd06e0a0b75cddcd262ac970f | refs/heads/master | 2022-12-18T19:48:30.700000 | 2019-07-10T12:03:38 | 2019-07-10T12:03:38 | 187,427,304 | 0 | 0 | null | false | 2022-12-05T23:27:13 | 2019-05-19T02:57:04 | 2019-07-10T12:04:10 | 2022-12-05T23:27:12 | 3,942 | 0 | 0 | 2 | Java | false | false | package com.callan.service.provider.config;
import java.lang.reflect.Method;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* 对象复制类
*/
public class BeanWrapperUtil {
private static Logger log = LoggerFactory.getLogger(BeanWrapperUtil.class);
/**
* 属性复制
* @param source 源Bean对象
* @param targ... | UTF-8 | Java | 3,094 | java | BeanWrapperUtil.java | Java | [] | null | [] | package com.callan.service.provider.config;
import java.lang.reflect.Method;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* 对象复制类
*/
public class BeanWrapperUtil {
private static Logger log = LoggerFactory.getLogger(BeanWrapperUtil.class);
/**
* 属性复制
* @param source 源Bean对象
* @param targ... | 3,094 | 0.662466 | 0.657016 | 106 | 26.698112 | 25.972834 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.735849 | false | false | 5 |
8a873fc6970d3ecae901e669a3a249ac2df8a7b4 | 22,651,657,536,057 | d9fbc865848740472f56685a8f1b16edf8664a6d | /connect-file-pulse-filesystems/filepulse-commons-fs/src/main/java/io/streamthoughts/kafka/connect/filepulse/fs/reader/text/internal/TextBlock.java | 8ba0ddd483cead478608b389ed4a9b990936a66b | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | streamthoughts/kafka-connect-file-pulse | https://github.com/streamthoughts/kafka-connect-file-pulse | 963868eded5104ca3d4b5df44de08e75549762d6 | 9b654639277e48836db2d5dd3f5d3d33d6779307 | refs/heads/master | 2023-09-03T20:05:02.957000 | 2023-08-22T14:37:36 | 2023-08-29T16:55:09 | 170,883,666 | 278 | 64 | Apache-2.0 | false | 2023-09-14T14:10:13 | 2019-02-15T15:11:40 | 2023-09-14T11:38:57 | 2023-09-14T14:10:12 | 15,869 | 279 | 59 | 48 | Java | false | false | /*
* Copyright 2019-2021 StreamThoughts.
*
* 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 License,... | UTF-8 | Java | 3,284 | java | TextBlock.java | Java | [] | null | [] | /*
* Copyright 2019-2021 StreamThoughts.
*
* 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 License,... | 3,284 | 0.596833 | 0.593179 | 113 | 28.061947 | 22.593084 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.389381 | false | false | 5 |
23ebeb5ec204f9d354b31a4d65d471d4d1282d2b | 9,689,446,234,533 | d1cdcd323c39fc4bbbddaac94cfb0ffa7a5c9990 | /spring-security-config-3.0.5/org/springframework/security/config/SecurityNamespaceHandler.java | 4d923fa480074bcc18dc56e937ff66637d5bf188 | [] | no_license | ZacharyRLewis/Sources | https://github.com/ZacharyRLewis/Sources | bbd4979e305ecf203dd293f84a0eaefca7617ffb | c9e3ad2c420f61faf863d75e78015f0bb65604dd | refs/heads/master | 2019-08-01T15:44:19.478000 | 2016-11-23T19:07:31 | 2016-11-23T19:07:31 | 74,605,833 | 0 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.springframework.security.config;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.config.BeanDefinitionHolder;... | UTF-8 | Java | 7,510 | java | SecurityNamespaceHandler.java | Java | [
{
"context": "rity.*\"));\n }\n }\n\n/* Location: /Users/zachlewis/workspace/collegesource_security_api/src/main/lib",
"end": 7302,
"score": 0.998899519443512,
"start": 7293,
"tag": "USERNAME",
"value": "zachlewis"
}
] | null | [] | package org.springframework.security.config;
import java.util.HashMap;
import java.util.Map;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.config.BeanDefinitionHolder;... | 7,510 | 0.748868 | 0.74474 | 161 | 45.645962 | 42.679131 | 222 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.757764 | false | false | 5 |
f3cbdb65a43aff746dfb34c6b99fd5a5fd98fb11 | 24,026,047,072,328 | 872652e7b0c81fc467baa9924bbb2aa73f1cfcc1 | /Exercises/ClubManager/src/workshop/StreamWshop.java | ab8f2833dfade4ac56e173a32ced9672b1fe6728 | [] | no_license | TimeSpeeding/SA4105 | https://github.com/TimeSpeeding/SA4105 | 91c4bbaace5226258939eec8d2b7019f5287be88 | 26bb8ab7f99b86b3a58dd7d38a3329a43012ddcb | refs/heads/master | 2020-05-19T17:45:12.057000 | 2019-05-28T07:02:04 | 2019-05-28T07:02:04 | 185,141,753 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package workshop;
import java.util.*;
import java.util.stream.*;
class Staff implements Comparable<Staff>{
String id;
String name;
int grade;
float salary;
Staff(String id, String name, int grade, float salary) {
this.id = id;
this.name = name;
this.grade = grade;
this.salary = salary;
... | UTF-8 | Java | 3,167 | java | StreamWshop.java | Java | [
{
"context": "ew Staff(\"6c0231c1-b015-4ca6-8dea-0efda89b9342\", \"John\", 5, 4293));\r\n\t\tstaffList.add(new Staff(\"270d0145",
"end": 797,
"score": 0.9998635053634644,
"start": 793,
"tag": "NAME",
"value": "John"
},
{
"context": "ew Staff(\"270d0145-c551-494f-8195-8b65da8f2322\", ... | null | [] | package workshop;
import java.util.*;
import java.util.stream.*;
class Staff implements Comparable<Staff>{
String id;
String name;
int grade;
float salary;
Staff(String id, String name, int grade, float salary) {
this.id = id;
this.name = name;
this.grade = grade;
this.salary = salary;
... | 3,167 | 0.652984 | 0.608778 | 81 | 37.098766 | 31.347359 | 113 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.493827 | false | false | 5 |
a129911062acf42c8d4d68cfb06a295a9aa5955e | 15,564,961,497,827 | a7947cd63d949249b070759d182b86e9ca49d966 | /manager/src/main/java/cn/b2r/common/util/image/ImportUtil.java | 9b40abe0c6d848179f71b5388a0bdd4a658f29e1 | [] | no_license | keyman1995/source | https://github.com/keyman1995/source | 234fce8ac60bc9ea8211c0d8772fb2e3f56479de | 347f4ae49bd7e7f7d1a84440b90ab2ace5fa2d5e | refs/heads/master | 2020-03-21T17:13:13.804000 | 2018-06-26T12:20:03 | 2018-06-26T12:20:03 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.b2r.common.util.image;
import java.io.File;
import java.io.InputStream;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apach... | UTF-8 | Java | 3,095 | java | ImportUtil.java | Java | [
{
"context": "common.util.ParseXMLUtil;\n\n/**\n * 导入工具类\n * @author hjc\n *\n */\npublic class ImportUtil<T>\n{\n\tpublic List<",
"end": 550,
"score": 0.999657392501831,
"start": 547,
"tag": "USERNAME",
"value": "hjc"
}
] | null | [] | package cn.b2r.common.util.image;
import java.io.File;
import java.io.InputStream;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apach... | 3,095 | 0.582466 | 0.577763 | 102 | 28.186274 | 25.928534 | 135 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.137255 | false | false | 5 |
d3f94af8884130b8d132cc099ce3e3dd1db1b137 | 30,064,771,090,109 | 5ee2b67a7972835c4bf0514308680171207a4ced | /Java_OOP/src/org/_interface/test/TestClass.java | 07dec1655edce24d1ba6e50c82ea710d90f52bd9 | [
"Apache-2.0"
] | permissive | Liuxyly/Java_Learning | https://github.com/Liuxyly/Java_Learning | 6973123ab92198ef4e37ea89ac0a5d8a4bd290be | 459f04bd9b5087401b1b82dd38412392fbbbfcaa | refs/heads/master | 2021-01-13T05:50:13.125000 | 2017-10-02T03:44:05 | 2017-10-02T03:44:05 | 85,017,742 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org._interface.test;
public class TestClass {
public static void main(String[] args) {
UDisk ud = new UDisk();
ud.test();
USB ue = new UDisk();
ue.service();
}
}
| UTF-8 | Java | 187 | java | TestClass.java | Java | [] | null | [] | package org._interface.test;
public class TestClass {
public static void main(String[] args) {
UDisk ud = new UDisk();
ud.test();
USB ue = new UDisk();
ue.service();
}
}
| 187 | 0.620321 | 0.620321 | 14 | 12.357142 | 13.188779 | 41 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.214286 | false | false | 5 |
05339f7c180e663707b9647b1675ff4341bf0d61 | 30,064,771,086,343 | f4c61cb655979f2ff7bbb768a64739c7c944fac7 | /app/src/main/java/org/jakelcode/jldiary/fragments/AddDataFragment.java | 4f92d9f8fa2cf74e8d285edbdf5a8484f0efcb7b | [
"MIT",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | JakeLoo/jl-diary | https://github.com/JakeLoo/jl-diary | 86ad2c361c4f17030e64cddf733a449ab298a3f6 | 3e01af6166df227a6bb73126ca0062a20442f818 | refs/heads/master | 2016-08-04T21:22:58.131000 | 2015-04-09T06:05:34 | 2015-04-09T06:05:34 | 25,188,898 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.jakelcode.jldiary.fragments;
import android.app.Activity;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.support.v7.widget.T... | UTF-8 | Java | 18,022 | java | AddDataFragment.java | Java | [
{
"context": "/**\n * What is it?\n * Description...\n *\n * @author Pin Khe \"Jake\" Loo (28 September, 2014)\n * @version 1.0\n ",
"end": 1523,
"score": 0.9998429417610168,
"start": 1516,
"tag": "NAME",
"value": "Pin Khe"
},
{
"context": "t is it?\n * Description...\n *\n * @author... | null | [] | package org.jakelcode.jldiary.fragments;
import android.app.Activity;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.support.v7.widget.T... | 18,021 | 0.61314 | 0.61203 | 456 | 38.521931 | 32.647968 | 164 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.546053 | false | false | 5 |
876c2b6eb409e7fc5620ecc6386200d777fda83b | 30,124,900,630,763 | 9d0d64b1c6f571d548f756e562603b52da5c805c | /src/main/java/hksarg/etwb/pwpis/web/common/filters/UserSessionInfo.java | fc638bad662c29cc2628a5673656b9f79a33fe42 | [] | no_license | chengyukpong/etwb-web | https://github.com/chengyukpong/etwb-web | e53218b1c675c45cb54515bfb480639fc93f6131 | dc75aa4071b634056553d3af23922ec06cde8c3e | refs/heads/master | 2018-01-08T17:40:25.345000 | 2016-03-14T15:05:38 | 2016-03-14T15:05:38 | 53,866,241 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package hksarg.etwb.pwpis.web.common.filters;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import java.io.Serializable;
import java.util.*;
import java.math.BigDecimal;
import hksarg.etwb.pwpis.web.common.PageConstants;
import hksarg.etwb.pwpis.services.user.User;
import hksarg.... | UTF-8 | Java | 6,792 | java | UserSessionInfo.java | Java | [] | null | [] | package hksarg.etwb.pwpis.web.common.filters;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import java.io.Serializable;
import java.util.*;
import java.math.BigDecimal;
import hksarg.etwb.pwpis.web.common.PageConstants;
import hksarg.etwb.pwpis.services.user.User;
import hksarg.... | 6,792 | 0.606302 | 0.603799 | 196 | 33.647961 | 30.055111 | 155 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.403061 | false | false | 5 |
f1e8dc328b02e74a05ecce5bf335fef126de56d7 | 3,788,161,178,407 | 87c3c335023681d1c906892f96f3a868b3a6ee8e | /HTML5/dev/simplivity-citrixplugin-service/src/main/java/com/vmware/vim25/VMwareDvsLacpGroupConfig.java | d484d866f42c362b301b8b52528ceee5f4f813a5 | [
"Apache-2.0"
] | permissive | HewlettPackard/SimpliVity-Citrix-VCenter-Plugin | https://github.com/HewlettPackard/SimpliVity-Citrix-VCenter-Plugin | 19d2b7655b570d9515bf7e7ca0cf1c823cbf5c61 | 504cbeec6fce27a4b6b23887b28d6a4e85393f4b | refs/heads/master | 2023-08-09T08:37:27.937000 | 2020-04-30T06:15:26 | 2020-04-30T06:15:26 | 144,329,090 | 0 | 1 | Apache-2.0 | false | 2020-04-07T07:27:53 | 2018-08-10T20:24:34 | 2019-07-03T09:48:30 | 2020-04-07T07:27:49 | 124,094 | 0 | 1 | 0 | Java | false | false | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.06.12 at 09:... | UTF-8 | Java | 2,653 | java | VMwareDvsLacpGroupConfig.java | Java | [] | null | [] | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.06.12 at 09:... | 2,653 | 0.611006 | 0.603091 | 110 | 22.118181 | 23.089443 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3 | false | false | 5 |
af50cdad571a1c8c2da5bc080b4fb4db23a32d2a | 12,687,333,414,452 | 622646b2b8ba9a9bcfd226750b89b470b2e2c086 | /Beer/src/Main.java | be28f05a88b0058d1bcea7228a4a9a2411054683 | [] | no_license | theletterandrew/BeerApp | https://github.com/theletterandrew/BeerApp | 597b425181342467cd7be41bca195c4922bd9a9c | 99403bf086b5e853c265e7b3c79f8d92f50596f1 | refs/heads/master | 2021-07-19T06:23:55.997000 | 2017-10-28T16:58:09 | 2017-10-28T16:58:09 | 108,666,677 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Scanner;
public class Main {
public static void main(String [] args){
Scanner scan = new Scanner(System.in);
System.out.println("Enter your zip code: ");
int zipCode = scan.nextInt();
Person person = new Person(zipCode);
if(person.canBuy){
... | UTF-8 | Java | 513 | java | Main.java | Java | [] | null | [] | import java.util.Scanner;
public class Main {
public static void main(String [] args){
Scanner scan = new Scanner(System.in);
System.out.println("Enter your zip code: ");
int zipCode = scan.nextInt();
Person person = new Person(zipCode);
if(person.canBuy){
... | 513 | 0.551657 | 0.551657 | 20 | 23.65 | 23.730309 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 5 |
9e5c5e01a47311b75fbec4e52c199686b4e1e48a | 3,126,736,213,462 | 0103e6c2c9cca951dbc52d3535dcf38771fb382c | /app/src/main/java/scrappyscrapers/bouyapplication/BouyData.java | cef66b64b39962d133e6b752c5869d7d3dccb1b9 | [] | no_license | dosilviaNU/BuoyScraper | https://github.com/dosilviaNU/BuoyScraper | e113647298cfb35727167dc093f3508e91c29c44 | 80eb66feffb475257d7a87c1396656ea7f155b9c | refs/heads/master | 2021-01-12T14:08:20.294000 | 2016-10-02T15:37:17 | 2016-10-02T15:37:17 | 69,756,588 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Created by David on 10/1/2016.
*/
/**
* Container object for buoy data scraped from the National Data Buoy Center.
*/
public class BouyData {
private String month;
private String day;
private String time;
private String windDir;
private String windSpeed;
private String gustSpeed;
private String... | UTF-8 | Java | 970 | java | BouyData.java | Java | [
{
"context": "/**\n * Created by David on 10/1/2016.\n */\n\n/**\n * Container object for bu",
"end": 23,
"score": 0.9996595978736877,
"start": 18,
"tag": "NAME",
"value": "David"
}
] | null | [] | /**
* Created by David on 10/1/2016.
*/
/**
* Container object for buoy data scraped from the National Data Buoy Center.
*/
public class BouyData {
private String month;
private String day;
private String time;
private String windDir;
private String windSpeed;
private String gustSpeed;
private String... | 970 | 0.66701 | 0.657732 | 36 | 25.944445 | 29.841194 | 146 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 5 |
bef91c1cfa7a7af8eba094ae2035cc147fa21eeb | 20,255,065,790,339 | 1451df3159d8bd9eec2b71fd61fe7eba775493b8 | /app/src/main/java/com/motanad/motanad/activity/MyBalanceActivity.java | b180a180afc1b26dfc467f1352db95bdd8a2f3dd | [] | no_license | axpert1/Motanad | https://github.com/axpert1/Motanad | aece50b58a3f45ceef6460867225711eefeb7ed4 | 120aaa8754720411deffc35123c5a404f3cf7c67 | refs/heads/master | 2021-08-29T01:43:26.073000 | 2017-12-13T09:22:02 | 2017-12-13T09:22:02 | 113,414,143 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.motanad.motanad.activity;
import android.content.Context;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.DefaultItemAnimator;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.supp... | UTF-8 | Java | 2,767 | java | MyBalanceActivity.java | Java | [] | null | [] | package com.motanad.motanad.activity;
import android.content.Context;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.DefaultItemAnimator;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.supp... | 2,767 | 0.714131 | 0.704734 | 86 | 31.174419 | 27.112253 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.697674 | false | false | 5 |
d330a2dcb82ab69877f8c9b5a2b522c3fcb6a719 | 20,255,065,790,720 | 5d059d98ffd879095d503f8db0bc701fab13ed11 | /sfm/src/main/java/org/sfm/csv/impl/writer/IntegerAppendableSetter.java | 602406cb4d121b03808708850580aa87cf267710 | [
"MIT"
] | permissive | sripadapavan/SimpleFlatMapper | https://github.com/sripadapavan/SimpleFlatMapper | c74cce774b0326d5ea5ea141ee9f3caf07a98372 | 8359a08abb3a321b3a47f91cd4046ca1a88590fd | refs/heads/master | 2021-01-17T08:11:57.463000 | 2016-02-06T14:38:44 | 2016-02-07T16:50:53 | 51,313,393 | 1 | 0 | null | true | 2016-02-08T17:23:12 | 2016-02-08T17:23:12 | 2016-01-23T16:22:38 | 2016-02-07T16:50:59 | 15,707 | 0 | 0 | 0 | null | null | null | package org.sfm.csv.impl.writer;
import org.sfm.csv.CellWriter;
import org.sfm.reflect.primitive.IntSetter;
public class IntegerAppendableSetter implements IntSetter<Appendable> {
private final CellWriter cellWriter;
public IntegerAppendableSetter(CellWriter cellWriter) {
this.cellWriter = cellWrite... | UTF-8 | Java | 488 | java | IntegerAppendableSetter.java | Java | [] | null | [] | package org.sfm.csv.impl.writer;
import org.sfm.csv.CellWriter;
import org.sfm.reflect.primitive.IntSetter;
public class IntegerAppendableSetter implements IntSetter<Appendable> {
private final CellWriter cellWriter;
public IntegerAppendableSetter(CellWriter cellWriter) {
this.cellWriter = cellWrite... | 488 | 0.747951 | 0.747951 | 18 | 26.111111 | 26.057392 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.444444 | false | false | 5 |
7cf727486b03f2a68f9eafe8ce49b821f2860529 | 2,164,663,519,531 | 84258e73011fb04ad40bf7d4ea508e4ad9eaf583 | /applicationdemo/src/main/java/com/sunld/conf/CourseLearningApplicationYml.java | be8eb07d3b2d9ce06e2bd1c94d5389615cfa5635 | [] | no_license | sld880311/springboot-learning | https://github.com/sld880311/springboot-learning | 21684e9563e33f3643be1987e73140edb90b57cd | e30db734decb29bdf57491e289dc1da42c3b0315 | refs/heads/master | 2021-01-25T11:20:12.550000 | 2019-02-14T06:02:18 | 2019-02-14T06:02:18 | 123,391,178 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sunld.conf;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
//可以通过@Value("${属性值}")获取配置文件中的属性
@Component
public class CourseLearningApplicationYml {
@Value("${com.sunld.applicationp.chapter}")
private String chapter;
@Value("${com.sunld.app... | UTF-8 | Java | 850 | java | CourseLearningApplicationYml.java | Java | [] | null | [] | package com.sunld.conf;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
//可以通过@Value("${属性值}")获取配置文件中的属性
@Component
public class CourseLearningApplicationYml {
@Value("${com.sunld.applicationp.chapter}")
private String chapter;
@Value("${com.sunld.app... | 850 | 0.731618 | 0.731618 | 44 | 17.545454 | 17.531082 | 58 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.068182 | false | false | 5 |
c0ba01b9b1548e8d25c66be4286a168519d87aa6 | 19,705,309,994,019 | 62450a0d0977d0c5a59303dbb3a0ddb58854bba6 | /src/main/java/gg/adofai/server/repository/TagRepository.java | 5c222c7ee9ff1a6486e1fdd0dafb62c2b7a39e32 | [] | no_license | Luxusio/ADOFAI-gg-Server | https://github.com/Luxusio/ADOFAI-gg-Server | e886002a25e404db6c559f96ad406b425cb3ea54 | 32f39d7aa1eec2365722dcd4aa3501d9d6a1d5b6 | refs/heads/master | 2023-07-01T17:59:53.267000 | 2021-07-31T19:06:21 | 2021-07-31T19:06:21 | 391,843,592 | 1 | 0 | null | true | 2021-08-02T06:50:53 | 2021-08-02T06:50:53 | 2021-07-31T19:06:28 | 2021-08-01T14:27:13 | 553 | 0 | 0 | 0 | null | false | false | package gg.adofai.server.repository;
import gg.adofai.server.domain.entity.tag.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Repository;
import javax.persistence.EntityManager;
import java.util.List;
@Repository
@RequiredArgsConstructor
public class TagRepository {
private fi... | UTF-8 | Java | 1,015 | java | TagRepository.java | Java | [] | null | [] | package gg.adofai.server.repository;
import gg.adofai.server.domain.entity.tag.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Repository;
import javax.persistence.EntityManager;
import java.util.List;
@Repository
@RequiredArgsConstructor
public class TagRepository {
private fi... | 1,015 | 0.655172 | 0.654187 | 40 | 24.375 | 22.049589 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.425 | false | false | 5 |
36f6c0484314ebb67bc6a3da05efa2e408a2f751 | 21,990,232,610,218 | d8a9367cd79add0d113ef1f339eaa1b9434287dc | /app/src/main/java/com/example/cstools/DTCalResultActivity.java | 9043e1a9f0fdaf28d20436947cb9da57cdaa6d8c | [] | no_license | BuddhiPerera/Android-Projects | https://github.com/BuddhiPerera/Android-Projects | 12af9b80d187b5ab54e3080c55790180d73d5434 | bfcd1aed64fadd14351e8cf4cf1a2a3e225da659 | refs/heads/master | 2022-12-28T01:51:28.362000 | 2020-10-16T14:45:52 | 2020-10-16T14:45:52 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.cstools;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.EditText;
import android.widget.TextView;
import org.w3c.dom.Text;
public class DTCalResultActivity extends AppCompatActivity {
TextView result;
Strin... | UTF-8 | Java | 1,018 | java | DTCalResultActivity.java | Java | [] | null | [] | package com.example.cstools;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.widget.EditText;
import android.widget.TextView;
import org.w3c.dom.Text;
public class DTCalResultActivity extends AppCompatActivity {
TextView result;
Strin... | 1,018 | 0.688605 | 0.679764 | 37 | 26.540541 | 21.601545 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.756757 | false | false | 5 |
8fb7a4f7bf001423a93ad2cf11035c3d39955b2a | 1,752,346,696,730 | 2a0c74b87d12043a409b22f7d3875916e3caf7c1 | /ecourt/src/main/java/com/sustain/taglib/LocaleNavTag.java | f43814361208fc3659207da5a9b1b9b67b7e8376 | [] | no_license | EJBadillo/bench-book | https://github.com/EJBadillo/bench-book | c0e5dfa8c96cf7f52bd3dd65e1e54fa534292d0d | dc884d3751757bffed8d5e59c8a79974e55b87b6 | refs/heads/master | 2016-05-25T09:47:01.595000 | 2014-06-06T22:17:14 | 2014-06-06T22:17:14 | 19,510,887 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sustain.taglib;
import com.sustain.util.CoreStringUtils;
import com.sustain.util.Msg;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.TagSupport;
import java.io.IOException;
import java.util.List;
import java.util.Locale;
/**
* Created by IntelliJ IDEA.
* User: vakopian
* Date: ... | UTF-8 | Java | 1,486 | java | LocaleNavTag.java | Java | [
{
"context": "Locale;\n\n/**\n * Created by IntelliJ IDEA.\n * User: vakopian\n * Date: Dec 30, 2010\n * Time: 5:23:15 PM\n */\npub",
"end": 310,
"score": 0.9991652369499207,
"start": 302,
"tag": "USERNAME",
"value": "vakopian"
}
] | null | [] | package com.sustain.taglib;
import com.sustain.util.CoreStringUtils;
import com.sustain.util.Msg;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.TagSupport;
import java.io.IOException;
import java.util.List;
import java.util.Locale;
/**
* Created by IntelliJ IDEA.
* User: vakopian
* Date: ... | 1,486 | 0.619112 | 0.611036 | 41 | 35.243904 | 30.25403 | 160 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.439024 | false | false | 5 |
1d97cd8e642688184c1d2820a9d1fc69cce7d442 | 23,459,111,427,714 | d79afc41f063f7987369ed7df224e4e101794989 | /app/src/main/java/com/mahmoudsehsah/ghaithDriver/custom/CustomListViewAdapter.java | 30d303b4c8cf6be3491173e206cda5d8ef569b77 | [] | no_license | sehsah/GhaithDriver | https://github.com/sehsah/GhaithDriver | 243a5d3dad572d531a6d88616b606ebab9e6d0d9 | fb0413bb798452965b0132601956f7d016f96f6c | refs/heads/master | 2021-03-30T21:27:33.899000 | 2018-04-15T07:59:38 | 2018-04-15T07:59:38 | 125,112,061 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mahmoudsehsah.ghaithDriver.custom;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
... | UTF-8 | Java | 3,945 | java | CustomListViewAdapter.java | Java | [
{
"context": "riar.calligrapher.Calligrapher;\n\n/**\n * Created by mahmoud on 3/19/2018.\n */\n\npublic class CustomListViewAda",
"end": 697,
"score": 0.9365907907485962,
"start": 690,
"tag": "USERNAME",
"value": "mahmoud"
}
] | null | [] | package com.mahmoudsehsah.ghaithDriver.custom;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
... | 3,945 | 0.637009 | 0.634221 | 119 | 32.15126 | 25.82769 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.739496 | false | false | 5 |
54525fef922cb83cdfe3ea6d141ea7b626f15f0f | 28,965,259,505,077 | 998ec63be8399df275bcf4ff5c8fb75d7408e150 | /app/src/main/java/com/google/android/gms/location/sample/locationupdates/ValueObjects/RouteList.java | d5d5e587e68569aa42842ae4020e164aec82c115 | [
"Apache-2.0"
] | permissive | K6NO/android_location_project | https://github.com/K6NO/android_location_project | 15603c0282f2d74aba627a2bdf3de94fd9f77806 | d95bf2a69fb3f1d2b1401749bd052d13fcf9bee6 | refs/heads/master | 2018-01-06T00:16:26.614000 | 2016-12-14T09:43:21 | 2016-12-14T09:43:21 | 69,177,349 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.google.android.gms.location.sample.locationupdates.ValueObjects;
import com.google.android.gms.location.sample.locationupdates.entity.Route;
import java.util.List;
public class RouteList {
public final List<Route> data;
public RouteList(List<Route> routeList) {
this.data = routeList;
... | UTF-8 | Java | 326 | java | RouteList.java | Java | [] | null | [] | package com.google.android.gms.location.sample.locationupdates.ValueObjects;
import com.google.android.gms.location.sample.locationupdates.entity.Route;
import java.util.List;
public class RouteList {
public final List<Route> data;
public RouteList(List<Route> routeList) {
this.data = routeList;
... | 326 | 0.748466 | 0.748466 | 14 | 22.285715 | 26.206402 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.357143 | false | false | 5 |
30ecc0d9ebe2199ec6cb29b66a53d22889102e0f | 5,257,040,011,466 | aa9e6e3f7ce310ba007ab1f9988ac0def1f46f74 | /0610/src/kr/green/ex0610/IntegerTypeEx2.java | 02faff9954e68e2385ebf37763eedc2f627ae011 | [] | no_license | junisYun/GreenAcademy | https://github.com/junisYun/GreenAcademy | e3f1419c47c957d6ee842a0d6df6b2234b5efb0d | b24c5f612187ba8e9fe39cef2a6bbdd525820b49 | refs/heads/main | 2023-05-23T18:14:59.771000 | 2021-06-15T08:28:15 | 2021-06-15T08:28:15 | 375,913,336 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package kr.green.ex0610;
//byte1 short2 int4 long8
public class IntegerTypeEx2 {
public static void main(String[] args) {
int a = 10;
int b = 0b10;
int c = 010;
int d = 0x10;
// 접두어에 따른 값의 변화
// 숫자가 1~9 로 시작되면 10진수
// 숫자가 0B로 시작되면 2진수로 인식
// 숫자가 0 으로 시작하면 8진수
// 숫자가 0x로 시작하면 16진수
// 대소문자 구분 x (... | UHC | Java | 716 | java | IntegerTypeEx2.java | Java | [] | null | [] | package kr.green.ex0610;
//byte1 short2 int4 long8
public class IntegerTypeEx2 {
public static void main(String[] args) {
int a = 10;
int b = 0b10;
int c = 010;
int d = 0x10;
// 접두어에 따른 값의 변화
// 숫자가 1~9 로 시작되면 10진수
// 숫자가 0B로 시작되면 2진수로 인식
// 숫자가 0 으로 시작하면 8진수
// 숫자가 0x로 시작하면 16진수
// 대소문자 구분 x (... | 716 | 0.588652 | 0.52305 | 26 | 20.692308 | 10.006803 | 43 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.961539 | false | false | 5 |
3ff3b5aa93c1e9a567e90b31836d7495e2b2764a | 9,869,834,858,891 | 74e9bc0539d285f716d2c13dcad5ae29ce307f07 | /EVA3_13_MEDIA_SERVICE/app/src/main/java/com/example/practica/eva3_13/Main.java | 871abda4588af04b54a45adcb0f06ca5493b8baf | [] | no_license | AdrianBalderrama/14550313_U3_PROGRAMAS | https://github.com/AdrianBalderrama/14550313_U3_PROGRAMAS | dd585b3fb73989ca267968240e950fca4c606610 | 516970aff108579a80a37862c8dd09bf1900003c | refs/heads/master | 2020-04-10T15:18:24.495000 | 2018-12-10T02:30:51 | 2018-12-10T02:30:51 | 161,105,142 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.practica.eva3_13;
import android.app.Service;
import android.content.Intent;
import android.media.MediaPlayer;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class Main extends AppCompatActivity {
Intent inServ;
@Override
p... | UTF-8 | Java | 672 | java | Main.java | Java | [] | null | [] | package com.example.practica.eva3_13;
import android.app.Service;
import android.content.Intent;
import android.media.MediaPlayer;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class Main extends AppCompatActivity {
Intent inServ;
@Override
p... | 672 | 0.712798 | 0.706845 | 32 | 20.03125 | 18.888628 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4375 | false | false | 5 |
96e27ed2a468353baff4582a71648dbc059f84d6 | 23,794,118,885,356 | c85b8ac795e03a24b9b03335154180a41f298902 | /Assignments/Test.java | 6c0a28ff56eba5d1b63f5cb5030ce6c5a0d1aa57 | [] | no_license | arijitx009/Assignments | https://github.com/arijitx009/Assignments | 334a61f065c6963482c73ff4d00a2a4b80653df1 | 9c27e220da94904495ee45a750e62981e467ef0a | refs/heads/master | 2020-03-24T04:01:30.234000 | 2018-08-03T20:07:56 | 2018-08-03T20:07:56 | 142,441,079 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Scanner;
class Test
{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
System.out.println("Enter the marks");
double m1=sc.nextDouble();
double m2=sc.nextDouble();
double m3=sc.nextDouble();
if(m1>60 && m2>60 && m3>60)
{
System.out.println("Pass... | UTF-8 | Java | 496 | java | Test.java | Java | [] | null | [] | import java.util.Scanner;
class Test
{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
System.out.println("Enter the marks");
double m1=sc.nextDouble();
double m2=sc.nextDouble();
double m3=sc.nextDouble();
if(m1>60 && m2>60 && m3>60)
{
System.out.println("Pass... | 496 | 0.58871 | 0.528226 | 24 | 18.75 | 16.686447 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.208333 | false | false | 5 |
190d91fe143c270568d9e98a1b3cad491c5811df | 300,647,745,622 | 0f6b1982d5d29db8251069329ab1f01176ed337d | /PLProject2/AccountApp/src/Escudero/Balance/AccountApp.java | 49ca0286238048b77aa0d9bc858b8580939681a6 | [] | no_license | zengleo/PLProject2 | https://github.com/zengleo/PLProject2 | bcf738babf9b839305f45fa1a1581d7929507c35 | aa327b6ecb9fa058ffddde6e1bed76bc1beecea1 | refs/heads/master | 2021-01-10T01:41:00.508000 | 2016-02-20T00:34:16 | 2016-02-20T00:34:16 | 52,127,994 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Escudero.Balance;
/**
* Created by Kayleigh Escudero on 2/12/2016.
*/
public class AccountApp{
public static void main(String args[]){
// get the scanner
//Console s = new Console();
// instantiate the new checking account
CheckingAccount account = new Checking... | UTF-8 | Java | 3,761 | java | AccountApp.java | Java | [
{
"context": "package Escudero.Balance;\r\n/**\r\n * Created by Kayleigh Escudero on 2/12/2016.\r\n */\r\npublic class AccountApp{\r\n\r\n ",
"end": 63,
"score": 0.9998952746391296,
"start": 46,
"tag": "NAME",
"value": "Kayleigh Escudero"
}
] | null | [] | package Escudero.Balance;
/**
* Created by <NAME> on 2/12/2016.
*/
public class AccountApp{
public static void main(String args[]){
// get the scanner
//Console s = new Console();
// instantiate the new checking account
CheckingAccount account = new CheckingAccount();
... | 3,750 | 0.52619 | 0.52034 | 95 | 37.589474 | 32.442173 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.368421 | false | false | 5 |
869f0dca0ca7ceacac066c81792637dd832a4db1 | 18,107,582,132,204 | b60a65f58f495756c9f632a85af7011d805024c3 | /src/Newfeatures/Java7Features_MultipleExceptionhandling_Example.java | 1afe292c99b01c742456de85499140f55cac43c6 | [] | no_license | centurybits504/corejava | https://github.com/centurybits504/corejava | 9f7ebe21318051968d83ee16d9dc14123ed8d3b3 | 53616edcc6c978448327ff10140a7994a36e7fce | refs/heads/master | 2020-03-16T19:46:30.844000 | 2018-05-10T17:10:17 | 2018-05-10T17:10:17 | 132,931,100 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Newfeatures;
/*java 7 features : Multiple exceptions Example */
public class Java7Features_MultipleExceptionhandling_Example {
public static void main(String[] args) {
try {
System.out.println(1 / 0);
int[] _intarry = {100,200,300,400};
System.out.println(_intarry[5]);
} catch (Ar... | UTF-8 | Java | 416 | java | Java7Features_MultipleExceptionhandling_Example.java | Java | [] | null | [] | package Newfeatures;
/*java 7 features : Multiple exceptions Example */
public class Java7Features_MultipleExceptionhandling_Example {
public static void main(String[] args) {
try {
System.out.println(1 / 0);
int[] _intarry = {100,200,300,400};
System.out.println(_intarry[5]);
} catch (Ar... | 416 | 0.673077 | 0.632212 | 17 | 22.470589 | 22.460732 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.823529 | false | false | 5 |
9feacd610d4de435c21a49f8a117da3299af950d | 23,330,262,368,809 | 985c44d106af19da36b2179614de886c8d304660 | /Algorithm/src/divide_etc_0807/PowerTest.java | 96590e873fca2062526ff02a0e51c9ad6664889f | [] | no_license | hacjin/Daily_Study | https://github.com/hacjin/Daily_Study | 752c91cc91918737b91af8a03606db95e2a88fc7 | d0581b31f97fed7d833cbd03ce42cca94f747e54 | refs/heads/master | 2023-01-07T03:30:32.465000 | 2020-08-21T05:41:27 | 2020-08-24T05:41:27 | 232,778,013 | 0 | 0 | null | false | 2023-01-05T21:42:31 | 2020-01-09T10:00:31 | 2020-08-24T05:41:39 | 2023-01-05T21:42:30 | 38,969 | 0 | 0 | 82 | JavaScript | false | false | package divide_etc_0807;
public class PowerTest {
// 2^4 = 2^3*2
// 2^3 = 2^2 *2
// 2^2 = 2^1 *2
// 2^100 = 2^50 * 2^50
// 2^50 = 2^25 * 2^25
public static int power0(int base, int exp) {
if(exp==1) return base;
return power0(base,exp-1)*base;
}
public static int power(int base,int exp) {
... | UTF-8 | Java | 623 | java | PowerTest.java | Java | [] | null | [] | package divide_etc_0807;
public class PowerTest {
// 2^4 = 2^3*2
// 2^3 = 2^2 *2
// 2^2 = 2^1 *2
// 2^100 = 2^50 * 2^50
// 2^50 = 2^25 * 2^25
public static int power0(int base, int exp) {
if(exp==1) return base;
return power0(base,exp-1)*base;
}
public static int power(int base,int exp) {
... | 623 | 0.598374 | 0.499187 | 29 | 20.206896 | 14.983622 | 46 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.068965 | false | false | 5 |
bb53217778a9170050fb280a923fb56405857fdb | 17,952,963,363,809 | 2400b382acc778d93392e1af7b0139a2ee44b0cb | /netbeans/demo1/src/demo1/Demo1.java | d62daf356454d05f0f1ff6656efdce8acd2e9a19 | [] | no_license | rathodnirmal/Java | https://github.com/rathodnirmal/Java | 5ce3036b7c32fd4ce18a4ecbe55cdeac4f510d63 | 8f6058f9d84ac3735a23f03c3785580c35e26657 | refs/heads/master | 2018-12-08T21:55:17.353000 | 2018-09-17T16:58:35 | 2018-09-17T16:58:35 | 133,166,125 | 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 demo1;
/**
*
* @author Pirate
*/
public class Demo1 {
/**
* @param args the command line arguments
*/
pu... | UTF-8 | Java | 1,238 | java | Demo1.java | Java | [
{
"context": " the editor.\n */\npackage demo1;\n\n/**\n *\n * @author Pirate\n */\npublic class Demo1 {\n\n /**\n * @param a",
"end": 225,
"score": 0.99906986951828,
"start": 219,
"tag": "NAME",
"value": "Pirate"
}
] | 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 demo1;
/**
*
* @author Pirate
*/
public class Demo1 {
/**
* @param args the command line arguments
*/
pu... | 1,238 | 0.502423 | 0.489499 | 70 | 16.700001 | 16.968332 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.371429 | false | false | 5 |
deec5bd49f169c35369849fd0678c8713b6db04f | 21,380,347,208,537 | 10332fa4bb5bd534216bbbb72a2e49b6a390245a | /facebook/src/main/java/lowleveldesign/facebook/api/core/entities/userdefinedtypes/group/GroupMember.java | 090c95cbfaa657725e5387640c72e14345dccbb3 | [] | no_license | shubham-v/low-level-design | https://github.com/shubham-v/low-level-design | 50b91369fd6809915b73fa8c054dda75d0f02ffb | e1620fc8ee39fc74b70bd16499c0a820fcba2124 | refs/heads/main | 2023-01-08T19:50:53.280000 | 2022-11-13T08:30:20 | 2022-11-13T08:30:20 | 298,317,966 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package lowleveldesign.facebook.api.core.entities.userdefinedtypes.group;
import lowleveldesign.facebook.api.core.entities.userdefinedtypes.abstractuserdefinedtypes.Admin;
import lowleveldesign.facebook.api.core.entities.userdefinedtypes.abstractuserdefinedtypes.Member;
import org.springframework.data.cassandra.core.m... | UTF-8 | Java | 429 | java | GroupMember.java | Java | [] | null | [] | package lowleveldesign.facebook.api.core.entities.userdefinedtypes.group;
import lowleveldesign.facebook.api.core.entities.userdefinedtypes.abstractuserdefinedtypes.Admin;
import lowleveldesign.facebook.api.core.entities.userdefinedtypes.abstractuserdefinedtypes.Member;
import org.springframework.data.cassandra.core.m... | 429 | 0.862471 | 0.862471 | 10 | 41.799999 | 38.680229 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 5 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.