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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
adcfff589ad03d5b291ccd2e11b9f3fe15190bfd | 23,957,327,619,065 | 990c866117ea6043a149a9d69a5269a16ff16888 | /utils/src/com/akoo/common/util/behaviorTree/ai/ifs/IDecorator.java | e7e62a20d02ac81b788aca749bb9698fbffa867d | [] | no_license | yfzhangstar/utils | https://github.com/yfzhangstar/utils | b6dfcffeb1a7eee9b5e55aeb866cb940f3cc92e6 | 6919f2333b51a6f24009aa8f15adf60b7ffc7fb0 | refs/heads/master | 2022-06-15T16:59:03.119000 | 2019-06-14T08:29:54 | 2019-06-14T08:29:54 | 191,675,049 | 0 | 0 | null | false | 2022-05-20T21:00:54 | 2019-06-13T02:16:57 | 2019-06-14T08:30:18 | 2022-05-20T21:00:54 | 26,928 | 0 | 0 | 4 | Java | false | false | package com.akoo.common.util.behaviorTree.ai.ifs;
/************************************************************************/
/* 装饰结点
/* 装饰:
*********************************************************************** */
public interface IDecorator extends IBehaviour {
}
| UTF-8 | Java | 282 | java | IDecorator.java | Java | [] | null | [] | package com.akoo.common.util.behaviorTree.ai.ifs;
/************************************************************************/
/* 装饰结点
/* 装饰:
*********************************************************************** */
public interface IDecorator extends IBehaviour {
}
| 282 | 0.33209 | 0.33209 | 9 | 28.777779 | 30.348999 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.111111 | false | false | 13 |
d2aa23405ee80ec63c9567d875ec511c9b4c2932 | 26,680,336,885,243 | 371156fef0633832beb8eb5bcca8894d17eed10c | /src/main/java/P0821_ShortestDistanceToACharacter/Solution1.java | 806a8a462877f4ba157250ada79e7f3541497ead | [] | no_license | linhui0705/leetcode-exercise | https://github.com/linhui0705/leetcode-exercise | 261f828c12615d5386a0c6d12cd519516dd1351a | 9f9a043996a159dc6b5d64890ad0af0c1a5ae19f | refs/heads/master | 2022-03-14T08:36:41.608000 | 2022-02-22T10:39:37 | 2022-02-22T10:39:37 | 138,375,705 | 0 | 0 | null | false | 2021-09-30T09:12:52 | 2018-06-23T06:00:53 | 2021-09-30T09:12:46 | 2021-09-30T09:12:50 | 385 | 0 | 0 | 0 | Java | false | false | package P0821_ShortestDistanceToACharacter;
import org.junit.Test;
/**
* Title: Solution1
* Description:
* 求到达特定字母的最短距离
* e.g.:字符串"loveleetcode",各个字母距离字母e最近的距离为:[3, 2, 1, 0, 1, 0, 0, 1, 2, 2, 1, 0]
*
* l o v e l e e t c o d e
* → 12 13 14 0 1 0 0 1 2 2 1 0
* 3 2 1 0 1 0 0 4 3 2... | UTF-8 | Java | 1,231 | java | Solution1.java | Java | [
{
"context": " 1 0 0 4 3 2 1 0 ←\n * 取最小值。\n *\n * @author Lin Hui\n * Created on 2019-1-19 21:45\n */\npublic class So",
"end": 361,
"score": 0.9997305274009705,
"start": 354,
"tag": "NAME",
"value": "Lin Hui"
}
] | null | [] | package P0821_ShortestDistanceToACharacter;
import org.junit.Test;
/**
* Title: Solution1
* Description:
* 求到达特定字母的最短距离
* e.g.:字符串"loveleetcode",各个字母距离字母e最近的距离为:[3, 2, 1, 0, 1, 0, 0, 1, 2, 2, 1, 0]
*
* l o v e l e e t c o d e
* → 12 13 14 0 1 0 0 1 2 2 1 0
* 3 2 1 0 1 0 0 4 3 2... | 1,230 | 0.445022 | 0.393939 | 47 | 23.574469 | 17.895374 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.659574 | false | false | 13 |
29c6f4ca7adfab10365c1fdd195fa6b6525d9078 | 30,288,109,371,804 | 3782d74ca888cd866d9620741cde23ad5c707676 | /src/main/java/rentacar/entity/dto/FineDTO.java | eafbbcd6ef74b111a77afc0740696fb174201a87 | [] | no_license | sasajaksic/rentacar-backend | https://github.com/sasajaksic/rentacar-backend | 5ddf072a10f293cb4b7dea920915ac18a68c609c | 73fd81fbcb68f50fe78b8cf990de912defe64444 | refs/heads/master | 2023-07-18T00:36:42.753000 | 2021-09-05T16:27:03 | 2021-09-05T16:27:03 | 370,661,053 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package rentacar.entity.dto;
public class FineDTO {
public String type;
public String description;
public Integer price;
public String getType() {
return type;
}
public String getDescription() {
return description;
}
public Integer getPrice() {
return price... | UTF-8 | Java | 330 | java | FineDTO.java | Java | [] | null | [] | package rentacar.entity.dto;
public class FineDTO {
public String type;
public String description;
public Integer price;
public String getType() {
return type;
}
public String getDescription() {
return description;
}
public Integer getPrice() {
return price... | 330 | 0.615152 | 0.615152 | 22 | 14 | 13.062785 | 36 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.318182 | false | false | 13 |
1ad91d773bfe4359ad93d5dd0561c9450531971c | 231,928,260,044 | 61fc0924ec5c9e6448b6f7b05eb3a6f0561b5851 | /frontend/src/main/java/com/law/frontend/controller/DeleteController.java | 2148d911fc2db028849250f84e9f16b7b42ae76f | [] | no_license | RahulLepcha/Lawyer_Appointment | https://github.com/RahulLepcha/Lawyer_Appointment | 9d580250af4e160c9f7455b4c817279588d79ce2 | 56a61c6a7efa6aacb764af5b82589543acaf69fa | refs/heads/master | 2023-02-02T23:38:54.566000 | 2020-12-21T08:59:09 | 2020-12-21T08:59:09 | 294,186,950 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.law.frontend.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotatio... | UTF-8 | Java | 3,421 | java | DeleteController.java | Java | [] | null | [] | package com.law.frontend.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotatio... | 3,421 | 0.737211 | 0.734581 | 100 | 33.209999 | 22.917372 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.71 | false | false | 13 |
1567dbe435b581d006537fae71f96dc51062824d | 24,335,284,724,809 | 5e0b1fd72a24d3344faba10f43b2aa1e95fe3001 | /app/src/main/java/com/infiniteloop/emergency/Permission.java | 2201c7e25f31275478bd8c80a2f24f37815ffa2c | [] | no_license | andreirawan97/EMERGENCY | https://github.com/andreirawan97/EMERGENCY | ea5c7932e32190e843e29ad0d49521f428d79f3c | 7ded6edab24f9c3315781957bc006e734933e85d | refs/heads/master | 2018-10-08T23:58:18.618000 | 2018-08-31T14:43:40 | 2018-08-31T14:43:40 | 111,694,028 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.infiniteloop.emergency;
import android.Manifest;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.os.Handler;
import android.support.v4.app.ActivityCompat;
import andro... | UTF-8 | Java | 6,437 | java | Permission.java | Java | [] | null | [] | package com.infiniteloop.emergency;
import android.Manifest;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.os.Handler;
import android.support.v4.app.ActivityCompat;
import andro... | 6,437 | 0.60696 | 0.603542 | 141 | 44.652481 | 42.433594 | 158 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.602837 | false | false | 13 |
825f33730c108ed2de20f83558488413c827e12b | 26,087,631,382,516 | 01f94c6e67e1b3f9fb7d3113becab00acf3ae6bd | /demos/src/main/java/visitor/Employee.java | c88bc8222d5260ade4891a7887cbf7c539228468 | [] | no_license | jagusztinl/java-dp-public | https://github.com/jagusztinl/java-dp-public | f81c3ec52c9cae5e7a80611ea426977746996c64 | f66660bcb2faec8f91c614e9b0ef77351f1c92ea | refs/heads/master | 2022-12-06T22:40:54.387000 | 2020-06-10T08:13:10 | 2020-06-10T08:13:10 | 289,855,635 | 0 | 0 | null | true | 2020-08-24T07:15:38 | 2020-08-24T07:15:30 | 2020-08-24T07:15:32 | 2020-08-24T07:15:37 | 68 | 0 | 0 | 1 | null | false | false | package visitor;
import java.util.ArrayList;
import java.util.List;
public class Employee implements Node {
private String name;
public Employee(String name) {
this.name = name;
}
@Override
public void visit(NodeVisitor nodeVisitor) {
nodeVisitor.visit(this);
}
@Overrid... | UTF-8 | Java | 546 | java | Employee.java | Java | [] | null | [] | package visitor;
import java.util.ArrayList;
import java.util.List;
public class Employee implements Node {
private String name;
public Employee(String name) {
this.name = name;
}
@Override
public void visit(NodeVisitor nodeVisitor) {
nodeVisitor.visit(this);
}
@Overrid... | 546 | 0.60989 | 0.60989 | 32 | 16.0625 | 14.598667 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.28125 | false | false | 13 |
5d5b4163d41ae16bfc140e1b640edf6ab9e3ba6a | 26,379,689,133,732 | 39c9ed84560a687c687eedc71618b56309de3a40 | /src/main/java/sample/model/GameEpisode.java | 6e7d532bef9531d7f8e31e1bbc3389a0ab47a102 | [] | no_license | TiloRenner/VisualNovelEditor | https://github.com/TiloRenner/VisualNovelEditor | 8c799da7e80ecd6ea733c637e2505f41e7ded548 | 976f814134e3fa102a4e0c1db013f5af4bfa4de6 | refs/heads/master | 2020-03-23T04:57:53.743000 | 2018-07-23T09:11:40 | 2018-07-23T09:11:40 | 141,116,230 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package sample.model;
import java.util.*;
public class GameEpisode extends Identity {
public int startNodeId;
public String name;
public Set<GameChapter> gameChapters = new HashSet<>();
public String getName() {
return name;
}
public void setName(String name) {
this.name ... | UTF-8 | Java | 848 | java | GameEpisode.java | Java | [] | null | [] | package sample.model;
import java.util.*;
public class GameEpisode extends Identity {
public int startNodeId;
public String name;
public Set<GameChapter> gameChapters = new HashSet<>();
public String getName() {
return name;
}
public void setName(String name) {
this.name ... | 848 | 0.649764 | 0.649764 | 51 | 15.627451 | 22.154503 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.215686 | false | false | 13 |
0d17bbd7023844813a74c5a35eaa7c56eed6b389 | 26,379,689,132,278 | deee97f43af2496a9c31499bd4bbd34d752903b7 | /oldstuff/CSCI201Factory_practicemidterm_20171/src/servlets/WorkerNotesServlet.java | 056f80250c279b69fbbbdbebc5943fcf05ba8317 | [] | no_license | ir1998/cs201 | https://github.com/ir1998/cs201 | 127b64145fae3af35c0428361ee1eff05f75432a | a75cbaf9bc51ba42420f38b279c96e0b8ec11025 | refs/heads/master | 2020-06-10T09:19:25.355000 | 2017-06-28T22:12:45 | 2017-06-28T22:12:45 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package servlets;
import java.io.IOException;
import javax.servlet.RequestDispatcher;
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 client.Fa... | UTF-8 | Java | 2,600 | java | WorkerNotesServlet.java | Java | [] | null | [] | package servlets;
import java.io.IOException;
import javax.servlet.RequestDispatcher;
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 client.Fa... | 2,600 | 0.761923 | 0.759231 | 76 | 33.210526 | 28.499914 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.315789 | false | false | 13 |
c59ec3af3a992865aa6a3e76ba573bffbf6c9e5c | 3,942,779,994,906 | 391094f38b71c8ee2cbe463c696a2694675c87c2 | /framework/src/main/java/com/blueteam/entity/vo/AdminGoodsAttrValVO.java | b727f27b75dd99138375b7817c6ad311cf70f69e | [] | no_license | 459642792/tax | https://github.com/459642792/tax | 6b0ea9dcef0a04f8668a5b6e810ac8c34a195d7c | ea10e83c8accb0225fbeb2dc60f647d8b39b2332 | refs/heads/master | 2020-03-25T08:24:20.622000 | 2018-08-05T12:46:03 | 2018-08-05T12:46:03 | 143,610,714 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.blueteam.entity.vo;
/**
* 后台管理-商品新增 属性值vo
* Created by NastyNas on 2017/10/27.
*/
public class AdminGoodsAttrValVO {
Integer selectedFlag;
String attrValueCode;
String attrValueName;
public Integer getSelectedFlag() {
return selectedFlag;
}
public void setSelectedFlag(... | UTF-8 | Java | 784 | java | AdminGoodsAttrValVO.java | Java | [
{
"context": ".entity.vo;\n\n/**\n * 后台管理-商品新增 属性值vo\n * Created by NastyNas on 2017/10/27.\n */\npublic class AdminGoodsAttrVal",
"end": 79,
"score": 0.9936815500259399,
"start": 71,
"tag": "USERNAME",
"value": "NastyNas"
}
] | null | [] | package com.blueteam.entity.vo;
/**
* 后台管理-商品新增 属性值vo
* Created by NastyNas on 2017/10/27.
*/
public class AdminGoodsAttrValVO {
Integer selectedFlag;
String attrValueCode;
String attrValueName;
public Integer getSelectedFlag() {
return selectedFlag;
}
public void setSelectedFlag(... | 784 | 0.675853 | 0.665354 | 35 | 20.771429 | 18.748083 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.285714 | false | false | 13 |
e9e476943d690c47b7cca751776cf78af23ff598 | 13,692,355,787,828 | 1c9ad7b50007084cad07b977bad64f23990a5235 | /IT19009896/src/com/app/servlet/PaymentInsert.java | bb2208b52e18be499bdacc9de24742da8f3f2c6e | [] | no_license | BuddhiPerera/OOP-Project | https://github.com/BuddhiPerera/OOP-Project | 66209debd3f856b18f0475c1592781d23d559cec | 23302d66d9a55da7d7089cccff07a0e535f7a809 | refs/heads/main | 2022-12-29T17:51:29.626000 | 2020-10-08T07:54:46 | 2020-10-08T07:54:46 | 302,263,165 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* IT19009896
* Perera K.B.N
* SLIIT
*/
package com.app.servlet;
import java.io.IOException;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Date;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annota... | UTF-8 | Java | 2,015 | java | PaymentInsert.java | Java | [
{
"context": "/* \r\n * IT19009896\r\n * Perera K.B.N\r\n * SLIIT\r\n */\r\npackage com.app.servlet;\r\n\r\nimpor",
"end": 35,
"score": 0.9998472929000854,
"start": 23,
"tag": "NAME",
"value": "Perera K.B.N"
}
] | null | [] | /*
* IT19009896
* <NAME>
* SLIIT
*/
package com.app.servlet;
import java.io.IOException;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.Date;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.W... | 2,009 | 0.733995 | 0.729529 | 66 | 28.530304 | 29.553352 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.318182 | false | false | 13 |
18cb37742f7e12c8126d916cc78d75f88775290c | 23,536,420,797,246 | 4c2e8b9d64dce94ec74fa2a4951a926f42db7f7a | /src/by/it/_examples_/jd01_11/generics/why_its_need/Runner.java | 763f03a7b4df32bb1376e4e43af8edc451f4472e | [] | no_license | NorthDragons/JD2021-02-24 | https://github.com/NorthDragons/JD2021-02-24 | 7ffa5d4fc6d0984563a0af192fc34b921327c52a | 14bc46e536a1352dca08585ed03309e1e11e52e5 | refs/heads/master | 2023-04-01T16:44:33.325000 | 2021-04-23T14:59:25 | 2021-04-23T14:59:25 | 344,739,064 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package by.it._examples_.jd01_11.generics.why_its_need;
public class Runner {
public static void main(String[] args) {
//дубликация классов и кода
new ValueObjectBoolean(false).printToConsole();
new ValueObjectCharacter('$').printToConsole();
new ValueObjectString("Главный вопрос..... | UTF-8 | Java | 741 | java | Runner.java | Java | [] | null | [] | package by.it._examples_.jd01_11.generics.why_its_need;
public class Runner {
public static void main(String[] args) {
//дубликация классов и кода
new ValueObjectBoolean(false).printToConsole();
new ValueObjectCharacter('$').printToConsole();
new ValueObjectString("Главный вопрос..... | 741 | 0.66568 | 0.653846 | 18 | 36.555557 | 24.922596 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 13 |
b4155c083abae1ec8294ee15bfdf4eb1e58cc946 | 13,443,247,649,753 | d510332de8dce22f09038dbd39a3c26a8fda20b2 | /modules/commerce/front/commerce_admin/src/main/java/com/coretex/commerce/admin/init/apparel/ApCategory.java | 8f3f9a80ec007f33fd9bbeffedfa012e61602cce | [] | no_license | G-Art/coretex-ecommerce | https://github.com/G-Art/coretex-ecommerce | c8071a1479a4e3b49daaedd80ac163b423e098e5 | 90e61deb837a53cba69cc8f29be7b0975e470f63 | refs/heads/master | 2023-05-13T08:43:12.658000 | 2021-05-24T20:15:37 | 2021-05-24T20:15:37 | 370,470,781 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.coretex.commerce.admin.init.apparel;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
i... | UTF-8 | Java | 1,755 | java | ApCategory.java | Java | [] | null | [] | package com.coretex.commerce.admin.init.apparel;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
i... | 1,755 | 0.749288 | 0.749288 | 83 | 20.156626 | 18.602682 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.204819 | false | false | 13 |
8a044de74d752372f856a692b450f57b3b34d310 | 30,073,361,025,280 | f71a1aa06b5304a8e8999b9c3edbc7c3ff6fb790 | /GUI-SERVICE/src/main/java/py/com/global/spm/GUISERVICE/csvimporter/exceptions/InvalidColumnsException.java | 4f50ca7edd1936578f9fd00a75086f8b0994e18c | [] | no_license | Jose5286721/bulkpayment2.0 | https://github.com/Jose5286721/bulkpayment2.0 | 7cc8988fcfe4eb12be7b9f91d1d2dd304f290231 | 68f6c0371b24f1778b8605091b4f3965d6bb0d93 | refs/heads/master | 2020-08-18T12:27:16.660000 | 2019-10-17T12:35:45 | 2019-10-17T12:35:45 | 215,788,175 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package py.com.global.spm.GUISERVICE.csvimporter.exceptions;
public class InvalidColumnsException extends Exception {
private final int row;
public InvalidColumnsException(int row) {
this.row = row;
}
public int getRow() {
return row;
}
}
| UTF-8 | Java | 280 | java | InvalidColumnsException.java | Java | [] | null | [] | package py.com.global.spm.GUISERVICE.csvimporter.exceptions;
public class InvalidColumnsException extends Exception {
private final int row;
public InvalidColumnsException(int row) {
this.row = row;
}
public int getRow() {
return row;
}
}
| 280 | 0.675 | 0.675 | 14 | 18.928572 | 20.679403 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.285714 | false | false | 13 |
120921e8c7278296deb253b71d80091a9cdef1ba | 13,365,938,266,578 | d15bd87c8e1f7b6c560fd5e77e2c35ae5cda6646 | /FlagQuiz/app/src/main/java/com/example/senafunakubo/flagquiz/PreferenceFragment.java | cdb9440002a8f34dad6476c6be91d22172c517ea | [] | no_license | senafunakubo/Android | https://github.com/senafunakubo/Android | f707a5e66049469b7e0ed4270864adf5ad6b1c75 | bc79f9307c0e13adf55385d6339a9d134b7f6ff4 | refs/heads/master | 2020-12-02T19:48:35.626000 | 2017-10-20T01:12:12 | 2017-10-20T01:12:12 | 96,391,755 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.senafunakubo.flagquiz;
import android.os.Bundle;
/**
* Created by senafunakubo on 2017-07-28.
*/
public class PreferenceFragment extends android.preference.PreferenceFragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
... | UTF-8 | Java | 378 | java | PreferenceFragment.java | Java | [
{
"context": "package com.example.senafunakubo.flagquiz;\n\nimport android.os.Bundle;\n\n/**\n * Crea",
"end": 32,
"score": 0.9414956569671631,
"start": 20,
"tag": "USERNAME",
"value": "senafunakubo"
},
{
"context": "uiz;\n\nimport android.os.Bundle;\n\n/**\n * Created by senafunakub... | null | [] | package com.example.senafunakubo.flagquiz;
import android.os.Bundle;
/**
* Created by senafunakubo on 2017-07-28.
*/
public class PreferenceFragment extends android.preference.PreferenceFragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
... | 378 | 0.746032 | 0.724868 | 16 | 22.625 | 24.88442 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.25 | false | false | 13 |
a5cf32e8b6862d8ae569507ed1018a89a5855dd4 | 31,885,837,236,129 | ac1b7ef650d82b93ebea5516abbb6afb3b99d6c6 | /testSeries/testdunia-app/testdunia-app/src/main/java/com/testdunia/oltest/repository/UserRepository.java | ba20bf6cc2821e8e9b4072109673fdc9be97ddbd | [] | no_license | sumit-insta91/testSeries | https://github.com/sumit-insta91/testSeries | 139160af8e97d6059f965b3ef537882fc5d44f5d | 740758f60e73c4756e7fa87c80d15d20fb756f34 | refs/heads/master | 2021-06-06T02:04:00.775000 | 2018-04-14T11:34:35 | 2018-04-14T11:34:35 | 129,492,075 | 0 | 0 | null | false | 2021-04-26T17:20:40 | 2018-04-14T07:17:25 | 2018-04-14T11:37:21 | 2021-04-26T17:20:40 | 716 | 0 | 0 | 4 | Java | false | false | package com.testdunia.oltest.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import com.testdunia.oltest.model.UserBase;
public interface UserRepository extends JpaRepository<UserBase, Integer> {
UserBase findByEmail(String email);
UserBase findById(Long id);
}
| UTF-8 | Java | 299 | java | UserRepository.java | Java | [] | null | [] | package com.testdunia.oltest.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import com.testdunia.oltest.model.UserBase;
public interface UserRepository extends JpaRepository<UserBase, Integer> {
UserBase findByEmail(String email);
UserBase findById(Long id);
}
| 299 | 0.809365 | 0.809365 | 10 | 28.9 | 26.03248 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6 | false | false | 13 |
34eba127ff8e6aabb8c65ff7f2087bcdc0a266e3 | 11,982,958,803,634 | 265c724e0013b94020a22b0ddb2fed0afd0b2ae2 | /src/main/java/autopartner/service/impl/MaterialServiceImpl.java | 6436db0029fc90e189b0b7fb54e2a7cb9929448c | [] | no_license | DolphieDude/Autopartner | https://github.com/DolphieDude/Autopartner | 3b746cda547b8d7a6cf4ef336e65bc5d1f0974a4 | 0a5524344aa48fac9cf842f88f8459f4d2f3feb2 | refs/heads/master | 2021-01-04T11:36:06.705000 | 2020-02-14T14:39:44 | 2020-02-14T14:39:44 | 240,529,549 | 0 | 0 | null | true | 2020-02-14T14:43:02 | 2020-02-14T14:43:01 | 2020-02-14T13:37:21 | 2020-02-14T13:37:19 | 820 | 0 | 0 | 0 | null | false | false | package autopartner.service.impl;
import autopartner.domain.entity.Material;
import autopartner.repository.MaterialRepository;
import autopartner.service.MaterialService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.s... | UTF-8 | Java | 1,065 | java | MaterialServiceImpl.java | Java | [] | null | [] | package autopartner.service.impl;
import autopartner.domain.entity.Material;
import autopartner.repository.MaterialRepository;
import autopartner.service.MaterialService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.s... | 1,065 | 0.779343 | 0.777465 | 38 | 27.026316 | 22.730095 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.394737 | false | false | 13 |
c96660fc61e994c9b0615b74ab60134f5f210ad2 | 10,402,410,852,659 | 8710e8cd5f5d2d5bdeae03378cfc20a8a590cc2d | /milky-log/src/main/java/cn/sliew/milky/log/LocationAwareSlf4JLogger.java | 4cdf899ee199726bf1ef5b357f7ed8f298eb3611 | [] | no_license | kalencaya/milky | https://github.com/kalencaya/milky | b16dc86b35b2ecee61c51b18db9b195d49985959 | 3b9e35c88631ea7867fd34c4d89293dfd82c4a4c | refs/heads/master | 2023-03-22T15:52:45.940000 | 2023-02-01T00:06:39 | 2023-02-01T00:06:39 | 286,169,278 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.sliew.milky.log;
import org.slf4j.spi.LocationAwareLogger;
import static org.slf4j.spi.LocationAwareLogger.*;
/**
* <a href="http://www.slf4j.org/">SLF4J</a> logger which is location aware and so will log the correct origin of the
* logging event by filter out the wrapper itself.
*/
final class Locatio... | UTF-8 | Java | 6,427 | java | LocationAwareSlf4JLogger.java | Java | [] | null | [] | package cn.sliew.milky.log;
import org.slf4j.spi.LocationAwareLogger;
import static org.slf4j.spi.LocationAwareLogger.*;
/**
* <a href="http://www.slf4j.org/">SLF4J</a> logger which is location aware and so will log the correct origin of the
* logging event by filter out the wrapper itself.
*/
final class Locatio... | 6,427 | 0.59888 | 0.592345 | 239 | 25.891212 | 26.681381 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.564854 | false | false | 13 |
142f480a88b6b9784a4eabe92d64b567e7e08583 | 20,486,994,038,850 | 941879f7c8dcce2f38594dc3377cdca7112b06e5 | /src/main/java/org/lean/presentation/connector/types/metadata/LeanMetadataElementsConnector.java | 197940809ea9cbaa6b7140d14168466ed667eb78 | [
"Apache-2.0"
] | permissive | projectlean/lean-engine | https://github.com/projectlean/lean-engine | 155745d0a0b3b10355cb20fb599105c838c6eae9 | 3387d6d01d153317013fe614032c1678adc515af | refs/heads/master | 2023-07-19T01:55:44.571000 | 2023-01-13T19:13:01 | 2023-01-13T19:13:01 | 236,760,751 | 3 | 2 | Apache-2.0 | false | 2023-07-07T21:58:29 | 2020-01-28T14:56:02 | 2021-11-12T07:36:16 | 2023-07-07T21:58:28 | 650 | 3 | 2 | 1 | Java | false | false | package org.lean.presentation.connector.types.metadata;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import java.util.List;
import org.apache.commons.lang.StringUtils;
import org.apache.hop.core.row.IRowMeta;
import org.apache.hop.core.row.RowDataUtil;
import org.apache.hop.core.row.RowMetaBuilder... | UTF-8 | Java | 3,526 | java | LeanMetadataElementsConnector.java | Java | [] | null | [] | package org.lean.presentation.connector.types.metadata;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import java.util.List;
import org.apache.commons.lang.StringUtils;
import org.apache.hop.core.row.IRowMeta;
import org.apache.hop.core.row.RowDataUtil;
import org.apache.hop.core.row.RowMetaBuilder... | 3,526 | 0.747306 | 0.747022 | 113 | 30.203539 | 27.651484 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.380531 | false | false | 13 |
c191389fda8af1cfc24348e7abe6bb224090a6fa | 35,588,099,023,696 | 3b1c47285bdba2166c248be3208da4083e87df4e | /src/test/com/brunopolitano/dropbox/changefolder/tests/integration/config/ConfigDAO_SQLiteTest.java | 928b146e9ba71cae2f44310d13355d53ed4fd3d5 | [] | no_license | brunopolitano/dropbox-changefolder | https://github.com/brunopolitano/dropbox-changefolder | 60a389263699ee43938c0e05c21478f9d02809a0 | b3403e6d9ad12f0efd16f3d53e0d412a9f92ec74 | refs/heads/master | 2016-09-07T01:48:25.995000 | 2012-01-14T16:53:23 | 2012-01-14T16:53:23 | 3,066,517 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.brunopolitano.dropbox.changefolder.tests.integration.config;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import java.sql.Connection;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import com.brunopolitano.dropbox.changefolder.config... | UTF-8 | Java | 1,432 | java | ConfigDAO_SQLiteTest.java | Java | [] | null | [] | package com.brunopolitano.dropbox.changefolder.tests.integration.config;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import java.sql.Connection;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import com.brunopolitano.dropbox.changefolder.config... | 1,432 | 0.730447 | 0.730447 | 49 | 28.224489 | 24.53591 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.510204 | false | false | 13 |
f6e55c53d9e4fe2068f8fb6935e50e43331aeb21 | 18,992,345,433,521 | d345d6bafa7c63fcb3b367aa9a06dd4bcc29a890 | /src/test/java/org/recap/model/request/ItemCheckinResponseUT.java | ba31edc7e7aa6e00969ab664e07aeec8a5a8d104 | [
"Apache-2.0",
"MIT"
] | permissive | JancyRoachR/Phase4-SCSB-Core | https://github.com/JancyRoachR/Phase4-SCSB-Core | d4fab0c0964e234dacddc15b6ff30e5a3a6413cd | 02d0211a05691683c5fad56025700998df231afa | refs/heads/development | 2023-09-06T05:16:14.428000 | 2020-09-25T05:37:30 | 2020-09-25T05:37:30 | 297,383,046 | 0 | 0 | NOASSERTION | true | 2020-09-21T15:32:24 | 2020-09-21T15:32:23 | 2020-09-08T06:31:53 | 2020-09-08T06:31:49 | 305 | 0 | 0 | 0 | null | false | false | package org.recap.model.request;
import org.junit.Test;
import java.util.Arrays;
import java.util.Date;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
public class ItemCheckinResponseUT {
@Test
public void getItemCheckinResponse(){
ItemCheckinResponse itemC... | UTF-8 | Java | 4,379 | java | ItemCheckinResponseUT.java | Java | [] | null | [] | package org.recap.model.request;
import org.junit.Test;
import java.util.Arrays;
import java.util.Date;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
public class ItemCheckinResponseUT {
@Test
public void getItemCheckinResponse(){
ItemCheckinResponse itemC... | 4,379 | 0.73784 | 0.727563 | 88 | 48.761364 | 18.60046 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.875 | false | false | 13 |
74a800ec9ebbfada249b1008b40853c79cca496c | 35,167,192,232,004 | f20c5094acd917ced8830176b2ef2cae8f091550 | /src/net/sparkzz/servercontrol/commands/InvseeCommand.java | a7d59314c4b15dcf283cc6eef377d41c7439808b | [] | no_license | MrSparkzz/ServerControl-Bukkit | https://github.com/MrSparkzz/ServerControl-Bukkit | 00eb8bb90682b2dfeb0fadf3c2bc6fefaa97e6bd | 464fb3992d079400b3b0e2598079e887a34cc99f | refs/heads/master | 2020-05-27T03:44:57.351000 | 2014-07-31T03:49:04 | 2014-07-31T03:49:04 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.sparkzz.servercontrol.commands;
import net.sparkzz.servercontrol.command.CommandManager;
import net.sparkzz.servercontrol.players.User;
import org.bukkit.Bukkit;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.inventory.Inventor... | UTF-8 | Java | 1,436 | java | InvseeCommand.java | Java | [
{
"context": "org.bukkit.inventory.Inventory;\n\n/**\n * Created by Brendon on 7/16/2014.\n */\npublic class InvseeCommand exte",
"end": 349,
"score": 0.9942023158073425,
"start": 342,
"tag": "NAME",
"value": "Brendon"
}
] | null | [] | package net.sparkzz.servercontrol.commands;
import net.sparkzz.servercontrol.command.CommandManager;
import net.sparkzz.servercontrol.players.User;
import org.bukkit.Bukkit;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.inventory.Inventor... | 1,436 | 0.693593 | 0.683844 | 64 | 21.453125 | 21.32848 | 101 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2 | false | false | 13 |
8d846b3daef8edde00d0c2b6b23eb05d13b2db06 | 20,590,073,265,409 | 852d3213ca5bd87f6f4223024aef28304d85c165 | /app/src/main/java/com/cn/burus/hcytestproject/httpframework/itf/OnGlobalExceptionListener.java | 0905df307bac7d348e22ddcb051be3dffc67edd5 | [] | no_license | hcyFly/HcyTestProject | https://github.com/hcyFly/HcyTestProject | 01af6e51580ce97f3269bb1e272591fd7354b3f2 | ccecc17e9a8d3f0684f25f84622f0f10382ae12b | refs/heads/master | 2021-01-19T14:13:00.199000 | 2017-07-11T07:23:19 | 2017-07-11T07:23:19 | 88,135,119 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cn.burus.hcytestproject.httpframework.itf;
import com.cn.burus.hcytestproject.httpframework.error.AppException;
/**
* 全局异常集中处理
* BaseActivity实现此接口 在方法handleException()中处理
* Created by chengyou.huang on 2017/5/11.
*/
public interface OnGlobalExceptionListener {
/**
* @param e 自定义异常类
* @... | UTF-8 | Java | 440 | java | OnGlobalExceptionListener.java | Java | [
{
"context": "ctivity实现此接口 在方法handleException()中处理\n * Created by chengyou.huang on 2017/5/11.\n */\n\npublic interface OnGlobalExcep",
"end": 215,
"score": 0.8076567053794861,
"start": 201,
"tag": "NAME",
"value": "chengyou.huang"
}
] | null | [] | package com.cn.burus.hcytestproject.httpframework.itf;
import com.cn.burus.hcytestproject.httpframework.error.AppException;
/**
* 全局异常集中处理
* BaseActivity实现此接口 在方法handleException()中处理
* Created by chengyou.huang on 2017/5/11.
*/
public interface OnGlobalExceptionListener {
/**
* @param e 自定义异常类
* @... | 440 | 0.728205 | 0.710256 | 18 | 20.666666 | 21.896219 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.166667 | false | false | 13 |
dfdd6b16e9e7dd8a014240f9d8bbd9aadea289da | 4,509,715,693,164 | 18f7759603cedfcde06fe15645d5a906abee72cf | /testsuite/integration-arquillian/tests/base/src/main/java/org/keycloak/testsuite/arquillian/jmx/JmxConnectorRegistryCreator.java | 50c9b965c653b28caff4141534e30bb24947a990 | [
"Apache-2.0"
] | permissive | fabric8-services/keycloak | https://github.com/fabric8-services/keycloak | 46de87e4a13dbb0a9f1182eb64d7093defe51a77 | 535b4ab03c5fc47ace44800eb56d928570a4b381 | refs/heads/master | 2021-11-28T14:50:30.019000 | 2021-09-02T18:35:53 | 2021-09-02T18:35:53 | 83,670,114 | 1 | 0 | NOASSERTION | true | 2021-09-02T18:35:54 | 2017-03-02T11:24:56 | 2018-08-01T20:09:55 | 2021-09-02T18:35:54 | 103,617 | 1 | 4 | 3 | Java | false | false | /*
* Copyright 2017 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* 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.apa... | UTF-8 | Java | 2,855 | java | JmxConnectorRegistryCreator.java | Java | [
{
"context": "st.spi.event.suite.BeforeSuite;\n\n/**\n *\n * @author hmlnarik\n */\npublic class JmxConnectorRegistryCreator {\n\n ",
"end": 1312,
"score": 0.9987443685531616,
"start": 1304,
"tag": "USERNAME",
"value": "hmlnarik"
}
] | null | [] | /*
* Copyright 2017 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* 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.apa... | 2,855 | 0.619615 | 0.616813 | 73 | 38.109589 | 28.969309 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.479452 | false | false | 13 |
3e37afb4fcea0061d85eea6fcde63aa72e0c7979 | 4,466,766,013,343 | 93e2132b977d5582f6b27b25ad73a554a1eeb593 | /src/main/java/com/pms/app/domain/Clothes.java | 92fb618dbd4013dab454f0c02fd6dd5c0e7529bf | [] | no_license | gurungsuman1676/pms | https://github.com/gurungsuman1676/pms | 4f7bb5f3fef0a72077105847db76523409b6466d | 34ec00cddb9e25d7b81c208505819784f5f9dbe1 | refs/heads/master | 2020-07-04T08:40:06.082000 | 2016-09-11T10:38:50 | 2016-09-11T10:38:50 | 67,923,925 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.pms.app.domain;
import lombok.Getter;
import lombok.Setter;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.ManyToOne;
import java.util.Date;
@Entity
@Getter
@Setter
public class Clothes extends AbstractEntity {
@ManyToOne
private Locations location;
... | UTF-8 | Java | 778 | java | Clothes.java | Java | [] | null | [] | package com.pms.app.domain;
import lombok.Getter;
import lombok.Setter;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.ManyToOne;
import java.util.Date;
@Entity
@Getter
@Setter
public class Clothes extends AbstractEntity {
@ManyToOne
private Locations location;
... | 778 | 0.72108 | 0.72108 | 39 | 18.948717 | 13.250929 | 45 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.487179 | false | false | 13 |
aca98b8099396c15ecbc4d00a42b16075c80b760 | 10,359,461,188,217 | 61602d4b976db2084059453edeafe63865f96ec5 | /com/alipay/sdk/encrypt/b.java | dd433947398896fa642b5cb4b13eed82d11e18af | [] | no_license | ZoranLi/thunder | https://github.com/ZoranLi/thunder | 9d18fd0a0ec0a5bb3b3f920f9413c1ace2beb4d0 | 0778679ef03ba1103b1d9d9a626c8449b19be14b | refs/heads/master | 2020-03-20T23:29:27.131000 | 2018-06-19T06:43:26 | 2018-06-19T06:43:26 | 137,848,886 | 12 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.alipay.sdk.encrypt;
public final class b {
private static String a(String str, String str2) {
return a(1, str, str2);
}
private static String b(String str, String str2) {
return a(2, str, str2);
}
public static java.lang.String a(int r2, java.lang.String r3, java.lang.... | UTF-8 | Java | 2,658 | java | b.java | Java | [] | null | [] | package com.alipay.sdk.encrypt;
public final class b {
private static String a(String str, String str2) {
return a(1, str, str2);
}
private static String b(String str, String str2) {
return a(2, str, str2);
}
public static java.lang.String a(int r2, java.lang.String r3, java.lang.... | 2,658 | 0.65237 | 0.572611 | 59 | 44.050846 | 33.327049 | 159 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.118644 | false | false | 13 |
41308bc79db5568f5d2846ede883f17cf5297c40 | 4,226,247,835,083 | db12b990924703cd74748d8585cd9c11fafa6746 | /h2o-core/src/main/java/water/udf/CFuncRef.java | 9478587b82a31ac1844101ca493d3f70ebee240b | [
"Apache-2.0"
] | permissive | h2oai/h2o-3 | https://github.com/h2oai/h2o-3 | 919019a8f297eec676011a9cfd2cc2d97891ce14 | d817ab90c8c47f6787604a0b9639b66234158228 | refs/heads/master | 2023-08-17T18:50:17.732000 | 2023-08-17T16:44:42 | 2023-08-17T16:44:42 | 17,371,412 | 6,872 | 2,345 | Apache-2.0 | false | 2023-09-14T18:05:40 | 2014-03-03T16:08:07 | 2023-09-13T16:15:03 | 2023-09-14T18:05:38 | 619,600 | 6,476 | 1,997 | 2,722 | Jupyter Notebook | false | false | package water.udf;
import water.Iced;
import water.Key;
// FIXME: should be CFuncRef (custom func reference
public class CFuncRef extends Iced<CFuncRef> {
public static final CFuncRef NOP = null;
public final String keyName;
public final String funcName;
public final String language;
public CFuncRef(... | UTF-8 | Java | 1,391 | java | CFuncRef.java | Java | [] | null | [] | package water.udf;
import water.Iced;
import water.Key;
// FIXME: should be CFuncRef (custom func reference
public class CFuncRef extends Iced<CFuncRef> {
public static final CFuncRef NOP = null;
public final String keyName;
public final String funcName;
public final String language;
public CFuncRef(... | 1,391 | 0.670022 | 0.665708 | 55 | 24.290909 | 23.610224 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6 | false | false | 13 |
134419f1ddfb2e7f9e66c7419ff27a799c7ebd71 | 27,075,473,835,285 | a7d8c1acf1abb56ac350ae8499903f5f8c32d910 | /src/main/java/com/aang23/globaltab/GlobalTab.java | 7d0b29b2ca78fe45a4382c18696ac8c15c113113 | [] | no_license | strifel/GlobalTab | https://github.com/strifel/GlobalTab | a207956f9ba24be42dccbcbc794594b202eb91a5 | c7cf9bcca90cbd0131b5db55b551d2334023de02 | refs/heads/master | 2020-09-04T17:10:46.899000 | 2019-11-05T19:15:18 | 2019-11-05T19:15:18 | 219,827,208 | 0 | 0 | null | true | 2019-11-05T18:51:06 | 2019-11-05T18:51:06 | 2019-06-25T08:04:46 | 2019-09-05T20:04:05 | 450 | 0 | 0 | 0 | null | false | false | package com.aang23.globaltab;
import com.google.common.io.ByteArrayDataInput;
import com.google.inject.Inject;
import com.velocitypowered.api.plugin.Plugin;
import com.velocitypowered.api.proxy.Player;
import com.velocitypowered.api.proxy.ProxyServer;
import com.velocitypowered.api.proxy.ServerConnection;
import com.v... | UTF-8 | Java | 5,767 | java | GlobalTab.java | Java | [
{
"context": "n = \"1.0\", description = \"A plugin\", authors = { \"Aang23\" })\npublic class GlobalTab {\n public static Pr",
"end": 1529,
"score": 0.9996531009674072,
"start": 1523,
"tag": "USERNAME",
"value": "Aang23"
}
] | null | [] | package com.aang23.globaltab;
import com.google.common.io.ByteArrayDataInput;
import com.google.inject.Inject;
import com.velocitypowered.api.plugin.Plugin;
import com.velocitypowered.api.proxy.Player;
import com.velocitypowered.api.proxy.ProxyServer;
import com.velocitypowered.api.proxy.ServerConnection;
import com.v... | 5,767 | 0.674701 | 0.671406 | 145 | 38.772415 | 28.883774 | 128 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.682759 | false | false | 13 |
5267cf48bf87b8c1fdcf83b5704fabe246543055 | 16,638,703,334,660 | da96410c5ceee74230b8cfc890caee68458aa8a6 | /api/src/main/java/com/wirebarley/api/model/ConvertedResultView.java | d991b7e6ef73bb9c03a3676d83240f8df3cfe913 | [] | no_license | eastperson/currency_converter | https://github.com/eastperson/currency_converter | e8c957bd6fe391f2e060d1e89c9338d003c82a6d | f6823371158586c955aa7cc8fdecdf59deec6a31 | refs/heads/master | 2023-08-20T20:55:27.201000 | 2021-10-15T13:30:29 | 2021-10-15T13:30:29 | 412,660,906 | 2 | 0 | null | false | 2021-10-04T07:32:13 | 2021-10-02T01:29:22 | 2021-10-03T07:26:35 | 2021-10-04T07:32:13 | 107 | 0 | 0 | 0 | Java | false | false | package com.wirebarley.api.model;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data @AllArgsConstructor
@NoArgsConstructor
@Builder
public class ConvertedResultView {
private String formattedConvertedAmount;
private Double convertedAmount;
} | UTF-8 | Java | 318 | java | ConvertedResultView.java | Java | [] | null | [] | package com.wirebarley.api.model;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data @AllArgsConstructor
@NoArgsConstructor
@Builder
public class ConvertedResultView {
private String formattedConvertedAmount;
private Double convertedAmount;
} | 318 | 0.827044 | 0.827044 | 15 | 20.266666 | 14.644528 | 44 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.466667 | false | false | 13 |
a0198326d862167fb2f32516b42a939d5903ca08 | 16,638,703,336,053 | 17788da55c31dfa2f3bef547ec56973a6de820e9 | /main/graphics/HelpMenu.java | 7074168f9c04f9dd08049341b1643ed712025372 | [] | no_license | luongtuanlinh/Militia | https://github.com/luongtuanlinh/Militia | a5ad6c4233e92b6961041d81554c0baf6c5d83b9 | b7abb1e0230c85531090b552de5708d2796116d8 | refs/heads/master | 2021-09-14T14:12:11.441000 | 2018-05-15T02:36:16 | 2018-05-15T02:36:16 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package main.graphics;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.awt.image.ImageObserver;
import java.io.IOException;
import javax.imageio.ImageIO;
import main.Game;
public class HelpMenu implements ImageObserver{
private int moveButtonX = Game.WIDTH / 2 - ... | UTF-8 | Java | 5,141 | java | HelpMenu.java | Java | [] | null | [] | package main.graphics;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.awt.image.ImageObserver;
import java.io.IOException;
import javax.imageio.ImageIO;
import main.Game;
public class HelpMenu implements ImageObserver{
private int moveButtonX = Game.WIDTH / 2 - ... | 5,141 | 0.693639 | 0.668547 | 103 | 48.912621 | 32.268326 | 135 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.61165 | false | false | 13 |
f30c90e74c41f3dadfe60b719e7eacc50ac0ca96 | 16,638,703,337,609 | 218b34660a7470e637771e0b8b42205eec7cb9c2 | /0097_Interleaving String/InterleavingString_Recursion.java | a2c923e484eb45bff0db0e3c80caf58af816fe9c | [] | no_license | jiajionline/LeetcodeSolutionWithMultipleLanguages | https://github.com/jiajionline/LeetcodeSolutionWithMultipleLanguages | 9ca43aad9085ad2cadd70a39540386bb70d4c64e | 705c13b2a8868d7380c9d8f529cad790fe0ee07c | refs/heads/master | 2023-09-02T12:46:54.204000 | 2023-09-01T20:59:08 | 2023-09-01T20:59:08 | 88,291,206 | 37 | 25 | null | false | 2020-10-20T10:42:58 | 2017-04-14T18:07:49 | 2020-10-20T10:42:05 | 2020-10-19T04:55:43 | 724 | 14 | 13 | 3 | Java | false | false | class Solution {
public boolean isInterleave(String s1, String s2, String s3) {
int[][] memo = new int[s1.length() + 1][s2.length() + 1];
return isInterleave(s1, s1.length(), s2, s2.length(), s3, s3.length(), memo);
}
private boolean isInterleave(String s1, int p1, String s2, int p2, St... | UTF-8 | Java | 849 | java | InterleavingString_Recursion.java | Java | [] | null | [] | class Solution {
public boolean isInterleave(String s1, String s2, String s3) {
int[][] memo = new int[s1.length() + 1][s2.length() + 1];
return isInterleave(s1, s1.length(), s2, s2.length(), s3, s3.length(), memo);
}
private boolean isInterleave(String s1, int p1, String s2, int p2, St... | 849 | 0.5053 | 0.419317 | 20 | 41.5 | 36.269135 | 111 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.8 | false | false | 13 |
749fdc9e150197c4ea075995d9b94ca7c5cb3939 | 25,718,264,194,664 | 4c7450247d6d68af1ca2aa67a40e06f8e150081a | /micro-app/micro-app-api/src/test/java/me/zhaotb/app/api/test/RegisterTest.java | bc7184a7d706be20e8d711e44c3f16507214d574 | [] | no_license | Eroven/dev_fw | https://github.com/Eroven/dev_fw | 880a6e2e9290fca6fe80b2b9a3d7ee8dd73c8649 | 26723d8bcf109e35f43de54dab7c68c5435bb911 | refs/heads/master | 2022-12-07T21:30:15.880000 | 2021-01-26T08:24:51 | 2021-01-26T08:24:51 | 167,095,672 | 0 | 0 | null | false | 2022-12-05T23:27:07 | 2019-01-23T01:31:51 | 2021-01-26T08:25:52 | 2022-12-05T23:27:07 | 889 | 0 | 0 | 13 | Java | false | false | package me.zhaotb.app.api.test;
import me.zhaotb.app.api.station.Address;
import me.zhaotb.app.api.register.Register;
import me.zhaotb.app.api.register.RegistryConf;
import org.junit.Test;
/**
* @author zhaotangbo
* @date 2019/3/1
*/
public class RegisterTest {
private RegistryConf getConf(){
Registry... | UTF-8 | Java | 1,234 | java | RegisterTest.java | Java | [
{
"context": "gistryConf;\nimport org.junit.Test;\n\n/**\n * @author zhaotangbo\n * @date 2019/3/1\n */\npublic class RegisterTest {",
"end": 216,
"score": 0.9995672106742859,
"start": 206,
"tag": "USERNAME",
"value": "zhaotangbo"
}
] | null | [] | package me.zhaotb.app.api.test;
import me.zhaotb.app.api.station.Address;
import me.zhaotb.app.api.register.Register;
import me.zhaotb.app.api.register.RegistryConf;
import org.junit.Test;
/**
* @author zhaotangbo
* @date 2019/3/1
*/
public class RegisterTest {
private RegistryConf getConf(){
Registry... | 1,234 | 0.583468 | 0.561588 | 57 | 20.649122 | 16.831978 | 47 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.421053 | false | false | 13 |
1f7f3283afd263134ed0b063de3285b9a296d557 | 26,877,905,409,523 | 958b6a70a710d0176808ddf008ec420405aab182 | /app/src/main/java/suvamjain/example/com/dbmsproject/helpers/RecyclerTouchListener.java | a15e59af747c08e915c8864d2c47d0eede9bf29b | [
"Apache-2.0"
] | permissive | suvamjain/Classify | https://github.com/suvamjain/Classify | 8617ec54e0ecb93e5a35d18ef7d788b8532984b1 | 37cf46f6a2c928835303c7bab0ff4ad26a8e93b5 | refs/heads/master | 2021-09-12T11:52:45.928000 | 2018-04-16T12:19:46 | 2018-04-16T12:19:46 | 113,211,706 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package suvamjain.example.com.dbmsproject.helpers;
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.View;
import suvamjain.example.com.dbmsproject.activities.FacultyInfoActivity;
import suvamjain.ex... | UTF-8 | Java | 3,163 | java | RecyclerTouchListener.java | Java | [
{
"context": "t.activities.UsersListActivity;\n\n/**\n * Created by SUVAM JAIN on 26-04-2017.\n */\n\n\n@SuppressWarnings(\"ALL\")\npub",
"end": 401,
"score": 0.9997496604919434,
"start": 391,
"tag": "NAME",
"value": "SUVAM JAIN"
}
] | null | [] | package suvamjain.example.com.dbmsproject.helpers;
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.View;
import suvamjain.example.com.dbmsproject.activities.FacultyInfoActivity;
import suvamjain.ex... | 3,159 | 0.672779 | 0.668669 | 90 | 34.133335 | 35.549091 | 165 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.488889 | false | false | 13 |
25debcb63c423fd69d2d3aa8fce2d520a58f33e8 | 33,157,147,529,746 | 25a5214ae251b59a0c5bf9342fb1797b491667db | /Semana 11/ED_Problema2/ED_P2_E1_C/src/main/java/Establecimiento.java | 75b28ab9dfcb01be3527d6b15d1211fe51edca15 | [
"MIT"
] | permissive | CristobalCB/Portafolio-EdD | https://github.com/CristobalCB/Portafolio-EdD | 9379782d33050c8166241bcb08b0bce544d33721 | cf0adeae675346f5a94ece81bbb4238cb66338cf | refs/heads/master | 2022-12-26T12:08:37.987000 | 2020-09-14T12:10:51 | 2020-09-14T12:10:51 | 263,109,563 | 0 | 0 | MIT | false | 2020-10-14T00:28:18 | 2020-05-11T17:20:55 | 2020-09-14T12:11:40 | 2020-10-14T00:28:17 | 8,090 | 0 | 0 | 11 | Java | false | false | import java.util.ArrayList;
import java.util.TreeMap;
public class Establecimiento {
TreeMap<String, Alumno> alumnos;
Establecimiento(){
alumnos= new TreeMap<>();
}
Alumno buscarAlumno(String rut){
return alumnos.get(rut);
}
/**
* Crea un alumno con los parámetros que ti... | UTF-8 | Java | 1,387 | java | Establecimiento.java | Java | [] | null | [] | import java.util.ArrayList;
import java.util.TreeMap;
public class Establecimiento {
TreeMap<String, Alumno> alumnos;
Establecimiento(){
alumnos= new TreeMap<>();
}
Alumno buscarAlumno(String rut){
return alumnos.get(rut);
}
/**
* Crea un alumno con los parámetros que ti... | 1,387 | 0.6787 | 0.6787 | 40 | 33.625 | 30.03805 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 13 |
36cc4671a49e75a18d11afff0d4642eee6398978 | 31,714,038,535,395 | 1570cd3359bdb36294d3ac2d32f042fe6b2435b6 | /core/src/main/java/com/courier/core/convert/OrderOperationConvert.java | a9932478cc1afd600619c660bb1f7b580dad391a | [] | no_license | moutainhigh/aliwareMqSubDataCenter | https://github.com/moutainhigh/aliwareMqSubDataCenter | 5169e5eb772c52aa8ddcbc19e3bd48a0d69d25a1 | f3b54ae2208f74aad44abf9ab7e34c06c88dcabd | refs/heads/master | 2021-06-19T05:17:10.803000 | 2017-05-12T06:22:59 | 2017-05-12T06:22:59 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.courier.core.convert;
import com.courier.commons.util.cache.CacheUtil;
import com.courier.db.entity.CollectOrder;
import com.courier.db.entity.DeliveryOrder;
import com.courier.db.entity.OrderOperation;
import com.courier.sdk.constant.Enumerate;
import org.apache.commons.lang3.StringUtils;
import org.sprin... | UTF-8 | Java | 4,175 | java | OrderOperationConvert.java | Java | [
{
"context": "rayList;\nimport java.util.List;\n\n/**\n * Created by admin on 2015/11/9.\n */\npublic class OrderOperationConv",
"end": 458,
"score": 0.9972586631774902,
"start": 453,
"tag": "USERNAME",
"value": "admin"
}
] | null | [] | package com.courier.core.convert;
import com.courier.commons.util.cache.CacheUtil;
import com.courier.db.entity.CollectOrder;
import com.courier.db.entity.DeliveryOrder;
import com.courier.db.entity.OrderOperation;
import com.courier.sdk.constant.Enumerate;
import org.apache.commons.lang3.StringUtils;
import org.sprin... | 4,175 | 0.701371 | 0.699447 | 99 | 41.010101 | 31.926523 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.69697 | false | false | 13 |
6153fd01298e0b0a5d994f242d748a9ac9acc6f3 | 7,894,149,913,817 | 6641a47a4ae31a32c768e94d8eef4021ee4eabd3 | /a1/src/a1/MyGame.java | b26d77c9b0e770c75ba8de66c7964823d4d62e2f | [] | no_license | ZippyDevs/CSc165_a1_DolphinStarship | https://github.com/ZippyDevs/CSc165_a1_DolphinStarship | 918eefb92dfe97d6be7587ea5f302852dc4539cf | abaf69861ac1de2642a1ec42461267da7fd7af61 | refs/heads/master | 2020-04-23T18:44:17.829000 | 2019-02-19T00:58:56 | 2019-02-19T00:58:56 | 171,378,651 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package a1;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.ArrayList;
import myGameEngine.*;
import net.java.games.input.Controller;
import ray.input.GenericInputManager;
import ray.input.InputManager;
import ray.input.action.Action;
import ray.rage.*;
import ray.rage.asse... | UTF-8 | Java | 14,134 | java | MyGame.java | Java | [] | null | [] | package a1;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.ArrayList;
import myGameEngine.*;
import net.java.games.input.Controller;
import ray.input.GenericInputManager;
import ray.input.InputManager;
import ray.input.action.Action;
import ray.rage.*;
import ray.rage.asse... | 14,134 | 0.610231 | 0.597991 | 311 | 43.440514 | 30.004322 | 113 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.871383 | false | false | 13 |
09a018016db146dfd7d9f454000b8862442b82f7 | 11,682,311,056,052 | 02b80fa5badc4253652a8383b34c0e113a65384f | /data-analyzer/data-importer/src/test/java/projectm/DataImporterTest.java | 749c29863c25e5c174b75dafe33caf7db856cb03 | [] | no_license | atealxt/project-m | https://github.com/atealxt/project-m | acd154933c74b1646ec3772c0242541a0284c351 | e468da8105a0ceccd7b7a600e49af6ce65066040 | refs/heads/master | 2021-01-02T23:09:03.462000 | 2020-10-13T01:11:10 | 2020-10-13T01:11:10 | 99,475,402 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package projectm;
import java.io.IOException;
import java.text.ParseException;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.Spr... | UTF-8 | Java | 733 | java | DataImporterTest.java | Java | [] | null | [] | package projectm;
import java.io.IOException;
import java.text.ParseException;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.Spr... | 733 | 0.785812 | 0.77899 | 29 | 23.275862 | 22.668369 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.827586 | false | false | 13 |
7041aa1fc9de6b9361a20824ba0c2b983c60f133 | 16,767,552,347,089 | e1bf46fe5c808e493397c2e35adad9ed0d16dc67 | /src/ui/finance/tabs/UpdateExpenses.java | 35398b9209eec8ef9966924d51abe11fe896bfb7 | [] | no_license | aperame/itp-desktop | https://github.com/aperame/itp-desktop | 4f6301be5438b65d749f9ee6007559a8fddc696d | e8293cd6482fb7903e092318226c552b80e31c76 | refs/heads/master | 2020-03-26T03:15:58.500000 | 2018-10-06T09:47:18 | 2018-10-06T09:47:18 | 144,447,355 | 0 | 0 | null | true | 2018-08-12T07:37:35 | 2018-08-12T07:37:35 | 2018-08-12T07:08:10 | 2018-08-12T07:08:09 | 0 | 0 | 0 | 0 | null | false | null | package ui.finance.tabs;
import java.awt.EventQueue;
import javax.swing.JInternalFrame;
import ui.components.KTab;
import utils.common.database.Database;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.regex.Matcher;
import java.util.regex.Pattern... | UTF-8 | Java | 10,587 | java | UpdateExpenses.java | Java | [] | null | [] | package ui.finance.tabs;
import java.awt.EventQueue;
import javax.swing.JInternalFrame;
import ui.components.KTab;
import utils.common.database.Database;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.regex.Matcher;
import java.util.regex.Pattern... | 10,587 | 0.597336 | 0.565505 | 371 | 26.536388 | 24.255283 | 178 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.008086 | false | false | 13 |
c489456a4ff9155b2c635b43982a45e3fe5226dd | 32,950,989,123,959 | af968412060e7e940961524223c703ac3da3880f | /cloud-system-ui/src/main/java/com/smiley/cloud/ui/manager/LoginManager.java | bc7d67dcb7461494b8d7fc5b34a764bb8ddc2c21 | [] | no_license | ivanmiletic/cloud-system | https://github.com/ivanmiletic/cloud-system | 2b0aeef4d2febe34d25a6d7b759505d63fbc13b1 | 40f36c69ad2fc3ebac50ec1316e8492118f997f3 | refs/heads/master | 2015-08-13T12:58:17.794000 | 2014-09-18T19:56:34 | 2014-09-18T19:56:34 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.smiley.cloud.ui.manager;
import java.io.IOException;
import java.util.logging.*;
import com.smiley.cloud.ui.controller.LoginController;
import com.smiley.cloud.ui.controller.MainViewController;
import javafx.fxml.FXMLLoader;
import javafx.scene.*;
/** Manages control flow for logins */
public class Logi... | UTF-8 | Java | 1,662 | java | LoginManager.java | Java | [] | null | [] | package com.smiley.cloud.ui.manager;
import java.io.IOException;
import java.util.logging.*;
import com.smiley.cloud.ui.controller.LoginController;
import com.smiley.cloud.ui.controller.MainViewController;
import javafx.fxml.FXMLLoader;
import javafx.scene.*;
/** Manages control flow for logins */
public class Logi... | 1,662 | 0.719013 | 0.719013 | 63 | 25.396826 | 21.805445 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.952381 | false | false | 13 |
360ddc988f76e590a03c4b32a941488093f985de | 32,615,981,699,731 | aa29570f97c4d4785b4f9bd042cea36e40554b98 | /app/src/main/java/com/example/komoriwu/rippleview/bean/Endpoint.java | 0a8130d1fd0094d10cb0c0dba0482135dcde90b5 | [] | no_license | quanyan963/RippleView | https://github.com/quanyan963/RippleView | 1d8632d063fe50f25f22c92e6a98ebce25662bd6 | e51c44bb4a9ee5b55285f454504bc86e2745c070 | refs/heads/master | 2021-09-01T08:57:24.168000 | 2017-12-26T04:18:18 | 2017-12-26T04:18:18 | 113,414,529 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.komoriwu.rippleview.bean;
/**
* Created by KomoriWu on 2017/11/1.
*/
public class Endpoint {
private String endpointId;
public Endpoint(String endpointId) {
this.endpointId = endpointId;
}
public String getEndpointId() {
return endpointId;
}
public void... | UTF-8 | Java | 402 | java | Endpoint.java | Java | [
{
"context": "ample.komoriwu.rippleview.bean;\n\n/**\n * Created by KomoriWu on 2017/11/1.\n */\n\npublic class Endpoint {\n pr",
"end": 73,
"score": 0.7518040537834167,
"start": 65,
"tag": "NAME",
"value": "KomoriWu"
}
] | null | [] | package com.example.komoriwu.rippleview.bean;
/**
* Created by KomoriWu on 2017/11/1.
*/
public class Endpoint {
private String endpointId;
public Endpoint(String endpointId) {
this.endpointId = endpointId;
}
public String getEndpointId() {
return endpointId;
}
public void... | 402 | 0.659204 | 0.641791 | 21 | 18.142857 | 17.822634 | 50 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.238095 | false | false | 13 |
935f64994a07676fd30d24f6e7f52ca3453e0e53 | 19,774,029,496,459 | 6b01b801b51d72befe24bff15b8dd89cfc6b3ded | /ManagerFile/src/com/zls/service/FileService.java | a3549a7469d16962724eda49f67a3bd6571221c6 | [] | no_license | FanBingyang/HelloWord | https://github.com/FanBingyang/HelloWord | 1d638fac40ea1475000cf43104cf14e345ab18a8 | a883a72112a007850af4f4c7449b47a3dadd3bb7 | refs/heads/master | 2022-07-23T09:20:12.940000 | 2019-07-01T15:13:13 | 2019-07-01T15:13:13 | 187,741,986 | 2 | 0 | null | false | 2022-06-21T01:23:21 | 2019-05-21T01:50:39 | 2021-03-22T10:05:23 | 2022-06-21T01:23:21 | 131,202 | 1 | 0 | 2 | Java | false | false | package com.zls.service;
import java.sql.SQLException;
import java.util.List;
import com.zls.dao.FileDaoImp;
import com.zls.domain.StoreFile;
public class FileService {
FileDaoImp fileDao = new FileDaoImp();
public void addFile(StoreFile storefile, String fileType) {
// TODO Auto-generated method stub
try {
... | UTF-8 | Java | 1,650 | java | FileService.java | Java | [] | null | [] | package com.zls.service;
import java.sql.SQLException;
import java.util.List;
import com.zls.dao.FileDaoImp;
import com.zls.domain.StoreFile;
public class FileService {
FileDaoImp fileDao = new FileDaoImp();
public void addFile(StoreFile storefile, String fileType) {
// TODO Auto-generated method stub
try {
... | 1,650 | 0.698182 | 0.698182 | 72 | 21.916666 | 16.664791 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.055556 | false | false | 13 |
762d9fcec1def6b69671c1ef929310c1b89e35b8 | 9,646,496,578,296 | c2fe8c3458c147c51a7b0b8785e9b27d0a408e91 | /cas_model/src/main/java/org/semicloud/cas/model/usv/EPICENTER_USV.java | e09dbc71b7eb7812f257d6c2c7c2270c3a4bd720 | [] | no_license | semicloud/cas | https://github.com/semicloud/cas | 94adcfba14d87d0bd8240bf29433677606ca281c | 1591b8f25dea53501bb81311adedbd8724740048 | refs/heads/master | 2021-03-27T15:14:16.900000 | 2017-02-15T09:13:51 | 2017-02-15T09:13:51 | 80,729,681 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.semicloud.cas.model.usv;
import com.supermap.data.*;
import org.semicloud.utils.db.factory.DaoFactory;
/**
* 创建震中数据集
*/
public class EPICENTER_USV extends USVBase {
/**
* Creates the epi center dataset vector.
*
* @param targetDatasourceName the target datasource name
* @param l... | UTF-8 | Java | 2,515 | java | EPICENTER_USV.java | Java | [] | null | [] | package org.semicloud.cas.model.usv;
import com.supermap.data.*;
import org.semicloud.utils.db.factory.DaoFactory;
/**
* 创建震中数据集
*/
public class EPICENTER_USV extends USVBase {
/**
* Creates the epi center dataset vector.
*
* @param targetDatasourceName the target datasource name
* @param l... | 2,515 | 0.654728 | 0.654728 | 64 | 37.828125 | 34.19318 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.578125 | false | false | 13 |
b10bc13939efa399e7a99c42e2b397e405266e05 | 27,006,754,427,297 | f1c75dea53f20dc5772fca7309e41446559dd0b3 | /CORBA_Supply_Management_System/src/server/data/inventory/InventoryPool.java | 5eb32c9b0f351e6681fdf2806708a8005556dc6f | [] | no_license | Yarharm/Distributed-Systems-Design | https://github.com/Yarharm/Distributed-Systems-Design | 8065364af4b621ade8a28d948e444da20799d289 | c4cebdefeb152aab1810b77a5345398293f6562e | refs/heads/master | 2023-01-08T17:52:43.405000 | 2020-11-14T23:29:40 | 2020-11-14T23:29:40 | 297,513,808 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package server.data.inventory;
import java.util.concurrent.ConcurrentHashMap;
public class InventoryPool {
private final static ConcurrentHashMap<String, StoreInventory> inventories = new ConcurrentHashMap<>();
public static StoreInventory getInventoryOnLocation(String inventoryLocation) {
inventorie... | UTF-8 | Java | 560 | java | InventoryPool.java | Java | [] | null | [] | package server.data.inventory;
import java.util.concurrent.ConcurrentHashMap;
public class InventoryPool {
private final static ConcurrentHashMap<String, StoreInventory> inventories = new ConcurrentHashMap<>();
public static StoreInventory getInventoryOnLocation(String inventoryLocation) {
inventorie... | 560 | 0.764286 | 0.764286 | 16 | 34 | 35.395973 | 107 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5625 | false | false | 13 |
7661daf4341c2ffd3e6ffcc6b8784a159f04a1b8 | 4,260,607,573,867 | 81dc9a1864d4f2ec5898599bdd126bb2a60e0dd6 | /src/org/dbug/expression/EqualityExpression.java | cdcd1859ba23855dfc023fd64738fb6d97f9f48c | [
"Apache-2.0"
] | permissive | Updownquark/dbug | https://github.com/Updownquark/dbug | 0fee386ea5ea9c959ad8f2d1951070ddbc9037a1 | bf03077ef1a42ad17e68070800e22e7ea2039988 | refs/heads/master | 2022-06-18T23:59:20.385000 | 2022-05-17T18:15:32 | 2022-05-17T18:15:32 | 150,137,008 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.dbug.expression;
import org.observe.util.TypeTokens;
public class EqualityExpression<T> extends BinaryExpression<T, Object, Object, Boolean> {
private final boolean isEqual;
public EqualityExpression(Expression<T, ?> left, Expression<T, ?> right, boolean equal) {
super(left, right, TypeTokens... | UTF-8 | Java | 1,439 | java | EqualityExpression.java | Java | [] | null | [] | package org.dbug.expression;
import org.observe.util.TypeTokens;
public class EqualityExpression<T> extends BinaryExpression<T, Object, Object, Boolean> {
private final boolean isEqual;
public EqualityExpression(Expression<T, ?> left, Expression<T, ?> right, boolean equal) {
super(left, right, TypeTokens... | 1,439 | 0.665045 | 0.663655 | 50 | 26.780001 | 28.278818 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.94 | false | false | 13 |
81ffac6c43472dca5717c56aa8b9c39a2b3a3246 | 9,629,316,731,853 | 07a933fc3a5d552df7d48b1e4f0ef7782fe215ff | /app/src/main/java/doran/sailpicker/Widget/GetHtmlCode.java | c5e36182d669eaedc7a7c99e8fc0729d1fd8ac25 | [] | no_license | chicozo/SailPicker | https://github.com/chicozo/SailPicker | 1cd1af1a050e0cbc9db1d6da8fb684b75a0920a4 | c94edcb47588f567d1d8f28418438b5fc0a22718 | refs/heads/master | 2020-05-22T06:23:55.056000 | 2017-03-26T16:58:29 | 2017-03-26T16:58:29 | 84,677,923 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package doran.sailpicker.Widget;
import android.appwidget.AppWidgetManager;
import android.net.Uri;
import android.os.AsyncTask;
import android.util.Log;
import android.view.View;
import android.widget.RemoteViews;
import android.widget.Toast;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.... | UTF-8 | Java | 4,111 | java | GetHtmlCode.java | Java | [
{
"context": "icker.meteo.WindguruTraitement;\n\n/**\n * Created by doran on 25/03/2017.\n */\npublic class GetHtmlCode exten",
"end": 578,
"score": 0.9995725154876709,
"start": 573,
"tag": "USERNAME",
"value": "doran"
}
] | null | [] | package doran.sailpicker.Widget;
import android.appwidget.AppWidgetManager;
import android.net.Uri;
import android.os.AsyncTask;
import android.util.Log;
import android.view.View;
import android.widget.RemoteViews;
import android.widget.Toast;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.... | 4,111 | 0.557313 | 0.550012 | 138 | 28.782608 | 20.778591 | 129 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.65942 | false | false | 13 |
2d52e6f8ffd5a014bdad2999a3c7f7b7bb36e145 | 23,046,794,562,916 | 5e6abc6bca67514b4889137d1517ecdefcf9683a | /Server/src/main/java/org/gielinor/game/node/entity/player/link/prayer/Prayer.java | d4232c3b4e4cc261add4854e7f388d2f15f5a527 | [] | no_license | dginovker/RS-2009-317 | https://github.com/dginovker/RS-2009-317 | 88e6d773d6fd6814b28bdb469f6855616c71fc26 | 9d285c186656ace48c2c67cc9e4fb4aeb84411a4 | refs/heads/master | 2022-12-22T18:47:47.487000 | 2019-09-20T21:24:34 | 2019-09-20T21:24:34 | 208,949,111 | 2 | 2 | null | false | 2022-12-15T23:55:43 | 2019-09-17T03:15:17 | 2021-10-07T09:46:52 | 2022-12-15T23:55:40 | 10,959 | 1 | 2 | 14 | Java | false | false | package org.gielinor.game.node.entity.player.link.prayer;
import java.util.ArrayList;
import java.util.List;
import org.gielinor.game.content.skill.SkillBonus;
import org.gielinor.game.content.skill.Skills;
import org.gielinor.game.content.skill.free.prayer.QuickPrayer;
import org.gielinor.game.node.entity.En... | UTF-8 | Java | 9,473 | java | Prayer.java | Java | [
{
"context": "naging class of a players prayers.\r\n *\r\n * @author 'Vexia\r\n * @author Emperor\r\n * @date 06/10/2013\r\n *",
"end": 895,
"score": 0.9312297701835632,
"start": 895,
"tag": "NAME",
"value": ""
},
{
"context": "ging class of a players prayers.\r\n *\r\n * @author 'Ve... | null | [] | package org.gielinor.game.node.entity.player.link.prayer;
import java.util.ArrayList;
import java.util.List;
import org.gielinor.game.content.skill.SkillBonus;
import org.gielinor.game.content.skill.Skills;
import org.gielinor.game.content.skill.free.prayer.QuickPrayer;
import org.gielinor.game.node.entity.En... | 9,473 | 0.581125 | 0.566769 | 263 | 34.026615 | 31.657795 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.60076 | false | false | 13 |
4c33a692bfdc7fc6184e80458e334d8bd74091c9 | 30,159,260,400,734 | 3f657072df003109c081caa4244ab4f862ea6874 | /java/src/com/ask/nrelate/rt/mr/LogNormalizerInvoker.java | cbbe42a0fa1487cca4752dbdb822d455cd0923bb | [] | no_license | SivakumarAnnamalai/myProject | https://github.com/SivakumarAnnamalai/myProject | f0fbf311878c4dd7a07793a14cafc9e2fb10cbe9 | 5014c4a051a2fef8d14bacbd16a3f00dee868a87 | refs/heads/master | 2021-05-28T12:47:10.582000 | 2013-12-30T08:51:38 | 2013-12-30T08:51:38 | 15,523,949 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ask.nrelate.rt.mr;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.conf.Configured;
import org.apache.hadoop.filecache.DistributedCache;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.lib.i... | UTF-8 | Java | 3,616 | java | LogNormalizerInvoker.java | Java | [] | null | [] | package com.ask.nrelate.rt.mr;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.conf.Configured;
import org.apache.hadoop.filecache.DistributedCache;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.lib.i... | 3,616 | 0.701881 | 0.694414 | 83 | 42.566265 | 32.876251 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.86747 | false | false | 13 |
5be55d0d96541e19c3645976a8e8e2222b93181d | 1,546,188,284,667 | 265e7b0be46550f5c123a6a5e79e009d06a3dbb6 | /igeek/src/main/java/theory/algorithm/search/DfsSearch.java | 076fa9b7a9874ee5d2050d808c82b162415f33ba | [] | no_license | ChNan/ILiangFeng | https://github.com/ChNan/ILiangFeng | 5619baa27abc37aa64b86dee36d8b0e8586807d4 | ca473471b76cb13ac2b219c79d845006b82682a9 | refs/heads/master | 2018-02-06T18:14:09.892000 | 2016-04-11T12:52:33 | 2016-04-11T12:52:33 | 27,204,686 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package theory.algorithm.search;
/**
* @author ChNan
*/
public class DfsSearch {
//[][][]+[][][]=[][][];
private static final int[] array = new int[9];
private static final int[] book = new int[10];
public static void main(String[] args) {
dfs(0);
}
static void dfs(int step) {
... | UTF-8 | Java | 1,099 | java | DfsSearch.java | Java | [
{
"context": "package theory.algorithm.search;\n\n/**\n * @author ChNan\n */\npublic class DfsSearch {\n //[][][]+[][][]=",
"end": 54,
"score": 0.994436502456665,
"start": 49,
"tag": "NAME",
"value": "ChNan"
}
] | null | [] | package theory.algorithm.search;
/**
* @author ChNan
*/
public class DfsSearch {
//[][][]+[][][]=[][][];
private static final int[] array = new int[9];
private static final int[] book = new int[10];
public static void main(String[] args) {
dfs(0);
}
static void dfs(int step) {
... | 1,099 | 0.419472 | 0.363967 | 37 | 28.702703 | 28.48505 | 134 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.432432 | false | false | 13 |
075cee4ef0790a06f8b07e0a486809a9c82eb934 | 17,428,977,334,310 | f354b266e55eedc729fc7e90c7ab955829a7af0e | /src/main/java/com/bangxuan/xxw/entity/Company.java | 9e344651d32d70b35d3ef348e8acc829307ad526 | [] | no_license | turbidexplore/xxw | https://github.com/turbidexplore/xxw | 1380d902a41c4c9c95c4b9563ad496aa09c0bbbb | d7fb1f7d804323dfcd02f77bc3523fcc21d0698f | refs/heads/master | 2022-07-15T18:04:35.204000 | 2019-09-05T05:46:53 | 2019-09-05T05:46:53 | 186,349,569 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.bangxuan.xxw.entity;
import java.util.Date;
public class Company {
private Integer id;
private String company_name;
private String phone;
private String pwd;
private String salt;
private String company_en;
private String company_desc;
private String company_law;
... | UTF-8 | Java | 6,970 | java | Company.java | Java | [] | null | [] | package com.bangxuan.xxw.entity;
import java.util.Date;
public class Company {
private Integer id;
private String company_name;
private String phone;
private String pwd;
private String salt;
private String company_en;
private String company_desc;
private String company_law;
... | 6,970 | 0.607604 | 0.603587 | 365 | 18.098631 | 17.509485 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.30137 | false | false | 13 |
c7202a0c53ef7061a581304aee2956ee406fc39e | 14,465,449,913,388 | cf5bfc3478a9f863e42241ec847587cce8b8e229 | /week11/Exercise3/MinuteTo.java | 50a58da5fb7d78f0624adce869b62af71358f940 | [] | no_license | omaralzuhairi27/JavaProgramming | https://github.com/omaralzuhairi27/JavaProgramming | e67ea12f6a2a2cc749f7c1ce603759ce22cf3021 | d59cbb1ca747e616c9e13a13abb33ea0e3e88f07 | refs/heads/master | 2020-04-06T17:58:16.823000 | 2019-02-22T13:56:18 | 2019-02-22T13:56:18 | 157,680,093 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package week11.Exercise3;
public class MinuteTo implements CheckListClock {
ChangeHoursToWords changeHour=new ChangeHoursToWords();
@Override
public Boolean checkMinuts(Integer number) {
return number < 60 && number >= 20;
}
@Override
public String mesg(Integer hours, Integer min... | UTF-8 | Java | 454 | java | MinuteTo.java | Java | [] | null | [] | package week11.Exercise3;
public class MinuteTo implements CheckListClock {
ChangeHoursToWords changeHour=new ChangeHoursToWords();
@Override
public Boolean checkMinuts(Integer number) {
return number < 60 && number >= 20;
}
@Override
public String mesg(Integer hours, Integer min... | 454 | 0.702643 | 0.680617 | 19 | 22.894737 | 30.419687 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.263158 | false | false | 13 |
4710f35a88c6f276dbe6e233081f72651457d0db | 25,108,378,832,768 | b0bde00c0e27f2fa4f6eb4578a18c0004dda4915 | /src/com/gmail/realtadukoo/BMC/BMCParallel.java | 0366d645f41648a84a557a009f09810b497259df | [] | no_license | Tadukoo/BibleMinecraftConvert | https://github.com/Tadukoo/BibleMinecraftConvert | 80cfd9baad2ee5ab481a644cfc80b7ab8d2e7aed | 78a3ed8132ec22d70f13cc965ea858e76c6db28b | refs/heads/master | 2020-05-16T21:51:27.677000 | 2019-05-11T18:21:37 | 2019-05-11T18:21:37 | 183,320,223 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.gmail.realtadukoo.BMC;
import java.io.File;
import com.gmail.realtadukoo.BMC.Parallel.GenerateBookParallel;
public class BMCParallel{
public static void main(String[] args){
int minThreads = 1;
int maxThreads = 10;
long before, after, elapsedParBible, elapsedParPsalms;
for(int i = minThread... | UTF-8 | Java | 1,776 | java | BMCParallel.java | Java | [] | null | [] | package com.gmail.realtadukoo.BMC;
import java.io.File;
import com.gmail.realtadukoo.BMC.Parallel.GenerateBookParallel;
public class BMCParallel{
public static void main(String[] args){
int minThreads = 1;
int maxThreads = 10;
long before, after, elapsedParBible, elapsedParPsalms;
for(int i = minThread... | 1,776 | 0.671734 | 0.656532 | 59 | 29.101694 | 27.707121 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.033898 | false | false | 13 |
f094667e99ee3a269d0e14d2a2fe369a9bcbb505 | 35,192,962,045,182 | 59a7d985917bf4b1473c26d577840107dea673b1 | /app/src/main/java/com/zeus/bookcase/app/activities/PullRefreshActivity.java | 341d8051e922244ffae8063326a86bca3be4a7cf | [] | no_license | zeuscoder/Bookcase | https://github.com/zeuscoder/Bookcase | 0bfdef1a7b68df4654bf4ed1859ed6ad6a60cdc7 | 8c7f901928ee360304d02fb25f77c24203fc9a24 | refs/heads/master | 2021-01-10T01:46:16.587000 | 2016-02-03T05:53:41 | 2016-02-03T05:53:41 | 43,372,504 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.zeus.bookcase.app.activities;
import android.app.Activity;
import android.os.Bundle;
import com.yalantis.phoenix.PullToRefreshView;
import com.zeus.bookcase.R;
/**
* Created by zeus_coder on 2015/10/6.
*/
public class PullRefreshActivity extends Activity {
private PullToRefreshView mPullToRefreshV... | UTF-8 | Java | 1,007 | java | PullRefreshActivity.java | Java | [
{
"context": "ew;\nimport com.zeus.bookcase.R;\n\n/**\n * Created by zeus_coder on 2015/10/6.\n */\npublic class PullRefreshActivit",
"end": 203,
"score": 0.9996231198310852,
"start": 193,
"tag": "USERNAME",
"value": "zeus_coder"
}
] | null | [] | package com.zeus.bookcase.app.activities;
import android.app.Activity;
import android.os.Bundle;
import com.yalantis.phoenix.PullToRefreshView;
import com.zeus.bookcase.R;
/**
* Created by zeus_coder on 2015/10/6.
*/
public class PullRefreshActivity extends Activity {
private PullToRefreshView mPullToRefreshV... | 1,007 | 0.634558 | 0.623635 | 34 | 28.617647 | 24.722 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.382353 | false | false | 13 |
0cecbdd34c615dab3b7b155982a2d8202a08afbc | 32,804,960,274,250 | 6845be3a19e44ea2d68d404797dd42e1aa9b2e49 | /src/main/java/com/meishi/common/client/wechat/co/WechatCardCo.java | 820cc6d1a2d11474ccd0897e7eef6148502b30a4 | [] | no_license | 18321897105/common | https://github.com/18321897105/common | 15e7a6b5cb40e83715cd1261bef4378091b8bccb | 49a52565d20d838bb6e22a9ea0d96736f2932887 | refs/heads/master | 2019-06-27T15:44:43.534000 | 2017-08-21T05:21:59 | 2017-08-21T05:21:59 | 100,915,185 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.meishi.common.client.wechat.co;
import java.io.Serializable;
import java.util.List;
/**
* 微信卡券对象
*/
public class WechatCardCo implements Serializable {
private static final long serialVersionUID = 8120502290444893359L;
/**卡券类型:团购券*/
public static final String TYPE_GROUPON = "GROUPON";
... | UTF-8 | Java | 22,455 | java | WechatCardCo.java | Java | [] | null | [] | package com.meishi.common.client.wechat.co;
import java.io.Serializable;
import java.util.List;
/**
* 微信卡券对象
*/
public class WechatCardCo implements Serializable {
private static final long serialVersionUID = 8120502290444893359L;
/**卡券类型:团购券*/
public static final String TYPE_GROUPON = "GROUPON";
... | 22,455 | 0.59999 | 0.5968 | 802 | 24.408978 | 18.532907 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.239401 | false | false | 13 |
02a7f571be84aa3b549adcd06e9777bfb9506da0 | 36,782,099,933,933 | c0a8c4a2b82a54ed8eac710921446cbcb6a762ef | /deprecated/Dataset Crawler/src/main/java/uff/ic/swlab/datasetcrawler/util/Executor.java | c01438a9df3fb8b1425d06e95de4ffdb4ef3896f | [] | no_license | nevessangelo/SWLab | https://github.com/nevessangelo/SWLab | a9df34a99e25a82f51b55894d004ffc948937e83 | d28e74f4a8653a8e393c42e8cf5e5ec3cbfbb43d | refs/heads/master | 2020-12-02T12:44:26.672000 | 2017-07-06T18:49:49 | 2017-07-06T18:49:49 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package uff.ic.swlab.datasetcrawler.util;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.FutureTask;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
public abstract class Executor {
public static <T> T execute(... | UTF-8 | Java | 758 | java | Executor.java | Java | [] | null | [] | package uff.ic.swlab.datasetcrawler.util;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.FutureTask;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
public abstract class Executor {
public static <T> T execute(... | 758 | 0.680739 | 0.680739 | 23 | 31.956522 | 27.796587 | 131 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.73913 | false | false | 13 |
9dfe18756a98d768f0abd43811a7cb14838c7c97 | 36,962,488,559,403 | 7ca3c66816d5d8a9fbb48965a1c2491680964a0a | /algorithms-collected/algorithms-collected-miscs/src/main/java/codebytes/stacksorter/Code.java | 39fc5c82d37ec8e8a70d4df89a692bdb82c7ddf7 | [] | no_license | sanasri/algorithms | https://github.com/sanasri/algorithms | d1f17e1d0af3d2b6e4581fa1f8321390bf4a0a93 | 932a78017f39953c2c620c8e5356a21884489608 | refs/heads/master | 2020-05-05T04:02:41.581000 | 2015-01-29T03:52:16 | 2015-01-29T03:52:16 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package codebytes.stacksorter;
class OrderedStack<T extends Comparable<T>> extends Stack<T>{
public OrderedStack(int size) {
super(0);
elements = (T[])new Comparable[size];
}
}
class StackSorter{
public static <T extends Comparable<T>> OrderedStack<T> sort(Stack<T> unsor... | UTF-8 | Java | 1,214 | java | Code.java | Java | [] | null | [] | package codebytes.stacksorter;
class OrderedStack<T extends Comparable<T>> extends Stack<T>{
public OrderedStack(int size) {
super(0);
elements = (T[])new Comparable[size];
}
}
class StackSorter{
public static <T extends Comparable<T>> OrderedStack<T> sort(Stack<T> unsor... | 1,214 | 0.543657 | 0.525535 | 38 | 29.842106 | 23.672688 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.815789 | false | false | 13 |
488a68e720f71e92132e3229b9adb79f55d7dc8d | 33,792,802,722,866 | facd219af87068955d26558bd790b501784f2ab2 | /app/src/main/java/org/andrelsmoraes/pictureviewer/data/manager/ImageManager.java | 54a5b336997cb7c06404272279b95d39f673bcec | [
"MIT"
] | permissive | andrelsmoraes/picture-viewer | https://github.com/andrelsmoraes/picture-viewer | 01b16310c27e59e9a8a08c42db72d9832cc8e57d | 4064d5e6db3b8390f2dea2b8d6306e4325acadfb | refs/heads/master | 2019-04-09T02:32:24.594000 | 2017-04-24T12:28:14 | 2017-04-24T12:28:14 | 88,996,223 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.andrelsmoraes.pictureviewer.data.manager;
import org.andrelsmoraes.pictureviewer.data.local.PixabayImage;
import org.andrelsmoraes.pictureviewer.data.local.PixabaySearchResult;
import org.andrelsmoraes.pictureviewer.data.remote.IPixabayApi;
import java.util.List;
import javax.inject.Inject;
import io.re... | UTF-8 | Java | 1,079 | java | ImageManager.java | Java | [
{
"context": "o.reactivex.functions.Function;\n\n/**\n * Created by andre on 21/04/17.\n */\n\npublic class ImageManager imple",
"end": 404,
"score": 0.9925078749656677,
"start": 399,
"tag": "USERNAME",
"value": "andre"
}
] | null | [] | package org.andrelsmoraes.pictureviewer.data.manager;
import org.andrelsmoraes.pictureviewer.data.local.PixabayImage;
import org.andrelsmoraes.pictureviewer.data.local.PixabaySearchResult;
import org.andrelsmoraes.pictureviewer.data.remote.IPixabayApi;
import java.util.List;
import javax.inject.Inject;
import io.re... | 1,079 | 0.690454 | 0.684893 | 38 | 27.394737 | 28.248465 | 111 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.394737 | false | false | 13 |
3d623e830ee9537ed3297658d560970cd5a75734 | 38,414,187,505,716 | e71471a6c5e84f0bcceb80ae78219bc6d08ac78b | /src/me/aloidia/baguettebirb/Constants.java | f16394726e943f4c93cf4af4e7f71cba0ab9a231 | [] | no_license | divadnebnahtan/BaguetteBirb | https://github.com/divadnebnahtan/BaguetteBirb | cb84533e0f488e18c502d5fed26024a6f8799d1b | 0359ba4e35229bd8296cff3a312f69bdd6d03e45 | refs/heads/main | 2023-02-19T18:31:29.524000 | 2021-01-23T05:14:17 | 2021-01-23T05:14:17 | 332,097,280 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package me.aloidia.baguettebirb;
import javafx.scene.image.Image;
import javafx.scene.media.AudioClip;
import me.aloidia.baguettebirb.sprites.Baguette;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class Constants {
public static final String... | UTF-8 | Java | 2,350 | java | Constants.java | Java | [
{
"context": "package me.aloidia.baguettebirb;\r\n\r\nimport javafx.scene.image.Imag",
"end": 16,
"score": 0.514699399471283,
"start": 13,
"tag": "USERNAME",
"value": "oid"
},
{
"context": "import javafx.scene.media.AudioClip;\r\nimport me.aloidia.baguettebirb.sprites.Baguette;\r\n\r... | null | [] | package me.aloidia.baguettebirb;
import javafx.scene.image.Image;
import javafx.scene.media.AudioClip;
import me.aloidia.baguettebirb.sprites.Baguette;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class Constants {
public static final String... | 2,350 | 0.673191 | 0.662553 | 64 | 34.71875 | 34.009407 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.75 | false | false | 13 |
977917fd9b0d2bcaacbfedcab2b2960aec73aa2b | 37,477,884,626,435 | 8d637db64e19a9dbf73b92f2beaef10ccbfe96b8 | /view/src/main/java/com/lb/view/activity/calendar/CalendarMainActivity.java | b77977537d468b6fb3dc007556acddf199573e8f | [] | no_license | lib739449500/mydemo | https://github.com/lib739449500/mydemo | d21da168e88c7490b38beae551c221c72ebb26ff | 96165fbe2614ba75fcf732b85f46e4852d068639 | refs/heads/master | 2020-04-11T06:09:36.819000 | 2020-03-26T09:19:12 | 2020-03-26T09:19:12 | 161,569,321 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lb.view.activity.calendar;
import android.content.Intent;
import android.view.View;
import android.widget.TextView;
import com.lb.view.R;
import com.lb.thirdpart.activity.BaseActivity;
import com.lb.view.activity.calendar.CalendarActivity;
/**
* Created by lbin on 2016/9/27.
*/
public class CalendarMai... | UTF-8 | Java | 3,382 | java | CalendarMainActivity.java | Java | [
{
"context": "vity.calendar.CalendarActivity;\n\n/**\n * Created by lbin on 2016/9/27.\n */\npublic class CalendarMainActivi",
"end": 277,
"score": 0.999527096748352,
"start": 273,
"tag": "USERNAME",
"value": "lbin"
}
] | null | [] | package com.lb.view.activity.calendar;
import android.content.Intent;
import android.view.View;
import android.widget.TextView;
import com.lb.view.R;
import com.lb.thirdpart.activity.BaseActivity;
import com.lb.view.activity.calendar.CalendarActivity;
/**
* Created by lbin on 2016/9/27.
*/
public class CalendarMai... | 3,382 | 0.684944 | 0.682869 | 89 | 36.91011 | 33.768425 | 112 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.561798 | false | false | 13 |
089c2bf77f346f63dd053bf6db9e333c589d02e9 | 28,759,101,081,883 | af7ad52893a09920e5e2b8364c9b07d441368e28 | /src/zcy05/string/Exam_080.java | ffb0d08d6c9f8601f264934d4d1648d8e2874bb1 | [] | no_license | lihui1625/CareerCup | https://github.com/lihui1625/CareerCup | 62406a7f51abb79312ba1a52a3de3b783458088b | be4df1c7329326b3b4abfcea367b3f114e9691b0 | refs/heads/master | 2021-01-10T08:44:07.872000 | 2017-05-07T14:33:17 | 2017-05-07T14:33:17 | 44,803,970 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package zcy05.string;
public class Exam_080 {
public static int binarySearch(String[] array, String a) {
if (array == null || array.length == 0 || a == null || a.length() == 0) {
return -1;
}
return binarySearch(array, a, 0, array.length - 1);
}
public static int binarySearch(String[] array,... | UTF-8 | Java | 3,014 | java | Exam_080.java | Java | [] | null | [] | package zcy05.string;
public class Exam_080 {
public static int binarySearch(String[] array, String a) {
if (array == null || array.length == 0 || a == null || a.length() == 0) {
return -1;
}
return binarySearch(array, a, 0, array.length - 1);
}
public static int binarySearch(String[] array,... | 3,014 | 0.581951 | 0.568016 | 94 | 31.063829 | 24.380323 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.648936 | false | false | 13 |
c26d8e3c94bcb56840aa4503c60e2985f3317402 | 28,449,863,407,712 | ba5e4ee2c47061ef4897f8eb1171c31b5290e9d6 | /src/src/kscript/KInstance.java | d2df8cf56e4e94b738264408cfddde38d1e6f874 | [] | no_license | Riley-Kilgore/KScript-Java | https://github.com/Riley-Kilgore/KScript-Java | a3f7498fc6d8940b02a1c4af342007a04e76f13d | 3db7efbe02ad5ddd0cd4cd9b95c151af9468872b | refs/heads/master | 2020-03-26T06:25:08.477000 | 2018-12-02T04:57:43 | 2018-12-02T04:57:43 | 144,604,114 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package kscript;
import java.util.HashMap;
import java.util.Map;
public class KInstance {
private KClass kClass;
private final Map<String, Object> fields = new HashMap<>();
KInstance(KClass kClass){
this.kClass = kClass;
}
Object get(Token name){
if(fields.containsKey(name.lexem... | UTF-8 | Java | 762 | java | KInstance.java | Java | [] | null | [] | package kscript;
import java.util.HashMap;
import java.util.Map;
public class KInstance {
private KClass kClass;
private final Map<String, Object> fields = new HashMap<>();
KInstance(KClass kClass){
this.kClass = kClass;
}
Object get(Token name){
if(fields.containsKey(name.lexem... | 762 | 0.615486 | 0.615486 | 34 | 21.411764 | 21.398348 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 13 |
076d055230abb789cb8518b9ee83343e3e67aaaf | 37,160,057,057,339 | 7170cf1dbecad9f87b78c7ec7a22a470fe925ff7 | /src/java/Objects/Admin/Admin.java | 9025edf689955bbb7bc0483ed38130fc26521d8a | [] | no_license | soheilrahsaz/MacaronBaWebSite | https://github.com/soheilrahsaz/MacaronBaWebSite | 1e652c3171466c2e70a151a5319095be932cefc5 | c47a5a7f0781d347f8f28c03cd887a8214315af3 | refs/heads/master | 2022-01-08T08:06:44.718000 | 2019-05-15T05:13:06 | 2019-05-15T05:13:06 | 186,752,486 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Objects.Admin;
import java.sql.Timestamp;
/**
*
* @author Moses
*/
public class Admin {
private int admi... | UTF-8 | Java | 1,778 | java | Admin.java | Java | [
{
"context": "\nimport java.sql.Timestamp;\r\n\r\n/**\r\n *\r\n * @author Moses\r\n */\r\npublic class Admin {\r\n private int admin",
"end": 271,
"score": 0.984569787979126,
"start": 266,
"tag": "NAME",
"value": "Moses"
}
] | 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 Objects.Admin;
import java.sql.Timestamp;
/**
*
* @author Moses
*/
public class Admin {
private int admi... | 1,778 | 0.559618 | 0.559618 | 86 | 18.674419 | 17.358358 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.325581 | false | false | 13 |
a01415326d36eb464948def5362aa122258b0828 | 38,225,208,942,036 | 701aa17371ce9eeb3d8a4be05603233b2a919996 | /src/spcoursework/lexanalyser/tokens/Tag.java | 2f5ef3e61e297b86f379a5d7ddef46deefb332d0 | [] | no_license | zakolenko/Translator | https://github.com/zakolenko/Translator | 2ad3f890dfb386c5ab05b4cb085a5fcc02c32326 | d33fc429c2e6bb439965f1edba96b53ede848f73 | refs/heads/master | 2021-05-31T01:25:29.095000 | 2016-01-09T02:25:30 | 2016-01-09T02:25:30 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package spcoursework.lexanalyser.tokens;
/**
* This class contains all tags, which may have tokens
*
* @author Roman Zakolenko
*
*/
public class Tag {
public static final int MUL = 256;
public static final int DIV = 257;
public static final int SHL = 258;
public static final int SHR = 259;
public static fin... | UTF-8 | Java | 2,298 | java | Tag.java | Java | [
{
"context": "ins all tags, which may have tokens\n * \n * @author Roman Zakolenko\n *\n */\npublic class Tag {\n\tpublic static final in",
"end": 131,
"score": 0.999555766582489,
"start": 116,
"tag": "NAME",
"value": "Roman Zakolenko"
}
] | null | [] | package spcoursework.lexanalyser.tokens;
/**
* This class contains all tags, which may have tokens
*
* @author <NAME>
*
*/
public class Tag {
public static final int MUL = 256;
public static final int DIV = 257;
public static final int SHL = 258;
public static final int SHR = 259;
public static final int PL... | 2,289 | 0.738033 | 0.668842 | 66 | 33.81818 | 13.338154 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.666667 | false | false | 13 |
6fda8edbcf0640b914760ba31853e0b3c29becc7 | 37,340,445,688,654 | b1879684abe292d7a780493e608d15c4219e8411 | /src/com/bizwink/webapps/register/Lookyou.java | f9d3b89d6debb54508fa222f2373db2c3df22914 | [] | no_license | laoppp55/webbuilder | https://github.com/laoppp55/webbuilder | c60f62dde8a0b70087187bd48f18f2684f47a3d8 | eb31b2d27141aa94570dad121536267c28716e70 | refs/heads/master | 2020-04-11T13:12:23.395000 | 2020-02-28T14:44:33 | 2020-02-28T14:44:33 | 238,346,053 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.bizwink.webapps.register;
import java.sql.Timestamp;
/**
* Created by IntelliJ IDEA.
* User: Administrator
* Date: 12-8-9
* Time: 下午10:43
* To change this template use File | Settings | File Templates.
*/
public class Lookyou {
private long userid; //用户ID,主键
private String user... | UTF-8 | Java | 4,432 | java | Lookyou.java | Java | [
{
"context": "estamp;\n\n/**\n * Created by IntelliJ IDEA.\n * User: Administrator\n * Date: 12-8-9\n * Time: 下午10:43\n * To change thi",
"end": 122,
"score": 0.9146008491516113,
"start": 109,
"tag": "USERNAME",
"value": "Administrator"
},
{
"context": "\n\n public String getUsern... | null | [] | package com.bizwink.webapps.register;
import java.sql.Timestamp;
/**
* Created by IntelliJ IDEA.
* User: Administrator
* Date: 12-8-9
* Time: 下午10:43
* To change this template use File | Settings | File Templates.
*/
public class Lookyou {
private long userid; //用户ID,主键
private String user... | 4,432 | 0.586607 | 0.584477 | 194 | 20.783504 | 18.158085 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.329897 | false | false | 13 |
aa25b153b5b79c4ff806773cf98466aed5bb06e5 | 37,340,445,689,712 | 4ba46b8a6896df1784bbbcded917eb48b72f60c2 | /src/main/java/com/example/smallwhite/designpatterns/singleton/Singleton.java | 854ea6974c592bc6d4549f4eb1f8306b486ede0a | [] | no_license | 15279676722/smallWhite | https://github.com/15279676722/smallWhite | 0ef1f486f71abe628bfe0c44026ca5b907d3621b | 0740eb7e02148746f73e322346c3037b32228fa3 | refs/heads/master | 2023-07-19T04:53:58.113000 | 2023-03-31T08:20:09 | 2023-03-31T08:20:09 | 173,056,778 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.smallwhite.designpatterns.singleton;
/**
* 单例设计模式
*
* 单例模式,它的定义就是确保某一个类只有一个实例,并且提供一个全局访问点。
* <p>
* 单例模式具备典型的3个特点:1、只有一个实例。 2、自我实例化。 3、提供全局访问点。
* <p>
* 因此当系统中只需要一个实例对象或者系统中只允许一个公共访问点,除了这个公共访问点外,不能通过其他访问点访问该实例时,可以使用单例模式。
* <p>
* 单例模式的主要优点就是节约系统资源、提高了系统效率,同时也能够严格控制客户对它的访问。也许就是因为系统中只有一个实例,这样就导... | UTF-8 | Java | 5,987 | java | Singleton.java | Java | [
{
"context": ",违背了“单一职责原则”,同时也没有抽象类,所以扩展起来有一定的困难。\r *\r * @author: yangqiang\r * @create: 2020-12-24 15:24\r */\rpublic class Sin",
"end": 390,
"score": 0.9985675811767578,
"start": 381,
"tag": "USERNAME",
"value": "yangqiang"
},
{
"context": "动支持序列化机制,绝对防止多次实例化。\r * 这种方式是 Effect... | null | [] | package com.example.smallwhite.designpatterns.singleton;
/**
* 单例设计模式
*
* 单例模式,它的定义就是确保某一个类只有一个实例,并且提供一个全局访问点。
* <p>
* 单例模式具备典型的3个特点:1、只有一个实例。 2、自我实例化。 3、提供全局访问点。
* <p>
* 因此当系统中只需要一个实例对象或者系统中只允许一个公共访问点,除了这个公共访问点外,不能通过其他访问点访问该实例时,可以使用单例模式。
* <p>
* 单例模式的主要优点就是节约系统资源、提高了系统效率,同时也能够严格控制客户对它的访问。也许就是因为系统中只有一个实例,这样就导... | 5,983 | 0.643681 | 0.631579 | 123 | 27.886179 | 29.055653 | 154 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.130081 | false | false | 13 |
7ff8f6802c41b391e3a4baba303fea12ca98ac22 | 7,550,552,531,879 | 980c32864fe7ae5b73c5476de9bca5f931c253e3 | /below.java | 250669803fcaea8a13660e07a8665a750b6369b0 | [] | no_license | fyrworx4/java-chapter-5 | https://github.com/fyrworx4/java-chapter-5 | 9df22b2e3995881f4fd9ce6ea60f8ee50df08736 | 862b764eb514140ac1a411aa21ae5c07982b01fb | refs/heads/master | 2023-03-21T00:48:26.071000 | 2021-03-08T02:08:21 | 2021-03-08T02:08:21 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Scanner;
public class below {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
int numValues = scnr.nextInt();
int[] userValues = new int[numValues];
int i;
for (i = 0; i < numValues; i++) {
userValues[i] = scnr.ne... | UTF-8 | Java | 589 | java | below.java | Java | [] | null | [] | import java.util.Scanner;
public class below {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
int numValues = scnr.nextInt();
int[] userValues = new int[numValues];
int i;
for (i = 0; i < numValues; i++) {
userValues[i] = scnr.ne... | 589 | 0.494058 | 0.490662 | 26 | 21.653847 | 19.205252 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.538462 | false | false | 13 |
c481a42578db1c5b1497cd189e80e22b122e7e5d | 34,548,716,941,031 | 6b20316b550cb69c053a8c81d6eee9a65d9e0544 | /src/main/java/com/todaylesson/Mapper/Hm_Us_MymanageMapper.java | 041f245443e566c6eb7147e2d6a7e3f68e1f1eee | [] | no_license | y1175/TodayLesson | https://github.com/y1175/TodayLesson | 87c057a794a503c06ff2d53ec07a8250dc77cd5c | ffbf7a27b6c7f622902c1ce258ab534e733d3c1e | refs/heads/master | 2022-12-08T12:38:16.732000 | 2020-09-03T09:09:52 | 2020-09-03T09:09:52 | 292,519,153 | 0 | 0 | null | true | 2020-09-03T09:02:55 | 2020-09-03T09:02:54 | 2020-06-28T07:01:28 | 2020-07-02T02:27:14 | 11,122 | 0 | 0 | 0 | null | false | false | package com.todaylesson.Mapper;
import java.util.HashMap;
import org.apache.ibatis.annotations.Mapper;
import com.todaylesson.DTO.MemberDTO;
@Mapper
public interface Hm_Us_MymanageMapper {
public MemberDTO myinfolist(String member_id);
public int myinfoupdate(MemberDTO dto);
public int myinfoup... | UTF-8 | Java | 512 | java | Hm_Us_MymanageMapper.java | Java | [] | null | [] | package com.todaylesson.Mapper;
import java.util.HashMap;
import org.apache.ibatis.annotations.Mapper;
import com.todaylesson.DTO.MemberDTO;
@Mapper
public interface Hm_Us_MymanageMapper {
public MemberDTO myinfolist(String member_id);
public int myinfoupdate(MemberDTO dto);
public int myinfoup... | 512 | 0.740234 | 0.738281 | 25 | 18.48 | 20.786764 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.72 | false | false | 13 |
e2301ec0d10cbdb77e4cec0edcfd0cf245b88afc | 35,089,882,828,201 | 7ca8ffcdfb39ab4ffc2d8ff291e46ffabc8db6a2 | /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-timelineservice-documentstore/src/main/java/org/apache/hadoop/yarn/server/timelineservice/documentstore/writer/TimelineCollectionWriter.java | 5c3c56d8c873c7c3deb2514a29f6b5472b0747f2 | [
"CC-PDDC",
"CC0-1.0",
"CC-BY-3.0",
"LicenseRef-scancode-unknown-license-reference",
"LGPL-2.1-only",
"LicenseRef-scancode-other-permissive",
"CDDL-1.0",
"GCC-exception-3.1",
"MIT",
"EPL-1.0",
"Classpath-exception-2.0",
"BSD-3-Clause",
"GPL-2.0-only",
"Apache-2.0",
"LicenseRef-scancode-pu... | permissive | apache/hadoop | https://github.com/apache/hadoop | ea2a4a370dd00d4a3806dd38df5b3cf6fd5b2c64 | 42b4525f75b828bf58170187f030b08622e238ab | refs/heads/trunk | 2023-08-18T07:29:26.346000 | 2023-08-17T16:56:34 | 2023-08-17T16:56:34 | 23,418,517 | 16,088 | 10,600 | Apache-2.0 | false | 2023-09-14T16:59:38 | 2014-08-28T07:00:08 | 2023-09-14T13:02:57 | 2023-09-14T16:59:37 | 1,823,927 | 13,835 | 8,586 | 907 | Java | false | false | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you... | UTF-8 | Java | 6,096 | java | TimelineCollectionWriter.java | Java | [] | null | [] | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you... | 6,096 | 0.761647 | 0.759678 | 146 | 40.760273 | 27.436428 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.561644 | false | false | 13 |
40e5a1a3c1c2f09b0e2effc657bf678ba4c05f5f | 25,606,595,087,351 | 6910f3f6b19bb2073d925f2d47a87c8c52537def | /src/test/java/org/gaul/s3proxy/ReadOnlyBlobStoreTest.java | a83645bb52de3a9ba1fdb33f295bf78896ca89b9 | [
"Apache-2.0"
] | permissive | gaul/s3proxy | https://github.com/gaul/s3proxy | e1e7f7e14b1acacf3186848a42f18fbdd8f7b153 | 24fb1dd19a9c15e21b51e0cd8b4b0f2a3d1a8e71 | refs/heads/master | 2023-08-19T19:39:43.579000 | 2023-08-17T14:04:23 | 2023-08-17T14:08:48 | 22,321,368 | 941 | 175 | Apache-2.0 | false | 2023-09-01T22:52:58 | 2014-07-27T20:32:24 | 2023-09-01T15:58:49 | 2023-09-01T22:52:57 | 1,452 | 1,427 | 200 | 113 | Java | false | false | /*
* Copyright 2014-2021 Andrew Gaul <andrew@gaul.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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicab... | UTF-8 | Java | 3,177 | java | ReadOnlyBlobStoreTest.java | Java | [
{
"context": "/*\n * Copyright 2014-2021 Andrew Gaul <andrew@gaul.org>\n *\n * Licensed under the Apache",
"end": 37,
"score": 0.9998343586921692,
"start": 26,
"tag": "NAME",
"value": "Andrew Gaul"
},
{
"context": "/*\n * Copyright 2014-2021 Andrew Gaul <andrew@gaul.org>\n *\n * Lice... | null | [] | /*
* Copyright 2014-2021 <NAME> <<EMAIL>>
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | 3,164 | 0.68933 | 0.684293 | 96 | 32.09375 | 24.732349 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4375 | false | false | 13 |
d767bfb52ecad5c46acc3b320c8db7fb768c49e4 | 36,945,308,685,676 | 108218bcc850dece9edbe17658ac2105b71611ca | /app/src/main/java/com/example/administrator/rxandretrofit/activity/MainActivity.java | 3b64740d43be83372032fdd7a07b13752a7e22b8 | [] | no_license | 2665867688/RxAndRetrofit | https://github.com/2665867688/RxAndRetrofit | b3ba066a0743356305972b9114f4d09107b818a4 | bd0c8275dd6b83475aa998a4d370518fc327af38 | refs/heads/master | 2021-01-12T16:16:23.067000 | 2017-07-06T00:21:07 | 2017-07-06T00:21:07 | 71,971,447 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.administrator.rxandretrofit.activity;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import com.e... | UTF-8 | Java | 7,459 | java | MainActivity.java | Java | [
{
"context": " Call<String> call = ApiService.getSearchBooks(\"小王子\", \"\", 0, 3);\n call.enqueue(new Callback<St",
"end": 5223,
"score": 0.9523295760154724,
"start": 5220,
"tag": "NAME",
"value": "小王子"
},
{
"context": " Call<Root> call = ApiService.getSearchBooks2(\"小王子\... | null | [] | package com.example.administrator.rxandretrofit.activity;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import com.e... | 7,459 | 0.555049 | 0.551319 | 193 | 36.507771 | 26.667618 | 133 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.637306 | false | false | 13 |
714a5ed007d828b547ef90793101a41e9fd2526e | 38,620,345,926,193 | cd7e93bbc1d70e8e98900c1f0d1e77dce3fcc7c8 | /Product/app/src/main/java/com/xiaofan/product/domain/constant/Constant.java | be2115ebbccf169a40b55d331eef77914356936b | [] | no_license | JianhaiFan/MyProduct | https://github.com/JianhaiFan/MyProduct | 64ebfdfaf4df5766ad51e5cec238b1c06dc382de | a7acdb7d334ae0b35b09034781cc1dc81ef3ee64 | refs/heads/master | 2020-08-05T17:21:11.886000 | 2017-03-21T01:32:53 | 2017-03-21T01:32:53 | 66,557,516 | 4 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.xiaofan.product.domain.constant;
import com.xiaofan.product.util.ExternalStorageUtil;
import java.io.File;
/**
* @author: 范建海
* @createTime: 2016/10/30 14:10
* @className: StringUtil
* @description: 字符串常量类
* @changed by:
*/
public class Constant {
/**
* 项目本地缓存路径
*/
// 项目名称
pu... | UTF-8 | Java | 2,389 | java | Constant.java | Java | [
{
"context": "orageUtil;\n\nimport java.io.File;\n\n/**\n * @author: 范建海\n * @createTime: 2016/10/30 14:10\n * @className: ",
"end": 141,
"score": 0.9996519088745117,
"start": 138,
"tag": "NAME",
"value": "范建海"
},
{
"context": "码key常量\n public static final String USER_PSD = \"use... | null | [] | package com.xiaofan.product.domain.constant;
import com.xiaofan.product.util.ExternalStorageUtil;
import java.io.File;
/**
* @author: 范建海
* @createTime: 2016/10/30 14:10
* @className: StringUtil
* @description: 字符串常量类
* @changed by:
*/
public class Constant {
/**
* 项目本地缓存路径
*/
// 项目名称
pu... | 2,387 | 0.672575 | 0.661743 | 63 | 31.238094 | 31.866644 | 132 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 13 |
3e59c1871df7250037567035ce0cbb60fe09b74b | 6,914,897,407,396 | 1799c7c44da4c26039791d62a4a5740f04099abb | /src/main/java/com/netcracker/StartTesting.java | 6d29da214f1c305c87cb28538a16fb7bcd73d132 | [] | no_license | lilaspourpre/SoapUI | https://github.com/lilaspourpre/SoapUI | aca1f05a0e18e1f7133f7ef444f4f0d148d0aa50 | 464f189f5849dfe5e6caed1b094cd67bacf4d42b | refs/heads/master | 2017-12-08T21:27:38.215000 | 2017-05-03T12:22:34 | 2017-05-03T12:22:34 | 79,275,197 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.netcracker;
import com.netcracker.testSuite.*;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONTokener;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
/**
* @author Irina Nikishina
* @version 1.... | UTF-8 | Java | 2,938 | java | StartTesting.java | Java | [
{
"context": "n;\nimport java.io.FileReader;\n\n/**\n * @author Irina Nikishina\n * @version 1.0 (current versi",
"end": 301,
"score": 0.999862551689148,
"start": 286,
"tag": "NAME",
"value": "Irina Nikishina"
}
] | null | [] | package com.netcracker;
import com.netcracker.testSuite.*;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONTokener;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
/**
* @author <NAME>
* @version 1.0 ... | 2,929 | 0.52757 | 0.525868 | 85 | 33.564705 | 24.517675 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.482353 | false | false | 13 |
cb918e5bbe70b1a6415d2942748864624bec7ed6 | 6,914,897,409,941 | e9275c582c60f361e986d06605ff9279348da632 | /src/main/java/org/servlets/garits/Documents/VehiclesBookedReport.java | c0c8bbc0d87fa7c80aeb27f4266421eb92856fbc | [] | no_license | cristianrdu/GARITS | https://github.com/cristianrdu/GARITS | e64a8f8e3bf86af4b783e9b203d3a8347f6da3e4 | 1f5850a97d058093069348656511e1207a3aa96a | refs/heads/master | 2022-12-13T07:48:45.391000 | 2020-09-10T19:45:37 | 2020-09-10T19:45:37 | 294,503,577 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.servlets.garits.Documents;
public class VehiclesBookedReport extends Document {
private int noOfVehicles;
private int MoT;
private int annualService;
private int repair;
private String casualCustomer;
private String accountHolder;
/**
*
* @param noOfVehicles
* @param MoT
* @param annualSe... | UTF-8 | Java | 2,059 | java | VehiclesBookedReport.java | Java | [] | null | [] | package org.servlets.garits.Documents;
public class VehiclesBookedReport extends Document {
private int noOfVehicles;
private int MoT;
private int annualService;
private int repair;
private String casualCustomer;
private String accountHolder;
/**
*
* @param noOfVehicles
* @param MoT
* @param annualSe... | 2,059 | 0.759592 | 0.759592 | 73 | 27.219177 | 33.495144 | 146 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.424658 | false | false | 13 |
d85f5e942961264e866505e7e8d493750ddd235f | 30,743,375,971,508 | 03c3e402d420cb294442d12762fe7efd7a1bd551 | /DocumentRecognition/src/main/java/net/nekoinemo/documentrecognition/processing/math/MathHelper.java | dd12452d2e457693b84927894188b1f5bcc58abf | [] | no_license | garrethpxy/fwhrm | https://github.com/garrethpxy/fwhrm | 9fa408df8c68c072f9e88d93641a6262804ecfa2 | 9c42dab5a14c4979ad388457e3ac67ef5a6709cf | refs/heads/master | 2020-04-11T02:08:06.463000 | 2015-04-26T20:31:29 | 2015-04-26T20:31:29 | 31,364,043 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.nekoinemo.documentrecognition.processing.math;
import org.opencv.core.Point;
public class MathHelper {
public static double distance(Point point1, Point point2) {
return Math.sqrt(distancePow2(point1, point2));
}
public static double distancePow2(Point point1, Point point2) {
double x1d = point2... | UTF-8 | Java | 1,117 | java | MathHelper.java | Java | [] | null | [] | package net.nekoinemo.documentrecognition.processing.math;
import org.opencv.core.Point;
public class MathHelper {
public static double distance(Point point1, Point point2) {
return Math.sqrt(distancePow2(point1, point2));
}
public static double distancePow2(Point point1, Point point2) {
double x1d = point2... | 1,117 | 0.705461 | 0.662489 | 34 | 31.852942 | 38.284641 | 150 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.617647 | false | false | 13 |
ece31f11be22a1167076b0d793545c3419c8dc66 | 10,058,813,453,981 | 573207522fbe84d765cff30e721a210aa2af394e | /app/src/main/java/ar/rulosoft/mimanganu/utils/CustomizedExceptionHandler.java | b4ed0b83ac1b737cd6d174c50f7ee61a9ff91c2e | [
"MIT"
] | permissive | salasxd/MiMangaNu | https://github.com/salasxd/MiMangaNu | c8564b3452d0c2b97743b74646b795a68c60e6f0 | 17d5ff64cb163e3c36afde75662496ab44b345ee | refs/heads/master | 2021-04-07T15:28:38.212000 | 2020-03-17T18:52:19 | 2020-03-17T18:52:19 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ar.rulosoft.mimanganu.utils;
import android.os.Environment;
import android.util.Log;
import java.io.File;
import java.io.FileWriter;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.io.Writer;
import java.lang.Thread.UncaughtExceptionHandler;
import java.text.SimpleDateFormat;
import java.... | UTF-8 | Java | 2,494 | java | CustomizedExceptionHandler.java | Java | [] | null | [] | package ar.rulosoft.mimanganu.utils;
import android.os.Environment;
import android.util.Log;
import java.io.File;
import java.io.FileWriter;
import java.io.PrintWriter;
import java.io.StringWriter;
import java.io.Writer;
import java.lang.Thread.UncaughtExceptionHandler;
import java.text.SimpleDateFormat;
import java.... | 2,494 | 0.672815 | 0.669607 | 73 | 33.178082 | 27.378796 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.520548 | false | false | 13 |
f6b04e05f49a30d2cf4cace0fbd68a4b1c773828 | 19,327,352,888,017 | 3f576fb327925dd350dab37610f0f3676c5b9b3e | /src/main/java/com/citicup/dao/dataDisplay/TotalAssetsGrowthRateMapper.java | 1383186e6673bf11f19cd0d8add17bd2d1f6744f | [] | no_license | CitiCupBricksCarrier/CitiCup | https://github.com/CitiCupBricksCarrier/CitiCup | 80542fa9d675bdab229a9de95df20f97bf380adb | 7f02be48e53e68e944e63774b36c2b560a084f6c | refs/heads/master | 2021-08-22T01:53:36.847000 | 2018-11-01T11:57:33 | 2018-11-01T11:57:33 | 141,294,182 | 0 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.citicup.dao.dataDisplay;
import com.citicup.model.dataDisplay.TotalAssetsGrowthRate;
import com.citicup.model.dataDisplay.TotalAssetsGrowthRateKey;
import org.apache.ibatis.annotations.Select;
import java.util.List;
public interface TotalAssetsGrowthRateMapper {
/**
* This method was generated b... | UTF-8 | Java | 1,769 | java | TotalAssetsGrowthRateMapper.java | Java | [] | null | [] | package com.citicup.dao.dataDisplay;
import com.citicup.model.dataDisplay.TotalAssetsGrowthRate;
import com.citicup.model.dataDisplay.TotalAssetsGrowthRateKey;
import org.apache.ibatis.annotations.Select;
import java.util.List;
public interface TotalAssetsGrowthRateMapper {
/**
* This method was generated b... | 1,769 | 0.700297 | 0.700297 | 60 | 27.1 | 24.36849 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.2 | false | false | 13 |
0f3cdce07cdc91e27b203109509b68e51eec2b71 | 21,981,642,645,302 | 07c47485051bea8faec924fb1bf13336ae48856f | /SpringBootDemo/src/main/java/com/example/demo/utils/TextUtils.java | 24a8fc7e016c6b97a8b9b1f9191217b4d067a58c | [] | no_license | caozhen456521/BlogCode | https://github.com/caozhen456521/BlogCode | e10322a7453912445797d40ed6dfc8bb825550b0 | a5bb63ef5193cb827e56ccea5ce17be877714589 | refs/heads/master | 2020-06-27T12:38:33.564000 | 2018-10-19T17:02:13 | 2018-10-19T17:02:13 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.demo.utils;
/**
* @ProjectName: SpringBootDemo
* @Description:
* @Author:
* @CreateDate: 18-10-19 下午3:51
* @Version: 1.0
* <p>Copyright: Copyright (c) 2018</p>
*/
public class TextUtils {
public static boolean isEmpty(String str) {
return str == null || str.length() == 0;
}
}... | UTF-8 | Java | 325 | java | TextUtils.java | Java | [] | null | [] | package com.example.demo.utils;
/**
* @ProjectName: SpringBootDemo
* @Description:
* @Author:
* @CreateDate: 18-10-19 下午3:51
* @Version: 1.0
* <p>Copyright: Copyright (c) 2018</p>
*/
public class TextUtils {
public static boolean isEmpty(String str) {
return str == null || str.length() == 0;
}
}... | 325 | 0.626168 | 0.576324 | 15 | 20.4 | 16.181471 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.266667 | false | false | 13 |
c68305d0bc6404ad63883eee99c15a669270a5c8 | 7,670,811,608,564 | 7c9b1da648a3d2ceb47f6e9a9f03a00f23ceb9ad | /src/main/java/com/ecash/ecashcore/model/cms/Transaction.java | c5e4e05dd9a50cb447cfe762dee74b4a1f6a0992 | [] | no_license | mrnhuttrinh/e-cash-core | https://github.com/mrnhuttrinh/e-cash-core | 33aa2312b0c105507b91b314754df13a00f033a6 | 91e00975f7bbe71dcb8086ebe017c2ba8fb7d27e | refs/heads/master | 2020-03-18T22:11:16.914000 | 2018-05-23T03:28:54 | 2018-05-23T03:28:54 | 135,330,631 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ecash.ecashcore.model.cms;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.OneToOne;
import javax.persistence.Table;
import javax.p... | UTF-8 | Java | 3,685 | java | Transaction.java | Java | [] | null | [] | package com.ecash.ecashcore.model.cms;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.OneToOne;
import javax.persistence.Table;
import javax.p... | 3,685 | 0.714518 | 0.714518 | 167 | 21.065868 | 23.174459 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.45509 | false | false | 13 |
51cb2949b04b4b81352b5cd0d716888965c83fc7 | 17,059,610,110,662 | 6312d64fa691df49c1c884db95d8f6987faf65bb | /edXLogAnalyzer/src/DataPoint.java | 540918c490784ae31736b729c29324cd46752fce | [] | no_license | briantwhite/JavaCodeFromSVN | https://github.com/briantwhite/JavaCodeFromSVN | 1990ed35b49d28524e64fc88eafc12750137592b | 60cb632813a59b9c121c1a83923d5bfdc84e9db9 | refs/heads/master | 2021-07-08T15:28:18.790000 | 2021-06-24T14:32:20 | 2021-06-24T14:32:20 | 8,379,390 | 0 | 1 | null | false | 2014-06-17T17:36:40 | 2013-02-23T18:07:54 | 2014-06-17T17:36:40 | 2014-06-17T17:36:40 | 651,592 | 0 | 2 | 0 | Java | null | null |
public class DataPoint {
public double totalValid; // used to calculate average
public int numBad; // count of -1 "bad data" and blank responses
public int numValid;
public DataPoint() {
totalValid = 0.0f;
numBad = 0;
numValid = 0;
}
public double getAverageValid() {
return totalValid/numValid;
}... | UTF-8 | Java | 323 | java | DataPoint.java | Java | [] | null | [] |
public class DataPoint {
public double totalValid; // used to calculate average
public int numBad; // count of -1 "bad data" and blank responses
public int numValid;
public DataPoint() {
totalValid = 0.0f;
numBad = 0;
numValid = 0;
}
public double getAverageValid() {
return totalValid/numValid;
}... | 323 | 0.690402 | 0.674923 | 16 | 19.125 | 19.238228 | 67 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.75 | false | false | 13 |
79047391c1faad0a04714ad106e16afbcaa8187b | 14,705,968,027,545 | 21b2373a2a4154fcdcb4c9243353cfc2396a284c | /JavaTraining/src/AnonymousClass1.java | 019b5bfac2fd8acb9896a5165cd6b6773fc5daf2 | [] | no_license | jainang/Java | https://github.com/jainang/Java | 44150eff833752ef91b786417d3e7b8343ff0e56 | f0c98e738fdf374f3b215026d428a934e191ec2a | refs/heads/master | 2022-12-30T10:16:12.811000 | 2020-10-20T01:14:11 | 2020-10-20T01:14:11 | 293,352,857 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Comparator;
import java.util.PriorityQueue;
public class AnonymousClass1 {
public static void main(String[] args) {
PriorityQueue<Integer> q = new PriorityQueue<Integer>(myCustomComparator);
}
static Comparator<Integer> myCustomComparator = new Comparator<Integer>() {
public int compare... | UTF-8 | Java | 405 | java | AnonymousClass1.java | Java | [] | null | [] | import java.util.Comparator;
import java.util.PriorityQueue;
public class AnonymousClass1 {
public static void main(String[] args) {
PriorityQueue<Integer> q = new PriorityQueue<Integer>(myCustomComparator);
}
static Comparator<Integer> myCustomComparator = new Comparator<Integer>() {
public int compare... | 405 | 0.708642 | 0.691358 | 17 | 22.82353 | 26.716894 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.058824 | false | false | 13 |
0013f05353b74ea46ae47c93606f68433e5fa1a6 | 4,432,406,311,977 | ad009ee9d7eab87913126340bc1a4f50c3f373bb | /app/src/main/java/com/example/gilby/shadeapp/DetectSwipeGestureListener.java | 71f31fd2fef4aa176a8dcbd405a294ce174c5683 | [] | no_license | GodGilby/ShadeAPP | https://github.com/GodGilby/ShadeAPP | 21157565956155f3168b61ed670d469ebd21ded1 | bde5972ce4aa64ca9241ecf4223ee7200f3c16dc | refs/heads/master | 2020-03-29T10:58:30.896000 | 2018-10-01T18:42:36 | 2018-10-01T18:42:36 | 149,831,409 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.gilby.shadeapp;
import android.view.GestureDetector;
import android.view.MotionEvent;
/**
* Created by Jerry on 4/18/2018.
*/
public class DetectSwipeGestureListener extends GestureDetector.SimpleOnGestureListener {
// Minimal x and y axis swipe distance.
private static int MIN_SWIPE_D... | UTF-8 | Java | 7,153 | java | DetectSwipeGestureListener.java | Java | [
{
"context": "mport android.view.MotionEvent;\n\n/**\n * Created by Jerry on 4/18/2018.\n */\n\npublic class DetectSwipeGestur",
"end": 131,
"score": 0.9995077252388,
"start": 126,
"tag": "NAME",
"value": "Jerry"
}
] | null | [] | package com.example.gilby.shadeapp;
import android.view.GestureDetector;
import android.view.MotionEvent;
/**
* Created by Jerry on 4/18/2018.
*/
public class DetectSwipeGestureListener extends GestureDetector.SimpleOnGestureListener {
// Minimal x and y axis swipe distance.
private static int MIN_SWIPE_D... | 7,153 | 0.573186 | 0.552635 | 182 | 38.307693 | 26.184549 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.406593 | false | false | 13 |
289f0c5873e606d3f0cec33f9026bb5b6e0f9268 | 12,704,513,274,098 | 07e94c3f44b2db127b733edf294c95111f8f456a | /photographic_studio.1.1/src/com/studio/clothing/entity/SecondCategory.java | cb5501d2db64443da3a8eeac6518a6af91b39885 | [] | no_license | ZouShunGit/photographic_studio_1.1 | https://github.com/ZouShunGit/photographic_studio_1.1 | ba17ac4918ae9cd674b5c54d4cfb6d6ba224e5df | 4d89f9a85e6c80ed5721a6f84ad7bfd14c0f9d01 | refs/heads/master | 2020-03-19T23:24:09.494000 | 2018-06-11T14:27:31 | 2018-06-11T14:27:31 | 137,004,949 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.studio.clothing.entity;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
import com.studio.util.PageBean;
public class SecondCategory {
/*
* csid NUMBER not null,
name VARCHAR2(50) not null,
cid NUMBER not null,
scdesc VARCHAR2(255),
is_d... | GB18030 | Java | 2,179 | java | SecondCategory.java | Java | [] | null | [] | package com.studio.clothing.entity;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
import com.studio.util.PageBean;
public class SecondCategory {
/*
* csid NUMBER not null,
name VARCHAR2(50) not null,
cid NUMBER not null,
scdesc VARCHAR2(255),
is_d... | 2,179 | 0.637388 | 0.6341 | 101 | 19.079208 | 17.436552 | 110 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.445545 | false | false | 13 |
0a15e077cfa05ce1a19b7e48b78c52b1ea55e1c0 | 3,556,232,949,772 | 3106805b374f31acfaf99aeef673b765c6cc3165 | /ex15_swing/J20210510_04_swing.java | bd2e8c0eb9205d30025c6c6f52b9587fe3a0cd0f | [] | no_license | Usueya/Java-Practice | https://github.com/Usueya/Java-Practice | 2d5cea14826923ae3589b5fd12449332416d5bd9 | c911f13d21510c25fa9ae2f760a554ab1ae87bc0 | refs/heads/master | 2023-04-26T07:41:33.317000 | 2021-05-24T01:13:30 | 2021-05-24T01:13:30 | 370,191,719 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ex15_swing;
import java.awt.Container;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JTextField;
//GUI화면에서 입력받으려면 J_frame을 만들어야한다.
//swing 패키지를 이용하여 GUI화면 만들기
public class J20210510_04_swing extends JFrame{
J20210510_04_swing(){
super("JFRAME TEST");
setTitle("JFrame Test");
... | UTF-8 | Java | 936 | java | J20210510_04_swing.java | Java | [] | null | [] | package ex15_swing;
import java.awt.Container;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JTextField;
//GUI화면에서 입력받으려면 J_frame을 만들어야한다.
//swing 패키지를 이용하여 GUI화면 만들기
public class J20210510_04_swing extends JFrame{
J20210510_04_swing(){
super("JFRAME TEST");
setTitle("JFrame Test");
... | 936 | 0.709719 | 0.648338 | 33 | 22.69697 | 17.056919 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.757576 | false | false | 13 |
0dcaac56d3d3e3e65138daf8a54db4b9889170bf | 27,281,632,302,335 | 038dca6eda5e8c57d9b879953efe1ef31c4c2a96 | /bndtools.core.test/src/simple/pkg/ClassWithMethodReturningBoundFromAnotherBundle.java | cd98225385d3f24e01af8152d3e5fdd76fd33da9 | [
"EPL-2.0",
"Apache-2.0"
] | permissive | stbischof/bnd | https://github.com/stbischof/bnd | 2763deba24c181b953deb59939a2bb291624e440 | 5b97818df2538313ffe15e373c01d8ddcf6308a5 | refs/heads/master | 2023-02-22T20:47:16.048000 | 2022-03-09T14:52:17 | 2022-04-29T15:23:18 | 141,993,619 | 0 | 0 | Apache-2.0 | true | 2018-07-23T09:39:33 | 2018-07-23T09:39:33 | 2018-07-20T13:41:45 | 2018-07-23T09:21:48 | 303,407 | 0 | 0 | 0 | null | false | null | package simple.pkg;
import java.util.List;
import iface.bundle.MyInterface;
public class ClassWithMethodReturningBoundFromAnotherBundle<T extends MyInterface> {
public List<T> aMethod() {
return null;
}
}
| UTF-8 | Java | 213 | java | ClassWithMethodReturningBoundFromAnotherBundle.java | Java | [] | null | [] | package simple.pkg;
import java.util.List;
import iface.bundle.MyInterface;
public class ClassWithMethodReturningBoundFromAnotherBundle<T extends MyInterface> {
public List<T> aMethod() {
return null;
}
}
| 213 | 0.779343 | 0.779343 | 12 | 16.75 | 23.252687 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 13 |
054d0999844fced24a3e111f6ae2f3293254ebd5 | 25,159,918,452,809 | 91dfca9e91f299c1036c37c98bffd1922447c4e7 | /newBusinessServices/src/com/csc/fsg/nba/business/process/NbaProcAppSubmit.java | e7a6dd043de09e290aeb0555b8954a30f873dacc | [] | no_license | gajendrasinghthakur/SpringBootnMicroservices | https://github.com/gajendrasinghthakur/SpringBootnMicroservices | 7a1d016d932b70b13706ad13224d52c9488b7008 | 96b42b1250fb25a0b78f4ca088015d6ef07f1dd6 | refs/heads/master | 2020-07-03T10:54:19.565000 | 2019-08-12T08:57:01 | 2019-08-12T08:57:01 | 201,883,128 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.csc.fsg.nba.business.process;
/*
* **************************************************************<BR>
* This program contains trade secrets and confidential information which<BR>
* are proprietary to CSC Financial Services Group?. The use,<BR>
* reproduction, distribution or disclosure of this program... | UTF-8 | Java | 106,905 | java | NbaProcAppSubmit.java | Java | [
{
"context": "logDebug(\"Reassign the case to following user : \"+ userName + \" \"+userID);\n\t\t} catch (NbaDataAccessException ",
"end": 96735,
"score": 0.9585466384887695,
"start": 96727,
"tag": "USERNAME",
"value": "userName"
},
{
"context": ") {\n\t\t\taddComment(ndae.getMessag... | null | [] | package com.csc.fsg.nba.business.process;
/*
* **************************************************************<BR>
* This program contains trade secrets and confidential information which<BR>
* are proprietary to CSC Financial Services Group?. The use,<BR>
* reproduction, distribution or disclosure of this program... | 106,905 | 0.729508 | 0.708582 | 2,536 | 41.154968 | 34.954647 | 225 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.035489 | false | false | 13 |
06110c97631a91be4467b5f754c64ca49514b337 | 14,379,550,535,560 | 190db5e22ceb0acb54651adaba5728bc4ba5a497 | /Android/Aldeia/app/src/main/java/pt/unl/fct/di/aldeia/apdc2021/ui/route/GetRouteResult.java | a0725285dc30d11c787ac00517b648b4a4c50dcf | [] | no_license | tmorais-fctunl/VolunTier | https://github.com/tmorais-fctunl/VolunTier | efeb14fb8226562c1db06add8d397e391cad77a9 | f0deceb15f0136cf43546402b1cd383203e18d3e | refs/heads/master | 2023-07-03T01:41:53.911000 | 2021-07-30T15:15:25 | 2021-07-30T15:15:25 | 362,519,562 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pt.unl.fct.di.aldeia.apdc2021.ui.route;
import androidx.annotation.Nullable;
import pt.unl.fct.di.aldeia.apdc2021.data.model.GetRouteReply;
import pt.unl.fct.di.aldeia.apdc2021.data.model.UserAuthenticated;
public class GetRouteResult {
@Nullable
private GetRouteReply success;
@Nullable
priva... | UTF-8 | Java | 631 | java | GetRouteResult.java | Java | [] | null | [] | package pt.unl.fct.di.aldeia.apdc2021.ui.route;
import androidx.annotation.Nullable;
import pt.unl.fct.di.aldeia.apdc2021.data.model.GetRouteReply;
import pt.unl.fct.di.aldeia.apdc2021.data.model.UserAuthenticated;
public class GetRouteResult {
@Nullable
private GetRouteReply success;
@Nullable
priva... | 631 | 0.692551 | 0.673534 | 30 | 20.033333 | 20.943548 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.366667 | false | false | 13 |
9759351904a52670cd1f23b12d93a7a5640110d1 | 25,125,558,684,396 | 28789d082fb3f1fe20b0e0fd83499db2248879b4 | /src/main/java/men/suruceanu/itinerary/weather/itineraryweather/dto/Coords.java | 4c337d6a66f977c3dffe521473cab43329ce095b | [] | no_license | emptyshell/weather-itinerary | https://github.com/emptyshell/weather-itinerary | 25739f334818234316f8f1e40db23fd7c5bc3fed | 8c97c28e7a7bf4f999f3c0d2bf88ad78bc37a6d9 | refs/heads/master | 2023-08-21T16:40:08.886000 | 2021-10-18T18:57:38 | 2021-10-18T18:57:38 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package men.suruceanu.itinerary.weather.itineraryweather.dto;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
@Data
@EqualsAndHashCode
@ToString
public class Coords {
private double lon;
private double lat;
}
| UTF-8 | Java | 250 | java | Coords.java | Java | [] | null | [] | package men.suruceanu.itinerary.weather.itineraryweather.dto;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;
@Data
@EqualsAndHashCode
@ToString
public class Coords {
private double lon;
private double lat;
}
| 250 | 0.788 | 0.788 | 15 | 15.666667 | 16.090025 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 13 |
4b45e497ab3b2647b53ad19fffac50455fcbf928 | 27,384,711,522,988 | 7280ffbd493bcd3eb2c81d167b5cf912af351113 | /org.cfeclipse.cfml/src/org/cfeclipse/cfml/editors/contentassist/CFMLVariableAssist.java | 57669d7aecf0cf3bef18982b8ad5afce0b55471c | [
"MIT"
] | permissive | cfeclipse/cfeclipse | https://github.com/cfeclipse/cfeclipse | 6cb02d34c1fd42fcfec588b13d780a82d073fc9c | c894f73c9aefe50748f818ced48b9bffa193168e | refs/heads/master | 2023-01-11T13:37:46.528000 | 2022-12-30T02:38:23 | 2022-12-30T02:38:23 | 1,813,144 | 51 | 29 | null | false | 2022-12-30T02:39:40 | 2011-05-28T05:28:49 | 2022-12-30T02:38:39 | 2022-12-30T02:38:28 | 84,285 | 74 | 25 | 39 | Java | false | false | /*
* Created on May 06, 2006
*
* The MIT License
* Copyright (c) 2006 Mark Drew
*
* 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 limi... | UTF-8 | Java | 17,073 | java | CFMLVariableAssist.java | Java | [
{
"context": "006\r\n *\r\n * The MIT License\r\n * Copyright (c) 2006 Mark Drew\r\n *\r\n * Permission is hereby granted, free of cha",
"end": 87,
"score": 0.999733030796051,
"start": 78,
"tag": "NAME",
"value": "Mark Drew"
},
{
"context": "e\r\n * Gives the right suggestsion\r\n * ... | null | [] | /*
* Created on May 06, 2006
*
* The MIT License
* Copyright (c) 2006 <NAME>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitat... | 17,067 | 0.59925 | 0.59679 | 463 | 34.874729 | 29.347944 | 153 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.853132 | false | false | 13 |
9b9cdf056deaf7fcac8f4b4bc38ce489b85b5539 | 32,160,715,148,449 | 760fcc5bbab4bab988f4dfa81552155874938f40 | /app9908_Concurrency_ENTHUWARE/src/app_3_83/Test.java | d32de5bad78138bf9a3b4b7de9dfdb9a29a8fcff | [] | no_license | sunnykeila/Java_8 | https://github.com/sunnykeila/Java_8 | 26c18c8c3702f7c83d3f358e5f089b5fc5ccb475 | 9f5fb6e0e6c5d29aa8cfdb0ac2cdf77537c6d309 | refs/heads/master | 2023-02-05T22:52:18.153000 | 2020-12-29T17:49:35 | 2020-12-29T17:49:35 | 315,402,260 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package app_3_83;
import java.util.concurrent.locks.ReentrantLock;
public class Test {
public static void main(String[] args) {
ReentrantLock r1 = new ReentrantLock();
boolean f1 = r1.tryLock();
System.out.println(f1);
}
}// ReentrantLock.lock(); public void lock(); return type is v... | UTF-8 | Java | 345 | java | Test.java | Java | [] | null | [] | package app_3_83;
import java.util.concurrent.locks.ReentrantLock;
public class Test {
public static void main(String[] args) {
ReentrantLock r1 = new ReentrantLock();
boolean f1 = r1.tryLock();
System.out.println(f1);
}
}// ReentrantLock.lock(); public void lock(); return type is v... | 345 | 0.657971 | 0.637681 | 18 | 18.166666 | 25.175495 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.277778 | false | false | 13 |
f3c3efdc7313e2f1c055fb6f22bb6b476c41c864 | 8,418,135,937,826 | a0c9c91d2927a8f3e453f0d5eb81fd4720d3afaf | /src/main/java/cn/imaq/cerdns/Main.java | db603af72c8533879d615cc17f42c97870c077fa | [
"MIT"
] | permissive | DeepAQ/CerDNS | https://github.com/DeepAQ/CerDNS | b5a91b472016e49c1df5180f46e795c2857af3d3 | 3bec25a14d4a6824087c74d5b46498171930f8c5 | refs/heads/master | 2021-09-03T20:10:01.394000 | 2018-01-11T16:49:13 | 2018-01-11T16:49:13 | 107,360,339 | 4 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.imaq.cerdns;
import cn.imaq.cerdns.core.DNSServer;
import cn.imaq.cerdns.util.Banner;
import cn.imaq.cerdns.util.Config;
import lombok.extern.slf4j.Slf4j;
import java.io.IOException;
@Slf4j
public class Main {
public static void main(String[] args) throws IOException {
try {
if (ar... | UTF-8 | Java | 639 | java | Main.java | Java | [] | null | [] | package cn.imaq.cerdns;
import cn.imaq.cerdns.core.DNSServer;
import cn.imaq.cerdns.util.Banner;
import cn.imaq.cerdns.util.Config;
import lombok.extern.slf4j.Slf4j;
import java.io.IOException;
@Slf4j
public class Main {
public static void main(String[] args) throws IOException {
try {
if (ar... | 639 | 0.574335 | 0.56338 | 25 | 24.559999 | 17.531868 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.48 | false | false | 13 |
36f63b06ae784868224197f6f766838439d649a7 | 18,056,042,546,553 | 7a9d203b9e4b829d535d41a53513874f4ca5c816 | /app/src/Keyboard/java/com/fotoable/fotoime/filter/Tools/HslModifyFilter.java | bc95a9e8ec7a261348a455610e81f0138d0228cc | [] | no_license | xiaotianqijian/myPhoneKeyboard | https://github.com/xiaotianqijian/myPhoneKeyboard | 94bcc072cbf12a58b73fcad3f0ed43fa89b55d03 | 64ed3678a3d13e7d4b96d53dfe5304cb2b13b99b | refs/heads/master | 2017-11-30T21:14:48.855000 | 2017-02-13T13:09:29 | 2017-02-13T13:09:29 | 81,814,404 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.fotoable.fotoime.filter.Tools;
import com.fotoable.fotoime.filter.MyImage;
import com.fotoable.fotoime.filter.interf.IImageFilter;
public class HslModifyFilter implements IImageFilter {
private float HueFactor;//ɫ��
public HslModifyFilter(float HueFactor)
{
this.HueFactor = Math.max(0, M... | UTF-8 | Java | 1,004 | java | HslModifyFilter.java | Java | [] | null | [] | package com.fotoable.fotoime.filter.Tools;
import com.fotoable.fotoime.filter.MyImage;
import com.fotoable.fotoime.filter.interf.IImageFilter;
public class HslModifyFilter implements IImageFilter {
private float HueFactor;//ɫ��
public HslModifyFilter(float HueFactor)
{
this.HueFactor = Math.max(0, M... | 1,004 | 0.565566 | 0.557558 | 35 | 27.542856 | 22.581083 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1 | false | false | 13 |
fbe9a271fca66e816dd8660c9c51a987ad693824 | 19,078,244,766,387 | 7f6c2a0a8a2754fb16b10282933919f7d05ff156 | /app/src/main/java/com/nodomain/smartmirror/Providers/Weather/TheWeatherUnderground/CurrentObservation.java | d0b0b164c4e972deb54126b701e7b0052b727592 | [] | no_license | Cataalinn/SmartMirror | https://github.com/Cataalinn/SmartMirror | 81c905e91e1abc7da12b52810d5e23ae3354a61c | 67a2cfc47cf3876b666fba79ed337d08413be747 | refs/heads/master | 2021-05-04T09:38:49.701000 | 2016-02-19T14:14:58 | 2016-02-19T14:14:58 | 52,075,183 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.nodomain.smartmirror.Providers.Weather.TheWeatherUnderground;
import com.google.gson.annotations.SerializedName;
/**
* Created by Florescu George Cătălin on 14.02.2016.
* Smart Mirror project
*/
public class CurrentObservation {
@SerializedName("display_location")
public DisplayLocation displa... | UTF-8 | Java | 798 | java | CurrentObservation.java | Java | [
{
"context": "son.annotations.SerializedName;\n\n/**\n * Created by Florescu George Cătălin on 14.02.2016.\n * Smart Mirror project\n */\npublic",
"end": 168,
"score": 0.9998858571052551,
"start": 145,
"tag": "NAME",
"value": "Florescu George Cătălin"
}
] | null | [] | package com.nodomain.smartmirror.Providers.Weather.TheWeatherUnderground;
import com.google.gson.annotations.SerializedName;
/**
* Created by <NAME> on 14.02.2016.
* Smart Mirror project
*/
public class CurrentObservation {
@SerializedName("display_location")
public DisplayLocation displayLocation;
@... | 779 | 0.737437 | 0.727387 | 34 | 22.411764 | 19.333174 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.294118 | false | false | 13 |
8a3f0130194396f5ab9a0cffdd999247f355e886 | 26,568,667,738,087 | d4488da04d28a858e11e57d6eece5a43f690f640 | /ServerUpdation/app/src/main/java/com/rahul/serverupdation/EditActivity.java | 27280a21c08f6a357035c0edf2f4469953e3a7f0 | [] | no_license | rahulgog/ServerUpdation | https://github.com/rahulgog/ServerUpdation | 55c22803f79dbc574825ea84671ba3c3a79d0db0 | 22274328d55758e97de8e36bf71bb86b06f2b7cf | refs/heads/master | 2021-01-16T19:23:33.600000 | 2017-08-13T06:31:37 | 2017-08-13T06:31:37 | 100,158,368 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.rahul.serverupdation;
import android.app.ProgressDialog;
import android.os.AsyncTask;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
imp... | UTF-8 | Java | 3,217 | java | EditActivity.java | Java | [] | null | [] | package com.rahul.serverupdation;
import android.app.ProgressDialog;
import android.os.AsyncTask;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
imp... | 3,217 | 0.644078 | 0.634753 | 111 | 27.981981 | 24.048742 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.693694 | false | false | 13 |
473b6a2e85047059b1dec255a56aa2a7cde9bf27 | 14,843,407,014,203 | bd384a4a24182d483654e0fc751eea193c42a8d9 | /src/main/java/com/fasterxml/jackson/databind/introspect/AnnotatedClassResolver.java | c31a3e2ef2c5f72d174fead591db665b398f0596 | [
"Apache-2.0",
"LicenseRef-scancode-generic-cla"
] | permissive | phated/jackson-databind | https://github.com/phated/jackson-databind | 5dc5fcce4c57ff77061f6213cdf9cb6225e727ad | ac5cd16cb24129aede32feadcff183611e1798fc | refs/heads/master | 2020-08-30T14:06:12.705000 | 2019-10-29T05:05:20 | 2019-10-29T05:05:20 | 218,403,081 | 2 | 0 | Apache-2.0 | true | 2019-10-29T23:31:29 | 2019-10-29T23:31:28 | 2019-10-29T08:16:41 | 2019-10-29T05:05:27 | 68,579 | 0 | 0 | 0 | null | false | false | package com.fasterxml.jackson.databind.introspect;
import java.lang.annotation.Annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import java.util.*;
import com.fasterxml.jackson.databind.AnnotationIntrospector;
import com.fasterxml.jackson.databind.JavaType;
import com.fasterxml.j... | UTF-8 | Java | 12,451 | java | AnnotatedClassResolver.java | Java | [
{
"context": "ons from the class itself:\n // 06-Oct-2019, tatu: [databind#2464] Skip class annotations for JDK c",
"end": 8457,
"score": 0.721111536026001,
"start": 8453,
"tag": "NAME",
"value": "tatu"
},
{
"context": " included in super types)\n\n // 12-Jul-2009, tatu... | null | [] | package com.fasterxml.jackson.databind.introspect;
import java.lang.annotation.Annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import java.util.*;
import com.fasterxml.jackson.databind.AnnotationIntrospector;
import com.fasterxml.jackson.databind.JavaType;
import com.fasterxml.j... | 12,451 | 0.576821 | 0.574251 | 320 | 37.909374 | 30.462086 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.596875 | false | false | 13 |
dd462ab61e924294de6948aa2248cb7179251bb4 | 17,669,495,460,219 | 9d9ef586166be3c75e5216d6e40a9b32caa76fbb | /app/src/main/java/com/example/hp/madose/model/Item.java | 131c1cc1d861a32cd64efe494f5f0e433c95f4e9 | [] | no_license | devidconseil/id | https://github.com/devidconseil/id | 576ac35f4a1281d8a3f3fe17388f3d7a2d05d126 | 2dff1db19985ab4d5a8d13f5164fb36e5fbb5764 | refs/heads/master | 2021-04-24T19:09:10.759000 | 2018-07-11T11:43:23 | 2018-07-11T11:43:23 | 117,570,617 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.hp.madose.model;
/**
* Created by erick on 24/02/2018.
*/
public class Item {
private String text,subtext,stock,affiche;
private int image;
private boolean isExpandable;
public Item(String text, String subtext, int image, String stock,String affiche, boolean isExpandable) {
... | UTF-8 | Java | 1,365 | java | Item.java | Java | [
{
"context": "ge com.example.hp.madose.model;\n\n/**\n * Created by erick on 24/02/2018.\n */\n\npublic class Item {\n priva",
"end": 61,
"score": 0.9788539409637451,
"start": 56,
"tag": "USERNAME",
"value": "erick"
}
] | null | [] | package com.example.hp.madose.model;
/**
* Created by erick on 24/02/2018.
*/
public class Item {
private String text,subtext,stock,affiche;
private int image;
private boolean isExpandable;
public Item(String text, String subtext, int image, String stock,String affiche, boolean isExpandable) {
... | 1,365 | 0.601465 | 0.595604 | 69 | 18.782608 | 18.820179 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.434783 | false | false | 13 |
4d00d8ead65fe8c9fb923e2aa409455dd21b0adf | 23,063,974,447,343 | 862701397dac50a52d4cfe1b9379d325cb07df86 | /src/main/java/ctci/array_strings/IsUniqueExtraDataStructure.java | 35a57fa61df90ca121746eb2a9136c675840fe06 | [] | no_license | crackerzzz/leetcode | https://github.com/crackerzzz/leetcode | ff0379d34b698e5dd3506c500800a8e595d03b26 | 5d3340bfbb836a6ef1316ccc5787778b02c39ac1 | refs/heads/master | 2021-09-29T00:17:02.674000 | 2018-11-21T21:34:46 | 2018-11-21T21:34:46 | 112,280,724 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ctci.array_strings;
import java.util.Arrays;
public class IsUniqueExtraDataStructure {
private boolean isUnique(String str) {
boolean[] charset = new boolean[256];
Arrays.fill(charset, false);
for (char c : str.toCharArray()) {
if (charset[c] == true) {
return false;
}
charse... | UTF-8 | Java | 499 | java | IsUniqueExtraDataStructure.java | Java | [] | null | [] | package ctci.array_strings;
import java.util.Arrays;
public class IsUniqueExtraDataStructure {
private boolean isUnique(String str) {
boolean[] charset = new boolean[256];
Arrays.fill(charset, false);
for (char c : str.toCharArray()) {
if (charset[c] == true) {
return false;
}
charse... | 499 | 0.651303 | 0.637275 | 23 | 19.695652 | 20.623825 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.695652 | false | false | 13 |
943e4dba21ad179db0b981220aa425bfbc39ea7f | 4,140,348,513,191 | 72cc8133354baa274da1a1e56af453fecf6fa290 | /src/Package7/ChatStorage.java | b72fc2c06c7173bf3fe7f8790dff7608b5a7b5bb | [] | no_license | IljaStasenko/lab7 | https://github.com/IljaStasenko/lab7 | ba9a95b7aa1de0806af14c02b1f995b7476357b9 | a7e21393cd1c89c1a229b613ba93d2b9d511217c | refs/heads/master | 2022-09-28T20:01:13.392000 | 2020-06-06T07:31:14 | 2020-06-06T07:31:14 | 269,905,761 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Package7;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
public class ChatStorage {
private ArrayList<User> users = new ArrayList(10);
public ChatStorage() {
... | UTF-8 | Java | 2,243 | java | ChatStorage.java | Java | [] | null | [] | package Package7;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
public class ChatStorage {
private ArrayList<User> users = new ArrayList(10);
public ChatStorage() {
... | 2,243 | 0.540794 | 0.535444 | 82 | 26.353659 | 21.245012 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.512195 | false | false | 13 |
92e92c39071e0408816e6274ffd67f060ac9b14b | 25,606,595,022,805 | da774b8fb360c49dfb28ba594706feef8939b64f | /JM_POS/app/src/main/java/com/example/acer/jm_pos/home_sales/POS_main/POS_subCategory/POS_subCatPresenter.java | 3d0fefd1f01dab9a78ae73d2104d772d2d57f5ca | [] | no_license | p-erp/POS | https://github.com/p-erp/POS | f4b2cf75d0e92b13313fb8e365f499a79a5e2e52 | 2271fb55f41634969a60a170df7bca57d2f51e74 | refs/heads/master | 2020-06-03T20:20:02.358000 | 2019-06-19T04:47:14 | 2019-06-19T04:47:14 | 191,717,210 | 0 | 1 | null | false | 2019-06-19T04:47:17 | 2019-06-13T07:55:42 | 2019-06-13T07:55:45 | 2019-06-19T04:47:15 | 0 | 0 | 1 | 0 | null | false | false | package com.example.acer.jm_pos.home_sales.POS_main.POS_subCategory;
import android.content.Context;
import android.util.Log;
import android.widget.Toast;
import com.android.volley.AuthFailureError;
import com.android.volley.Request;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import co... | UTF-8 | Java | 3,464 | java | POS_subCatPresenter.java | Java | [] | null | [] | package com.example.acer.jm_pos.home_sales.POS_main.POS_subCategory;
import android.content.Context;
import android.util.Log;
import android.widget.Toast;
import com.android.volley.AuthFailureError;
import com.android.volley.Request;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import co... | 3,464 | 0.59873 | 0.597575 | 91 | 37.065933 | 32.46936 | 141 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.648352 | false | false | 13 |
11aacef30cafbabd4ac074f9dc2b6236941526a7 | 13,056,700,599,064 | 839dd2c91fe20e95de52048e49469ef376d47cef | /src/iml/Engine.java | b39a7fce2affcad563999146e21242899fa3544a | [] | no_license | pfrommerd/iml | https://github.com/pfrommerd/iml | 7c51351f868cfde4abab2f1880bc54a8374cb8f5 | 5936b1ccae49bfea6560bc000cfe22bcf3ce3fcf | refs/heads/master | 2016-05-25T19:23:55.336000 | 2015-08-07T18:34:05 | 2015-08-07T18:34:05 | 39,205,257 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package iml;
import org.jsoup.nodes.Element;
public interface Engine {
public String getName();
public Object createCookie(Element xml);
public void attach(IMLInterface e);
}
| UTF-8 | Java | 184 | java | Engine.java | Java | [] | null | [] | package iml;
import org.jsoup.nodes.Element;
public interface Engine {
public String getName();
public Object createCookie(Element xml);
public void attach(IMLInterface e);
}
| 184 | 0.755435 | 0.755435 | 11 | 15.727273 | 15.415995 | 41 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.909091 | false | false | 13 |
ea0eb2421660ec3f564b83cf1de5f48efa4a9666 | 5,583,457,507,570 | 48bc0c862bb5af661f92a0c17fd3131ced945496 | /UniApp/src/uniapp/part3_3/StudentReport.java | e766a352350be178c9793bb8527efb9a498e13f1 | [] | no_license | mgangelov/sscDbExercise | https://github.com/mgangelov/sscDbExercise | c7a7c95676724df781a42c72d6eb093ed98d6615 | 09eb0146aaed2a284e41d604dc900b5fa894adc8 | refs/heads/master | 2021-05-31T03:19:33.597000 | 2015-11-24T21:21:55 | 2015-11-24T21:21:55 | 45,133,155 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package uniapp.part3_3;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Date;
import uniteach.test.Database;
public class StudentReport {
private static String title = "";
private static String forename = "";
private static String familyname = "";
priva... | UTF-8 | Java | 3,334 | java | StudentReport.java | Java | [] | null | [] | package uniapp.part3_3;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Date;
import uniteach.test.Database;
public class StudentReport {
private static String title = "";
private static String forename = "";
private static String familyname = "";
priva... | 3,334 | 0.674865 | 0.667966 | 98 | 33.020409 | 28.375751 | 228 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.061224 | false | false | 13 |
b4f04aa4ba76c0598afaec98c5cef72faee750f5 | 24,627,342,497,636 | e74b34b398ead85d28ea2f556860464901f2e93d | /vedanta-hzl/vedanta-rest/src/main/java/com/vedanta/vpmt/util/DifferenceUtil.java | 3ec52859170f0317871dafaae345f21c8b2812ef | [] | no_license | rohitguta2432/acx | https://github.com/rohitguta2432/acx | fd8e0a0f5c5220fabc66049f91681f0473c77551 | 6a1b19f1a3008dd5f5df21ccd6bd2618f2b430bf | refs/heads/master | 2020-03-13T22:18:42.298000 | 2018-04-28T01:49:05 | 2018-04-28T01:49:05 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.vedanta.vpmt.util;
import org.springframework.util.StringUtils;
public class DifferenceUtil {
public static boolean isChanged(String existing, String updated, boolean ignoreCase) {
if ((StringUtils.isEmpty(existing) && !StringUtils.isEmpty(updated))
|| (!StringUtils.isEmpty(existing) && StringUti... | UTF-8 | Java | 821 | java | DifferenceUtil.java | Java | [] | null | [] | package com.vedanta.vpmt.util;
import org.springframework.util.StringUtils;
public class DifferenceUtil {
public static boolean isChanged(String existing, String updated, boolean ignoreCase) {
if ((StringUtils.isEmpty(existing) && !StringUtils.isEmpty(updated))
|| (!StringUtils.isEmpty(existing) && StringUti... | 821 | 0.690621 | 0.690621 | 28 | 28.321428 | 33.061687 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.035714 | false | false | 13 |
9cadeabe991fe8289a3e4602ef895cbccbd8078a | 24,661,702,268,180 | 9ffef09c761672dfee94506410491480e8c480e2 | /src/powercrystals/minefactoryreloaded/gui/client/GuiSewer.java | 86a4d1cfecea163c17965c3ba252432391e23705 | [] | no_license | AntaniCraft/MineFactoryReloaded | https://github.com/AntaniCraft/MineFactoryReloaded | 2fc73c7246e89d61707e012e91be6d3907412442 | a38e45b42720bf1dc72dc9563a3c2c93a1bedcb1 | refs/heads/master | 2021-01-18T11:29:47.606000 | 2013-08-30T17:39:26 | 2013-08-30T19:27:23 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package powercrystals.minefactoryreloaded.gui.client;
import net.minecraft.util.StatCollector;
import org.lwjgl.opengl.GL11;
import powercrystals.minefactoryreloaded.gui.container.ContainerSewer;
import powercrystals.minefactoryreloaded.tile.machine.TileEntitySewer;
public class GuiSewer extends GuiFactoryInventory... | UTF-8 | Java | 1,535 | java | GuiSewer.java | Java | [] | null | [] | package powercrystals.minefactoryreloaded.gui.client;
import net.minecraft.util.StatCollector;
import org.lwjgl.opengl.GL11;
import powercrystals.minefactoryreloaded.gui.container.ContainerSewer;
import powercrystals.minefactoryreloaded.tile.machine.TileEntitySewer;
public class GuiSewer extends GuiFactoryInventory... | 1,535 | 0.74202 | 0.708795 | 41 | 36.439026 | 43.697994 | 180 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.219512 | false | false | 13 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.