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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d3457951d64a90528b30aa5ccae99b1e1761fc28 | 7,619,272,043,633 | 369a2248ce062da114bdf4a65af214e243261bcf | /342 data structure/monester_pr2/.svn/pristine/fa/fa947946808530af4991d579f8079ac4f1b54398.svn-base | bc1724b635cb1eceacca5fa534e333abdc31cac2 | [] | no_license | Richard0528/Class-assignments | https://github.com/Richard0528/Class-assignments | e9ae39081e7cb24914153a2ae2539dd8bb5be5f7 | dc3a4d8953ffc930f90051ea234bf37dabc175eb | refs/heads/master | 2020-03-29T20:55:20.289000 | 2018-09-25T22:58:51 | 2018-09-25T22:58:51 | 150,338,862 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | //package mylistpackage;
import java.util.Arrays;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* Represents basic unsorted array-based list.
*
* @author modified from Building Java Programs 3rd ed.
* @version Dec 2017
* @param <E> is of any object type
*/
public class ArrayListUnsort... | UTF-8 | Java | 14,114 | fa947946808530af4991d579f8079ac4f1b54398.svn-base | Java | [] | null | [] | //package mylistpackage;
import java.util.Arrays;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* Represents basic unsorted array-based list.
*
* @author modified from Building Java Programs 3rd ed.
* @version Dec 2017
* @param <E> is of any object type
*/
public class ArrayListUnsort... | 14,114 | 0.512753 | 0.50503 | 529 | 25.680529 | 21.220198 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.803403 | false | false | 14 | |
545608a11441463c722600f9c3e2538c475b2b8b | 14,216,341,807,662 | 8667d9c3d30f1c855a64bd0974476de25689ea31 | /javaSolution/1108.DefanglingAnIPAddress.java | 0201ab07652e701aec193d84ce11d62e7110a4d2 | [] | no_license | wanglem/leetcode | https://github.com/wanglem/leetcode | 6b5a5f67d3c437f872df9d02777e38cd1ea743da | 3b7a46cad39ff173bb923ff10cf871cb16ea8858 | refs/heads/master | 2021-01-10T01:36:31.429000 | 2020-06-23T21:16:08 | 2020-06-23T21:16:11 | 46,956,111 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | class DefanglingAnIPAddress {
public String defangIPaddr(String address) {
StringBuilder res = new StringBuilder();
for (char c: address.toCharArray()) {
if (c == '.') {
res.append("[.]");
} else {
res.append(c);
}
}
... | UTF-8 | Java | 351 | java | 1108.DefanglingAnIPAddress.java | Java | [] | null | [] | class DefanglingAnIPAddress {
public String defangIPaddr(String address) {
StringBuilder res = new StringBuilder();
for (char c: address.toCharArray()) {
if (c == '.') {
res.append("[.]");
} else {
res.append(c);
}
}
... | 351 | 0.467236 | 0.467236 | 13 | 26.076923 | 15.178231 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.307692 | false | false | 14 |
e50a7d6e22b33d4addcc453e8be8b0cfdbcc5fc4 | 13,855,564,555,111 | e334222f858e71e748f2859935730359f5b88e0e | /app/src/main/java/com/app/rum_a/ui/postauth/qbloxui/quickbloxmodule/ChatModelActaul.java | 21c469e510772b0faa1d9844db0a0e15a9cce61d | [] | no_license | ArisChoice/Demo-Ru | https://github.com/ArisChoice/Demo-Ru | d9741264140f84af382d180d15977e2f7fa2f3de | 75b31f63d9b05732389bc353feecd570e3c45f1c | refs/heads/master | 2020-03-30T22:34:40.771000 | 2018-10-06T08:15:51 | 2018-10-06T08:15:51 | 151,671,696 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.app.rum_a.ui.postauth.qbloxui.quickbloxmodule;
/**
* Created by Vivek on 03-06-2017.
*/
public class ChatModelActaul {
String message;
String ios_sound;
String ios_badge;
ChatModel.Gcm gcm;
public String type;
public String getMessage() {
return message;
}
publ... | UTF-8 | Java | 1,687 | java | ChatModelActaul.java | Java | [
{
"context": "stauth.qbloxui.quickbloxmodule;\n\n/**\n * Created by Vivek on 03-06-2017.\n */\n\npublic class ChatModelActaul ",
"end": 83,
"score": 0.9635668396949768,
"start": 78,
"tag": "NAME",
"value": "Vivek"
}
] | null | [] | package com.app.rum_a.ui.postauth.qbloxui.quickbloxmodule;
/**
* Created by Vivek on 03-06-2017.
*/
public class ChatModelActaul {
String message;
String ios_sound;
String ios_badge;
ChatModel.Gcm gcm;
public String type;
public String getMessage() {
return message;
}
publ... | 1,687 | 0.56313 | 0.558388 | 90 | 17.744444 | 17.30097 | 58 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.277778 | false | false | 14 |
f0f5d8774a533d7b0dd40602cda429448660f8b0 | 13,855,564,555,321 | 1d07bfe6c841dac26a2d558ea419c9cdd2ee21eb | /src/main/java/com/hellomybody/hmb/bean/UserBody.java | bb31c45c56372f6fd5b459a424fb86baf0015bfa | [] | no_license | Ashy6/hmb | https://github.com/Ashy6/hmb | d11197f3693d0d600e9c5727bad591cc95b795d0 | 51c8690d97aaed85220389355456b5b535d2be52 | refs/heads/master | 2023-03-24T23:51:21.759000 | 2021-03-10T22:56:50 | 2021-03-10T22:56:50 | 331,216,319 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hellomybody.hmb.bean;
public class UserBody {
private int id;
private String username;
private String vital; // 肺活量
private String temperature; // 体温
private String pblood; // 血压
private String fblood; // 血脂
private String gblood; // 血糖
private String vi... | UTF-8 | Java | 4,601 | java | UserBody.java | Java | [
{
"context": "ing heart, String times) {\n this.username = username;\n this.vital = vital;\n this.tempera",
"end": 965,
"score": 0.9673077464103699,
"start": 957,
"tag": "USERNAME",
"value": "username"
},
{
"context": "sername(String username) {\n this.use... | null | [] | package com.hellomybody.hmb.bean;
public class UserBody {
private int id;
private String username;
private String vital; // 肺活量
private String temperature; // 体温
private String pblood; // 血压
private String fblood; // 血脂
private String gblood; // 血糖
private String vi... | 4,601 | 0.524619 | 0.524619 | 191 | 22.712042 | 23.383795 | 252 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.492147 | false | false | 14 |
ef9dbbf364281c2b3ef1281482e8e2b84f04180b | 19,353,122,656,690 | df7c799bbee86a6a3c726338b11b8a838760567b | /src/OfficeHours/Parrot.java | a5bad0b71bf620cce8950228887b0980d340a591 | [] | no_license | eduvinah/java-practice | https://github.com/eduvinah/java-practice | 232dc5f3240161aa08218d57e28dc96ee09ba031 | f9403a4a5f23881a379e366f2c81c16da6dee569 | refs/heads/master | 2020-05-18T04:42:41.401000 | 2019-06-17T19:26:31 | 2019-06-17T19:26:31 | 184,181,661 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package OfficeHours;
public class Parrot {
String name;
String breed;
String color;
}
| UTF-8 | Java | 92 | java | Parrot.java | Java | [] | null | [] | package OfficeHours;
public class Parrot {
String name;
String breed;
String color;
}
| 92 | 0.728261 | 0.728261 | 8 | 10.5 | 8.077747 | 21 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1 | false | false | 14 |
d933181d4bcd946111544ecc67a80f977e1e375b | 19,353,122,656,257 | 34f2fb505332f3dd0c659ca2dba9486510af32d9 | /jkzzk-jdbc/src/com/jkzzk/mapper/Minebaits.java | 69d9f98643e46511041821a72cb38136989e7fb0 | [] | no_license | jkzzk/self-learn | https://github.com/jkzzk/self-learn | 8c1abe2d437311344aef1d84fd1fe019a44ade74 | 3499d59e4a63e76f6bd904699778135b519e3c3e | refs/heads/master | 2020-09-16T17:24:14.159000 | 2020-03-18T01:42:40 | 2020-03-18T01:42:40 | 223,840,948 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jkzzk.mapper;
public class Minebaits extends MybaitsSimulation {
@Override
public String getSql(String tableName) {
return "select * from " + tableName + " where id = '83644737042513920'";
}
}
| UTF-8 | Java | 227 | java | Minebaits.java | Java | [] | null | [] | package com.jkzzk.mapper;
public class Minebaits extends MybaitsSimulation {
@Override
public String getSql(String tableName) {
return "select * from " + tableName + " where id = '83644737042513920'";
}
}
| 227 | 0.682819 | 0.60793 | 9 | 24.222221 | 26.615692 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.222222 | false | false | 14 |
1c868180b9e468a006ae280e2713ed5048b00bb9 | 38,027,640,444,855 | 93b73a6500e58314e8a15e80e7490518593057bc | /Data Structure Algorithms/AscendingLinkedList/src/com/ds/AscendingLLTester.java | 70c29e29a308b93f8547267ce95324b528e67eb3 | [] | no_license | MadhuriTeli/Assignments | https://github.com/MadhuriTeli/Assignments | 45bc800db5fe6f4c82c05fa4f7307d27286fa7cc | 85cca67dfea60f6b21c6bc4c36d53eef6e934978 | refs/heads/main | 2023-08-18T18:02:36.322000 | 2021-10-04T20:22:31 | 2021-10-04T20:22:31 | 372,739,870 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ds;
public class AscendingLLTester {
public static void main(String[] args) {
AscendingLinkedList all=new AscendingLinkedList();
all.insertAccsort(5);
all.insertAccsort(10);
all.insertAccsort(2);
all.insertAccsort(3);
all.insertAccsort(30);
all.insertAccsort(7... | UTF-8 | Java | 542 | java | AscendingLLTester.java | Java | [] | null | [] | package com.ds;
public class AscendingLLTester {
public static void main(String[] args) {
AscendingLinkedList all=new AscendingLinkedList();
all.insertAccsort(5);
all.insertAccsort(10);
all.insertAccsort(2);
all.insertAccsort(3);
all.insertAccsort(30);
all.insertAccsort(7... | 542 | 0.618081 | 0.583026 | 24 | 21.583334 | 14.476753 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.083333 | false | false | 14 |
31011a2a44c778824eead8fa94ecabdfb2826564 | 1,967,095,090,907 | 4ab9d19c7a5ba80117d00f444c374e17c65d8301 | /CBCRmi/src/server/Serveur.java | deea51cc0af6c688b4f321829ea692647d66c41b | [] | no_license | atik5u/Prog_reseau | https://github.com/atik5u/Prog_reseau | 77e6bd1d63092dc647617580e36eedcb16c6a555 | 67d4d69fb3f70a82d4d552650ff19c8fe4619013 | refs/heads/master | 2023-02-02T07:30:49.716000 | 2020-12-18T17:27:37 | 2020-12-18T17:27:37 | 317,831,963 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package server;
import java.rmi.RemoteException;
import java.rmi.server.UnicastRemoteObject;
import java.util.ArrayList;
import java.util.List;
import java.util.Vector;
public class Serveur extends UnicastRemoteObject implements ServeurIntf{
private static final long serialVersionUID = 1L;
public Vector... | UTF-8 | Java | 1,781 | java | Serveur.java | Java | [] | null | [] | package server;
import java.rmi.RemoteException;
import java.rmi.server.UnicastRemoteObject;
import java.util.ArrayList;
import java.util.List;
import java.util.Vector;
public class Serveur extends UnicastRemoteObject implements ServeurIntf{
private static final long serialVersionUID = 1L;
public Vector... | 1,781 | 0.672094 | 0.668164 | 68 | 24.191177 | 24.179632 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.955882 | false | false | 14 |
9b98e43cea91c4ac27ab7e7e2664f33f1415063d | 35,141,422,442,017 | 757bfe5708eccc0c2ef23d9a18c5dec950a5b8bd | /wanna/src/main/java/com/wanna/network/handler/NewActivityHandler.java | a863973758c55a808dd43a5e3485f87b0ba75f56 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | joshk44/Wanna-AndroidClient | https://github.com/joshk44/Wanna-AndroidClient | 01b00f53d100cf5d7e80f5aa8a89a5b339a970de | 1cc0931774f635e3ae2b8b33fa947ce711e1331c | refs/heads/master | 2020-03-20T20:22:25.301000 | 2019-11-24T20:02:00 | 2019-11-24T20:02:00 | 137,684,035 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.wanna.network.handler;
/**
* Created by fede on 15/04/15.
*/
public interface NewActivityHandler extends BaseHandler {
} | UTF-8 | Java | 135 | java | NewActivityHandler.java | Java | [
{
"context": "kage com.wanna.network.handler;\n\n/**\n * Created by fede on 15/04/15.\n */\npublic interface NewActivityHand",
"end": 58,
"score": 0.9995832443237305,
"start": 54,
"tag": "USERNAME",
"value": "fede"
}
] | null | [] | package com.wanna.network.handler;
/**
* Created by fede on 15/04/15.
*/
public interface NewActivityHandler extends BaseHandler {
} | 135 | 0.748148 | 0.703704 | 7 | 18.428572 | 20.728567 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.142857 | false | false | 14 |
1bf27b752b96c3b8572da841704aa13786bb8492 | 10,445,360,520,943 | e1d87c5ae5e3b625c2155a4b43f9243edfabfa36 | /chongqingliangyou/src/main/java/com/chongqingliangyou/system/UIApplication.java | 1f43d6c973a7483227e83cb9098a8493b4293a5c | [] | no_license | MrZJ/bangelvyou | https://github.com/MrZJ/bangelvyou | 22a2ba37903b18efb1efb921a39f3153d39f3b3c | d5f9e9e3bd819009be88d6c18c3309b4577bcf21 | refs/heads/main | 2023-01-10T03:46:21.469000 | 2020-11-17T07:24:56 | 2020-11-17T07:24:56 | 307,940,686 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.chongqingliangyou.system;
import android.app.Application;
import android.content.Context;
import com.baidu.mapapi.SDKInitializer;
import com.chongqingliangyou.system.util.CacheImgUtil;
import com.nostra13.universalimageloader.cache.disc.naming.Md5FileNameGenerator;
import com.nostra13.universalimageloader... | UTF-8 | Java | 1,818 | java | UIApplication.java | Java | [
{
"context": ".utils.L;\n\nimport org.xutils.x;\n\n/**\n * Created by Administrator on 2016/6/27.\n */\npublic class UIApplication exte",
"end": 665,
"score": 0.7693471312522888,
"start": 652,
"tag": "USERNAME",
"value": "Administrator"
}
] | null | [] | package com.chongqingliangyou.system;
import android.app.Application;
import android.content.Context;
import com.baidu.mapapi.SDKInitializer;
import com.chongqingliangyou.system.util.CacheImgUtil;
import com.nostra13.universalimageloader.cache.disc.naming.Md5FileNameGenerator;
import com.nostra13.universalimageloader... | 1,818 | 0.725806 | 0.709677 | 52 | 33.576923 | 28.704292 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.480769 | false | false | 14 |
69560cd8da36e03b634ed5289c97157a76a35e62 | 25,451,976,247,507 | 69cced01579103ccbb4703c1a9b109b71525764f | /src/main/java/br/edu/api/iot/repository/impl/MeasurementRepositoryImpl.java | 9e08dd9fbf307c557bd0c250d173ea4fb8c45cd1 | [] | no_license | gabrielsmartins/api-iot-health | https://github.com/gabrielsmartins/api-iot-health | 229e4b94c8d520fe74feaf697e6d65d3815c3829 | 6fe5659af912e7ca67198b9482fda0ebf01b4f9c | refs/heads/master | 2022-10-01T03:39:25.961000 | 2019-04-19T18:02:22 | 2019-04-19T18:02:22 | 157,018,403 | 0 | 0 | null | false | 2022-09-08T00:59:27 | 2018-11-10T20:23:38 | 2019-04-19T18:03:24 | 2022-09-08T00:59:27 | 108 | 0 | 0 | 5 | Java | false | false | package br.edu.api.iot.repository.impl;
import java.util.List;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.TypedQuery;
import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.CriteriaQuery;
import javax.persistence.criteria... | UTF-8 | Java | 3,050 | java | MeasurementRepositoryImpl.java | Java | [] | null | [] | package br.edu.api.iot.repository.impl;
import java.util.List;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.TypedQuery;
import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.CriteriaQuery;
import javax.persistence.criteria... | 3,050 | 0.801967 | 0.801967 | 63 | 47.412697 | 34.86784 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.936508 | false | false | 14 |
3ce511291299f2eb173a123ee7a175778bbbb038 | 35,338,990,943,204 | e10d978778bd62f54f068b99927f7459000b3b9b | /Strings/Minimum Window Substring.java | 677f539bd4c50fffe656b9d6f149fb70e87e0c96 | [] | no_license | KPechetti/LeetCode | https://github.com/KPechetti/LeetCode | b47a7a18f785bee58c50e218667e69b008f58ba7 | 981bfd830855e86f9368ecfd4cb33a7fcb5825c3 | refs/heads/master | 2020-09-12T20:01:12.582000 | 2020-03-05T16:38:44 | 2020-03-05T16:38:44 | 222,536,033 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | class Solution {
public String minWindow(String s, String t) {
if(s == null || t== null)return "";
String res = "";
int left = 0, count =0, max = Integer.MAX_VALUE;
int [] ch = new int [128];
for(char c: t.toCharArray())
++ch[c];
... | UTF-8 | Java | 851 | java | Minimum Window Substring.java | Java | [] | null | [] | class Solution {
public String minWindow(String s, String t) {
if(s == null || t== null)return "";
String res = "";
int left = 0, count =0, max = Integer.MAX_VALUE;
int [] ch = new int [128];
for(char c: t.toCharArray())
++ch[c];
... | 851 | 0.316099 | 0.303173 | 34 | 24.029411 | 14.963653 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.558824 | false | false | 14 |
534aa03ff209cb59c22aa32b33fb814ab99fde37 | 38,878,043,991,866 | eff4f9f67c7112b6800066e062e233cf03f21a72 | /Problems/Parameters and their values/src/Main.java | f336ef3faef5ba31efed206664c672ed0a0bd861 | [] | no_license | DMdavydov/Flashcards-hyperskill | https://github.com/DMdavydov/Flashcards-hyperskill | 76996d5248ecdb38a31988111d32a2c6b89fedd6 | 06e4170695da7de14302dc59d724f528e6f2d842 | refs/heads/master | 2022-11-19T02:21:36.037000 | 2020-07-20T17:08:56 | 2020-07-20T17:08:56 | 280,148,341 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | class Problem {
public static void main(String[] args) {
for (int a = 0; a < args.length; a++) {
System.out.println(args[a] + "=" + args[++a]);
}
}
} | UTF-8 | Java | 186 | java | Main.java | Java | [] | null | [] | class Problem {
public static void main(String[] args) {
for (int a = 0; a < args.length; a++) {
System.out.println(args[a] + "=" + args[++a]);
}
}
} | 186 | 0.473118 | 0.467742 | 8 | 22.375 | 21.897131 | 58 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.375 | false | false | 14 |
a5f22fcf2bd64e836509cc6f12dc8434ae7240c6 | 13,924,284,034,976 | b4dc9e834062c3adf2380b340632bafb73466014 | /integ-junit/src/main/java/il/co/topq/integframework/junit/report/StdoutReporter.java | 07a1c17752f6266fa3cdfea2fc8da8c4cfa573ce | [] | no_license | nimroda/integ-framework | https://github.com/nimroda/integ-framework | b3f547633dd5aab71f718f87fff9afb8f8be2854 | 4378750a958e9e6c1b6c74803aa3458140f0a2ac | refs/heads/master | 2021-12-03T19:32:50.178000 | 2020-11-02T08:01:12 | 2020-11-02T08:01:12 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package il.co.topq.integframework.junit.report;
import org.junit.runner.Description;
import org.junit.runner.notification.Failure;
import org.junit.runner.notification.RunListener;
public class StdoutReporter extends RunListener implements ReporterI {
private static final String SEPARATOR = "----------------------... | UTF-8 | Java | 3,407 | java | StdoutReporter.java | Java | [] | null | [] | package il.co.topq.integframework.junit.report;
import org.junit.runner.Description;
import org.junit.runner.notification.Failure;
import org.junit.runner.notification.RunListener;
public class StdoutReporter extends RunListener implements ReporterI {
private static final String SEPARATOR = "----------------------... | 3,407 | 0.674787 | 0.673613 | 122 | 26.926229 | 30.873133 | 125 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.532787 | false | false | 14 |
cb0aac3aa3da0f965a2eb11c0dd5e5c01d3fae07 | 34,016,141,035,181 | 4a10dc8955f9d4479b783d37155c73634f069a79 | /app/src/main/java/com/itislevel/lyl/adapter/PropretyBillAdapter.java | 0264ea23adbece5ba9e3ed973fe8713a058d9aec | [] | no_license | hyb1234hi/yby1 | https://github.com/hyb1234hi/yby1 | 41f2eb123d96f8a55728b11aeaf42271e782cc08 | 5f106784715ee616ea6bb0e93a5ed214ad5b1352 | refs/heads/master | 2020-06-19T10:58:08.674000 | 2018-07-11T11:22:21 | 2018-07-11T11:22:21 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.itislevel.lyl.adapter;
import android.app.Activity;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.chad.library.adapter.base.BaseQuickAdapter;
import com.chad.library.adapter.base.BaseViewHolder;
import com.itislevel.lyl.R;
import com.itislevel.lyl.app... | UTF-8 | Java | 1,938 | java | PropretyBillAdapter.java | Java | [
{
"context": "ity.p_home_image_url;\n\n/**\n * desc:功能说明必写\n * user:itisi\n * date:2017/12/5.14:29\n * path:com.itislevel.lyl",
"end": 667,
"score": 0.9995908737182617,
"start": 662,
"tag": "USERNAME",
"value": "itisi"
}
] | null | [] | package com.itislevel.lyl.adapter;
import android.app.Activity;
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;
import com.chad.library.adapter.base.BaseQuickAdapter;
import com.chad.library.adapter.base.BaseViewHolder;
import com.itislevel.lyl.R;
import com.itislevel.lyl.app... | 1,938 | 0.716981 | 0.710692 | 53 | 35 | 27.536596 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.754717 | false | false | 14 |
e738db782ec489e690f458365c84c388516cf623 | 22,668,837,427,002 | 00e8fa14dcbdcc7ad81ce1cd905ad87c04c22c8b | /sources/org/andengine/util/animationpack/AnimationPack.java | 11571112652a506bb5f038ae13636279d231c23a | [] | no_license | Dovydove/GodGameTranslation | https://github.com/Dovydove/GodGameTranslation | ec4c1f793875089e0355cf2fba4cad82c237dd2b | 0715105526eb606f932e3956e14a26fe20cd033a | refs/heads/master | 2021-05-24T07:42:04.453000 | 2020-04-07T13:50:05 | 2020-04-07T13:50:05 | 253,454,454 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.andengine.util.animationpack;
import org.andengine.util.texturepack.TexturePackLibrary;
public class AnimationPack {
private final AnimationPackTiledTextureRegionLibrary mAnimationPackTiledTextureRegionLibrary;
private final TexturePackLibrary mTexturePackLibrary;
public AnimationPack(Texture... | UTF-8 | Java | 858 | java | AnimationPack.java | Java | [] | null | [] | package org.andengine.util.animationpack;
import org.andengine.util.texturepack.TexturePackLibrary;
public class AnimationPack {
private final AnimationPackTiledTextureRegionLibrary mAnimationPackTiledTextureRegionLibrary;
private final TexturePackLibrary mTexturePackLibrary;
public AnimationPack(Texture... | 858 | 0.82634 | 0.82634 | 21 | 39.857143 | 40.695484 | 146 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.428571 | false | false | 14 |
c603c9be7cdf65c857b09abb74314d359a25f856 | 24,781,961,336,538 | cea4d5ccb3d7759b0b39d10b5c68d2140a1403b7 | /J2SE/Demo/src/com/junenatte/mybatis/Test.java | 1d3c768453d786552c6851b05a007c183c025578 | [] | no_license | Junenatte-and-little-pig/java-fast-learning | https://github.com/Junenatte-and-little-pig/java-fast-learning | d335b1ede00abfd3675efe156a41b8c9e1383ec5 | 134de01bc8001e1cd914c9e2f9c54160f66bafa1 | refs/heads/master | 2020-04-10T12:08:48.425000 | 2020-03-14T07:42:59 | 2020-03-14T07:42:59 | 161,012,844 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.junenatte.mybatis;
import com.junenatte.mybatis.bean.Book;
import com.junenatte.mybatis.bean.Category;
import com.junenatte.mybatis.mapper.BookMapper;
import com.junenatte.mybatis.mapper.CategoryMapper;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.i... | UTF-8 | Java | 1,644 | java | Test.java | Java | [] | null | [] | package com.junenatte.mybatis;
import com.junenatte.mybatis.bean.Book;
import com.junenatte.mybatis.bean.Category;
import com.junenatte.mybatis.mapper.BookMapper;
import com.junenatte.mybatis.mapper.CategoryMapper;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.i... | 1,644 | 0.653285 | 0.652676 | 38 | 42.263157 | 30.54133 | 127 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.657895 | false | false | 14 |
cca590fb9f14de67ff64fff33bd64f48e368c54f | 25,013,889,556,880 | 6f6355f5af5a5f9dcd374e8cbacc3f6b60f903c7 | /java-asm/ow2-asm-example/src/main/java/com/arjunsk/asm/filter/allclasses/AllClassTransformDriver.java | d2c192340845bb4c7fe14cb524c49600f87a8383 | [] | no_license | doytsujin/java-bytecode | https://github.com/doytsujin/java-bytecode | 4db13491fe4215266619a5087100cbbff1d529b1 | 6afa18e6ab434ab1b26f53c7bba06b48bc83b462 | refs/heads/master | 2023-04-30T08:24:22.012000 | 2021-03-18T18:07:42 | 2021-03-18T18:07:42 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.arjunsk.asm.filter.allclasses;
import com.arjunsk.asm.filter.visiterimpl.support.ChangeVersionAdapter;
import java.lang.instrument.Instrumentation;
import org.objectweb.asm.ClassReader;
import org.objectweb.asm.ClassVisitor;
import org.objectweb.asm.ClassWriter;
/**
*
*
* <pre>
* To perform Transforma... | UTF-8 | Java | 1,725 | java | AllClassTransformDriver.java | Java | [] | null | [] | package com.arjunsk.asm.filter.allclasses;
import com.arjunsk.asm.filter.visiterimpl.support.ChangeVersionAdapter;
import java.lang.instrument.Instrumentation;
import org.objectweb.asm.ClassReader;
import org.objectweb.asm.ClassVisitor;
import org.objectweb.asm.ClassWriter;
/**
*
*
* <pre>
* To perform Transforma... | 1,725 | 0.65913 | 0.645217 | 57 | 29.263159 | 27.759321 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.491228 | false | false | 14 |
9c6a0883328230ce66f45d070b42b437f98240da | 17,248,588,687,987 | 9a62c1453d07cd84ac609560bcca49c38e02bf51 | /src/main/java/com/kg/ajaxservlet/controller/Helloservlet.java | 7ee7adc3f9cea6054574d21841ed861f5b010883 | [] | no_license | divyakeerthana97/unittesting | https://github.com/divyakeerthana97/unittesting | c1e4f37c3bfe25fd1d0cddfb1570e30e0edfbf40 | ca197d84177d2470bf0997999ce909a78a3e7e6f | refs/heads/master | 2020-04-16T12:47:39.202000 | 2019-01-14T04:43:34 | 2019-01-14T04:43:34 | 165,595,867 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package com.kg.ajaxservlet.controller;
import java.io.IOException;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.ht... | UTF-8 | Java | 5,570 | java | Helloservlet.java | Java | [] | null | [] |
package com.kg.ajaxservlet.controller;
import java.io.IOException;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.ht... | 5,570 | 0.647217 | 0.64632 | 149 | 36.382549 | 30.767279 | 121 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.684564 | false | false | 14 |
31614d646d3f9929f85591d3b8f9d060954c688e | 31,550,829,803,040 | 8b16986bd30dce1079ecc07376487259294eca75 | /src/steam/Account.java | 5cbb116e74ebbd332dfe9e8112324a668df108c7 | [] | no_license | ScopedLeo/CaseAdministration | https://github.com/ScopedLeo/CaseAdministration | 3f0036163b3b30435e98d654fc0a0a559e99f4b9 | faacca050dddd04ab97391319f75f9c432d5048d | refs/heads/master | 2019-12-16T11:08:54.311000 | 2016-06-21T12:46:19 | 2016-06-21T12:46:19 | 61,290,037 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package steam;
public class Account {
private String url;
private String name;
private Inventory inventory;
Account(String url) {
this.url = url;
name = "?";
inventory = new Inventory();
}
public String getName() {
return name;
}
void setName(String name) {
this.name = name;
... | UTF-8 | Java | 620 | java | Account.java | Java | [] | null | [] | package steam;
public class Account {
private String url;
private String name;
private Inventory inventory;
Account(String url) {
this.url = url;
name = "?";
inventory = new Inventory();
}
public String getName() {
return name;
}
void setName(String name) {
this.name = name;
... | 620 | 0.61129 | 0.604839 | 38 | 14.315789 | 13.881273 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.473684 | false | false | 14 |
1a5711fdc320acf7f07250b3ff2082ef4efff09b | 24,713,241,845,810 | 2db74b9ec1dfc8afbdbc1a95fd39ba5ce636c269 | /src/hotciv/standard/Decorator.java | 20971dee0ec87c84505d13a33298cca37e8f7da5 | [] | no_license | sorenbgregersen/hotciv-view | https://github.com/sorenbgregersen/hotciv-view | 5531d05d71e9e9a7d5379ebd5573d638393284f5 | ac86026382cc7e8591ed918d99689acbdcba2350 | refs/heads/master | 2016-08-09T06:04:19.410000 | 2015-12-28T15:04:43 | 2015-12-28T15:04:43 | 48,124,033 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package hotciv.standard;
import hotciv.framework.*;
import hotciv.variance.concreteStrategies.LogDecorator;
// gameimpl decorator that logs all activities
public class Decorator implements Game {
public Game decoratedGame;
public Game game;
public Decorator(Game decoratedGame){
this.decoratedGam... | UTF-8 | Java | 1,793 | java | Decorator.java | Java | [] | null | [] | package hotciv.standard;
import hotciv.framework.*;
import hotciv.variance.concreteStrategies.LogDecorator;
// gameimpl decorator that logs all activities
public class Decorator implements Game {
public Game decoratedGame;
public Game game;
public Decorator(Game decoratedGame){
this.decoratedGam... | 1,793 | 0.652538 | 0.652538 | 87 | 19.609196 | 19.995031 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.252874 | false | false | 14 |
61d999ea1feffa431dfa34d149231835b218f640 | 481,036,350,199 | cfc5f3aeb6b7831f714e45a7fa822a67cdcff1e1 | /app/src/main/java/com/handsome/projectnz/CustomView/ProjectDataDownloadView.java | b63cc392f63739d4a4ad72f3e41eeda23805bfda | [] | no_license | AndroidHensen/ProjectNJ | https://github.com/AndroidHensen/ProjectNJ | fa58348f32df01655203b8daa01d0a862434cec3 | d0b64e76c6bfe613d8818ddedab2777e80db78fd | refs/heads/master | 2021-05-12T07:42:19.586000 | 2018-02-25T12:31:19 | 2018-02-25T12:31:19 | 117,252,537 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.handsome.projectnz.CustomView;
import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.TextView;
import com... | UTF-8 | Java | 4,710 | java | ProjectDataDownloadView.java | Java | [
{
"context": "mport com.handsome.projectnz.R;\n\n/**\n * Created by 柯东煜 on 2018/1/26.\n */\n\npublic class ProjectDataDownlo",
"end": 564,
"score": 0.9997937083244324,
"start": 561,
"tag": "NAME",
"value": "柯东煜"
}
] | null | [] | package com.handsome.projectnz.CustomView;
import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.TextView;
import com... | 4,710 | 0.634257 | 0.632308 | 133 | 33.721806 | 26.379347 | 146 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.646617 | false | false | 14 |
c0f08bc2baa2abee38cfbdaf64ffa51e4105e18d | 16,449,724,790,031 | f1e4ad5c5039abaada5d12fee5d8b55a57a0d571 | /src/org/rge/window/Input.java | 2a874da2f4ff44aaaa6e1572797734270bfee1cd | [] | no_license | miningmanna/RaiderGameEngine | https://github.com/miningmanna/RaiderGameEngine | c77890bb70b99a5f0bd6797edbef255d8c5d2140 | 1eb5b3771a06c4a0486da67128f7a2972f142134 | refs/heads/master | 2021-07-17T04:28:29.423000 | 2020-08-17T10:40:38 | 2020-08-17T10:40:38 | 200,296,794 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.rge.window;
import org.joml.Vector4f;
import org.luaj.vm2.LuaInteger;
import org.luaj.vm2.LuaString;
import org.luaj.vm2.LuaValue;
import org.luaj.vm2.lib.OneArgFunction;
import org.luaj.vm2.lib.ZeroArgFunction;
import org.lwjgl.glfw.GLFWCursorPosCallbackI;
import org.lwjgl.glfw.GLFWKeyCallbackI;
import or... | UTF-8 | Java | 8,579 | java | Input.java | Java | [] | null | [] | package org.rge.window;
import org.joml.Vector4f;
import org.luaj.vm2.LuaInteger;
import org.luaj.vm2.LuaString;
import org.luaj.vm2.LuaValue;
import org.luaj.vm2.lib.OneArgFunction;
import org.luaj.vm2.lib.ZeroArgFunction;
import org.lwjgl.glfw.GLFWCursorPosCallbackI;
import org.lwjgl.glfw.GLFWKeyCallbackI;
import or... | 8,579 | 0.639468 | 0.631426 | 402 | 20.340796 | 16.864275 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.164179 | false | false | 14 |
eb5db453aa5e39452837589e8188a935b5e0ded0 | 16,449,724,790,836 | 0202d4da770fa7a40cd6219d2ad9abfb985fd323 | /GeeksForGeek/src/TreePractice/BinaryTree.java | dec0b93aee366e32556694dc9d825bcb8c5a3424 | [] | no_license | kuheli004/GeeksForGeeks | https://github.com/kuheli004/GeeksForGeeks | f527aa1956b65ca5b4100e65c06c12738cb546c0 | 1f8100ee24ba41abb2b9d2b6cfd28e675fcfed37 | refs/heads/master | 2021-01-20T05:21:01.653000 | 2017-12-09T18:14:07 | 2017-12-09T18:14:07 | 101,435,701 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package TreePractice;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Queue;
import java.util.Set;
import java.util.Stack;
import java.util.TreeMap;
public class BinaryTree ... | UTF-8 | Java | 22,882 | java | BinaryTree.java | Java | [] | null | [] | package TreePractice;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Queue;
import java.util.Set;
import java.util.Stack;
import java.util.TreeMap;
public class BinaryTree ... | 22,882 | 0.572065 | 0.565554 | 878 | 24.061504 | 20.023752 | 87 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.31549 | false | false | 14 |
c14edf141fa202de18a37a3daffd5ae143e4e732 | 20,186,346,342,176 | 60302b5882569e6c0a45873d23acec0b8c208597 | /src/cs12420/group/listeners/MenuListener.java | 0ffea450e855f34ffaee2723e8048b09ca22d1ca | [] | no_license | MerddinEmrys/DesignThenBlueJ | https://github.com/MerddinEmrys/DesignThenBlueJ | 694a9049671c375a9ca6e7518e88f6a8cdb12036 | 49482c5f60aa51aec9addcdd3b5e9d907cb7083f | refs/heads/master | 2016-08-06T12:47:28.984000 | 2015-04-09T15:37:49 | 2015-04-09T15:37:49 | 33,677,445 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cs12420.group.listeners;
import cs12420.group.main.MainAppFrame;
import java.awt.event.*;
public class MenuListener implements ActionListener {
public MenuListener(MainAppFrame maF) {
}
public void actionPerformed(ActionEvent e) {
String actionCommand = e.getActionCommand();
if ... | UTF-8 | Java | 1,377 | java | MenuListener.java | Java | [] | null | [] | package cs12420.group.listeners;
import cs12420.group.main.MainAppFrame;
import java.awt.event.*;
public class MenuListener implements ActionListener {
public MenuListener(MainAppFrame maF) {
}
public void actionPerformed(ActionEvent e) {
String actionCommand = e.getActionCommand();
if ... | 1,377 | 0.632535 | 0.624546 | 34 | 39.529411 | 24.846867 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.382353 | false | false | 14 |
8ade2a184720552855c2c4ebf7c9c80262f800dd | 21,921,513,133,992 | e4d76527bf5a707b4b56cd552e49c5f30617897d | /src/Controller/Record.java | ea4e43a88f04c9800e4a01dc6b46a164c4a163d7 | [] | no_license | wanxinli/Scottish-Dance-Database | https://github.com/wanxinli/Scottish-Dance-Database | 1b0a48b22ffb9a44e9a4b778ebd951247e1aa18f | aa89ccc76e7f168a40f65b0bc7a1822b567d6c77 | refs/heads/master | 2021-08-11T01:57:44.789000 | 2016-12-11T05:36:42 | 2016-12-11T05:36:42 | 110,497,726 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Controller;
import java.util.List;
public class Record extends Controller{
private int artistId; // Artist
private int typeId; // single character {R,S,M,J,h,etc}
private int reps; // repetitions
private int barsPerRepeat; // bars per repetition
private int playTime; // length of the recording
pr... | UTF-8 | Java | 1,763 | java | Record.java | Java | [] | null | [] | package Controller;
import java.util.List;
public class Record extends Controller{
private int artistId; // Artist
private int typeId; // single character {R,S,M,J,h,etc}
private int reps; // repetitions
private int barsPerRepeat; // bars per repetition
private int playTime; // length of the recording
pr... | 1,763 | 0.701078 | 0.701078 | 93 | 17.967741 | 19.516991 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.569893 | false | false | 14 |
436dcbb7d4ac9d39a92bc36f13ecf501e769699e | 21,921,513,132,599 | 169ab1a3efec39b847b59e7119b27b272f29edee | /app/src/main/java/com/leathersoft/parleo/network/model/EventViewModel.java | 787ef60d7f8e8e61682caa56804f6e5ba9b52c6b | [] | no_license | SpiderSwift/Parleo | https://github.com/SpiderSwift/Parleo | a0bdbbafcaf881cce6cfb9875826176d301fcc84 | 8d986de0f0791a511bc4ba7e4797462244f2a366 | refs/heads/master | 2020-04-25T10:42:36.520000 | 2019-05-13T09:48:03 | 2019-05-13T09:48:03 | 172,718,763 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.leathersoft.parleo.network.model;
import androidx.lifecycle.LiveData;
import androidx.lifecycle.ViewModel;
import androidx.paging.LivePagedListBuilder;
import androidx.paging.PageKeyedDataSource;
import androidx.paging.PagedList;
public class EventViewModel extends ViewModel {
private LiveData<PagedL... | UTF-8 | Java | 1,269 | java | EventViewModel.java | Java | [] | null | [] | package com.leathersoft.parleo.network.model;
import androidx.lifecycle.LiveData;
import androidx.lifecycle.ViewModel;
import androidx.paging.LivePagedListBuilder;
import androidx.paging.PageKeyedDataSource;
import androidx.paging.PagedList;
public class EventViewModel extends ViewModel {
private LiveData<PagedL... | 1,269 | 0.710008 | 0.710008 | 40 | 30.725 | 28.142483 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.45 | false | false | 14 |
f3d021afa703e88ff0fd836f00de0718395bcaf8 | 14,018,773,296,011 | 777438073b2ea71561fcc62bd2d85fbd3cba75d0 | /muhsina/server.java~ | 8a5778b560f0c24b130a72c79ee72cc085c11228 | [] | no_license | muhsinakadar/favourites | https://github.com/muhsinakadar/favourites | 7d7c71fcbc0005226d5680ea2d00c1fd8ce8edb8 | 02146edfe8776be33e36494cd9fa1467a07dbff7 | refs/heads/master | 2021-09-09T07:16:41.894000 | 2018-03-14T06:43:58 | 2018-03-14T06:43:58 | 125,164,873 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.*;
import java.net.*;
import java.io.*;
class server implements Runnable
{ static Socket s;
public void run()
{
try
{
InputStream i=s.getInputStream();
Scanner sc=new Scanner(i);
String str="";
while(!str.equals("stop"))
{
str=sc.next();
System.out.println(str);
Th... | UTF-8 | Java | 819 | server.java~ | Java | [
{
"context": " main(String arg[])\n\t{\n\t\ttry\n\t\t{\n\t\t\ts=new Socket(\"172.20.13.116\",1048);\n\t\t\tThread t=new Thread(new client());\n\t\t\t",
"end": 457,
"score": 0.9996141195297241,
"start": 444,
"tag": "IP_ADDRESS",
"value": "172.20.13.116"
}
] | null | [] | import java.util.*;
import java.net.*;
import java.io.*;
class server implements Runnable
{ static Socket s;
public void run()
{
try
{
InputStream i=s.getInputStream();
Scanner sc=new Scanner(i);
String str="";
while(!str.equals("stop"))
{
str=sc.next();
System.out.println(str);
Th... | 819 | 0.604396 | 0.579976 | 47 | 16.425531 | 12.739192 | 39 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.680851 | false | false | 14 | |
cf56704da3e9721357f58b072d5d21e059dcf35d | 28,656,021,854,612 | ce53ab2fc2c4ed37ed77d5f2e36537b679aeb213 | /app/src/main/java/test/bwie/com/fifteenminutes/activity/Main2Activity.java | 29179506c056c8416050e98e2d8baad52529a4d2 | [] | no_license | ZHANGKUN0917/Fifteenminutes | https://github.com/ZHANGKUN0917/Fifteenminutes | 5b0427743986ce5b9769709a2fb22e8f6b89be6f | 96c97986f8da4863c24134b624e373bae82dfa4a | refs/heads/master | 2021-07-24T06:31:11.198000 | 2017-11-03T13:34:15 | 2017-11-03T13:34:15 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package test.bwie.com.fifteenminutes.activity;
import test.bwie.com.fifteenminutes.R;
public class Main2Activity extends BaseActivity{
@Override
public void initview() {
}
@Override
public void initdata() {
}
@Override
public int setview() {
return R.layout.activity_main2;
... | UTF-8 | Java | 327 | java | Main2Activity.java | Java | [] | null | [] | package test.bwie.com.fifteenminutes.activity;
import test.bwie.com.fifteenminutes.R;
public class Main2Activity extends BaseActivity{
@Override
public void initview() {
}
@Override
public void initdata() {
}
@Override
public int setview() {
return R.layout.activity_main2;
... | 327 | 0.663609 | 0.657492 | 19 | 16.210526 | 16.573851 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.157895 | false | false | 14 |
422ee02206b6e2522b9df95128e553775bf3547e | 22,445,499,137,215 | c704e95fc50ea5f458afb92ea10365c9ffe3d32f | /src/main/java/cn/edu/swpu/cins/openday/model/service/ScoreRank.java | 47e8ccc1d57ee90cd118ab33b8b2f27c7e0fd659 | [] | no_license | kbyyd24/cins-openday | https://github.com/kbyyd24/cins-openday | 4bcda1a98611ca546019ad111f581c37e9f2f92b | 7b3e39737773880e550037fd368bac7e251b0851 | refs/heads/master | 2020-04-06T05:59:00.526000 | 2017-03-18T12:36:57 | 2017-03-18T12:36:57 | 73,610,475 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.edu.swpu.cins.openday.model.service;
public class ScoreRank {
private String name;
private Integer id;
private Float score;
private Long time;
public ScoreRank() {}
public ScoreRank(String groupName, int groupId, float score, long time) {
name = groupName;
id = groupId;
this.score = score;
t... | UTF-8 | Java | 1,577 | java | ScoreRank.java | Java | [] | null | [] | package cn.edu.swpu.cins.openday.model.service;
public class ScoreRank {
private String name;
private Integer id;
private Float score;
private Long time;
public ScoreRank() {}
public ScoreRank(String groupName, int groupId, float score, long time) {
name = groupName;
id = groupId;
this.score = score;
t... | 1,577 | 0.649334 | 0.642993 | 71 | 21.211267 | 23.780046 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.56338 | false | false | 14 |
47f70369addd647afd0dc8cf1b13d09aa63a2ae7 | 5,927,054,917,023 | deb7599c8fa425fec9c05785d45c460af6e937ff | /practice/src/main/java/leetcode/maxNodePathInTree.java | 58e5fb29fac055e61b2ace4c8b0ddeb5c5298c5a | [] | no_license | lanqiuju/coder | https://github.com/lanqiuju/coder | 0a2a4b79b14e918d32ff2f809d4171fd79a281fe | 904d085d744e16ebb3c778ad92795b9167b70717 | refs/heads/master | 2016-09-06T03:07:55.539000 | 2014-07-02T07:12:55 | 2014-07-02T07:12:55 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
*
*/
package leetcode;
/**
* @author qiuju
*
*/
class Node {
int data;
Node left;
Node right;
Node(int x) {
data = x;
left = null;
right = null;
}
}
public class maxNodePathInTree {
public int maxPathInTree(Node root, int maxpath) {
int left = 0;
int right = 0;
if (root.left != null) {
l... | UTF-8 | Java | 556 | java | maxNodePathInTree.java | Java | [
{
"context": "/**\n * \n */\npackage leetcode;\n\n/**\n * @author qiuju\n *\n */\nclass Node {\n\tint data;\n\tNode left;\n\tNode ",
"end": 51,
"score": 0.9532281756401062,
"start": 46,
"tag": "USERNAME",
"value": "qiuju"
}
] | null | [] | /**
*
*/
package leetcode;
/**
* @author qiuju
*
*/
class Node {
int data;
Node left;
Node right;
Node(int x) {
data = x;
left = null;
right = null;
}
}
public class maxNodePathInTree {
public int maxPathInTree(Node root, int maxpath) {
int left = 0;
int right = 0;
if (root.left != null) {
l... | 556 | 0.607914 | 0.604317 | 34 | 15.352942 | 17.214705 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.588235 | false | false | 14 |
5ee841175387785ca5db480d77061c84593c2e89 | 13,005,161,011,618 | d58f85dce0284387e20a3801765bd2964b4018c8 | /src/sound/Token.java | ce9f6c10009d39e5eff6b006d414d814ce4cf158 | [] | no_license | emericaism/abcPlayer | https://github.com/emericaism/abcPlayer | 93611c9ba17512945a97dd16567b7988b34c8987 | 8271a06fa6a037165117e96e8165dc8fdc2cce6b | refs/heads/master | 2021-01-24T06:27:42.772000 | 2013-01-03T07:41:35 | 2013-01-03T07:41:35 | 7,419,308 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package sound;
/**
* Terminals and Non-terminals are specified in the design document
* A token is a lexical item that the parser uses.
*/
public interface Token {
/**
* Possible Token.Type (each has a Class that implements Token):
*/
public static enum Type {
FIELDTOKEN, STRU... | UTF-8 | Java | 437 | java | Token.java | Java | [] | null | [] | package sound;
/**
* Terminals and Non-terminals are specified in the design document
* A token is a lexical item that the parser uses.
*/
public interface Token {
/**
* Possible Token.Type (each has a Class that implements Token):
*/
public static enum Type {
FIELDTOKEN, STRU... | 437 | 0.665904 | 0.665904 | 16 | 25.3125 | 29.573465 | 101 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 14 |
87a2698fa76211df883aac5956249339400c955e | 2,671,469,717,687 | b8bba725dbfb34f78432da8b64f9c8c994121442 | /HW-15-MessageSystem/src/main/java/ru/otus/smolyanov/app/DBService.java | 0b9c3f922ce83af6258560fb513091cbcbe5a45e | [] | no_license | SmolyanovGregory/otus-java-2017-11-SmolyanovGregory | https://github.com/SmolyanovGregory/otus-java-2017-11-SmolyanovGregory | 9f5b20c4a5760873931a37505f838ea7bdea326c | 85c5d4e3f30c2df9253978685ffad59cee42f405 | refs/heads/master | 2021-09-11T01:36:35.795000 | 2018-04-05T19:42:15 | 2018-04-05T19:42:15 | 111,211,594 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ru.otus.smolyanov.app;
/**
* Created by Gregory Smolyanov.
* <p>
* Home work 15 (message system)
*/
import ru.otus.smolyanov.base.*;
import ru.otus.smolyanov.cacheservice.CacheService;
import ru.otus.smolyanov.messageSystem.Addressee;
import java.util.List;
public interface DBService extends AutoCloseab... | UTF-8 | Java | 504 | java | DBService.java | Java | [
{
"context": "package ru.otus.smolyanov.app;\n\n/**\n * Created by Gregory Smolyanov.\n * <p>\n * Home work 15 (message system)\n */\n\nimp",
"end": 67,
"score": 0.9998475313186646,
"start": 50,
"tag": "NAME",
"value": "Gregory Smolyanov"
}
] | null | [] | package ru.otus.smolyanov.app;
/**
* Created by <NAME>.
* <p>
* Home work 15 (message system)
*/
import ru.otus.smolyanov.base.*;
import ru.otus.smolyanov.cacheservice.CacheService;
import ru.otus.smolyanov.messageSystem.Addressee;
import java.util.List;
public interface DBService extends AutoCloseable, Address... | 493 | 0.767857 | 0.763889 | 24 | 20 | 21.513561 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.416667 | false | false | 14 |
73987bfae9823689490c8c211d4338d912f61973 | 11,922,829,262,782 | ff94967ed9bb08c7042f7a343857803a7903a05d | /src/main/java/com/roncoo/eshop/product/service/BrandService.java | 8627aaa2557bdcaea4fee8ba039c62b822c07ac0 | [] | no_license | cappuccino2018/eshop-product-service | https://github.com/cappuccino2018/eshop-product-service | 2af59854bdb23196487ff1270bc2968b937f06eb | 7879f4fd240c3d89218b8f333d5ff6eb694dc1f7 | refs/heads/master | 2022-06-29T00:42:13.825000 | 2020-04-20T13:45:54 | 2020-04-20T13:45:54 | 257,225,693 | 0 | 0 | null | false | 2022-06-21T03:15:53 | 2020-04-20T09:00:31 | 2020-04-20T13:46:46 | 2022-06-21T03:15:53 | 62 | 0 | 0 | 1 | Java | false | false | package com.roncoo.eshop.product.service;
import com.roncoo.eshop.product.model.Brand;
import com.roncoo.eshop.product.model.Category;
import java.util.List;
public interface BrandService {
public void addBrand(Brand brand,String operationType);
public void updateBrand(Brand brand,String operationType);
... | UTF-8 | Java | 468 | java | BrandService.java | Java | [] | null | [] | package com.roncoo.eshop.product.service;
import com.roncoo.eshop.product.model.Brand;
import com.roncoo.eshop.product.model.Category;
import java.util.List;
public interface BrandService {
public void addBrand(Brand brand,String operationType);
public void updateBrand(Brand brand,String operationType);
... | 468 | 0.764957 | 0.764957 | 23 | 19.347826 | 23.406816 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.521739 | false | false | 14 |
d063e71dd4076ec44e47e8985fc9624b5736d7c9 | 31,370,441,180,934 | d105c1f008fec849922b7dae23188ea3bd5bd8fa | /src/service/ShoppingCartServiceImpl.java | a6433d00c13165a6deae5693b3ee08608f112268 | [] | no_license | burakkurt/CoffeeShop | https://github.com/burakkurt/CoffeeShop | 39ee4ee409e587e2f3e9fefa978e56c447d6a65f | 55775bc5e833418e5352b3ec177dc0d86367e181 | refs/heads/master | 2020-06-28T19:36:22.375000 | 2016-12-06T18:20:06 | 2016-12-06T18:20:06 | 74,473,048 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package service;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereo... | UTF-8 | Java | 5,987 | java | ShoppingCartServiceImpl.java | Java | [] | null | [] | package service;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereo... | 5,987 | 0.736763 | 0.735594 | 219 | 26.3379 | 26.285662 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.164384 | false | false | 14 |
0e54aa3b01e45c5c91c2899ca8b85e5ca3341a91 | 10,316,511,502,149 | 9ae6c9e21c72933b2d2c447b8979510da2ecaad0 | /problems/sanskriti0512-network-delay-time-Java.java.java | 7538bf73b1c39bc7b2c903a754e502611581429d | [] | no_license | simonecorbo99/Hacktoberfest-2020-LeetCode-Problems | https://github.com/simonecorbo99/Hacktoberfest-2020-LeetCode-Problems | 83ee1c4d21682ff007daf8010f610f58255004b5 | dc2754e39e9247c4d0d512117f9bda0857d7ea61 | refs/heads/main | 2023-01-03T07:55:40.034000 | 2020-10-31T10:10:00 | 2020-10-31T10:10:00 | 308,785,639 | 0 | 0 | null | true | 2020-10-31T10:13:50 | 2020-10-31T02:09:49 | 2020-10-31T10:10:07 | 2020-10-31T10:13:50 | 181 | 0 | 0 | 0 | C++ | false | false | //https://leetcode.com/problems/network-delay-time/
// GRAPH
class Solution {
public int networkDelayTime(int[][] times, int N, int K) {
Graph g=new Graph(N);
for(int i=0;i<times.length;i++){
int u=times[i][0]-1;
int v=times[i][1]-1;
int w=times[i][2];
... | UTF-8 | Java | 2,001 | java | sanskriti0512-network-delay-time-Java.java.java | Java | [] | null | [] | //https://leetcode.com/problems/network-delay-time/
// GRAPH
class Solution {
public int networkDelayTime(int[][] times, int N, int K) {
Graph g=new Graph(N);
for(int i=0;i<times.length;i++){
int u=times[i][0]-1;
int v=times[i][1]-1;
int w=times[i][2];
... | 2,001 | 0.469765 | 0.461769 | 74 | 26.054054 | 17.700888 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.878378 | false | false | 14 |
b6e2136cf4da2c905d85696c4800cece9733ee61 | 15,298,673,559,012 | 7d251717d7bf1417db87b7efa22f72ed361cc4f3 | /src/primaryalgorithm/topic5/JavaSolution.java | eb77bdbc82a8f19a3c79c4b2a7f2ad04706570c3 | [] | no_license | ADeveloperH/LeetCodeAlgorithmByKoltin | https://github.com/ADeveloperH/LeetCodeAlgorithmByKoltin | c412b84641cbca1f980d122812aaf0791ac00e6f | d0662950ff898ac3e8167069a2247e55f6141767 | refs/heads/master | 2020-03-28T05:03:20.646000 | 2018-09-11T08:48:13 | 2018-09-11T08:48:13 | 147,753,116 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package primaryalgorithm.topic5;
import java.util.Arrays;
public class JavaSolution {
public static void main(String[] args) {
int[] nums = {4, 1, 2, 1, 2};
// int[] nums = {2, 2, 1};
System.out.println(singleNumber2(nums));
}
//
// public static int singleNumber(int[] nums) {
//// ... | UTF-8 | Java | 1,823 | java | JavaSolution.java | Java | [] | null | [] | package primaryalgorithm.topic5;
import java.util.Arrays;
public class JavaSolution {
public static void main(String[] args) {
int[] nums = {4, 1, 2, 1, 2};
// int[] nums = {2, 2, 1};
System.out.println(singleNumber2(nums));
}
//
// public static int singleNumber(int[] nums) {
//// ... | 1,823 | 0.4628 | 0.446397 | 68 | 24.088236 | 17.117874 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.411765 | false | false | 14 |
5c0327af5915779284ea30b5c9527f9ebebd2db4 | 23,081,154,297,289 | c856058e016c5d68ca4cfb8e2d1eb640ca0e9031 | /src/Daemon.java | 2807c4be2ececefd44231e585ef37a9b184d7c9f | [] | no_license | alejandro-lobato/DesignPatterns_Simple-Load-Balancer | https://github.com/alejandro-lobato/DesignPatterns_Simple-Load-Balancer | cda07181da75c0f2fc2ecedf8242476e490eefde | b71d40f2b3baa7634fdde246a0f3f515015ab11a | refs/heads/master | 2022-12-18T05:47:00.083000 | 2020-09-11T18:26:40 | 2020-09-11T18:26:40 | 294,765,303 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
/*-----------------------------------------------------------------*
* Daemon is a class that uses the Singleton design pattern.
* In order to implement our process management for multiple calls,
* we can only have 1 Daemon listening for calls on a method.
*----------------------------------------------------... | UTF-8 | Java | 1,562 | java | Daemon.java | Java | [] | null | [] |
/*-----------------------------------------------------------------*
* Daemon is a class that uses the Singleton design pattern.
* In order to implement our process management for multiple calls,
* we can only have 1 Daemon listening for calls on a method.
*----------------------------------------------------... | 1,562 | 0.56146 | 0.556978 | 51 | 28.588236 | 23.008247 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.431373 | false | false | 14 |
b0f02d278d47e0e60a1388c94ce2fbc1777dc66d | 31,233,002,241,173 | a2637dc81b0073b7c65643446ab715e4e3b4ae93 | /src/main/java/com/lanou/bean/TbProInfo.java | ea2659b5c666fabb791e58955acc72f729dc14b4 | [] | no_license | sunshine7717/Demo1 | https://github.com/sunshine7717/Demo1 | 1b2d4f89f77a9dff563c6c51b584241cdfa86164 | 11f893298cb27e6289c00957205696aec42340ec | refs/heads/master | 2021-01-19T15:18:29.422000 | 2017-08-21T14:12:26 | 2017-08-21T14:12:26 | 100,958,937 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lanou.bean;
public class TbProInfo {
private Integer id;
private Integer proNum;
private String proIntroduce;
private String proPlace;
private String proUse;
private Integer proStandard;
private Integer proId;
public Integer getId() {
return ... | UTF-8 | Java | 1,633 | java | TbProInfo.java | Java | [] | null | [] | package com.lanou.bean;
public class TbProInfo {
private Integer id;
private Integer proNum;
private String proIntroduce;
private String proPlace;
private String proUse;
private Integer proStandard;
private Integer proId;
public Integer getId() {
return ... | 1,633 | 0.577465 | 0.577465 | 79 | 18.696203 | 20.56749 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.481013 | false | false | 14 |
fb3176c5a3c9f413f0a9a7cad0f745cc885c132d | 29,162,827,991,230 | 47d2d765336c0afd93da2b2f6035b559c5d80ab4 | /android/src/main/java/cn/originalstar/fluocean/AdManagerHolder.java | b35ec6ed086780e0984995c15fa8e7b919ee8c7f | [
"MIT"
] | permissive | qyxing/fluocean | https://github.com/qyxing/fluocean | 1fffa89ebb6bc9219e32219417ed39d830b63be4 | 21d38726896accdc6bafd39d3bcb9b53a697a4b8 | refs/heads/master | 2022-10-22T16:55:39.779000 | 2020-06-12T07:51:05 | 2020-06-12T07:51:05 | 271,440,316 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.originalstar.fluocean;
import android.content.Context;
import com.bytedance.sdk.openadsdk.TTAdConfig;
import com.bytedance.sdk.openadsdk.TTAdConstant;
import com.bytedance.sdk.openadsdk.TTAdManager;
import com.bytedance.sdk.openadsdk.TTAdSdk;
import com.bytedance.sdk.openadsdk.TTCustomController;
import j... | UTF-8 | Java | 2,438 | java | AdManagerHolder.java | Java | [] | null | [] | package cn.originalstar.fluocean;
import android.content.Context;
import com.bytedance.sdk.openadsdk.TTAdConfig;
import com.bytedance.sdk.openadsdk.TTAdConstant;
import com.bytedance.sdk.openadsdk.TTAdManager;
import com.bytedance.sdk.openadsdk.TTAdSdk;
import com.bytedance.sdk.openadsdk.TTCustomController;
import j... | 2,438 | 0.630972 | 0.63056 | 66 | 35.78788 | 23.603104 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.727273 | false | false | 14 |
4ef0c77b1db69e09c8502d84f75d5c64ec537833 | 2,362,232,077,425 | a2321c084ae1b1dc52e9c765845f93347f657a04 | /demo-boot/src/main/java/com/dullon/demoboot/designpattern2/CompositeTest.java | ab2bbc1d3d96bcf989ae879dbb924223b4e2f7ca | [] | no_license | dullon/springbootdemo | https://github.com/dullon/springbootdemo | ccd61165d8164d0d7f34720e8dc41f108893f6fa | 0d35e2c50d15ffc9ed3ea17f300d1aa2e4ac595b | refs/heads/master | 2020-05-01T13:24:02.705000 | 2019-05-14T10:31:57 | 2019-05-14T10:31:57 | 177,490,500 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dullon.demoboot.designpattern2;
import java.util.ArrayList;
/**
* 组合模式:将对象组合成树形结构以表示“部分-整体”的层次结构,组合模式使得用户对单个对象和组合对象的使用具有一致性。
*它使我们树型结构的问题中,模糊了简单元素和复杂元素的概念,客户程序可以像处理简单元素一样来处理复杂元素,从而使得客户程序与复杂元素的内部结构解耦。
*
* 1.Component 是组合中的对象声明接口,在适当的情况下,实现所有类共有接口的默认行为。声明一个接口用于访问和管理Component子部件。
* 2.Leaf 在组合中表示叶子结点对象,叶... | UTF-8 | Java | 4,885 | java | CompositeTest.java | Java | [] | null | [] | package com.dullon.demoboot.designpattern2;
import java.util.ArrayList;
/**
* 组合模式:将对象组合成树形结构以表示“部分-整体”的层次结构,组合模式使得用户对单个对象和组合对象的使用具有一致性。
*它使我们树型结构的问题中,模糊了简单元素和复杂元素的概念,客户程序可以像处理简单元素一样来处理复杂元素,从而使得客户程序与复杂元素的内部结构解耦。
*
* 1.Component 是组合中的对象声明接口,在适当的情况下,实现所有类共有接口的默认行为。声明一个接口用于访问和管理Component子部件。
* 2.Leaf 在组合中表示叶子结点对象,叶... | 4,885 | 0.639551 | 0.628321 | 147 | 23.843538 | 21.038902 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.380952 | false | false | 14 |
1247d088b37c0a39ebb347fbf4f9c35a0fc505db | 5,222,680,255,000 | 5f67967cc68fc94aa99861f8101e953310b36ee1 | /vvs_1819_assignment_1/src/test/java/lineAndBranch/CloneTest.java | 791b8db4ed8a769cc313303817ef48b67236b858 | [] | no_license | Badajaz/VVS | https://github.com/Badajaz/VVS | 7f1ffb0073465f47ccd592ecef2f9e5108265200 | ab61637d7d1fefe53d98db8f7f8212446d8a843c | refs/heads/master | 2022-01-08T09:09:15.978000 | 2019-05-27T00:40:07 | 2019-05-27T00:40:07 | 181,156,968 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package lineAndBranch;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.util.Arrays;
import java.util.List;
import org.junit.Test;
import sut.ArrayNTree;
public class CloneTest {
@Test
public void testClone () {
List<Integer> lista = Arrays.asList(1,2,3,4,5);
ArrayNTree<Integer> tree... | UTF-8 | Java | 468 | java | CloneTest.java | Java | [] | null | [] | package lineAndBranch;
import static org.junit.jupiter.api.Assertions.assertTrue;
import java.util.Arrays;
import java.util.List;
import org.junit.Test;
import sut.ArrayNTree;
public class CloneTest {
@Test
public void testClone () {
List<Integer> lista = Arrays.asList(1,2,3,4,5);
ArrayNTree<Integer> tree... | 468 | 0.736617 | 0.723769 | 22 | 20.227272 | 21.075474 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.318182 | false | false | 14 |
447bdc1632ecc8e4e0a194d54df83dcf4e08fdea | 26,809,185,885,056 | 33541356c195c463d765d8cd004a51a76cf3dca3 | /app/src/main/java/pe/com/gadolfolozano/sisenrollment/data/remote/service/ServiceListener.java | 1ed2c3523c5006f74c32e94d8fcf21276ed7b5b6 | [] | no_license | gadolfolozano/SisEnrollmentAndroid | https://github.com/gadolfolozano/SisEnrollmentAndroid | d575351e323ef42113fc8383f3b58ae783f0fb09 | a8ad8169afff2c7f725f49a5d388905c7b9d7490 | refs/heads/master | 2020-03-28T02:58:30.803000 | 2018-09-30T06:39:31 | 2018-09-30T06:39:31 | 147,610,384 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pe.com.gadolfolozano.sisenrollment.data.remote.service;
/**
* Created by adolfo on 9/09/18.
*/
public interface ServiceListener<T> {
void onSucess(T response);
void onError(Throwable t);
}
| UTF-8 | Java | 210 | java | ServiceListener.java | Java | [
{
"context": "enrollment.data.remote.service;\n\n/**\n * Created by adolfo on 9/09/18.\n */\n\npublic interface ServiceListener",
"end": 89,
"score": 0.9983349442481995,
"start": 83,
"tag": "USERNAME",
"value": "adolfo"
}
] | null | [] | package pe.com.gadolfolozano.sisenrollment.data.remote.service;
/**
* Created by adolfo on 9/09/18.
*/
public interface ServiceListener<T> {
void onSucess(T response);
void onError(Throwable t);
}
| 210 | 0.714286 | 0.690476 | 11 | 18.09091 | 20.407015 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.272727 | false | false | 14 |
4ac115293cf11260ff928846b3b48b68fcc5494a | 5,952,824,712,332 | 26890c59ab11a1c0fbb52082d176017dc46d5387 | /src/main/java/de/dbvis/htpm/constraints/PatternSizeConstraint.java | 44929e8269c39431b24c0a3f61c3b2fbaa7bfc85 | [
"MIT"
] | permissive | TAKeanice/htpm | https://github.com/TAKeanice/htpm | 8a7b80338a1f29bf9223bb694563efff5f3c87e9 | 5bde0c911c7d6edc04279ab07622d316007bad20 | refs/heads/master | 2022-12-30T00:40:41.676000 | 2020-10-17T17:12:44 | 2020-10-17T17:12:44 | 262,050,561 | 0 | 0 | MIT | false | 2020-10-17T17:12:45 | 2020-05-07T12:57:44 | 2020-05-07T13:01:08 | 2020-10-17T17:12:44 | 223 | 0 | 0 | 0 | Java | false | false | package de.dbvis.htpm.constraints;
import de.dbvis.htpm.htp.HybridTemporalPattern;
import de.dbvis.htpm.occurrence.Occurrence;
import java.util.Set;
public class PatternSizeConstraint extends AcceptAllConstraint {
/**
* The maximum allowed length for patterns
*/
private final int maxPatternLength;... | UTF-8 | Java | 1,675 | java | PatternSizeConstraint.java | Java | [] | null | [] | package de.dbvis.htpm.constraints;
import de.dbvis.htpm.htp.HybridTemporalPattern;
import de.dbvis.htpm.occurrence.Occurrence;
import java.util.Set;
public class PatternSizeConstraint extends AcceptAllConstraint {
/**
* The maximum allowed length for patterns
*/
private final int maxPatternLength;... | 1,675 | 0.678806 | 0.675821 | 69 | 23.275362 | 26.339415 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.289855 | false | false | 14 |
9284820bcfcfae6dcfe16f3062d0d37a96981652 | 9,388,798,511,875 | 4cd4048c7aa052a225163776be9a6a46d3bc86e2 | /05.流行框架/1.springboot/springboot02/springboot-enable-other/src/main/java/com/itheima/config/MyImportBeanDefinitionRegistrar.java | 97016626e199b5212814465f1ec983baf6d129d9 | [] | no_license | lyyyd/JavaLearning | https://github.com/lyyyd/JavaLearning | c799f881503177885fe904264df3a7c1245cc0df | eb442e0ef0c312a44bd228281329221a998db9c9 | refs/heads/master | 2022-11-11T18:20:05.442000 | 2020-07-03T14:16:49 | 2020-07-03T14:16:49 | 195,237,624 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.itheima.config;
import com.itheima.domain.User;
import org.springframework.beans.factory.support.AbstractBeanDefinition;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.context.annota... | UTF-8 | Java | 831 | java | MyImportBeanDefinitionRegistrar.java | Java | [] | null | [] | package com.itheima.config;
import com.itheima.domain.User;
import org.springframework.beans.factory.support.AbstractBeanDefinition;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.context.annota... | 831 | 0.847172 | 0.847172 | 18 | 45.166668 | 40.46981 | 121 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.611111 | false | false | 14 |
e836ff62598c3964363c0222b2c7c0b63cdd92ec | 5,686,536,733,605 | e9ecef0b8faa73c84a1b8841dc918d6ae05fb86f | /app/src/main/java/com/example/android/reportcard/ReportCard.java | eb33796227bb6b464dc17446b2c02674e6e64f34 | [] | no_license | Jaren831/ReportCard | https://github.com/Jaren831/ReportCard | d187e3247e8b9986dc906f1d3506ff6b39a1125d | fc141c508d5e5f6914e378bdde3ca02372fe4609 | refs/heads/master | 2021-01-19T07:09:47.414000 | 2016-06-29T04:51:17 | 2016-06-29T04:51:17 | 62,196,054 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.android.reportcard;
/**
* Created by Jaren Lynch on 6/28/2016.
*/
public class ReportCard {
//Student name
private String mStudent;
//Student chemistry grade
private String mChemistryGrade;
//Student calculus grade
private String mCalculusGrade;
//Student english g... | UTF-8 | Java | 2,679 | java | ReportCard.java | Java | [
{
"context": "com.example.android.reportcard;\n\n/**\n * Created by Jaren Lynch on 6/28/2016.\n */\npublic class ReportCard {\n\n ",
"end": 70,
"score": 0.9997628927230835,
"start": 59,
"tag": "NAME",
"value": "Jaren Lynch"
}
] | null | [] | package com.example.android.reportcard;
/**
* Created by <NAME> on 6/28/2016.
*/
public class ReportCard {
//Student name
private String mStudent;
//Student chemistry grade
private String mChemistryGrade;
//Student calculus grade
private String mCalculusGrade;
//Student english grade
... | 2,674 | 0.586413 | 0.5838 | 111 | 23.135136 | 19.432714 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.216216 | false | false | 14 |
d1e849fe1eb97143e514ab8d69b28241b395d4a5 | 2,001,454,809,251 | 068034fb393bbf4f92da896e2de73caf760d93d4 | /backend/src/main/java/hu/uni/eku/afp2020_team4/service/ComplexNumberService.java | 729df1e507e1730636876bd5de546a621ee3a4be | [] | no_license | kadamQ/project-templates-spring-react | https://github.com/kadamQ/project-templates-spring-react | 9579e96c6cbd0eea58aa80a7a3a407d0ecf3b52b | 5440d6da47da73e4ff784cab748708a1be52b31d | refs/heads/master | 2023-01-13T18:17:49.748000 | 2020-11-18T09:27:26 | 2020-11-18T09:27:26 | 299,047,928 | 0 | 0 | null | true | 2020-11-18T09:27:27 | 2020-09-27T14:19:16 | 2020-11-17T17:54:43 | 2020-11-18T09:27:26 | 218 | 0 | 0 | 0 | Java | false | false | package hu.uni.eku.afp2020_team4.service;
import hu.uni.eku.afp2020_team4.model.ComplexNumber;
import hu.uni.eku.afp2020_team4.service.exceptions.ComplexNumberAlreadyExistsException;
import java.util.Collection;
public interface ComplexNumberService {
void record(ComplexNumber complexNumber) throws ComplexNumbe... | UTF-8 | Java | 389 | java | ComplexNumberService.java | Java | [] | null | [] | package hu.uni.eku.afp2020_team4.service;
import hu.uni.eku.afp2020_team4.model.ComplexNumber;
import hu.uni.eku.afp2020_team4.service.exceptions.ComplexNumberAlreadyExistsException;
import java.util.Collection;
public interface ComplexNumberService {
void record(ComplexNumber complexNumber) throws ComplexNumbe... | 389 | 0.827763 | 0.789203 | 13 | 28.923077 | 31.29134 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.461538 | false | false | 14 |
a485aff9900249ec18841f6f25cf9a4c44872eae | 26,302,379,743,841 | 06e565fdeac68578b1269d7ad4f44d31b8761bc1 | /DrugDevResearchManagementSystem/src/userinterface/scientistWorkArea/SelectCompoundsJPanel.java | c821e705f9d3c14ec3204f3d2e2399239454bdb9 | [] | no_license | ujjvalthakkar/Drug-Development-and-Research-Management-System | https://github.com/ujjvalthakkar/Drug-Development-and-Research-Management-System | 34d82a4d586df150792bcf98b75dd656e1348b63 | c50a8c047c94116e7598341543ac2ebacc1afe2f | refs/heads/master | 2021-01-17T11:30:43.975000 | 2017-03-06T06:15:47 | 2017-03-06T06:15:47 | 84,036,904 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* AdminWorkAreaJPanel.java
*
* Created on October 10, 2008, 8:50 AM
*/
package userinterface.scientistWorkArea;
import business.Ecosystem;
import business.drug.Compound;
import business.enterprise.Enterprise;
import business.network.Network;
import business.organization.Organization;
import business.organizatio... | UTF-8 | Java | 13,339 | java | SelectCompoundsJPanel.java | Java | [
{
"context": ".swing.table.DefaultTableModel;\n\n/**\n *\n * @author Harsh\n */\npublic class SelectCompoundsJPanel extends ja",
"end": 630,
"score": 0.9989847540855408,
"start": 625,
"tag": "NAME",
"value": "Harsh"
}
] | null | [] | /*
* AdminWorkAreaJPanel.java
*
* Created on October 10, 2008, 8:50 AM
*/
package userinterface.scientistWorkArea;
import business.Ecosystem;
import business.drug.Compound;
import business.enterprise.Enterprise;
import business.network.Network;
import business.organization.Organization;
import business.organizatio... | 13,339 | 0.632506 | 0.614514 | 326 | 39.917179 | 31.760548 | 145 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.797546 | false | false | 14 |
9f34392d1e6073c1dfd86b05ba1f62a7e88bc73f | 30,382,598,676,938 | 579a654414205571228b754ae392748fcbad2bcc | /app/src/main/java/com/example/jose/myapplication/DrawingView.java | 16ab24fbb3b669442d8a7c436b4de9ee44eba640 | [] | no_license | jbernhardt23/Ploter | https://github.com/jbernhardt23/Ploter | 0f7bebb3e0507922773e806e9253cff2d9ccc78d | 05edea7da1e869e918d9efa230f6f9417f69a230 | refs/heads/master | 2021-01-10T08:55:56.135000 | 2016-01-20T02:17:49 | 2016-01-20T02:17:49 | 47,856,397 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.jose.myapplication;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.PorterDuff;
import android.support.annotation.NonNull;
import andro... | UTF-8 | Java | 7,256 | java | DrawingView.java | Java | [
{
"context": "w;\n\nimport java.util.ArrayList;\n\n/**\n * Created by jose on 16/11/15.\n */\n\n\npublic class DrawingView exten",
"end": 453,
"score": 0.9987132549285889,
"start": 449,
"tag": "USERNAME",
"value": "jose"
}
] | null | [] | package com.example.jose.myapplication;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.PorterDuff;
import android.support.annotation.NonNull;
import andro... | 7,256 | 0.620728 | 0.612734 | 248 | 28.254032 | 24.938553 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.669355 | false | false | 14 |
d4ea804df5fb54abff6a389c885e7350a5815656 | 33,801,392,627,047 | 7c7a1f95f32ab717289333ad29e1c6d856e27d00 | /eagleyes/src/test/java/test/eagleyes/platform/ctrlayer/RelateChainIntegrateTest.java | 27e69d90d75e516b25a344299e63d68a88a0f4dd | [] | no_license | conspy/conspy-servers | https://github.com/conspy/conspy-servers | aab616244737e2b37ff89af141fd3bc8b2f01e87 | bc7047af728a2962eb47ff95271f00420037cd21 | refs/heads/master | 2017-12-07T06:06:11.888000 | 2017-02-23T17:18:14 | 2017-02-23T17:18:14 | 79,652,624 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package test.eagleyes.platform.ctrlayer;
import com.eagleyes.social.api.model.DonorDTO;
import com.eagleyes.social.api.model.IDs;
import com.eagleyes.social.api.model.NodePostDTO;
import junit.framework.Assert;
import org.junit.Test;
import org.springframework.http.MediaType;
import org.springframework.test.web.servle... | UTF-8 | Java | 8,221 | java | RelateChainIntegrateTest.java | Java | [
{
"context": " protected String currentUser() {\n return \"user\";\n }\n\n @Override\n protected boolean isCl",
"end": 8092,
"score": 0.6851590871810913,
"start": 8088,
"tag": "USERNAME",
"value": "user"
}
] | null | [] | package test.eagleyes.platform.ctrlayer;
import com.eagleyes.social.api.model.DonorDTO;
import com.eagleyes.social.api.model.IDs;
import com.eagleyes.social.api.model.NodePostDTO;
import junit.framework.Assert;
import org.junit.Test;
import org.springframework.http.MediaType;
import org.springframework.test.web.servle... | 8,221 | 0.568112 | 0.551008 | 216 | 36.89352 | 25.61562 | 95 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.962963 | false | false | 14 |
2ea327383a7d06bb03820b9a1e3cea48ea7ff72a | 32,762,010,557,211 | 2d290e5d8a34593dec2c001e743d7baea252727d | /natillera-web/src/main/java/com/tunatillera/web/entity/PartnerEntity.java | ec5784f1cedf3e00ff9e9ec85e39be672acafc86 | [] | no_license | sairth19/natillera | https://github.com/sairth19/natillera | 20a3b761aff5b9f8196acf06b3ddf4173df7fa71 | 2c1a93069c371ac160f795e5d52bc416521c59aa | refs/heads/master | 2021-02-14T03:13:05.434000 | 2020-03-07T05:38:21 | 2020-03-07T05:38:21 | 244,761,432 | 0 | 0 | null | false | 2020-10-13T20:03:31 | 2020-03-03T23:14:29 | 2020-03-07T05:38:35 | 2020-10-13T20:03:30 | 48 | 0 | 0 | 1 | Java | false | false | package com.tunatillera.web.entity;
import java.time.LocalDate;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
im... | UTF-8 | Java | 2,544 | java | PartnerEntity.java | Java | [] | null | [] | package com.tunatillera.web.entity;
import java.time.LocalDate;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
im... | 2,544 | 0.757862 | 0.755503 | 104 | 23.461538 | 20.471802 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.413462 | false | false | 14 |
f03c7f08373a1289c4dc499b67e89eda6208a873 | 22,041,772,205,325 | a663a3bbfee6550604e5ab21aa29c901d90c0461 | /leetcode2/p1.java | c7288e6960b70e41447896dec0de1f411144f2ea | [] | no_license | wangmingbo123/leetcode | https://github.com/wangmingbo123/leetcode | 5699e8289ddbeedc9091c23d1aa554728430da21 | 028a8c5b46b5276ae46a844670e4130ffc2cf678 | refs/heads/master | 2021-04-12T11:55:31.207000 | 2019-07-13T13:28:02 | 2019-07-13T13:28:02 | 94,547,187 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package leetcode2;
/**
* Created by wy on 2017/6/17.
*/
public class p1 {
}
| UTF-8 | Java | 80 | java | p1.java | Java | [
{
"context": "package leetcode2;\n\n/**\n * Created by wy on 2017/6/17.\n */\npublic class p1 {\n\n}\n",
"end": 40,
"score": 0.9890882968902588,
"start": 38,
"tag": "USERNAME",
"value": "wy"
}
] | null | [] | package leetcode2;
/**
* Created by wy on 2017/6/17.
*/
public class p1 {
}
| 80 | 0.6125 | 0.5 | 8 | 9 | 10.511898 | 30 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.125 | false | false | 14 |
c898fa5ee6cf8a70e8e21180bf9cb31ea239e036 | 19,181,324,000,486 | e0d4f64d7af48ab3320dccad6ba904e684542da7 | /src/test/java/com/netcompany/nio2/FilesTests.java | d2fa35e4f9ebcb30d51f8f60a160324517ff7b16 | [] | no_license | rosomak7/NIO2-Examples | https://github.com/rosomak7/NIO2-Examples | e4dafdcb17c3c852676459abc5ad418d5c0e4c6e | 9b80225924bd1229ec8357f9500f8d139f4130dd | refs/heads/master | 2020-07-05T11:59:18.557000 | 2016-11-22T08:25:52 | 2016-11-22T08:25:52 | 74,119,310 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.netcompany.nio2;
import org.junit.Test;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.charset.Charset;
import java.nio.file.... | UTF-8 | Java | 4,593 | java | FilesTests.java | Java | [
{
"context": "port static java.lang.System.*;\n\n/**\n * Created by matm on 02-11-2016.\n */\npublic class FilesTests {\n\n ",
"end": 639,
"score": 0.9995300769805908,
"start": 635,
"tag": "USERNAME",
"value": "matm"
}
] | null | [] | package com.netcompany.nio2;
import org.junit.Test;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.charset.Charset;
import java.nio.file.... | 4,593 | 0.650773 | 0.647289 | 134 | 33.276119 | 28.389191 | 148 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.604478 | false | false | 14 |
8e444d85bb65ee50393e5eecd3858a5630f3b5d1 | 30,889,404,819,533 | 51c846a1a61468579e08d847f79c61aa308526fd | /jeremy-parent/jeremy-business/jeremy-authorization/authorization-server/src/main/java/com/jeremy/authorization/dao/UserMapper.java | d9b257011a859e14b587ffd1622a20f2101ebc40 | [] | no_license | jeremy1559/jeremyFramework | https://github.com/jeremy1559/jeremyFramework | 498969468e6202c7aecf048ba8e7c4e4e23a196d | 449009808f2f6aa9ffbdbc5d5a62517b644e92af | refs/heads/master | 2020-04-11T15:26:25.267000 | 2019-05-09T08:30:41 | 2019-05-09T08:30:41 | 161,891,493 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jeremy.authorization.dao;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import com.authorization.api.dto.UserDto;
import com.authorization.api.entity.User;
import com.authorization.api.vo.UserRoles;
import com.authorization.api.vo.UserRolesCompanys;
@Mapper
public interface UserMap... | UTF-8 | Java | 1,257 | java | UserMapper.java | Java | [] | null | [] | package com.jeremy.authorization.dao;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import com.authorization.api.dto.UserDto;
import com.authorization.api.entity.User;
import com.authorization.api.vo.UserRoles;
import com.authorization.api.vo.UserRolesCompanys;
@Mapper
public interface UserMap... | 1,257 | 0.699911 | 0.699911 | 60 | 17.733334 | 16.823462 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.766667 | false | false | 14 |
47b1cdb5177c046a93d602cb1dc8aa4d6256fc1e | 17,566,416,282,742 | ba3377135fecd4ba175cb9205a122c301acfd34a | /src/main/java/com/demo/service/yxj/SubjectService.java | 307f4143f5f8fcf0c1ae942d353627e21e610565 | [] | no_license | qibao6/BankingProject | https://github.com/qibao6/BankingProject | 3d5cbba3c4fec577f1e43e179b58018fb8deaf57 | a901a2739acfa62c3c7e39cced417a22e06365ce | refs/heads/master | 2021-09-01T18:52:23.851000 | 2017-12-28T09:46:14 | 2017-12-28T09:46:14 | 112,690,882 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.demo.service.yxj;
import java.util.Date;
import java.util.List;
import org.springframework.data.domain.Page;
import com.demo.model.MemberAccount;
import com.demo.model.MemberBankcards;
import com.demo.model.MemberTradeRecord;
import com.demo.model.Members;
import com.demo.model.Subject;
impor... | UTF-8 | Java | 1,518 | java | SubjectService.java | Java | [] | null | [] | package com.demo.service.yxj;
import java.util.Date;
import java.util.List;
import org.springframework.data.domain.Page;
import com.demo.model.MemberAccount;
import com.demo.model.MemberBankcards;
import com.demo.model.MemberTradeRecord;
import com.demo.model.Members;
import com.demo.model.Subject;
impor... | 1,518 | 0.772993 | 0.772263 | 51 | 24.862745 | 23.949308 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.196078 | false | false | 14 |
d8529bc8a79bd5ba6ba49797f64c250b0a56b9d0 | 15,728,170,289,725 | d875673cc2b4efadc4e2e0eab423a23a13f355d2 | /EHCARE/src/main/java/com/mbstu/ehcare/controller/LogicDoc/LogiDocSettingsEntity.java | b91366de94f88648a0185ae8f3b2586338d14553 | [] | no_license | AsifurRahman/TestProject | https://github.com/AsifurRahman/TestProject | 122c1d99c84daeb77b3351cd3538261bb4d0f5c4 | b210af721a13b713c794e7642ffabeaa816c807d | refs/heads/master | 2020-04-01T20:46:05.151000 | 2018-10-18T12:23:30 | 2018-10-18T12:23:30 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mbstu.ehcare.controller.LogicDoc;
import lombok.Data;
import javax.persistence.*;
/**
* Created by Tanmoy on 4/23/2017.
*/
@Data
@Entity
@Table(name = "los_tb_s_logidoc")
public class LogiDocSettingsEntity {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Integer id;
private... | UTF-8 | Java | 418 | java | LogiDocSettingsEntity.java | Java | [
{
"context": "a;\n\nimport javax.persistence.*;\n\n/**\n * Created by Tanmoy on 4/23/2017.\n */\n@Data\n@Entity\n@Table(name = \"lo",
"end": 121,
"score": 0.9966543912887573,
"start": 115,
"tag": "USERNAME",
"value": "Tanmoy"
}
] | null | [] | package com.mbstu.ehcare.controller.LogicDoc;
import lombok.Data;
import javax.persistence.*;
/**
* Created by Tanmoy on 4/23/2017.
*/
@Data
@Entity
@Table(name = "los_tb_s_logidoc")
public class LogiDocSettingsEntity {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Integer id;
private... | 418 | 0.712919 | 0.696172 | 21 | 18.904762 | 15.583584 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.380952 | false | false | 14 |
7ee6db0676b506cb2e8f6293dd24aaba1cd6a61a | 24,876,450,626,350 | f63b6449aa9dd9c50acaa6c61188fe5f9c652606 | /src/climbingStairs/ClimbingStairs.java | 657221fd4f143897ca10c34c92fa34bf9326811e | [] | no_license | summer-dream/JAVA | https://github.com/summer-dream/JAVA | 621eb99b5ea98e156b229e083b2562fe8f4ef4a8 | 5902946069069304d431fec97597615136b8906d | refs/heads/master | 2020-04-05T13:35:01.141000 | 2018-03-05T05:48:45 | 2018-03-05T05:48:45 | 94,891,220 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package climbingStairs;
import java.util.ArrayList;
import java.util.List;
/**
*@author 泮晓波 E_mail:1210216687@qq.com
*@version 创建时间: 2017年10月7日上午8:34:05
*类说明
*/
public class ClimbingStairs {
public int climbStairs(int n) {
List<Integer> list=new ArrayList<>();
if(n==1)return 1;
list.ad... | GB18030 | Java | 536 | java | ClimbingStairs.java | Java | [
{
"context": "l.ArrayList;\nimport java.util.List;\n\n/**\n*@author 泮晓波 E_mail:1210216687@qq.com\n*@version 创建时间: 2017年10月",
"end": 93,
"score": 0.9998321533203125,
"start": 90,
"tag": "NAME",
"value": "泮晓波"
},
{
"context": ";\nimport java.util.List;\n\n/**\n*@author 泮晓波 E_mail:12102... | null | [] | package climbingStairs;
import java.util.ArrayList;
import java.util.List;
/**
*@author 泮晓波 E_mail:<EMAIL>
*@version 创建时间: 2017年10月7日上午8:34:05
*类说明
*/
public class ClimbingStairs {
public int climbStairs(int n) {
List<Integer> list=new ArrayList<>();
if(n==1)return 1;
list.add(1); ... | 526 | 0.559289 | 0.5 | 23 | 21 | 15.082382 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.956522 | false | false | 14 |
af735f6d3423435203fa41d5d9d98ade570fc125 | 15,728,170,293,629 | 27b532fecfc000f72153e2b8cd3c02c3d5c03953 | /multithreading/Multithread.java | 7b6bb525f0d134f40da8d6408e7f9370a5af44b3 | [] | no_license | shanurrahman/Data-Structure-Java | https://github.com/shanurrahman/Data-Structure-Java | c18e0322c66ab62a836f3bd15dd462dd0cd7029b | 11677696bc0a21c5af2bed37a0d02dc93488de3e | refs/heads/master | 2022-03-08T11:39:21.670000 | 2022-02-13T19:48:27 | 2022-02-13T19:48:27 | 134,177,652 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package multithreading;
class MultithreadingDemo extends Thread {
@Override
public void run() {
try {
System.out.println("Thread ", this.currentThread() + " is running");
} catch (Exception e) {
e.printStackTrace();
}
}
}
public class Multithread {
publ... | UTF-8 | Java | 459 | java | Multithread.java | Java | [] | null | [] | package multithreading;
class MultithreadingDemo extends Thread {
@Override
public void run() {
try {
System.out.println("Thread ", this.currentThread() + " is running");
} catch (Exception e) {
e.printStackTrace();
}
}
}
public class Multithread {
publ... | 459 | 0.544662 | 0.538126 | 21 | 20.904762 | 20.212925 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 14 |
5d2319ad0f18f08017e20db7a4ec7cd2a1d18832 | 7,447,473,354,281 | b7c09afeb9183de12446118c299188e084f7b374 | /后端/src/main/java/com/mbry/IronMan/Dao/LogDao.java | bf75373d309c7134de85e93e62f89bebfa1c4369 | [] | no_license | anti-entropy123/Iron-Man | https://github.com/anti-entropy123/Iron-Man | 33a659aba7439525c748ff50a64d03d581a93b1c | e93d3c7c4bbb04be4279bc88972611bc801adea5 | refs/heads/master | 2022-12-24T12:48:16.921000 | 2020-10-02T16:40:53 | 2020-10-02T16:40:53 | 292,450,907 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mbry.IronMan.Dao;
import com.mbry.IronMan.BusinessObject.Log;
import org.springframework.stereotype.Service;
@Service
public interface LogDao {
/**
* 插入一条log
* @param logEntity
*/
public void addLog(Log log);
/**
* 查询log
* @param aimUserId
* @re... | UTF-8 | Java | 652 | java | LogDao.java | Java | [] | null | [] | package com.mbry.IronMan.Dao;
import com.mbry.IronMan.BusinessObject.Log;
import org.springframework.stereotype.Service;
@Service
public interface LogDao {
/**
* 插入一条log
* @param logEntity
*/
public void addLog(Log log);
/**
* 查询log
* @param aimUserId
* @re... | 652 | 0.571429 | 0.571429 | 34 | 16.117647 | 15.525623 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.205882 | false | false | 14 |
2a85f33875fc3855c7fc044b4e28432bedb0ae29 | 30,614,526,942,470 | 5ca9fc692cc931163eb3d1a17f33c2edeaa59da9 | /app/src/main/java/me/zipstream/mix/util/LocationUtil.java | 118a4c2355d6e949d28195d34a68896427fa845e | [] | no_license | mezipstream/Mix | https://github.com/mezipstream/Mix | a6a96ff69c19afb266a76b707f7d54e69aba0380 | 912112efd7f86b94b966106f632e643042e2faa4 | refs/heads/master | 2021-01-10T06:34:12.539000 | 2016-02-17T00:38:38 | 2016-02-17T00:38:38 | 48,220,143 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package me.zipstream.mix.util;
import android.content.Context;
import android.location.Location;
import android.location.LocationManager;
import me.zipstream.mix.base.MyApplication;
public class LocationUtil {
public static String getLocationInfo() {
LocationManager locationManager = (LocationManager)
... | UTF-8 | Java | 625 | java | LocationUtil.java | Java | [] | null | [] | package me.zipstream.mix.util;
import android.content.Context;
import android.location.Location;
import android.location.LocationManager;
import me.zipstream.mix.base.MyApplication;
public class LocationUtil {
public static String getLocationInfo() {
LocationManager locationManager = (LocationManager)
... | 625 | 0.7424 | 0.7424 | 22 | 27.40909 | 28.159706 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.454545 | false | false | 14 |
669b4b8e302e2009edf256ae3fda09dea4cc9292 | 12,824,772,409,148 | 0b2bd27c57b2e75cb5f39b0b6e44dddca14b5aba | /org.schema/src/main/java/org/schema/Demand.java | 1a3fdbd4c06aae4de8b22b035534485fbe055b24 | [
"Apache-2.0"
] | permissive | Eduworks/ec | https://github.com/Eduworks/ec | f6f9cff86bd52ab01e94da01060fd6668fe59715 | e06ce19773b2d7a24a1c1d8f65852e9a99388b45 | refs/heads/master | 2023-04-27T06:06:47.571000 | 2020-12-11T14:41:54 | 2020-12-11T14:41:54 | 103,451,933 | 1 | 2 | Apache-2.0 | false | 2023-04-19T03:53:14 | 2017-09-13T21:18:39 | 2020-12-11T14:42:18 | 2023-04-19T03:53:14 | 54,569 | 1 | 2 | 28 | JavaScript | false | false | package org.schema;
/**
* Schema.org/Demand
* A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.
*... | UTF-8 | Java | 9,592 | java | Demand.java | Java | [] | null | [] | package org.schema;
/**
* Schema.org/Demand
* A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.
*... | 9,592 | 0.706005 | 0.695684 | 280 | 32.264286 | 54.315296 | 382 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.210714 | false | false | 14 |
a396515656685098ff4d4a1cd004f228f47340ab | 12,824,772,410,279 | 4628db7b0637f20107a98dcd76a08ca17ef201ad | /app/src/androidTest/java/com/tyagiabhinav/restaurantapp/TestMasterDetailLayout.java | 69e941b2f44442d3284fcf5a080ccec3053b89ec | [] | no_license | abhi007tyagi/RestaurantApp | https://github.com/abhi007tyagi/RestaurantApp | 4f17f64bbc26f571012f89f3f8b8743f1deece07 | aee445d896e5a9d28e7677385ba027213b5ce691 | refs/heads/master | 2023-03-31T01:30:06.398000 | 2021-04-02T00:45:57 | 2021-04-02T00:45:57 | 335,530,619 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.tyagiabhinav.restaurantapp;
import android.os.RemoteException;
import android.util.DisplayMetrics;
import android.util.Log;
import android.view.WindowManager;
import org.junit.FixMethodOrder;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.MethodSort... | UTF-8 | Java | 2,354 | java | TestMasterDetailLayout.java | Java | [] | null | [] | package com.tyagiabhinav.restaurantapp;
import android.os.RemoteException;
import android.util.DisplayMetrics;
import android.util.Log;
import android.view.WindowManager;
import org.junit.FixMethodOrder;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.MethodSort... | 2,354 | 0.742141 | 0.735769 | 67 | 34.134327 | 29.454693 | 131 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.567164 | false | false | 14 |
5c92791f36188e217b2f57d0a809d2a26a85292c | 24,163,486,018,894 | a718cfcd7120f925984e2585d941502bb636fc6e | /src/main/java/com/xxx/traditional/domain/service/BetService.java | b0099ca65499935d832c2726f4793a6521439cf4 | [] | no_license | porthis77/jQuery-demo | https://github.com/porthis77/jQuery-demo | cd10e758f4c462e3f96f64cc8e693b80049bbaf4 | cac6d555f11968d378e8d85a374ebf885da94e63 | refs/heads/master | 2019-01-01T15:37:04.362000 | 2014-11-15T07:35:43 | 2014-11-15T07:35:43 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.xxx.traditional.domain.service;
import com.xxx.traditional.domain.model.Bet;
import com.xxx.traditional.domain.model.BetStatus;
import com.xxx.traditional.ui.dto.SubmitBetsResponse;
import java.util.Collection;
import java.util.Random;
public class BetService {
public SubmitBetsResponse submitBets(f... | UTF-8 | Java | 669 | java | BetService.java | Java | [] | null | [] | package com.xxx.traditional.domain.service;
import com.xxx.traditional.domain.model.Bet;
import com.xxx.traditional.domain.model.BetStatus;
import com.xxx.traditional.ui.dto.SubmitBetsResponse;
import java.util.Collection;
import java.util.Random;
public class BetService {
public SubmitBetsResponse submitBets(f... | 669 | 0.744395 | 0.744395 | 30 | 21.299999 | 20.755962 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.566667 | false | false | 14 |
6fa3cc90250a0f91e0503c96db07f3532fdc43b5 | 11,089,605,575,797 | 7346614ce762ad44d1348c6562167d343b71ab37 | /library/src/main/java/com/whamu2/commonview/guide/Guider.java | 37a438965797bb28e0e0ab2aa8336a665229e919 | [
"MIT"
] | permissive | whamu2/CommonView | https://github.com/whamu2/CommonView | fcb84c6e02585fdfc035705c18ad2741e0d8722e | 94db112ffe1fe817a3e379c3335e98afe71cdb67 | refs/heads/master | 2018-11-07T13:06:10.263000 | 2018-11-01T10:41:26 | 2018-11-01T10:41:26 | 137,295,118 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
/*
* MIT License
*
* Copyright (c) 2018 ming su
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify,... | UTF-8 | Java | 2,769 | java | Guider.java | Java | [
{
"context": "\n/*\n * MIT License\n *\n * Copyright (c) 2018 ming su\n *\n * Permission is hereby granted, free of charg",
"end": 51,
"score": 0.9321336150169373,
"start": 44,
"tag": "NAME",
"value": "ming su"
},
{
"context": "iew.guide.core.Builder;\n\n/**\n * 新手引导\n *\n * @author ... | null | [] |
/*
* MIT License
*
* Copyright (c) 2018 <NAME>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, ... | 2,768 | 0.675201 | 0.666794 | 94 | 26.819149 | 27.36124 | 95 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.414894 | false | false | 14 |
3eac6d9aaac197c9f37a8cdbc49483ce616b2e4e | 22,582,938,072,952 | 11b2fe2df9b2fe51aad0fb3120d0ccceb84336ac | /src/main/java/com/sync/mybatis/model/Offline_vip_order.java | b29483757b90be0c8e1efcabe8e643c1dd63db5d | [] | no_license | honeybeeChu/xiuniang_sync_server | https://github.com/honeybeeChu/xiuniang_sync_server | d2d5acfea7a0178622a9a06297f219daaf15553c | 29eeb0aa850adfddd416e576b3e5a77913faa6c4 | refs/heads/master | 2021-01-21T20:38:38.101000 | 2018-04-01T16:10:26 | 2018-04-01T16:10:26 | 92,262,916 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sync.mybatis.model;
import java.text.SimpleDateFormat;
import java.util.Date;
import net.sf.json.JSONObject;
/**
* @author chuliang 线下会员订单拉取
*/
public class Offline_vip_order {
private Integer id;
// 会员卡号
private String vipCard;
private String vmbillid;
// 交易时间
private Date tra... | UTF-8 | Java | 3,309 | java | Offline_vip_order.java | Java | [
{
"context": "\nimport net.sf.json.JSONObject;\r\n\r\n/**\r\n * @author chuliang 线下会员订单拉取\r\n */\r\npublic class Offline_vip_order {\r\n",
"end": 155,
"score": 0.9991102814674377,
"start": 147,
"tag": "USERNAME",
"value": "chuliang"
}
] | null | [] | package com.sync.mybatis.model;
import java.text.SimpleDateFormat;
import java.util.Date;
import net.sf.json.JSONObject;
/**
* @author chuliang 线下会员订单拉取
*/
public class Offline_vip_order {
private Integer id;
// 会员卡号
private String vipCard;
private String vmbillid;
// 交易时间
private Date tra... | 3,309 | 0.672688 | 0.671442 | 145 | 20.158621 | 20.389204 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.372414 | false | false | 14 |
d46709061f1de175c756c463f12d1e8361dba457 | 32,667,521,323,050 | 7eddaa3c69ee91106fc6ce66ecb4354cc0fc48a7 | /mirrorer/app/src/main/java/com/smart/mirrorer/util/mUtil/L.java | 218000d4a9d583c9f838f46d15d7cfb05dc24664 | [] | no_license | zhengzxj/mirrorer_android | https://github.com/zhengzxj/mirrorer_android | 9ddea4c74a803730e4761384f950f2a6ca12f95e | 73363734e0a8ec2810eafe8bb4f5bcae0110779e | refs/heads/master | 2021-04-09T11:54:19.436000 | 2016-07-01T03:23:51 | 2016-07-01T03:23:51 | 62,356,590 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.smart.mirrorer.util.mUtil;
import android.content.Context;
import android.text.TextUtils;
import android.util.Log;
import android.view.Gravity;
import android.widget.Toast;
import com.smart.mirrorer.base.BaseApplication;
/**
* Log工具,类似android.util.Log。
* tag自动产生,格式: customTagPrefix:classNam... | UTF-8 | Java | 6,577 | java | L.java | Java | [] | null | [] | package com.smart.mirrorer.util.mUtil;
import android.content.Context;
import android.text.TextUtils;
import android.util.Log;
import android.view.Gravity;
import android.widget.Toast;
import com.smart.mirrorer.base.BaseApplication;
/**
* Log工具,类似android.util.Log。
* tag自动产生,格式: customTagPrefix:classNam... | 6,577 | 0.61748 | 0.616556 | 280 | 21.203571 | 18.331802 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.432143 | false | false | 14 |
369ca973c3005d7c32ae029fe1dc60bf1134fbf4 | 24,352,464,578,944 | 63298f204aad6efc2dbadc657d8e429a482e79d4 | /app/fr/nemak3/services/LoginService.java | 8715183882b93cf85a996eefc69e356599ac5ee7 | [] | no_license | MarcLoupias/nemak3 | https://github.com/MarcLoupias/nemak3 | ed3efa70e9f032ffd1b7a2a917ede792531b3878 | 6b4ef6b39d84065efe9013571880b3268040c515 | refs/heads/master | 2021-01-21T01:56:57.266000 | 2016-06-16T21:20:23 | 2016-06-16T21:20:23 | 11,910,356 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package fr.nemak3.services;
import fr.nemak3.core.Player;
import fr.nemak3.db.Dao;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class LoginService {
private static LoginService instance = new LoginService();
public static LoginService getInstance() {
ret... | UTF-8 | Java | 748 | java | LoginService.java | Java | [] | null | [] | package fr.nemak3.services;
import fr.nemak3.core.Player;
import fr.nemak3.db.Dao;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class LoginService {
private static LoginService instance = new LoginService();
public static LoginService getInstance() {
ret... | 748 | 0.643048 | 0.637701 | 32 | 22.375 | 24.040007 | 95 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.46875 | false | false | 14 |
5c2e03cd1595af2b0ddcabb567f408050cc849d8 | 27,797,028,359,931 | e5d6df962d7b6674973650533b807a7ea7d6a3fa | /src/main/java/com/medsko/tacos/repositories/IngredientRepository.java | 07afc23a7e6f1daf6ffb80ff725c8f2b951ba05f | [] | no_license | Medsko/taco-cloud | https://github.com/Medsko/taco-cloud | 782f17085312d24c346429e4bac323071536c633 | a9fb4b94c064c6a07d0eaaf4e231f336098e2b04 | refs/heads/master | 2021-05-18T01:49:33.097000 | 2020-03-26T17:40:58 | 2020-03-26T17:40:58 | 251,053,226 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.medsko.tacos.repositories;
import com.medsko.tacos.model.Ingredient;
import org.springframework.data.repository.CrudRepository;
public interface IngredientRepository extends CrudRepository<Ingredient, String> {
}
| UTF-8 | Java | 228 | java | IngredientRepository.java | Java | [] | null | [] | package com.medsko.tacos.repositories;
import com.medsko.tacos.model.Ingredient;
import org.springframework.data.repository.CrudRepository;
public interface IngredientRepository extends CrudRepository<Ingredient, String> {
}
| 228 | 0.842105 | 0.842105 | 8 | 27.5 | 29.924906 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 14 |
7f0d244fe3a5097c6d9d5bb244c875c0c163e41c | 29,884,382,499,705 | 8754a197cdd7bf7c4d46baa5d08d72ddec9ea93a | /_/aws-ch13-samples/src/main/java/com/packtpub/a3ws/ch13/samples/cmis/ws/actions/InspectingObjects.java | 12b7e2b3811be12847164d3dd73aef2a6946bc1b | [
"Apache-2.0"
] | permissive | paullewallencom/alfresco-978-1-8495-1152-0 | https://github.com/paullewallencom/alfresco-978-1-8495-1152-0 | 1ccf43ee0cf3ddc0814cd166091e1999488bed7b | 550620337243d90278ab1eeb19fb4975a7efb5a3 | refs/heads/main | 2023-02-06T06:10:03.453000 | 2020-12-31T19:13:09 | 2020-12-31T19:13:09 | 319,485,763 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.packtpub.a3ws.ch13.samples.cmis.ws.actions;
import java.util.List;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.oasis_open.docs.ns.cmis.messaging._200908.CmisObjectInFolderListType;
import org.oasis_open.docs.ns.cmis.messaging._200908.CmisObjectInFolderTy... | UTF-8 | Java | 2,766 | java | InspectingObjects.java | Java | [] | null | [] | package com.packtpub.a3ws.ch13.samples.cmis.ws.actions;
import java.util.List;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.oasis_open.docs.ns.cmis.messaging._200908.CmisObjectInFolderListType;
import org.oasis_open.docs.ns.cmis.messaging._200908.CmisObjectInFolderTy... | 2,766 | 0.804411 | 0.78778 | 56 | 48.392857 | 38.514225 | 125 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.142857 | false | false | 14 |
1400731c024de5e95454ef7f38937ebff1ae09c7 | 19,413,252,244,224 | e488cf4905896402a4bc16ed225575874c980ab0 | /Kutuphane Yonetim Sistemi/src/Baglan.java | 0d070554de08d77cba56986a618a494e15bd5353 | [] | no_license | celikhakan41/Kutuphane-Yonetim-Sistemi | https://github.com/celikhakan41/Kutuphane-Yonetim-Sistemi | 7c81db76d932d399d379ff25a8c5a1e41d425ad8 | 3e4e8de06c3b24134e48f2d7fe0b6b717ff80716 | refs/heads/master | 2023-01-04T02:52:25.477000 | 2020-10-28T14:04:26 | 2020-10-28T14:04:26 | 272,272,729 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author xsamu
*/
import java.sql.*;
import javax.swing.JOptionPane;
public class Baglan {
Connection conn;
Result... | UTF-8 | Java | 742 | java | Baglan.java | Java | [
{
"context": "the template in the editor.\n */\n\n/**\n *\n * @author xsamu\n */\nimport java.sql.*;\nimport javax.swing.JOption",
"end": 209,
"score": 0.9995887279510498,
"start": 204,
"tag": "USERNAME",
"value": "xsamu"
},
{
"context": "tion(\"jdbc:mysql://localhost/ogrenci\",\"roo... | null | [] | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author xsamu
*/
import java.sql.*;
import javax.swing.JOptionPane;
public class Baglan {
Connection conn;
Result... | 742 | 0.621294 | 0.615903 | 32 | 22.1875 | 25.209667 | 110 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 14 |
7c68b4f45f562ab6ce72406dc9483fb30430f0ae | 19,413,252,246,194 | 54e4b6e0f331bbfb1d148f73f3a8a142ef2a6c5a | /FC_project2/MonteCarlo/src/IStatisticalCollector.java | 995d2488e35e4c2740af1553e13608a523b33c23 | [] | no_license | GuermaziMahdi/Financial-Computing | https://github.com/GuermaziMahdi/Financial-Computing | 18441d3755cdbad73cc5e7a168f4753992d4ead9 | 90c95181b18147017aba76c686516413f86dd97a | refs/heads/master | 2016-10-25T09:30:05.928000 | 2012-10-22T14:28:21 | 2012-10-22T14:28:21 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Map;
/**
* Created by IntelliJ IDEA.
* User: Jinil
* Date: 12. 3. 18
* Time: P.M 3:48
* To change this template use File | Settings | File Templates.
*/
public interface IStatisticalCollector {
public void addValue(double value);
public Map<String, Double> getResults();
pub... | UTF-8 | Java | 380 | java | IStatisticalCollector.java | Java | [
{
"context": ".Map;\r\n/**\r\n * Created by IntelliJ IDEA.\r\n * User: Jinil\r\n * Date: 12. 3. 18\r\n * Time: P.M 3:48\r\n * To cha",
"end": 72,
"score": 0.9807855486869812,
"start": 67,
"tag": "NAME",
"value": "Jinil"
}
] | null | [] | import java.util.Map;
/**
* Created by IntelliJ IDEA.
* User: Jinil
* Date: 12. 3. 18
* Time: P.M 3:48
* To change this template use File | Settings | File Templates.
*/
public interface IStatisticalCollector {
public void addValue(double value);
public Map<String, Double> getResults();
pub... | 380 | 0.660526 | 0.639474 | 14 | 25.142857 | 17.245525 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.571429 | false | false | 14 |
27e9cd9f202981f3564cf9fb913493a6efc4a902 | 21,517,786,220,138 | d293c6ad0e49a99cdb6e6fcae761925744883e1c | /bonus2/src/bonus2/TestBonus2.java | abe0872cbd3cfacfec0c8f2602de8a307d774532 | [] | no_license | ondasempre/JAVA | https://github.com/ondasempre/JAVA | 1de8d251bf3a97ef757d3b150a8ecd79d13151fd | 26c27e82a54e4cabf72788dcf327f883a022bf4c | refs/heads/master | 2021-01-10T05:59:44.183000 | 2016-04-04T14:38:15 | 2016-04-04T14:38:15 | 53,941,383 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package bonus2;
import java.util.Arrays;
/**
* Classe di collaudo dell'esercizio bonus #2 - Esonero 1
* @author navigli
*
*/
public class TestBonus2
{
static final public int LUNGHEZZA = 16;
static public void esito(String test, boolean bEsito)
{
String s = test;
while(s.length() < LUNGHEZZ... | UTF-8 | Java | 2,060 | java | TestBonus2.java | Java | [
{
"context": "do dell'esercizio bonus #2 - Esonero 1\r\n * @author navigli\r\n *\r\n */\r\npublic class TestBonus2\r\n{\r\n\tstatic fin",
"end": 127,
"score": 0.9776883125305176,
"start": 120,
"tag": "USERNAME",
"value": "navigli"
}
] | null | [] | package bonus2;
import java.util.Arrays;
/**
* Classe di collaudo dell'esercizio bonus #2 - Esonero 1
* @author navigli
*
*/
public class TestBonus2
{
static final public int LUNGHEZZA = 16;
static public void esito(String test, boolean bEsito)
{
String s = test;
while(s.length() < LUNGHEZZ... | 2,060 | 0.580097 | 0.536408 | 53 | 36.867924 | 33.250927 | 122 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.301887 | false | false | 14 |
c6fb4a7e20ff9e10e5225e4f32230894ba8b5d86 | 22,935,125,364,375 | 45fa739d7312f598bbbda5afb1c45503702d6c40 | /src/main/java/com/fiap/chat/entity/Conversation.java | 10bec551e3b50ad94b6d8eab038ad0d8117c9238 | [] | no_license | GabLeme/fiap-chat | https://github.com/GabLeme/fiap-chat | 5ec63f747de1cfecb2b8eab049b6d6f655633f2b | 9c3c2d5769b004a3e014ed9b5b1d65ca4e0d0140 | refs/heads/main | 2023-02-11T14:56:01.338000 | 2021-01-08T23:27:38 | 2021-01-08T23:27:38 | 322,442,838 | 0 | 0 | null | false | 2021-01-08T23:27:39 | 2020-12-18T00:06:14 | 2020-12-18T00:13:10 | 2021-01-08T23:27:38 | 104 | 0 | 0 | 0 | Java | false | false | package com.fiap.chat.entity;
import java.util.Set;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.pe... | UTF-8 | Java | 686 | java | Conversation.java | Java | [] | null | [] | package com.fiap.chat.entity;
import java.util.Set;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.pe... | 686 | 0.806122 | 0.806122 | 29 | 22.620689 | 17.531084 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.758621 | false | false | 14 |
45ac1b056fe205e1209cb28f161d319f688cc995 | 13,606,456,443,363 | bb954bc5e62b4848a049952100ff2c3df94435c6 | /vertumnus/src/test/java/vertumnus/client/version/TestCompareVersion.java | 73b72376bf28d14e53150f0c8f068e8119f6df2f | [] | no_license | SoltauFintel/vertumnus | https://github.com/SoltauFintel/vertumnus | 29f723bb1926678ce390cdf8aa6ee8eacb58113d | 3fba3fa93e652ab0e455b687582ba3e000001fb6 | refs/heads/master | 2021-01-10T18:50:46.350000 | 2013-12-08T15:31:16 | 2013-12-08T15:37:59 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package vertumnus.client.version;
import org.junit.Assert;
import org.junit.Test;
import vertumnus.client.WhatVersion;
/**
* Test of the methods compare and makeVersion of the class WhatVersion
*/
public class TestCompareVersion {
@Test
public void equal_2() {
Assert.assertEquals(0, WhatVersion.... | UTF-8 | Java | 2,150 | java | TestCompareVersion.java | Java | [] | null | [] | package vertumnus.client.version;
import org.junit.Assert;
import org.junit.Test;
import vertumnus.client.WhatVersion;
/**
* Test of the methods compare and makeVersion of the class WhatVersion
*/
public class TestCompareVersion {
@Test
public void equal_2() {
Assert.assertEquals(0, WhatVersion.... | 2,150 | 0.645116 | 0.554419 | 85 | 23.294117 | 27.661324 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.494118 | false | false | 14 |
fc0173c845cf1515305b89851026999ef82df9ab | 21,388,937,139,983 | ae7462869925bd3ca14c44b1b05843934175c7fe | /isil-enrollment/src/main/java/isil/pe/isilenrollment/repository/ProductRepository.java | 8e94d889d7809d79c68ad191aa1f458011b5dbad | [] | no_license | lucarelyx/empresarialespractica4 | https://github.com/lucarelyx/empresarialespractica4 | 5bbf54896784df873c4507c9f750e215cda1f802 | 3363e2cf81c79f52c5d90fc7d0afb48d43f02615 | refs/heads/master | 2020-06-14T06:55:10.078000 | 2019-07-02T21:53:42 | 2019-07-02T21:53:42 | 194,939,762 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package isil.pe.isilenrollment.repository;
import isil.pe.isilenrollment.model.Product;
public interface ProductRepository
extends BaseRepository<Product, String> {
}
| UTF-8 | Java | 180 | java | ProductRepository.java | Java | [] | null | [] | package isil.pe.isilenrollment.repository;
import isil.pe.isilenrollment.model.Product;
public interface ProductRepository
extends BaseRepository<Product, String> {
}
| 180 | 0.783333 | 0.783333 | 10 | 17 | 20.899761 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3 | false | false | 14 |
8625c26833385bba9ae1bf921e057ebecd230992 | 12,034,498,433,871 | b2c1d8163948c3537da732afd84d1e1b5d599a4f | /app/src/main/java/com/cobacobms/finalproject/utilities/Settings.java | 80d75f97eb1dc585e1bbbbd1fe66f9ffe7c32559 | [] | no_license | doustmuhammadi/AndroidFinalProject | https://github.com/doustmuhammadi/AndroidFinalProject | a39353729c63445c05aaede4a38af08f00125b21 | 0d0fb0e11a20ad3a1a6dad801914f30cd50d4fbe | refs/heads/master | 2023-02-03T10:39:07.723000 | 2020-12-22T14:33:41 | 2020-12-22T14:33:41 | 323,639,220 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cobacobms.finalproject.utilities;
import android.content.Context;
import android.content.SharedPreferences;
import com.cobacobms.finalproject.R;
import com.cobacobms.finalproject.entity.Coordination;
public class Settings {
public static String getThemeType(Context context) {
SharedPreference... | UTF-8 | Java | 4,958 | java | Settings.java | Java | [] | null | [] | package com.cobacobms.finalproject.utilities;
import android.content.Context;
import android.content.SharedPreferences;
import com.cobacobms.finalproject.R;
import com.cobacobms.finalproject.entity.Coordination;
public class Settings {
public static String getThemeType(Context context) {
SharedPreference... | 4,958 | 0.743445 | 0.74284 | 95 | 51.189472 | 46.483795 | 141 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.884211 | false | false | 14 |
ab6da6ddb90a72890e51ad22d6de57950acfc06f | 12,206,297,099,899 | d62f5f9c7e557da2aae5f912699b56935dd62219 | /collection/src/main/java/com/ashigeru/util/collection/SingleLinkedList.java | 36fa18e18a5057365a8d2bb49467cee2e7955e87 | [
"Apache-2.0"
] | permissive | ashigeru/util | https://github.com/ashigeru/util | 2f4cca5c6242f48d0b537bf7f96c92cd42ec118a | 28a855d8b79a3328ad3572059240a9d9e6e937a9 | refs/heads/master | 2016-09-06T06:37:39.502000 | 2011-03-09T06:31:40 | 2011-03-09T06:31:40 | 912,760 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright 2010 @ashigeru
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | UTF-8 | Java | 9,430 | java | SingleLinkedList.java | Java | [
{
"context": "/*\n * Copyright 2010 @ashigeru\n *\n * Licensed under the Apache License, Version ",
"end": 30,
"score": 0.9994993805885315,
"start": 21,
"tag": "USERNAME",
"value": "@ashigeru"
}
] | null | [] | /*
* Copyright 2010 @ashigeru
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | 9,430 | 0.550319 | 0.547484 | 312 | 26.134615 | 21.458096 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.349359 | false | false | 14 |
a3ddcfb8cd41f5ee15d3498bd583f77385909eb3 | 26,250,840,153,922 | 772e16f50ef988567137d319e3abea49d62aa31b | /src/TestSuite/TestGameController.java | d9a31ae8ddc45d8462f35c7749aa5e7bad58e939 | [] | no_license | ryanpinto/SOEN-6011 | https://github.com/ryanpinto/SOEN-6011 | 081b40c5c114d8404732155d7af08cfe1c53bab9 | 7c0af314ef4cfbc5369e8ecf197908ad6a3da60e | refs/heads/master | 2021-01-21T05:09:52.481000 | 2017-08-30T18:58:02 | 2017-08-30T18:58:02 | 101,917,867 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package TestSuite;
import org.junit.Test;
import org.junit.Rule;
import org.junit.rules.Timeout;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
import java.util.ArrayList;
import org.junit.Before;
import org.junit.Test;
import controller.DeckParser;
im... | UTF-8 | Java | 3,269 | java | TestGameController.java | Java | [] | null | [] | package TestSuite;
import org.junit.Test;
import org.junit.Rule;
import org.junit.rules.Timeout;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
import java.util.ArrayList;
import org.junit.Before;
import org.junit.Test;
import controller.DeckParser;
im... | 3,269 | 0.733864 | 0.72744 | 127 | 24.748032 | 21.709234 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.874016 | false | false | 14 |
3d0297985a72ef99e1777095f4fceb72072990ed | 32,409,823,260,173 | be25b2c018dbacd8147a8fbfbc66f257b050ea1f | /samples/nanoc/nanocProject/languages/nanoc/source_gen/jetbrains/mps/nanoc/structure/CExpressionStatement.java | b6ffc3737ed848e19c0288efccf8b197b0f5c2c5 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | blutkind/MPS | https://github.com/blutkind/MPS | f5bef8c27c3cb65940ba74a5d1942fdab35ee096 | cac72cce91d98dec40bbadf7a049ed9dbbc18231 | refs/heads/master | 2020-04-08T01:22:10.782000 | 2011-12-09T20:58:07 | 2011-12-09T20:58:07 | 2,950,220 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package jetbrains.mps.nanoc.structure;
/*Generated by MPS */
import jetbrains.mps.smodel.SNode;
import jetbrains.mps.smodel.SModel;
import jetbrains.mps.smodel.SModelUtil_new;
import jetbrains.mps.project.GlobalScope;
public class CExpressionStatement extends CStatement {
public static final String concept = "jetb... | UTF-8 | Java | 1,129 | java | CExpressionStatement.java | Java | [] | null | [] | package jetbrains.mps.nanoc.structure;
/*Generated by MPS */
import jetbrains.mps.smodel.SNode;
import jetbrains.mps.smodel.SModel;
import jetbrains.mps.smodel.SModelUtil_new;
import jetbrains.mps.project.GlobalScope;
public class CExpressionStatement extends CStatement {
public static final String concept = "jetb... | 1,129 | 0.787422 | 0.787422 | 33 | 33.21212 | 38.576771 | 183 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.575758 | false | false | 14 |
cb360a49575c8ddf04795c913690ce6e9626706f | 33,535,104,708,216 | 2ec6ea2d6ef36b41f57cf7cb72dad3bb70541a9c | /domain_common/src/main/java/com/cnfantasia/server/domainbase/couponArea/service/CouponAreaBaseService.java | b97eee66eab7d34d3d9e7dbc60eb0f2801c96512 | [] | no_license | 6638112/propertyERP-2 | https://github.com/6638112/propertyERP-2 | b40dac0e6b96f51b351fcef03c9c530b9fc64938 | 8240b03f7c3ea195913bae467cac41e006c82c61 | refs/heads/master | 2023-07-08T17:07:20.127000 | 2018-03-19T07:13:05 | 2018-03-19T07:13:05 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cnfantasia.server.domainbase.couponArea.service;
import java.util.Map;
import java.util.List;
import org.springframework.stereotype.Service;
import com.cnfantasia.server.domainbase.couponArea.dao.ICouponAreaBaseDao;
import com.cnfantasia.server.business.pub.entity.PageModel;
import com.cnfantasia.serv... | UTF-8 | Java | 4,645 | java | CouponAreaBaseService.java | Java | [
{
"context": " 描述:(消费券发放区域表) 服务类\n * \n * @version 1.00\n * @author null\n * \n */\n@Service\npublic class CouponAreaBaseServi",
"end": 426,
"score": 0.6141332387924194,
"start": 422,
"tag": "USERNAME",
"value": "null"
}
] | null | [] | package com.cnfantasia.server.domainbase.couponArea.service;
import java.util.Map;
import java.util.List;
import org.springframework.stereotype.Service;
import com.cnfantasia.server.domainbase.couponArea.dao.ICouponAreaBaseDao;
import com.cnfantasia.server.business.pub.entity.PageModel;
import com.cnfantasia.serv... | 4,645 | 0.73883 | 0.738089 | 171 | 22.690058 | 25.057896 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.22807 | false | false | 14 |
df00a988433f0995dc134c7eb00df5939a6dd6c7 | 33,535,104,708,569 | 3418395a6bb734401888a6794559f2fbecc2affd | /OCRS/build/server/src/main/java/graphql/events/EmailMessageChangeEvent.java | 181d2fdfba952652ade45ec43f12f682c97e0837 | [] | no_license | Saiteja-Pujari/ocrs-test | https://github.com/Saiteja-Pujari/ocrs-test | da5af53333bbd7ec7f0f66c45bdd45555811d44f | e8813bc1fd1b26e0702b339fd5c8ca3a99162f79 | refs/heads/master | 2022-10-18T02:39:34.131000 | 2020-06-10T13:26:29 | 2020-06-10T13:26:29 | 271,194,595 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package graphql.events;
import models.EmailMessage;
public class EmailMessageChangeEvent extends ChangeEvent<EmailMessage> {}
| UTF-8 | Java | 128 | java | EmailMessageChangeEvent.java | Java | [] | null | [] | package graphql.events;
import models.EmailMessage;
public class EmailMessageChangeEvent extends ChangeEvent<EmailMessage> {}
| 128 | 0.84375 | 0.84375 | 5 | 24.6 | 26.687824 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 14 |
8222f66c20bf65fc85ccefff531e6385df8d0389 | 1,194,000,948,982 | 026d7a617ab9b034ef00f7b6803591ba520badc1 | /platform-control-center/src/main/java/com/flow/platform/cc/dao/adaptor/list/ListThrowableAdaptor.java | f377b2f5085e158d4581e1196dacddd4d1fd1454 | [
"Apache-2.0"
] | permissive | yang-guo-2016/flow-platform | https://github.com/yang-guo-2016/flow-platform | 48bf32719fb021f9ccbc65ea1067e9ab2bb2fd83 | e45ffb1544c745e5449514184bd5f4f305c3db27 | refs/heads/master | 2019-08-01T16:05:19.501000 | 2017-07-12T05:48:40 | 2017-07-12T05:48:40 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.flow.platform.cc.dao.adaptor.list;
import com.google.gson.reflect.TypeToken;
import java.lang.reflect.Type;
import java.util.List;
/**
* Created by gy@fir.im on 28/06/2017.
* Copyright fir.im
*/
public class ListThrowableAdaptor extends ListAdaptor {
@Override
protected Type getTargetType() {... | UTF-8 | Java | 449 | java | ListThrowableAdaptor.java | Java | [
{
"context": "ct.Type;\nimport java.util.List;\n\n/**\n * Created by gy@fir.im on 28/06/2017.\n * Copyright fir.im\n */\npublic cla",
"end": 173,
"score": 0.9999157786369324,
"start": 164,
"tag": "EMAIL",
"value": "gy@fir.im"
}
] | null | [] | package com.flow.platform.cc.dao.adaptor.list;
import com.google.gson.reflect.TypeToken;
import java.lang.reflect.Type;
import java.util.List;
/**
* Created by <EMAIL> on 28/06/2017.
* Copyright fir.im
*/
public class ListThrowableAdaptor extends ListAdaptor {
@Override
protected Type getTargetType() {
... | 447 | 0.706013 | 0.688196 | 19 | 22.631578 | 22.829369 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.315789 | false | false | 14 |
2577bffe9559b9f85252fcc9f76a720eb2e49144 | 85,899,415,822 | 83d1baf48a94dca35f77fe757e9609b22b401136 | /services/src/test/java/ru/tasha2k7/mail/motordepot/services/test/EmployeeServiceTest.java | 2ce44f6e6f32023feb44338a348278f83a96af20 | [] | no_license | TashaB1/ru.tasha2k7.mail.motordepot | https://github.com/TashaB1/ru.tasha2k7.mail.motordepot | 4e5947e903335544da3282e902ce2713594db71b | f72556d34f9fe98a58acc1c0f815d69f0a092187 | refs/heads/master | 2021-01-18T23:56:02.913000 | 2016-12-19T16:20:26 | 2016-12-19T16:20:26 | 72,791,982 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ru.tasha2k7.mail.motordepot.services.test;
import java.sql.Timestamp;
import java.util.Date;
import javax.inject.Inject;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit... | UTF-8 | Java | 1,070 | java | EmployeeServiceTest.java | Java | [] | null | [] | package ru.tasha2k7.mail.motordepot.services.test;
import java.sql.Timestamp;
import java.util.Date;
import javax.inject.Inject;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit... | 1,070 | 0.77757 | 0.76729 | 44 | 23.318182 | 22.530558 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.295455 | false | false | 14 |
2e3b0c83e0dff6f0a92107b4f723752d0c9e61f6 | 25,391,846,711,828 | 7729e993a510a4a359f6642a5f45902dd768402a | /src/viewer/ViewableFileDocument.java | 31f07483471a82be7dfc5007b9e5c22255954860 | [] | no_license | JohnMcG/DocViewer | https://github.com/JohnMcG/DocViewer | 48795d11d016017bab0687b896cda4c0d4e26065 | b2f488004103c3a49ecf7f85ed1790af9c59b3af | refs/heads/master | 2020-06-08T19:46:13.835000 | 2011-03-09T04:49:32 | 2011-03-09T04:49:32 | 1,448,579 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
*
*/
package viewer;
import java.io.FileInputStream;
import java.io.IOException;
import javax.swing.JEditorPane;
import javax.swing.text.BadLocationException;
import javax.swing.text.DefaultEditorKit;
import javax.swing.text.EditorKit;
import javax.swing.text.rtf.RTFEditorKit;
/**
* @author john
*
*
* Cla... | UTF-8 | Java | 1,302 | java | ViewableFileDocument.java | Java | [
{
"context": "javax.swing.text.rtf.RTFEditorKit;\n\n/**\n * @author john\n *\n *\n * Class representing a document in a file\n",
"end": 307,
"score": 0.9982874989509583,
"start": 303,
"tag": "USERNAME",
"value": "john"
}
] | null | [] | /**
*
*/
package viewer;
import java.io.FileInputStream;
import java.io.IOException;
import javax.swing.JEditorPane;
import javax.swing.text.BadLocationException;
import javax.swing.text.DefaultEditorKit;
import javax.swing.text.EditorKit;
import javax.swing.text.rtf.RTFEditorKit;
/**
* @author john
*
*
* Cla... | 1,302 | 0.718894 | 0.718126 | 59 | 21.067797 | 19.29948 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.525424 | false | false | 14 |
2b4266740a9f84b414b65fc5784f96e4e774ece1 | 10,093,173,214,212 | 48af32eab25984bedeca792b0071fbcfeaad80fc | /DS-CJ/src/main/java/durga/FunctionalInterfaceDemo.java | 0653fbd0383ed7e1d1862b45e13ef4a027aac576 | [] | no_license | gagandeeprana/practiceapplications | https://github.com/gagandeeprana/practiceapplications | 76c8fa5d6465b5315612b0c5541feb3171f9e629 | dc2c20d5ff99bf208e14546841003c1208d432a8 | refs/heads/master | 2021-01-20T19:27:08.706000 | 2019-04-04T06:49:27 | 2019-04-04T06:49:27 | 63,422,378 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package durga;
/**
* to invoke/ call lambda expression, we use functional interface
*
* If the interface contains only one abtract method, then it is called functional interface. E.g:
* Runnable, Callable, ActionListener, Comparable, Comparator
*
* any number of default and static methods are allowed in functio... | UTF-8 | Java | 3,991 | java | FunctionalInterfaceDemo.java | Java | [] | null | [] | package durga;
/**
* to invoke/ call lambda expression, we use functional interface
*
* If the interface contains only one abtract method, then it is called functional interface. E.g:
* Runnable, Callable, ActionListener, Comparable, Comparator
*
* any number of default and static methods are allowed in functio... | 3,991 | 0.657479 | 0.650464 | 165 | 23.181818 | 29.685068 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.30303 | false | false | 14 |
c394fb23a87fb37bae662654888dcac0548fe930 | 10,101,763,080,751 | 28ee192edf1d3541fa317faae5f6d537f9d04b56 | /src/main/java/com/fiftywords/domain/Duration.java | 029d57ce0eedc300b0a7d61e9ec5e63d169b08f1 | [] | no_license | shekhargulati/50words | https://github.com/shekhargulati/50words | 80bf9c3c9150fd541c826e07e84782312b17a997 | 7ac34cca7ef1de09f917a5d1bc1fb68fd660dd0f | refs/heads/master | 2020-06-02T02:21:38.117000 | 2013-01-22T12:26:58 | 2013-01-22T12:26:58 | 7,466,264 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.fiftywords.domain;
/**
* The duration for which challenge will last.
*
* @author shekhargulati
*
*/
public enum Duration {
SEVEN_DAYS(7,"7 Days"),THIRTY_DAYS(30,"30 Days"),NINETY_DAYS(90,"90 Days"),ONE_HUNDRED_EIGHTY_DAYS(180,"180 Days"),THREE_HUNDRED_SIXTY_FIVE_DAYS(365,"365 Days");
private int... | UTF-8 | Java | 521 | java | Duration.java | Java | [
{
"context": "tion for which challenge will last.\n * \n * @author shekhargulati\n *\n */\npublic enum Duration {\n\n\tSEVEN_DAYS(7,\"7 D",
"end": 111,
"score": 0.99848872423172,
"start": 98,
"tag": "USERNAME",
"value": "shekhargulati"
}
] | null | [] | package com.fiftywords.domain;
/**
* The duration for which challenge will last.
*
* @author shekhargulati
*
*/
public enum Duration {
SEVEN_DAYS(7,"7 Days"),THIRTY_DAYS(30,"30 Days"),NINETY_DAYS(90,"90 Days"),ONE_HUNDRED_EIGHTY_DAYS(180,"180 Days"),THREE_HUNDRED_SIXTY_FIVE_DAYS(365,"365 Days");
private int... | 521 | 0.671785 | 0.629559 | 29 | 16.965517 | 30.016642 | 162 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.344828 | false | false | 14 |
7db3400fe4232c54fd7bb8990c9ec2a1e7d61b4b | 4,879,082,860,403 | 71cbe0607ed77a86649e1de8ec8ab8df1fefb1c3 | /src/main/java/com/jieweifu/configurations/CorsFilterConfig.java | 5a79d457eaebe186d7daf9cdb0649bb22b984480 | [] | no_license | surick/cms | https://github.com/surick/cms | 8b542ca627c7e0a27bf6cc6d187603806594b11d | 8de9b0eb8ef79834e6ef37a9bd497c341eaf8732 | refs/heads/master | 2020-04-07T20:15:10.135000 | 2019-05-16T09:40:07 | 2019-05-16T09:40:07 | 158,681,070 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jieweifu.configurations;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.env.Environment;
import org.springframework.stereotype.Component;
import javax.servlet.*;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.Arra... | UTF-8 | Java | 1,408 | java | CorsFilterConfig.java | Java | [] | null | [] | package com.jieweifu.configurations;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.env.Environment;
import org.springframework.stereotype.Component;
import javax.servlet.*;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.Arra... | 1,408 | 0.728693 | 0.727983 | 42 | 32.547619 | 36.434677 | 133 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.714286 | false | false | 14 |
749ea5c31854591e6724299ef783ec089a6c1f03 | 10,900,627,034,053 | 3f8f8043d0b98f95a641bca36ba3c9887cc22047 | /app/src/main/java/cn/cibnmp/ott/ui/search/HomeSpaceItemDecoration.java | 809cce14f14bf1c3b901bdb6e9998fea1f4ca414 | [] | no_license | beijingfengtuo/MpOTTProject | https://github.com/beijingfengtuo/MpOTTProject | a496adc9f0d4bab0c91a814c55081b590e0893bb | fa11ed90023bdcde5960a8e39c20aa5e219a11ed | refs/heads/master | 2020-04-09T23:11:49.972000 | 2018-12-06T09:43:08 | 2018-12-06T09:43:08 | 160,649,765 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.cibnmp.ott.ui.search;
import android.graphics.Rect;
import android.support.v7.widget.RecyclerView;
import android.view.View;
/**
* Created by yangwenwu on 18/2/5.
*/
public class HomeSpaceItemDecoration extends RecyclerView.ItemDecoration {
private int space;
public HomeSpaceItemDecoration(int... | UTF-8 | Java | 630 | java | HomeSpaceItemDecoration.java | Java | [
{
"context": "View;\nimport android.view.View;\n\n/**\n * Created by yangwenwu on 18/2/5.\n */\n\npublic class HomeSpaceItemDecorat",
"end": 165,
"score": 0.9996336102485657,
"start": 156,
"tag": "USERNAME",
"value": "yangwenwu"
}
] | null | [] | package cn.cibnmp.ott.ui.search;
import android.graphics.Rect;
import android.support.v7.widget.RecyclerView;
import android.view.View;
/**
* Created by yangwenwu on 18/2/5.
*/
public class HomeSpaceItemDecoration extends RecyclerView.ItemDecoration {
private int space;
public HomeSpaceItemDecoration(int... | 630 | 0.673016 | 0.660317 | 27 | 22.333334 | 25.492191 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.407407 | false | false | 14 |
641443b934a629765c6b525410f459b6adb8d3ac | 3,779,571,236,974 | cea029e68dc9265a477561e8b3a47351a9ef1fc4 | /src/main/java/com/katkam/controller/PickticketController.java | d5f8e3a1fda14767bc96b9d69434feda08b85a2e | [] | no_license | ultrasol/parttrack | https://github.com/ultrasol/parttrack | 3d961054179aa17e54e5a3fd29a399daa4cb0538 | f93eff8d3c923fd48dab68a866408301edd8a447 | refs/heads/master | 2020-06-04T12:25:11.299000 | 2017-02-12T16:49:23 | 2017-02-12T16:49:23 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.katkam.controller;
import com.katkam.GrizzlyHelper;
import com.katkam.entity.*;
import org.hibernate.Session;
import org.hibernate.Transaction;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.ModelAttr... | UTF-8 | Java | 5,804 | java | PickticketController.java | Java | [
{
"context": "rayList;\nimport java.util.List;\n\n/**\n * Created by Developer on 1/21/17.\n */\n@Controller\npublic class Picktick",
"end": 646,
"score": 0.8420268297195435,
"start": 637,
"tag": "USERNAME",
"value": "Developer"
}
] | null | [] | package com.katkam.controller;
import com.katkam.GrizzlyHelper;
import com.katkam.entity.*;
import org.hibernate.Session;
import org.hibernate.Transaction;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.ModelAttr... | 5,804 | 0.639559 | 0.636113 | 153 | 36.934639 | 33.468487 | 164 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.718954 | false | false | 14 |
9c7efc3c381ec7a791c35cb2262603c521d7d15d | 26,113,401,173,083 | 99af003688e03b0b9ef5a575b20c280d3f60ec82 | /src/main/java/com/buession/openid/client/AlipayClient.java | 05685026ade9c0cc3371f600cd20bf8fd68a4722 | [
"Apache-2.0"
] | permissive | eduosi/openid-client | https://github.com/eduosi/openid-client | 7e367bac49013bab1da96b87173f3a9add1cd1c1 | 9c7adcbd7a292aed36ffb1a6c1895dab434e166e | refs/heads/master | 2020-12-24T13:28:42.934000 | 2014-04-10T08:20:15 | 2014-04-10T08:20:15 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* 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, Version 2.0
* (the "License"); you may not... | UTF-8 | Java | 3,325 | java | AlipayClient.java | Java | [
{
"context": ".buession.com.cn/LICENSE \t\t\t\t\t\t\t\t\t\t\t|\n * | Author: Yong.Teng <webmaster@buession.com> \t\t\t\t\t\t\t\t\t\t\t\t\t|\n * | Copy",
"end": 1321,
"score": 0.9998529553413391,
"start": 1312,
"tag": "NAME",
"value": "Yong.Teng"
},
{
"context": "m.cn/LICENSE \t\t\t\t... | null | [] | /*
* 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, Version 2.0
* (the "License"); you may not... | 3,295 | 0.692331 | 0.685714 | 89 | 36.370785 | 34.406158 | 101 | false | false | 0 | 0 | 0 | 0 | 98 | 0.029474 | 1.539326 | false | false | 14 |
e3305c5e8eec3290f27a3e8d024aa5d77b3515ab | 13,408,887,939,887 | 42f2c7acf73edd838bff5d4cd694b9b25ef3c5e7 | /src/main/java/RoughSets/KnowledgeSystem.java | f5e0302b824444738153f9ada3d32be2ac22dc24 | [] | no_license | moaiweishui/data_mining_algorithm | https://github.com/moaiweishui/data_mining_algorithm | ef89f186d1b7caef8f6ddc1b69aaf4c6d3a4e5d5 | 47759a6f3c3843d5e3939aeb833af1004c501f4d | refs/heads/master | 2021-09-05T07:36:26.260000 | 2018-01-25T09:06:15 | 2018-01-25T09:06:15 | 118,878,714 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package RoughSets;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Set;
public class KnowledgeSystem {
private ArrayList<RecordCollection> recordCollectionList;
public ArrayList<RecordCollection> getRecordCollectionList() {
return recordCollectionList;... | UTF-8 | Java | 1,786 | java | KnowledgeSystem.java | Java | [] | null | [] | package RoughSets;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Set;
public class KnowledgeSystem {
private ArrayList<RecordCollection> recordCollectionList;
public ArrayList<RecordCollection> getRecordCollectionList() {
return recordCollectionList;... | 1,786 | 0.683973 | 0.683973 | 53 | 32.433964 | 28.192404 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.377358 | false | false | 14 |
4b57016be1f07aaf5c1e3d70ba4b8ceb724b410f | 1,812,476,261,604 | 77ed102874d860bb6d7ff5037d8609139974da78 | /app/src/main/java/com/example/androidtasksoftexpert/ui/Adapter.java | 9661748553c334480fc4173da10300fe6b58935d | [] | no_license | sohasam/AndroidTaskSoftExpert | https://github.com/sohasam/AndroidTaskSoftExpert | 029925d80f000a32a3c30b96229254982e362ebd | 5ff035e5ba8416b9ca070e1308758da68f357d9a | refs/heads/master | 2023-08-25T20:47:00.306000 | 2021-10-05T17:55:25 | 2021-10-05T17:55:25 | 413,924,773 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.androidtasksoftexpert.ui;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.... | UTF-8 | Java | 3,024 | java | Adapter.java | Java | [] | null | [] | package com.example.androidtasksoftexpert.ui;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.... | 3,024 | 0.702381 | 0.702381 | 94 | 31.148935 | 29.067404 | 127 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.56383 | false | false | 14 |
253860caa23d3501adc793323b4e9011c5bd9a34 | 2,654,289,816,640 | 87ec005bce7217e531576075551d5090807635d2 | /Worksheet2/src/main/java/taskapp/model/Task.java | 958213fe3e3017e4419793d9648c38b8bc7880b4 | [] | no_license | mujibur36/CO2012 | https://github.com/mujibur36/CO2012 | 75bacd93bc1f4f653a2954d1bd6607fdc1bec98d | 868f83721950549b1913d77ae9f9272a7d198db2 | refs/heads/master | 2021-08-15T05:59:05.238000 | 2017-11-17T13:38:54 | 2017-11-17T13:38:54 | 111,098,307 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package taskapp.model;
public class Task {
public Task (String title){
super();
}
} | UTF-8 | Java | 88 | java | Task.java | Java | [] | null | [] | package taskapp.model;
public class Task {
public Task (String title){
super();
}
} | 88 | 0.681818 | 0.681818 | 7 | 11.714286 | 10.511413 | 28 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.857143 | false | false | 14 |
bfffbf85eecc85749fd2a784521314850508cd77 | 7,602,092,168,947 | a5d1bc45bb32c5fbbcd4811f01490000f66244af | /src/main/java/edu/pitt/medschool/model/dto/MedicalDownsampleExample.java | 195eb344079e35cf520569aebbc73ed0f70f3045 | [] | no_license | tsdb-project/influx-test | https://github.com/tsdb-project/influx-test | ccf8b1adb26583d0edd4939ac617d7acdb1bd3a9 | 7282e3f3b3e359f56bddb5bf86ac5fb1d7e9c58b | refs/heads/master | 2022-07-11T04:56:33.689000 | 2020-11-04T15:17:48 | 2020-11-04T15:17:48 | 115,147,273 | 3 | 3 | null | false | 2022-06-30T14:45:00 | 2017-12-22T20:13:59 | 2020-11-04T15:17:55 | 2022-06-30T14:44:57 | 37,499 | 2 | 2 | 23 | HTML | false | false | package edu.pitt.medschool.model.dto;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.time.LocalDateTime;
public class MedicalDownsampleExample {
/**
* This field was generated by MyBatis Generator. This field corresponds to the database table medical_downsample
* @mbg.ge... | UTF-8 | Java | 32,418 | java | MedicalDownsampleExample.java | Java | [] | null | [] | package edu.pitt.medschool.model.dto;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.time.LocalDateTime;
public class MedicalDownsampleExample {
/**
* This field was generated by MyBatis Generator. This field corresponds to the database table medical_downsample
* @mbg.ge... | 32,418 | 0.71522 | 0.711518 | 1,133 | 27.613415 | 26.880053 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.565755 | false | false | 14 |
4f03a2650c576d0411715662b5de2e65d6c2b9ea | 11,166,914,978,830 | e2ffa01f87b6609dce583cda5b2b625543624c00 | /src/main/java/net/cloudybyte/jkee/ViewingDirection.java | ad95c5300bb08bb2a32e1323cadc28c2ce414760 | [] | no_license | oleggtro/info | https://github.com/oleggtro/info | b7da373027604d111efb469fec437f44f0841515 | dd50b698db9f8230bfb276c8e6296967ba63fdf5 | refs/heads/master | 2023-08-03T06:34:02.437000 | 2021-01-27T16:24:34 | 2021-01-27T23:57:45 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright (c) Ole D. - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited
* Proprietary and confidential
* Written by Ole D. <hi@cloudybyte.net>, 2021
*/
package net.cloudybyte.jkee;
public enum ViewingDirection {
NORTH,
SOUTH,
WEST,
EAST
}
| UTF-8 | Java | 314 | java | ViewingDirection.java | Java | [
{
"context": "/*\n * Copyright (c) Ole D. - All Rights Reserved\n * Unauthorized copying of ",
"end": 25,
"score": 0.9721112847328186,
"start": 20,
"tag": "NAME",
"value": "Ole D"
},
{
"context": "ited\n * Proprietary and confidential\n * Written by Ole D. <hi@cloudybyte.net>, 2021\... | null | [] | /*
* Copyright (c) <NAME>. - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited
* Proprietary and confidential
* Written by <NAME>. <<EMAIL>>, 2021
*/
package net.cloudybyte.jkee;
public enum ViewingDirection {
NORTH,
SOUTH,
WEST,
EAST
}
| 306 | 0.694268 | 0.681529 | 15 | 19.933332 | 21.452169 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 14 |
66715c3416d24bc3c68632fd6c8afa112f5fef4f | 20,229,295,999,061 | 930882fbd11e7c9d3496be03ad05efe76353f815 | /17_AuthenticationWithJWT/rest-with-spring-boot-and-java-erudio/src/test/java/br/com/erudio/integrationtests/controller/withjson/PersonControllerJsonTest.java | 9f0fae803ee1ff88c2b56b3454197d6a5c3b8354 | [
"Apache-2.0"
] | permissive | leandrocgsi/SpringBootPlayground | https://github.com/leandrocgsi/SpringBootPlayground | e848ca2e1c741ae796b90c04947ee565d6ac79b7 | b1422879dfb83987f9d74938c49ad4b592cdc0df | refs/heads/main | 2022-06-14T16:01:27.803000 | 2022-06-04T13:57:54 | 2022-06-04T13:57:54 | 150,619,582 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.com.erudio.integrationtests.controller.withjson;
import static io.restassured.RestAssured.given;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api... | UTF-8 | Java | 7,271 | java | PersonControllerJsonTest.java | Java | [
{
"context": "createdPerson.getId() > 0);\n assertEquals(\"Richard\", createdPerson.getFirstName());\n assertEq",
"end": 3182,
"score": 0.9995770454406738,
"start": 3175,
"tag": "NAME",
"value": "Richard"
},
{
"context": "atedPerson.getFirstName());\n assertEqual... | null | [] | package br.com.erudio.integrationtests.controller.withjson;
import static io.restassured.RestAssured.given;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api... | 7,271 | 0.607344 | 0.603906 | 188 | 37.675533 | 23.915989 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.526596 | false | false | 14 |
632f3d8e9b23fa42d582cf803f7f12a8561b2331 | 2,791,728,796,108 | e816258620771c6c08436eb98065c5541b859a87 | /src/eu/telecomnancy/commands/TurnSensorOff.java | 9f50060e61e3f2c6833c1316ac2d46d02a98c241 | [] | no_license | TELECOMNancy/designpattern-cdevy | https://github.com/TELECOMNancy/designpattern-cdevy | fcb7a317607db89fb29814343bebd98397de52ab | 63105e02b930b9ac5d96be9b1c6067f059b36e6c | refs/heads/master | 2019-07-07T07:41:06.543000 | 2016-11-30T21:19:35 | 2016-11-30T21:19:35 | 73,687,566 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package eu.telecomnancy.commands;
import eu.telecomnancy.sensor.ISensor;
public class TurnSensorOff implements Command {
private ISensor sensor;
public TurnSensorOff(ISensor sensor) {
this.sensor = sensor;
}
public void execute() {
sensor.off();
}
}
| UTF-8 | Java | 265 | java | TurnSensorOff.java | Java | [] | null | [] | package eu.telecomnancy.commands;
import eu.telecomnancy.sensor.ISensor;
public class TurnSensorOff implements Command {
private ISensor sensor;
public TurnSensorOff(ISensor sensor) {
this.sensor = sensor;
}
public void execute() {
sensor.off();
}
}
| 265 | 0.743396 | 0.743396 | 16 | 15.5625 | 16.4011 | 47 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.9375 | false | false | 14 |
da19bd814f089086e6fd32b18bd752872c562bae | 2,791,728,798,346 | 86085ca4fa66dd4494cc8ba9d85f28bdb7ee0d41 | /src/fr/afonteneau/methodes/Afficher.java | 7db3434505e5e339ae03cc7c6407befbf3512232 | [] | no_license | AFonteneau/TheAnimalShop | https://github.com/AFonteneau/TheAnimalShop | 41bfb7c7f67b9a456f7371b762ed8e0a14cd14b6 | 428c73ac7e7c9923331dc88d793411fba125f217 | refs/heads/master | 2020-04-14T21:00:01.934000 | 2019-01-04T14:04:00 | 2019-01-04T14:04:00 | 164,113,869 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package fr.afonteneau.methodes;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class Afficher {
public static final String DATABASE_URL = "jdbc:mysql://localhost:3306/the_animal_shop?useUnicode=true&useJDBCComplia... | UTF-8 | Java | 6,361 | java | Afficher.java | Java | [] | null | [] | package fr.afonteneau.methodes;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class Afficher {
public static final String DATABASE_URL = "jdbc:mysql://localhost:3306/the_animal_shop?useUnicode=true&useJDBCComplia... | 6,361 | 0.662474 | 0.661846 | 184 | 33.570652 | 31.514927 | 188 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.961957 | false | false | 14 |
5eb89a854fb55f0b84e048e19cd7b14f0f152f1e | 17,995,913,009,427 | 1e00701f226c1e63bee5493b952b60b7a54efe59 | /src/main/java/com/eulersbridge/iEngage/database/repository/PPSEQuestionsRepository.java | fd8aa3f1b62c8e82da10fb173341f1758cc6f780 | [] | no_license | Eulers-Bridge/dbinterface | https://github.com/Eulers-Bridge/dbinterface | 739b47d629a534c6da31e9f1f42a6286e8263061 | 14ae0224462397da66d62b020cf61622429e8531 | refs/heads/master | 2023-02-20T10:09:20.081000 | 2019-08-13T11:12:07 | 2019-08-13T11:12:07 | 323,219,151 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.eulersbridge.iEngage.database.repository;
import com.eulersbridge.iEngage.database.domain.PPSEQuestionsNode;
import org.springframework.data.neo4j.repository.Neo4jRepository;
import org.springframework.stereotype.Repository;
/**
* @author Yikai Gong
*/
@Repository
public interface PPSEQuestionsRepositor... | UTF-8 | Java | 375 | java | PPSEQuestionsRepository.java | Java | [
{
"context": "ngframework.stereotype.Repository;\n\n/**\n * @author Yikai Gong\n */\n@Repository\npublic interface PPSEQuestionsRep",
"end": 264,
"score": 0.9998599886894226,
"start": 254,
"tag": "NAME",
"value": "Yikai Gong"
}
] | null | [] | package com.eulersbridge.iEngage.database.repository;
import com.eulersbridge.iEngage.database.domain.PPSEQuestionsNode;
import org.springframework.data.neo4j.repository.Neo4jRepository;
import org.springframework.stereotype.Repository;
/**
* @author <NAME>
*/
@Repository
public interface PPSEQuestionsRepository ex... | 371 | 0.837333 | 0.829333 | 12 | 30.25 | 31.187939 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.416667 | false | false | 14 |
0f172576f70a823785b9c0530c191102887ba91d | 15,599,321,247,609 | 23e332903cc30b0acdd81c36c932d4a14fd010f4 | /src/Data/Rule.java | 62c79e62395e085202cf8b8dc48d907e0dc8fb4e | [] | no_license | sirojkhuja/ExpertSystemJavaFX | https://github.com/sirojkhuja/ExpertSystemJavaFX | 2501c8059ac822126935c9dcac5334791268283d | 42e77465506ff1dabf7b91b4f059ce333403f507 | refs/heads/master | 2021-09-03T16:16:44.281000 | 2018-01-10T10:34:43 | 2018-01-10T10:34:43 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Data;
import java.io.Serializable;
import static Data.Rule.Operation.NO_OP;
public class Rule<T> implements Serializable {
private Attribute attribute; //*указатель
private T value;
private int id;
private static int count = 0;
private String tag;
private Operation operation;
priv... | UTF-8 | Java | 3,699 | java | Rule.java | Java | [] | null | [] | package Data;
import java.io.Serializable;
import static Data.Rule.Operation.NO_OP;
public class Rule<T> implements Serializable {
private Attribute attribute; //*указатель
private T value;
private int id;
private static int count = 0;
private String tag;
private Operation operation;
priv... | 3,699 | 0.541758 | 0.541485 | 146 | 24.09589 | 20.755699 | 95 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.493151 | false | false | 14 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.