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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
16bd6a2251ea133481d3a3b2b04518f574e5029a | 15,367,392,994,876 | ca58fcda3e969c2b2965611ac7efe4fec2f6271b | /era-education/src/main/java/com/era/education/dao/JobDAO.java | 8c6e4efac9a3df2c2125e25be241ba734e0d7b58 | [] | no_license | ningxu777/era | https://github.com/ningxu777/era | 89ca3306cbf4f1ac6d3ae088190fc51862aa6a2b | a7e9112d2f41d33ebe00f182531cd3e79513dd28 | refs/heads/master | 2018-01-10T09:38:05.002000 | 2018-01-05T02:40:37 | 2018-01-05T02:40:37 | 50,338,247 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.era.education.dao;
import com.era.education.model.Job;
import org.springframework.stereotype.Component;
import java.util.List;
@Component
public interface JobDAO {
int insert(Job job);
//获取科目相关职位
List<Job> getListByCL1(Integer courseL1Id);
}
| UTF-8 | Java | 281 | java | JobDAO.java | Java | [] | null | [] | package com.era.education.dao;
import com.era.education.model.Job;
import org.springframework.stereotype.Component;
import java.util.List;
@Component
public interface JobDAO {
int insert(Job job);
//获取科目相关职位
List<Job> getListByCL1(Integer courseL1Id);
}
| 281 | 0.769811 | 0.762264 | 16 | 15.5625 | 16.324709 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6875 | false | false | 9 |
340bfa77fa687090227c25fe14d44e91f1cc1800 | 17,231,408,802,124 | 1ed127239aa74ba3445ef3248bb1c5ed80291789 | /DList.java | 4bb2da85f840b516895d302a6650b966838f94e7 | [] | no_license | XiaojunXie/CPSC319 | https://github.com/XiaojunXie/CPSC319 | 92cf21b4ec41e7bc65fcee66b9d55a4e656f1e62 | e99f491d8c4fe47677104aaee7a8050bd608fab6 | refs/heads/master | 2021-01-01T04:14:38.979000 | 2017-07-16T03:18:19 | 2017-07-16T03:18:19 | 97,054,380 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class DList<E> implements myList<E> {
// Double Linked List
public class DNode {
public E element;
DNode prev, next;
public DNode(DNode p, E e, DNode n) {
prev = p;
element = e;
next = n;
}
}
public DNode sentinal;
public int size;
public DList() {
size = 0;
sentinal = new DNode(thi... | UTF-8 | Java | 1,598 | java | DList.java | Java | [] | null | [] | public class DList<E> implements myList<E> {
// Double Linked List
public class DNode {
public E element;
DNode prev, next;
public DNode(DNode p, E e, DNode n) {
prev = p;
element = e;
next = n;
}
}
public DNode sentinal;
public int size;
public DList() {
size = 0;
sentinal = new DNode(thi... | 1,598 | 0.602003 | 0.598248 | 94 | 16.010639 | 13.642467 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.180851 | false | false | 9 |
ba2ad592ff8b0186c940c140bf80cac05878f96e | 11,355,893,543,623 | 27bbcb271c7b143516301893b0217e20e14f6968 | /src/main/java/mod/morefovsettings/MoreFOVSettingsConfig.java | cd1c0d84843eacb6dfd778f8fd8b9fedbad14425 | [
"MIT"
] | permissive | MrHellsing/MoreFOVSettings | https://github.com/MrHellsing/MoreFOVSettings | fc52579039cb0d8ff5f31733b52126bc4c139030 | 5f8318473171350962157af79f8835e6797b20f0 | refs/heads/master | 2018-10-05T19:13:04.886000 | 2018-06-08T07:24:53 | 2018-06-08T07:24:53 | 136,579,593 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package mod.morefovsettings;
import net.minecraftforge.common.config.Config;
import net.minecraftforge.common.config.ConfigManager;
import net.minecraftforge.fml.client.event.ConfigChangedEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
@Config(modid ... | UTF-8 | Java | 1,691 | java | MoreFOVSettingsConfig.java | Java | [] | null | [] | package mod.morefovsettings;
import net.minecraftforge.common.config.Config;
import net.minecraftforge.common.config.ConfigManager;
import net.minecraftforge.fml.client.event.ConfigChangedEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
@Config(modid ... | 1,691 | 0.706682 | 0.701952 | 48 | 34.229168 | 30.014746 | 122 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.375 | false | false | 9 |
7a259fd89578a0e674a0de41b75781a60ccd1d6f | 11,355,893,542,463 | faa062ab6d888f17e9c4bb7a072dcee66898eafe | /app/src/main/java/com/example/application/scrollview/BmiModel.java | b157b3f94fdb91a13ab2ee94b4e82cf29deab21c | [] | no_license | DjaneBahar/scrollview | https://github.com/DjaneBahar/scrollview | 13e40b693c10512367b950172a19d733e3ea32b2 | dee18218ff77da55731d4de77c9f415bfb1e08d4 | refs/heads/master | 2023-02-01T07:13:31.460000 | 2020-12-03T20:14:50 | 2020-12-03T20:14:50 | 318,308,559 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.application.scrollview;
public class BmiModel {
}
| UTF-8 | Java | 73 | java | BmiModel.java | Java | [] | null | [] | package com.example.application.scrollview;
public class BmiModel {
}
| 73 | 0.780822 | 0.780822 | 6 | 11.166667 | 16.486526 | 43 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.166667 | false | false | 9 |
0aa330c9958c02266da6cc20ecb1d0fdfc62bb18 | 18,597,208,406,009 | 6253283b67c01a0d7395e38aeeea65e06f62504b | /decompile/app/HwDeskClock/src/main/java/ucd/ui/util/GenerateColor.java | 11597c457ad5bb642330ac00e67b331c8311e760 | [] | no_license | sufadi/decompile-hw | https://github.com/sufadi/decompile-hw | 2e0457a0a7ade103908a6a41757923a791248215 | 4c3efd95f3e997b44dd4ceec506de6164192eca3 | refs/heads/master | 2023-03-15T15:56:03.968000 | 2017-11-08T03:29:10 | 2017-11-08T03:29:10 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ucd.ui.util;
import android.graphics.Bitmap;
import android.support.v7.graphics.Palette;
import android.support.v7.graphics.Palette.PaletteAsyncListener;
public class GenerateColor {
/* renamed from: ucd.ui.util.GenerateColor$1 */
class AnonymousClass1 implements PaletteAsyncListener {
privat... | UTF-8 | Java | 1,431 | java | GenerateColor.java | Java | [] | null | [] | package ucd.ui.util;
import android.graphics.Bitmap;
import android.support.v7.graphics.Palette;
import android.support.v7.graphics.Palette.PaletteAsyncListener;
public class GenerateColor {
/* renamed from: ucd.ui.util.GenerateColor$1 */
class AnonymousClass1 implements PaletteAsyncListener {
privat... | 1,431 | 0.697414 | 0.655486 | 35 | 39.885715 | 46.423374 | 243 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.628571 | false | false | 9 |
4463fe716ddcebbe6c0c4bda666e490988814bf3 | 2,869,038,169,253 | a853face61af1a6aaf712c51cd86ee76efceafa1 | /LibHexDlms/src/main/java/cn/hexing/dlt645/GlobalCommunicators.java | d7dd831b289fe981df1fd7380fc263f522ff5459 | [] | no_license | huangninghao/HexingDemo | https://github.com/huangninghao/HexingDemo | bd5ad30fbf8d27ac1575034a6985d895ef82d3e8 | 8c1683b434815b0c56dfcf2d22cf2a7c4bfd028b | refs/heads/master | 2020-05-16T18:39:28.818000 | 2019-07-11T05:11:11 | 2019-07-11T05:11:11 | 183,235,191 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.hexing.dlt645;
import cn.hexing.dlt645.comm.C645Meter;
import cn.hexing.dlt645.comm.C645ZigbeeCollector;
import cn.hexing.dlt645.comm.C645ZigbeeMeter;
import cn.hexing.dlt645.comm.CHX645Meter;
import cn.hexing.dlt645.comm.ZigbeeCommandExecutor;
import cn.hexing.iComm.ICommunicator;
/**
* @author caibinglo... | UTF-8 | Java | 1,504 | java | GlobalCommunicators.java | Java | [
{
"context": "ort cn.hexing.iComm.ICommunicator;\n\n/**\n * @author caibinglong\n * date 2018/12/16.\n * desc desc\n",
"end": 322,
"score": 0.9993899464607239,
"start": 311,
"tag": "USERNAME",
"value": "caibinglong"
},
{
"context": "byte[] CollectorPasswordBytes = new... | null | [] | package cn.hexing.dlt645;
import cn.hexing.dlt645.comm.C645Meter;
import cn.hexing.dlt645.comm.C645ZigbeeCollector;
import cn.hexing.dlt645.comm.C645ZigbeeMeter;
import cn.hexing.dlt645.comm.CHX645Meter;
import cn.hexing.dlt645.comm.ZigbeeCommandExecutor;
import cn.hexing.iComm.ICommunicator;
/**
* @author caibinglo... | 1,510 | 0.75 | 0.65359 | 38 | 38.578949 | 30.012833 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.842105 | false | false | 9 |
49c902d879fea3e6819a2fb98fb49a27bdba29bc | 28,346,784,169,116 | 46786b383a16fff9c5d57b6b197b905e56a40dba | /xcloud/xcloud-driver-vmware/src/main/java/org/waddys/xcloud/vijava/vm/QueryVMConsole.java | 9ae7413f24f506aee1e235e8c0d7d883b7971799 | [] | no_license | yiguotang/x-cloud | https://github.com/yiguotang/x-cloud | feeb9c6288e01a45fca82648153238ed85d4069e | 2b255249961efb99d48a0557f7d74ce3586918fe | refs/heads/master | 2020-04-05T06:18:30.750000 | 2016-08-03T06:48:35 | 2016-08-03T06:48:35 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.waddys.xcloud.vijava.vm;
import org.waddys.xcloud.vijava.base.Answer;
import org.waddys.xcloud.vijava.base.Cmd;
public class QueryVMConsole {
public static class QueryVMConsoleCmd extends Cmd<QueryVMConsoleAnswer> {
private static final long serialVersionUID = -5513493795371953704L;
... | UTF-8 | Java | 2,233 | java | QueryVMConsole.java | Java | [] | null | [] | package org.waddys.xcloud.vijava.vm;
import org.waddys.xcloud.vijava.base.Answer;
import org.waddys.xcloud.vijava.base.Cmd;
public class QueryVMConsole {
public static class QueryVMConsoleCmd extends Cmd<QueryVMConsoleAnswer> {
private static final long serialVersionUID = -5513493795371953704L;
... | 2,233 | 0.619737 | 0.602535 | 105 | 20.038095 | 20.364733 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.371429 | false | false | 9 |
a980d3dd93f8fc4f23e6bbf0c988680542aa71dd | 2,491,081,049,052 | 17c146fc9a3a341dc5d38ce5e2b802701e853e2d | /src/basic/code/DynamicMethodDispatch.java | c06fa237666fc4b97fec1318497725f351bf773f | [] | no_license | sopheakpsp/java-beginner | https://github.com/sopheakpsp/java-beginner | 1b92c78035b6207524f175f38170c1af436b75e2 | adcd99e11c1842fb6fc1c71e082c334d57b34b88 | refs/heads/master | 2021-01-11T14:28:26.509000 | 2017-03-13T16:59:36 | 2017-03-13T16:59:36 | 81,436,698 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package basic.code;
class Sup{
void who(){
System.out.println("Who in Sup");
}
}
class Sup1 extends Sup{
void who(){
System.out.println("Who in Sup1");
}
}
class Sup2 extends Sup{
void who(){
System.out.println("Who in Sup2");
}
}
public class DynamicMethodDispatch {
public static void main(String[] a... | UTF-8 | Java | 588 | java | DynamicMethodDispatch.java | Java | [] | null | [] | package basic.code;
class Sup{
void who(){
System.out.println("Who in Sup");
}
}
class Sup1 extends Sup{
void who(){
System.out.println("Who in Sup1");
}
}
class Sup2 extends Sup{
void who(){
System.out.println("Who in Sup2");
}
}
public class DynamicMethodDispatch {
public static void main(String[] a... | 588 | 0.630952 | 0.610544 | 40 | 13.7 | 14.146024 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.375 | false | false | 9 |
417c7384f29b98704392c90342504c093014ebfd | 18,459,769,453,534 | 9c8fafeccb6a203d61fa50524ff9315d667ee77b | /src/main/java/org/muzir/codechef/practice/beginner/TRISQ.java | b23ded53f1730d71c9302710f4c6914793f20059 | [] | no_license | muzir/codechef | https://github.com/muzir/codechef | 0b6c98a625d932eb5761ed26e5815179feb100e4 | ad1a205cbbea38ca2d8c0e1631eca6746f7c2e22 | refs/heads/master | 2023-06-08T20:18:35.010000 | 2023-05-23T20:46:48 | 2023-05-23T20:46:48 | 23,369,706 | 0 | 1 | null | false | 2023-05-23T20:46:49 | 2014-08-26T23:03:20 | 2023-04-10T18:43:43 | 2023-05-23T20:46:48 | 5,430 | 0 | 0 | 1 | Java | false | false | package org.muzir.codechef.practice.beginner;
import java.util.Scanner;
/**
* @author erhun.baycelik
*
* https://www.codechef.com/problems/TRISQ <br>
* https://discuss.codechef.com/questions/64151/trisq-editorial
*/
public class TRISQ {
public static void main(String[] args) {
Scanner scanner = ne... | UTF-8 | Java | 566 | java | TRISQ.java | Java | [
{
"context": "r;\r\n\r\nimport java.util.Scanner;\r\n\r\n/**\r\n * @author erhun.baycelik\r\n *\r\n * https://www.codechef.com/problems/TRISQ <",
"end": 108,
"score": 0.9996261596679688,
"start": 94,
"tag": "NAME",
"value": "erhun.baycelik"
}
] | null | [] | package org.muzir.codechef.practice.beginner;
import java.util.Scanner;
/**
* @author erhun.baycelik
*
* https://www.codechef.com/problems/TRISQ <br>
* https://discuss.codechef.com/questions/64151/trisq-editorial
*/
public class TRISQ {
public static void main(String[] args) {
Scanner scanner = ne... | 566 | 0.625442 | 0.609541 | 23 | 22.608696 | 18.155701 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.521739 | false | false | 9 |
6655b8f7a3488b9553da60621b4c86a47177cca4 | 20,839,181,364,336 | a5b93075ae07da7909b7ecec496f6442616e7a50 | /aiqc-db/src/main/java/com/sinosoft/aiqc/db/domain/YyzjTScoreDetailExample.java | 469db7aee04ad5562d422b3da2a39db2a88ea0cc | [
"MIT",
"CC-BY-ND-4.0"
] | permissive | liyajie501/aiqc | https://github.com/liyajie501/aiqc | 82dee6784bff42656ff56488a5dd0219d240c554 | 1e6025854a630940c847998804a285f334744515 | refs/heads/master | 2022-10-13T05:59:07.203000 | 2019-07-12T09:09:15 | 2019-07-12T09:09:15 | 196,207,705 | 2 | 1 | MIT | false | 2022-10-04T23:53:05 | 2019-07-10T13:11:10 | 2022-09-02T06:06:29 | 2022-10-04T23:53:03 | 22,198 | 1 | 1 | 14 | Java | false | false | package com.sinosoft.aiqc.db.domain;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;
public class YyzjTScoreDetailExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table yyzj_t_score_detail
*
* @mbg.genera... | UTF-8 | Java | 45,633 | java | YyzjTScoreDetailExample.java | Java | [
{
"context": "@mbg.generated\n * @project https://github.com/itfsw/mybatis-generator-plugin\n */\n public YyzjT",
"end": 3126,
"score": 0.9995861053466797,
"start": 3121,
"tag": "USERNAME",
"value": "itfsw"
},
{
"context": "@mbg.generated\n * @project https://github.co... | null | [] | package com.sinosoft.aiqc.db.domain;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;
public class YyzjTScoreDetailExample {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database table yyzj_t_score_detail
*
* @mbg.genera... | 45,633 | 0.614665 | 0.613394 | 1,237 | 35.890865 | 31.659546 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.409054 | false | false | 9 |
9894503024a70c3e7967eadc87a230a001d36df8 | 19,645,180,452,130 | a878d26790220966f5d4c388a5805c7d3758faec | /user_center/src/main/java/com/loong/login/service/UserCenterService.java | e2dbff148c0dd5702e72f7d99d4ab64b2777c4d3 | [] | no_license | QianJiah/godModel | https://github.com/QianJiah/godModel | 6cc0b4e3eabd35b2103a64f4bd09ff06b04d9667 | 13e9f543d0e490a15101398edc6f6cfc8b0078e4 | refs/heads/master | 2020-08-30T23:21:31.883000 | 2019-11-23T08:19:02 | 2019-11-23T08:19:02 | 218,519,187 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.loong.login.service;
import com.loong.base.BaseResponse;
import com.loong.login.response.JiaYouUser;
import com.loong.login.response.LoginResult;
import com.loong.login.response.RegisterResult;
import java.util.Calendar;
import io.reactivex.Observable;
import retrofit2.Call;
import retrofit2.http.Field;
... | UTF-8 | Java | 1,425 | java | UserCenterService.java | Java | [
{
"context": "coded;\nimport retrofit2.http.POST;\n\n/**\n * author: Hao\n * date: 2019/10/10 10:54\n * description:\n */\npub",
"end": 405,
"score": 0.8235069513320923,
"start": 402,
"tag": "USERNAME",
"value": "Hao"
}
] | null | [] | package com.loong.login.service;
import com.loong.base.BaseResponse;
import com.loong.login.response.JiaYouUser;
import com.loong.login.response.LoginResult;
import com.loong.login.response.RegisterResult;
import java.util.Calendar;
import io.reactivex.Observable;
import retrofit2.Call;
import retrofit2.http.Field;
... | 1,425 | 0.624561 | 0.613333 | 44 | 31.386364 | 29.014273 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.454545 | false | false | 9 |
e74dc842551c52357b2924a84fbec2d3d938e9a6 | 32,126,355,416,132 | b66bdee811ed0eaea0b221fea851f59dd41e66ec | /src/com/grubhub/AppBaseLibrary/android/dataServices/net/b/a/aq.java | 1923627a589743c551ab9c3b944c498bf4f8a8a5 | [] | no_license | reverseengineeringer/com.grubhub.android | https://github.com/reverseengineeringer/com.grubhub.android | 3006a82613df5f0183e28c5e599ae5119f99d8da | 5f035a4c036c9793483d0f2350aec2997989f0bb | refs/heads/master | 2021-01-10T05:08:31.437000 | 2016-03-19T20:41:23 | 2016-03-19T20:41:23 | 54,286,207 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.grubhub.AppBaseLibrary.android.dataServices.net.b.a;
import android.content.Context;
import com.grubhub.AppBaseLibrary.android.dataServices.interfaces.favorites.GHSIFavoriteListDataModel;
public class aq
extends c<aq, ap, GHSIFavoriteListDataModel, Void>
{
protected String j;
public aq(Context pa... | UTF-8 | Java | 715 | java | aq.java | Java | [] | null | [] | package com.grubhub.AppBaseLibrary.android.dataServices.net.b.a;
import android.content.Context;
import com.grubhub.AppBaseLibrary.android.dataServices.interfaces.favorites.GHSIFavoriteListDataModel;
public class aq
extends c<aq, ap, GHSIFavoriteListDataModel, Void>
{
protected String j;
public aq(Context pa... | 715 | 0.690909 | 0.681119 | 37 | 18.351351 | 23.269533 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.351351 | false | false | 9 |
bf1fec6c1a4dab044a20580e03248a4520a7fd49 | 26,920,855,052,602 | a040cdbe3ebe131ed24dc3a5bb8bbb1d6276479d | /src/main/java/com/github/axet/torrent/rasterbar/peer_blocked_alert.java | 0111bfe7d42a5a4d250e6a22219dba91d4874f5a | [] | no_license | Vineg/torrent | https://github.com/Vineg/torrent | 6290e2c93344e53a1737e615adc78f139228e4cf | 8f3b35d0265752db5dba93cfecd6e39fa0ea6b4b | refs/heads/master | 2020-12-24T20:00:47.125000 | 2013-04-24T19:47:28 | 2013-04-24T19:47:28 | 10,890,274 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.github.axet.torrent.rasterbar;
import java.util.Arrays;
import java.util.List;
import com.sun.jna.Structure;
/**
* <i>native declaration : c/libtorrent.h:494</i><br>
* This file was autogenerated by <a href="http://jnaerator.googlecode.com/">JNAerator</a>,<br>
* a tool written by <a href="http://ochafik... | UTF-8 | Java | 1,260 | java | peer_blocked_alert.java | Java | [
{
"context": "* a tool written by <a href=\"http://ochafik.com/\">Olivier Chafik</a> that <a href=\"http://code.google.com/p/jnaera",
"end": 341,
"score": 0.9998762011528015,
"start": 327,
"tag": "NAME",
"value": "Olivier Chafik"
}
] | null | [] | package com.github.axet.torrent.rasterbar;
import java.util.Arrays;
import java.util.List;
import com.sun.jna.Structure;
/**
* <i>native declaration : c/libtorrent.h:494</i><br>
* This file was autogenerated by <a href="http://jnaerator.googlecode.com/">JNAerator</a>,<br>
* a tool written by <a href="http://ochafik... | 1,252 | 0.7 | 0.696032 | 35 | 35 | 45.991924 | 195 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.257143 | false | false | 9 |
07c115ff71baa9595865cb93d5e7136441aadfb8 | 25,933,012,580,282 | ad34d73acd87eb9f37965349bf62c0c521ee7396 | /src/main/java/com/lemonfish/service/EmailService.java | 03877ff44be7b88dbcaf13acd29432f8ade42892 | [] | no_license | Burning-Lu/Spb-Lemonc-Community | https://github.com/Burning-Lu/Spb-Lemonc-Community | d483e32fc2591ca67e25764ff01e7a55bb2a3e7e | 1df84e7e61bd3b7375ef005b5e6b11bbd1c2f715 | refs/heads/master | 2022-10-25T20:58:30.292000 | 2020-06-12T03:02:33 | 2020-06-12T03:02:33 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lemonfish.service;
import com.lemonfish.entity.Email;
import com.baomidou.mybatisplus.extension.service.IService;
import java.util.List;
/**
* <p>
* 服务类
* </p>
*
* @author LemonFish
* @since 2020-05-24
*/
public interface EmailService extends IService<Email> {
boolean sendEmail(Email... | UTF-8 | Java | 344 | java | EmailService.java | Java | [
{
"context": "st;\n\n/**\n * <p>\n * 服务类\n * </p>\n *\n * @author LemonFish\n * @since 2020-05-24\n */\npublic interface Email",
"end": 207,
"score": 0.9989755749702454,
"start": 198,
"tag": "USERNAME",
"value": "LemonFish"
}
] | null | [] | package com.lemonfish.service;
import com.lemonfish.entity.Email;
import com.baomidou.mybatisplus.extension.service.IService;
import java.util.List;
/**
* <p>
* 服务类
* </p>
*
* @author LemonFish
* @since 2020-05-24
*/
public interface EmailService extends IService<Email> {
boolean sendEmail(Email... | 344 | 0.697885 | 0.673716 | 20 | 15.55 | 18.067858 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.25 | false | false | 9 |
7b79248819574f032a80c5067247d4278c862427 | 24,283,745,126,566 | 75b4e504102b0856da514b934fabd066edc6ca79 | /src/main/java/com/me/decorator/HongQiGong.java | 31de9a758065a6499e15aa23fb66abcfce8db042 | [] | no_license | AidenLong/model_18_11 | https://github.com/AidenLong/model_18_11 | 2b77f193afcf6c7ee3a0b2ad31d229c84081fada | e44837a4d3f944d477226ef85a62b11c5bb801df | refs/heads/master | 2020-04-05T20:15:21.840000 | 2019-02-21T12:10:43 | 2019-02-21T12:10:43 | 157,171,771 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.me.decorator;
// 装饰者具体实现类(ConcreteDecorator)
public class HongQiGong extends Master {
public HongQiGong(Swordsman swordsman) {
super(swordsman);
}
public void teachAttackMagic() {
System.out.println("洪七公教授打狗棒法");
System.out.println("杨过使用打狗棒法");
}
public void a... | UTF-8 | Java | 454 | java | HongQiGong.java | Java | [] | null | [] | package com.me.decorator;
// 装饰者具体实现类(ConcreteDecorator)
public class HongQiGong extends Master {
public HongQiGong(Swordsman swordsman) {
super(swordsman);
}
public void teachAttackMagic() {
System.out.println("洪七公教授打狗棒法");
System.out.println("杨过使用打狗棒法");
}
public void a... | 454 | 0.64 | 0.64 | 19 | 20.052631 | 16.243132 | 44 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.315789 | false | false | 9 |
d1e98f816ba0e57f67a2db88d461375472c29b38 | 18,562,848,695,028 | e966877badaaf4be0e2ff23cec71f3f25e3cabae | /src/com/metoo/simple/service/SimpleThriftServerIO.java | 1019f21fcb7ef386430fd0c039088231b0561790 | [] | no_license | liuyijiang/thift_haporxy | https://github.com/liuyijiang/thift_haporxy | c6adb1ec1a1b8bfb42d5643e60985c19a2d94e4c | 5d27810077ef3a3ea7e67c731032ea544d0ea585 | refs/heads/master | 2021-01-22T18:07:19.790000 | 2013-09-03T01:48:02 | 2013-09-03T01:48:02 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.metoo.simple.service;
import org.apache.thrift.TProcessor;
import org.apache.thrift.protocol.TBinaryProtocol;
import org.apache.thrift.server.TServer;
import org.apache.thrift.server.TThreadPoolServer;
import org.apache.thrift.transport.TServerSocket;
import com.metoo.thift.bean.PartsService;
import com.m... | UTF-8 | Java | 1,526 | java | SimpleThriftServerIO.java | Java | [
{
"context": "的阻塞式IO 服务端 可以使用 SimpleThrifClient客户端 调用\n * @author Administrator\n *\n */\npublic class SimpleThriftServerIO {\n\n\t//定义",
"end": 432,
"score": 0.6880240440368652,
"start": 419,
"tag": "USERNAME",
"value": "Administrator"
}
] | null | [] | package com.metoo.simple.service;
import org.apache.thrift.TProcessor;
import org.apache.thrift.protocol.TBinaryProtocol;
import org.apache.thrift.server.TServer;
import org.apache.thrift.server.TThreadPoolServer;
import org.apache.thrift.transport.TServerSocket;
import com.metoo.thift.bean.PartsService;
import com.m... | 1,526 | 0.731098 | 0.728245 | 55 | 24.49091 | 22.212095 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.6 | false | false | 9 |
8588eedb4a0a56982ee87fa8bee51fff7caa7168 | 33,423,435,537,286 | 38d9575b1061af0dd30bf029d9674cbf730e5f40 | /app/src/main/java/com/example/capstonewallet/Views/Adapters/TransactionListAdapter.java | 1b994a9d98599ead394edb1294be615262814f5d | [] | no_license | samson247/EthWallet | https://github.com/samson247/EthWallet | c5dbd82b17f14e958afd2f1405282df459dc69fd | 8db4f0f09b9ca4b2d1a39ae8b73d49e8f3016325 | refs/heads/master | 2023-06-06T22:37:48.357000 | 2021-07-14T16:27:20 | 2021-07-14T16:27:20 | 326,710,866 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.capstonewallet.Views.Adapters;
import android.content.Context;
import android.content.Intent;
import android.graphics.drawable.Drawable;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import andr... | UTF-8 | Java | 5,135 | java | TransactionListAdapter.java | Java | [] | null | [] | package com.example.capstonewallet.Views.Adapters;
import android.content.Context;
import android.content.Intent;
import android.graphics.drawable.Drawable;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import andr... | 5,135 | 0.728335 | 0.727556 | 120 | 41.791668 | 30.974693 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.658333 | false | false | 9 |
5fdc90a428bc3750bb974cb302a6147fc221f9c2 | 206,158,496,194 | a5bf400916159b98c4e218885d63cc69cdf40d97 | /src/Models/Medicamento.java | fad6be7f4e46c2a001099ebd2d7cd4a2d94bb3d3 | [] | no_license | jonasdeyvid/sys-farmacia | https://github.com/jonasdeyvid/sys-farmacia | e7f126ca02e0c3c1519935c9b7e753a275e2173a | b9e21084b65f5564afe897c44354ad3f7ffc0671 | refs/heads/master | 2020-05-31T05:09:08.519000 | 2019-06-10T22:09:46 | 2019-06-10T22:09:46 | 190,113,796 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Models;
public class Medicamento {
private Integer codigo;
private String nome;
private String descricao;
private String laboratorio;
private Double preco;
private Integer quantidade;
public Medicamento() {
}
public Medicamento(Integer codigo, String nome, String descric... | UTF-8 | Java | 2,493 | java | Medicamento.java | Java | [] | null | [] | package Models;
public class Medicamento {
private Integer codigo;
private String nome;
private String descricao;
private String laboratorio;
private Double preco;
private Integer quantidade;
public Medicamento() {
}
public Medicamento(Integer codigo, String nome, String descric... | 2,493 | 0.572403 | 0.572403 | 124 | 19.104839 | 19.551758 | 125 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.322581 | false | false | 9 |
13f31e0576f7e6d1f6324a23f10cb515a6014dfa | 5,626,407,212,273 | ccc3268554528f5ed5cc119bbd88cfc45b55691d | /dist/gameserver/data/scripts/events/DefenseTowns/DefenseTowns.java | b073bc9285c9082c02c2b63839c98da13c44eeea | [] | no_license | trickititit/java-source | https://github.com/trickititit/java-source | 447ea16c2892377a4625f742118ebfd4e3116848 | 724453441846ce44e65372100a70770f21572837 | refs/heads/master | 2021-01-18T09:38:01.836000 | 2016-09-17T17:43:34 | 2016-09-17T17:43:34 | 68,445,261 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package events.DefenseTowns;
import java.util.ArrayList;
import java.util.Calendar;
import l2p.commons.util.Rnd;
import l2p.gameserver.Announcements;
import l2p.gameserver.Config;
import l2p.gameserver.ThreadPoolManager;
import l2p.gameserver.data.xml.holder.ResidenceHolder;
import l2p.gameserver.listener.actor.OnDea... | UTF-8 | Java | 29,478 | java | DefenseTowns.java | Java | [
{
"context": "\nimport org.slf4j.LoggerFactory;\n\n/**\n * @author : Ragnarok\n * @modification : 4ipolino\n * @transfer : STIGMA",
"end": 1029,
"score": 0.9998114705085754,
"start": 1021,
"tag": "NAME",
"value": "Ragnarok"
},
{
"context": "ncements.getInstance().announceToAll(\"Пред... | null | [] | package events.DefenseTowns;
import java.util.ArrayList;
import java.util.Calendar;
import l2p.commons.util.Rnd;
import l2p.gameserver.Announcements;
import l2p.gameserver.Config;
import l2p.gameserver.ThreadPoolManager;
import l2p.gameserver.data.xml.holder.ResidenceHolder;
import l2p.gameserver.listener.actor.OnDea... | 29,478 | 0.559748 | 0.471305 | 461 | 62.008678 | 42.989883 | 219 | true | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.624729 | false | false | 9 |
494bc4b926baeff5ce7b98be6e6773695f622bde | 25,297,357,394,063 | 9ef576f83c6df3591b899ed00fe27322a20d5eb7 | /JPrologCafe/PrologCafe/src/jp/ac/kobe_u/cs/prolog/builtin/PRED_$compiled_predicate_or_builtin_3.java | fb85bd289ca1d82fb8208bc983e18c3f383f6c8d | [] | no_license | opensim4opencog/PrologVirtualWorlds | https://github.com/opensim4opencog/PrologVirtualWorlds | fbe064a3eaef97724ad887c12c2775ddb3e1edf9 | a31b65b566e13a4aa9df3ae07d949e97321941e9 | refs/heads/master | 2021-01-10T05:57:44.190000 | 2008-09-28T18:22:57 | 2008-09-28T18:22:57 | 52,572,229 | 5 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package jp.ac.kobe_u.cs.prolog.builtin;
import jp.ac.kobe_u.cs.prolog.lang.*;
/*
This file is generated by Prolog Cafe.
PLEASE DO NOT EDIT!
*/
/**
<code>'$compiled_predicate_or_builtin'/3</code> defined in builtins.pl<br>
@author Mutsunori Banbara (banbara@kobe-u.ac.jp)
@author Naoyuki Tamura (tamura@kobe-u.ac.j... | UTF-8 | Java | 3,132 | java | PRED_$compiled_predicate_or_builtin_3.java | Java | [
{
"context": "ltin'/3</code> defined in builtins.pl<br>\n @author Mutsunori Banbara (banbara@kobe-u.ac.jp)\n @author Naoyuki Tamura (t",
"end": 253,
"score": 0.9998579621315002,
"start": 236,
"tag": "NAME",
"value": "Mutsunori Banbara"
},
{
"context": "ed in builtins.pl<br>\n @author... | null | [] | package jp.ac.kobe_u.cs.prolog.builtin;
import jp.ac.kobe_u.cs.prolog.lang.*;
/*
This file is generated by Prolog Cafe.
PLEASE DO NOT EDIT!
*/
/**
<code>'$compiled_predicate_or_builtin'/3</code> defined in builtins.pl<br>
@author <NAME> (<EMAIL>)
@author <NAME> (<EMAIL>)
@author <NAME> (<EMAIL>) for Object(s)
... | 3,057 | 0.616539 | 0.588123 | 94 | 32.319149 | 66.51783 | 436 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.93617 | false | false | 9 |
f4eb220787f0248b3832aedeeeb5c298ea3ca5f2 | 24,867,860,644,649 | 9f447126c843cf922df90bbb9903bf4860380d7a | /src/main/java/com/schedule/repository/VotingRepository.java | 7b547876d14a32fb7bc9976520b6cda2a815a03e | [] | no_license | evertondealmeida/schedule | https://github.com/evertondealmeida/schedule | 807badff06479138fdc941cd07a358bb22a4d71e | 749ed140fe1dc2e343a0b9a7a414c57f4ee76d52 | refs/heads/master | 2022-11-23T18:51:33.294000 | 2020-06-22T18:59:44 | 2020-06-22T18:59:44 | 274,123,648 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.schedule.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import com.schedule.model.Voting;
public interface VotingRepository extends JpaRepository<Voting, Long> {
@Que... | UTF-8 | Java | 569 | java | VotingRepository.java | Java | [] | null | [] | package com.schedule.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import com.schedule.model.Voting;
public interface VotingRepository extends JpaRepository<Voting, Long> {
@Que... | 569 | 0.796134 | 0.796134 | 14 | 39.642857 | 43.359966 | 142 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.785714 | false | false | 9 |
52f1065d7a76025474c974f61774584ab92c5166 | 29,308,856,848,727 | 0df6585b1a4645f6b63a08e66fefa51e840ed981 | /src/main/java/com/kodekonveyor/market/LogSeverityEnum.java | 15b25e8b670f3668ade619301d455f255b839a95 | [] | no_license | Meenal2020/TaskMarket | https://github.com/Meenal2020/TaskMarket | 5088bfda640e89ebd70718ffae4a862b129e10d0 | 40b6e4020bac64dcccf62e6357e3d1c156dda9f7 | refs/heads/master | 2022-11-20T09:40:39.039000 | 2020-01-27T12:33:05 | 2020-01-27T12:33:05 | 256,430,180 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.kodekonveyor.market;
public enum LogSeverityEnum {
DEBUG,
INFO,
WARNING,
ERROR
}
| UTF-8 | Java | 102 | java | LogSeverityEnum.java | Java | [] | null | [] | package com.kodekonveyor.market;
public enum LogSeverityEnum {
DEBUG,
INFO,
WARNING,
ERROR
}
| 102 | 0.72549 | 0.72549 | 8 | 11.75 | 11.310946 | 32 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 9 |
72ba6005dd40fcb51d0ba1a5850b47b94b074bf3 | 7,395,933,685,905 | cbf0256d3e896a13cd09ba854cf6835089ca9ebd | /Course/app/src/main/java/yalimov/course/service/NetService.java | d1bcab8eb495ed42c5a28fcf81891b0787b00fff | [] | no_license | tyalymov/Simple-android-spyware | https://github.com/tyalymov/Simple-android-spyware | 7c99df9d121ab9652118bd365e92f7542f1b7162 | b4d590d19e383a18b459dc834313bca8ec071ab5 | refs/heads/master | 2021-10-09T10:47:21.040000 | 2018-10-28T16:33:44 | 2018-10-28T16:33:44 | 163,200,381 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package yalimov.course.service;
import android.app.Service;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.IBinder;
import android.os.PowerManager.WakeLock;
import android.os.PowerManager;
import java.util... | UTF-8 | Java | 1,992 | java | NetService.java | Java | [] | null | [] | package yalimov.course.service;
import android.app.Service;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.IBinder;
import android.os.PowerManager.WakeLock;
import android.os.PowerManager;
import java.util... | 1,992 | 0.718373 | 0.717871 | 63 | 30.619047 | 25.683933 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 9 |
1662b437b4c853cf21185271452d4e484e14a060 | 11,819,750,046,249 | 3d6cb6fd5eaee4663dce89e87fc50e913eb05a21 | /src/dk/codemouse/RweGameEngine/GameLoop.java | 7a394878dd8a993b76770d2c2714792c2a941b75 | [] | no_license | RasmusWE/RweGameEngine | https://github.com/RasmusWE/RweGameEngine | 7b81cd16843eefb6ea20abb2e0e63dbe545a3f6f | c3221401b28969b46bbd2a4f526ee3ffa7c48e27 | refs/heads/master | 2021-05-20T09:37:25.427000 | 2021-04-09T12:52:37 | 2021-04-09T12:52:37 | 252,228,548 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package dk.codemouse.RweGameEngine;
import java.time.Duration;
import java.time.LocalTime;
public class GameLoop {
private int ticks, frames;
private final double MAX_DT = 1 / 60.0;
private GameEngine engine;
private Thread loopThread;
private volatile boolean running;
public GameLoop(GameE... | UTF-8 | Java | 2,178 | java | GameLoop.java | Java | [] | null | [] | package dk.codemouse.RweGameEngine;
import java.time.Duration;
import java.time.LocalTime;
public class GameLoop {
private int ticks, frames;
private final double MAX_DT = 1 / 60.0;
private GameEngine engine;
private Thread loopThread;
private volatile boolean running;
public GameLoop(GameE... | 2,178 | 0.612489 | 0.591827 | 105 | 18.742857 | 17.113085 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.523809 | false | false | 4 |
d9d77924bf40adf90115734d9a96228f1aa77db4 | 22,651,657,561,188 | c51a9fd9c95e5780887d048a90d1ca9b0a9fe732 | /src/ControlLayer/ContractInterface.java | 8c693f9e218426e218fb488a07e2910cc800172a | [] | no_license | Topki911/git_Project_2 | https://github.com/Topki911/git_Project_2 | 4cf8ca8356841befaf5314c207dcb7f4d9a48acd | 1cfd170b4b25686078636693b9d0fa769139affa | refs/heads/master | 2018-04-15T10:30:15.813000 | 2017-07-04T05:01:44 | 2017-07-04T05:01:44 | 90,459,389 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ControlLayer;
public interface ContractInterface {
public int insertContract();
public boolean openContract(int contractID);
public boolean openContractByTenantId(int tenantId);
}
| UTF-8 | Java | 207 | java | ContractInterface.java | Java | [] | null | [] | package ControlLayer;
public interface ContractInterface {
public int insertContract();
public boolean openContract(int contractID);
public boolean openContractByTenantId(int tenantId);
}
| 207 | 0.763285 | 0.763285 | 11 | 16.818182 | 19.775183 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.636364 | false | false | 4 |
e4f19928285ea59a1fe1aed5435a48a7d016b36e | 17,961,553,269,243 | 5bd296f03bfab875cab46db96706e3b7c2c7c652 | /src/main/java/tableviews/PropertiesTableView.java | 3ae4fc4756aac8324c247e76d14685441277e3f5 | [] | no_license | klekot/PoligonCommander | https://github.com/klekot/PoligonCommander | 639a73fd35b444864db6c4e7bcb756b386994522 | e1b12c7db45b36be0b63793282bec06f1c2042ff | refs/heads/master | 2016-04-30T16:32:37.307000 | 2016-01-16T05:53:07 | 2016-01-16T05:53:07 | 49,738,507 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package tableviews;
import javafx.beans.property.DoubleProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.SimpleDoubleProperty;
import javafx.beans.property.StringProperty;
/**
* Created by Igor Klekotnev on 22.12.2015.
*/
public class PropertiesTableView {
private final S... | UTF-8 | Java | 1,370 | java | PropertiesTableView.java | Java | [
{
"context": ".beans.property.StringProperty;\n\n/**\n * Created by Igor Klekotnev on 22.12.2015.\n */\npublic class PropertiesTableVi",
"end": 246,
"score": 0.999854564666748,
"start": 232,
"tag": "NAME",
"value": "Igor Klekotnev"
}
] | null | [] | package tableviews;
import javafx.beans.property.DoubleProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.SimpleDoubleProperty;
import javafx.beans.property.StringProperty;
/**
* Created by <NAME> on 22.12.2015.
*/
public class PropertiesTableView {
private final StringPro... | 1,362 | 0.678102 | 0.672263 | 57 | 23.017544 | 20.587418 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.385965 | false | false | 4 |
5fd4e495cc8c3b39bdb6859c86993f6ba2006b69 | 489,626,320,700 | 962bf4cefd0b3a63375302b9b04cfdf86eb628ec | /Platform/omqe/social/platform/actions/PostAnalyticsAction.java | baebedc7afe43b1a5aa61579571af651f56590b8 | [] | no_license | edwinpkuss/Automation | https://github.com/edwinpkuss/Automation | aa0fd44d619653845bc29722c92ad5bdb02a43cd | 88f194db72e17673bfc8679df71ed19c01be4ce4 | refs/heads/master | 2020-01-27T12:41:26.009000 | 2013-11-25T09:06:30 | 2013-11-25T09:06:30 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package omqe.social.platform.actions;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Random;
import omqe.social.platform.exceptions.PostTypeErrorException;
import omqe.social.util.TestUtil;
import org.apache.log4j.Logger;
import org.openqa.selenium.By;
import org.openq... | UTF-8 | Java | 14,420 | java | PostAnalyticsAction.java | Java | [] | null | [] | package omqe.social.platform.actions;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Random;
import omqe.social.platform.exceptions.PostTypeErrorException;
import omqe.social.util.TestUtil;
import org.apache.log4j.Logger;
import org.openqa.selenium.By;
import org.openq... | 14,420 | 0.71387 | 0.706796 | 368 | 38.184784 | 31.639332 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.486413 | false | false | 4 |
346e872fd54fb92a5b067d2698cf6a85f029eebe | 29,635,274,390,405 | 80da2ae85e2398bcf79bbfd7d9cb6e5f2e7d10ee | /DesarrolloA/Nueva carpeta/CFDI_TIMBRADO_MASIVO_OK/INGRESOS2017_RESPONSIVO_5/Desarrollo/.svn/pristine/da/daca804a913cbc53577c0fb7f887d38f78b382e7.svn-base | 9efc592d58e283eb37227c851140fd381fda5dde | [] | no_license | llagi1234/hello-world | https://github.com/llagi1234/hello-world | ab9ada67ceb36571096bbe3bea38270e432e249d | 856e95a950e68b44e883f183e26e6b23f90a9113 | refs/heads/master | 2018-01-14T10:27:05.364000 | 2017-07-28T16:54:28 | 2017-07-28T16:54:28 | 86,616,008 | 1 | 0 | null | false | 2017-07-28T21:00:07 | 2017-03-29T18:28:24 | 2017-07-04T18:59:50 | 2017-07-28T21:00:06 | 950,635 | 1 | 0 | 0 | null | null | null | package SIR.criptografia;
import com.sun.org.apache.xerces.internal.impl.dv.util.Base64;
import java.io.BufferedInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.cr... | UTF-8 | Java | 6,121 | daca804a913cbc53577c0fb7f887d38f78b382e7.svn-base | Java | [
{
"context": "eParameters\");\n \n //String texto = \"eDvLN3Pt+fRyh/5Ex7c8DSYIldysVt/2Rtt5IuSbxWkrxKMHpZbUEaiXhoj+YQJYE5t6NjzItwp4Tblm9LyMd5kW8OPn7UQkMFWtXAKCrHR8upy10C9goBs9X0fhBiDFMb7ZciO82LN9REMl1GsoFBAlXUHr1uMNO3d6vnNKEpBgMWmEPi2/w1nTx6faob+IxJ8gmv3Lp9lSN3U3icuIUBW6x9gxaE0tnwKi3SWNqPsI5v0Xvq+G... | null | [] | package SIR.criptografia;
import com.sun.org.apache.xerces.internal.impl.dv.util.Base64;
import java.io.BufferedInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.cr... | 5,761 | 0.556772 | 0.542068 | 168 | 35.42857 | 36.842907 | 392 | false | false | 0 | 0 | 0 | 0 | 364 | 0.059467 | 0.517857 | false | false | 4 | |
44cb9ccad26c953e984a17a4b5b905f0ac26d9f9 | 25,254,407,739,640 | 9df6707c781e7fc7bde47746f16b987ab1e26ba4 | /Contacts/src/com/android/contacts/Config.java | 7f5c81b547b661d07fcb06033e5e6bbea3e6c9d8 | [
"Apache-2.0"
] | permissive | 1119553797/SPD8810GA | https://github.com/1119553797/SPD8810GA | 38249062e080ae5c2a6775dc02598935d346255f | 6f601112c2b1f72b5f4cb8273ffa996d8e138f84 | refs/heads/master | 2021-01-15T11:50:18.809000 | 2013-05-07T03:25:50 | 2013-05-07T03:25:50 | 26,317,121 | 0 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.android.contacts;
import android.telephony.TelephonyManager;
public interface Config {
public static boolean isSupport3G = TelephonyManager.getDefault().getModemType() == TelephonyManager.MODEM_TYPE_TDSCDMA;
public static final String EXTRA_IS_VIDEOCALL = "android.phone.extra.IS_VIDEOCALL";
}
| UTF-8 | Java | 318 | java | Config.java | Java | [] | null | [] | package com.android.contacts;
import android.telephony.TelephonyManager;
public interface Config {
public static boolean isSupport3G = TelephonyManager.getDefault().getModemType() == TelephonyManager.MODEM_TYPE_TDSCDMA;
public static final String EXTRA_IS_VIDEOCALL = "android.phone.extra.IS_VIDEOCALL";
}
| 318 | 0.789308 | 0.786164 | 10 | 30.799999 | 40.852905 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 4 |
75155c9095a13038f8aff9086f007840d8b842a9 | 20,779,051,813,510 | d2eb73a6aea1f1a38b7b4c65444dde8590598825 | /02GenericsExercises/CustomList/CustomList.java | 78e61b2a6750b1ae3249b2a1fea305d778386e05 | [] | no_license | zdergatchev/Java-OOP-Advanced | https://github.com/zdergatchev/Java-OOP-Advanced | a8d03b5242f2008f3d173c29eb16a2e52f8a5271 | 5725251f278421c54d9df05ef75f1f7a00088ec6 | refs/heads/master | 2021-01-22T18:06:54.944000 | 2017-03-21T09:21:47 | 2017-03-21T09:21:47 | 85,057,110 | 0 | 1 | null | false | 2017-03-21T09:21:47 | 2017-03-15T10:03:22 | 2017-03-15T10:25:00 | 2017-03-21T09:21:47 | 98 | 0 | 1 | 0 | Java | null | null | package CustomList;
import java.util.ArrayList;
/**
* Created by r3v3nan7 on 19.03.17.
*/
public class CustomList<T extends Comparable> {
private ArrayList<T> workingList;
public CustomList(){
this.workingList = new ArrayList<T>();
}
public void add(T element){
this.workingList.a... | UTF-8 | Java | 1,934 | java | CustomList.java | Java | [
{
"context": "t;\n\nimport java.util.ArrayList;\n\n/**\n * Created by r3v3nan7 on 19.03.17.\n */\npublic class CustomList<T extend",
"end": 76,
"score": 0.9994773268699646,
"start": 68,
"tag": "USERNAME",
"value": "r3v3nan7"
}
] | null | [] | package CustomList;
import java.util.ArrayList;
/**
* Created by r3v3nan7 on 19.03.17.
*/
public class CustomList<T extends Comparable> {
private ArrayList<T> workingList;
public CustomList(){
this.workingList = new ArrayList<T>();
}
public void add(T element){
this.workingList.a... | 1,934 | 0.52637 | 0.513961 | 97 | 18.938145 | 19.421432 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.350515 | false | false | 4 |
e966747128a2f7562d3dc336ac61058d4d249074 | 20,289,425,552,792 | 96f86b1a0ae9f60c417e5b5d67c6029b06f19339 | /Server class/src/servlet/BrowserSearcher.java | fb55d91c17bc3423ad67cbb2c111d40122790064 | [] | no_license | CodecoolMSC2015/javabigfinalassessment-ccKbalazs | https://github.com/CodecoolMSC2015/javabigfinalassessment-ccKbalazs | 18cd01242d6ce370653af60f3fdf3ea069af1cf4 | 3fadf5daedfce760f2fbfa15f3588af7c10bc842 | refs/heads/master | 2021-01-16T21:50:21.527000 | 2016-03-16T15:20:40 | 2016-03-16T15:20:40 | 54,018,056 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package servlet;
public class BrowserSearcher {
}
| UTF-8 | Java | 52 | java | BrowserSearcher.java | Java | [] | null | [] | package servlet;
public class BrowserSearcher {
}
| 52 | 0.769231 | 0.769231 | 5 | 9.4 | 11.959933 | 30 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.2 | false | false | 4 |
c8f60add505805e16766f7fc092dda39de66f3c7 | 22,325,240,046,235 | d33313ec8c2ebec658b40cbb51a3a850ad199d17 | /src/main/java/net/maxters/droid/xpsd/whatsapp/pwd/hooks/Hook211365.java | 45f8f06ac5db018abad706c9a360c772aa3e5000 | [] | no_license | abazad/max_apps_whatspwd | https://github.com/abazad/max_apps_whatspwd | 6d9de50187276ea16030cefc493d2595ea5449f8 | 74aca14e8213cc1228835a6a6040b17bbb297390 | refs/heads/master | 2021-01-24T22:06:48.394000 | 2014-09-05T18:46:41 | 2014-09-05T18:48:27 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.maxters.droid.xpsd.whatsapp.pwd.hooks;
import net.maxters.droid.xpsd.whatsapp.pwd.WPHook;
/**
* AutoGenerated on 05/09/2014 22:32:54 Dubai.
*/
public class Hook211365 extends WPHook {
public Hook211365() {
super("2.11.365");
}
@Override
public String getPwdMethod() {
retu... | UTF-8 | Java | 503 | java | Hook211365.java | Java | [] | null | [] | package net.maxters.droid.xpsd.whatsapp.pwd.hooks;
import net.maxters.droid.xpsd.whatsapp.pwd.WPHook;
/**
* AutoGenerated on 05/09/2014 22:32:54 Dubai.
*/
public class Hook211365 extends WPHook {
public Hook211365() {
super("2.11.365");
}
@Override
public String getPwdMethod() {
retu... | 503 | 0.616302 | 0.552684 | 28 | 17 | 16.735334 | 50 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.214286 | false | false | 4 |
d5aa8c5a610e51c11e6ce0ee009a5d49c91479c9 | 17,609,365,955,058 | 39aa5d843700fcbd1012be4b133b0c1630ed5cea | /javafun/Rodolfo.java | 04523a60c6e8dce0e27afc7a98ea6b6668d2a851 | [] | no_license | vrodolfo/java | https://github.com/vrodolfo/java | fb62c274012347c7733cce17fdca69d3f8392d93 | 4b20949881ce811398e80da1c366fc592ed42306 | refs/heads/master | 2021-04-12T08:49:25.541000 | 2018-04-12T13:38:08 | 2018-04-12T13:38:08 | 126,342,142 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class Rodolfo{
public static void main(String[] args){
System.out.println("My Names is Rodolfo");
System.out.println("I'm 100 years old");
System.out.println("I live in Texas");
}
} | UTF-8 | Java | 196 | java | Rodolfo.java | Java | [
{
"context": "(String[] args){\n\t\tSystem.out.println(\"My Names is Rodolfo\");\n\t\tSystem.out.println(\"I'm 100 years old\");\n\t\tS",
"end": 104,
"score": 0.9998354315757751,
"start": 97,
"tag": "NAME",
"value": "Rodolfo"
}
] | null | [] | public class Rodolfo{
public static void main(String[] args){
System.out.println("My Names is Rodolfo");
System.out.println("I'm 100 years old");
System.out.println("I live in Texas");
}
} | 196 | 0.69898 | 0.683673 | 7 | 27.142857 | 17.683153 | 44 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.571429 | false | false | 4 |
8b73244e484cef9ea721a5c2fa58f077153d7922 | 16,303,695,895,865 | 624b2d1fa50740af3b0368df292277b7bea755f2 | /src/main/java/com/zhiyou100/video/mapper/VideoMapper.java | 6ccb651bdbaf824b85a03f8fa1335ca140e9921e | [] | no_license | grj001/video-project | https://github.com/grj001/video-project | 36c2bf8f894a23381cf8401e12b322a2a7a59594 | d8ff0eeb5bbe2c2bfa69e16bbef060af024672bf | refs/heads/master | 2021-01-23T20:22:53.821000 | 2017-09-08T11:29:02 | 2017-09-08T11:29:02 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.zhiyou100.video.mapper;
import com.zhiyou100.video.model.Video;
import com.zhiyou100.video.model.VideoExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface VideoMapper {
int countByExample(VideoExample example);
int deleteByExample(VideoExample exa... | UTF-8 | Java | 1,269 | java | VideoMapper.java | Java | [] | null | [] | package com.zhiyou100.video.mapper;
import com.zhiyou100.video.model.Video;
import com.zhiyou100.video.model.VideoExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface VideoMapper {
int countByExample(VideoExample example);
int deleteByExample(VideoExample exa... | 1,269 | 0.732861 | 0.725768 | 42 | 28.261906 | 38.953609 | 178 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.714286 | false | false | 4 |
16ecdb5fe00521065867a9bb481237bfdb2bdb7c | 16,303,695,893,692 | 9634a46066fc9bc5ec41b0e2d786197832fec86f | /src/main/java/alfatec/model/user/User.java | 6f3375b84a84f1f266fba55813e98e408124f16d | [] | no_license | adjurisic/conference | https://github.com/adjurisic/conference | f05b9d600937e85b3dd8e82f01aee0a78ea79492 | c047b29f793ff1eddb5efad593b27ed278c573e1 | refs/heads/master | 2022-07-01T18:23:02.004000 | 2020-02-07T03:53:38 | 2020-02-07T03:53:38 | 230,786,739 | 0 | 8 | null | false | 2021-04-26T19:50:03 | 2019-12-29T18:15:08 | 2020-02-07T03:54:01 | 2021-04-26T19:50:03 | 1,356 | 0 | 6 | 1 | Java | false | false | package alfatec.model.user;
import java.time.LocalDateTime;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.property.SimpleObjectProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx... | UTF-8 | Java | 2,660 | java | User.java | Java | [
{
"context": "nfo about users of the application.\n * \n * @author jelena\n *\n */\npublic class User {\n\n\tprivate final Intege",
"end": 496,
"score": 0.9993423223495483,
"start": 490,
"tag": "USERNAME",
"value": "jelena"
}
] | null | [] | package alfatec.model.user;
import java.time.LocalDateTime;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.property.SimpleObjectProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx... | 2,660 | 0.761654 | 0.761278 | 114 | 22.333334 | 22.767578 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.22807 | false | false | 4 |
4876d7513602784f28823d9293150812bc4c0ef8 | 28,278,064,720,771 | ce44e9fec5f4ee3eff79c3e6fbb0064fbb94753d | /main/ip/test/boofcv/alg/color/TestColorHsv.java | f669922778d7b81e7ed8b57355c8f31fe1ca96b3 | [
"Apache-2.0"
] | permissive | wsjhnsn/BoofCV | https://github.com/wsjhnsn/BoofCV | 74fc0687e29c45df1d2fc125b28d777cd91a8158 | bdae47003090c03386b6b23e2a884bceba242241 | refs/heads/master | 2020-12-24T12:34:02.996000 | 2014-06-27T21:15:21 | 2014-06-27T21:15:21 | 21,334,100 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright (c) 2011-2013, Peter Abeles. All Rights Reserved.
*
* This file is part of BoofCV (http://boofcv.org).
*
* 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... | UTF-8 | Java | 3,480 | java | TestColorHsv.java | Java | [
{
"context": "/*\n * Copyright (c) 2011-2013, Peter Abeles. All Rights Reserved.\n *\n * This file is part of ",
"end": 43,
"score": 0.999839186668396,
"start": 31,
"tag": "NAME",
"value": "Peter Abeles"
},
{
"context": "tic org.junit.Assert.assertEquals;\n\n/**\n * @author Peter Abe... | null | [] | /*
* Copyright (c) 2011-2013, <NAME>. All Rights Reserved.
*
* This file is part of BoofCV (http://boofcv.org).
*
* 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.apach... | 3,468 | 0.661782 | 0.610345 | 125 | 26.84 | 24.421432 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.464 | false | false | 4 |
b3e94be5065f05d1fe771790b3e325930ff59b95 | 20,907,900,838,045 | b5b31f61cd2563f1fc12a5456ec09cab5d0469d8 | /app/src/main/java/com/udacity/popularmovies/event/events/MoviesLoadedEvent.java | a8eb5baa6ed5f51f2b794af41c258a7d74c43d40 | [] | no_license | DINESHKARPE/PopularMovies-P2 | https://github.com/DINESHKARPE/PopularMovies-P2 | 6e06cacdb1104df201ec6ba2b620c7150145180d | 8b0e6ba4c90ef34c3f350e825dd863ae9d30c066 | refs/heads/master | 2021-01-18T23:26:12.854000 | 2016-05-25T18:02:37 | 2016-05-25T18:02:37 | 51,262,298 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.udacity.popularmovies.event.events;
import com.udacity.popularmovies.entity.Movie;
import com.udacity.popularmovies.entity.MovieResults;
import java.util.List;
public final class MoviesLoadedEvent {
public final List<Movie> movies;
public final MovieResults.SortCriteria sortCriteria;
publi... | UTF-8 | Java | 483 | java | MoviesLoadedEvent.java | Java | [] | null | [] | package com.udacity.popularmovies.event.events;
import com.udacity.popularmovies.entity.Movie;
import com.udacity.popularmovies.entity.MovieResults;
import java.util.List;
public final class MoviesLoadedEvent {
public final List<Movie> movies;
public final MovieResults.SortCriteria sortCriteria;
publi... | 483 | 0.766046 | 0.766046 | 19 | 24.421053 | 25.966204 | 90 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.473684 | false | false | 4 |
0afe036e6069c2f84f2814fdd447d55a0212c334 | 3,350,074,538,300 | 8f70fe0e87e308fe3dc8cfe9a515a315ed131d18 | /src/test/java/com/sugarcrm/test/GlobalSearch/GlobalSearch_20094.java | b001c78f3dc826c91e594e25ecf3d7b49bf54522 | [] | no_license | mustaeenbasit/LKW-Walter_Automation | https://github.com/mustaeenbasit/LKW-Walter_Automation | 76fd02c34c766bc34a5c300e3f5943664c70d67b | a97f4feca8e51c21f3cef1949573a8e4909e7143 | refs/heads/master | 2020-04-09T17:54:32.252000 | 2018-12-05T09:49:29 | 2018-12-05T09:49:29 | 160,495,697 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sugarcrm.test.GlobalSearch;
import org.junit.Test;
import com.sugarcrm.candybean.datasource.FieldSet;
import com.sugarcrm.sugar.VoodooControl;
import com.sugarcrm.sugar.VoodooUtils;
import com.sugarcrm.test.SugarTest;
public class GlobalSearch_20094 extends SugarTest {
public void setup() throws Excepti... | UTF-8 | Java | 2,778 | java | GlobalSearch_20094.java | Java | [] | null | [] | package com.sugarcrm.test.GlobalSearch;
import org.junit.Test;
import com.sugarcrm.candybean.datasource.FieldSet;
import com.sugarcrm.sugar.VoodooControl;
import com.sugarcrm.sugar.VoodooUtils;
import com.sugarcrm.test.SugarTest;
public class GlobalSearch_20094 extends SugarTest {
public void setup() throws Excepti... | 2,778 | 0.758459 | 0.75306 | 66 | 41.10606 | 36.520283 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.818182 | false | false | 4 |
ce3a37d8ec59514ef49473133b735e123ffb153b | 29,635,274,402,704 | db707d6c2293d26675b43e7eb6d9c80a5da84f07 | /moony/src/main/java/org/codeset/moony/servlet/HomeServlet.java | b2a0f9261873d868f806868ac7323158448ab847 | [
"Apache-2.0"
] | permissive | yintaoxue/ziluo | https://github.com/yintaoxue/ziluo | cd6d496d0a776f65082a1da17e543e4eccd78921 | f2310f6ff2f1713f30e2b6d3d2d2d0e67f6e99b9 | refs/heads/master | 2021-01-19T01:08:56.964000 | 2016-08-02T16:56:22 | 2016-08-02T16:56:22 | 13,342,006 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.codeset.moony.servlet;
import java.io.IOException;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.codese... | UTF-8 | Java | 1,378 | java | HomeServlet.java | Java | [] | null | [] | package org.codeset.moony.servlet;
import java.io.IOException;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.codese... | 1,378 | 0.7627 | 0.761974 | 46 | 28.956522 | 29.535503 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.043478 | false | false | 4 |
69dd29f2823024af8e65a4e86789d4b750b6ab6f | 1,640,677,555,879 | e4e2e60d8601381d2838644e442e7a969cec1d7c | /app/src/main/java/ming/cloudmusic/activity/DefalutBaseActivity.java | 8fc7179ac4a4bfd96d35a50ce35c17e9f594e42b | [] | no_license | privatez/ming-cloud-music | https://github.com/privatez/ming-cloud-music | 48d79d6e996399865a88c159553d32a3dfb06fae | 7313f75352012d0659bd7d369739f6e03ca2d86d | refs/heads/master | 2020-12-29T02:38:14.661000 | 2017-05-23T13:11:09 | 2017-05-23T13:11:09 | 53,199,523 | 6 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ming.cloudmusic.activity;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import java.util.HashMap;
import java.util.Map;
import ming.cloudmusic.event.EventUtil;
import ming.cloudmusic.util.Constant;
import ming.cloudmusic.util.CustomUtils;
import ming.cloudmusic.util.S... | UTF-8 | Java | 1,579 | java | DefalutBaseActivity.java | Java | [
{
"context": "usic.view.OnViewCreateListener;\n\n/**\n * Created by Lhy on 2015/12/22.\n */\npublic abstract class DefalutB",
"end": 452,
"score": 0.9994370341300964,
"start": 449,
"tag": "USERNAME",
"value": "Lhy"
}
] | null | [] | package ming.cloudmusic.activity;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import java.util.HashMap;
import java.util.Map;
import ming.cloudmusic.event.EventUtil;
import ming.cloudmusic.util.Constant;
import ming.cloudmusic.util.CustomUtils;
import ming.cloudmusic.util.S... | 1,579 | 0.740342 | 0.735276 | 58 | 26.224138 | 25.305065 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 4 |
c514cc9e7f6627a7091c40412d2eeed804dbe5d2 | 29,489,245,495,466 | c610323656005f0dd970634d8031b2d2993acbba | /src/main/java/nl/kingdev/jcraft/engine/camera/Camera.java | 122005db47b41c07048d40cec63297c486defe5f | [] | no_license | kingdevnl/JCraft | https://github.com/kingdevnl/JCraft | f6bfbe124a37ebb35915dcfba5edbdabb5945822 | ead6c9849306c976cf8c8a20fae32f101afc2152 | refs/heads/master | 2020-12-27T21:07:08.193000 | 2020-02-06T13:06:03 | 2020-02-06T13:06:03 | 238,056,325 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package nl.kingdev.jcraft.engine.camera;
import static org.lwjgl.glfw.GLFW.*;
import nl.kingdev.jcraft.engine.shader.Shader;
import nl.kingdev.jcraft.engine.utils.MatrixUtils;
import nl.kingdev.jcraft.engine.window.Window;
import org.joml.Vector2f;
import org.joml.Vector3f;
public class Camera {
private MouseInp... | UTF-8 | Java | 3,114 | java | Camera.java | Java | [] | null | [] | package nl.kingdev.jcraft.engine.camera;
import static org.lwjgl.glfw.GLFW.*;
import nl.kingdev.jcraft.engine.shader.Shader;
import nl.kingdev.jcraft.engine.utils.MatrixUtils;
import nl.kingdev.jcraft.engine.window.Window;
import org.joml.Vector2f;
import org.joml.Vector3f;
public class Camera {
private MouseInp... | 3,114 | 0.597302 | 0.584457 | 107 | 28.11215 | 23.940474 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.626168 | false | false | 4 |
012a3bd700dd2006c41e54f9d4f0c79c6f127ef3 | 3,693,671,917,082 | 261ad487bb5ba12c90e303c352ee852462bf3d48 | /PO - Java/tp7-image/tp7-image/elkhatibTP7/test/image/ImageTest.java | 9c0274d64b44f30be71204eeacee27fcf97bb2fd | [] | no_license | FrMohande/Licence-2----Semestre-4 | https://github.com/FrMohande/Licence-2----Semestre-4 | 64e7ed6f12be4695e3a49dc159a8eeced1f4f75c | cc2d1216887a2a94a27f9881b1e23de40668d795 | refs/heads/master | 2020-12-03T01:50:03.299000 | 2017-06-30T09:36:59 | 2017-06-30T09:36:59 | 95,872,868 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package image;
import org.junit.*;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import image.*;
import image.color.*;
/**
* @author : Eddy El Khatib
*/
public class ImageTest {
@Test
public void testImage(){
Image someImage = new Image(4,4);
assertNotNull(someImage);
... | UTF-8 | Java | 2,120 | java | ImageTest.java | Java | [
{
"context": "t image.*;\nimport image.color.*;\n\n/**\n * @author : Eddy El Khatib\n */\n\npublic class ImageTest {\n\n\n\t@Test\n\tpublic vo",
"end": 190,
"score": 0.9998157620429993,
"start": 176,
"tag": "NAME",
"value": "Eddy El Khatib"
}
] | null | [] | package image;
import org.junit.*;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import image.*;
import image.color.*;
/**
* @author : <NAME>
*/
public class ImageTest {
@Test
public void testImage(){
Image someImage = new Image(4,4);
assertNotNull(someImage);
}
@Te... | 2,112 | 0.684434 | 0.650943 | 86 | 23.651163 | 24.848269 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.325581 | false | false | 4 |
e8b7597950e96dc7d6b39fa3dbb8392776963423 | 33,148,557,598,836 | 6aaebdfcca910f7bd6167f83e9dabe88f3d3f941 | /32_Animations/Sunset/app/src/main/java/com/bignerdranch/android/sunset/SeaSunsetFragment.java | 30902fe644cda7cc24073f885a6b3d0a17a96962 | [
"Apache-2.0"
] | permissive | sby5388/android_QuanWeiZhiNan3 | https://github.com/sby5388/android_QuanWeiZhiNan3 | 09f010255b5262e4f4c9fa4c84a27e34600f794f | cab235d8c099f3479de9e0048a902b6872dd3084 | refs/heads/master | 2023-03-15T07:45:31.684000 | 2021-03-24T08:21:17 | 2021-03-24T08:21:17 | 172,051,918 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.bignerdranch.android.sunset;
import android.animation.AnimatorSet;
import android.animation.ArgbEvaluator;
import android.animation.ObjectAnimator;
import android.content.res.Resources;
import android.os.Bundle;
import android.os.Handler;
import android.support.annotation.CallSuper;
import android.support.... | UTF-8 | Java | 7,815 | java | SeaSunsetFragment.java | Java | [
{
"context": "上日出日落的动画\n * 与Sunset相比,地平线下面部分的颜色也要变化\n *\n * @author Administrator on 2019/7/16.\n */\npublic class SeaSunsetFragment",
"end": 649,
"score": 0.4802709221839905,
"start": 636,
"tag": "NAME",
"value": "Administrator"
}
] | null | [] | package com.bignerdranch.android.sunset;
import android.animation.AnimatorSet;
import android.animation.ArgbEvaluator;
import android.animation.ObjectAnimator;
import android.content.res.Resources;
import android.os.Bundle;
import android.os.Handler;
import android.support.annotation.CallSuper;
import android.support.... | 7,815 | 0.652772 | 0.641865 | 231 | 32.337662 | 25.686562 | 132 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.61039 | false | false | 4 |
0604c938b7b2ee4896dff124fdfbb06346aaa423 | 27,101,243,665,990 | d9e929b5cc0a4e78ac2f95ad94091afdd9bc73f7 | /src/mnm/hibernate/Stu.java | 9ed25a46d8f5ff9c0aa4323868ce49acf9daf06a | [] | no_license | ghaseminya/TTP | https://github.com/ghaseminya/TTP | 7024b82bc1fb87c82836a730ba5358cebd2a38f4 | 86c2c8bc2245518f7c14b8f66584803a7975c9a8 | refs/heads/master | 2021-01-12T10:32:43.531000 | 2017-02-08T08:08:03 | 2017-02-08T08:08:03 | 81,304,018 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package mnm.hibernate;
// default package
// Generated Apr 11, 2010 12:10:19 AM by Hibernate Tools 3.2.2.GA
/**
* Stu generated by hbm2java
*/
public class Stu implements java.io.Serializable {
private StuId id;
public Stu() {
}
public Stu(StuId id) {
this.id = id;
}
public StuId getId() {
return this.... | UTF-8 | Java | 381 | java | Stu.java | Java | [] | null | [] | package mnm.hibernate;
// default package
// Generated Apr 11, 2010 12:10:19 AM by Hibernate Tools 3.2.2.GA
/**
* Stu generated by hbm2java
*/
public class Stu implements java.io.Serializable {
private StuId id;
public Stu() {
}
public Stu(StuId id) {
this.id = id;
}
public StuId getId() {
return this.... | 381 | 0.653543 | 0.611549 | 27 | 13.111111 | 16.051615 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.777778 | false | false | 4 |
bdbcb9f075712206fb6b47ab217f4bba2ced7395 | 27,101,243,669,387 | 6ca013e8be4a3b40dbffea07a6c2cdcc36b5a21c | /src/main/resources/archetype-resources/src/main/java/ui/AboutController.java | f9a54534feae40bc2331f8d5b4594f9f4ecb9e05 | [
"Apache-2.0"
] | permissive | seraphy/CDIJavaFXAppSkeleton | https://github.com/seraphy/CDIJavaFXAppSkeleton | e67bc11d5dd46909371f7720d6d315e43cbc41b0 | e6a7d3b5a1ad8e16d12c1b4182c2f1f314a12d92 | refs/heads/master | 2021-12-26T23:19:30.972000 | 2018-11-13T07:58:16 | 2018-11-13T08:44:43 | 155,646,524 | 0 | 0 | Apache-2.0 | false | 2021-12-19T00:10:57 | 2018-11-01T01:46:46 | 2018-11-13T08:45:01 | 2021-12-19T00:10:57 | 305 | 0 | 0 | 4 | Java | false | false | #set( $symbol_pound = '#' )
#set( $symbol_dollar = '$' )
#set( $symbol_escape = '\' )
package ${package}.ui;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.UncheckedIOException;
import java.net.URL;
import java.nio.charset.StandardChars... | UTF-8 | Java | 5,172 | java | AboutController.java | Java | [] | null | [] | #set( $symbol_pound = '#' )
#set( $symbol_dollar = '$' )
#set( $symbol_escape = '\' )
package ${package}.ui;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.UncheckedIOException;
import java.net.URL;
import java.nio.charset.StandardChars... | 5,172 | 0.729521 | 0.726157 | 178 | 27.393259 | 24.152893 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.926966 | false | false | 4 |
b26a02657a3c0bc68b119df5a8910961be43c104 | 15,375,982,922,542 | 16b2aee1fce6061eb42c680e044dfa70ec434322 | /src/csy/jvm/StaticDispatchTest.java | b2162ba6e5ad1d67ce5f025ae0796e6b68e8b090 | [] | no_license | chenshiyang/Algorithm | https://github.com/chenshiyang/Algorithm | 1779873dcd722c465c71bd55c08dd2b63df41ede | f381b9b392b2f9f0b898bdd100592b1eaf136b02 | refs/heads/master | 2021-01-24T17:07:54.388000 | 2018-08-28T09:00:04 | 2018-08-28T09:00:04 | 67,972,808 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package csy.jvm;
/**
*
* Description: Understanding the JVM p247
*/
public class StaticDispatchTest {
static class Human {
public void say() {
System.out.println("I am a human");
}
}
static class Man extends Human {
public void say() {
System.out.println("I am a man");
}
}
static c... | UTF-8 | Java | 931 | java | StaticDispatchTest.java | Java | [
{
"context": "d sayHello(Man man) {\n\t\tSystem.out.println(\"hello, gentleman.\");\n\t}\n\t\n\tpublic void sayHello(Woman woman) {\n\t\tS",
"end": 565,
"score": 0.9102053642272949,
"start": 556,
"tag": "NAME",
"value": "gentleman"
},
{
"context": "yHello(Woman woman) {\n\t\tSystem.o... | null | [] | package csy.jvm;
/**
*
* Description: Understanding the JVM p247
*/
public class StaticDispatchTest {
static class Human {
public void say() {
System.out.println("I am a human");
}
}
static class Man extends Human {
public void say() {
System.out.println("I am a man");
}
}
static c... | 931 | 0.625134 | 0.621912 | 56 | 15.625 | 15.303551 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.75 | false | false | 4 |
6f34d5a09d641e4eedab7a3a7702f661e5b87971 | 16,913,581,267,295 | 1c0ef7371c99d43df95b293f5f60d893d32e66a8 | /student-management/src/main/java/com/jdc/student/utils/AutoGenerateEntity.java | 3f123fa75f4fcee09afd151bc75763f8a48b4245 | [] | no_license | KyawSuThway1995/JavaWeb-JSP | https://github.com/KyawSuThway1995/JavaWeb-JSP | 5b993378ad3c98ee41bc56416cb5f7dd9e8601ca | f9285c216dd8defc76b0c70882bff1db6677f5d7 | refs/heads/master | 2020-04-18T06:52:06.680000 | 2019-02-13T03:52:03 | 2019-02-13T03:52:03 | 167,339,792 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jdc.student.utils;
public interface AutoGenerateEntity {
void setId(int id);
}
| UTF-8 | Java | 93 | java | AutoGenerateEntity.java | Java | [] | null | [] | package com.jdc.student.utils;
public interface AutoGenerateEntity {
void setId(int id);
}
| 93 | 0.774194 | 0.774194 | 5 | 17.6 | 14.974646 | 37 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6 | false | false | 4 |
b11a6c52973db86f01ffd8d94c952b3359c09b5d | 23,450,521,481,433 | 8f87065bc3cb6d96ea2e398a98aacda4fc4bbe43 | /src/Class00000621Better.java | d64413cb3a413ad1daa884d7a5189b2fb431ab6e | [] | no_license | fracz/code-quality-benchmark | https://github.com/fracz/code-quality-benchmark | a243d345441582473532f9b013993f77d59e19ae | c23e76fe315f43bea899beabb856e61348c34e09 | refs/heads/master | 2020-04-08T23:40:36.408000 | 2019-07-31T17:54:53 | 2019-07-31T17:54:53 | 159,835,188 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | // original filename: 00039161.txt
// before
public class Class00000621Better {
protected IndexType getIndexType(String indexName) {
// TODO Node For now :)
return IndexType.NODE;
}
}
| UTF-8 | Java | 208 | java | Class00000621Better.java | Java | [] | null | [] | // original filename: 00039161.txt
// before
public class Class00000621Better {
protected IndexType getIndexType(String indexName) {
// TODO Node For now :)
return IndexType.NODE;
}
}
| 208 | 0.677885 | 0.600962 | 8 | 25 | 17.378147 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.125 | false | false | 4 |
e8dc55cbadf47038a6bce7cadea52a0fb7a7843e | 11,441,792,891,755 | dbe4a9ecf376edfd82eaf6f4ae0b17180ecf6b19 | /src/graetap3/ObslugaPlikow.java | 0e4c2f2052c9d6d042152380b4cd48b953c8515c | [] | no_license | stratixx/TeleKulka | https://github.com/stratixx/TeleKulka | a9b3a225cfca92a9fd8860b9cdced78eb5ef4e73 | 036ab308710050dcebe40bff45558cfda3a44520 | refs/heads/master | 2020-03-15T18:37:55.753000 | 2018-05-10T20:59:37 | 2018-05-10T20:59:37 | 132,278,839 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package graetap3;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
/**
* Klasa czytająca pliki tekstowe używane w grze
*
*/
public class ObslugaPlikow {
private String data_f... | WINDOWS-1250 | Java | 4,064 | java | ObslugaPlikow.java | Java | [] | null | [] | package graetap3;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
/**
* Klasa czytająca pliki tekstowe używane w grze
*
*/
public class ObslugaPlikow {
private String data_f... | 4,064 | 0.601137 | 0.599159 | 152 | 25.611841 | 22.689568 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.328947 | false | false | 4 |
52de4b99be010b84d87a59d34bb50f4d8d586f40 | 8,744,553,471,996 | 372730e30f70580653e2e4b6dc345f7285cb6163 | /src/main/java/edu/neu/coe/web/RestaurantController.java | fb45bd6908778352e1c1a3157291164c12dd153e | [] | no_license | sleephu/spring-MVC-project | https://github.com/sleephu/spring-MVC-project | 48501ac985ec729fc2728d63be440264aeaf7080 | 09548a0839b28bdb7062b4d84e8caac3f8bd08f3 | refs/heads/master | 2016-09-06T02:35:20.222000 | 2014-10-09T18:42:13 | 2014-10-09T18:42:13 | 25,000,088 | 3 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package edu.neu.coe.web;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.stereotype.Controlle... | UTF-8 | Java | 4,823 | java | RestaurantController.java | Java | [
{
"context": "\t\t\t}\n//\t\t}\n\t\tUser user = userAdminService.getUser(userName);\n\t\tif(user==null){\n\t\t\tSystem.out.println(\"No use",
"end": 2759,
"score": 0.6501794457435608,
"start": 2751,
"tag": "USERNAME",
"value": "userName"
}
] | null | [] | package edu.neu.coe.web;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.stereotype.Controlle... | 4,823 | 0.737093 | 0.737093 | 155 | 30.116129 | 22.216806 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.167742 | false | false | 4 |
003a5632113714f9e33f1ba75f7fde615d7246f8 | 14,078,902,842,947 | 1e1a0e10650a27f3c9b9052686055e21a55cb31c | /src/main/java/com/jsk/clean/domain/user/request/UserAddressRequest.java | 68b3aa121fb408d7b7a392fcd46854692b80fadf | [] | no_license | joskineide/clean | https://github.com/joskineide/clean | c061a3477305176eefdd184a2811e21e95b0c133 | 4f25109e5284256cf51bfd6440a830db611f47c8 | refs/heads/main | 2023-02-24T04:12:10.603000 | 2021-01-27T23:47:22 | 2021-01-27T23:47:22 | 333,591,894 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jsk.clean.domain.user.request;
import lombok.Builder;
import lombok.Data;
@Data
@Builder
public class UserAddressRequest {
private String street;
private String suite;
private String city;
private String zipcode;
private UserAddressGeoRequest geo;
}
| UTF-8 | Java | 284 | java | UserAddressRequest.java | Java | [] | null | [] | package com.jsk.clean.domain.user.request;
import lombok.Builder;
import lombok.Data;
@Data
@Builder
public class UserAddressRequest {
private String street;
private String suite;
private String city;
private String zipcode;
private UserAddressGeoRequest geo;
}
| 284 | 0.757042 | 0.757042 | 14 | 19.285715 | 13.708332 | 42 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.571429 | false | false | 4 |
01c9f91bd9489238301ad97c95644408a7de19bd | 23,287,312,694,670 | 09d3d8de1fe4bb6b92a5b0b94d11b6813f6e3e1f | /learn/MathClass.java | fd245a945447cfd1740d41a8d8468fbc2ea25edf | [] | no_license | baphil8649/java_code | https://github.com/baphil8649/java_code | 8105d9daa6281d216573f193576e5bc932445faf | a73fc3b534ef2e070ac3537c8f1e7f079d45a54b | refs/heads/master | 2017-12-22T13:48:56.622000 | 2017-08-25T03:20:24 | 2017-08-25T03:20:24 | 72,719,141 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
public class MathClass {
public static void main(String[ ] args) {
//Absolut Value
int a = Math.abs(10);
int b = Math.abs(-20);
System.out.println(a);
System.out.println(b);
//Round UP to nearest integer
double c = Math.ceil(7.324);
System.out.println(c);
//Round D... | UTF-8 | Java | 843 | java | MathClass.java | Java | [] | null | [] |
public class MathClass {
public static void main(String[ ] args) {
//Absolut Value
int a = Math.abs(10);
int b = Math.abs(-20);
System.out.println(a);
System.out.println(b);
//Round UP to nearest integer
double c = Math.ceil(7.324);
System.out.println(c);
//Round D... | 843 | 0.600237 | 0.576512 | 45 | 17.711111 | 15.075546 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.266667 | false | false | 4 |
347204a7a8f0610923953bc32ec99d73e20def2b | 8,890,582,314,445 | a48f1c2ed16ec5c59e53bf4864195e0cba69cab3 | /src/main/java/io/nats/client/MessageHandler.java | 3117358aea22067a585b713e077bbb9945912fbc | [
"MIT"
] | permissive | psiinon/jnats | https://github.com/psiinon/jnats | f2138a228b5deb439232d76f2ad4dd30be85fd4f | 532f4ca7e6daa80ac0f3eef89237991ba7cd75be | refs/heads/master | 2020-12-11T05:55:49.184000 | 2015-11-17T02:59:21 | 2015-11-17T02:59:21 | 46,372,061 | 1 | 0 | null | true | 2015-11-17T20:03:13 | 2015-11-17T20:03:13 | 2015-11-17T16:29:47 | 2015-11-17T02:59:25 | 124 | 0 | 0 | 0 | null | null | null | package io.nats.client;
public interface MessageHandler {
public void onMessage(Message msg);
}
| UTF-8 | Java | 101 | java | MessageHandler.java | Java | [] | null | [] | package io.nats.client;
public interface MessageHandler {
public void onMessage(Message msg);
}
| 101 | 0.762376 | 0.762376 | 7 | 13.428572 | 15.37026 | 36 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.571429 | false | false | 4 |
250bd4c5c39569f79f55a94d4291601388ab44da | 18,863,496,389,859 | 0cdbbb22c31a1fc13e5f0558a90139ea100ac32a | /tutor-simple-web/src/main/java/com/rjsoft/uums/facade/orgRole/entity/UmsUserOrgRoleRelation.java | a6ec6f7fc1f67b196a992dacef96ddadd1d20b57 | [] | no_license | csy512889371/tutor-simple-web | https://github.com/csy512889371/tutor-simple-web | 5112da8214b0b87fcabded2a65e8569fd9d338cc | e8d3b955645e67831dbd5e4762dc73830f1f0996 | refs/heads/master | 2021-05-06T20:07:03.082000 | 2017-12-31T01:08:18 | 2017-12-31T01:08:18 | 112,274,220 | 1 | 4 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.rjsoft.uums.facade.orgRole.entity;
import com.rjsoft.common.entity.UUIDEntity;
import com.rjsoft.uums.facade.user.entity.UmsUser;
import javax.persistence.Entity;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
/**
* User:cxtww
* Date:2016年11月8日 ... | UTF-8 | Java | 994 | java | UmsUserOrgRoleRelation.java | Java | [
{
"context": "One;\nimport javax.persistence.Table;\n\n/**\n * User:cxtww\n * Date:2016年11月8日 下午3:07:39\n * Version:1.0\n */\n@",
"end": 300,
"score": 0.999624490737915,
"start": 295,
"tag": "USERNAME",
"value": "cxtww"
}
] | null | [] | package com.rjsoft.uums.facade.orgRole.entity;
import com.rjsoft.common.entity.UUIDEntity;
import com.rjsoft.uums.facade.user.entity.UmsUser;
import javax.persistence.Entity;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
/**
* User:cxtww
* Date:2016年11月8日 ... | 994 | 0.75 | 0.734756 | 46 | 20.391304 | 19.333996 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.891304 | false | false | 4 |
cdc0d919a62d6a3d15458f8036ce6491ac47f6ba | 13,314,398,677,174 | a55bad10b04b58c48db855e7f9e6f61207614b6c | /src/main/java/brilliant/test_prj01/config/apidoc/package-info.java | 0515a3749515c7b77c0565691d46facc4d3c256c | [] | no_license | ngchiwing2010/brilliant | https://github.com/ngchiwing2010/brilliant | a5385a3f559da17e99f0dd2f330f640d83e566a2 | ffb7fdef0d8bba6a95771c50e8bc67706fe9ab64 | refs/heads/master | 2020-05-29T14:38:57.971000 | 2016-08-15T06:15:12 | 2016-08-15T06:15:12 | 65,710,182 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Swagger api specific code.
*/
package brilliant.test_prj01.config.apidoc; | UTF-8 | Java | 81 | java | package-info.java | Java | [] | null | [] | /**
* Swagger api specific code.
*/
package brilliant.test_prj01.config.apidoc; | 81 | 0.728395 | 0.703704 | 4 | 19.5 | 17.226433 | 43 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.25 | false | false | 4 |
d065d7fc7a3233f790349199047d112c868eee75 | 32,530,082,360,283 | 23d1ac37a867618efa5b16212dba41aa52169e44 | /modules/app-community-wanli/app-community-wanli-service/src/main/java/com/mit/community/service/SuggestionService.java | 60a9cd3505a07d27e7d377e72d6fe9efb900e9c5 | [
"Apache-2.0"
] | permissive | 1056215801/-MITC-YING_TAN | https://github.com/1056215801/-MITC-YING_TAN | 7e00fd7d24dc04ce905176f476631b01b5ff1a88 | 7badf6038927fd53a2bc04912264e951946de36e | refs/heads/qishengjun | 2022-06-30T01:28:28.926000 | 2019-09-17T01:28:34 | 2019-09-17T01:28:34 | 224,135,095 | 2 | 3 | Apache-2.0 | false | 2022-06-20T22:44:01 | 2019-11-26T08:01:13 | 2020-09-08T06:23:32 | 2022-06-20T22:44:00 | 13,242 | 1 | 1 | 6 | Java | false | false | package com.mit.community.service;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.plugins.Page;
import com.mit.community.entity.Suggestion;
import com.mit.community.mapper.SuggestionMapper;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.anno... | UTF-8 | Java | 1,525 | java | SuggestionService.java | Java | [] | null | [] | package com.mit.community.service;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.plugins.Page;
import com.mit.community.entity.Suggestion;
import com.mit.community.mapper.SuggestionMapper;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.anno... | 1,525 | 0.702295 | 0.701639 | 42 | 35.309525 | 32.614258 | 189 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.857143 | false | false | 4 |
2fdfb817d7dea0be18fcba7a48da1b3745c07cb2 | 9,165,460,231,129 | c9a90c562385b6bbfbd4ca00b4bcbc94266a1d70 | /eIncidencies/src/Servidor/ServerObjInterface.java | bcab32527232002455f4c48c918335797e400a28 | [] | no_license | tdp09/test | https://github.com/tdp09/test | 4b94b37618ef513287fc4b2e0eb4cf3f77ea4405 | a0b823753cbe3c0b3756c7bdb09d2f1cf81a6f23 | refs/heads/master | 2021-01-22T06:53:56.719000 | 2011-12-12T20:07:51 | 2011-12-12T20:07:51 | 2,608,327 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Servidor;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface ServerObjInterface extends Remote{
// Tots els parÓmetres i valors d'aquests metodes han de ser tipus primitius de java,
//o bÚ classes que implementin "Serializable", pk?
//recordeu que ha de viatjar per la xarxa... | IBM852 | Java | 452 | java | ServerObjInterface.java | Java | [] | null | [] | package Servidor;
import java.rmi.Remote;
import java.rmi.RemoteException;
public interface ServerObjInterface extends Remote{
// Tots els parÓmetres i valors d'aquests metodes han de ser tipus primitius de java,
//o bÚ classes que implementin "Serializable", pk?
//recordeu que ha de viatjar per la xarxa... | 452 | 0.751111 | 0.751111 | 12 | 35.5 | 26.818836 | 87 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.166667 | false | false | 4 |
8e64f2ceb7ddecfd80b0b070496123ee9031b4dc | 35,029,753,268,476 | c05a7f169caf845c1b893dbab8f4818d695b7ce9 | /src/discountstrategy/Markdown.java | fe884c4ce718a71e9d436abda5bf86054be32818 | [] | no_license | jonhay/DiscountStrategy | https://github.com/jonhay/DiscountStrategy | bc9e7c01152e56d0a36ccc516d3df0c7c13cb059 | 608d369b89f9908660deb3a204b6f12a55c75b8c | refs/heads/master | 2016-09-11T10:25:37.668000 | 2013-10-14T19:39:50 | 2013-10-14T19:39:50 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package discountstrategy;
/**
*
* @author JHay2 <jhay2@my.wctc.edu>
*
* This class implements DiscountStrategy and provides for a standard
* percentage of unit price mark down.
*
* This class holds a discountPercent as a double
*
* The public methods are getDiscountAmount and setDiscountPercen... | UTF-8 | Java | 1,296 | java | Markdown.java | Java | [
{
"context": "\r\npackage discountstrategy;\r\n\r\n/**\r\n *\r\n * @author JHay2 <jhay2@my.wctc.edu>\r\n * \r\n * This class implement",
"end": 56,
"score": 0.9989079236984253,
"start": 51,
"tag": "USERNAME",
"value": "JHay2"
},
{
"context": "e discountstrategy;\r\n\r\n/**\r\n *\r\n ... | null | [] |
package discountstrategy;
/**
*
* @author JHay2 <<EMAIL>>
*
* This class implements DiscountStrategy and provides for a standard
* percentage of unit price mark down.
*
* This class holds a discountPercent as a double
*
* The public methods are getDiscountAmount and setDiscountPercent
*
*... | 1,286 | 0.627315 | 0.622685 | 50 | 23.879999 | 24.233564 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.16 | false | false | 4 |
18de2a56c254ba6f2634054b944b2baa4127533e | 33,998,961,132,464 | eda8f088244cbbc607b7d647ea6964ccc9b3f3be | /hrms/business/abstracst/UsersService.java | 74921421b667ee72a436dea1595e29ab3df5317f | [] | no_license | sercan-basaran/JavaCamp-Assigment3 | https://github.com/sercan-basaran/JavaCamp-Assigment3 | 499e6386fcfc88252afeea1b1ae469b68c2575db | 52f0c40c718deb192f51957883fc4f3a14cd77c2 | refs/heads/main | 2023-05-05T02:16:21.739000 | 2021-06-04T15:03:49 | 2021-06-04T15:03:49 | 363,381,954 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package hrms.business.abstracst;
import java.util.List;
import hrms.entities.concretes.Users;
public interface UsersService {
List<Users> getAll();
}
| UTF-8 | Java | 167 | java | UsersService.java | Java | [] | null | [] | package hrms.business.abstracst;
import java.util.List;
import hrms.entities.concretes.Users;
public interface UsersService {
List<Users> getAll();
}
| 167 | 0.718563 | 0.718563 | 11 | 13.181818 | 14.806744 | 37 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.454545 | false | false | 4 |
63e6947b2df5be5cddd2c401f42b67b61e41cd39 | 31,267,361,946,273 | 31694ab52b873c4bc1e1adf9804cecea24918fa9 | /graqulus-generator-java/src/main/resources/trimou/java/generated.trimou.java | 2ac82b00616902f05593ae546e6a756b5f125512 | [
"Apache-2.0"
] | permissive | hwellmann/org.ops4j.graqulus | https://github.com/hwellmann/org.ops4j.graqulus | 9704473afd207c4838a1d3acb9d248f4c1cd3bc3 | fa06173cbcf09ff46eca632f87de77c0cdcdc3c7 | refs/heads/master | 2022-10-05T06:01:43.001000 | 2019-11-06T15:15:12 | 2019-11-06T15:15:12 | 161,987,188 | 0 | 0 | Apache-2.0 | false | 2022-09-16T21:07:14 | 2018-12-16T09:47:05 | 2019-11-06T15:15:38 | 2022-09-16T21:07:13 | 215 | 0 | 0 | 4 | Java | false | false | @Generated(value = "org.ops4j.graqulus", date = "{{date}}")
| UTF-8 | Java | 60 | java | generated.trimou.java | Java | [] | null | [] | @Generated(value = "org.ops4j.graqulus", date = "{{date}}")
| 60 | 0.633333 | 0.616667 | 1 | 59 | 0 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1 | false | false | 4 |
5d2e5a59232fa2caf415dae3ce6ed8d5e36a02f7 | 1,245,540,579,864 | a29acfb54502b8e41f82f392ded93ca51bc3ea9f | /app/src/main/java/cn/ricebook/omylab/libs/http/HttpUtil.java | a54edc1ff4c9ee4f7aea86cbff44d9b300574ed4 | [] | no_license | yakovchang/OMyLab | https://github.com/yakovchang/OMyLab | 8d8a030f04abaa7fdfd30bf51328f1d26271dbe3 | a687aa7b5c363884e789907e8d13c5f27e6cf582 | refs/heads/master | 2016-08-04T16:08:14.273000 | 2015-07-22T08:32:25 | 2015-07-22T08:32:25 | 39,482,536 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.ricebook.omylab.libs.http;
/**
* @author changshaoying-469599771@qq.com
*/
public class HttpUtil {
}
| UTF-8 | Java | 117 | java | HttpUtil.java | Java | [
{
"context": "kage cn.ricebook.omylab.libs.http;\n\n/**\n * @author changshaoying-469599771@qq.com\n */\npublic class HttpUtil {\n}\n",
"end": 67,
"score": 0.9009089469909668,
"start": 54,
"tag": "USERNAME",
"value": "changshaoying"
},
{
"context": "k.omylab.libs.http;\n\n/**\n * @au... | null | [] | package cn.ricebook.omylab.libs.http;
/**
* @author changshaoying-<EMAIL>
*/
public class HttpUtil {
}
| 108 | 0.721739 | 0.643478 | 7 | 15.428572 | 16.612019 | 41 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.142857 | false | false | 4 |
5f8b5527cbace05497da60632b9e031efcf33b9e | 27,084,063,799,003 | 8a43ca36a71b430096c609e96889aae94e93ddc9 | /spincast-core-parent/spincast-core-tests/src/test/java/org/spincast/tests/RequestPathParamsAndQueryStringParamsTest.java | 53a7168cfa85778e0a8acf52db04e0bce5ebc94e | [
"Apache-2.0"
] | permissive | spincast/spincast-framework | https://github.com/spincast/spincast-framework | 18163ee0d5ed3571113ad6f3112cf7f951eee910 | fc25e6e61f1d20643662ed94e42003b23fe651f6 | refs/heads/master | 2022-10-20T11:20:43.008000 | 2022-10-11T23:21:41 | 2022-10-11T23:21:41 | 56,924,959 | 48 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.spincast.tests;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import java.util.List;
import java.util.Map;
import org.junit.Test;
import org.spincast.core.exchange.DefaultRequestContext;
import org.spincast.core.routi... | UTF-8 | Java | 2,894 | java | RequestPathParamsAndQueryStringParamsTest.java | Java | [] | null | [] | package org.spincast.tests;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import java.util.List;
import java.util.Map;
import org.junit.Test;
import org.spincast.core.exchange.DefaultRequestContext;
import org.spincast.core.routi... | 2,894 | 0.638217 | 0.625777 | 74 | 38.108109 | 32.596039 | 112 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.797297 | false | false | 4 |
b856014339e7ffddd2c17f34a64af14aa037ecaa | 7,224,135,036,445 | c4e98b709ec0e5897b67c718309b6ebaf1151031 | /moneylaunderingapi/src/main/java/edu/eci/arsw/exams/moneylaunderingapi/service/MoneyLaunderingServiceStub.java | 764b314d7ec863ad6ca43048fd36ba3164bce07b | [] | no_license | Sim0no/Parcial-ARSW-1-Tercio | https://github.com/Sim0no/Parcial-ARSW-1-Tercio | 3e1e25650ba60d274cc518f026b4ed3167f8ad3e | e077dcd6d65fabe6821d2dba7b88d019857c7542 | refs/heads/master | 2021-07-03T13:58:26.440000 | 2020-02-20T14:56:55 | 2020-02-20T14:56:55 | 241,912,583 | 0 | 0 | null | false | 2021-06-04T02:28:44 | 2020-02-20T15:00:38 | 2020-02-20T15:01:20 | 2021-06-04T02:28:43 | 4,005 | 0 | 0 | 2 | Java | false | false | package edu.eci.arsw.exams.moneylaunderingapi.service;
import edu.eci.arsw.exams.moneylaundering.MoneyLaunderingRegistros;
import edu.eci.arsw.exams.moneylaunderingapi.model.SuspectAccount;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.spr... | UTF-8 | Java | 1,609 | java | MoneyLaunderingServiceStub.java | Java | [] | null | [] | package edu.eci.arsw.exams.moneylaunderingapi.service;
import edu.eci.arsw.exams.moneylaundering.MoneyLaunderingRegistros;
import edu.eci.arsw.exams.moneylaunderingapi.model.SuspectAccount;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.spr... | 1,609 | 0.723431 | 0.723431 | 56 | 27.732143 | 25.261129 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.339286 | false | false | 4 |
418bfd9811d1757554a6649065a778873d43bf18 | 2,087,354,174,989 | 477616aa37fca25cb68d71ddfa8e55d199521e7f | /src/main/java/uk/nhs/hee/tis/trainee/forms/config/EcsMetadataConfiguration.java | 5b64d222263d7cfa35018834fbb0702989461aa9 | [
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | Health-Education-England/tis-trainee-forms | https://github.com/Health-Education-England/tis-trainee-forms | db58ac1aeeec966fbe9bef053bb8d650731fa70a | 06e83fd8d135348b1268783e2907a4ca1fdbbebf | refs/heads/main | 2023-09-04T12:36:19.415000 | 2023-08-15T11:12:46 | 2023-08-15T11:12:46 | 248,539,575 | 0 | 0 | MIT | false | 2023-09-11T21:03:40 | 2020-03-19T15:34:50 | 2023-07-18T09:11:21 | 2023-09-11T21:03:36 | 871 | 0 | 0 | 5 | Java | false | false | /*
* The MIT License (MIT)
*
* Copyright 2023 Crown Copyright (Health Education England)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
* associated documentation files (the "Software"), to deal in the Software without restriction,
* including without limita... | UTF-8 | Java | 3,526 | java | EcsMetadataConfiguration.java | Java | [] | null | [] | /*
* The MIT License (MIT)
*
* Copyright 2023 Crown Copyright (Health Education England)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
* associated documentation files (the "Software"), to deal in the Software without restriction,
* including without limita... | 3,526 | 0.733125 | 0.731424 | 99 | 34.616161 | 32.100445 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.454545 | false | false | 4 |
f2b81fcfaca9a72724a5544874956421afe7d7ca | 2,087,354,178,322 | c9b1176b97c89d89a13dcd0fe384ad254f718542 | /spring-cloud-framework/spring-cloud-quartz-center/src/main/java/com/lhq/cloud/quartz/mapper/JobAndTriggerMapper.java | c1e8d2aef74551a8326bb1a99e1eeddc4fdad713 | [] | no_license | SusizeChina/framework-parent | https://github.com/SusizeChina/framework-parent | c9066d4c6aae414da020ac4ebb3c8e0150bf8758 | ef86a0c6c05c3fcd1248d5b58990bbc6e512edc3 | refs/heads/master | 2021-06-29T21:17:40.813000 | 2020-11-15T09:59:18 | 2020-11-15T09:59:18 | 175,994,790 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lhq.cloud.quartz.mapper;
import com.lhq.cloud.quartz.entity.JobAndTrigger;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
@Mapper
public interface JobAndTriggerMapper {
public List<JobAndTrigger> getJobAndTriggerDetails();
}
| UTF-8 | Java | 265 | java | JobAndTriggerMapper.java | Java | [] | null | [] | package com.lhq.cloud.quartz.mapper;
import com.lhq.cloud.quartz.entity.JobAndTrigger;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
@Mapper
public interface JobAndTriggerMapper {
public List<JobAndTrigger> getJobAndTriggerDetails();
}
| 265 | 0.807547 | 0.807547 | 11 | 23.09091 | 21.309216 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.454545 | false | false | 4 |
32cfb1ccba553f40c4a6532e1ddaf2a054f3cdc3 | 3,779,571,274,096 | 14d8b833b6422a18463ab447546b1033fb0f2b4a | /src/test/java/cz/zutrasoft/mainweb/database/AllObjectsTests.java | 1757624ac34ccaf706cb7ebb22d9a71e4fc72a74 | [] | no_license | MichalVaclavek/wEasy | https://github.com/MichalVaclavek/wEasy | f21df4b92fec2cee5192ff01f2014dbc82b5231a | fa02418956d8cdad23ac8958e218852b546342ed | refs/heads/master | 2021-05-10T14:19:35.259000 | 2018-04-02T20:13:12 | 2018-04-02T20:13:12 | 118,512,219 | 0 | 0 | null | true | 2018-04-02T18:21:17 | 2018-01-22T20:38:56 | 2018-03-26T20:18:43 | 2018-04-02T18:21:17 | 359 | 0 | 0 | 0 | Java | false | null | package cz.zutrasoft.mainweb.database;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({ TestArticle.class, TestCategory.class, TestComment.class, TestContactMessage.class, TestDirectory.class,
TestImage.clas... | UTF-8 | Java | 406 | java | AllObjectsTests.java | Java | [] | null | [] | package cz.zutrasoft.mainweb.database;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
@RunWith(Suite.class)
@SuiteClasses({ TestArticle.class, TestCategory.class, TestComment.class, TestContactMessage.class, TestDirectory.class,
TestImage.clas... | 406 | 0.785714 | 0.785714 | 13 | 29.23077 | 32.793419 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.153846 | false | false | 4 |
5a9082e259c90cb011706e55ae8a131f5abe6185 | 5,214,090,363,276 | 09ca6a0bf9047075aa42ae4f58e4197013116ff2 | /xml/StarCalcParser/SXCParser.java | 178c81992f04ba6bc5b8c516cd7f44c3229b72cc | [] | no_license | raph38130/rplgm | https://github.com/raph38130/rplgm | 8e588a780c9cd46b2834d23543c6009265fa1184 | 53eda9dd29d06ac85e0c169b694210103486044d | refs/heads/master | 2021-01-06T20:41:34.702000 | 2015-10-16T06:12:41 | 2015-10-16T06:12:41 | 40,801,460 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /* $Id: SXCParser.java,v 1.3 2002/07/10 15:52:31 raph Exp $
*
* parse an .sxc file (StarOffice Calc spreadsheet)
* can't find office.dtd even when not validating
* "Relative URI "office.dtd"; can not be resolved without a base URI."
* -> add 2nd arg to parse()
* pb between dtd 1.5 so52 et 1.6 so6...
*
* Mon M... | IBM852 | Java | 3,253 | java | SXCParser.java | Java | [
{
"context": "/* $Id: SXCParser.java,v 1.3 2002/07/10 15:52:31 raph Exp $\n *\n * parse an .sxc file (StarOffice Calc s",
"end": 53,
"score": 0.9833559989929199,
"start": 49,
"tag": "USERNAME",
"value": "raph"
},
{
"context": "tln(\"$Id: SXCParser.java,v 1.3 2002/07/10 15:52:31 raph ... | null | [] | /* $Id: SXCParser.java,v 1.3 2002/07/10 15:52:31 raph Exp $
*
* parse an .sxc file (StarOffice Calc spreadsheet)
* can't find office.dtd even when not validating
* "Relative URI "office.dtd"; can not be resolved without a base URI."
* -> add 2nd arg to parse()
* pb between dtd 1.5 so52 et 1.6 so6...
*
* Mon M... | 3,253 | 0.652522 | 0.625769 | 101 | 31.188118 | 25.158394 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.326733 | false | false | 4 |
9a5b7b74a9eaf6f973de2dfb858a6b39d655c274 | 4,380,866,686,677 | 6f7cabba18308d348be2fbb286f396956313ddda | /yy-eth-contract/src/main/java/com/dapp/controller/HelloWordController.java | 8d63c64421908de9e6a99f1701f8356188287bf0 | [] | no_license | yhbetter/solidity | https://github.com/yhbetter/solidity | 5f6ad54893841664cf256f09952d45e81f41f484 | 576265cff5a534a7df2480907f951a0b099aab7f | refs/heads/master | 2021-05-12T00:29:22.117000 | 2018-08-13T08:16:06 | 2018-08-13T08:16:06 | 117,534,272 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dapp.controller;
import com.dapp.service.HelloWordService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
/**
* 版权所有:北京... | UTF-8 | Java | 790 | java | HelloWordController.java | Java | [] | null | [] | package com.dapp.controller;
import com.dapp.service.HelloWordService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
/**
* 版权所有:北京... | 790 | 0.690981 | 0.675066 | 34 | 21.17647 | 19.251387 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.323529 | false | false | 4 |
ad58a3f54618a73daa7406595e80229423f50742 | 4,380,866,687,026 | 82f581a93c6e619c1417fcf7e67e6af180701999 | /cagrid/Software/core/caGrid/projects/introduce/src/java/Portal/gov/nih/nci/cagrid/introduce/portal/common/LogViewer.java | 7739c3799ce338d46830124de5bd7d4ec1b48fb9 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0"
] | permissive | NCIP/cagrid | https://github.com/NCIP/cagrid | e9ad9121d41d03185df7b1f08381ad19745a0ce6 | b1b99fdeaa4d4f15117c01c5f1e5eeb2cb8180bb | refs/heads/master | 2023-03-13T15:50:00.120000 | 2014-04-02T19:15:14 | 2014-04-02T19:15:14 | 9,086,195 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package gov.nih.nci.cagrid.introduce.portal.common;
import java.io.File;
import javax.swing.event.InternalFrameAdapter;
import javax.swing.event.InternalFrameEvent;
import org.cagrid.grape.ApplicationComponent;
public class LogViewer extends ApplicationComponent {
private LogPanel logPanel = null;
/**
... | UTF-8 | Java | 1,155 | java | LogViewer.java | Java | [] | null | [] | package gov.nih.nci.cagrid.introduce.portal.common;
import java.io.File;
import javax.swing.event.InternalFrameAdapter;
import javax.swing.event.InternalFrameEvent;
import org.cagrid.grape.ApplicationComponent;
public class LogViewer extends ApplicationComponent {
private LogPanel logPanel = null;
/**
... | 1,155 | 0.615584 | 0.611255 | 54 | 20.388889 | 21.457466 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.259259 | false | false | 4 |
4166fbb25c8c09979d850e55cd159c3ba0484fd7 | 23,648,089,990,499 | 9b1630cecf8dc1d23b8b494797e6c2469f5c423c | /src/com/iot/service/AlarmService.java | daf5fc73e2962840d511c79bb3185dc1aca0be84 | [] | no_license | unlam/iot | https://github.com/unlam/iot | ba7fc45fac575ae28ab851a0682d2ad4998ec265 | 5efee59a289970a2e9d75906bf1c13263fc15c37 | refs/heads/develop | 2021-01-21T15:19:44.763000 | 2016-06-04T18:29:14 | 2016-06-04T18:29:14 | 56,352,712 | 0 | 0 | null | false | 2016-06-04T15:23:41 | 2016-04-15T22:12:34 | 2016-04-15T22:29:37 | 2016-06-04T15:23:41 | 1,483 | 0 | 0 | 2 | Java | null | null | package com.iot.service;
import java.io.File;
import java.io.IOException;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Response;
import org.codehaus.jackson.map.ObjectMapper;
import org.codehaus.jackson.map.ObjectWriter;
import com.iot.dto.AlarmStatus;
@Path... | UTF-8 | Java | 1,290 | java | AlarmService.java | Java | [] | null | [] | package com.iot.service;
import java.io.File;
import java.io.IOException;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Response;
import org.codehaus.jackson.map.ObjectMapper;
import org.codehaus.jackson.map.ObjectWriter;
import com.iot.dto.AlarmStatus;
@Path... | 1,290 | 0.689147 | 0.684496 | 44 | 28.318182 | 25.709719 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.522727 | false | false | 4 |
a6cd694019c1341c0633da6652c606516fed41e5 | 22,282,290,376,280 | d8d13249ebca164b3f84d4d7f7def9127a767112 | /camerabioandroid/src/main/java/com/example/camerabioandroid/camerabiomanager/exif/OrderedDataOutputStream.java | 87556e7b3aff5c30fc48686fbfff2d6d574e30f0 | [
"MIT"
] | permissive | acesso-io/camerabio-android | https://github.com/acesso-io/camerabio-android | f079dc641d0baae4cb98f5072fcaafd5c1fa8f85 | ece659e3ae0ea4108ca7d07764d35c841e5d2da5 | refs/heads/master | 2020-06-07T23:37:43.906000 | 2020-02-21T14:58:15 | 2020-02-21T14:58:15 | 193,116,332 | 6 | 6 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.camerabioandroid.camerabiomanager.exif;
import java.io.FilterOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
class OrderedDataOutputStream extends FilterOutputStream {
private final ByteBuffer mByteBuffer = ByteBuffe... | UTF-8 | Java | 1,189 | java | OrderedDataOutputStream.java | Java | [] | null | [] | package com.example.camerabioandroid.camerabiomanager.exif;
import java.io.FilterOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
class OrderedDataOutputStream extends FilterOutputStream {
private final ByteBuffer mByteBuffer = ByteBuffe... | 1,189 | 0.710681 | 0.708158 | 35 | 33 | 23.725815 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.657143 | false | false | 4 |
80ca3d49ef02fcad3a0a2518bb0e39d7264435f5 | 20,005,957,667,111 | 0aa7b74cbb78b06b6aba7ffa23e4834ad323a3dd | /src/main/java/ir/ac/ut/dataAccess/dataMapper/bid/BidMapper.java | 5851cb4b52a5f4afeba73bd8e174e33463b538b2 | [] | no_license | iamiranjbar/JobOonJa | https://github.com/iamiranjbar/JobOonJa | c3e0d771a3671608ba63232020e85b7b818aeb72 | cb5117482043f5a8a2a2e5f29549cc8d37db07f3 | refs/heads/master | 2021-09-22T14:24:09.841000 | 2021-09-19T08:14:12 | 2021-09-19T08:14:12 | 169,264,922 | 10 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ir.ac.ut.dataAccess.dataMapper.bid;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import ir.ac.ut.dataAccess.ConnectionPool;
import ir.ac.ut.dataAccess.dataMapper.Mapper;
import ir.ac.u... | UTF-8 | Java | 5,022 | java | BidMapper.java | Java | [] | null | [] | package ir.ac.ut.dataAccess.dataMapper.bid;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import ir.ac.ut.dataAccess.ConnectionPool;
import ir.ac.ut.dataAccess.dataMapper.Mapper;
import ir.ac.u... | 5,022 | 0.659498 | 0.655715 | 158 | 30.784811 | 24.490076 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.506329 | false | false | 4 |
c34da84e3e2b1d131353c640c493f5e795352f28 | 20,005,957,668,368 | 522750eda2a610236237650048fc1c7f31020530 | /src/m2/java/projet/controller/EventItem.java | 5432fa04cb007c09f0d42f9bc20f4219530fc702 | [
"MIT"
] | permissive | Mikeprod/ProjetJava | https://github.com/Mikeprod/ProjetJava | afb644ae96740a627d542107f68f12f033b533a3 | f399512c99f433ba01745eff7b4f9959cee6143b | refs/heads/master | 2021-01-16T22:30:26.324000 | 2015-12-26T10:51:47 | 2015-12-26T10:51:47 | 48,241,820 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package m2.java.projet.controller;
import java.io.File;
import java.io.IOException;
import java.util.Hashtable;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.Desktop;
import java.awt.Component;
import java.awt.Color;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
imp... | UTF-8 | Java | 3,290 | java | EventItem.java | Java | [] | null | [] | package m2.java.projet.controller;
import java.io.File;
import java.io.IOException;
import java.util.Hashtable;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.Desktop;
import java.awt.Component;
import java.awt.Color;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
imp... | 3,290 | 0.718922 | 0.715248 | 110 | 28.700001 | 23.805099 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.272727 | false | false | 4 |
abbe5e9914e53f4d9e31a28fa3d5fc8fdf1c5ed8 | 23,931,557,819,537 | 5b234911808e762cffaae8aa99dd5dfc3b7f7a75 | /src/main/java/com/hrboss/integration/jxt/daos/JxtPositionDAO.java | 0225e0f11c1de59bca3c3a3fe707cd39caa44cf6 | [] | no_license | mobject/jxt-integration | https://github.com/mobject/jxt-integration | 5687cd3bc7e4ff6cd85c241ca8db84d308a8ec26 | 83160c6fa2a9c07e07eb4ab4b934a2619cca3d6a | refs/heads/master | 2016-05-26T09:57:33.134000 | 2015-03-13T09:27:05 | 2015-03-13T09:27:05 | 32,146,924 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hrboss.integration.jxt.daos;
import com.hrboss.integration.jxt.beans.JXTJobPostRequest;
import com.hrboss.integration.jxt.beans.JXTJobPostResponse;
import com.hrboss.integration.jxt.models.JxtPosition;
import org.springframework.dao.EmptyResultDataAccessException;
import org.springframework.jdbc.core.JdbcT... | UTF-8 | Java | 5,555 | java | JxtPositionDAO.java | Java | [
{
"context": "il.Date;\nimport java.util.List;\n\n/**\n * Created by mobject on 3/8/2015.\n */\n@Repository\npublic class JxtPosi",
"end": 720,
"score": 0.9996128082275391,
"start": 713,
"tag": "USERNAME",
"value": "mobject"
}
] | null | [] | package com.hrboss.integration.jxt.daos;
import com.hrboss.integration.jxt.beans.JXTJobPostRequest;
import com.hrboss.integration.jxt.beans.JXTJobPostResponse;
import com.hrboss.integration.jxt.models.JxtPosition;
import org.springframework.dao.EmptyResultDataAccessException;
import org.springframework.jdbc.core.JdbcT... | 5,555 | 0.686589 | 0.685509 | 134 | 40.455223 | 35.085102 | 158 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.791045 | false | false | 4 |
50f284dd80f4dd8e7651cf5f02dff476ecf945c3 | 16,716,012,737,719 | ab7c378ac568560c3755194d01ea0c9e926d95ac | /src/main/java/tree/topdown/FlipEquivalentBinaryTrees.java | e6142fd542a9e6f2f25c6f7bfd33f764898916fc | [
"Apache-2.0"
] | permissive | WeiyanXiang/algorithm-study | https://github.com/WeiyanXiang/algorithm-study | cc24b5ae299aace182562f312ba93ce79675b856 | 3b6ecbdaf24cafba50e4934d6c1f6073c6ffa884 | refs/heads/master | 2023-01-12T11:45:38.088000 | 2023-01-01T22:43:54 | 2023-01-01T22:43:54 | 117,467,774 | 3 | 1 | Apache-2.0 | false | 2021-08-31T16:21:00 | 2018-01-14T21:22:31 | 2021-08-31T16:17:13 | 2021-08-31T16:20:59 | 12,931 | 3 | 1 | 1 | Java | false | false | package tree.topdown;/**
* @author Weiyan Xiang on 2021/5/30
*/
import tree.TreeNode;
public class FlipEquivalentBinaryTrees {
/**
* 951. Flip Equivalent Binary Trees
* <p>
* https://leetcode.com/problems/flip-equivalent-binary-trees/
* <p>
* my own ac ans
*/
public boolean fl... | UTF-8 | Java | 1,033 | java | FlipEquivalentBinaryTrees.java | Java | [
{
"context": "package tree.topdown;/**\n * @author Weiyan Xiang on 2021/5/30\n */\n\nimport tree.TreeNode;\n\npublic c",
"end": 48,
"score": 0.9998135566711426,
"start": 36,
"tag": "NAME",
"value": "Weiyan Xiang"
}
] | null | [] | package tree.topdown;/**
* @author <NAME> on 2021/5/30
*/
import tree.TreeNode;
public class FlipEquivalentBinaryTrees {
/**
* 951. Flip Equivalent Binary Trees
* <p>
* https://leetcode.com/problems/flip-equivalent-binary-trees/
* <p>
* my own ac ans
*/
public boolean flipEqui... | 1,027 | 0.579865 | 0.535334 | 31 | 32.322582 | 30.588198 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.741935 | false | false | 4 |
a8e42455afd7997f8b3a097769962b11e93b10b6 | 26,053,271,667,124 | e095c0eddc69a07888705963962ad613bcfd89d4 | /PP/AbstractFigures2_1.java | 573c17c6fa47cfaa0654e17eb3d8c4902da7cfb7 | [] | no_license | diazRicardo/AP-CS-065477-Cody-Reimers | https://github.com/diazRicardo/AP-CS-065477-Cody-Reimers | 9aff2cb0595a24f8af9034cbf4466fab1fed129e | 6dcc840bb8fe6383c34031afd10beba0333089e7 | refs/heads/master | 2020-03-29T04:25:33.292000 | 2017-05-15T15:45:22 | 2017-05-15T15:45:22 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class AbstractFigures2_1
{
public static void main(String[] args)
{
for (int height = 1; height <= 7; height++)
{
for (int a = 1; a <= (7 - height); a++)
{
System.out.print("*");
} // prints left border stars
for (int b = 1;... | UTF-8 | Java | 1,210 | java | AbstractFigures2_1.java | Java | [] | null | [] | public class AbstractFigures2_1
{
public static void main(String[] args)
{
for (int height = 1; height <= 7; height++)
{
for (int a = 1; a <= (7 - height); a++)
{
System.out.print("*");
} // prints left border stars
for (int b = 1;... | 1,210 | 0.415702 | 0.399174 | 46 | 25.304348 | 18.245749 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.478261 | false | false | 4 |
beb25caf0eb7afd9c2ae0ad761a46166de0e3a82 | 30,004,641,590,535 | b3860a1a363059f7b3852e57988cea2fc84c0a98 | /src/Luminance.java | c7c1069d9b4412bfb6d5b835b9183b846a141e67 | [] | no_license | imharrymargalotti/JavaSlideShow | https://github.com/imharrymargalotti/JavaSlideShow | 63e11b0c5ef4424bf53d3316e0c903052fc6ebf0 | fdae7954b6a4838407575b6a67d0db1fd834d9e9 | refs/heads/master | 2020-03-12T17:49:47.175000 | 2018-04-23T19:26:24 | 2018-04-23T19:26:24 | 130,745,911 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.awt.Color;
public class Luminance {
// return the monochrome luminance of given color
public static double lum(Color color) {
int r = color.getRed();
int g = color.getGreen();
int b = color.getBlue();
return 0.299*r + 0.587*g + 0.114*b;
}
public static Co... | UTF-8 | Java | 954 | java | Luminance.java | Java | [] | null | [] | import java.awt.Color;
public class Luminance {
// return the monochrome luminance of given color
public static double lum(Color color) {
int r = color.getRed();
int g = color.getGreen();
int b = color.getBlue();
return 0.299*r + 0.587*g + 0.114*b;
}
public static Co... | 954 | 0.559748 | 0.51153 | 44 | 20.704546 | 20.793989 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.545455 | false | false | 4 |
4a3a184fc0eddbe67c5290211e11f5d92d694d08 | 24,017,457,140,339 | a69c43cb7e9aab6c3af619ff812ca547be1a2a76 | /quick-http/src/main/java/abs/ixi/httpclient/HttpRequest.java | d817c71e674fee2565b4517c4e2b93e740af9e6d | [
"Apache-2.0"
] | permissive | tbundle/stringflow | https://github.com/tbundle/stringflow | 56e7978eeb0d42a8671557ea413a07498d59518f | 4bd555a7639d825926569ccf1478e6780cb27004 | refs/heads/main | 2023-06-25T06:28:48.491000 | 2021-07-28T10:58:21 | 2021-07-28T10:58:21 | 390,269,637 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package abs.ixi.httpclient;
import java.io.IOException;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Http request implementation. The implementation is not thread-safe
*/
public class HttpRequest {
private static final Logger LOGGER = LoggerFactory.getLogger(HttpRequest.cla... | UTF-8 | Java | 2,216 | java | HttpRequest.java | Java | [] | null | [] | package abs.ixi.httpclient;
import java.io.IOException;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Http request implementation. The implementation is not thread-safe
*/
public class HttpRequest {
private static final Logger LOGGER = LoggerFactory.getLogger(HttpRequest.cla... | 2,216 | 0.740975 | 0.738718 | 102 | 20.725491 | 22.206322 | 81 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.27451 | false | false | 4 |
5185c31470d806762c57125ccb33d32ed7cb9ba1 | 15,015,205,667,054 | 0f843a089e443c64d4863929ba224a4b117fe947 | /JavaStudyEnterpriseApp-ejb/src/java/javastudyproject/schedulerservice/SchedulerTimerServiceBean.java | 7205c2b94916a0c081841689faec1b231089e5a7 | [] | no_license | eladyarkoni/JavaStudyEnterpriseComplete | https://github.com/eladyarkoni/JavaStudyEnterpriseComplete | e341b94f2f2146810509c6311dc2f3b7bc2b61ee | 92f5c196a7a86e0db521e1e05bc2264a6d4274eb | refs/heads/master | 2016-09-09T15:37:41.567000 | 2011-02-26T13:12:33 | 2011-02-26T13:12:33 | 1,371,190 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package javastudyproject.schedulerservice;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javastudyproject.emailsender.EmailSenderService;
import javastudyproject.model.Order;
import javastudyproject.model.Produ... | UTF-8 | Java | 2,449 | java | SchedulerTimerServiceBean.java | Java | [
{
"context": "ityStatistics()\n {\n String toAddress = \"alonpis@gmail.com\";\n try\n {\n Product mostP",
"end": 1966,
"score": 0.9999189972877502,
"start": 1949,
"tag": "EMAIL",
"value": "alonpis@gmail.com"
}
] | null | [] | package javastudyproject.schedulerservice;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javastudyproject.emailsender.EmailSenderService;
import javastudyproject.model.Order;
import javastudyproject.model.Produ... | 2,439 | 0.63332 | 0.626786 | 74 | 32.094593 | 28.895042 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.702703 | false | false | 4 |
53a89c0bd68c214353c529f530dcad55538e9f74 | 22,505,628,645,386 | b60554fa48908b88ff1eba7b3bfd0d100a37383f | /MovieWeb/src/main/java/com/team2/movie/dao/api/MovieDetailDao.java | fd7f6c39caf1c9cf67f17ce1ef7e84f957ae817e | [
"MIT"
] | permissive | tanbinh123/springboot_movie_project | https://github.com/tanbinh123/springboot_movie_project | 06de3541b5b225baf06abeea9ca1621362b57c97 | 4c09d26578bb22cf222e58ea1213df86f1540b8b | refs/heads/master | 2023-03-16T07:58:50.728000 | 2021-01-18T05:53:29 | 2021-01-18T05:53:29 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.team2.movie.dao.api;
import java.util.List;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import com.team2.movie.dao.dto.MovieDetail;
@Repository
public interface MovieDetailDao extends JpaRepository <MovieDetail, Long>{
MovieDe... | UTF-8 | Java | 362 | java | MovieDetailDao.java | Java | [] | null | [] | package com.team2.movie.dao.api;
import java.util.List;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import com.team2.movie.dao.dto.MovieDetail;
@Repository
public interface MovieDetailDao extends JpaRepository <MovieDetail, Long>{
MovieDe... | 362 | 0.798343 | 0.792818 | 13 | 26 | 25.02614 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.769231 | false | false | 4 |
a52f620e28fb7800f7d3d45fc60e5b88165677fb | 29,532,195,195,842 | ce0268ef215e44dc50eea54fae1cb85e35f127f7 | /20_Java8API/src/com/kh/java/lambda/LambdaTest03.java | a4bc71fc0ceb35195f77afe532e1704311cb9d99 | [] | no_license | nob0dj/java | https://github.com/nob0dj/java | 3a8dac4fc76992c7fc887ed304e629b5699e8fe9 | 27d03e018d0c94322b5927805ceca9bc4c782807 | refs/heads/master | 2018-10-16T11:14:39.011000 | 2018-10-15T03:44:44 | 2018-10-15T03:44:44 | 139,448,868 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.kh.java.lambda;
import java.util.Arrays;
import java.util.List;
import java.util.Set;
import java.util.TreeSet;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.function.Supplier;
/**
* 대부분의 메소드시그니쳐는 비슷하다.
* 매개변수가 없거나, 한개, 두개, ... | UTF-8 | Java | 2,494 | java | LambdaTest03.java | Java | [
{
"context": "* java8 api는 이를 위한 함수형 인터페이스를 제공함.\n\n * \n * @author nobodj\n * @see java.util.function패키지\n */\npublic class La",
"end": 452,
"score": 0.9995954632759094,
"start": 446,
"tag": "USERNAME",
"value": "nobodj"
}
] | null | [] | package com.kh.java.lambda;
import java.util.Arrays;
import java.util.List;
import java.util.Set;
import java.util.TreeSet;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.function.Supplier;
/**
* 대부분의 메소드시그니쳐는 비슷하다.
* 매개변수가 없거나, 한개, 두개, ... | 2,494 | 0.630664 | 0.613277 | 80 | 22.725 | 19.33066 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.925 | false | false | 4 |
8025a1edc3382cd53290c22e42eddb2382d3e34b | 10,960,756,609,758 | ac943b8cdc5dd80ee4e4cc841e2e5d8b3df84e12 | /blueocean-pipeline-api-impl/src/main/java/io/jenkins/blueocean/rest/impl/pipeline/PipelineNodeImpl.java | 5f5dd2b5000e5561e694add654e7c861bb3ab219 | [
"MIT"
] | permissive | adityavikram-mago/blueocean-plugin | https://github.com/adityavikram-mago/blueocean-plugin | a40a8bc90a7906337931ac3b72d891634fc20fc4 | 4c04219dc9f8ddba2ef7837f95e78c319012245e | refs/heads/master | 2021-01-11T17:57:52.324000 | 2017-01-24T00:59:41 | 2017-01-24T00:59:41 | 79,883,988 | 1 | 0 | null | true | 2017-01-24T06:08:37 | 2017-01-24T06:08:37 | 2017-01-24T03:03:05 | 2017-01-24T03:10:43 | 10,655 | 0 | 0 | 0 | null | null | null | package io.jenkins.blueocean.rest.impl.pipeline;
import io.jenkins.blueocean.rest.hal.Link;
import io.jenkins.blueocean.rest.model.BlueActionProxy;
import io.jenkins.blueocean.rest.model.BlueInputStep;
import io.jenkins.blueocean.rest.model.BluePipelineNode;
import io.jenkins.blueocean.rest.model.BluePipelineStep;
imp... | UTF-8 | Java | 3,729 | java | PipelineNodeImpl.java | Java | [
{
"context": "ntation of {@link BluePipelineNode}.\n *\n * @author Vivek Pandey\n * @see FlowNode\n */\npublic class PipelineNodeImp",
"end": 875,
"score": 0.9998508095741272,
"start": 863,
"tag": "NAME",
"value": "Vivek Pandey"
}
] | null | [] | package io.jenkins.blueocean.rest.impl.pipeline;
import io.jenkins.blueocean.rest.hal.Link;
import io.jenkins.blueocean.rest.model.BlueActionProxy;
import io.jenkins.blueocean.rest.model.BlueInputStep;
import io.jenkins.blueocean.rest.model.BluePipelineNode;
import io.jenkins.blueocean.rest.model.BluePipelineStep;
imp... | 3,723 | 0.657013 | 0.656744 | 146 | 24.541096 | 21.900499 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.390411 | false | false | 4 |
c148df74e45a8dfdcaf4f19142c3c3415c45fabd | 19,662,360,316,620 | 238adff3be9baa4cf54cc063c9cea277f8e289a2 | /packages/react-native/ReactAndroid/src/main/java/com/facebook/react/modules/network/ProgressiveStringDecoder.java | 811584f56e72f7ddb2adcb9d489cbfa150e6fdf4 | [
"MIT",
"CC-BY-4.0",
"CC-BY-NC-SA-4.0",
"CC-BY-SA-4.0"
] | permissive | facebook/react-native | https://github.com/facebook/react-native | e7c418db82563907b3564d81d505b3125b3a6cc7 | 041f459d8c674f6817e0ac1851be49c435d53089 | refs/heads/main | 2023-09-04T01:53:34.965000 | 2023-09-02T23:23:34 | 2023-09-02T23:23:34 | 29,028,775 | 131,047 | 32,710 | MIT | false | 2023-09-14T21:49:45 | 2015-01-09T18:10:16 | 2023-09-14T21:21:05 | 2023-09-14T21:49:44 | 862,133 | 111,867 | 23,791 | 1,668 | Java | false | false | /*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
package com.facebook.react.modules.network;
import com.facebook.common.logging.FLog;
import com.facebook.react.common.ReactConst... | UTF-8 | Java | 2,779 | java | ProgressiveStringDecoder.java | Java | [] | null | [] | /*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
package com.facebook.react.modules.network;
import com.facebook.common.logging.FLog;
import com.facebook.react.common.ReactConst... | 2,779 | 0.695934 | 0.691976 | 86 | 31.313953 | 27.951479 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.627907 | false | false | 4 |
ee2032d092bbfad4614b63b1785bed6e2d6776d6 | 5,909,875,032,222 | cac5587d6fce718dff1fe9368dde9a8eb9815446 | /lib/sqt/src/test/java/edu/mayo/mprc/sqt/TestCleanupSqt.java | 5f122df11cfc819f9744f7e327e742b39ae2192a | [
"Apache-2.0"
] | permissive | romanzenka/swift | https://github.com/romanzenka/swift | e999255872eea48bd6261a87185d2403b9ab27d8 | 82232750807696ba48fa84f0d5b43e558a3222a5 | refs/heads/master | 2022-02-08T13:26:43.840000 | 2016-02-17T20:49:04 | 2016-02-17T20:49:04 | 2,935,040 | 2 | 2 | Apache-2.0 | false | 2022-02-09T23:07:07 | 2011-12-07T19:29:21 | 2015-04-30T12:53:37 | 2022-02-09T23:07:06 | 20,141 | 2 | 2 | 14 | Java | false | false | package edu.mayo.mprc.sqt;
import com.google.common.base.Charsets;
import edu.mayo.mprc.integration.Installer;
import edu.mayo.mprc.utilities.FileUtilities;
import edu.mayo.mprc.utilities.TestingUtilities;
import org.testng.Assert;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
i... | UTF-8 | Java | 1,406 | java | TestCleanupSqt.java | Java | [
{
"context": ".File;\nimport java.io.IOException;\n\n/**\n * @author Roman Zenka\n */\npublic final class TestCleanupSqt {\n\tprivate ",
"end": 432,
"score": 0.9995514154434204,
"start": 421,
"tag": "NAME",
"value": "Roman Zenka"
}
] | null | [] | package edu.mayo.mprc.sqt;
import com.google.common.base.Charsets;
import edu.mayo.mprc.integration.Installer;
import edu.mayo.mprc.utilities.FileUtilities;
import edu.mayo.mprc.utilities.TestingUtilities;
import org.testng.Assert;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
i... | 1,401 | 0.779516 | 0.775249 | 47 | 28.914894 | 24.863739 | 95 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.553192 | false | false | 4 |
3aad5741e1cb92f5a10dcea4ba172bce619ca46e | 15,092,515,087,089 | 62535d409ecbe3cbf83d89e166056d29e76341fc | /src/com/emos/trans/TransService.java | 761713c99ea7355d2ad7a69859392bb0d26c75e6 | [] | no_license | mangohsiao/BaseStation | https://github.com/mangohsiao/BaseStation | 5486d6c4dc5524bc6237bbf63de65ccd8369b1cd | 6350a71053344544f2d6968c86fcef15ab770dd2 | refs/heads/master | 2016-09-06T00:47:40.284000 | 2014-12-22T17:55:58 | 2014-12-22T17:55:58 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.emos.trans;
import java.io.IOException;
import java.util.Timer;
import java.util.TimerTask;
import org.json.JSONException;
import org.json.JSONObject;
import com.example.basestation.R;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.app.Service;
import andro... | GB18030 | Java | 11,037 | java | TransService.java | Java | [
{
"context": "rivate Handler msgHandler;\r\n\tprivate String ip = \"125.216.243.250\";\r\n\tprivate int port = 8002;\r\n\r\n\tprivate int netS",
"end": 1454,
"score": 0.9997555613517761,
"start": 1439,
"tag": "IP_ADDRESS",
"value": "125.216.243.250"
},
{
"context": "ct json = new JSO... | null | [] | package com.emos.trans;
import java.io.IOException;
import java.util.Timer;
import java.util.TimerTask;
import org.json.JSONException;
import org.json.JSONObject;
import com.example.basestation.R;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.app.Service;
import andro... | 11,036 | 0.625108 | 0.615 | 437 | 21.768879 | 18.615442 | 89 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.860412 | false | false | 4 |
cb3abc7c507619e8263b9a9b44375b75773cf54b | 31,482,110,300,496 | 33dde38298999f2d114c3316153aca3364a6684f | /src/java/com/cn/util/Constants.java | ad8a30230406812943daf823345d6d9714e24e93 | [] | no_license | LFengYe/ZhongYangSteel | https://github.com/LFengYe/ZhongYangSteel | 3332e6decb5a37e51df45049d309bd2d9886088a | b5dc96a6df51acc1be66ac821ba23073404588dc | refs/heads/master | 2021-01-12T04:53:08.438000 | 2017-10-15T08:33:44 | 2017-10-15T08:33:44 | 77,807,227 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.cn.util;
/**
*
* @author LFeng
*/
public class Constants {
/** 英辰科技服务器*/
// public static fin... | UTF-8 | Java | 3,792 | java | Constants.java | Java | [
{
"context": "\r\n */\r\npackage com.cn.util;\r\n\r\n/**\r\n *\r\n * @author LFeng\r\n */\r\npublic class Constants {\r\n \r\n /** 英辰科",
"end": 239,
"score": 0.9770739674568176,
"start": 234,
"tag": "USERNAME",
"value": "LFeng"
},
{
"context": "/\r\n// public static final St... | 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.cn.util;
/**
*
* @author LFeng
*/
public class Constants {
/** 英辰科技服务器*/
// public static fin... | 3,766 | 0.606947 | 0.557282 | 98 | 31.489796 | 27.776529 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.387755 | false | false | 4 |
574530842a03b160713dcab4a7aff8179d86c1e4 | 6,760,278,535,073 | c4292cd17746df486326ef6ed7d113f48a444d5e | /src/main/java/com/cable/library/response/UserInputRequest.java | 86d502f424b018c92df797192dd447aa9f3d49e6 | [] | no_license | KunJakob/cable-libs | https://github.com/KunJakob/cable-libs | 6eb3f9806fe151865bbd3cc51326fa02d62877aa | 868d6ec39a3d882790edba407a9a5d1f290327d4 | refs/heads/master | 2023-05-07T07:21:47.325000 | 2021-05-13T07:25:37 | 2021-05-13T07:25:37 | 366,364,024 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cable.library.response;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.util.text.ITextComponent;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.ServerChatEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import javax.annotat... | UTF-8 | Java | 3,470 | java | UserInputRequest.java | Java | [] | null | [] | package com.cable.library.response;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.util.text.ITextComponent;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.ServerChatEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import javax.annotat... | 3,470 | 0.772046 | 0.772046 | 123 | 27.211382 | 27.507944 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.772358 | false | false | 4 |
3527b0af0f76e8bac3f6d2c41a6a6f1896239101 | 22,986,664,988,262 | eb6472d493bf986af22cf7b0cc7d098c21ac3c31 | /PracticeNtest/src/PracticeNtest.java | b09d502067dab6880f024286e6ba895be035ac2e | [] | no_license | happy4learning/PracticeNtest | https://github.com/happy4learning/PracticeNtest | d2f8fa43fdc9df5d1989c2a1b62a117d671c3123 | 9fdef4f225db962defec078e7f91c9682731a0e6 | refs/heads/master | 2020-05-25T09:21:27.703000 | 2019-05-21T01:32:11 | 2019-05-21T01:32:11 | 187,733,961 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
public class PracticeNtest
{
public static void main(String[] args)
{
System.out.println("first Hello world program of of GitHub repository");
//System.out.println("second Hello world program of of GitHub repository");
}
}
| UTF-8 | Java | 252 | java | PracticeNtest.java | Java | [] | null | [] |
public class PracticeNtest
{
public static void main(String[] args)
{
System.out.println("first Hello world program of of GitHub repository");
//System.out.println("second Hello world program of of GitHub repository");
}
}
| 252 | 0.678571 | 0.678571 | 13 | 17.23077 | 27.044561 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.769231 | false | false | 4 |
9ed27816eddbc868b3355940383bb360325da7da | 773,094,120,858 | 57dfb46cbd846a38a09aaf8776bfbddfbf50d628 | /LaborExchangeAlpha/src/Entities/Unemployed.java | 6db124ba8f8aa296654dc541801f58874ec13da6 | [] | no_license | Pavaev/Excelsior | https://github.com/Pavaev/Excelsior | 81a21577657663fe5fa21bc95bb8eb29ad797792 | 0203f2ff2461497f485112bd46e2e4738a08e3b4 | refs/heads/master | 2021-01-10T16:02:54.056000 | 2015-12-12T14:01:55 | 2015-12-12T14:01:55 | 43,767,793 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Entities;
/**
* Created by Daniel Shchepetov on 07.12.2015.
*/
public class Unemployed {
private int id;
private String name;
private int age;
private String sex;
private String sp;
private String home;
private String address;
private String phone;
private St... | UTF-8 | Java | 4,547 | java | Unemployed.java | Java | [
{
"context": "package Entities;\r\n\r\n/**\r\n * Created by Daniel Shchepetov on 07.12.2015.\r\n */\r\npublic class Unemployed {\r\n ",
"end": 57,
"score": 0.9998766779899597,
"start": 40,
"tag": "NAME",
"value": "Daniel Shchepetov"
},
{
"context": "veN) {\r\n this.id = id;\r\... | null | [] | package Entities;
/**
* Created by <NAME> on 07.12.2015.
*/
public class Unemployed {
private int id;
private String name;
private int age;
private String sex;
private String sp;
private String home;
private String address;
private String phone;
private String stud;
... | 4,536 | 0.546734 | 0.544975 | 197 | 21.081219 | 24.528105 | 204 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.649746 | false | false | 4 |
47ab8ecf15955b3e6c307527f58867af25963232 | 3,350,074,496,820 | 663732fb0c158ab90e06354af236df7111612fa0 | /src/hu/kovand/sketch3d/geometry/Vec3.java | 79861597ab3b0e5d054b89ccef0d7a02db6516a1 | [] | no_license | kovand11/Sketch3D | https://github.com/kovand11/Sketch3D | 54e68f5aa9b0ce094297344a61e2ea1c063becc7 | d24039a0a143248611f1579bc43f2313c40b6a47 | refs/heads/master | 2020-05-23T16:44:44.247000 | 2014-05-18T17:39:33 | 2014-05-18T17:39:33 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package hu.kovand.sketch3d.geometry;
public class Vec3 {
private float x;
private float y;
private float z;
public Vec3(float[] v) {
x = v[0];
y = v[1];
z = v[2];
}
public Vec3(float x,float y,float z)
{
this.x = x;
this.y = y;
this.z = z;
}
public float getX()
{
return x;
}
public ... | UTF-8 | Java | 1,791 | java | Vec3.java | Java | [] | null | [] | package hu.kovand.sketch3d.geometry;
public class Vec3 {
private float x;
private float y;
private float z;
public Vec3(float[] v) {
x = v[0];
y = v[1];
z = v[2];
}
public Vec3(float x,float y,float z)
{
this.x = x;
this.y = y;
this.z = z;
}
public float getX()
{
return x;
}
public ... | 1,791 | 0.556672 | 0.53043 | 99 | 17.09091 | 21.056486 | 137 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.10101 | false | false | 4 |
2f495305cfd06b022701a5d05e139b69ade6e39f | 3,350,074,496,388 | 40536815d3cea0cf56ad9b6c3b3ae57141f64c69 | /uzy-practice-demo/src/main/java/com/uzykj/concurrent/code/volatiles/ImplAndUse.java | 4752b3faee77917572e99d82efb96d868bbe06fe | [] | no_license | ghostxbh/Practice | https://github.com/ghostxbh/Practice | 2c55f42a0f78c240bc6078db062a130a47639d34 | a7e7097b805ef40107cf229d55792d9e1dd08a6b | refs/heads/master | 2023-06-22T04:06:46.106000 | 2021-05-01T14:22:10 | 2021-05-01T14:22:10 | 185,598,505 | 1 | 0 | null | false | 2023-06-14T22:32:10 | 2019-05-08T12:08:26 | 2021-05-05T09:10:18 | 2023-06-14T22:32:10 | 996 | 0 | 0 | 1 | Java | false | false | package com.uzykj.concurrent.code.volatiles;
/**
* @author ghostxbh
* @date 2020/6/11
* @description
*/
public class ImplAndUse {
}
| UTF-8 | Java | 137 | java | ImplAndUse.java | Java | [
{
"context": "m.uzykj.concurrent.code.volatiles;\n\n/**\n * @author ghostxbh\n * @date 2020/6/11\n * @description\n */\npublic cla",
"end": 69,
"score": 0.9995784759521484,
"start": 61,
"tag": "USERNAME",
"value": "ghostxbh"
}
] | null | [] | package com.uzykj.concurrent.code.volatiles;
/**
* @author ghostxbh
* @date 2020/6/11
* @description
*/
public class ImplAndUse {
}
| 137 | 0.693431 | 0.642336 | 9 | 14.222222 | 13.620065 | 44 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.111111 | false | false | 4 |
346f291d5f33adfc1f0f82c3a5f72d819a368c87 | 4,853,313,050,113 | 18761c0351a37edd1ef2321e2c6af38888db3ae3 | /项目文件/ABE_WEB/src/com/abe/service/iSignService.java | 8d8980329094b63425a3f7d31f1586fe3667f600 | [] | no_license | hxxy2003/ABE | https://github.com/hxxy2003/ABE | ed85013061b0915ba18e6d134847f23c9f1bf3a2 | ca0b1691e055499b8e6842e61f13cd8a6f587be3 | refs/heads/master | 2017-05-12T01:50:59.236000 | 2017-01-20T09:31:04 | 2017-01-20T09:31:04 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.abe.service;
import java.sql.Timestamp;
import java.util.Date;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import com.abe.entity.Users;
import com.abe.entity.other.RespCommon;
import com.abe.entity.other.RespSignIn;
import com.abe.entity.other.RespUpdateUser;
impo... | UTF-8 | Java | 1,963 | java | iSignService.java | Java | [
{
"context": "In signInFromApp(String uNum,String uPass);\n\t\n\t/**张顺 2016-11-18\n\t * 新版app登录,加入安全访问、权限控制\n\t * @param uNu",
"end": 696,
"score": 0.7627393007278442,
"start": 694,
"tag": "NAME",
"value": "张顺"
},
{
"context": "rvletRequest request)throws Exception;\n\t\n\t/**\n\t * ... | null | [] | package com.abe.service;
import java.sql.Timestamp;
import java.util.Date;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import com.abe.entity.Users;
import com.abe.entity.other.RespCommon;
import com.abe.entity.other.RespSignIn;
import com.abe.entity.other.RespUpdateUser;
impo... | 1,963 | 0.698061 | 0.678116 | 92 | 18.619566 | 21.763474 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.217391 | false | false | 4 |
d5f0c8b6c68dd72823819cdea5a1d774ad8a0484 | 6,837,587,943,921 | dff5c57663996cf6cbd0486aed9359f4867890e0 | /14_solid_exercise/src/exercise_01/XmlLayout.java | 973cbf6272a28ac8cb85deab686a6928872149aa | [] | no_license | Cvqtko/Java-OOP | https://github.com/Cvqtko/Java-OOP | 4999919791cf41ce4e0c55256fdaa619ca312357 | 9a928420c96a837076a6d3a8c69f80b82848b9dc | refs/heads/master | 2021-07-24T21:06:55.636000 | 2019-12-26T21:48:20 | 2019-12-26T21:48:20 | 225,202,889 | 0 | 1 | null | false | 2020-10-13T18:23:55 | 2019-12-01T17:47:20 | 2019-12-26T21:49:10 | 2020-10-13T18:23:54 | 9,642 | 0 | 1 | 7 | Java | false | false | package exercise_01;
public class XmlLayout implements Layout {
@Override
public void format(String time, String reportLevel, String message) {
// TODO Auto-generated method stub
System.out.println(String.format("" + "<log>\r\n" + "<date>%s</date>\r\n" + "<level>%s</level>\r\n"
+ "<message>%s</messa... | UTF-8 | Java | 390 | java | XmlLayout.java | Java | [] | null | [] | package exercise_01;
public class XmlLayout implements Layout {
@Override
public void format(String time, String reportLevel, String message) {
// TODO Auto-generated method stub
System.out.println(String.format("" + "<log>\r\n" + "<date>%s</date>\r\n" + "<level>%s</level>\r\n"
+ "<message>%s</messa... | 390 | 0.628205 | 0.623077 | 12 | 30.5 | 34.831738 | 101 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.5 | false | false | 4 |
f06770ced4ca59d735897f04406d6010a8a1ef05 | 17,042,430,239,577 | 56e9124e9afa15c5e6b37e2c5d1e00f0a6fcc925 | /src/main/java/com/dev/cinema/controllers/ShoppingCartController.java | 63078facd4570f27ac1d14859cd3a8056dea452a | [] | no_license | Prox1k/cinema | https://github.com/Prox1k/cinema | dfb1cbd3b036db86e006340bb20189bdcd0427cd | 200ff7a00838ac6ba95ab58568b43070330eeb5c | refs/heads/master | 2022-12-21T13:13:16.794000 | 2020-02-25T13:12:22 | 2020-02-25T13:12:22 | 238,190,652 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dev.cinema.controllers;
import com.dev.cinema.dto.MovieSessionDto;
import com.dev.cinema.dto.ShoppingCartDto;
import com.dev.cinema.model.MovieSession;
import com.dev.cinema.model.ShoppingCart;
import com.dev.cinema.model.User;
import com.dev.cinema.service.CinemaHallService;
import com.dev.cinema.service.... | UTF-8 | Java | 2,863 | java | ShoppingCartController.java | Java | [] | null | [] | package com.dev.cinema.controllers;
import com.dev.cinema.dto.MovieSessionDto;
import com.dev.cinema.dto.ShoppingCartDto;
import com.dev.cinema.model.MovieSession;
import com.dev.cinema.model.ShoppingCart;
import com.dev.cinema.model.User;
import com.dev.cinema.service.CinemaHallService;
import com.dev.cinema.service.... | 2,863 | 0.74642 | 0.74642 | 62 | 45.177418 | 23.700771 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.741935 | false | false | 4 |
7dc6dddfe00808bf51b42ff4ba3af2bf39922697 | 20,461,224,205,128 | d9b798506eda7b0f4d292ca55cf61ed1b464ee66 | /src/PageRank.java | 09ce3e02cfa3e6a46aa3169dbb80f6e2b53a2984 | [] | no_license | nishanthsiva/wikicrawler | https://github.com/nishanthsiva/wikicrawler | a06e486f613381ac0c695d7ed86ac7fb37c13c1d | e9a68eb4426dafe276c09b87839e84ed78f84d34 | refs/heads/master | 2021-01-10T06:24:10.831000 | 2016-04-02T23:16:00 | 2016-04-02T23:16:00 | 54,733,385 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.io.*;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Created by Nishanth Sivakumar and Sriram Balasubramanian on 3/25/16.
*/
public class PageRank {
private Logger LOGGER = Logger.getLogger(PageRank.class.getName());
private final String CLASS_NAME = Pa... | UTF-8 | Java | 13,038 | java | PageRank.java | Java | [
{
"context": "mport java.util.logging.Logger;\n\n/**\n * Created by Nishanth Sivakumar and Sriram Balasubramanian on 3/25/16.\n */\npublic",
"end": 140,
"score": 0.9998825192451477,
"start": 122,
"tag": "NAME",
"value": "Nishanth Sivakumar"
},
{
"context": ".Logger;\n\n/**\n * Create... | null | [] | import java.io.*;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Created by <NAME> and <NAME> on 3/25/16.
*/
public class PageRank {
private Logger LOGGER = Logger.getLogger(PageRank.class.getName());
private final String CLASS_NAME = PageRank.class.getName();
... | 13,010 | 0.567648 | 0.560746 | 346 | 36.682079 | 24.669436 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.763006 | false | false | 4 |
80230cde142e7d6c0fecd69a36857d0859cc6083 | 21,217,138,449,309 | 7e5c9005ad963b85ae9d11b5f00cae76ec92319f | /blog-ap1/src/main/java/com/jx/blogap1/vo/params/ClockInParams.java | c446ad38a0d2150461efb6c2d75caaae31c9171c | [] | no_license | as1026190684/Myblog | https://github.com/as1026190684/Myblog | 0b27605d6db11358bdffe03d9dfdf4af654f296f | 874c1c3b8af8ed1d97ed0767ed7486574ec641fb | refs/heads/master | 2023-08-23T20:51:17.578000 | 2021-10-28T14:40:13 | 2021-10-28T14:40:13 | 414,130,517 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jx.blogap1.vo.params;
import com.jx.blogap1.vo.PlanVo;
import lombok.Data;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
import java.util.Arrays;
import java.util.List;
@Data
public class ClockInParams ... | UTF-8 | Java | 514 | java | ClockInParams.java | Java | [] | null | [] | package com.jx.blogap1.vo.params;
import com.jx.blogap1.vo.PlanVo;
import lombok.Data;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
import java.util.Arrays;
import java.util.List;
@Data
public class ClockInParams ... | 514 | 0.709486 | 0.705534 | 24 | 19.083334 | 15.960672 | 45 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 4 |
c7648d96aa5b51429b70d17263132c107a8acb5c | 24,627,342,483,658 | 990098c9c9684adb5491caf5b78eb822f149dbf1 | /app/src/main/java/croom/konekom/in/feederfox/PoliticianView.java | 80781e18808301ee8ea74aa774b588e585a14ed8 | [] | no_license | KKS161994/FeederFox | https://github.com/KKS161994/FeederFox | 8bc61c64fefa243b2e6346bbaf9f28d6c15d9610 | 8558b3bf8c1a190745e701b894a5c0e1c45373b4 | refs/heads/master | 2020-04-25T10:20:51.885000 | 2019-02-26T16:13:38 | 2019-02-26T16:13:38 | 172,706,101 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package croom.konekom.in.feederfox;
import android.arch.lifecycle.LifecycleObserver;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.ut... | UTF-8 | Java | 3,908 | java | PoliticianView.java | Java | [] | null | [] | package croom.konekom.in.feederfox;
import android.arch.lifecycle.LifecycleObserver;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.ut... | 3,908 | 0.742579 | 0.741556 | 92 | 41.47826 | 27.634052 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.706522 | false | false | 4 |
1366e77ca21349e0b8f7eb9e7099f34011868034 | 24,627,342,480,427 | 0516a3ae34fba8f22b9ad0bac8d1d7030cac75df | /rarone-core/src/main/java/com/codeclen/rarone/core/instance/bestwehotel/extract/BestwehotelRoomExtractor.java | 296de670d85b72402f57ad1bcd01c974a8a85a69 | [] | no_license | CoderLen/rarone | https://github.com/CoderLen/rarone | a0b0eba9e00f266df00927d4be609f95b3a14c96 | 83ddfc28230327d26d227de0c92182200c2bccdc | refs/heads/master | 2020-04-07T12:24:34.692000 | 2018-11-22T06:59:22 | 2018-11-22T06:59:22 | 158,366,594 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.codeclen.rarone.core.instance.bestwehotel.extract;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.codeclen.rarone.core.Page;
import com.codeclen.rarone.core.instance.AbstractRoomExtractor;
import com.codeclen.rarone.core.instance.Room;
import com.codeclen.rarone.c... | UTF-8 | Java | 2,904 | java | BestwehotelRoomExtractor.java | Java | [
{
"context": "twehotel.com/api/hotel/queryHotelDetail\n * @author lin\n * @since 2018/11/14.\n */\n@Slf4j\npublic class Bes",
"end": 508,
"score": 0.9574741721153259,
"start": 505,
"tag": "NAME",
"value": "lin"
}
] | null | [] | package com.codeclen.rarone.core.instance.bestwehotel.extract;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.codeclen.rarone.core.Page;
import com.codeclen.rarone.core.instance.AbstractRoomExtractor;
import com.codeclen.rarone.core.instance.Room;
import com.codeclen.rarone.c... | 2,904 | 0.592287 | 0.586777 | 73 | 38.780823 | 27.288538 | 95 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.60274 | false | false | 4 |
6759f06dbabe910795bc73dda1b7430048e908f7 | 32,126,355,380,640 | 6267fc2800a6d4be587271f6e910f2b9f618f448 | /app/src/main/java/com/example/danny/myapplication/MainActivity.java | a478136978b99171197519e7731e35eacf140b3a | [] | no_license | mindecheng/test55 | https://github.com/mindecheng/test55 | 9f164c3161b07e9d33fd8649405aae669c148a13 | 0669841293260686b69da10a0dded805eec9b065 | refs/heads/master | 2019-01-01T01:58:20.672000 | 2016-07-07T16:18:57 | 2016-07-07T16:18:57 | 61,804,141 | 0 | 0 | null | false | 2016-06-24T08:56:27 | 2016-06-23T12:40:15 | 2016-06-23T12:40:41 | 2016-06-24T08:56:27 | 2,017 | 0 | 0 | 0 | Java | null | null | package com.example.danny.myapplication;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCr... | UTF-8 | Java | 1,059 | java | MainActivity.java | Java | [
{
"context": "package com.example.danny.myapplication;\n\nimport android.content.Intent;\nim",
"end": 25,
"score": 0.8756848573684692,
"start": 20,
"tag": "USERNAME",
"value": "danny"
}
] | null | [] | package com.example.danny.myapplication;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCr... | 1,059 | 0.642115 | 0.639282 | 39 | 26.102564 | 23.981611 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.410256 | false | false | 4 |
19a4b9e58a6a0dfaca958a6e19e9405a74a7000c | 8,246,337,218,381 | a102f596468b9ef8215af408b233f531ad8cad0b | /Wichtel.java | a37be65af9f5e0e23224b2a1261ca7a3544be836 | [] | no_license | johnzyna/uebung10 | https://github.com/johnzyna/uebung10 | b0ebeb045148e8708c6a7bd7460a7d1719751662 | 545fd4dfde810407ea8308b853ce720c07f80126 | refs/heads/master | 2017-12-13T19:10:09.297000 | 2017-01-07T10:00:26 | 2017-01-07T10:00:26 | 78,271,234 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public abstract class Wichtel implements Comparable<Wichtel> {
private String name;
private int fertigeGeschenke;
private int gearbeiteteZeit;
public int dauer;
public Wichtel(){
name = Zufall.koboldname();
fertigeGeschenke = 0;
gearbeiteteZeit = 0;
dauer = 0;
}
... | UTF-8 | Java | 2,231 | java | Wichtel.java | Java | [
{
"context": "int dauer;\n\n public Wichtel(){\n name = Zufall.koboldname();\n fertigeGeschenke = 0;\n ",
"end": 218,
"score": 0.6142582297325134,
"start": 216,
"tag": "NAME",
"value": "uf"
},
{
"context": "chtel(Wichtel andererWichtel){\n this.name = anderer... | null | [] | public abstract class Wichtel implements Comparable<Wichtel> {
private String name;
private int fertigeGeschenke;
private int gearbeiteteZeit;
public int dauer;
public Wichtel(){
name = Zufall.koboldname();
fertigeGeschenke = 0;
gearbeiteteZeit = 0;
dauer = 0;
}
... | 2,231 | 0.63236 | 0.625169 | 77 | 27.896105 | 24.12499 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.337662 | false | false | 4 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.