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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
6b6aff89a7c8b1e02f79a8ec8abdf183c8ab3dfb | 25,881,472,941,527 | 3837d414975366d1ea3e6a55d89b41ad6f252694 | /common/src/main/java/com/github/kongwu/recorder/common/model/ResponsePacket.java | 2127a93e1a8d93e63802a6e578ce2e6f96864027 | [] | no_license | kongwu-/recorder-idea-plugin | https://github.com/kongwu-/recorder-idea-plugin | 8e082a6ac7cedbc39df56c36ebe9ff415bbda697 | 98fb9fea8f9cdf513a4b89dc1c7ca3f3d1d4a3e5 | refs/heads/master | 2023-04-15T05:07:03.767000 | 2021-04-14T05:54:33 | 2021-04-14T05:54:33 | 333,088,739 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.github.kongwu.recorder.common.model;
public class ResponsePacket extends Packet {
private byte state;
private String body;
public ResponsePacket(long id, byte state, String body) {
super(PacketConstant.WAY_RESPONSE,id);
this.state = state;
this.body = body;
}
... | UTF-8 | Java | 695 | java | ResponsePacket.java | Java | [
{
"context": "package com.github.kongwu.recorder.common.model;\n\npublic class ResponsePack",
"end": 25,
"score": 0.8412606120109558,
"start": 19,
"tag": "USERNAME",
"value": "kongwu"
}
] | null | [] | package com.github.kongwu.recorder.common.model;
public class ResponsePacket extends Packet {
private byte state;
private String body;
public ResponsePacket(long id, byte state, String body) {
super(PacketConstant.WAY_RESPONSE,id);
this.state = state;
this.body = body;
}
... | 695 | 0.582734 | 0.582734 | 39 | 16.820513 | 16.640808 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.384615 | false | false | 5 |
52424ed0534155acf589b1dde0231301d0009a11 | 4,526,895,541,248 | cfa742554e5574151eaf33caa466f35ded161189 | /leetcode/src/main/leetcode_java/test39_combinationSum/test01.java | 9f0444b72f4fe3f6fbf1ea5eb83de241d963ac5e | [] | no_license | comingboy0701/algorithm-learning | https://github.com/comingboy0701/algorithm-learning | cc3cc651db2d72b719a959245602762c09c35c27 | e46af92dbff3b4c1ca87d0a85f496134d5a905db | refs/heads/master | 2023-05-27T20:39:04.486000 | 2021-06-12T02:11:51 | 2021-06-12T02:11:51 | 211,755,866 | 6 | 1 | null | false | 2021-04-26T20:15:31 | 2019-09-30T02:01:56 | 2021-04-21T03:30:34 | 2021-04-26T20:15:31 | 417,851 | 2 | 0 | 1 | Jupyter Notebook | false | false | package test39_combinationSum;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
public class test01 {
public static void main(String[] args) {
int[] candidates = {2,3,6,7};
int target = 7;
List<List<Integer>> result = combinationSum(c... | UTF-8 | Java | 1,379 | java | test01.java | Java | [] | null | [] | package test39_combinationSum;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
public class test01 {
public static void main(String[] args) {
int[] candidates = {2,3,6,7};
int target = 7;
List<List<Integer>> result = combinationSum(c... | 1,379 | 0.554025 | 0.542422 | 43 | 31.069767 | 22.394346 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.953488 | false | false | 5 |
27232492848df1b7729e7bc975bfcebd4f8999ee | 33,174,327,408,494 | 859f2b437942942c4f1bce68b4795c9094b1a68d | /src/test/java/spac/IR21TWNTM2015_01_Test.java | 65793885ba3c5835a9c4ad0f0aec40328a930eb9 | [] | no_license | yudady/ir21 | https://github.com/yudady/ir21 | 0aee4c4371e9643b1f13071c698d885ad7c12142 | 33099853049633d1ae7d7865661cc1399291982f | refs/heads/master | 2018-01-12T13:29:21.867000 | 2016-02-22T06:20:30 | 2016-02-22T06:20:30 | 49,845,557 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package spac;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.List;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.Unmarshaller;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
imp... | UTF-8 | Java | 79,424 | java | IR21TWNTM2015_01_Test.java | Java | [
{
"context": "ainContact.getEmailList();\n\t\tAssert.assertEquals(\"OMCduty@taiwanmobile.com\", emailList.get(0));\n\n\t\tmLogger.debug(\"Escalation",
"end": 25017,
"score": 0.9999263882637024,
"start": 24993,
"tag": "EMAIL",
"value": "OMCduty@taiwanmobile.com"
},
{
"context": "ation... | null | [] | package spac;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.List;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.Unmarshaller;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
imp... | 79,140 | 0.748464 | 0.726025 | 1,472 | 52.951088 | 33.195366 | 135 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.383152 | false | false | 5 |
c0b15d522572813669d3f4d4cc1f1f132becbbd9 | 33,174,327,411,316 | 010a636045e315e1f3b82454fd02e76c5b663899 | /src/main/java/leecode/bq/algorithm/Q350IntersectionOfTwoArraysII.java | 079d30797197b7f6e5cbb034423c2e8ceaae343a | [] | no_license | jonathanqbo/algorithm | https://github.com/jonathanqbo/algorithm | 81fe44e9fa611e0ac8c4e00cbce405fe4eb73c6d | e2d0944c5e8514725983a8cd32611c94ca616538 | refs/heads/master | 2021-07-14T02:27:06.141000 | 2021-06-27T02:07:36 | 2021-06-27T02:07:36 | 60,659,670 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package leecode.bq.algorithm;
import java.util.*;
/**
* <b> </b>
*
* @Author : jonathan.q.bo@gmail.com
* @Since : V1.0
* Created on 1/6/21 8:37 PM
*/
public class Q350IntersectionOfTwoArraysII {
/**
* solution 1: sort and two pointers
*
* Runtime: 2 ms, faster than 94.96% of Java online subm... | UTF-8 | Java | 2,131 | java | Q350IntersectionOfTwoArraysII.java | Java | [
{
"context": "port java.util.*;\n\n/**\n * <b> </b>\n *\n * @Author : jonathan.q.bo@gmail.com\n * @Since : V1.0\n * Created on 1/6/21 8:37 PM\n */",
"end": 107,
"score": 0.999896764755249,
"start": 84,
"tag": "EMAIL",
"value": "jonathan.q.bo@gmail.com"
}
] | null | [] | package leecode.bq.algorithm;
import java.util.*;
/**
* <b> </b>
*
* @Author : <EMAIL>
* @Since : V1.0
* Created on 1/6/21 8:37 PM
*/
public class Q350IntersectionOfTwoArraysII {
/**
* solution 1: sort and two pointers
*
* Runtime: 2 ms, faster than 94.96% of Java online submissions for Inte... | 2,115 | 0.511966 | 0.479587 | 80 | 25.637501 | 26.262732 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.45 | false | false | 5 |
050fa56d269fd6dbb6ce5db7f236606ec2e9f827 | 4,045,859,210,655 | 879a129160b0bfb57634c4fca9481e71ae66ccdb | /FactoryMethodDemo/src/main/java/com/wangx/FactoryMethodDemo/Human.java | a66686adbdb9da07c48abb7c6e2d5d49fdc35541 | [] | no_license | wx91/Design-Patterns | https://github.com/wx91/Design-Patterns | 555b32b72caa99d055f036d9935d11af38de8f36 | 3e8c9484492879ee840545659012cec8fafa5722 | refs/heads/master | 2020-12-31T07:54:40.242000 | 2016-05-16T08:32:24 | 2016-05-16T08:32:24 | 58,439,128 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.wangx.FactoryMethodDemo;
public interface Human {
//每个人种都有相应的颜色
public void getColor();
//人类都会说话
public void talk();
//每个人都有性别
public void getSex();
}
| UTF-8 | Java | 218 | java | Human.java | Java | [] | null | [] | package com.wangx.FactoryMethodDemo;
public interface Human {
//每个人种都有相应的颜色
public void getColor();
//人类都会说话
public void talk();
//每个人都有性别
public void getSex();
}
| 218 | 0.729412 | 0.729412 | 10 | 16 | 10.723805 | 36 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1 | false | false | 5 |
f5950e38390fbc72b5e840b742a2b609e98e7f63 | 11,192,684,791,951 | 78f96aaa0a78a69f1e4e025ab4f7b68daa321c25 | /project/Library/src/main/java/com/alperguclu/library/domain/Work.java | c798dedaee87f369b5b9eff0cc12fa0e4b4adde8 | [] | no_license | alperguclu/library | https://github.com/alperguclu/library | db1cb1c09ebfd196c451c0a43848464f0f0b7b85 | 7bd229b589a52294688e3351d95ae7453157a206 | refs/heads/master | 2020-02-29T13:53:21.078000 | 2018-10-06T05:40:11 | 2018-10-06T05:40:11 | 89,356,113 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.alperguclu.library.domain;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import javax.persistence.*;
import com.fasterxml.jackson.annotation.JsonIgnore;
@Entity
public class Work {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator="h... | UTF-8 | Java | 3,069 | java | Work.java | Java | [] | null | [] | package com.alperguclu.library.domain;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import javax.persistence.*;
import com.fasterxml.jackson.annotation.JsonIgnore;
@Entity
public class Work {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE, generator="h... | 3,069 | 0.727599 | 0.727273 | 142 | 20.612677 | 29.053823 | 214 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.387324 | false | false | 5 |
c3924afdadc1993617132c0cd5394e1cc1c5f3e6 | 11,192,684,790,964 | dd663b6ad92dd041d2714a93817320f721204cd6 | /SDK/metaiohelper/src/com/zumoko/metaiohelper/xml/XMLParserHelper.java | ea080d8f1066514c16d9df69b251afe23ec53b60 | [] | no_license | insomania/Xcapade | https://github.com/insomania/Xcapade | 14df88bd910021f15b3c93b7bb7470ef0bfad2af | d824f84647ce5b219e174b37c7dd48f9f797e28e | refs/heads/master | 2021-01-18T18:27:20.040000 | 2017-04-19T23:20:23 | 2017-04-19T23:20:23 | 86,854,726 | 0 | 0 | null | false | 2017-04-19T18:23:38 | 2017-03-31T19:45:34 | 2017-03-31T20:04:40 | 2017-04-19T18:23:38 | 34,941 | 0 | 0 | 0 | JavaScript | null | null | package com.zumoko.metaiohelper.xml;
import android.util.Log;
import android.util.Pair;
import com.metaio.sdk.MetaioDebug;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
imp... | UTF-8 | Java | 3,328 | java | XMLParserHelper.java | Java | [
{
"context": "arserConfigurationException;\r\n\r\n/**\r\n * Created by darsta on 15-Nov-15.\r\n */\r\npublic class XMLParserHelper\r",
"end": 758,
"score": 0.9991500973701477,
"start": 752,
"tag": "USERNAME",
"value": "darsta"
}
] | null | [] | package com.zumoko.metaiohelper.xml;
import android.util.Log;
import android.util.Pair;
import com.metaio.sdk.MetaioDebug;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
imp... | 3,328 | 0.581731 | 0.578726 | 124 | 24.838709 | 21.820154 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.508065 | false | false | 5 |
45ec084d2e6feb58f8b14b2c2c602ed21ffc2ab7 | 3,418,793,987,729 | e88ba3282238a46e136e66328a1b610572ae531c | /app/src/main/java/com/dianjiake/android/data/bean/ADItemBean.java | 5a79c54abbe2205527659e2777ac55d4807d26ad | [] | no_license | 1210733518/sugartea-dev | https://github.com/1210733518/sugartea-dev | d3873b8ad37e775982bbbbe84edece3f4495709c | aa94f74212f9083347963d33d8637fef92e9728d | refs/heads/master | 2021-06-24T06:34:39.722000 | 2017-09-08T08:02:31 | 2017-09-08T08:02:31 | 102,835,351 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dianjiake.android.data.bean;
import android.os.Parcel;
import android.os.Parcelable;
/**
* Created by lfs on 2017/7/19.
*/
public class ADItemBean implements Parcelable {
private String id;
private String title;
private String brief;
private String url;
private String content;
... | UTF-8 | Java | 3,182 | java | ADItemBean.java | Java | [
{
"context": ";\nimport android.os.Parcelable;\n\n/**\n * Created by lfs on 2017/7/19.\n */\n\npublic class ADItemBean implem",
"end": 120,
"score": 0.9996192455291748,
"start": 117,
"tag": "USERNAME",
"value": "lfs"
}
] | null | [] | package com.dianjiake.android.data.bean;
import android.os.Parcel;
import android.os.Parcelable;
/**
* Created by lfs on 2017/7/19.
*/
public class ADItemBean implements Parcelable {
private String id;
private String title;
private String brief;
private String url;
private String content;
... | 3,182 | 0.591452 | 0.588938 | 150 | 20.213333 | 17.327662 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.386667 | false | false | 5 |
d4d0cd6e7e241099942c271eeb2bfbd596c56e94 | 28,587,302,340,311 | d60e287543a95a20350c2caeabafbec517cabe75 | /LACCPlus/Hadoop/3370_2.java | d7d2d5d9683b705765b9ca17bfe536907a689e97 | [
"MIT"
] | permissive | sgholamian/log-aware-clone-detection | https://github.com/sgholamian/log-aware-clone-detection | 242067df2db6fd056f8d917cfbc143615c558b2c | 9993cb081c420413c231d1807bfff342c39aa69a | refs/heads/main | 2023-07-20T09:32:19.757000 | 2021-08-27T15:02:50 | 2021-08-27T15:02:50 | 337,837,827 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | //,temp,ApplicationTableRW.java,84,126,temp,SubApplicationTableRW.java,84,126
//,2
public class xxx {
public void createTable(Admin admin, Configuration hbaseConf)
throws IOException {
TableName table = getTableName(hbaseConf);
if (admin.tableExists(table)) {
// do not disable / delete existing t... | UTF-8 | Java | 2,009 | java | 3370_2.java | Java | [] | null | [] | //,temp,ApplicationTableRW.java,84,126,temp,SubApplicationTableRW.java,84,126
//,2
public class xxx {
public void createTable(Admin admin, Configuration hbaseConf)
throws IOException {
TableName table = getTableName(hbaseConf);
if (admin.tableExists(table)) {
// do not disable / delete existing t... | 2,009 | 0.740667 | 0.734196 | 48 | 40.875 | 24.847555 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.729167 | false | false | 5 |
1bedd7b69f903e4293ef094f376428a91e17e995 | 20,495,583,951,058 | 5957fe1aba9c365ed0562b2935339e24f4732381 | /workspace/HomeRunDerby/src/Pitch.java | 2ff3f0d3b6120b6d2e2e097e81789308f2fb7096 | [] | no_license | rharvey43/depaul | https://github.com/rharvey43/depaul | ad6daa5bc1466674d53f724c4af3ce5b3b264339 | e8e0c0f624857e7d1388f72e77204a903224d3c7 | refs/heads/master | 2021-01-18T23:57:56.823000 | 2017-04-05T01:41:26 | 2017-04-05T01:41:26 | 87,135,964 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class Pitch
{
private double percentage = Math.random();
private final String pitchName;
private static int pitches = 0;
private int pitchCount = 0;
public Pitch(final String sPitchName)
{
++pitches;
pitchCount = pitches;
pitchName = sPitchName;
}
public int getPitchCount() { return pit... | UTF-8 | Java | 479 | java | Pitch.java | Java | [] | null | [] | public class Pitch
{
private double percentage = Math.random();
private final String pitchName;
private static int pitches = 0;
private int pitchCount = 0;
public Pitch(final String sPitchName)
{
++pitches;
pitchCount = pitches;
pitchName = sPitchName;
}
public int getPitchCount() { return pit... | 479 | 0.693111 | 0.688935 | 22 | 20.772728 | 22.22188 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.545455 | false | false | 5 |
b3acb49bcf232964b86cb469e77ec4af9f0cd99a | 28,973,849,396,448 | 225595f1e959d441ad03ea8dcfa6c87b7f963e73 | /timelineviewv2/src/main/java/ro/dobrescuandrei/timelineviewv2/base/BaseTimelineRecyclerViewAdapter.java | 879030f53348b49a340521443a159820e77ad26d | [
"Apache-2.0"
] | permissive | ladroshan/timelineview-v2 | https://github.com/ladroshan/timelineview-v2 | ee30d8e75d4713732e7a20516f2740d0ac7757f9 | 740ba4d5c7a75cc0de72563d6a9c806bf01906d4 | refs/heads/master | 2022-06-24T03:22:56.755000 | 2020-05-08T11:26:15 | 2020-05-08T11:26:15 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ro.dobrescuandrei.timelineviewv2.base;
import android.content.Context;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;
import ro.dobrescuandrei.timelineviewv2.TimelineView;
import ro.dobrescuandrei.timelineviewv2.model.DateTimeInterval;
impor... | UTF-8 | Java | 1,716 | java | BaseTimelineRecyclerViewAdapter.java | Java | [] | null | [] | package ro.dobrescuandrei.timelineviewv2.base;
import android.content.Context;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;
import ro.dobrescuandrei.timelineviewv2.TimelineView;
import ro.dobrescuandrei.timelineviewv2.model.DateTimeInterval;
impor... | 1,716 | 0.781469 | 0.778555 | 47 | 35.510639 | 35.946102 | 155 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.553191 | false | false | 5 |
336b52e30d61732a08c8e81f2e41849e71a790f0 | 18,270,790,892,460 | 714d2b356571490dfff98970241ffe2c6a415fdb | /src/org/jdownloader/captcha/v2/solver/twocaptcha/TwoCaptchaSolverService.java | 01a4cada83821c08459700f46e0af241e0dfee75 | [] | no_license | BrunoReX/jdownloader | https://github.com/BrunoReX/jdownloader | 36529b7f338aa9641aa3053b6e1eb813f4db0ca0 | d1dcabc0c5704b60d630adc5fecda6d8fc93b7b1 | refs/heads/master | 2020-06-14T07:18:43.435000 | 2016-11-30T18:08:25 | 2016-11-30T18:08:25 | 75,215,908 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.jdownloader.captcha.v2.solver.twocaptcha;
import java.awt.event.ActionEvent;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.swing.Icon;
import org.appwork.storage.config.JsonConfig;
import org.appwork.swing.components.tooltips.ExtTooltip;
import org.appwork... | UTF-8 | Java | 6,787 | java | TwoCaptchaSolverService.java | Java | [] | null | [] | package org.jdownloader.captcha.v2.solver.twocaptcha;
import java.awt.event.ActionEvent;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.swing.Icon;
import org.appwork.storage.config.JsonConfig;
import org.appwork.swing.components.tooltips.ExtTooltip;
import org.appwork... | 6,787 | 0.613526 | 0.600855 | 183 | 35.087433 | 30.458303 | 159 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.612022 | false | false | 5 |
c02112ed7604bafd298f95a8780e6a2a0c399b1a | 22,926,535,448,529 | 3168c82d9d6ed1628053cc7809f56345d882f13f | /app/src/main/java/santosh/pillai/sp98/notedown/ND_DataBaseAdapter.java | 8d6c2ac2aaa10949b0182658a979cdb0553d772f | [] | no_license | sp98/Note-Down | https://github.com/sp98/Note-Down | 611d9ed038a7394a7cec5ffdd4d44382cead97ca | b0aaae135b7d011da958133796c8fbbc2b370acb | refs/heads/master | 2020-05-20T06:37:49.669000 | 2015-09-24T13:52:10 | 2015-09-24T13:52:10 | 42,755,283 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /* Class Name: ND_DataBaseAdapter
* Version : ND-1.0
* Data: 09.19.15
* CopyWrit:
*
*/
package santosh.pillai.sp98.notedown;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOp... | UTF-8 | Java | 11,188 | java | ND_DataBaseAdapter.java | Java | [
{
"context": ".List;\nimport java.util.Locale;\n\n/**\n * Created by Santosh on 9/19/2015.\n */\npublic class ND_DataBaseAdapter",
"end": 491,
"score": 0.9986808896064758,
"start": 484,
"tag": "NAME",
"value": "Santosh"
}
] | null | [] | /* Class Name: ND_DataBaseAdapter
* Version : ND-1.0
* Data: 09.19.15
* CopyWrit:
*
*/
package santosh.pillai.sp98.notedown;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOp... | 11,188 | 0.583125 | 0.573829 | 352 | 30.78409 | 32.038399 | 214 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.769886 | false | false | 5 |
404a6af93bc8386281de01756e1d0b64ec52fab0 | 30,485,677,887,086 | 0c076cfeda40a96d365368709b2d96f3e037ca7c | /GoodsCity/src/com/luzhikun/service/ICateUserService.java | fea7210b4b558aa19c8467ccc8567646d62c7b96 | [] | no_license | xiaoqidejava/dongfangOpenSource | https://github.com/xiaoqidejava/dongfangOpenSource | a8947f511e44ec0f8110f736bd976a8be062c4a6 | d82a9b328f949df15bec8a96aa013a19b11052df | refs/heads/master | 2023-06-22T10:02:55.463000 | 2021-07-27T12:35:47 | 2021-07-27T12:35:47 | 389,932,185 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.luzhikun.service;
import com.luzhikun.domain.Goods_Category;
import com.luzhikun.domain.Goods_Product;
import java.util.ArrayList;
import java.util.List;
/*
* @Author liu-miss
* @Description 商品分类
* @Date 20:33 2021/5/29
**/
public interface ICateUserService {
/*
* @Author liu-miss
* @D... | UTF-8 | Java | 1,592 | java | ICateUserService.java | Java | [
{
"context": "l.ArrayList;\nimport java.util.List;\n\n/*\n * @Author liu-miss\n * @Description 商品分类\n * @Date 20:33 2021/5/29\n **",
"end": 191,
"score": 0.9997060298919678,
"start": 183,
"tag": "USERNAME",
"value": "liu-miss"
},
{
"context": "nterface ICateUserService {\n\n /*\n ... | null | [] | package com.luzhikun.service;
import com.luzhikun.domain.Goods_Category;
import com.luzhikun.domain.Goods_Product;
import java.util.ArrayList;
import java.util.List;
/*
* @Author liu-miss
* @Description 商品分类
* @Date 20:33 2021/5/29
**/
public interface ICateUserService {
/*
* @Author liu-miss
* @D... | 1,592 | 0.600949 | 0.548781 | 72 | 19.5 | 15.361387 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.166667 | false | false | 5 |
d77c41a2c5071139a6b8495829022a2218a546dc | 30,485,677,889,929 | 0a4da51c11086fc3993c1bd3693a452b6e663c8f | /src/main/java/com/company/workflowpro/controller/WorkflowproUpdateRegister.java | ec9c7d062b11bdfda6642915285b88f1bfa66f26 | [] | no_license | AndOr0812/workflow-management-system | https://github.com/AndOr0812/workflow-management-system | 037f4c432f7b49df45b53ccae4094a2eacbb0e8d | a3fc8da15c9decaa88636fdf38b9d3a429ec96df | refs/heads/master | 2021-12-14T22:55:57.551000 | 2017-06-17T17:15:42 | 2017-06-17T17:15:42 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.company.workflowpro.controller;
import java.io.File;
import java.io.IOException;
import java.util.Iterator;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
imp... | UTF-8 | Java | 2,343 | java | WorkflowproUpdateRegister.java | Java | [] | null | [] | package com.company.workflowpro.controller;
import java.io.File;
import java.io.IOException;
import java.util.Iterator;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
imp... | 2,343 | 0.713615 | 0.713188 | 70 | 32.471428 | 25.322334 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.171429 | false | false | 5 |
76437a67a90eb314df52502180b7ba75ffa1632c | 1,434,519,102,586 | fe98be892375fedb523229c388a5e99ddcc6e5c2 | /src/main/java/com/alogicbus/cassandra/utils/StatementCache.java | f0bd12fca4346ac136098d9eaeaded8bd7950012 | [] | no_license | qiminglao/alogic-xscript-cassandra | https://github.com/qiminglao/alogic-xscript-cassandra | cd544effdbe48e06861facf7c23a6f00c5c21397 | cfe1af43248537ca239f181a84902e0a03cdc759 | refs/heads/master | 2023-03-23T21:01:59.537000 | 2016-12-29T09:35:38 | 2016-12-29T09:35:38 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.alogicbus.cassandra.utils;
import java.util.HashMap;
import java.util.Map;
import com.datastax.driver.core.PreparedStatement;
import com.datastax.driver.core.Session;
public class StatementCache {
public static Map<Session, Map<String, PreparedStatement>> cache = new HashMap<Session, Map<Stri... | UTF-8 | Java | 1,299 | java | StatementCache.java | Java | [] | null | [] | package com.alogicbus.cassandra.utils;
import java.util.HashMap;
import java.util.Map;
import com.datastax.driver.core.PreparedStatement;
import com.datastax.driver.core.Session;
public class StatementCache {
public static Map<Session, Map<String, PreparedStatement>> cache = new HashMap<Session, Map<Stri... | 1,299 | 0.647471 | 0.64358 | 46 | 25.934782 | 22.702616 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.23913 | false | false | 5 |
8bf691a274b25991e8b818f52e39a62ae6a61c7d | 23,837,068,514,216 | 9c37642492e75e14219074fc0660157cb0c92c6c | /src/main/java/com/cegedim/docMngSys/services/UserDao.java | 828a9bcff95126c4c18f1fc8ea78defbb4af0081 | [] | no_license | dinaabdelhady/Cegedim | https://github.com/dinaabdelhady/Cegedim | 93a5d8916bdbb923272fdf41b4c40399fc572dd2 | 0a3b35fa14c2d7f254284845d03672d837ec879c | refs/heads/master | 2022-06-03T18:46:56.853000 | 2020-04-30T19:22:49 | 2020-04-30T19:22:49 | 260,296,529 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cegedim.docMngSys.services;
import com.cegedim.docMngSys.model.Users;
import com.cegedim.docMngSys.repository.UserRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.Resource;
import org.springframework.stereotype.Component;
import org.springframewo... | UTF-8 | Java | 611 | java | UserDao.java | Java | [] | null | [] | package com.cegedim.docMngSys.services;
import com.cegedim.docMngSys.model.Users;
import com.cegedim.docMngSys.repository.UserRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.Resource;
import org.springframework.stereotype.Component;
import org.springframewo... | 611 | 0.810147 | 0.810147 | 20 | 29.549999 | 21.091408 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.55 | false | false | 5 |
bfaa4d53c7eec7a665db22648d8bbac239325473 | 19,164,144,092,443 | d03ca57381ef50c51e849d987e83177ac7ab1cb2 | /src/main/java/model/Visita.java | 81bc87ad8cf791c4f6b2151a16f120f0fc5a3295 | [] | no_license | f3lip303/FelipeTcc | https://github.com/f3lip303/FelipeTcc | baa145b023badb03b9bb95f49e6d8ffc14bd88ea | ed178736e9a9c91f786b5b84f8b7a1d86006d479 | refs/heads/master | 2023-06-25T18:22:13.329000 | 2021-07-22T17:49:49 | 2021-07-22T17:49:49 | 298,876,158 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package model;
public class Visita {
private int codigoVisita;
private int x;
private int y;
private int codigoCiclo;
private int codigoSecao;
private int codigoDistrito;
private int ordemNaRota;
private double tempoInicioAtendimento;
private double tempoFimAtendimento;
private double tempoDeslocamentoProxi... | UTF-8 | Java | 2,756 | java | Visita.java | Java | [] | null | [] | package model;
public class Visita {
private int codigoVisita;
private int x;
private int y;
private int codigoCiclo;
private int codigoSecao;
private int codigoDistrito;
private int ordemNaRota;
private double tempoInicioAtendimento;
private double tempoFimAtendimento;
private double tempoDeslocamentoProxi... | 2,756 | 0.706715 | 0.7049 | 129 | 20.356588 | 21.157145 | 87 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.325581 | false | false | 5 |
7fc392863f31d4d62ee44a561da60b343bd500e6 | 23,596,550,340,807 | 6aae3c777b19e7885941accea0577c41142cf7d8 | /src/baekjun/Problem1912.java | 671e1ebd0cedf1903cd93bd835a5947f0b6031e9 | [] | no_license | Gyeom/Baekjun_ProvlemSolving | https://github.com/Gyeom/Baekjun_ProvlemSolving | a45c07c32b23de4ed085698d0a61025db8140154 | 8adfef875546af97b68960500f35d9632ab23032 | refs/heads/master | 2020-04-14T12:47:32.864000 | 2019-05-22T07:46:52 | 2019-05-22T07:46:52 | 163,850,741 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package baekjun;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.StringBufferInputStream;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Problem1912 {
public static ... | UTF-8 | Java | 1,130 | java | Problem1912.java | Java | [] | null | [] | package baekjun;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.StringBufferInputStream;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Problem1912 {
public static ... | 1,130 | 0.645133 | 0.636283 | 46 | 23.565218 | 19.052162 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.695652 | false | false | 5 |
fa5057d56b5581ec533889951850042c38dc8821 | 6,640,019,463,213 | 33b62fdc02c9cdd1e3aa1f605dae3e358ab55b24 | /Trabalho/src/java/DAO/ItemDAO.java | ae3d0bc63927abdf894bdf3571dc4c8eeda2d530 | [
"Apache-2.0"
] | permissive | GabrielNogueiraBezerra/SistemaWEB2018 | https://github.com/GabrielNogueiraBezerra/SistemaWEB2018 | 58b12ccc1e220e37107c45716c74950e810ea124 | aa6ae916e849e3d1a352e38438dcf439ea6d3203 | refs/heads/master | 2020-03-16T16:29:44.602000 | 2018-06-18T11:36:19 | 2018-06-18T11:36:19 | 132,790,559 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package DAO;
import Models.Historico;
import Models.Item;
import conexao.ConnectionFactory;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
/**
*
* @author Gabriel
*/
public class ItemDAO {
private ConnectionFactory dao = ... | UTF-8 | Java | 4,434 | java | ItemDAO.java | Java | [
{
"context": "port java.sql.SQLException;\r\n\r\n/**\r\n *\r\n * @author Gabriel\r\n */\r\npublic class ItemDAO {\r\n\r\n private Conne",
"end": 251,
"score": 0.9993963837623596,
"start": 244,
"tag": "NAME",
"value": "Gabriel"
}
] | null | [] | package DAO;
import Models.Historico;
import Models.Item;
import conexao.ConnectionFactory;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
/**
*
* @author Gabriel
*/
public class ItemDAO {
private ConnectionFactory dao = ... | 4,434 | 0.584348 | 0.581867 | 127 | 32.913387 | 30.405403 | 171 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.748031 | false | false | 5 |
d7bbba792cc90a3f3fa1607049e1a6a47ab849eb | 8,701,603,759,942 | 4cc4d864a1040ed36d901ce0a2c7c09493f05908 | /src/test/java/uk/ac/cam/groupseven/weatherapp/datasources/GovDataWaterLevelSourceTest.java | b1a62dd8b9faca150d44739ae63e40ae13b29a91 | [] | no_license | codebyzeb/cambridge-weather-app | https://github.com/codebyzeb/cambridge-weather-app | f3d2589dbb590499393b344140c3fac5efb8c7b2 | 166179ad92aa799a9274a983590fba4db558e817 | refs/heads/master | 2021-09-14T23:42:44.587000 | 2018-05-22T13:43:48 | 2018-05-22T13:43:48 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package uk.ac.cam.groupseven.weatherapp.datasources;
import com.google.inject.Guice;
import org.junit.Test;
import uk.ac.cam.groupseven.weatherapp.modules.ApplicationModule;
import uk.ac.cam.groupseven.weatherapp.modules.IconsModule;
import uk.ac.cam.groupseven.weatherapp.modules.SettingsModule;
import uk.ac.cam.group... | UTF-8 | Java | 797 | java | GovDataWaterLevelSourceTest.java | Java | [] | null | [] | package uk.ac.cam.groupseven.weatherapp.datasources;
import com.google.inject.Guice;
import org.junit.Test;
import uk.ac.cam.groupseven.weatherapp.modules.ApplicationModule;
import uk.ac.cam.groupseven.weatherapp.modules.IconsModule;
import uk.ac.cam.groupseven.weatherapp.modules.SettingsModule;
import uk.ac.cam.group... | 797 | 0.751568 | 0.751568 | 20 | 38.849998 | 30.287415 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6 | false | false | 5 |
5179fa5f287423a69210592d6b981e7ae42daa0a | 979,252,563,895 | 6caac3a5e081e0c249222ac05273da70d06c930c | /src/main/java/Repositorios/VeterinarioRepositorio.java | 6c4b0827388e0db071cf90942b2e5338edab0f97 | [] | no_license | LauSw/ProyectoPoo2 | https://github.com/LauSw/ProyectoPoo2 | c121c79ac408c9eb9acd7abe011f95583102c9a6 | 2ff912ce5d613eb06f7b6e424daf2468e5a80dd6 | refs/heads/master | 2023-05-25T11:42:09.770000 | 2020-03-12T18:59:04 | 2020-03-12T18:59:04 | 221,556,228 | 0 | 0 | null | false | 2023-05-23T20:12:34 | 2019-11-13T21:36:59 | 2020-03-12T18:59:07 | 2023-05-23T20:12:34 | 40 | 0 | 0 | 2 | Java | false | false | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Repositorios;
import Modelos.Usuario;
import Modelos.Veterinario;
import java.sql.Connection;
import java.sql.SQLExc... | UTF-8 | Java | 4,337 | java | VeterinarioRepositorio.java | Java | [
{
"context": "st;\r\nimport java.util.List;\r\n\r\n/**\r\n *\r\n * @author Lau\r\n */\r\npublic class VeterinarioRepositorio {\r\n pr",
"end": 407,
"score": 0.9394626021385193,
"start": 404,
"tag": "USERNAME",
"value": "Lau"
}
] | null | [] | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Repositorios;
import Modelos.Usuario;
import Modelos.Veterinario;
import java.sql.Connection;
import java.sql.SQLExc... | 4,337 | 0.609177 | 0.60641 | 107 | 38.532711 | 38.15789 | 226 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.831776 | false | false | 5 |
282bcfea8c22c7ca5d0a83f5241bbe786148106a | 33,663,953,681,027 | 2dc29331db5f53558e2e16024e200e90740a1ff0 | /inspectManagement/inspectManagement-business/inspectManagement-business-inspectReport/src/main/java/org/whut/inspectManagement/business/inspectReport/mapper/ReportSqlMapper.java | a45eeaae61cf718ed2a3b9c3236ace706069f06e | [] | no_license | zhangminzhong/platform | https://github.com/zhangminzhong/platform | 3f5201af20d959ce4878ab6bfb93471f5ea4a60f | 2f65591c0874bcac9281ab531429802a37b96c51 | refs/heads/master | 2017-12-18T13:10:47.875000 | 2017-04-18T11:38:57 | 2017-04-18T11:38:57 | 77,101,801 | 2 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.whut.inspectManagement.business.inspectReport.mapper;
import org.apache.ibatis.mapping.BoundSql;
import org.apache.ibatis.mapping.MappedStatement;
import org.apache.ibatis.session.SqlSessionFactory;
import java.util.Map;
/**
* Created with IntelliJ IDEA.
* User: ThinkPad
* Date: 14-6-12
* Time: 下午9:5... | UTF-8 | Java | 759 | java | ReportSqlMapper.java | Java | [
{
"context": ".Map;\n\n/**\n * Created with IntelliJ IDEA.\n * User: ThinkPad\n * Date: 14-6-12\n * Time: 下午9:57\n * To change thi",
"end": 288,
"score": 0.999588668346405,
"start": 280,
"tag": "USERNAME",
"value": "ThinkPad"
}
] | null | [] | package org.whut.inspectManagement.business.inspectReport.mapper;
import org.apache.ibatis.mapping.BoundSql;
import org.apache.ibatis.mapping.MappedStatement;
import org.apache.ibatis.session.SqlSessionFactory;
import java.util.Map;
/**
* Created with IntelliJ IDEA.
* User: ThinkPad
* Date: 14-6-12
* Time: 下午9:5... | 759 | 0.745695 | 0.735099 | 24 | 30.458334 | 28.228207 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.625 | false | false | 5 |
82dbe359d27d1e17e0c686912a5dc19c98a90e3d | 29,300,266,909,800 | f7e317933dbf6842a184923c5af14f6f3a60ffa2 | /littleMaidMob/net/minecraft/entity/LMM_EntityMode_Pharmacist.java | 5f090980b0c900e9ddca180ca653c777a1969fd0 | [] | no_license | dha-lo-jd/littleMaidMob_dev_forge | https://github.com/dha-lo-jd/littleMaidMob_dev_forge | fc8d98012602646253e5a7eada4c42b675583922 | 57b2b2a3d849661b2ee5ba683d6ffef85d37d4fd | refs/heads/master | 2021-01-20T19:42:32.039000 | 2013-12-20T22:57:40 | 2013-12-20T22:57:40 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.minecraft.entity;
import net.minecraft.entity.ai.EntityAITasks;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemPotion;
import net.minecraft.item.ItemStack;
import net.minecraft.src.LMM_EnumSound;
import net.minecraft.src.LMM_SwingStatus;
import net.minecraft.src.ModLoader;
i... | ISO-8859-4 | Java | 13,211 | java | LMM_EntityMode_Pharmacist.java | Java | [] | null | [] | package net.minecraft.entity;
import net.minecraft.entity.ai.EntityAITasks;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemPotion;
import net.minecraft.item.ItemStack;
import net.minecraft.src.LMM_EnumSound;
import net.minecraft.src.LMM_SwingStatus;
import net.minecraft.src.ModLoader;
i... | 13,211 | 0.682424 | 0.655039 | 377 | 32.610081 | 33.532345 | 168 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.01061 | false | false | 5 |
2df1d5505a982d7e63bc826cd47bcf37e31b9a91 | 9,878,424,800,343 | 00cdac0bb3a9ae4e265cb4fc4326939ad6092213 | /OpenCameraW2/src/main/java/com/mightu/opencamera/CollectionsNode.java | 76857d7c1a0d055836910f754c765d04a7a6a58d | [] | no_license | webstorage119/dualcamera | https://github.com/webstorage119/dualcamera | c3ec55cb97d6e51e6159e6ce8ae8ba2a543b002d | f464b4e5c16926e0ee9dc55675017d277f155dcc | refs/heads/master | 2021-12-15T14:55:16.471000 | 2017-08-26T15:57:49 | 2017-08-26T15:57:49 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mightu.opencamera;
import org.simpleframework.xml.ElementList;
import java.util.ArrayList;
import java.util.List;
public class CollectionsNode{
private static final String TAG = "CollectionsNode";
@ElementList(entry="collection", inline=true)
public
List<CollectionNode> collectionList=new ArrayLi... | UTF-8 | Java | 361 | java | CollectionsNode.java | Java | [] | null | [] | package com.mightu.opencamera;
import org.simpleframework.xml.ElementList;
import java.util.ArrayList;
import java.util.List;
public class CollectionsNode{
private static final String TAG = "CollectionsNode";
@ElementList(entry="collection", inline=true)
public
List<CollectionNode> collectionList=new ArrayLi... | 361 | 0.797784 | 0.797784 | 14 | 24.785715 | 21.850723 | 72 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.714286 | false | false | 5 |
a7d354d895490c24d86da74ccb46ea2f27b3a5be | 12,756,052,890,919 | 72bf7b3c0ac194703cb91d954dd9e611acf88865 | /PokemonToronto/core/src/com/pokemon/toronto/game/com/pokemon/toronto/Pokemon/kanto/part_2/Victreebel.java | c8fd94ea61aa4ca9451c519a2d7817d08cce35e0 | [] | no_license | amitkpandey/pokemon | https://github.com/amitkpandey/pokemon | a41537ac3d05bfd85b73730316eaf82d9ae37776 | 51d62203b28147511d96ed4e2cbfd60c8777e76f | refs/heads/master | 2022-04-27T02:48:50.607000 | 2020-04-26T00:24:26 | 2020-04-26T00:24:26 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.pokemon.toronto.game.com.pokemon.toronto.Pokemon.kanto.part_2;
import com.pokemon.toronto.game.com.pokemon.toronto.Pokemon.attributes.Ability;
import com.pokemon.toronto.game.com.pokemon.toronto.Pokemon.attributes.Nature;
import com.pokemon.toronto.game.com.pokemon.toronto.Pokemon.Pokemon;
import com.pokem... | UTF-8 | Java | 5,269 | java | Victreebel.java | Java | [
{
"context": ".Arrays;\nimport java.util.List;\n\n/**\n * Created by Gregory on 9/16/2017.\n */\n\npublic class Victreebel extend",
"end": 607,
"score": 0.9986093640327454,
"start": 600,
"tag": "NAME",
"value": "Gregory"
}
] | null | [] | package com.pokemon.toronto.game.com.pokemon.toronto.Pokemon.kanto.part_2;
import com.pokemon.toronto.game.com.pokemon.toronto.Pokemon.attributes.Ability;
import com.pokemon.toronto.game.com.pokemon.toronto.Pokemon.attributes.Nature;
import com.pokemon.toronto.game.com.pokemon.toronto.Pokemon.Pokemon;
import com.pokem... | 5,269 | 0.684131 | 0.67445 | 125 | 41.144001 | 25.935522 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.928 | false | false | 5 |
e6f86d4759c67dbd2a76e3884fe8245a72c98808 | 28,767,690,967,081 | b29b2e428a30c0c64f3c65958973913d8e852f1a | /message/src/main/java/cmpe282/message/direct/StationIdsMsg.java | d2ca4108eff1810149739b4b44478a267553e473 | [
"Apache-2.0"
] | permissive | amitkumar-panchal/Bike-Rental-System | https://github.com/amitkumar-panchal/Bike-Rental-System | 20227a809c6026cc377c768b67b2e87c2f2ec42b | defea5a222d06be8d91ab68c2bde718bd5e4e5c0 | refs/heads/master | 2021-09-07T08:53:05.963000 | 2018-02-20T16:53:12 | 2018-02-20T16:53:12 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cmpe282.message.direct;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class StationIdsMsg {
@JsonProperty("station_ids")
List<String> stationIds;
public List<String> getStationIds() {
return stationIds;
}
public void setStationIds(List<Stri... | UTF-8 | Java | 384 | java | StationIdsMsg.java | Java | [] | null | [] | package cmpe282.message.direct;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
public class StationIdsMsg {
@JsonProperty("station_ids")
List<String> stationIds;
public List<String> getStationIds() {
return stationIds;
}
public void setStationIds(List<Stri... | 384 | 0.703125 | 0.695313 | 19 | 19.210526 | 18.844458 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.315789 | false | false | 5 |
660a0fd90cf563fb36ca694acce765eb3747dcc0 | 18,743,237,300,855 | b348828b1a0a4f5e204c9b4a43bd0aec68ece88c | /beAGreatJavaDeveloper/src/main/howToUseLambdaExpressions/NotUseLambdaExpressions.java | 08c24036b1a4d156cb6caf53f7ac2353a68110b8 | [] | no_license | nksb/beAGreatJavaDeveloper | https://github.com/nksb/beAGreatJavaDeveloper | 890acc16b0dd1f5651887309b21eaf4a5c26132e | 0fa86a33454d3ff112f7d40ca81fc5c50a40a9e3 | refs/heads/master | 2020-03-10T04:33:53.381000 | 2018-05-06T13:16:25 | 2018-05-06T13:16:25 | 129,195,281 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package main.howToUseLambdaExpressions;
import java.util.ArrayList;
import java.util.List;
public class NotUseLambdaExpressions {
public static void main(String[] args) {
long start = System.currentTimeMillis();
List<Integer> list = new ArrayList<Integer>();
list.add(1);
list.add(2);
list.add(3);
list.a... | UTF-8 | Java | 493 | java | NotUseLambdaExpressions.java | Java | [] | null | [] | package main.howToUseLambdaExpressions;
import java.util.ArrayList;
import java.util.List;
public class NotUseLambdaExpressions {
public static void main(String[] args) {
long start = System.currentTimeMillis();
List<Integer> list = new ArrayList<Integer>();
list.add(1);
list.add(2);
list.add(3);
list.a... | 493 | 0.685598 | 0.675456 | 21 | 22.476191 | 18.401913 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.761905 | false | false | 5 |
471344fffe7cabdd5c237f47fc6a679415c994fc | 24,962,349,944,803 | fa70ebe1543ef6fba0c025e390d5ce281b6981db | /Code/maps_example/Entry.java | 052a7633c8a74215f2058d25f41287d9c0da38f9 | [
"Unlicense"
] | permissive | Whedle/DataStruct_Algorithms | https://github.com/Whedle/DataStruct_Algorithms | 2b01746cc21764d228e6bead119a3e1f3e43814b | d1985523be3d2a3e2e94331af3ade2fe3f57b19b | refs/heads/master | 2021-06-21T20:22:39.742000 | 2017-08-24T00:26:12 | 2017-08-24T00:26:12 | 100,333,566 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package maps_example;
/* Interface: Entry
* @author - Wade Hedlesky
* Interface for a key-value pair entry
*
* @param <K>
* @param <V>
*/
public interface Entry<K, V> {
/** return key of this entry */
public K getKey();
/** return value of this entry */
public V getValue();
}
| UTF-8 | Java | 294 | java | Entry.java | Java | [
{
"context": "ge maps_example;\n\n/* Interface: Entry\n * @author - Wade Hedlesky\n * Interface for a key-value pair entry\n * \n * @p",
"end": 70,
"score": 0.9995370507240295,
"start": 57,
"tag": "NAME",
"value": "Wade Hedlesky"
}
] | null | [] |
package maps_example;
/* Interface: Entry
* @author - <NAME>
* Interface for a key-value pair entry
*
* @param <K>
* @param <V>
*/
public interface Entry<K, V> {
/** return key of this entry */
public K getKey();
/** return value of this entry */
public V getValue();
}
| 287 | 0.62585 | 0.62585 | 17 | 16.235294 | 12.739607 | 39 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.588235 | false | false | 5 |
d09ee24c2ce7936888939045e02e7f4d7cd51178 | 24,962,349,947,295 | d79e2cb6348d6757af2e6070b0b3a13f92b6a848 | /V0.7/SonarQube V6.7/SonarQubeStatements-V6/src/test/java/org/measure/sonarqube/statements/test/Test.java | 839dd9cdf177e15d000245faa99d477b830582c3 | [] | no_license | ITEA3-Measure/Measures | https://github.com/ITEA3-Measure/Measures | 3add607b1b9778e005c7812a144499f17d6b1b1a | 244943ea9dd0293aa544c8115db75a06172691d4 | refs/heads/master | 2021-01-22T20:39:08.680000 | 2019-03-28T09:37:43 | 2019-03-28T09:37:43 | 85,323,467 | 4 | 2 | null | false | 2018-10-09T02:54:09 | 2017-03-17T14:55:22 | 2018-07-25T08:42:10 | 2018-10-09T02:53:41 | 84,275 | 4 | 1 | 10 | Java | false | null | package org.measure.sonarqube.statements.test;
public class Test {
@org.junit.Test
public void testMeasure() {
}
}
| UTF-8 | Java | 138 | java | Test.java | Java | [] | null | [] | package org.measure.sonarqube.statements.test;
public class Test {
@org.junit.Test
public void testMeasure() {
}
}
| 138 | 0.637681 | 0.637681 | 10 | 12.8 | 14.951923 | 46 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.1 | false | false | 5 |
349533ee26af9692109a737a09c6bc9616b18755 | 27,788,438,448,567 | 065bb4defab950d9dee2d46ce792ec6de2bd4059 | /source/cheer2017/src/net/frank/cheer/demo/ch10/Ak47.java | 0a3457abe9b53ae521103c3276df74ff9b09cd31 | [] | no_license | frankzhf/cheer2017 | https://github.com/frankzhf/cheer2017 | e3422f3805fc25157801d730f1f9630a727ec678 | 5537e50c6302b112dfcb6ec9a66d21d3ab4344ac | refs/heads/master | 2021-01-19T08:17:58.779000 | 2018-07-07T23:07:16 | 2018-07-07T23:07:16 | 87,618,851 | 1 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.frank.cheer.demo.ch10;
public class Ak47 extends Wuqi {
public void openFire(){
System.out.println(getClass().getName() + "openFire.....");
}
}
| UTF-8 | Java | 170 | java | Ak47.java | Java | [] | null | [] | package net.frank.cheer.demo.ch10;
public class Ak47 extends Wuqi {
public void openFire(){
System.out.println(getClass().getName() + "openFire.....");
}
}
| 170 | 0.652941 | 0.629412 | 11 | 14.454545 | 19.518587 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1 | false | false | 5 |
d77431bb7133bdf837976b47191026022fe1403a | 13,056,700,621,796 | c50ab177c5dd8a8d72f0a1dfe698b374dfe50b49 | /view-2014-31(1.8)/fish-atmlog/src/main/java/com/yihuacomputer/fish/atmlog/entity/CaseFault.java | 7d347d13d0f3271c4a0e12b5ee82fef3da7cc621 | [] | no_license | chen12033005/fish | https://github.com/chen12033005/fish | 79734bdda2af47797de7dcefff633fccf08ad54f | 59f433fdd91fa3c70640372aea84da59ec3c0ebe | refs/heads/master | 2020-03-27T22:14:10.874000 | 2018-09-03T14:26:24 | 2018-09-03T14:26:24 | 147,215,310 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.yihuacomputer.fish.atmlog.entity;
public class CaseFault {
private String devMod;
private String faultCode;
private String vendorHwCode;
private String faultTime;
public String getDevMod() {
return devMod;
}
public void setDevMod(String devMod) {
this.devMod = devMod;
}
public String getFault... | UTF-8 | Java | 721 | java | CaseFault.java | Java | [] | null | [] | package com.yihuacomputer.fish.atmlog.entity;
public class CaseFault {
private String devMod;
private String faultCode;
private String vendorHwCode;
private String faultTime;
public String getDevMod() {
return devMod;
}
public void setDevMod(String devMod) {
this.devMod = devMod;
}
public String getFault... | 721 | 0.747573 | 0.747573 | 34 | 20.205883 | 15.725176 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.470588 | false | false | 5 |
8705151aa1ca951b17aab8c5a67d01ac877cbb81 | 24,558,623,038,715 | b45673f501ca7c891c8109a714cdf01cde455430 | /AOOP/src/lab05_CommandPattern_5/ExecuteUndoCommandButton.java | 406908f5cf91907b50778b9392e336831cd6c412 | [] | no_license | kmdngmn/DesignPattern | https://github.com/kmdngmn/DesignPattern | 1e9afed125d412727b2a85470fcd7e5b2380ffda | 03bcf957eb10022d6c525d80eb1d0e2bebb5c660 | refs/heads/master | 2020-11-25T20:09:59.117000 | 2019-12-23T02:24:50 | 2019-12-23T02:24:50 | 228,822,817 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package lab05_CommandPattern_5;
import java.util.ArrayList;
import java.util.List;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
public class ExecuteUndoCommandButton extends CommandButton implements Command {
private JLabel label;
private ImageIcon imageIcon;
private static List<ImageIcon> list;
p... | UTF-8 | Java | 788 | java | ExecuteUndoCommandButton.java | Java | [] | null | [] | package lab05_CommandPattern_5;
import java.util.ArrayList;
import java.util.List;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
public class ExecuteUndoCommandButton extends CommandButton implements Command {
private JLabel label;
private ImageIcon imageIcon;
private static List<ImageIcon> list;
p... | 788 | 0.704315 | 0.696701 | 45 | 16.51111 | 18.450682 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.355556 | false | false | 5 |
97b70d2b46d5a26401a33fb3356a4b829e00fa89 | 14,499,809,632,103 | 55fb3baa27c414f05ada638af1a820cab4b30987 | /src/digitalreasoning/ProperNameDocumentTokenizer.java | da813b09bf38ba3594ebf71fd62aed7787a652b9 | [] | no_license | stepince/digitalreasoning2 | https://github.com/stepince/digitalreasoning2 | 4227aa470e81774eac59762a4c4ebcc837746492 | 8b9b19679c327dda497e1e8cfedc1be5472a321a | refs/heads/master | 2021-01-10T03:28:43.884000 | 2015-11-19T10:38:45 | 2015-11-19T10:38:45 | 46,485,391 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Provides the classes necessary to parse
* a text document into Sentences/Words/Non-words
*
* <p>
* The DocumentTokenizer framework involves four entities:
* the DocumentTokenizer.Document a container class for SentenceTokens
* the DocumentTokenizer.SentenceToken a container class for Word/NonWord tokens... | UTF-8 | Java | 13,693 | java | ProperNameDocumentTokenizer.java | Java | [
{
"context": "d type \n * (e.g. !,\"')\n * </p>\n *\n * @author Stephen Ince\n */\npackage digitalreasoning;\n\nimport java.io.IOE",
"end": 515,
"score": 0.9998984336853027,
"start": 503,
"tag": "NAME",
"value": "Stephen Ince"
}
] | null | [] | /**
* Provides the classes necessary to parse
* a text document into Sentences/Words/Non-words
*
* <p>
* The DocumentTokenizer framework involves four entities:
* the DocumentTokenizer.Document a container class for SentenceTokens
* the DocumentTokenizer.SentenceToken a container class for Word/NonWord tokens... | 13,687 | 0.583656 | 0.58256 | 396 | 33.580807 | 25.57058 | 148 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.406566 | false | false | 5 |
2a2760d2ce8414b25d354bf01c67e1fbe02334cc | 28,767,690,982,545 | ecf436f12302da62abe5c8bcfe6ac7b1d7a714bd | /src/main/java/my/algorithm/simple/MedianTwoSortedArrays.java | 84f927796b570a41d4915c4353a53ec3886f0aed | [] | no_license | sergey-rubtsov/algorithm | https://github.com/sergey-rubtsov/algorithm | 3716fee4b8629cc3df35c3175633c16fe8c1e97f | 1e3115ae9701731ff3cd8454d141b512f62804dd | refs/heads/master | 2022-05-03T11:52:32.090000 | 2022-04-25T19:21:02 | 2022-04-25T19:22:34 | 87,339,895 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package my.algorithm.simple;
public class MedianTwoSortedArrays {
public static void main(String[] args) {
MedianTwoSortedArrays median = new MedianTwoSortedArrays();
int[] nums1 = {2, 5, 6}, nums2 = {1, 3};
//int[] nums1 = {1, 2}, nums2 = {3, 4};
System.out.println(median.findMedi... | UTF-8 | Java | 1,513 | java | MedianTwoSortedArrays.java | Java | [] | null | [] | package my.algorithm.simple;
public class MedianTwoSortedArrays {
public static void main(String[] args) {
MedianTwoSortedArrays median = new MedianTwoSortedArrays();
int[] nums1 = {2, 5, 6}, nums2 = {1, 3};
//int[] nums1 = {1, 2}, nums2 = {3, 4};
System.out.println(median.findMedi... | 1,513 | 0.442168 | 0.400529 | 43 | 34.186047 | 24.821461 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.767442 | false | false | 5 |
933908cb03422a72827a796dd50ee8b2e16ea6d5 | 28,767,690,984,453 | ccf5987a1bbd051de0298992cca58b8e96529d74 | /3/src/程序/GRXinxi.java | f6dd2fa87961ead0bcafac4a057bd341f1059540 | [] | no_license | messitamlk/java22 | https://github.com/messitamlk/java22 | 5b80d64659a0e8acf55b361fae19efb022fe4023 | f23a33ebb8ae05ab1b98888795607b9c412b8f4b | refs/heads/master | 2021-01-21T10:55:26.712000 | 2017-03-01T03:02:39 | 2017-03-01T03:02:39 | 83,504,199 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ³ÌÐò;
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.ComboBox;
import javafx.scene.control.ContentDisplay;
import javafx.scene.contro... | WINDOWS-1252 | Java | 671 | java | GRXinxi.java | Java | [] | null | [] | package ³ÌÐò;
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.ComboBox;
import javafx.scene.control.ContentDisplay;
import javafx.scene.contro... | 671 | 0.818591 | 0.817091 | 24 | 26.791666 | 15.228753 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.833333 | false | false | 5 |
6f5afc526a041196c8f1507b3d5e56dc9d611473 | 10,376,641,036,287 | 57385438e1d0e6a4c428547ba3406aed88b01da0 | /distribute-service-framework-rpcserver/src/main/java/com/zheng/dsf/rpc/server/responser/RpcResponser.java | 9ebe4f69de09560363e549e8e4092735c0662eb1 | [] | no_license | zl736732419/distribute-service-framework | https://github.com/zl736732419/distribute-service-framework | 758657368eb6504d0d10b347f519a33c89d5ba35 | d81a896e2188967edc8cdbbd172ef4bb5a8f2a3b | refs/heads/master | 2020-04-10T20:01:20.105000 | 2018-12-12T01:02:09 | 2018-12-12T01:02:09 | 161,254,465 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.zheng.dsf.rpc.server.responser;
import com.zheng.dsf.exceptions.RpcServerException;
import java.io.OutputStream;
/**
* rpc接口调用响应
* @Author zhenglian
* @Date 2018/12/11
*/
public interface RpcResponser {
void response(Object result, OutputStream output) throws RpcServerException;
}
| UTF-8 | Java | 317 | java | RpcResponser.java | Java | [
{
"context": "java.io.OutputStream;\n\n/**\n * rpc接口调用响应\n * @Author zhenglian\n * @Date 2018/12/11\n */\npublic interface RpcRespo",
"end": 165,
"score": 0.9995235204696655,
"start": 156,
"tag": "USERNAME",
"value": "zhenglian"
}
] | null | [] | package com.zheng.dsf.rpc.server.responser;
import com.zheng.dsf.exceptions.RpcServerException;
import java.io.OutputStream;
/**
* rpc接口调用响应
* @Author zhenglian
* @Date 2018/12/11
*/
public interface RpcResponser {
void response(Object result, OutputStream output) throws RpcServerException;
}
| 317 | 0.767213 | 0.740984 | 14 | 20.785715 | 23.099718 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.357143 | false | false | 5 |
f5660f1ed8fcca2f279d1103f803915c4b62f943 | 20,117,626,857,437 | 42985a0203c8a0de54b0fcb4433264419c3a42f0 | /src/main/java/com/ylw/service/base/RecommendJobService.java | 7998c507798fde0fe920ccd8c5cce4ca3e235081 | [] | no_license | tt67578106/yl_pc | https://github.com/tt67578106/yl_pc | d993e56daca4e246874b807b655a2f2a88a01783 | 06cfa107454f9b8d47faf296f1065d9f946087af | refs/heads/master | 2021-09-09T19:19:51.376000 | 2018-03-19T06:16:25 | 2018-03-19T06:16:25 | 125,810,008 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ylw.service.base;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.Query;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.do... | UTF-8 | Java | 11,337 | java | RecommendJobService.java | Java | [
{
"context": "import com.ylw.util.MemcachedUtil;\n\n/**\n * @author Nicolas.\n * @version 1.0\n * @since 1.0\n */\n/**\n * 推荐岗位\n *",
"end": 1064,
"score": 0.9997208714485168,
"start": 1057,
"tag": "NAME",
"value": "Nicolas"
},
{
"context": "rsion 1.0\n * @since 1.0\n */\n/**\n * 推荐岗... | null | [] | package com.ylw.service.base;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.Query;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.do... | 11,337 | 0.750696 | 0.747733 | 259 | 42.011581 | 48.250591 | 232 | false | false | 0 | 0 | 0 | 0 | 64 | 0.011491 | 2.339768 | false | false | 5 |
b72bdbdf869b93e00d146c26cddd18d18f1cfe35 | 26,912,265,125,008 | 11183d295ddefd6200a9489fe3d9a4d8f03849ea | /app/src/main/java/com/program/codemobile/devapplication/model/Simple.java | 9c1ba72287b4c2d8b599ac8ee78f09e0c2f60da0 | [] | no_license | fernandoserra/android-dev | https://github.com/fernandoserra/android-dev | 8b12e40cd0cdf70df2430f57f2feeff0a6967bb5 | 2cefeb89a0bc6a0698bd5f6359f15ce8a365c261 | refs/heads/master | 2020-07-03T13:59:08.046000 | 2019-08-12T12:36:35 | 2019-08-12T12:36:35 | 201,927,706 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.program.codemobile.devapplication.model;
public class Simple
{
private String isMarketplaceProduct;
private Lists lists;
private String isCyber;
private String isUnavailable;
private String isOutOfStock;
public String getIsMarketplaceProduct ()
{
return isMarketplac... | UTF-8 | Java | 1,407 | java | Simple.java | Java | [] | null | [] | package com.program.codemobile.devapplication.model;
public class Simple
{
private String isMarketplaceProduct;
private Lists lists;
private String isCyber;
private String isUnavailable;
private String isOutOfStock;
public String getIsMarketplaceProduct ()
{
return isMarketplac... | 1,407 | 0.64037 | 0.64037 | 70 | 19.1 | 27.154137 | 187 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3 | false | false | 5 |
1314cd9615b8b1d639d1c8451a6a1d66e41c5468 | 6,459,630,824,030 | cd4b0dcbaca5884fa7b8943f0eae3e0cf2b4b2a5 | /app/src/main/java/de/peter_rosina/tripbudget/data/converters/DateTypeConverter.java | b9c1b2523e8e54abf3c407b6401a38b769f86c95 | [] | no_license | rospe/TripBudget | https://github.com/rospe/TripBudget | 7191a2d6da3d89a6a0fe03511c7d8e4ae92f90c0 | 03fba897df1df18e2fecc2b004041a8a8d53d3bb | refs/heads/master | 2018-03-20T09:04:04.952000 | 2016-12-23T12:18:21 | 2016-12-23T12:18:21 | 70,930,257 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package de.peter_rosina.tripbudget.data.converters;
import com.raizlabs.android.dbflow.converter.TypeConverter;
import org.joda.time.LocalDateTime;
import java.util.Date;
/**
* Created by Peter on 26.10.2016.
*/
@com.raizlabs.android.dbflow.annotation.TypeConverter
public class DateTypeConverter extends TypeConve... | UTF-8 | Java | 704 | java | DateTypeConverter.java | Java | [
{
"context": "package de.peter_rosina.tripbudget.data.converters;\n\nimport com.ra",
"end": 16,
"score": 0.8988263607025146,
"start": 11,
"tag": "USERNAME",
"value": "peter"
},
{
"context": "package de.peter_rosina.tripbudget.data.converters;\n\nimport com.raizlabs.",
"end": 23,
... | null | [] | package de.peter_rosina.tripbudget.data.converters;
import com.raizlabs.android.dbflow.converter.TypeConverter;
import org.joda.time.LocalDateTime;
import java.util.Date;
/**
* Created by Peter on 26.10.2016.
*/
@com.raizlabs.android.dbflow.annotation.TypeConverter
public class DateTypeConverter extends TypeConve... | 704 | 0.708807 | 0.697443 | 27 | 25.074074 | 23.845064 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.296296 | false | false | 5 |
989bf4ffe8f262b0b1ec810095407940670a0b98 | 23,905,787,972,311 | 7adb53c2c391b325ae04cb536a0a0fe7e5332561 | /1st work Marshal_Unmarshall/gamesunmarshall/src/main/java/com/mycompany/gamesunmarshall/JAXBMain.java | e705275a263c1e9d4578e7f14cda258d4e6b4640 | [] | no_license | HellsinGas/Networking-Lectures | https://github.com/HellsinGas/Networking-Lectures | 241029b20c1e8800995392f3539c5abdf63a953f | 4a214daccaf263d4d5c75dda45e2ed2ddbe55689 | refs/heads/master | 2023-03-19T02:55:42.239000 | 2021-03-16T11:10:43 | 2021-03-16T11:10:43 | 348,308,219 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.mycompany.gamesunmarshall;
import Models.Games;
import Repository.Repository;
import java.io.File;
import java.io.FileOutp... | UTF-8 | Java | 1,113 | java | JAXBMain.java | Java | [
{
"context": "marshalling from XML file method calls.\n * @author arnol\n * Since 1.0\n * Version 1.0\n */\npublic class JAXB",
"end": 750,
"score": 0.9984673261642456,
"start": 745,
"tag": "USERNAME",
"value": "arnol"
}
] | null | [] | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.mycompany.gamesunmarshall;
import Models.Games;
import Repository.Repository;
import java.io.File;
import java.io.FileOutp... | 1,113 | 0.69991 | 0.696316 | 43 | 24.88372 | 20.567766 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.511628 | false | false | 5 |
ecca826775c8e873ce8df9042a399c267aad7c61 | 6,794,638,329,170 | ba536b6f1f53fdf6a7d6b54deef946f3c4f605dc | /src/main/java/com/hundsun/practices/pairs/DataType.java | f0db3c395d9d0a79d80463aca95ab5533063563f | [
"Apache-2.0"
] | permissive | zkydrx/mypractices | https://github.com/zkydrx/mypractices | de795f15a156f11ee01d81e8ba7d253ebc682aa4 | 857725c7ff201adc6253f57d8b382e63ab797b37 | refs/heads/master | 2023-06-28T12:19:14.813000 | 2023-06-21T07:15:55 | 2023-06-21T07:15:55 | 100,294,469 | 0 | 0 | Apache-2.0 | false | 2023-06-21T07:15:57 | 2017-08-14T17:50:45 | 2023-05-12T09:58:42 | 2023-06-21T07:15:56 | 55,597 | 0 | 0 | 0 | Java | false | false | package com.hundsun.practices.pairs;
import lombok.Builder;
import lombok.Data;
/**
* 文件描述
*
* @ProductName: Hundsun HEP
* @ProjectName: mypractices
* @Package: com.hundsun.practices.pairs
* @Description: note
* @Author: zky
* @CreateDate: 2021/11/23 10:28
* @UpdateUser: zky
* @UpdateDate: 20... | UTF-8 | Java | 645 | java | DataType.java | Java | [
{
"context": "ractices.pairs\r\n * @Description: note\r\n * @Author: zky\r\n * @CreateDate: 2021/11/23 10:28\r\n * @UpdateUser",
"end": 245,
"score": 0.9996843338012695,
"start": 242,
"tag": "USERNAME",
"value": "zky"
},
{
"context": "\n * @CreateDate: 2021/11/23 10:28\r\n * @UpdateU... | null | [] | package com.hundsun.practices.pairs;
import lombok.Builder;
import lombok.Data;
/**
* 文件描述
*
* @ProductName: Hundsun HEP
* @ProjectName: mypractices
* @Package: com.hundsun.practices.pairs
* @Description: note
* @Author: zky
* @CreateDate: 2021/11/23 10:28
* @UpdateUser: zky
* @UpdateDate: 20... | 645 | 0.647799 | 0.581761 | 29 | 19.931034 | 15.83521 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.241379 | false | false | 5 |
c40b265621092f0fa9435f487f0fc285399485e1 | 11,811,160,124,508 | b3b1789ffa2a75ad14eead9d603a20b2700cd49b | /src/test/java/com/epam/cdp/calc_unit_tests/tests/SinCalcTestDouble.java | ab7644c05138662f104428d606b1a2b28841346c | [] | no_license | stalker2087/CalcUnitTests | https://github.com/stalker2087/CalcUnitTests | 4efafe3015b0172edec88547b7d0058e421dfd39 | a44cba0ee43405e12991f122e727502c332b6d83 | refs/heads/master | 2020-03-22T08:13:32.582000 | 2018-07-04T18:22:58 | 2018-07-04T18:22:58 | 139,049,408 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.epam.cdp.calc_unit_tests.tests;
import org.testng.Assert;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
public class SinCalcTestDouble extends PreConditionForTestngTests {
@Test(dataProvider = "valuesForSinTest")
public void sinTest(double a, double expectedResu... | UTF-8 | Java | 723 | java | SinCalcTestDouble.java | Java | [] | null | [] | package com.epam.cdp.calc_unit_tests.tests;
import org.testng.Assert;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
public class SinCalcTestDouble extends PreConditionForTestngTests {
@Test(dataProvider = "valuesForSinTest")
public void sinTest(double a, double expectedResu... | 723 | 0.647303 | 0.594744 | 26 | 26.807692 | 27.921619 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.576923 | false | false | 5 |
974ec78c6859314285bee7ef7960a4ae6b7be480 | 12,275,016,591,529 | 153015b586b2313479c5fa498bbb7579fbc7255b | /ace-front-interface/src/main/java/com/udax/front/task/jobs/CmsDailyJob.java | 43b1d4bb4c78a6280c4ab555a69d234a3cd915f3 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | moutainhigh/udax_wallet | https://github.com/moutainhigh/udax_wallet | 45592ebc20c59e499fc4d97e228cf3bd099d2420 | f971679e9debc85908ed715ec6485c211137257b | refs/heads/master | 2023-02-01T20:45:29.868000 | 2020-03-07T14:15:33 | 2020-03-07T14:15:33 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.udax.front.task.jobs;
import com.github.wxiaoqi.security.common.entity.front.CommissionLog;
import com.github.wxiaoqi.security.common.entity.front.RedPacketSend;
import com.github.wxiaoqi.security.common.enums.EnableType;
import com.github.wxiaoqi.security.common.enums.RedPacketOrderStatus;
import com.gith... | UTF-8 | Java | 2,373 | java | CmsDailyJob.java | Java | [
{
"context": "port java.util.List;\n\n/**\n *\n * 每日分成一次\n * @author Tang\n *\n */\n\n@Component\n@ScheduledJob(name = \"CmsDaily",
"end": 1354,
"score": 0.9951067566871643,
"start": 1350,
"tag": "NAME",
"value": "Tang"
}
] | null | [] | package com.udax.front.task.jobs;
import com.github.wxiaoqi.security.common.entity.front.CommissionLog;
import com.github.wxiaoqi.security.common.entity.front.RedPacketSend;
import com.github.wxiaoqi.security.common.enums.EnableType;
import com.github.wxiaoqi.security.common.enums.RedPacketOrderStatus;
import com.gith... | 2,373 | 0.81367 | 0.811493 | 64 | 34.890625 | 30.321259 | 122 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.921875 | false | false | 5 |
c619d6a4ce694693e6ef2fb489c46606cbdd2797 | 4,380,866,701,418 | 69c31f43c60f0b2c6ad4759c4d9d2336078b1803 | /app/src/main/java/com/lexinsmart/xushun/lexinibeacon/utils/mqtt/CallBack.java | 015b824e093597cda682859389d8b0e44b3f9f10 | [] | no_license | shun1249844726/LexinIbeacon | https://github.com/shun1249844726/LexinIbeacon | bc161761d9a99c1b605682c4cdb66999a6dcfe12 | 6a9fb39ac1c4a9bf038c12aea46b4c96af7e423f | refs/heads/master | 2021-01-21T19:40:04.653000 | 2017-06-30T01:23:56 | 2017-06-30T01:23:56 | 92,149,946 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lexinsmart.xushun.lexinibeacon.utils.mqtt;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import com.ibm.micro.client.mqttv3.MqttDeliveryToken;
import com.ibm.micro.client.mqttv3.MqttMessage;
import com.ibm.micro.client.mqttv3.MqttTopic;
/**
* Created by xushun on 2017/5... | UTF-8 | Java | 1,222 | java | CallBack.java | Java | [
{
"context": ".micro.client.mqttv3.MqttTopic;\n\n/**\n * Created by xushun on 2017/5/31.\n */\n\n\n\n\npublic class CallBack imple",
"end": 310,
"score": 0.9995861053466797,
"start": 304,
"tag": "USERNAME",
"value": "xushun"
}
] | null | [] | package com.lexinsmart.xushun.lexinibeacon.utils.mqtt;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import com.ibm.micro.client.mqttv3.MqttDeliveryToken;
import com.ibm.micro.client.mqttv3.MqttMessage;
import com.ibm.micro.client.mqttv3.MqttTopic;
/**
* Created by xushun on 2017/5... | 1,222 | 0.658228 | 0.648101 | 49 | 23.204082 | 22.100863 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.428571 | false | false | 5 |
6f26f7061042092c3adbff7e7ce304ff2c7dac2d | 6,124,623,386,253 | cb9992fd8a8005056a67c783aa46086c8e55290f | /hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/table/format/RecordIterators.java | 711ed44671341cb108355c7865a09c7ea81fac5a | [
"CC0-1.0",
"MIT",
"JSON",
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | apache/hudi | https://github.com/apache/hudi | cb3f365f40570357777e9d6e83b93c554f50e707 | 0e50d7586a7719eab870c8d83e3566bb549d64b6 | refs/heads/master | 2023-09-02T14:55:11.040000 | 2023-09-02T11:06:37 | 2023-09-02T11:06:37 | 76,474,200 | 3,615 | 1,833 | Apache-2.0 | false | 2023-09-14T19:03:11 | 2016-12-14T15:53:41 | 2023-09-14T15:16:06 | 2023-09-14T18:59:16 | 688,663 | 4,494 | 2,303 | 794 | Java | false | false | /*
* 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 ... | UTF-8 | Java | 5,515 | java | RecordIterators.java | Java | [] | 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 ... | 5,515 | 0.708794 | 0.707344 | 145 | 37.034481 | 28.398499 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.655172 | false | false | 5 |
e49275e08ec7cb0ce54d0d1c9726b4e92a4efaf7 | 1,829,656,127,683 | 9104bba5b4769c116252cbab4d2d11f1be07df58 | /sendicloud/src/main/java/com/sendi/entity/receiveImgBody.java | 819a918cbf6ce5ab73eed8599a82ce14446acb19 | [] | no_license | helloworldgithut/sourceCode | https://github.com/helloworldgithut/sourceCode | 4e10b96deaf891a35b687a45e1d8d4ba871fd488 | c39b11b510b304ad5a4dc11b5cfaf7971de8db7e | refs/heads/master | 2022-06-26T11:25:56.439000 | 2019-06-12T10:10:54 | 2019-06-12T10:10:54 | 176,765,690 | 0 | 0 | null | false | 2022-06-17T02:06:46 | 2019-03-20T15:39:56 | 2019-06-12T10:11:14 | 2022-06-17T02:06:45 | 156 | 0 | 0 | 6 | Java | false | false | package com.sendi.entity;
import lombok.Data;
@Data
public class receiveImgBody {
private String hash_result;
private Integer exp_id;
private Integer sort_id;
private String mod_id;
private String webtoken;
private String type;
private String flag;
private String value;
private Lon... | UTF-8 | Java | 332 | java | receiveImgBody.java | Java | [] | null | [] | package com.sendi.entity;
import lombok.Data;
@Data
public class receiveImgBody {
private String hash_result;
private Integer exp_id;
private Integer sort_id;
private String mod_id;
private String webtoken;
private String type;
private String flag;
private String value;
private Lon... | 332 | 0.704819 | 0.704819 | 18 | 17.444445 | 11.949999 | 31 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.611111 | false | false | 5 |
fceb4be164778f0e176a4aa73d7d35f78ffb6dec | 20,555,713,499,521 | c5e553e826bb2baad3c3a7959dabba440da2bcc2 | /src/strudel2010/EEC/MyPlayerListener.java | 78285e444239a21a71e79b91814fee87ba70482e | [] | no_license | Strudel2010/easter-egg-commands | https://github.com/Strudel2010/easter-egg-commands | 2aa207ea9445c6010e7eeee94950643a33ebf3d0 | 30f6c6f9fdf03fda83ff55e09264798fcd093be0 | refs/heads/master | 2020-05-05T13:24:29.663000 | 2013-12-08T09:21:54 | 2013-12-08T09:21:54 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package strudel2010.EEC;
import java.util.Random;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.Sound;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.player.AsyncPlayerChatEvent;
public class MyPl... | UTF-8 | Java | 2,223 | java | MyPlayerListener.java | Java | [] | null | [] | package strudel2010.EEC;
import java.util.Random;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.Sound;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.player.AsyncPlayerChatEvent;
public class MyPl... | 2,223 | 0.645524 | 0.632029 | 70 | 29.757143 | 27.134815 | 112 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.9 | false | false | 5 |
c3fdd5e73dcb8aba534cf82cd017eeb066f52a22 | 3,779,571,252,910 | 347de82596514eb45f15e53539ab849e531e4cdd | /src/main/java/com/account/bank/repository/AccountRepositoryImpl.java | 0df6921ce4a6ab2ff365ad73129f644264c9d886 | [] | no_license | Gabriel-Borba/ws-account | https://github.com/Gabriel-Borba/ws-account | b36b6576540e1bd467e27075d47e5eff75aa179c | dd88a472ee3e385020a0632d067293abd2b417fc | refs/heads/master | 2022-07-02T01:59:37.499000 | 2020-03-11T05:13:14 | 2020-03-11T05:13:14 | 246,480,261 | 0 | 0 | null | false | 2022-06-21T02:57:51 | 2020-03-11T05:10:20 | 2020-03-11T05:13:17 | 2022-06-21T02:57:51 | 13 | 0 | 0 | 2 | Java | false | false | package com.account.bank.repository;
import com.account.bank.Model.BankAccountResponse;
import com.account.bank.Service.Impl.PersonConsumerServiceImpl;
import com.account.bank.repository.rowmapper.BankAccountRowMapper;
import org.slf4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.s... | UTF-8 | Java | 2,035 | java | AccountRepositoryImpl.java | Java | [] | null | [] | package com.account.bank.repository;
import com.account.bank.Model.BankAccountResponse;
import com.account.bank.Service.Impl.PersonConsumerServiceImpl;
import com.account.bank.repository.rowmapper.BankAccountRowMapper;
import org.slf4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.s... | 2,035 | 0.748403 | 0.74742 | 53 | 37.396225 | 30.14765 | 113 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.622642 | false | false | 5 |
3880fa4d4ebcc65dfc069f72a5ffcc54345c215b | 11,106,785,482,661 | 6d87cdf669fe863cc39a7b05878bc9fe5f76d8af | /TIMSPro/src/main/java/com/tims/in/daoImpl/RegisterImple.java | 854f1ce1ebcbfe89db5211b6ca761e79a5b511d7 | [] | no_license | CATSTIMS/TIMS | https://github.com/CATSTIMS/TIMS | 3260c76fb95191063086b00df6fbf31e298b8b4d | 3bf3b3a997282dc9ccd929e9af0d8bce6a91c2f1 | refs/heads/master | 2020-03-30T08:45:23.667000 | 2018-10-10T03:56:51 | 2018-10-10T03:56:51 | 151,037,097 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package com.tims.in.daoImpl;
import java.sql.ResultSet;
import java.sql.SQLException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.dao.DataAccessException;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.ResultSetExtract... | UTF-8 | Java | 4,143 | java | RegisterImple.java | Java | [] | null | [] |
package com.tims.in.daoImpl;
import java.sql.ResultSet;
import java.sql.SQLException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.dao.DataAccessException;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.ResultSetExtract... | 4,143 | 0.738837 | 0.738354 | 103 | 38.203884 | 53.976688 | 430 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.038835 | false | false | 5 |
a0530c319fba4472ade175af9bb4d062a21df6a4 | 4,191,888,119,859 | b9e2830df4072c87d48b1d4447726e1d558244ba | /rabbitmq-delayQueue-plugins-demo/src/main/java/com/jjcc/batch/config/RabbitConfig.java | e23323d79b69ff272570bcb01f721e4c6e5238d1 | [] | no_license | jjcc123312/rabbitmq-study | https://github.com/jjcc123312/rabbitmq-study | 0fcc817d5d6dd5075e14e115ee25c256a28b86c9 | f2f3b13ab85ee0419ab4b56eaeb7a757b783ad5f | refs/heads/master | 2021-01-05T15:02:02.247000 | 2020-03-18T06:21:30 | 2020-03-18T06:21:30 | 241,057,133 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jjcc.batch.config;
import org.springframework.amqp.core.*;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import java.util.HashMap;
/**
* 配置类;
* @author Jjcc
* @version 1.0.0
* @className RabbitConfig.java
* @createTime 2020年02月26日 1... | UTF-8 | Java | 1,603 | java | RabbitConfig.java | Java | [
{
"context": "import java.util.HashMap;\n\n\n/**\n * 配置类;\n * @author Jjcc\n * @version 1.0.0\n * @className RabbitConfig.java",
"end": 241,
"score": 0.99969083070755,
"start": 237,
"tag": "USERNAME",
"value": "Jjcc"
},
{
"context": "hange。\n * @title customExchange\n * @auth... | null | [] | package com.jjcc.batch.config;
import org.springframework.amqp.core.*;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import java.util.HashMap;
/**
* 配置类;
* @author Jjcc
* @version 1.0.0
* @className RabbitConfig.java
* @createTime 2020年02月26日 1... | 1,603 | 0.644798 | 0.610338 | 60 | 24.066668 | 22.869825 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.35 | false | false | 5 |
a77409ca9a2432434dfd51eb5e19a0050e9e6ac6 | 13,941,463,911,763 | e26c3ca7353d1d2bd613254cfcd1b865a680e26e | /src/nostale/resources/Map.java | 51bcd04a83ae8d21e03329bc115aac4aa641b077 | [] | no_license | lika85456/supernos | https://github.com/lika85456/supernos | 1b0a3d32aa85496223857bdd44208177b29736a5 | cbb759a5ffac2a2b4c5cc48b7aacdf0e3829754a | refs/heads/master | 2021-01-19T07:32:01.731000 | 2017-12-23T20:52:45 | 2017-12-23T20:52:45 | 87,552,392 | 1 | 0 | null | false | 2017-12-23T20:52:46 | 2017-04-07T14:02:02 | 2017-12-11T08:43:01 | 2017-12-23T20:52:46 | 2,218 | 0 | 0 | 0 | Java | false | null | package nostale.resources;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.RandomAccessFile;
import java.util.ArrayList;
public class Map {
public File file;
public RandomAccessFile r;
pu... | UTF-8 | Java | 2,236 | java | Map.java | Java | [] | null | [] | package nostale.resources;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.RandomAccessFile;
import java.util.ArrayList;
public class Map {
public File file;
public RandomAccessFile r;
pu... | 2,236 | 0.593023 | 0.581843 | 94 | 21.787233 | 17.986917 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.489362 | false | false | 5 |
a4bb46195ed661d69a3a812474b2ef6145f07ac2 | 17,093,969,842,174 | 23e3f811c0125b112a6c4bd41bb705547e5aabf8 | /src/main/java/com/zhbit/controller/ArticleController.java | 7f36fe7f32ea7ce44df201a561ff6e1747879272 | [] | no_license | kong-2019/Blog_01 | https://github.com/kong-2019/Blog_01 | 5f07a0fb7beec188898810c6ee520e504dc75516 | 8a8984afe30173991161edb3c1ba13d2942cc09c | refs/heads/master | 2020-06-01T16:55:20.916000 | 2019-06-08T06:27:46 | 2019-06-08T06:27:46 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.zhbit.controller;
import com.zhbit.dto.ArticleIdAndUserName;
import com.zhbit.dto.ArticleToPage;
import com.zhbit.entity.Article;
import com.zhbit.service.interfaces.ArticleService;
import com.zhbit.service.interfaces.UserMessageService;
import org.springframework.beans.factory.annotation.Autowired;
impor... | UTF-8 | Java | 2,402 | java | ArticleController.java | Java | [] | null | [] | package com.zhbit.controller;
import com.zhbit.dto.ArticleIdAndUserName;
import com.zhbit.dto.ArticleToPage;
import com.zhbit.entity.Article;
import com.zhbit.service.interfaces.ArticleService;
import com.zhbit.service.interfaces.UserMessageService;
import org.springframework.beans.factory.annotation.Autowired;
impor... | 2,402 | 0.704255 | 0.702979 | 83 | 27.313253 | 31.764164 | 148 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.325301 | false | false | 5 |
b863a881013771aa2a40395c882d1c314d437e92 | 18,339,510,403,631 | 89aa9d6e8e1bd0e02f7670d5f02fc09fa9065a95 | /src/src/main/java/org/usesoft/gwtrestapp/shared/domain/Student.java | 93f2db19271e8ca21ec8bd0b9be0684adc46d4db | [] | no_license | slogan163/gwtrestapp-master | https://github.com/slogan163/gwtrestapp-master | af79256164fcc9867db08f2e3460c5e86356b9d1 | c633dc2a1554ad63f2ba40507a1b99721c300288 | refs/heads/master | 2020-06-20T04:37:27.703000 | 2016-11-27T14:36:14 | 2016-11-27T14:36:14 | 74,881,782 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.usesoft.gwtrestapp.shared.domain;
import org.codehaus.jackson.annotate.JsonCreator;
import org.codehaus.jackson.annotate.JsonProperty;
public class Student
{
private Long id;
private String firstName;
private Long groupId;
@JsonCreator
public Student(@JsonProperty("id") Long id, @Json... | UTF-8 | Java | 697 | java | Student.java | Java | [
{
"context": " {\n this.id = id;\n this.firstName = firstName;\n this.groupId = groupId;\n }\n\n publi",
"end": 461,
"score": 0.9703373312950134,
"start": 452,
"tag": "NAME",
"value": "firstName"
}
] | null | [] | package org.usesoft.gwtrestapp.shared.domain;
import org.codehaus.jackson.annotate.JsonCreator;
import org.codehaus.jackson.annotate.JsonProperty;
public class Student
{
private Long id;
private String firstName;
private Long groupId;
@JsonCreator
public Student(@JsonProperty("id") Long id, @Json... | 697 | 0.645624 | 0.645624 | 34 | 19.5 | 24.449528 | 131 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.411765 | false | false | 5 |
85386dbd5e6b9cdbdd7022dffdc002d442f5b315 | 15,547,781,612,878 | 72477012dd2b9daf24ef979bde0a4055190fa645 | /src/main/java/protocol/command/QuitCommand.java | 2f9a965f528bee7599b828276c98567a9b5c4486 | [] | no_license | xiaoxigit/mysql-protocol | https://github.com/xiaoxigit/mysql-protocol | 368451122ba1675a153a86f9865db4660bd04167 | 5d48bb3d691ad0b18313595abb48224d03af6f82 | refs/heads/master | 2023-01-22T03:58:09.672000 | 2020-12-05T03:51:57 | 2020-12-05T03:51:57 | 167,295,292 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package protocol.command;
import io.MysqlByteArrayOutputStream;
import java.io.IOException;
public class QuitCommand implements Command {
@Override
public byte[] toByteArray() throws IOException {
MysqlByteArrayOutputStream buffer = new MysqlByteArrayOutputStream();
buffer.writeInteger(Comman... | UTF-8 | Java | 391 | java | QuitCommand.java | Java | [] | null | [] | package protocol.command;
import io.MysqlByteArrayOutputStream;
import java.io.IOException;
public class QuitCommand implements Command {
@Override
public byte[] toByteArray() throws IOException {
MysqlByteArrayOutputStream buffer = new MysqlByteArrayOutputStream();
buffer.writeInteger(Comman... | 391 | 0.73913 | 0.736573 | 14 | 26.928572 | 24.202906 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 5 |
a2a2f7fa9f151580ce214681badf68f24d8421de | 24,318,104,895,912 | 41d3468fc10ed6ea38831ed3995a58ded3fd1fea | /src/main/java/uk/blankaspect/common/collection/CollectionUtils.java | b69372d5e09d3c3bc77457af2e37a97ef44c844e | [
"MIT"
] | permissive | blankaspect/common | https://github.com/blankaspect/common | 21a873718b5a6a7c039d78661685d13aa97d2b3a | cb96ae8939d31e34a200e2102fcb84045d927cc5 | refs/heads/master | 2023-02-09T05:28:43.305000 | 2020-12-27T12:10:12 | 2020-12-27T12:10:12 | 108,156,439 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*====================================================================*\
CollectionUtils.java
Class: collection-related utility methods.
\*====================================================================*/
// PACKAGE
package uk.blankaspect.common.collection;
//-----------------------------------------------... | UTF-8 | Java | 6,634 | java | CollectionUtils.java | Java | [] | null | [] | /*====================================================================*\
CollectionUtils.java
Class: collection-related utility methods.
\*====================================================================*/
// PACKAGE
package uk.blankaspect.common.collection;
//-----------------------------------------------... | 6,634 | 0.546578 | 0.545674 | 215 | 29.855814 | 34.37431 | 116 | false | false | 0 | 0 | 0 | 0 | 87 | 0.069189 | 1.04186 | false | false | 5 |
6c1413e5d059903df55204f528f5a332cfe19141 | 26,456,998,594,921 | 52f413e07a06e3076c374c536d29f5c501e3eb87 | /src/main/java/com/preston/argiope/service/user/UserService.java | 7775f6cd4434579513dd4f04fce838c1ea15be48 | [] | no_license | pbriggs28/argiope-public | https://github.com/pbriggs28/argiope-public | 4301d1e24a0a6ff99dd6dc07bff21a8e5ed752c4 | 445358b145a292eecc3153966e0072490ac21fb7 | refs/heads/master | 2021-01-01T16:07:41.439000 | 2017-07-22T01:36:51 | 2017-07-22T01:36:51 | 97,773,215 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.preston.argiope.service.user;
import com.preston.argiope.exception.common.form.MissingRequiredFieldException;
import com.preston.argiope.exception.service.user.DeleteUserException;
import com.preston.argiope.exception.service.user.UserNotFoundException;
import com.preston.argiope.exception.service.use... | UTF-8 | Java | 3,145 | java | UserService.java | Java | [] | null | [] | package com.preston.argiope.service.user;
import com.preston.argiope.exception.common.form.MissingRequiredFieldException;
import com.preston.argiope.exception.service.user.DeleteUserException;
import com.preston.argiope.exception.service.user.UserNotFoundException;
import com.preston.argiope.exception.service.use... | 3,145 | 0.67663 | 0.67663 | 85 | 35.023529 | 33.348774 | 125 | false | false | 0 | 0 | 0 | 0 | 100 | 0.063593 | 1.141176 | false | false | 5 |
ba7a93c1651d914a6e9c8907ed3e6345b647fdbc | 18,846,316,564,649 | 5ed78d0906a652efc7cfde578abd2a7a3f380d2e | /src/main/java/com/mycompany/app/BasicRuntimeException.java | 676d970e8a42e88d76a915b57510558e5c28f397 | [] | no_license | usmanaftab/java_sample | https://github.com/usmanaftab/java_sample | 8cfc345526bd04ad3ad932ea46c99feee0cc8195 | f57bef5de6bd7eceb6e313f36580fc5af26443bd | refs/heads/master | 2021-01-15T17:06:58.048000 | 2011-04-18T20:17:15 | 2011-04-18T20:17:15 | 1,623,210 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
*
*/
package com.mycompany.app;
/**
* @author boy
*
*/
public class BasicRuntimeException extends RuntimeException {
private static final long serialVersionUID = 1L;
public BasicRuntimeException(String msg) {
super(msg);
}
public BasicRuntimeException(Exception exception) {
super(exception.getMess... | UTF-8 | Java | 474 | java | BasicRuntimeException.java | Java | [
{
"context": " * \n */\npackage com.mycompany.app;\n\n/**\n * @author boy\n *\n */\npublic class BasicRuntimeException extends",
"end": 58,
"score": 0.9963263869285583,
"start": 55,
"tag": "USERNAME",
"value": "boy"
}
] | null | [] | /**
*
*/
package com.mycompany.app;
/**
* @author boy
*
*/
public class BasicRuntimeException extends RuntimeException {
private static final long serialVersionUID = 1L;
public BasicRuntimeException(String msg) {
super(msg);
}
public BasicRuntimeException(Exception exception) {
super(exception.getMess... | 474 | 0.727848 | 0.725738 | 27 | 16.555555 | 20.398499 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.925926 | false | false | 5 |
55f0c6d1663a8f2f167e65f3f9259794c1ff805c | 24,068,996,785,164 | ffe1ae414cde32cfa9d45c39e7850ef70265c3ad | /app/utils/UsernameValidator.java | f48ec5df7e12278f394b3fddc2414f81a8d708a2 | [] | no_license | datamaskin/ruckus | https://github.com/datamaskin/ruckus | f3ef8faa42c0124215fda8faf287d981356db3ac | f8f89582e0b960d97c19325484225e8635678eca | refs/heads/master | 2022-01-09T05:33:12.478000 | 2019-07-19T17:42:40 | 2019-07-19T17:42:40 | 197,805,604 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package utils;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Created by mgiles on 7/8/14.
*/
public class UsernameValidator {
private static final Pattern pattern = Pattern.compile("^[a-zA-Z0-9_-]{3,15}$");
/**
* Validate username with regular expression
*
* @param us... | UTF-8 | Java | 572 | java | UsernameValidator.java | Java | [
{
"context": "import java.util.regex.Pattern;\n\n/**\n * Created by mgiles on 7/8/14.\n */\npublic class UsernameValidator {\n ",
"end": 105,
"score": 0.9995529651641846,
"start": 99,
"tag": "USERNAME",
"value": "mgiles"
}
] | null | [] | package utils;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Created by mgiles on 7/8/14.
*/
public class UsernameValidator {
private static final Pattern pattern = Pattern.compile("^[a-zA-Z0-9_-]{3,15}$");
/**
* Validate username with regular expression
*
* @param us... | 572 | 0.66958 | 0.653846 | 22 | 25 | 23.863247 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.363636 | false | false | 5 |
e441326dc59a0b1925c50b2c05878c294a2582f5 | 7,224,135,060,712 | ee33eaf6a9d3f0467fd6f21a6b245b47cdb8d8c6 | /FinalEvaluation.java | 01a58a648de5719c249034153a2f8c56a0fb211f | [] | no_license | Bryan15625/snakes-and-ladders | https://github.com/Bryan15625/snakes-and-ladders | 0a685276b650c722bb9cf0c8951086aa79e9573d | 46820d32f5fae986d3ba8dd688d524b791612685 | refs/heads/main | 2023-07-27T07:05:30.912000 | 2021-09-01T04:56:42 | 2021-09-01T04:56:42 | 401,934,738 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /* The "FinalEvaluation" class.
* Created by: Bryan
* Last Modified: June 12, 2020
* There are two players, the user versus the computer. The user rolls one die and the computer rolls one die
* both at the same time. The number the die rolls is the number of tiles the person rolling gets to move ahead. Players... | UTF-8 | Java | 52,588 | java | FinalEvaluation.java | Java | [
{
"context": "/* The \"FinalEvaluation\" class.\r\n * Created by: Bryan\r\n * Last Modified: June 12, 2020\r\n * There are tw",
"end": 53,
"score": 0.999749481678009,
"start": 48,
"tag": "NAME",
"value": "Bryan"
},
{
"context": "tatic void intro ()\r\n {\r\n c.println(\"... | null | [] | /* The "FinalEvaluation" class.
* Created by: Bryan
* Last Modified: June 12, 2020
* There are two players, the user versus the computer. The user rolls one die and the computer rolls one die
* both at the same time. The number the die rolls is the number of tiles the person rolling gets to move ahead. Players... | 52,576 | 0.354587 | 0.289306 | 1,197 | 41.934837 | 22.711494 | 122 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.345865 | false | false | 5 |
527535e92dc948bf9583ea475263dd9113043184 | 35,639,638,651,436 | b70317d492ea4b6a4b78f4b173b506d8fa0592ae | /app/src/main/java/com/duyhoang/restfulwebserviceintergrationOkHttpRefactoring/network/AppNetworkRequest.java | 8869608774b4bc00f18e22047e67ec3f59d5b7b5 | [] | no_license | 1312214/RestfulWebserviceIntergrationOkHttpRefactoring | https://github.com/1312214/RestfulWebserviceIntergrationOkHttpRefactoring | 5e256dd2f7cc97853153234ade1039ed5d1da5c0 | d31e7f1381e6afa3d8f8f719213949d8549d1f24 | refs/heads/master | 2020-03-27T02:33:13.378000 | 2018-08-23T04:05:38 | 2018-08-23T04:05:38 | 145,798,251 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.duyhoang.restfulwebserviceintergrationOkHttpRefactoring.network;
import android.content.Context;
import android.os.Handler;
import com.duyhoang.restfulwebserviceintergrationOkHttpRefactoring.AppConfig;
import java.util.concurrent.TimeUnit;
import okhttp3.OkHttpClient;
import okhttp3.Request;
/**
* Cre... | UTF-8 | Java | 4,295 | java | AppNetworkRequest.java | Java | [
{
"context": "Client;\nimport okhttp3.Request;\n\n/**\n * Created by rogerh on 7/20/2018.\n */\n\npublic abstract class AppNetwo",
"end": 334,
"score": 0.9996544718742371,
"start": 328,
"tag": "USERNAME",
"value": "rogerh"
},
{
"context": "on/json\";\n public static final String T... | null | [] | package com.duyhoang.restfulwebserviceintergrationOkHttpRefactoring.network;
import android.content.Context;
import android.os.Handler;
import com.duyhoang.restfulwebserviceintergrationOkHttpRefactoring.AppConfig;
import java.util.concurrent.TimeUnit;
import okhttp3.OkHttpClient;
import okhttp3.Request;
/**
* Cre... | 4,295 | 0.723632 | 0.719208 | 113 | 37.00885 | 37.299908 | 145 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.637168 | false | false | 5 |
2975b223ad05509375c5d6e1f6576948745d7044 | 37,976,100,843,083 | cb1ed78c12055c29660905ec3ac101c64762d3ce | /src/net/slimevoid/probot/client/gui/lab/RobotSelector.java | c86780a54aa870decb5b6ac46b50ed69c6f0584c | [] | no_license | VengeurK/Probot | https://github.com/VengeurK/Probot | a51df43c0efb47de46645af185e07522bf3aab4f | 49963a4e4a01444059152c7a4f99b9f207e855ff | refs/heads/master | 2021-01-13T16:00:56.441000 | 2017-01-23T15:19:30 | 2017-01-23T15:19:30 | 79,816,035 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.slimevoid.probot.client.gui.lab;
import static java.lang.Math.max;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.event.MouseEvent;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
imp... | UTF-8 | Java | 4,181 | java | RobotSelector.java | Java | [] | null | [] | package net.slimevoid.probot.client.gui.lab;
import static java.lang.Math.max;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.RenderingHints;
import java.awt.event.MouseEvent;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
imp... | 4,181 | 0.684047 | 0.670175 | 135 | 29.970371 | 23.886131 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.385185 | false | false | 5 |
7354e20f0bfd34d0fa778770689380b53e9ad2c7 | 33,947,421,552,470 | e1a9476c89d65a655a2be02683127ece1859e4cd | /src/com/mall/controller/LocationController.java | 1b26303e1af9bff5ba526df75bdbbf319e692133 | [] | no_license | gaoKuoZqq/new_mall | https://github.com/gaoKuoZqq/new_mall | 9f0109a503952d137df566894e355be7ec2aee45 | d578b78b49c748945aa4ae10e3aa9d3d0f55d06b | refs/heads/master | 2021-07-25T21:12:11.241000 | 2017-11-07T00:29:30 | 2017-11-07T00:29:30 | 109,770,122 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mall.controller;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import com.mall.pojo.Locatio... | UTF-8 | Java | 825 | java | LocationController.java | Java | [] | null | [] | package com.mall.controller;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import com.mall.pojo.Locatio... | 825 | 0.815758 | 0.815758 | 30 | 26.5 | 22.707928 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.9 | false | false | 5 |
199515e40cc78477ce9ee2a54bfcadbf171e9746 | 33,947,421,550,833 | dc04cf2887141083c78c1cf49ed6b265c929e635 | /Tuto3-2/srceclipse/Backend/Vehicle.java | 833e3cfdde14df1327df79e90770af6661cb3b0f | [] | no_license | EarvinKayonga/Tuto-Angleterre-2014 | https://github.com/EarvinKayonga/Tuto-Angleterre-2014 | 41947b6d692f59bf6f6a7500f075d9a5ffda5709 | fa7ab185d052d4d8afc8d25f1040b47729a6b205 | refs/heads/master | 2020-06-07T02:57:36.496000 | 2014-10-14T16:57:26 | 2014-10-14T16:57:26 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Backend;
import java.util.Date;
/**
*
* @author charly
*/
public class Vehicle {
private String manufacturer, model, vid;
private Date sellDate=null, manufDate;
private Customer customer=null;
private boolean sold = false; // Do I really need it ?
private char taxBand;
private flo... | UTF-8 | Java | 4,565 | java | Vehicle.java | Java | [
{
"context": "ckend;\n\n\nimport java.util.Date;\n\n/**\n *\n * @author charly\n */\npublic class Vehicle {\n\n private String ma",
"end": 67,
"score": 0.9834635257720947,
"start": 61,
"tag": "USERNAME",
"value": "charly"
}
] | null | [] | package Backend;
import java.util.Date;
/**
*
* @author charly
*/
public class Vehicle {
private String manufacturer, model, vid;
private Date sellDate=null, manufDate;
private Customer customer=null;
private boolean sold = false; // Do I really need it ?
private char taxBand;
private flo... | 4,565 | 0.487949 | 0.476556 | 225 | 19.284445 | 17.19739 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.297778 | false | false | 5 |
c064180689bf87b5745c69d82931410010e0c2cc | 35,124,242,589,109 | 8212b2d5bd0d86e7a8d83556888d1a9dfd1d7651 | /rsys/src/main/java/rsys/app/controller/UserInputFormController.java | 6b0507bdacb1d733db39b75f4a5435323bddb447 | [] | no_license | sangjiexun/java-spring | https://github.com/sangjiexun/java-spring | dce26a2fcee0f957c4234b32de676a4ae2c739ed | 16ca676bd5ec9d3ae7d957bf4ebd32269fdae66c | refs/heads/master | 2020-12-18T23:24:01.508000 | 2019-05-13T17:11:14 | 2019-05-13T17:11:14 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package rsys.app.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import rsys.domain.model.RoleName;
import rsys.domain.model.SectionNa... | UTF-8 | Java | 1,454 | java | UserInputFormController.java | Java | [] | null | [] | package rsys.app.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import rsys.domain.model.RoleName;
import rsys.domain.model.SectionNa... | 1,454 | 0.747887 | 0.747887 | 45 | 29.555555 | 22.643671 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.488889 | false | false | 5 |
59e018135d9251db0852eb388c759845fc0b2e7f | 30,726,196,077,527 | a2c9d37b36cfecfab2b1549c6c37944d2044e09c | /Kapitel 4/Mobile/Wire.java | e5390cc4fe2ba88e81b058c3ec1d588c4910a5a1 | [] | no_license | mqng/HS-CO_SS21_IF_Prog2 | https://github.com/mqng/HS-CO_SS21_IF_Prog2 | 0d9bc257367ac8c24d44f4469f944983698bf484 | 466b9eff44dd3fa452c338a468029e8abd3b8b97 | refs/heads/master | 2023-07-09T13:14:15.824000 | 2021-08-09T15:36:27 | 2021-08-09T15:36:27 | 390,580,986 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /* Das Java-Praktikum, dpunkt Verlag 2008, ISBN 978-3-89864-513-3
* Aufgabe: Mobiles
* Entwickelt mit: Sun Java 6 SE Development Kit
*/
package mobile;
/**
* Definiert ein Stäbchen des Mobiles.
* Composite im design pattern "composite".
*
* @author Klaus Köhler, koehler@hm.edu
* @author Reinhard Schiedermeier,... | ISO-8859-1 | Java | 1,899 | java | Wire.java | Java | [
{
"context": "osite im design pattern \"composite\".\n *\n * @author Klaus Köhler, koehler@hm.edu\n * @author Reinhard Schiedermeier",
"end": 269,
"score": 0.99988853931427,
"start": 257,
"tag": "NAME",
"value": "Klaus Köhler"
},
{
"context": "n pattern \"composite\".\n *\n * @author... | null | [] | /* Das Java-Praktikum, dpunkt Verlag 2008, ISBN 978-3-89864-513-3
* Aufgabe: Mobiles
* Entwickelt mit: Sun Java 6 SE Development Kit
*/
package mobile;
/**
* Definiert ein Stäbchen des Mobiles.
* Composite im design pattern "composite".
*
* @author <NAME>, <EMAIL>
* @author <NAME>, <EMAIL>
* @version 15.06.20... | 1,864 | 0.572713 | 0.554204 | 73 | 24.90411 | 19.303038 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.438356 | false | false | 5 |
880bd5042bc2222f03f00f29c1718bf5123a0c77 | 27,599,459,908,194 | 53a1052d79b23d1b488268bb9dbf6dd5a63cbe97 | /src/main/java/com/stan/sellwechat/service/impl/OrderServiceImpl.java | 7d292ca8e76c961b2a049e4f014c262748c044b1 | [] | no_license | WitnessStan/MyWrok | https://github.com/WitnessStan/MyWrok | c6a1451b4182ec8804fb7534be550e375db16039 | 977d0e16d17f3830166bbd36c509a8a90c95b5ae | refs/heads/master | 2020-04-08T20:18:35.515000 | 2018-12-09T12:06:26 | 2018-12-09T12:06:26 | 159,693,577 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.stan.sellwechat.service.impl;
import com.stan.sellwechat.domain.OrderDetail;
import com.stan.sellwechat.domain.OrderMaster;
import com.stan.sellwechat.domain.ProductInfo;
import com.stan.sellwechat.dto.CartDTO;
import com.stan.sellwechat.dto.OrderDTO;
import com.stan.sellwechat.enums.OrderStatusEnum;
impor... | UTF-8 | Java | 9,274 | java | OrderServiceImpl.java | Java | [] | null | [] | package com.stan.sellwechat.service.impl;
import com.stan.sellwechat.domain.OrderDetail;
import com.stan.sellwechat.domain.OrderMaster;
import com.stan.sellwechat.domain.ProductInfo;
import com.stan.sellwechat.dto.CartDTO;
import com.stan.sellwechat.dto.OrderDTO;
import com.stan.sellwechat.enums.OrderStatusEnum;
impor... | 9,274 | 0.688267 | 0.687926 | 221 | 38.800903 | 29.903406 | 132 | false | false | 0 | 0 | 0 | 0 | 82 | 0.009322 | 0.660634 | false | false | 5 |
0f2de9ee593908ccc9b109a42f62e70bd77587d1 | 35,983,236,029,384 | 4e579698a893f43bafe008dc3be61079b0780146 | /consumer/src/main/java/com/imooc/springboot/dubbo/demo/consumer/MainConsumer.java | 985370df0672f231bcaa402f827bd8696e94ece5 | [] | no_license | jialongli/dubbo_demo_mosn_qn | https://github.com/jialongli/dubbo_demo_mosn_qn | f89add39869a6b1072210ac8737b241472ad1272 | ad1e7bb747a8eaaa0ed77dbd2d14371cea104c70 | refs/heads/main | 2023-06-04T22:41:42.086000 | 2021-06-17T08:41:21 | 2021-06-17T08:41:21 | 373,020,759 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.imooc.springboot.dubbo.demo.consumer;
import com.imooc.springboot.dubbo.demo.DemoService;
import com.imooc.springboot.dubbo.demo.consumer.socket.MyHttpHandler;
import com.sun.net.httpserver.HttpServer;
import com.taobao.stresstester.StressTestUtils;
import com.taobao.stresstester.core.StressTask;
import o... | UTF-8 | Java | 2,338 | java | MainConsumer.java | Java | [] | null | [] | package com.imooc.springboot.dubbo.demo.consumer;
import com.imooc.springboot.dubbo.demo.DemoService;
import com.imooc.springboot.dubbo.demo.consumer.socket.MyHttpHandler;
import com.sun.net.httpserver.HttpServer;
import com.taobao.stresstester.StressTestUtils;
import com.taobao.stresstester.core.StressTask;
import o... | 2,338 | 0.617908 | 0.612589 | 66 | 33.196968 | 25.121052 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.636364 | false | false | 5 |
3a2d1eb0980d373a5f49d6ba76375e290ebe5156 | 21,466,246,614,656 | 71fd6e85252e14b21047e72fbebb433f27ea91ac | /ATCompSci/Tutorials/wkst/JavaLinkedList.java | 2d8ccda5119c14c75c7c49c83abcbbb43c2cbe06 | [
"MIT"
] | permissive | Zedai/ATCompSci | https://github.com/Zedai/ATCompSci | f28fb7dc9e6ee0b6fa2acadebcae34f847bee7f3 | 8decabcc3b808665dff87b3ff69b3b4c342b501f | refs/heads/master | 2020-04-06T07:02:05.648000 | 2017-04-26T18:14:33 | 2017-04-26T18:14:33 | 41,857,894 | 2 | 3 | null | false | 2016-05-09T14:43:29 | 2015-09-03T12:13:47 | 2016-03-21T13:02:00 | 2016-05-09T14:43:17 | 96 | 0 | 1 | 0 | Java | null | null | package wkst;
import java.util.LinkedList;
import java.util.ListIterator;
public class JavaLinkedList
{
private LinkedList<Integer> list;
public JavaLinkedList()
{
list = new LinkedList<Integer>();
}
public JavaLinkedList(int[] nums)
{
list = new LinkedList<Integer>();
for(int num : num... | UTF-8 | Java | 1,347 | java | JavaLinkedList.java | Java | [] | null | [] | package wkst;
import java.util.LinkedList;
import java.util.ListIterator;
public class JavaLinkedList
{
private LinkedList<Integer> list;
public JavaLinkedList()
{
list = new LinkedList<Integer>();
}
public JavaLinkedList(int[] nums)
{
list = new LinkedList<Integer>();
for(int num : num... | 1,347 | 0.605048 | 0.603563 | 80 | 14.8625 | 14.671183 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.7625 | false | false | 5 |
50fbc93836aa37fb31aa837b4ef3a6f3b47aac75 | 36,507,222,040,832 | e0c4e68543ca38ef81914f525ad98443e5eddf3b | /src/com/androidtest/bulletinView/bulletinView.java | 645f556dc436b23ee6126a47e3873fdc85f7e10d | [] | no_license | bogus532/bulletinView | https://github.com/bogus532/bulletinView | b37442e0c271563efe582a08ea53fc320d347ca2 | 032b35267e5aa752134e47049deac481c6bb352e | refs/heads/master | 2020-04-01T18:44:26.723000 | 2011-07-14T06:50:27 | 2011-07-14T06:50:27 | 1,945,923 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.androidtest.bulletinView;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.n... | UTF-8 | Java | 19,494 | java | bulletinView.java | Java | [
{
"context": "lue();\n\t //String strAuthor = \"경향신문\";\n\t \n\t /",
"end": 12267,
"score": 0.8323308229446411,
"start": 12266,
"tag": "USERNAME",
"value": "경"
},
{
"context": "ue();\n\t //String strAuthor = ... | null | [] | package com.androidtest.bulletinView;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.n... | 19,494 | 0.614074 | 0.611481 | 602 | 30.397011 | 25.202572 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.674419 | false | false | 5 |
d60c3d6e3a9bd569c7c01020f96c7599cf250d84 | 5,609,227,355,402 | 133d3156e1524b04d39a04fa383d18a562cf3725 | /CameraSL/CameraSL-Security-Service/src/main/java/com/camerasl/store/security/filter/JWTSecurityRequestFilter.java | b786359487dd12b79a5b3bea37dc6f0219998295 | [] | no_license | pathum17/microservice | https://github.com/pathum17/microservice | 4f73bb6e1a431f5ed5a6838b0de75d2f1220006b | dc68ee710e4eac30ac67a8eba372bcf54ef83547 | refs/heads/master | 2020-08-30T15:44:32.284000 | 2019-12-18T01:58:46 | 2019-12-18T01:58:46 | 218,424,572 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.camerasl.store.security.filter;
import com.camerasl.store.security.CameraSLSecurityServiceApplication;
import com.camerasl.store.security.service.CameraSLUserDetailsService;
import com.camerasl.store.security.util.JWTUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springfra... | UTF-8 | Java | 2,451 | java | JWTSecurityRequestFilter.java | Java | [] | null | [] | package com.camerasl.store.security.filter;
import com.camerasl.store.security.CameraSLSecurityServiceApplication;
import com.camerasl.store.security.service.CameraSLUserDetailsService;
import com.camerasl.store.security.util.JWTUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springfra... | 2,451 | 0.79437 | 0.793962 | 53 | 45.245281 | 42.57021 | 179 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.679245 | false | false | 5 |
34f5b2531780bb7125345047240047b5fe4d674d | 38,878,043,996,040 | 73b6e9066b47d629b65f09e0658cf858e3cf0641 | /src/main/java/carpet/mixins/ThreadedLevelLightEngine_scarpetMixin.java | 901654e2eb37932baf17884f941b5ad1dca93144 | [
"MIT"
] | permissive | gnembon/fabric-carpet | https://github.com/gnembon/fabric-carpet | 427a01bdfb2aca997ed70976fb4ba6ca3efffb2c | ffbd1338b06c74ea97c40fca46f0d57ba50b2d55 | refs/heads/master | 2023-09-01T01:42:00.401000 | 2023-08-30T19:59:14 | 2023-08-30T19:59:14 | 185,908,133 | 1,702 | 473 | MIT | false | 2023-09-14T00:37:49 | 2019-05-10T02:54:10 | 2023-09-12T11:54:47 | 2023-09-14T00:37:48 | 8,872 | 1,508 | 242 | 293 | Java | false | false | package carpet.mixins;
import carpet.fakes.ServerLightingProviderInterface;
import net.minecraft.core.BlockPos;
import net.minecraft.core.SectionPos;
import net.minecraft.server.level.ThreadedLevelLightEngine;
import net.minecraft.world.level.ChunkPos;
import net.minecraft.world.level.LightLayer;
import net.minecraft.... | UTF-8 | Java | 2,376 | java | ThreadedLevelLightEngine_scarpetMixin.java | Java | [] | null | [] | package carpet.mixins;
import carpet.fakes.ServerLightingProviderInterface;
import net.minecraft.core.BlockPos;
import net.minecraft.core.SectionPos;
import net.minecraft.server.level.ThreadedLevelLightEngine;
import net.minecraft.world.level.ChunkPos;
import net.minecraft.world.level.LightLayer;
import net.minecraft.... | 2,376 | 0.643098 | 0.638889 | 61 | 37.950821 | 35.079967 | 127 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.901639 | false | false | 5 |
82385f6d1f6aa22f22037f18c23a0152d6fa9947 | 19,928,648,308,263 | 6fba6c3acc124382aaa4048725ef25817cc4b9c9 | /src/main/java/restAPI/ProductsController.java | 33111ab53158e2ad3b7a0ed1dd1ff895ef5cc04c | [] | no_license | yannbertaud/springRestAPI | https://github.com/yannbertaud/springRestAPI | 1b11cea20b47d567b03182a4b6d25755014724ad | f1765c58d5f3ea36bb432cec70ce9c00d2cbc89f | refs/heads/master | 2020-04-24T17:12:19.472000 | 2015-07-29T22:49:10 | 2015-07-29T22:49:10 | 37,552,353 | 2 | 0 | null | false | 2015-06-17T07:52:10 | 2015-06-16T19:47:54 | 2015-06-16T20:01:05 | 2015-06-17T07:52:10 | 0 | 0 | 0 | 0 | Java | null | null | package main.java.restAPI;
import java.util.ArrayList;
import main.java.exceptions.ItemNotFoundException;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.ui.Model;
import org.sp... | UTF-8 | Java | 3,539 | java | ProductsController.java | Java | [] | null | [] | package main.java.restAPI;
import java.util.ArrayList;
import main.java.exceptions.ItemNotFoundException;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.ui.Model;
import org.sp... | 3,539 | 0.707827 | 0.706697 | 105 | 32.704762 | 24.869535 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.914286 | false | false | 5 |
ea4f96fd455949b5f9c8b87dc543444279d31547 | 36,575,941,521,533 | 5fc8b055bdf66373592c31cf8ab1081e92470b39 | /Problem_846.java | 638267e6d568e28053963c15e52cf6d8cc6d4d04 | [] | no_license | anand-saurabh/LeetCode | https://github.com/anand-saurabh/LeetCode | d62691e805b0d13378741862936f5f26d9c7d551 | 1dbff17a7d9e6bc6c9f8ed1f15bdd0fd352b55b2 | refs/heads/master | 2023-03-28T00:59:09.163000 | 2021-03-31T03:35:06 | 2021-03-31T03:35:06 | 264,816,710 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | class Solution {
public boolean isNStraightHand(int[] nums, int W) {
if(W == 1)
{
return true;
}
Arrays.sort(nums);
Map<Integer, Integer>
map = new LinkedHashMap();
int leng = nums.length;
fo... | UTF-8 | Java | 2,100 | java | Problem_846.java | Java | [] | null | [] | class Solution {
public boolean isNStraightHand(int[] nums, int W) {
if(W == 1)
{
return true;
}
Arrays.sort(nums);
Map<Integer, Integer>
map = new LinkedHashMap();
int leng = nums.length;
fo... | 2,100 | 0.283333 | 0.277619 | 95 | 21.115789 | 12.556284 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.368421 | false | false | 5 |
32c4707df7eb103dd8539c0d8d1baf666a6bcfa9 | 18,519,899,049,607 | d2068f2dbdbd7c72b45502837512a062883d9313 | /src/main/java/api/bdd/test/framework/client/http/dto/Request.java | 8507f9ee68839a59c763077591706e9a90d0e5f7 | [] | no_license | ilyaChekasin93/api-bdd-test-framework | https://github.com/ilyaChekasin93/api-bdd-test-framework | a0b07a513c307dc36364253b0c4d4bcf262a411e | 12b4a2370866d5046cf5dff0c8958b5e90c9eeee | refs/heads/master | 2023-08-15T09:17:35.929000 | 2019-09-10T12:42:00 | 2019-09-10T12:42:00 | 207,390,970 | 2 | 0 | null | false | 2023-07-07T21:49:50 | 2019-09-09T19:43:43 | 2023-03-31T08:29:29 | 2023-07-07T21:49:49 | 19 | 2 | 0 | 4 | Java | false | false | package api.bdd.test.framework.client.http.dto;
import lombok.AllArgsConstructor;
import lombok.Data;
import java.util.*;
@Data
@AllArgsConstructor
public class Request {
private String baseUrl;
private String resource;
private Method method;
private Object body;
private Map<String, List<St... | UTF-8 | Java | 591 | java | Request.java | Java | [] | null | [] | package api.bdd.test.framework.client.http.dto;
import lombok.AllArgsConstructor;
import lombok.Data;
import java.util.*;
@Data
@AllArgsConstructor
public class Request {
private String baseUrl;
private String resource;
private Method method;
private Object body;
private Map<String, List<St... | 591 | 0.654822 | 0.654822 | 34 | 16.382353 | 16.406624 | 47 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.529412 | false | false | 5 |
80d4a793207cdfe1b2bc1b92df6565f61e94fa91 | 36,541,581,789,274 | ed6794c4ccdd457ea8462a11de808686b4af5057 | /src/main/java/br/com/rchlo/store/controller/form/PaymentForm.java | bee0aa03f068cea638d3b266cef2eb15e6f4a4f9 | [] | no_license | diegogb89/back-sprint3 | https://github.com/diegogb89/back-sprint3 | 9b5631da5fb00bc32f2119f4beb7dacf6f98c96c | 34f67792fb136fb50273d8bf80fe9579268cf124 | refs/heads/main | 2023-06-15T21:54:51.201000 | 2021-07-15T17:42:58 | 2021-07-15T17:42:58 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.com.rchlo.store.controller.form;
import br.com.rchlo.store.domain.Card;
import br.com.rchlo.store.domain.Payment;
import br.com.rchlo.store.domain.PaymentStatus;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.*;
import java.math.BigDecimal;
import java.text.DateForma... | UTF-8 | Java | 2,531 | java | PaymentForm.java | Java | [] | null | [] | package br.com.rchlo.store.controller.form;
import br.com.rchlo.store.domain.Card;
import br.com.rchlo.store.domain.Payment;
import br.com.rchlo.store.domain.PaymentStatus;
import org.hibernate.validator.constraints.Length;
import javax.validation.constraints.*;
import java.math.BigDecimal;
import java.text.DateForma... | 2,531 | 0.64678 | 0.638483 | 104 | 23.336538 | 19.449446 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.423077 | false | false | 5 |
cd8d2486bafe580ea3721b5f5ef365df23bc76f5 | 36,876,589,231,146 | 1e5cffae2f7aa19e527fb3b49ff889327b5e31aa | /ProyectoOrganiceitor/app/src/main/java/com/rlr/proyectoorganiceitor/recyclerview/MiViewHolder.java | 05446b20ab7f8c91d4db308fa4caa2aa0942c3e8 | [] | no_license | rodrigolopezramoss/ProyectoFinCiclo-Organiceitor | https://github.com/rodrigolopezramoss/ProyectoFinCiclo-Organiceitor | a6c3ca40ea4803c3b1e6258e52443fe70f232270 | 4193db917a017dc80b4d8338afb6d0eec584c2c3 | refs/heads/main | 2023-05-24T01:15:03.816000 | 2021-06-17T17:41:36 | 2021-06-17T17:41:36 | 349,410,683 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.rlr.proyectoorganiceitor.recyclerview;
import android.view.View;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.... | UTF-8 | Java | 2,371 | java | MiViewHolder.java | Java | [] | null | [] | package com.rlr.proyectoorganiceitor.recyclerview;
import android.view.View;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.... | 2,371 | 0.588781 | 0.588781 | 71 | 31.394365 | 25.708265 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.450704 | false | false | 5 |
31f5058ee64c97a2fb04606ab6706b147a6bd05e | 16,492,674,427,677 | 4fb567cde0d2e4f0f3156eb13025dd03d3722cc0 | /Viasat_eTRAC/Android/src/com/viasat/etrac/controls/CustomDialog.java | 08f1401c456dc33322e458bb0ff39073fbafbfbb | [] | no_license | Swapna-Viasat/Viasat | https://github.com/Swapna-Viasat/Viasat | 399acaeb5d23a2acb4263a5dbfe87a80d54b4948 | d5f2c238ee2f47d43bcbe88a13329390ae3f2c18 | refs/heads/master | 2021-01-20T01:19:23.182000 | 2017-04-25T09:37:08 | 2017-04-25T09:37:08 | 89,257,812 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.viasat.etrac.controls;
import android.app.Dialog;
import android.content.Context;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.TextView;
import com.viasat.etrac.R;
public class CustomDialog extends Dialog {
@Override
public void onBackPressed... | UTF-8 | Java | 4,475 | java | CustomDialog.java | Java | [] | null | [] | package com.viasat.etrac.controls;
import android.app.Dialog;
import android.content.Context;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.TextView;
import com.viasat.etrac.R;
public class CustomDialog extends Dialog {
@Override
public void onBackPressed... | 4,475 | 0.71486 | 0.712849 | 152 | 28.44079 | 22.593588 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.388158 | false | false | 5 |
621fbb08586e49ed9ccc1383e1ed18ed75e8534e | 9,259,949,520,527 | b08b2f904c03b58a9885aa45e0fc8fd711ec622c | /src/main/java/count/jgame/models/AbstractNamedEntity.java | 1cf3bf99619d11c0c5fe48914f26ec66cecb1f43 | [] | no_license | DethCount/jgame | https://github.com/DethCount/jgame | 38de5852f9714203f9aa719a78888a8f233153eb | 0d332ea45d235c596443c66911357f9b6ac171d7 | refs/heads/master | 2022-12-20T03:32:34.964000 | 2020-09-28T00:08:28 | 2020-09-28T00:08:28 | 296,655,985 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package count.jgame.models;
import javax.persistence.Column;
import javax.persistence.MappedSuperclass;
import javax.validation.constraints.NotBlank;
import org.hibernate.validator.constraints.Length;
@MappedSuperclass
public class AbstractNamedEntity extends AbstractEntity
{
@Column(length = 255)
@Length(min = 1,... | UTF-8 | Java | 466 | java | AbstractNamedEntity.java | Java | [] | null | [] | package count.jgame.models;
import javax.persistence.Column;
import javax.persistence.MappedSuperclass;
import javax.validation.constraints.NotBlank;
import org.hibernate.validator.constraints.Length;
@MappedSuperclass
public class AbstractNamedEntity extends AbstractEntity
{
@Column(length = 255)
@Length(min = 1,... | 466 | 0.766094 | 0.751073 | 25 | 17.639999 | 17.414661 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.84 | false | false | 5 |
fd1907aa1ce46ba89968ee4d82ceb3df1ace09c2 | 13,065,290,520,072 | 6848d7e1ae5436821608b203502a466eab206d87 | /src/engine/object/AEColliderSphere.java | 8705bdaced645e20526f3544699ee66466a50602 | [] | no_license | jsalmighty89/CA_TermProject | https://github.com/jsalmighty89/CA_TermProject | ed16bf308396ca08b5fc324a18ac9647a7b30a8d | c56da5febccdbad065b308942401e726f7818682 | refs/heads/master | 2021-01-02T09:08:19.727000 | 2015-06-05T02:16:54 | 2015-06-05T02:16:54 | 34,498,444 | 6 | 3 | null | false | 2019-03-03T13:37:24 | 2015-04-24T04:45:53 | 2018-03-17T15:28:29 | 2015-06-05T02:17:04 | 10,948 | 1 | 2 | 1 | Java | false | null | package engine.object;
import engine.base.AEVector;
public class AEColliderSphere extends AECollider {
protected float radius;
protected float radiusSq;
public AEColliderSphere( AEGameObject gameObject, float radius) {
super( gameObject);
setRadius( radius);
}
public void setRadius( float radius) {
t... | UTF-8 | Java | 1,236 | java | AEColliderSphere.java | Java | [] | null | [] | package engine.object;
import engine.base.AEVector;
public class AEColliderSphere extends AECollider {
protected float radius;
protected float radiusSq;
public AEColliderSphere( AEGameObject gameObject, float radius) {
super( gameObject);
setRadius( radius);
}
public void setRadius( float radius) {
t... | 1,236 | 0.725728 | 0.725728 | 44 | 27.09091 | 24.067913 | 81 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.204545 | false | false | 5 |
7c50c332248a277ba8d69da7d6107cc6631a346c | 15,212,774,170,023 | 4917f9ac39e883d3b10a66a090c05f8be22eb4e6 | /modelo/DAOConexion.java | 31b23ade3092339525ea8fff2adaa92c052967ac | [] | no_license | chuy9920/PracticaSuperD | https://github.com/chuy9920/PracticaSuperD | 3e4d57293d016f8b05366d8e72ce5f9ea15400de | 1f09c8188a26c995975455d02a67e3329c9819e9 | refs/heads/master | 2020-03-28T17:42:01.746000 | 2018-09-14T16:42:32 | 2018-09-14T16:42:32 | 148,814,787 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package modelo;
import java.sql.Connection;
import java.sql.DriverManager;
public class DAOConexion {
private String servidor,usuario,contrasena,puerto,base_datos;
private Connection conexion;
public DAOConexion(){
this.servidor="192.168.0.4";// localhost
this.usuario="postgres";
this.contra... | UTF-8 | Java | 1,064 | java | DAOConexion.java | Java | [
{
"context": "xion;\r\n\r\n\tpublic DAOConexion(){\r\n\t\tthis.servidor=\"192.168.0.4\";// localhost\r\n\t\tthis.usuario=\"postgres\";\r\n\t\tthis",
"end": 263,
"score": 0.9997490048408508,
"start": 252,
"tag": "IP_ADDRESS",
"value": "192.168.0.4"
},
{
"context": "vidor=\"192.168.0.4... | null | [] | package modelo;
import java.sql.Connection;
import java.sql.DriverManager;
public class DAOConexion {
private String servidor,usuario,contrasena,puerto,base_datos;
private Connection conexion;
public DAOConexion(){
this.servidor="192.168.0.4";// localhost
this.usuario="postgres";
this.contra... | 1,064 | 0.679511 | 0.668233 | 45 | 21.644444 | 21.417704 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.066667 | false | false | 5 |
bbc8f9dbae669838c6ebde7cb22c507b793b8cad | 31,619,549,269,698 | 7773ea6f465ffecfd4f9821aad56ee1eab90d97a | /platform/core-api/src/com/intellij/model/SingleResultReference.java | e97d4fb7c5caefdb5b050f434427b0405704a21c | [
"Apache-2.0"
] | permissive | aghasyedbilal/intellij-community | https://github.com/aghasyedbilal/intellij-community | 5fa14a8bb62a037c0d2764fb172e8109a3db471f | fa602b2874ea4eb59442f9937b952dcb55910b6e | refs/heads/master | 2023-04-10T20:55:27.988000 | 2020-05-03T22:00:26 | 2020-05-03T22:26:23 | 261,074,802 | 2 | 0 | Apache-2.0 | true | 2020-05-04T03:48:36 | 2020-05-04T03:48:35 | 2020-05-04T03:48:32 | 2020-05-03T23:01:03 | 3,386,775 | 0 | 0 | 0 | null | false | false | // Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.model;
import com.intellij.util.containers.ContainerUtil;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.u... | UTF-8 | Java | 948 | java | SingleResultReference.java | Java | [] | null | [] | // Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.model;
import com.intellij.util.containers.ContainerUtil;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import java.u... | 948 | 0.780591 | 0.770042 | 28 | 32.857143 | 39.749855 | 140 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.285714 | false | false | 5 |
4df18deaaa7d4c087e63dd0b175a121a6e62e230 | 19,318,762,917,835 | e6f53549cb7a2f6675051207b354c97d43b91c9b | /src/main/java/com/vtest/it/tskplatform/advisor/ProberMappingBackup.java | 61b3d219862f6df1439dcd7d0cde80f01ee48734 | [] | no_license | ShawnGW/tskplatform | https://github.com/ShawnGW/tskplatform | 64c6d154efaddc40550e0c76a9d514283aedee1b | d9f6e154cc4b058f20a9357efe586d8be994e41e | refs/heads/master | 2022-06-20T20:00:08.152000 | 2020-07-29T07:31:39 | 2020-07-29T07:31:39 | 191,083,799 | 0 | 1 | null | false | 2022-06-17T02:11:53 | 2019-06-10T02:37:37 | 2020-07-29T07:31:29 | 2022-06-17T02:11:53 | 240 | 0 | 0 | 2 | Java | false | false | package com.vtest.it.tskplatform.advisor;
import com.vtest.it.tskplatform.MappingParseTools.TskProberMappingParseCpAndWaferId;
import com.vtest.it.tskplatform.pojo.mes.CustomerCodeAndDeviceBean;
import com.vtest.it.tskplatform.service.mes.GetMesInfor;
import com.vtest.it.tskplatform.service.tools.impl.GetFileListNeedD... | UTF-8 | Java | 9,588 | java | ProberMappingBackup.java | Java | [] | null | [] | package com.vtest.it.tskplatform.advisor;
import com.vtest.it.tskplatform.MappingParseTools.TskProberMappingParseCpAndWaferId;
import com.vtest.it.tskplatform.pojo.mes.CustomerCodeAndDeviceBean;
import com.vtest.it.tskplatform.service.mes.GetMesInfor;
import com.vtest.it.tskplatform.service.tools.impl.GetFileListNeedD... | 9,588 | 0.530559 | 0.528265 | 198 | 47.424244 | 38.223713 | 273 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.585859 | false | false | 2 |
acde9303b71531d5693e366600e6e4cf048efc2c | 1,649,267,449,539 | b957631bf4effdafa9813e6cec9988f80dcaa232 | /org.knime.filehandling.core.testing/src/org/knime/filehandling/core/data/location/settingsmodel/SettingsModelFSLocationTest.java | 5ab4f36a069350b7526122004a19751a5e7d98c1 | [] | no_license | gcfei/knime-base | https://github.com/gcfei/knime-base | 6c59da2f878f5daa6e30941fbfdbce744e875b89 | 6d79b643e1a355c5b477ac333fcd823964f78536 | refs/heads/master | 2020-12-12T02:04:21.888000 | 2020-04-28T22:39:49 | 2020-04-28T22:42:05 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* ------------------------------------------------------------------------
*
* Copyright by KNIME AG, Zurich, Switzerland
* Website: http://www.knime.com; Email: contact@knime.com
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public Licens... | UTF-8 | Java | 11,366 | java | SettingsModelFSLocationTest.java | Java | [
{
"context": "tzerland\n * Website: http://www.knime.com; Email: contact@knime.com\n *\n * This program is free software; you can red",
"end": 188,
"score": 0.9999286532402039,
"start": 171,
"tag": "EMAIL",
"value": "contact@knime.com"
},
{
"context": "----------------\n *\n * Hist... | null | [] | /*
* ------------------------------------------------------------------------
*
* Copyright by KNIME AG, Zurich, Switzerland
* Website: http://www.knime.com; Email: <EMAIL>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, Version... | 11,340 | 0.771424 | 0.770368 | 279 | 39.73835 | 29.705719 | 107 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.709677 | false | false | 2 |
ecbb0403aab39ce6404459e806e679a5e9309e66 | 20,779,051,844,022 | 6a8f79a5ed443ddab3961ad1a908aa3e87a511ab | /src/main/java/cn/huaCloud/dao/CommunicationMapper.java | f776b344d9651b2cf8e6c3ca6f7c932e421a9300 | [] | no_license | YonJarLuo/HRMS | https://github.com/YonJarLuo/HRMS | 7c48efca0567eb6258c2256bfd0d0edca8d87f44 | afd8838c6daad80245909a9be48ba87f92be47bc | refs/heads/master | 2020-04-23T14:37:28.577000 | 2019-02-18T07:43:02 | 2019-02-18T07:43:02 | 171,237,186 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.huaCloud.dao;
import cn.huaCloud.domain.Communication;
public interface CommunicationMapper {
int deleteByPrimaryKey(String uId);
int insert(Communication record);
int insertSelective(Communication record);
Communication selectByPrimaryKey(String uId);
int updateByPrimaryKeySelectiv... | UTF-8 | Java | 397 | java | CommunicationMapper.java | Java | [] | null | [] | package cn.huaCloud.dao;
import cn.huaCloud.domain.Communication;
public interface CommunicationMapper {
int deleteByPrimaryKey(String uId);
int insert(Communication record);
int insertSelective(Communication record);
Communication selectByPrimaryKey(String uId);
int updateByPrimaryKeySelectiv... | 397 | 0.788413 | 0.788413 | 17 | 22.411764 | 22.034889 | 58 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.470588 | false | false | 2 |
bff3fe090fbe3dd9a1529ff7b4790b596beb0b77 | 11,055,245,828,716 | 4dfac51f6204632ed3b64b5004aa5dea98b1c977 | /java/flink/flow/src/main/java/com/iisquare/fs/flink/util/FlinkUtil.java | 52a14a26283c214f16c110c024e4beb5e4deff41 | [] | no_license | iisquare/etl-visual | https://github.com/iisquare/etl-visual | cd857d6c18e2efd97d294c8805640dfea9e9968f | 176a79c7ac97103846c50817985d4ac21246f3dd | refs/heads/master | 2021-01-18T15:58:27.077000 | 2020-12-18T03:56:58 | 2020-12-18T03:56:58 | 86,687,754 | 20 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.iisquare.fs.flink.util;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.iisquare.fs.base.core.util.DPUtil;
import org.apache.flink.api.common.typeinfo.TypeInformation;
import org.apache.flink.api.common.typeinfo.Types;
import org.apache.flink.api.java.typeutils.RowTypeInfo;
import org.apa... | UTF-8 | Java | 6,425 | java | FlinkUtil.java | Java | [] | null | [] | package com.iisquare.fs.flink.util;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.iisquare.fs.base.core.util.DPUtil;
import org.apache.flink.api.common.typeinfo.TypeInformation;
import org.apache.flink.api.common.typeinfo.Types;
import org.apache.flink.api.java.typeutils.RowTypeInfo;
import org.apa... | 6,425 | 0.611206 | 0.610739 | 151 | 41.549667 | 25.68136 | 132 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.331126 | false | false | 2 |
8ed6d775a6dd13299a412dd952ad09e073fa33eb | 26,645,977,160,915 | 0671b70612c7dbcaf6d67fad8969fbf1d0044d3c | /UserEvents.java | 03cfb326f1e480d2d4ca3e8d95a5fb830df3d31c | [] | no_license | klasbook/Facecalender | https://github.com/klasbook/Facecalender | ee04860c0da51b48c9635bf3149d1de082aea204 | 7399e304cbda0113e146254e6c723ca89ad9dc53 | refs/heads/master | 2021-01-19T12:04:04.415000 | 2016-09-23T08:57:49 | 2016-09-23T08:57:49 | 69,001,284 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.Properties;
import javax.annotation.ManagedBean;
import javax.inject.Named;
@ManagedBean
@Named
public class UserEvents {
private int userEventId;
private ... | ISO-8859-1 | Java | 2,030 | java | UserEvents.java | Java | [
{
"context": "er.put(\"user\", \"klas\");\r\n\t\t\tuser.put(\"password\", \"klas\");\r\n\t\t\r\n\t\t\tConnection conn = DriverManager.getCon",
"end": 1133,
"score": 0.9993953704833984,
"start": 1129,
"tag": "PASSWORD",
"value": "klas"
}
] | null | [] |
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.Properties;
import javax.annotation.ManagedBean;
import javax.inject.Named;
@ManagedBean
@Named
public class UserEvents {
private int userEventId;
private ... | 2,036 | 0.63919 | 0.633268 | 92 | 19.97826 | 18.687927 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.25 | false | false | 2 |
93426125cd42df8741c9c402140218a530ea5cb4 | 7,215,545,100,510 | 18bfd4093b5278e744c8a5c8bb53aeff8f431dc5 | /src/main/java/fr/esgi/sample/ControllerPrincipal.java | 80f250ac9d0a3658756536d901bb420610049ac5 | [] | no_license | lcolat/ClaimsoftJavaClient | https://github.com/lcolat/ClaimsoftJavaClient | b5a46d4771cee20b538fb970c28fbb4cb6123b1c | 47003a5c37c1221b28c68970c14a33672e285174 | refs/heads/master | 2018-10-21T15:40:02.677000 | 2018-09-07T09:34:52 | 2018-09-07T09:34:52 | 139,357,823 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package fr.esgi.sample;
import fr.esgi.utils.*;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import fr.esgi.global.Token;
import javafx.fxml.FXMLLoader;
import javafx.scene.control.*;
import javafx.scene.image.ImageView;
import javafx.scene.layout.Pane;
import fr.esgi.annotation.*;
import javafx.stage.Fil... | UTF-8 | Java | 4,155 | java | ControllerPrincipal.java | Java | [] | null | [] | package fr.esgi.sample;
import fr.esgi.utils.*;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import fr.esgi.global.Token;
import javafx.fxml.FXMLLoader;
import javafx.scene.control.*;
import javafx.scene.image.ImageView;
import javafx.scene.layout.Pane;
import fr.esgi.annotation.*;
import javafx.stage.Fil... | 4,155 | 0.603369 | 0.602166 | 162 | 24.648148 | 22.05002 | 90 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.401235 | false | false | 2 |
37f4c2fe4b525810081a06df2ae195d1ec329d2c | 7,215,545,098,802 | 4c3d2c35e525dc25513d127d0c9bf58d3a6b6101 | /martijnvdmaas/test/jsaf/test/scenarios/GameSteps.java | 61bdbacf90bd1236440fa54b98e73b30b2f1a2e2 | [] | no_license | tvdstorm/sea-of-saf | https://github.com/tvdstorm/sea-of-saf | 13e01b744b3f883c8020d33d78edb2e827447ba2 | 6e6bb3ae8c7014b0b8c2cc5fea5391126ed9b2f1 | refs/heads/master | 2021-01-10T19:16:15.261000 | 2014-05-06T11:30:14 | 2014-05-06T11:30:14 | 33,249,341 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package jsaf.test.scenarios;
import static org.hamcrest.CoreMatchers.anyOf;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.jbehave.util.JUnit4Ensure.ensureThat;
import java.io.IOException;
import jsaf.astelements.Bots;
import jsaf.constants.SAFConstants;
import jsaf.game.FightEngine;
import jsaf.... | UTF-8 | Java | 3,702 | java | GameSteps.java | Java | [] | null | [] | package jsaf.test.scenarios;
import static org.hamcrest.CoreMatchers.anyOf;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.jbehave.util.JUnit4Ensure.ensureThat;
import java.io.IOException;
import jsaf.astelements.Bots;
import jsaf.constants.SAFConstants;
import jsaf.game.FightEngine;
import jsaf.... | 3,702 | 0.758779 | 0.758509 | 136 | 26.220589 | 24.73111 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.301471 | false | false | 2 |
ab3a4a48d80ce86f2355cde72e76989940807399 | 9,311,489,149,697 | ef6a5a5f69d43983491eadcb8f006a1723594e14 | /.svn/pristine/ab/ab3a4a48d80ce86f2355cde72e76989940807399.svn-base | 5d2071172afedc21a61facd31f00fd4cd687e4a0 | [] | no_license | legiahoang/capstone | https://github.com/legiahoang/capstone | c6b5694f0abaa2c8db68b661484042adfb4d91cf | 67b30523d811280c0c311b61ab8a8d37111e7762 | refs/heads/master | 2020-12-25T18:51:52.279000 | 2017-06-11T10:33:08 | 2017-06-11T10:33:08 | 93,997,372 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package vn.co.cex.bean.usersAccount;
import java.util.Map;
import javax.annotation.PostConstruct;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ManagedProperty;
import javax.faces.bean.ViewScoped;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
import java... | UTF-8 | Java | 3,708 | ab3a4a48d80ce86f2355cde72e76989940807399.svn-base | Java | [] | null | [] | package vn.co.cex.bean.usersAccount;
import java.util.Map;
import javax.annotation.PostConstruct;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ManagedProperty;
import javax.faces.bean.ViewScoped;
import javax.faces.context.ExternalContext;
import javax.faces.context.FacesContext;
import java... | 3,708 | 0.716289 | 0.71575 | 144 | 23.75 | 20.717512 | 81 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.6875 | false | false | 2 | |
83c2f369e11f0aeccc0d119ef1b9bc5406e7e49b | 14,972,256,045,964 | d4bad68b30cbd2e39653bb59edf643f9e0af5a0d | /src/main/java/com/pythe/pojo/TblEvaluationRecord.java | df8a0813024bf5ee9e834a0be0e8f8ea6d2ae748 | [] | no_license | yangnianen/pythe-rest | https://github.com/yangnianen/pythe-rest | 871a92abdf271758e4b215ca0e2a2cb4ac1bbe7f | 9a3526c48934f4b8694f53f50fdef58e159a9862 | refs/heads/master | 2018-12-27T01:51:10.491000 | 2018-12-26T10:57:56 | 2018-12-26T10:57:56 | 117,040,575 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.pythe.pojo;
public class TblEvaluationRecord {
private Long id;
private Long studentid;
private String evaluationEssaysRecord;
private Integer recordQuantity;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
... | UTF-8 | Java | 981 | java | TblEvaluationRecord.java | Java | [] | null | [] | package com.pythe.pojo;
public class TblEvaluationRecord {
private Long id;
private Long studentid;
private String evaluationEssaysRecord;
private Integer recordQuantity;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
... | 981 | 0.643221 | 0.643221 | 43 | 20.860466 | 23.375181 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.302326 | false | false | 2 |
24088275433ac9b4443bc56d0c280db8bbd7fb4f | 14,972,256,044,173 | 829a12ebdd12702866bbdc9b239fa0eb8d2e07e3 | /src/com/unbosque/mbController/ParametroManagedBean.java | d1a3b8c85a47a02a91bdb726b146c76084f96c39 | [] | no_license | gulmi123/proyecto | https://github.com/gulmi123/proyecto | e240700f8dca82268ecc24ce379a6a3009f53bdf | 83b3a1042454c295656f6f9a71dc5b794f024ec7 | refs/heads/master | 2021-01-20T22:44:29.044000 | 2015-05-14T05:07:04 | 2015-05-14T05:07:04 | 34,773,092 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.unbosque.mbController;
import java.io.IOException;
import java.io.Serializable;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;
import javax.faces.application.Fa... | UTF-8 | Java | 2,578 | java | ParametroManagedBean.java | Java | [] | null | [] | package com.unbosque.mbController;
import java.io.IOException;
import java.io.Serializable;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;
import javax.faces.application.Fa... | 2,578 | 0.711016 | 0.704034 | 146 | 15.643836 | 18.86569 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.863014 | false | false | 2 |
ec300927c6a73c8e124c53efafc26d6d59452ff1 | 32,770,600,495,790 | 8d31a45f1cb6e7ae17483d5f297054e392e00f9b | /Services/src/main/java/com/kati/routes/CustomerRoutes.java | 07cec02babf3feef4ab99f38d4de1ecc6ee95898 | [] | no_license | katalinkovacs/CamelSpringboot | https://github.com/katalinkovacs/CamelSpringboot | 7429fbf75c084feb20bfaa6a62dcc783b3b1095a | b45c8aac565df87da1ef4a6b42e6ff326bbc852f | refs/heads/master | 2021-04-03T02:30:43.655000 | 2018-03-15T01:52:48 | 2018-03-15T01:52:48 | 124,963,757 | 0 | 0 | null | false | 2018-03-15T01:52:49 | 2018-03-12T23:23:13 | 2018-03-13T22:18:35 | 2018-03-15T01:52:48 | 35 | 0 | 0 | 0 | Java | false | null | package com.kati.routes;
import com.kati.beans.Customer1;
import com.kati.beans.Customer2;
import com.kati.beans.MyBeanie;
import com.kati.beans.TransformCustomerProcessor;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.compone... | UTF-8 | Java | 2,732 | java | CustomerRoutes.java | Java | [] | null | [] | package com.kati.routes;
import com.kati.beans.Customer1;
import com.kati.beans.Customer2;
import com.kati.beans.MyBeanie;
import com.kati.beans.TransformCustomerProcessor;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.compone... | 2,732 | 0.624451 | 0.61896 | 84 | 31.523809 | 29.286547 | 135 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.309524 | false | false | 2 |
93fa17acbacaa3d505658ae7d0a2d18f8f99fab1 | 16,655,883,176,632 | 44beca6ef61f9497473750757871d4068283bda8 | /AndroidWebView/application/src/main/java/com/example/jahawkins/webviewspike/WebView.java | b4b1b5f069d1d3938fab85cfac9b96f00becc3a3 | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | johfisher/BlackBerry-Dynamics-Android-Samples | https://github.com/johfisher/BlackBerry-Dynamics-Android-Samples | ee5979ea8712e0c042241ef5f4d04263ce0c5755 | e23247572f0f29759188b1f63862bd857796ec4c | refs/heads/master | 2021-01-15T03:41:58.164000 | 2020-02-12T14:55:13 | 2020-02-12T14:55:13 | 242,866,944 | 0 | 0 | null | true | 2020-02-24T23:34:48 | 2020-02-24T23:34:48 | 2020-02-12T14:55:30 | 2020-02-12T14:55:27 | 18,550 | 0 | 0 | 0 | null | false | false | /* Copyright (c) 2018 BlackBerry Ltd.
*
* 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... | UTF-8 | Java | 5,151 | java | WebView.java | Java | [] | null | [] | /* Copyright (c) 2018 BlackBerry Ltd.
*
* 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... | 5,151 | 0.631528 | 0.629587 | 151 | 33.112583 | 25.654491 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.615894 | false | false | 2 |
3df7a34c2c2bee875c8b30faba807f9de1bf4877 | 3,564,822,876,638 | 372dc53a102d8852689832e5646deacbdcb1bdcc | /common-base/src/main/java/com/ysxsoft/common_base/umeng/login/LoginHelper.java | 736a87cae07402c54c757f514c265fe20a829b49 | [] | no_license | huguangcai/User | https://github.com/huguangcai/User | 146ef36ab042df9bc432642debf2ca398eacbf04 | 4db8abaad0160e238271d6ecad7cb3dff31bc493 | refs/heads/master | 2020-09-27T09:32:39.381000 | 2019-12-26T03:45:22 | 2019-12-26T03:45:22 | 226,485,781 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ysxsoft.common_base.umeng.login;
import android.app.Activity;
import android.content.Context;
import android.util.Log;
import android.widget.Toast;
import com.google.gson.Gson;
import com.umeng.commonsdk.statistics.common.DeviceConfig;
import com.umeng.socialize.UMAuthListener;
import com.umeng.socialize.... | UTF-8 | Java | 9,227 | java | LoginHelper.java | Java | [
{
"context": "LogUtils;\n\nimport java.util.Map;\n\n/**\n * create by Sincerly on 2019/2/20 0020\n **/\npublic class LoginHelper",
"end": 471,
"score": 0.6244304180145264,
"start": 465,
"tag": "NAME",
"value": "Sincer"
},
{
"context": "s;\n\nimport java.util.Map;\n\n/**\n * create by... | null | [] | package com.ysxsoft.common_base.umeng.login;
import android.app.Activity;
import android.content.Context;
import android.util.Log;
import android.widget.Toast;
import com.google.gson.Gson;
import com.umeng.commonsdk.statistics.common.DeviceConfig;
import com.umeng.socialize.UMAuthListener;
import com.umeng.socialize.... | 9,227 | 0.567362 | 0.513048 | 203 | 38.453201 | 25.489523 | 163 | false | false | 0 | 0 | 0 | 0 | 76 | 0.037957 | 0.399015 | false | false | 2 |
073de80ca1c431932d5c6ffee477812326f1611e | 32,134,945,337,450 | bb2e1c1161e1ee23aee050eb9d66f0327c0bb6a5 | /app/src/main/java/com/example/user/austgroove/StudyMaterialDisplay.java | b9afb5c333e2e5ff606456b5b1dd0ee0578f4e92 | [] | no_license | TashfikS/AUST_Groove_SD | https://github.com/TashfikS/AUST_Groove_SD | 0d75d05815f881e7aeec68b659a421b8b437a560 | bc33cdd67fd983b633870cd2d4269b461e4119b1 | refs/heads/master | 2020-12-20T17:29:11.314000 | 2020-01-24T21:07:42 | 2020-01-24T21:07:42 | 236,155,030 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.user.austgroove;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class StudyMaterialDisplay extends AppCompatActivity {
private WebView materialDisplayView;
... | UTF-8 | Java | 4,290 | java | StudyMaterialDisplay.java | Java | [
{
"context": "1hzOPko7n_YNxZm1mBFsroFNbt4uIrt5l?fbclid=IwAR2w8E_XCukmdh_eBKgwmjX6-n8vfHDdp4cYI13jmeCeDpszlodCqnnD4I8\");\n webSettings = materialDisplayView.",
"end": 3573,
"score": 0.9294599294662476,
"start": 3521,
"tag": "KEY",
"value": "XCukmdh_eBKgwmjX6-n8vfHDdp4cYI13jmeCeDps... | null | [] | package com.example.user.austgroove;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class StudyMaterialDisplay extends AppCompatActivity {
private WebView materialDisplayView;
... | 4,187 | 0.694406 | 0.662937 | 114 | 36.63158 | 44.686485 | 185 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.464912 | false | false | 2 |
a4fae9b7bbf4181619f7debf36c84baf20424ea9 | 15,685,220,602,115 | fe14fc541bb7f8a4c1296d076bfd3d5599c7cf97 | /Server/server/ServerConnection.java | afb95dfdedf254326fac6c4ffc6b2c660120943d | [] | no_license | Fellesprosjekt-2013-G29/Fellesprosjekt | https://github.com/Fellesprosjekt-2013-G29/Fellesprosjekt | 33bd91fe53adac8c437bc212b771dbc9c94c9334 | b9e4efcb11b59d5ec21ff34d69484c574b3902b6 | refs/heads/master | 2016-08-12T23:16:34.732000 | 2013-04-23T11:26:55 | 2013-04-23T11:26:55 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package server;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.ArrayList;
import javax.net.ssl.SSLServerSocket;
import javax.net.ssl.SSLServerSocketFactory;
import javax.net.ssl.SSLSocket;
import structs.Request;
import structs.Response;
/**
* Serv... | ISO-8859-15 | Java | 1,340 | java | ServerConnection.java | Java | [
{
"context": " connections and starting sessions.\n * \n * @author Tor Håkon Bonsaksen\n *\n */\npublic class ServerConnection extends Thre",
"end": 447,
"score": 0.9997563362121582,
"start": 428,
"tag": "NAME",
"value": "Tor Håkon Bonsaksen"
}
] | null | [] | package server;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.util.ArrayList;
import javax.net.ssl.SSLServerSocket;
import javax.net.ssl.SSLServerSocketFactory;
import javax.net.ssl.SSLSocket;
import structs.Request;
import structs.Response;
/**
* Serv... | 1,326 | 0.716953 | 0.713966 | 53 | 24.264151 | 27.772085 | 112 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.301887 | false | false | 2 |
cdbef984dd0d99c5d9168660fdeba8ae588c500b | 17,617,955,878,296 | a2f7edcc5a8a2cd186a489961d6129589133b875 | /com/miku/dao/sell/ClientDao.java | 3230ed1f504de1d38bd5360ebf05e8101b5bcaf5 | [] | no_license | Utopiamiku/stock | https://github.com/Utopiamiku/stock | 85e6981599baa9eb5a1f5f687e5a6ecd1f29e57b | 2a65f9fa63adb1ea9995bb7b0f3f4e731546c478 | refs/heads/master | 2022-12-07T07:43:05.678000 | 2020-09-04T03:17:47 | 2020-09-04T03:17:47 | 292,738,953 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.miku.dao.sell;
import com.miku.dao.BaseDao;
import com.miku.utils.SplitePage;
import com.miku.vo.ClientInfo;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
/**
* @author Utopiamiku
* @date 2020/8/11 9:43
* @File ClientDao.py
*/
pu... | UTF-8 | Java | 3,632 | java | ClientDao.java | Java | [
{
"context": "ltSet;\nimport java.util.ArrayList;\n\n/**\n * @author Utopiamiku\n * @date 2020/8/11 9:43\n * @File ClientDao.py\n */",
"end": 267,
"score": 0.9995275735855103,
"start": 257,
"tag": "USERNAME",
"value": "Utopiamiku"
}
] | null | [] | package com.miku.dao.sell;
import com.miku.dao.BaseDao;
import com.miku.utils.SplitePage;
import com.miku.vo.ClientInfo;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.util.ArrayList;
/**
* @author Utopiamiku
* @date 2020/8/11 9:43
* @File ClientDao.py
*/
pu... | 3,632 | 0.566404 | 0.562746 | 103 | 33.504856 | 41.791176 | 229 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.650485 | false | false | 2 |
88beac75833112df37b5fe7883f617bf39089785 | 28,595,892,291,565 | 630b428a92a17104442cf72d44ec32bb31b79ad6 | /craftr-ui/src/main/java/com/energyxxer/craftr/ui/styledcomponents/StyledIcon.java | 3faef788af1d21d57880215819ca644d8ab5ed98 | [] | no_license | Energyxxer/Craftr | https://github.com/Energyxxer/Craftr | d6e70c2215e4ad61c311cff8e092f72ce51cf6a5 | 78bd930ff5e47fdb8e1fd4bb4e0880494172aa8f | refs/heads/master | 2021-07-11T21:59:12.853000 | 2018-10-24T18:26:46 | 2018-10-24T18:26:46 | 68,657,345 | 5 | 1 | null | false | 2017-07-24T21:44:47 | 2016-09-20T00:15:22 | 2017-07-24T21:16:41 | 2017-07-24T21:44:47 | 5,642 | 4 | 2 | 0 | Java | null | null | package com.energyxxer.craftr.ui.styledcomponents;
import com.energyxxer.craftr.global.Commons;
import com.energyxxer.craftr.ui.theme.change.ThemeListenerManager;
import com.energyxxer.xswing.XIcon;
import java.awt.image.BufferedImage;
/**
* Created by User on 2/11/2017.
*/
public class StyledIcon extends XIcon {
... | UTF-8 | Java | 892 | java | StyledIcon.java | Java | [] | null | [] | package com.energyxxer.craftr.ui.styledcomponents;
import com.energyxxer.craftr.global.Commons;
import com.energyxxer.craftr.ui.theme.change.ThemeListenerManager;
import com.energyxxer.xswing.XIcon;
import java.awt.image.BufferedImage;
/**
* Created by User on 2/11/2017.
*/
public class StyledIcon extends XIcon {
... | 892 | 0.642377 | 0.630045 | 31 | 27.774193 | 26.686604 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.612903 | false | false | 2 |
cd65c9ec15b0fb4e7899c4a5058f96a08b31c35c | 23,536,420,824,008 | 9bad0f4fea01b565c024015d1379277b62bfd607 | /src/main/java/com/fulmicoton/collodion/processors/tokenpattern/ast/StarPatternAST.java | 20211012e9f40e2312b79d2f391ab1c372174dbd | [] | no_license | fulmicoton/collodion | https://github.com/fulmicoton/collodion | ced00cd957a78b345b5de78245ca404172511a5d | 28fae59e8a2639da4ca6162ff26f2dbba7e4c9b3 | refs/heads/master | 2021-01-10T11:09:46.147000 | 2016-04-08T07:11:53 | 2016-04-08T07:11:53 | 54,007,243 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.fulmicoton.collodion.processors.tokenpattern.ast;
import com.fulmicoton.collodion.processors.tokenpattern.nfa.State;
public class StarPatternAST extends UnaryPatternAST {
public StarPatternAST(final AST pattern) {
super(pattern);
}
public String toDebugString() {
return this.... | UTF-8 | Java | 601 | java | StarPatternAST.java | Java | [] | null | [] | package com.fulmicoton.collodion.processors.tokenpattern.ast;
import com.fulmicoton.collodion.processors.tokenpattern.nfa.State;
public class StarPatternAST extends UnaryPatternAST {
public StarPatternAST(final AST pattern) {
super(pattern);
}
public String toDebugString() {
return this.... | 601 | 0.712146 | 0.712146 | 21 | 27.619047 | 27.019352 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.428571 | false | false | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.