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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d102c51b4833f3817c9fd880b212640dfea7f835 | 7,911,329,777,428 | 877f20a5b529182e1af17264fae8bd72d2a8b70d | /cms-dao-utility/src/main/java/cn/cnr/cms/dao/label/entity/LabelAndLabelField.java | cccc46cbdadbaed69dc6b254ed92ff94c5c31594 | [] | no_license | xudanfeng/GBY | https://github.com/xudanfeng/GBY | 05f9c195c94080add77df285f9d025a209070751 | d7f574d3188639f3ddd62570e0cfdfd8dac1177b | refs/heads/master | 2016-09-13T09:41:06.866000 | 2016-05-23T02:21:08 | 2016-05-23T02:21:08 | 58,540,230 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.cnr.cms.dao.label.entity;
import java.sql.Timestamp;
import java.util.HashMap;
import java.util.Map;
import cn.cnr.cms.dao.AbstractBaseEntity;
public class LabelAndLabelField extends AbstractBaseEntity{
//Flame
//label和labelField的对应关系
private String label_field_id;
private String label_id;
private Ti... | GB18030 | Java | 1,958 | java | LabelAndLabelField.java | Java | [] | null | [] | package cn.cnr.cms.dao.label.entity;
import java.sql.Timestamp;
import java.util.HashMap;
import java.util.Map;
import cn.cnr.cms.dao.AbstractBaseEntity;
public class LabelAndLabelField extends AbstractBaseEntity{
//Flame
//label和labelField的对应关系
private String label_field_id;
private String label_id;
private Ti... | 1,958 | 0.704008 | 0.704008 | 71 | 26.408451 | 18.407421 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.929577 | false | false | 1 |
663cfbc65e80c147839a930d25dc1b239433a661 | 27,281,632,285,115 | 6d0b68573ba5e5f1a4123e092c0a52d11055d012 | /src/main/java/com/sdu/algorithm/leetcode/LT0063.java | 5a260f7bda2911d55a16a4dfb33549fa84234f7c | [
"Apache-2.0"
] | permissive | hanhanzhang/algorithm-java | https://github.com/hanhanzhang/algorithm-java | 21b9b041b093777102332b09621ca6d6679da288 | 19b2c54ba6e7021dcd6c8b257da6d70530340ce0 | refs/heads/master | 2021-06-01T10:37:06.159000 | 2021-05-28T03:01:10 | 2021-05-28T03:01:10 | 102,853,829 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sdu.algorithm.leetcode;
public class LT0063 {
private static int uniquePathsWithObstacles(int[][] obstacleGrid) {
int n = obstacleGrid.length, m = obstacleGrid[0].length;
int[][] dp = new int[n][m];
dp[0][0] = obstacleGrid[0][0] == 1 ? 0 : 1;
for (int i = 1; i < m; ++i) dp[0][i] = obstac... | UTF-8 | Java | 1,017 | java | LT0063.java | Java | [] | null | [] | package com.sdu.algorithm.leetcode;
public class LT0063 {
private static int uniquePathsWithObstacles(int[][] obstacleGrid) {
int n = obstacleGrid.length, m = obstacleGrid[0].length;
int[][] dp = new int[n][m];
dp[0][0] = obstacleGrid[0][0] == 1 ? 0 : 1;
for (int i = 1; i < m; ++i) dp[0][i] = obstac... | 1,017 | 0.508358 | 0.45821 | 31 | 31.806452 | 27.363054 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.064516 | false | false | 1 |
820c6da114d54373016cffe2c5a59a332f3764ba | 21,036,749,832,500 | 808c31f418464e9420dd4055dfbc0ecd180f8c83 | /src/main/java/com/nzzi/guide/todo/domain/oauth/package-info.java | 876d565db1e924a3150055fac294784f56d182fe | [] | no_license | cholnh/spring-best-practice-todo | https://github.com/cholnh/spring-best-practice-todo | 1ccf05afd45f64e6d52f7acd61b88ad713713352 | 4b3d50b82669932d044437e4e663bed64381c9e3 | refs/heads/master | 2023-06-10T16:01:32.333000 | 2021-07-06T04:56:35 | 2021-07-06T04:56:35 | 348,440,946 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* oauth package
* oauth authentication 관련 구성
*/
package com.nzzi.guide.todo.domain.oauth; | UTF-8 | Java | 104 | java | package-info.java | Java | [] | null | [] | /**
* oauth package
* oauth authentication 관련 구성
*/
package com.nzzi.guide.todo.domain.oauth; | 104 | 0.71875 | 0.71875 | 5 | 18.4 | 14.853955 | 41 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.2 | false | false | 1 |
6e4f067ca7709e68ab294b5a6f2ad1bbea16634d | 3,350,074,511,611 | e9c979c8a47d4953d6367bd54bcfbb2275e19f2d | /ProyectoBase/src/modelo/UsuarioBD.java | 3743f8ceaa96b1f721f17dbad1182140c7ac350e | [] | no_license | Aitorrrrr/ReviewsPI | https://github.com/Aitorrrrr/ReviewsPI | 2a8d12b95aa83ae78e134a85532db0930edc1fed | 2519a48d62920b41c8bf17535f3ecc6b2e390078 | refs/heads/master | 2020-03-17T07:18:47.554000 | 2018-05-28T22:38:47 | 2018-05-28T22:38:47 | 133,393,054 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package modelo;
import java.sql.*;
import javax.swing.JComboBox;
import javax.swing.JTextField;
public class UsuarioBD {
// Atributos
/**
* Statement especial capaz de ejecutar rutinas almacenadas dentro de la BD
*/
private CallableStatement st;
/**
* Statement para poder lanzar consultas sql
*/
pr... | ISO-8859-1 | Java | 10,317 | java | UsuarioBD.java | Java | [] | null | [] | package modelo;
import java.sql.*;
import javax.swing.JComboBox;
import javax.swing.JTextField;
public class UsuarioBD {
// Atributos
/**
* Statement especial capaz de ejecutar rutinas almacenadas dentro de la BD
*/
private CallableStatement st;
/**
* Statement para poder lanzar consultas sql
*/
pr... | 10,317 | 0.681238 | 0.678025 | 395 | 25.002531 | 32.473747 | 195 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.288608 | false | false | 1 |
171d36b83e96e0ad21d7d398f2def5e8a41748d0 | 15,710,990,388,120 | 98f6bc2167d7149642ab5a1f7d13a497202fafa4 | /Célia_LingProgram/lista-06/src/exer03/UrnaEletronica.java | 7749db33d447c881bb6201845fe80ea31f0d178a | [] | no_license | nikollysilvabandtec/ADS_SegundoSemestre | https://github.com/nikollysilvabandtec/ADS_SegundoSemestre | 642fb2db99a5e0354a42be55134ee9b14c235b6e | bfe0190e989b5bdfd76898fd3a6cfc8c1d213968 | refs/heads/master | 2021-01-02T10:26:23.205000 | 2020-07-02T19:35:33 | 2020-07-02T19:35:33 | 239,577,330 | 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 exer03;
/**
*
* @author Nikaolly
*/
public class UrnaEletronica {
Candidato candidato01 = new Candidato();
Candida... | UTF-8 | Java | 2,855 | java | UrnaEletronica.java | Java | [
{
"context": "the editor.\n */\npackage exer03;\n\n/**\n *\n * @author Nikaolly\n */\npublic class UrnaEletronica {\n\n Candidato ",
"end": 228,
"score": 0.9344666004180908,
"start": 220,
"tag": "NAME",
"value": "Nikaolly"
}
] | 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 exer03;
/**
*
* @author Nikaolly
*/
public class UrnaEletronica {
Candidato candidato01 = new Candidato();
Candida... | 2,855 | 0.632059 | 0.603648 | 99 | 27.797979 | 26.15609 | 118 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.373737 | false | false | 1 |
380860f988a9fb19f43112e26d5d69fa8f4e6f96 | 31,078,383,392,960 | 5f6465c0cc02d6017e5a53bcb24545091b647230 | /Java_TD/DB/src/com/avaya/Main.java | 949da266dc5799bb0488ee930ee0a739e2b68f46 | [] | no_license | KMagee/JavaWeek1AllFiles | https://github.com/KMagee/JavaWeek1AllFiles | 07d6f3c25d9914e4c5a807f4604b623fc6aeb5e6 | 6ad88e27598c36908e0a9e345dc77e1da598b219 | refs/heads/master | 2021-07-19T10:22:44.546000 | 2017-10-27T14:04:23 | 2017-10-27T14:04:23 | 108,524,742 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.avaya;
// we need to import java sql utilities
// NB we also added derbyclient.jar as a library
import java.sql.*;
public class Main {
private static String protocol = "jdbc:derby://localhost:1527/";
public static void main(String[] args) {
// connect to the Derby network server (as a ... | UTF-8 | Java | 1,593 | java | Main.java | Java | [] | null | [] | package com.avaya;
// we need to import java sql utilities
// NB we also added derbyclient.jar as a library
import java.sql.*;
public class Main {
private static String protocol = "jdbc:derby://localhost:1527/";
public static void main(String[] args) {
// connect to the Derby network server (as a ... | 1,593 | 0.544256 | 0.535468 | 61 | 25.114754 | 25.538206 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.459016 | false | false | 1 |
ae8c55990c435aa0f3813a17280df9ef3d0ecb5f | 33,105,607,939,846 | 8b3ee3acba686f0588174eeab9e52a9328752b14 | /Blackflag-FVT/Selenium-FVT/src/main/java/ATT/Selenium_FVT/Pages/MyAppsPage.java | 4c4d2e09aa7f3626430a9cc4d895ae5706ab2ed7 | [] | no_license | svkabra/BlackFlag2.3.x | https://github.com/svkabra/BlackFlag2.3.x | 92bde7b037041fd04ac242776a96219df9ea4c78 | 9d1354d84141eb57bb0092e75d129a1888e585a5 | refs/heads/master | 2016-09-02T04:41:29.619000 | 2014-02-20T19:24:23 | 2014-02-20T19:24:23 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ATT.Selenium_FVT.Pages;
import java.io.File;
import java.util.Iterator;
import java.util.Set;
import junit.framework.Assert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.suppor... | UTF-8 | Java | 66,443 | java | MyAppsPage.java | Java | [
{
"context": " \n\n\n/** ======================================== Rohit Singh ============================================= */\n",
"end": 5749,
"score": 0.9995125532150269,
"start": 5738,
"tag": "NAME",
"value": "Rohit Singh"
},
{
"context": " /** =============================... | null | [] | package ATT.Selenium_FVT.Pages;
import java.io.File;
import java.util.Iterator;
import java.util.Set;
import junit.framework.Assert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.suppor... | 66,433 | 0.40823 | 0.404542 | 1,503 | 43.205589 | 39.36422 | 190 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.876913 | false | false | 1 |
b73300a1e43c74cbaa739202bca9c03b833586df | 21,096,879,380,578 | d7b7accf26967ec806ed4d3896178c5a5680c9b5 | /src/program9/Switch.java | efa671f96d037e7044d5d16a17afa5cc44aa4d64 | [] | no_license | GodisG/java-homework-week-7 | https://github.com/GodisG/java-homework-week-7 | 76841449e868e683f524f063c11626ef647d30d4 | ad48ac5ed0c3f164bbbe64fc8723ce448860372e | refs/heads/main | 2023-08-17T18:12:08.372000 | 2021-10-19T21:36:14 | 2021-10-19T21:36:14 | 419,095,192 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package program9;
import java.util.Scanner;
public class Switch {
public static void main(String[] args) {
Scanner letter = new Scanner(System.in);
System.out.println("Please write first letter of city (A to F only)");
String a = letter.nextLine();
switch (a.toUpperCase()) {
... | UTF-8 | Java | 1,003 | java | Switch.java | Java | [] | null | [] | package program9;
import java.util.Scanner;
public class Switch {
public static void main(String[] args) {
Scanner letter = new Scanner(System.in);
System.out.println("Please write first letter of city (A to F only)");
String a = letter.nextLine();
switch (a.toUpperCase()) {
... | 1,003 | 0.477567 | 0.47657 | 36 | 26.861111 | 20.05846 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 1 |
559aa59d489edc466cf27d2dcf3533f0245a84ca | 23,527,830,896,511 | 69da989908ddfb21327abccd21a1f24a9fcafe25 | /Sample/src/test/java/com/sample/service/SampleServiceTest.java | d372da29354727e5c7bd808dbaca2c59a1eaafca | [
"Apache-2.0"
] | permissive | amy4229/s2juit4_dolteng | https://github.com/amy4229/s2juit4_dolteng | f73a8823fa789eb789f8154f8f444bf1a358cbb8 | 30dc940a87bda634e9b7bb547af0a444b1667402 | refs/heads/master | 2020-05-05T08:56:03.692000 | 2019-04-11T17:44:37 | 2019-04-11T17:44:37 | 179,884,045 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sample.service;
import org.junit.Test;
import org.seasar.extension.unit.S2TestCase;
import org.seasar.framework.unit.TestContext;
import org.seasar.framework.unit.annotation.Mock;
public class SampleServiceTest extends S2TestCase{
public SampleService sampleService;
private TestContext ctx;... | UTF-8 | Java | 1,866 | java | SampleServiceTest.java | Java | [] | null | [] | package com.sample.service;
import org.junit.Test;
import org.seasar.extension.unit.S2TestCase;
import org.seasar.framework.unit.TestContext;
import org.seasar.framework.unit.annotation.Mock;
public class SampleServiceTest extends S2TestCase{
public SampleService sampleService;
private TestContext ctx;... | 1,866 | 0.607683 | 0.59546 | 72 | 21.861111 | 19.080462 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.527778 | false | false | 1 |
34b61f58a7cff0a41b7bcffc9e2adc96ad36c7ed | 22,290,880,286,081 | d4e672b44da449f1eb920fbad8398a09c007f079 | /src/main/java/eai/bam/security/PublicKeyReader.java | 8c29a05c863bad2fc2cf9386397b8789d2c460f1 | [
"MIT"
] | permissive | badrkacimi/Highly_Secured_RestfulClient_SpringBoot | https://github.com/badrkacimi/Highly_Secured_RestfulClient_SpringBoot | 3c42381f36f828d61e10f53a4bb5da9aed405d43 | ab7a441e0eacbd1fd1809fef141e80516730f317 | refs/heads/main | 2023-07-21T01:02:20.215000 | 2021-08-18T20:45:47 | 2021-08-18T20:45:47 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package eai.bam.security;
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.InputStream;
import java.io.ObjectInputStream;
import java.math.BigInteger;
import java.security.KeyFactory;
import java.security.PublicKey;
import java.security.spec.RSAPublicKeySpec;
public class PublicKeyRe... | UTF-8 | Java | 1,038 | java | PublicKeyReader.java | Java | [] | null | [] | package eai.bam.security;
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.InputStream;
import java.io.ObjectInputStream;
import java.math.BigInteger;
import java.security.KeyFactory;
import java.security.PublicKey;
import java.security.spec.RSAPublicKeySpec;
public class PublicKeyRe... | 1,038 | 0.692382 | 0.692382 | 34 | 29.529411 | 22.57567 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.088235 | false | false | 1 |
7ec7ed48bb635273044dac01d36d8cd19c2115d3 | 22,290,880,287,454 | 7657f9bbe59f8a5c232ddf461df393588c8e57bb | /builletin_board/src/main/java/core/dao/service/advertisement/IAdvertisementService.java | 87d0e8dc057e4c9d52358c8859ee88c751068114 | [] | no_license | SergijKh/bulletin | https://github.com/SergijKh/bulletin | d1732b56306d0c383cfdc5b525ac1059c73e3a11 | 3d2a1ac6f1daeff246a5cdd8c62c26f803f81169 | refs/heads/master | 2021-01-10T15:36:43.152000 | 2015-10-28T22:16:32 | 2015-10-28T22:16:32 | 45,143,748 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package core.dao.service.advertisement;
import java.util.List;
import core.dao.model.advertisement.Advertisement;
import core.dao.model.login.Login;
public interface IAdvertisementService {
/**
*
* @return advertisement by id
*/
public Advertisement getAdvertisementByID(int l);
/**
*
... | UTF-8 | Java | 2,001 | java | IAdvertisementService.java | Java | [] | null | [] | package core.dao.service.advertisement;
import java.util.List;
import core.dao.model.advertisement.Advertisement;
import core.dao.model.login.Login;
public interface IAdvertisementService {
/**
*
* @return advertisement by id
*/
public Advertisement getAdvertisementByID(int l);
/**
*
... | 2,001 | 0.656172 | 0.656172 | 94 | 19.287233 | 20.95772 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1 | false | false | 1 |
0d85cb1af7ffa1bd29c350ea29fde360587e4654 | 28,845,000,378,983 | c0ba4a88c2ec6cd78c102f39422d1ce6979c22a5 | /_Goodday/src/test200629/A02_Variables.java | 06f48748eb3edd81ad9bfb0226d174dc25d5fe32 | [] | no_license | punch0325/CLASS | https://github.com/punch0325/CLASS | 12c78c1b8a4887bbe78fcaee220224e68d51a619 | efb3c3ac39b1e139fac5209277b18d863cc455c8 | refs/heads/master | 2022-11-30T22:22:55.422000 | 2020-07-31T06:30:44 | 2020-07-31T06:30:44 | 280,309,671 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package test200629;
public class A02_Variables {
public static void main(String[] args) {
byte byteVar;
byteVar = 100;
System.out.println(byteVar);
long longVar;
longVar = 124245424857445875L;
System.out.println(longVar);
char charVar;
charVar = 'a';
System.out.println(charVar)... | UTF-8 | Java | 587 | java | A02_Variables.java | Java | [] | null | [] | package test200629;
public class A02_Variables {
public static void main(String[] args) {
byte byteVar;
byteVar = 100;
System.out.println(byteVar);
long longVar;
longVar = 124245424857445875L;
System.out.println(longVar);
char charVar;
charVar = 'a';
System.out.println(charVar)... | 587 | 0.650767 | 0.579216 | 33 | 15.787879 | 12.182345 | 41 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2 | false | false | 1 |
89cc688fe56ed5826120fb1b0e822db46b471f06 | 16,904,991,298,509 | c478a66ce9e0bcc1afb953ab5fe8bba98411dea5 | /app/src/main/java/com/app/stack/businesslogic/Computer.java | 6badff8239adee7f63da6686055187e9f97c8d4a | [] | no_license | Deepakm140790/StackApp | https://github.com/Deepakm140790/StackApp | e9d769c4d11aaa6bef8db8f162d2e31a842b51c5 | 08bc9a5a2a1907331a23eac0c619cb24646c25b9 | refs/heads/master | 2020-05-30T16:27:12.936000 | 2019-06-02T13:47:52 | 2019-06-02T13:55:18 | 189,845,758 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.app.stack.businesslogic;
import com.app.stack.interfaces.IComputer;
import com.app.stack.util.PrintLog;
import static com.app.stack.util.Constants.CALL;
import static com.app.stack.util.Constants.MULT;
import static com.app.stack.util.Constants.PRINT;
import static com.app.stack.util.Constants.PUSH;
impor... | UTF-8 | Java | 4,899 | java | Computer.java | Java | [] | null | [] | package com.app.stack.businesslogic;
import com.app.stack.interfaces.IComputer;
import com.app.stack.util.PrintLog;
import static com.app.stack.util.Constants.CALL;
import static com.app.stack.util.Constants.MULT;
import static com.app.stack.util.Constants.PRINT;
import static com.app.stack.util.Constants.PUSH;
impor... | 4,899 | 0.559298 | 0.555011 | 174 | 27.155172 | 21.399969 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.586207 | false | false | 1 |
b8c3dccaa943d7de3137d6c63e8b5d156abfcf76 | 19,585,050,892,083 | 7d1085bf3dacc2e4df81302cafc473069e0a7bbb | /src/com/tj/jst/outside/businessReport/newQualification/model/NewQualification.java | da883c47e6094c95b2f6cc7ae65ca59b0e4e5125 | [] | no_license | sunzhenwen/QualitySystem | https://github.com/sunzhenwen/QualitySystem | 2bc880652efd024e4153a0fc98ce6deaa2f68d4b | b29e3854ca32b5a2afb6b4141c555c77b4dc8e21 | refs/heads/master | 2021-01-01T18:40:53.582000 | 2017-07-26T10:26:17 | 2017-07-26T10:26:17 | 98,405,821 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.tj.jst.outside.businessReport.newQualification.model;
import java.sql.Date;
/**
* 上报资质服务事项
*
* @author Administrator
*
*/
public class NewQualification {
// 主键
private String newQualId;
// 企业主键
private String corpId;
// 企业名称
private String corpName;
// 企业登记注册类型
private in... | GB18030 | Java | 16,781 | java | NewQualification.java | Java | [
{
"context": "ava.sql.Date;\r\n\r\n/**\r\n * 上报资质服务事项\r\n * \r\n * @author Administrator\r\n *\r\n */\r\npublic class NewQualification {\r\n\r\n\t// ",
"end": 141,
"score": 0.9840884208679199,
"start": 128,
"tag": "NAME",
"value": "Administrator"
}
] | null | [] | package com.tj.jst.outside.businessReport.newQualification.model;
import java.sql.Date;
/**
* 上报资质服务事项
*
* @author Administrator
*
*/
public class NewQualification {
// 主键
private String newQualId;
// 企业主键
private String corpId;
// 企业名称
private String corpName;
// 企业登记注册类型
private in... | 16,781 | 0.691868 | 0.690437 | 736 | 18.900816 | 18.384102 | 111 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.27038 | false | false | 1 |
61e746b47ab258571f2fca205bb08146c5c4fdae | 19,585,050,890,475 | 32ee09a1940b68457d12b09cb61da2586cf24797 | /src/main/java/com/gabriel/paiva/cursomc/cursomc/services/CategoriaService.java | d9d91bb6545aee093a293f3262b801289165fda1 | [] | no_license | gspaiva/curso-spring-jpa | https://github.com/gspaiva/curso-spring-jpa | d6d6dc9df447c984436bc2e6c88ef2904701819a | 506e60a835088e36c6773415ec8673a6594830eb | refs/heads/master | 2020-05-16T07:37:20.258000 | 2019-05-15T11:34:15 | 2019-05-15T11:34:15 | 182,882,917 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.gabriel.paiva.cursomc.cursomc.services;
import com.gabriel.paiva.cursomc.cursomc.dtos.CategoriaDTO;
import com.gabriel.paiva.cursomc.cursomc.exceptions.DataIntegrityException;
import com.gabriel.paiva.cursomc.cursomc.exceptions.ObjectNotFoundException;
import com.gabriel.paiva.cursomc.cursomc.domains.Categ... | UTF-8 | Java | 2,589 | java | CategoriaService.java | Java | [] | null | [] | package com.gabriel.paiva.cursomc.cursomc.services;
import com.gabriel.paiva.cursomc.cursomc.dtos.CategoriaDTO;
import com.gabriel.paiva.cursomc.cursomc.exceptions.DataIntegrityException;
import com.gabriel.paiva.cursomc.cursomc.exceptions.ObjectNotFoundException;
import com.gabriel.paiva.cursomc.cursomc.domains.Categ... | 2,589 | 0.72882 | 0.72882 | 74 | 33.932434 | 29.746374 | 129 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.567568 | false | false | 1 |
275bac145967b9ae2262b4f243fe518404def86b | 3,968,549,805,956 | 2254a38192eaac3d35b3740ba23838e175ba50b1 | /src/test/java/com/haojiale/activitidemo/ActivitidemoApplicationTests.java | 412cf72a3faab81f80dcef41f56415704e73bd59 | [] | no_license | HandshakePopp/ActivitiDemo | https://github.com/HandshakePopp/ActivitiDemo | 6f29450e7093159d10a2c52dabedc153d0e3bbee | 274088e02cea881297d83043f3890cc8b62f14c6 | refs/heads/master | 2021-11-28T09:37:58.283000 | 2018-12-27T03:48:57 | 2018-12-27T03:48:57 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.haojiale.activitidemo;
import org.activiti.engine.RepositoryService;
import org.activiti.engine.RuntimeService;
import org.activiti.engine.TaskService;
import org.activiti.engine.repository.Deployment;
import org.activiti.engine.repository.ProcessDefinition;
import org.activiti.engine.runtime.ProcessInstan... | UTF-8 | Java | 4,961 | java | ActivitidemoApplicationTests.java | Java | [
{
"context": "st() {\n //任务负责人\n String assignee = \"zhangsan\";\n //创建taskService\n List<Task> list",
"end": 2331,
"score": 0.9995509386062622,
"start": 2323,
"tag": "USERNAME",
"value": "zhangsan"
}
] | null | [] | package com.haojiale.activitidemo;
import org.activiti.engine.RepositoryService;
import org.activiti.engine.RuntimeService;
import org.activiti.engine.TaskService;
import org.activiti.engine.repository.Deployment;
import org.activiti.engine.repository.ProcessDefinition;
import org.activiti.engine.runtime.ProcessInstan... | 4,961 | 0.640296 | 0.63752 | 139 | 30.093525 | 23.676748 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.323741 | false | false | 1 |
38b328210e3fefca7b69123f03c24349fbe47716 | 19,662,360,290,472 | b679dc1262b94a3f5673aba5cfdca40759ba7b1a | /com/jlgg/one/One.java | 1a3128848620d19812f82626e24f8d46cc507b9e | [] | no_license | jluisgg/Coding-Interview | https://github.com/jluisgg/Coding-Interview | 39d2f578ae8011b1bdd5d30095ff85d80f6755ba | 7cb95767abd2d5f651fc98b548d84501ea7bef51 | refs/heads/master | 2022-12-22T11:55:44.870000 | 2020-09-30T04:32:08 | 2020-09-30T04:32:08 | 270,518,387 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jlgg.one;
import java.util.Arrays;
/**
* Problem: Implement an algorithm to determine if a string has all unique characters.
* What if you cannot use additional data structures?
* <p>
* Context:
* ASCII (American Standard Code for Information Interchange), 7 bit charset: 128 chars [0 - 127]
* <p>
*... | UTF-8 | Java | 1,453 | java | One.java | Java | [] | null | [] | package com.jlgg.one;
import java.util.Arrays;
/**
* Problem: Implement an algorithm to determine if a string has all unique characters.
* What if you cannot use additional data structures?
* <p>
* Context:
* ASCII (American Standard Code for Information Interchange), 7 bit charset: 128 chars [0 - 127]
* <p>
*... | 1,453 | 0.516173 | 0.50585 | 51 | 27.490196 | 24.54797 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.45098 | false | false | 1 |
0d2c1c97aea0d0d9ee3649a4566dd6ce9963970f | 19,662,360,289,674 | d6aa3a20cdfea02dfc4265b18aef8d1ebff49646 | /.svn/pristine/4d/4d2429082470f6603de312e611a221c55df0baea.svn-base | 733c0a6f945c9d7befc68d5c0fdc37c7770ecaf8 | [] | no_license | liveqmock/equip | https://github.com/liveqmock/equip | 6c8dfcd5d331638bc1d2f609338e2d43b282f480 | c3b0c6dbdbc3ad36ddf37e38c12ffffd2cad4d90 | refs/heads/master | 2020-12-28T14:51:33.843000 | 2015-03-14T13:55:35 | 2015-03-14T13:55:35 | 33,808,923 | 2 | 0 | null | true | 2015-04-12T08:19:01 | 2015-04-12T08:19:01 | 2015-03-14T13:55:35 | 2015-03-14T13:55:35 | 1,252 | 0 | 0 | 0 | null | null | null | package xi.ym.equip.service.impl;
import java.text.DateFormat;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.annotation.Resource;
import org.spring... | UTF-8 | Java | 6,257 | 4d2429082470f6603de312e611a221c55df0baea.svn-base | Java | [
{
"context": "(user.getUserPwd())) {\n\t\t\tp.setUserPwd(Encrypt.e(\"123\"));\n\t\t} else {\n\t\t\tp.setUserPwd(Encrypt.e(user.get",
"end": 4645,
"score": 0.9972426295280457,
"start": 4642,
"tag": "PASSWORD",
"value": "123"
},
{
"context": "(user.getUserPwd())) {\n\t\t\tp.setUserPwd(... | null | [] | package xi.ym.equip.service.impl;
import java.text.DateFormat;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.annotation.Resource;
import org.spring... | 6,257 | 0.640874 | 0.638574 | 241 | 24.257261 | 21.973772 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.261411 | false | false | 1 | |
644e666334eed22fc858e61da2805d988d82c65f | 19,662,360,291,287 | ff2033e960838e740b395947211cf7582e841de9 | /src/main/java/com/mapper/StudentMapper.java | b96872d5279e75456e83b214c73ad03833a197c1 | [] | no_license | HuangBaiDa/spring_maven_space | https://github.com/HuangBaiDa/spring_maven_space | dccdd82e106ffe782a58ec8e5caa3283140d00a5 | 2deba6977dcc851f9876160f3ca514e240aa7488 | refs/heads/master | 2020-04-23T01:44:06.990000 | 2019-03-01T01:42:32 | 2019-03-01T01:42:32 | 170,822,691 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mapper;
import java.sql.ResultSet;
import java.sql.SQLException;
import com.entity.Student;
import org.springframework.jdbc.core.RowMapper;
/**
* @author hbd
* 实现ResultSet到User实体的转换
*/
public class StudentMapper implements RowMapper<Student> {
/**
* 实现ResultSet到User实体的转换
* @param rs
... | UTF-8 | Java | 710 | java | StudentMapper.java | Java | [
{
"context": "ringframework.jdbc.core.RowMapper;\n\n/**\n * @author hbd\n * 实现ResultSet到User实体的转换\n */\npublic class Student",
"end": 173,
"score": 0.9996048212051392,
"start": 170,
"tag": "USERNAME",
"value": "hbd"
}
] | null | [] | package com.mapper;
import java.sql.ResultSet;
import java.sql.SQLException;
import com.entity.Student;
import org.springframework.jdbc.core.RowMapper;
/**
* @author hbd
* 实现ResultSet到User实体的转换
*/
public class StudentMapper implements RowMapper<Student> {
/**
* 实现ResultSet到User实体的转换
* @param rs
... | 710 | 0.657817 | 0.657817 | 29 | 22.379311 | 18.408045 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.37931 | false | false | 1 |
0a6e0c6ce2d511bc1579208be2fd4b299a9abbeb | 25,494,925,897,799 | fcbf0c385e72b60cd3af500179080d84b92f41f3 | /gitdata-persistence/src/main/java/edu/hit/yh/gitdata/githubDataModel/CreateEvent.java | 18cdeffa63c2f41af5e58b98b32fc25919195c0a | [] | no_license | wsgan001/gitdata | https://github.com/wsgan001/gitdata | a3defd686e3204f9f61005199d7ee89c147a81bf | 9fbe9bcbaa105eb3c5cdb45a8da471892217d786 | refs/heads/master | 2020-03-28T18:55:35.578000 | 2016-05-23T06:20:25 | 2016-05-23T06:20:25 | 148,927,524 | 1 | 0 | null | true | 2018-09-15T18:10:02 | 2018-09-15T18:10:02 | 2016-04-11T08:14:44 | 2016-05-23T06:20:56 | 421 | 0 | 0 | 0 | null | false | null | package edu.hit.yh.gitdata.githubDataModel;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
@Entity
public class CreateEvent {
private long id;
private String actor;
private String repo;
/*
* 只能是branch,tag,repository
*/
private String ref... | UTF-8 | Java | 1,521 | java | CreateEvent.java | Java | [] | null | [] | package edu.hit.yh.gitdata.githubDataModel;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
@Entity
public class CreateEvent {
private long id;
private String actor;
private String repo;
/*
* 只能是branch,tag,repository
*/
private String ref... | 1,521 | 0.665331 | 0.665331 | 81 | 16.481482 | 13.848484 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.444444 | false | false | 1 |
84f2043a2729351666d6a6b92a24d75fdd36b271 | 14,920,716,417,390 | 9b2667a75218e3a341135908f0e50624cbb8ccd8 | /src/main/java/com/digivox/models/Aluguel.java | 807ba8f66a9440489dabfe6b186d3c2850dbed75 | [] | no_license | ArthurEBCarvalho/digivox | https://github.com/ArthurEBCarvalho/digivox | a924eb8dac693dfa2e66f2c73fd3c87a92a1fff0 | 27c831a50b03d49a4b4a0233873117ce35261e00 | refs/heads/master | 2023-04-02T15:18:16.219000 | 2019-04-25T13:44:50 | 2019-04-25T13:44:50 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.digivox.models;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persiste... | UTF-8 | Java | 1,324 | java | Aluguel.java | Java | [] | null | [] | package com.digivox.models;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persiste... | 1,324 | 0.759819 | 0.756798 | 58 | 20.827587 | 15.731736 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.931035 | false | false | 1 |
e009808cfc5d4a65fccc224bb7dfcd43b07cdd5e | 661,424,995,891 | 2d74997d3f18fb29d700b03581591d0517265a9b | /src/main/java/com/github/xeranic/blacksmith/text/TextTableCell.java | 0a3e92251800430fc9daa3ed64a82a6c615deeb1 | [
"Apache-2.0"
] | permissive | xeranic/blacksmith-text | https://github.com/xeranic/blacksmith-text | e7a00869a35b199d67323f0d9923949a5bf8580c | 4991703817a01ca81377bd9619c014a9d749723b | refs/heads/master | 2020-06-04T03:02:32.500000 | 2014-08-13T08:14:15 | 2014-08-13T08:14:15 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.github.xeranic.blacksmith.text;
public interface TextTableCell {
int getRowSpan();
int getColumnSpan();
} | UTF-8 | Java | 144 | java | TextTableCell.java | Java | [
{
"context": "package com.github.xeranic.blacksmith.text;\n\npublic interface TextTableCell ",
"end": 26,
"score": 0.9973921179771423,
"start": 19,
"tag": "USERNAME",
"value": "xeranic"
}
] | null | [] | package com.github.xeranic.blacksmith.text;
public interface TextTableCell {
int getRowSpan();
int getColumnSpan();
} | 144 | 0.652778 | 0.652778 | 9 | 15.111111 | 14.594096 | 43 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 1 |
78d610de1b5ba24e7b5905f2ba157d6b74fa2f3d | 14,843,407,005,623 | 5cfa1bb8c8c7359fdc896e3c0675269c5b22ec8a | /MeteorHttp-src/app/src/main/java/grey_zoo/com/meteorhttp/network/process/impl/ResponseFactory.java | b124031cf1ef38190ce218d675b036ee524775a6 | [] | no_license | qq8958188/MeteorHttp | https://github.com/qq8958188/MeteorHttp | 16b829394542793c6bd5b7e9f1a836a60c22e67b | a05abff0c087c2e17eae3a54789b25f8c0c1301c | refs/heads/master | 2021-01-10T04:46:33.669000 | 2015-12-07T15:01:08 | 2015-12-07T15:01:08 | 47,556,819 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package grey_zoo.com.meteorhttp.network.process.impl;
import org.apache.http.HttpResponse;
import grey_zoo.com.meteorhttp.network.process.impl.AbstractRspProcess;
import grey_zoo.com.meteorhttp.network.process.impl.rspimpl.SuccessRspProcess;
import grey_zoo.com.meteorhttp.response.BaseResponse;
/**
* Created by Adm... | UTF-8 | Java | 760 | java | ResponseFactory.java | Java | [
{
"context": "teorhttp.response.BaseResponse;\n\n/**\n * Created by Administrator on 2015/11/24 0024.\n */\npublic class ResponseFact",
"end": 330,
"score": 0.5424904227256775,
"start": 317,
"tag": "USERNAME",
"value": "Administrator"
}
] | null | [] | package grey_zoo.com.meteorhttp.network.process.impl;
import org.apache.http.HttpResponse;
import grey_zoo.com.meteorhttp.network.process.impl.AbstractRspProcess;
import grey_zoo.com.meteorhttp.network.process.impl.rspimpl.SuccessRspProcess;
import grey_zoo.com.meteorhttp.response.BaseResponse;
/**
* Created by Adm... | 760 | 0.732895 | 0.713158 | 24 | 30.666666 | 29.707836 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.458333 | false | false | 1 |
57060a53786097bb2d701a491dc5be316b64ccb1 | 33,423,435,541,178 | 4f8f4f3a4a93ccfe763e871e6ac379efcd9e2e8a | /ServiceFOTA/src/main/java/_2/_0/_168/_192/IWebService.java | 17ba176028f9d345e428fcc13e58060494233850 | [] | no_license | shinminsoo118/statsatsastsw | https://github.com/shinminsoo118/statsatsastsw | c3043968d7eccc685a37fcd4ef8773c768aa1d37 | b380661be3ff023d663b1c72100a03ed7aae46a3 | refs/heads/master | 2018-02-06T15:21:35.855000 | 2016-04-21T13:54:00 | 2016-04-21T13:54:00 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package _2._0._168._192;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso;
/**
* This class was generated by Apache CXF 2.4.6
* 2015-01-21T16:59:55.748+09:00
* G... | UTF-8 | Java | 1,045 | java | IWebService.java | Java | [
{
"context": "\r\n */\r\n@WebService(targetNamespace = \"http://192.168.0.2/\", name = \"IWebService\")\r\n@XmlSeeAlso({com.ktf.kh",
"end": 411,
"score": 0.766373336315155,
"start": 405,
"tag": "IP_ADDRESS",
"value": "68.0.2"
}
] | null | [] | package _2._0._168._192;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.jws.soap.SOAPBinding;
import javax.xml.bind.annotation.XmlSeeAlso;
/**
* This class was generated by Apache CXF 2.4.6
* 2015-01-21T16:59:55.748+09:00
* G... | 1,045 | 0.702392 | 0.653589 | 27 | 36.703705 | 33.271961 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.518519 | false | false | 1 |
ba2cb23bea17ef0e4dfd578a0ea3d2f11ce94ff7 | 19,275,813,256,053 | 0167dcbc4619e6fc341e9a9a3049632d53d5df46 | /src/main/java/org/carrot2/source/idol/IdolDocumentSourceDescriptor.java | c8a3e4a61ac2cbf432a0897b882d623146031400 | [] | no_license | cosmosZhou/semantic | https://github.com/cosmosZhou/semantic | 7381486595ac42e9d266c7a2d8993a8210a78cab | f2a0d9b452af5869571f0270787b4a078c48f5f9 | refs/heads/master | 2022-11-20T22:41:05.364000 | 2020-05-19T10:39:40 | 2020-05-19T10:39:40 | 233,968,522 | 0 | 0 | null | false | 2022-11-16T11:58:59 | 2020-01-15T01:09:04 | 2020-05-19T10:39:49 | 2022-11-16T11:58:58 | 13,284 | 0 | 0 | 7 | Java | false | false |
// APT-generated file.
package org.carrot2.source.idol;
//Imported for JavaDoc references mostly.
import org.carrot2.util.attribute.*;
import java.util.*;
/**
* Metadata and attributes of the {@link org.carrot2.source.idol.IdolDocumentSource} component. You can use
* this descriptor to obtain metadata, such as... | UTF-8 | Java | 23,201 | java | IdolDocumentSourceDescriptor.java | Java | [
{
"context": "naries of this class. <p> Based on code donated by Julien Nioche. Autonomy IDOL support contributed by James Seale",
"end": 2111,
"score": 0.9998844265937805,
"start": 2098,
"tag": "NAME",
"value": "Julien Nioche"
},
{
"context": "ulien Nioche. Autonomy IDOL support con... | null | [] |
// APT-generated file.
package org.carrot2.source.idol;
//Imported for JavaDoc references mostly.
import org.carrot2.util.attribute.*;
import java.util.*;
/**
* Metadata and attributes of the {@link org.carrot2.source.idol.IdolDocumentSource} component. You can use
* this descriptor to obtain metadata, such as... | 23,188 | 0.643507 | 0.639886 | 682 | 33.016129 | 38.04398 | 407 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.357771 | false | false | 1 |
670dc268a1bf8d0a1aa84dedd7d5e35d2c9d6977 | 23,991,687,350,334 | 672797d06a5b3cd314c9ecaa555f56a693bd465b | /src/main/java/com/sshkim/instagram/entity/Document.java | c1b8c9c1c85d93723e41a60754356f7ca8a9a853 | [] | no_license | sshkim/instagram | https://github.com/sshkim/instagram | 0b766f294b7301a2dcc7926367f015c6253b949a | 20200fae3c408ced70e57867ce2549022e407f57 | refs/heads/master | 2021-01-18T16:40:57.909000 | 2016-10-17T09:13:10 | 2016-10-17T09:13:10 | 65,817,492 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sshkim.instagram.entity;
import lombok.Data;
import javax.persistence.*;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
import java.util.Optional;
/**
* Created by sshkim on 2016. 10. 5..
*/
@Entity
@Table(name = "document")
@Data
public class Document implements Serializabl... | UTF-8 | Java | 1,470 | java | Document.java | Java | [
{
"context": "ist;\nimport java.util.Optional;\n\n/**\n * Created by sshkim on 2016. 10. 5..\n */\n@Entity\n@Table(name = \"docum",
"end": 214,
"score": 0.9973675012588501,
"start": 208,
"tag": "USERNAME",
"value": "sshkim"
}
] | null | [] | package com.sshkim.instagram.entity;
import lombok.Data;
import javax.persistence.*;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
import java.util.Optional;
/**
* Created by sshkim on 2016. 10. 5..
*/
@Entity
@Table(name = "document")
@Data
public class Document implements Serializabl... | 1,470 | 0.687755 | 0.682993 | 60 | 23.5 | 23.797409 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.466667 | false | false | 1 |
026a3efb198a4c6a01386b60ab9d092a30e098de | 2,336,462,247,247 | 957bb1a50e6323f2510a2cfa0b34b232009cde19 | /src/com/bue/shoppingplanner/free/views/ExchangeRatesActivity.java | 0e312b934da1c54ab43aecd6852fa074c9a122f9 | [] | no_license | panalex1982/ShoppingPlanner | https://github.com/panalex1982/ShoppingPlanner | 199bd2f3a99b3f2cfa15eb4680cef3fc54a60003 | 387639d4ee621f3120afec6186213255a2f982bb | refs/heads/master | 2020-06-05T17:18:43.189000 | 2013-09-14T13:56:43 | 2013-09-14T13:56:43 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.bue.shoppingplanner.free.views;
import java.util.ArrayList;
import com.bue.shoppingplanner.free.R;
import com.bue.shoppingplanner.free.controllers.CurrencyController;
import com.bue.shoppingplanner.free.helpers.AdMobCreator;
import com.bue.shoppingplanner.free.helpers.DialogOpener;
import com.bue.shopping... | UTF-8 | Java | 4,463 | java | ExchangeRatesActivity.java | Java | [] | null | [] | package com.bue.shoppingplanner.free.views;
import java.util.ArrayList;
import com.bue.shoppingplanner.free.R;
import com.bue.shoppingplanner.free.controllers.CurrencyController;
import com.bue.shoppingplanner.free.helpers.AdMobCreator;
import com.bue.shoppingplanner.free.helpers.DialogOpener;
import com.bue.shopping... | 4,463 | 0.766077 | 0.76406 | 148 | 29.155405 | 24.692354 | 107 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.04054 | false | false | 1 |
7b1f0e8e6d86c6c6911765740228dafeb028f305 | 29,944,512,027,522 | 505119506f2e93ef219e023a1ab5c089b684bcef | /java/src/ie/tudublin/Trees.java | ad95c103cd238e762edc434f4c0ea373789a5368 | [
"MIT"
] | permissive | kweenani/SciFiUI | https://github.com/kweenani/SciFiUI | 5cbacc471643a6e1ddfc2e5d4f3e31b7f833dd50 | dd37b3821a8a9583ca989c0d825d4d5cd9c4f4e9 | refs/heads/master | 2020-04-30T10:14:43.762000 | 2019-05-08T14:07:48 | 2019-05-08T14:07:48 | 176,772,060 | 0 | 0 | null | true | 2019-03-20T16:15:04 | 2019-03-20T16:15:04 | 2019-03-13T14:21:01 | 2019-03-13T17:41:30 | 12,041 | 0 | 0 | 0 | null | false | null |
package ie.tudublin;
import processing.core.PApplet;
public class Trees {
PApplet ui;
private float x, y, w, h;
public Trees(float x, float y, float w, float h, PApplet ui)
{
this.ui = ui;
this.x = x;
this.y = y;
this.w = w;
this.h = h;
}
public voi... | UTF-8 | Java | 1,102 | java | Trees.java | Java | [] | null | [] |
package ie.tudublin;
import processing.core.PApplet;
public class Trees {
PApplet ui;
private float x, y, w, h;
public Trees(float x, float y, float w, float h, PApplet ui)
{
this.ui = ui;
this.x = x;
this.y = y;
this.w = w;
this.h = h;
}
public voi... | 1,102 | 0.448276 | 0.368421 | 53 | 19.773584 | 15.02908 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.433962 | false | false | 1 |
d75695a9e66b372bb28056e7431a7cdd6c8afccb | 10,316,511,487,117 | 315f49bd2877ae83a69431accda78b17c254d905 | /src/Main.java | f0bfab991734fce35a576bf700e1ba02031c5a46 | [] | no_license | carlromeo/KeepGuessing_1 | https://github.com/carlromeo/KeepGuessing_1 | 23786404f8a452312691e01569904563afcc9019 | a0443f04d567fe3d904d393fe610500a5a03217e | refs/heads/master | 2020-07-23T09:26:15.778000 | 2019-09-10T09:07:31 | 2019-09-10T09:07:31 | 207,512,979 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Scanner;
public class Main {
public static void main(String [] args) {
Scanner key = new Scanner(System.in);
int secretNumber, guess = 0;
secretNumber = 5;
System.out.println("Guess which day Barack Obama's birthday fell on in 2017");
System.out.println("... | UTF-8 | Java | 937 | java | Main.java | Java | [
{
"context": " = 5;\n\n System.out.println(\"Guess which day Barack Obama's birthday fell on in 2017\");\n System.out.",
"end": 261,
"score": 0.9655033349990845,
"start": 249,
"tag": "NAME",
"value": "Barack Obama"
}
] | null | [] | import java.util.Scanner;
public class Main {
public static void main(String [] args) {
Scanner key = new Scanner(System.in);
int secretNumber, guess = 0;
secretNumber = 5;
System.out.println("Guess which day <NAME>'s birthday fell on in 2017");
System.out.println("(1)= S... | 931 | 0.561366 | 0.547492 | 31 | 29.258064 | 22.422581 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.612903 | false | false | 1 |
85c31ed9377eb278163b277200049324a120411b | 14,224,931,719,603 | 40d8df22dcde010aedf9e1e0755e0ff0471ee132 | /Assignment7/sampleIndex.java | 34b6c5d81f45b744d2ce58aac4adcf57fb120548 | [] | no_license | sgr0691/csc130java | https://github.com/sgr0691/csc130java | 1113a7f467716f707a184799298f2d9060c26d16 | dc3644b93e7afeac9bd0920ab3e86b7e4a0f6548 | refs/heads/master | 2021-01-21T02:59:43.742000 | 2013-05-02T23:53:12 | 2013-05-02T23:53:12 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.lang.StringBuilder;
public class sampleIndex {
public static void main(String[] args)
{
String s = "Hello";
String q="?????";
char[] qChars = q.toCharArray();
System.out.println(qChars);
qChars[2] = 'e';
q = String.valueOf(qChars);
System.out.println(q);
System.out.println(qChars);
... | UTF-8 | Java | 325 | java | sampleIndex.java | Java | [] | null | [] | import java.lang.StringBuilder;
public class sampleIndex {
public static void main(String[] args)
{
String s = "Hello";
String q="?????";
char[] qChars = q.toCharArray();
System.out.println(qChars);
qChars[2] = 'e';
q = String.valueOf(qChars);
System.out.println(q);
System.out.println(qChars);
... | 325 | 0.643077 | 0.64 | 22 | 13.772727 | 13.611265 | 40 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.909091 | false | false | 1 |
f8e475d12f214ea9ba7168d59c209fe41cf502e2 | 29,549,375,029,445 | a8d9c278d5f0cd4fefb3f796d2b4299a8bc55771 | /src/main/java/ar/edu/unlam/tallerweb1/servicios/ServicioAgregarAlCarroImpl.java | fdd56b0cc4550b0f33b538a8f11bc76fbbc9e0d4 | [] | no_license | Nicolasemanuelmorales/proyecto-limpio-spring | https://github.com/Nicolasemanuelmorales/proyecto-limpio-spring | cc70d6ffcb72d9595ddb7ae1db2da7c9372a294b | d96992ce6c2a7f7c32e5b985ea4ecf3cc43a19fd | refs/heads/master | 2020-05-31T12:34:40.453000 | 2019-07-18T21:02:48 | 2019-07-18T21:02:48 | 190,282,082 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ar.edu.unlam.tallerweb1.servicios;
import javax.inject.Inject;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import ar.edu.unlam.tallerweb1.dao.AgregarAlCArroDao;
import ar.edu.unlam.tallerweb1.modelo.Producto;
@Service("ServicioAgregarAlCarro")... | UTF-8 | Java | 617 | java | ServicioAgregarAlCarroImpl.java | Java | [] | null | [] | package ar.edu.unlam.tallerweb1.servicios;
import javax.inject.Inject;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import ar.edu.unlam.tallerweb1.dao.AgregarAlCArroDao;
import ar.edu.unlam.tallerweb1.modelo.Producto;
@Service("ServicioAgregarAlCarro")... | 617 | 0.844408 | 0.839546 | 21 | 28.380953 | 25.650537 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.809524 | false | false | 1 |
04b0caaf55a10631a1034673da11deddb7ebc72c | 24,558,623,031,476 | ec07e30498d28ee385afbd9ae7f905b164b8a428 | /newspicyway/src/main/java/com/candao/www/dataserver/model/ResponseData.java | 67902e1c790b43df7ceb1018fdaabf04b91ca8db | [] | no_license | yuyu082/copy-candao-store | https://github.com/yuyu082/copy-candao-store | 62ddc3105b6da3948f4dcbd1fac6aa44d0ff486e | cf4cda6e01d0309c6f7b47c3a84e84f45f75703e | refs/heads/master | 2019-07-14T12:52:41.901000 | 2016-08-17T03:55:05 | 2016-08-17T03:55:05 | 65,873,412 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.candao.www.dataserver.model;
import com.alibaba.fastjson.annotation.JSONField;
import java.io.Serializable;
/**
* Created by ytq on 2016/3/15.
*/
public class ResponseData implements Serializable {
@JSONField(name = "Data")
private String data = "1";
@JSONField(name = "Info")
private St... | UTF-8 | Java | 593 | java | ResponseData.java | Java | [
{
"context": ";\n\nimport java.io.Serializable;\n\n/**\n * Created by ytq on 2016/3/15.\n */\npublic class ResponseData imple",
"end": 144,
"score": 0.9995689988136292,
"start": 141,
"tag": "USERNAME",
"value": "ytq"
}
] | null | [] | package com.candao.www.dataserver.model;
import com.alibaba.fastjson.annotation.JSONField;
import java.io.Serializable;
/**
* Created by ytq on 2016/3/15.
*/
public class ResponseData implements Serializable {
@JSONField(name = "Data")
private String data = "1";
@JSONField(name = "Info")
private St... | 593 | 0.627319 | 0.613828 | 31 | 18.129032 | 16.119997 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.290323 | false | false | 1 |
1974ae21c680696a372dd1c97eca8c51bdcfbef3 | 17,111,149,754,803 | c4bbade31a9f2c9fff0a3516025f9fe27454f3d6 | /trabalhoPacman/br/com/mvbos/lgj/JogoCenario.java | 1a7466b512b018967aaea14b5fc0a4603a3b6b45 | [] | no_license | PauloUbirajara/Programacao-Orientada-a-Objetos | https://github.com/PauloUbirajara/Programacao-Orientada-a-Objetos | 34ec1c50bc0bee410252feb4cfa79753e10d6a9b | 5004581071d71be40e7adc7779a8b14d6f9de327 | refs/heads/master | 2020-09-01T21:01:54.633000 | 2020-04-06T11:33:58 | 2020-04-06T11:33:58 | 219,056,347 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.com.mvbos.lgj;
import static br.com.mvbos.lgj.Jogo.controleTecla;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.Random;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import br.com.mvbos.lgj.Pizza.Modo;
... | UTF-8 | Java | 26,146 | java | JogoCenario.java | Java | [] | null | [] | package br.com.mvbos.lgj;
import static br.com.mvbos.lgj.Jogo.controleTecla;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.Random;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import br.com.mvbos.lgj.Pizza.Modo;
... | 26,146 | 0.66714 | 0.655427 | 823 | 30.618469 | 35.921852 | 308 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.775213 | false | false | 1 |
4c4df2969f68d593e0704ae7d6bcb22567725129 | 30,322,469,149,138 | 09684589a048c17f701aeb4f98140bfc8376cd05 | /src/persistencia/UsuarioDAO.java | d070258590cb7bd1402022ededec8d30dfb36bd5 | [
"MIT"
] | permissive | Victor-Hechel/Projeto-de-Historia | https://github.com/Victor-Hechel/Projeto-de-Historia | d78f29631a79d5a3bb867750839e732c18e25e2d | 951d2fd73fbaf6494e345fe34e51e05d777da1c8 | refs/heads/master | 2019-07-30T21:58:58.182000 | 2015-12-07T01:25:23 | 2015-12-07T01:25:23 | 41,447,852 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package persistencia;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Scanner;
import modelo.Materia;
import modelo.Usuario;
public class UsuarioDAO implements DAO<Usuario>{
public void save(Usuario user)... | UTF-8 | Java | 2,521 | java | UsuarioDAO.java | Java | [] | null | [] | package persistencia;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Scanner;
import modelo.Materia;
import modelo.Usuario;
public class UsuarioDAO implements DAO<Usuario>{
public void save(Usuario user)... | 2,521 | 0.619199 | 0.614439 | 115 | 20.92174 | 18.209957 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.747826 | false | false | 1 |
e93f7a4202b12672fbe33fd33ac78326c631d1ce | 29,008,209,149,708 | 8f9e62e46dc723356abc2a36c287f082e3db75b7 | /src/main/java/com/example/sbmdb/repository/UserRepository.java | 338c1472e6978e4f2b77176aea8676cf7faab259 | [] | no_license | NiltonFG/Workshop-Spring-boot-MongoDB | https://github.com/NiltonFG/Workshop-Spring-boot-MongoDB | 3cc322d315901b6017f3b5232bd36169e25b7a3f | b957fa508bf8965bdfc40d220e66154484b1f007 | refs/heads/master | 2023-01-08T14:40:49.455000 | 2020-10-28T12:13:51 | 2020-10-28T12:13:51 | 305,557,810 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.sbmdb.repository;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.stereotype.Repository;
import com.example.sbmdb.domain.User;
@Repository
public interface UserRepository extends MongoRepository<User,String> {
}
| UTF-8 | Java | 282 | java | UserRepository.java | Java | [] | null | [] | package com.example.sbmdb.repository;
import org.springframework.data.mongodb.repository.MongoRepository;
import org.springframework.stereotype.Repository;
import com.example.sbmdb.domain.User;
@Repository
public interface UserRepository extends MongoRepository<User,String> {
}
| 282 | 0.843972 | 0.843972 | 10 | 27.200001 | 26.928795 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 1 |
a5ac06dade1997a18d45309269390471781bda83 | 22,359,599,778,785 | 1187f3c2323009d80eb26a1f75baae2be0f2a885 | /src/main/java/KickStart/RoundA/A/Solution.java | cea92c028c5aec8d82626d9650460a352064f757 | [] | no_license | wangtengke/leetcode | https://github.com/wangtengke/leetcode | 033c44153b3723500e7c994a0491fe3e23a49111 | 2e7706355239e7d5c6c0b5139a27b2fed40204db | refs/heads/master | 2020-04-10T22:24:15.285000 | 2019-09-26T11:41:10 | 2019-09-26T11:41:10 | 161,323,640 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package KickStart.RoundA.A;
import java.util.Arrays;
import java.util.Scanner;
/**
* @program: leetcode
* @description:
* @author: wangtengke
* @create: 2019-05-26
**/
public class Solution {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int ... | UTF-8 | Java | 1,162 | java | Solution.java | Java | [
{
"context": " @program: leetcode\r\n * @description:\r\n * @author: wangtengke\r\n * @create: 2019-05-26\r\n **/\r\npublic class Solut",
"end": 154,
"score": 0.9725834131240845,
"start": 144,
"tag": "USERNAME",
"value": "wangtengke"
}
] | null | [] | package KickStart.RoundA.A;
import java.util.Arrays;
import java.util.Scanner;
/**
* @program: leetcode
* @description:
* @author: wangtengke
* @create: 2019-05-26
**/
public class Solution {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int ... | 1,162 | 0.472461 | 0.459552 | 41 | 26.341463 | 19.077007 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.682927 | false | false | 1 |
d635aed940108b26759d526cc8888af822327578 | 29,626,684,416,403 | f2ba588110e8d9bbb01b6115e26b2a5b13988264 | /David/LeetCode/LinkedLists/M19-RemoveNthNodeFromEndOfList.java | 7bb6959ee9eea01e29100cf75588d966c172c26f | [] | no_license | MSayedz/LeetCode-CTCI | https://github.com/MSayedz/LeetCode-CTCI | 68087f0549882267b4aa9488730a45824ba62ebb | 0627beb217a9373621e49741fabd47cae0df5655 | refs/heads/master | 2020-12-27T16:46:22.932000 | 2019-11-23T20:16:37 | 2019-11-23T20:16:37 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
Difficulty: Medium
Problem Link: https://leetcode.com/problems/remove-nth-node-from-end-of-list/
Description:
Given a linked list, remove the n-th node from the end of list and return its head.
Solution:
Have two pointers start at a dummy head, so that you will be one node before the actual node you
want to delete... | UTF-8 | Java | 1,003 | java | M19-RemoveNthNodeFromEndOfList.java | Java | [] | null | [] | /*
Difficulty: Medium
Problem Link: https://leetcode.com/problems/remove-nth-node-from-end-of-list/
Description:
Given a linked list, remove the n-th node from the end of list and return its head.
Solution:
Have two pointers start at a dummy head, so that you will be one node before the actual node you
want to delete... | 1,003 | 0.700897 | 0.698903 | 37 | 26.108109 | 29.865269 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.486486 | false | false | 1 |
0cde63eeb3e33910b8ebcb065aa5fb67f750d5bf | 8,160,437,904,876 | 0af8b92686a58eb0b64e319b22411432aca7a8f3 | /single-large-project/src/test/java/org/gradle/test/performancenull_140/Testnull_13930.java | ec05d3a4ae576b61c507c09b5cdac4e17984e425 | [] | no_license | gradle/performance-comparisons | https://github.com/gradle/performance-comparisons | b0d38db37c326e0ce271abebdb3c91769b860799 | e53dc7182fafcf9fedf07920cbbea8b40ee4eef4 | refs/heads/master | 2023-08-14T19:24:39.164000 | 2022-11-24T05:18:33 | 2022-11-24T05:18:33 | 80,121,268 | 17 | 15 | null | false | 2022-09-30T08:04:35 | 2017-01-26T14:25:33 | 2022-09-09T14:38:38 | 2022-09-30T08:04:34 | 19,731 | 14 | 13 | 103 | null | false | false | package org.gradle.test.performancenull_140;
import static org.junit.Assert.*;
public class Testnull_13930 {
private final Productionnull_13930 production = new Productionnull_13930("value");
@org.junit.Test
public void test() {
assertEquals(production.getProperty(), "value");
}
} | UTF-8 | Java | 308 | java | Testnull_13930.java | Java | [] | null | [] | package org.gradle.test.performancenull_140;
import static org.junit.Assert.*;
public class Testnull_13930 {
private final Productionnull_13930 production = new Productionnull_13930("value");
@org.junit.Test
public void test() {
assertEquals(production.getProperty(), "value");
}
} | 308 | 0.714286 | 0.655844 | 12 | 24.75 | 25.836424 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.416667 | false | false | 1 |
7096300aaf75ec188e2025203aa94da5df02f645 | 6,047,313,974,372 | a94e7edba10cb853af56e59a3e6db06fede72ef3 | /src/main/java/com/skeldoco/app/company/repository/CompanyDAO.java | 1b512dfe2f8ca9d74ff4d70964af6ae6e2dce327 | [] | no_license | oleandroti/skelDoco | https://github.com/oleandroti/skelDoco | 44f32f4ff83d895b6a4a509000991bf71b929e6c | 65b36d97ec52f04090ec303f3e9599cd7155ac1a | refs/heads/master | 2019-01-27T09:51:28.381000 | 2018-10-02T16:38:22 | 2018-10-02T16:38:22 | 98,133,904 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.skeldoco.app.company.repository;
import java.util.List;
import org.springframework.stereotype.Repository;
import com.skeldoco.app.company.model.Company;
import com.skeldoco.app.user.model.Users;
/**
* Created by Leandro Ap. Araujo on 7 de fev de 2017.
*/
@Repository
public interface CompanyDAO {
pu... | UTF-8 | Java | 676 | java | CompanyDAO.java | Java | [
{
"context": "skeldoco.app.user.model.Users;\n\n\n/**\n * Created by Leandro Ap. Araujo on 7 de fev de 2017.\n */\n@Repository\npublic inter",
"end": 248,
"score": 0.9998858571052551,
"start": 230,
"tag": "NAME",
"value": "Leandro Ap. Araujo"
}
] | null | [] | package com.skeldoco.app.company.repository;
import java.util.List;
import org.springframework.stereotype.Repository;
import com.skeldoco.app.company.model.Company;
import com.skeldoco.app.user.model.Users;
/**
* Created by <NAME> on 7 de fev de 2017.
*/
@Repository
public interface CompanyDAO {
public Company... | 664 | 0.769231 | 0.761834 | 33 | 19.484848 | 21.391191 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.757576 | false | false | 1 |
d2f9f5ace8072807482c569ab1d6525cdc5c69bc | 4,105,988,794,569 | de0c4ffda7906cccf802da6e094911940aada35e | /app/src/main/java/com/pwsturk/meg/megplayer/Player.java | 7d9af09deb83db89c678d7f9785589ea7f2d50f1 | [] | no_license | mehmetgelmedi/player | https://github.com/mehmetgelmedi/player | f295c460b647037297e24800529af5cc7a9deb75 | 7b1d88bdd5aeb1c4e5980588b6880aff6915e39e | refs/heads/master | 2021-01-18T17:44:14.345000 | 2017-07-25T19:20:27 | 2017-07-25T19:20:27 | 54,123,344 | 4 | 1 | null | false | 2017-06-21T17:02:17 | 2016-03-17T14:14:05 | 2017-04-16T18:12:41 | 2017-06-21T17:02:16 | 1,917 | 2 | 1 | 2 | Java | null | null | package com.pwsturk.meg.megplayer;
import android.animation.ValueAnimator;
import android.content.Context;
import android.content.Intent;
import android.media.MediaPlayer;
import android.net.Uri;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.Vie... | UTF-8 | Java | 6,604 | java | Player.java | Java | [] | null | [] | package com.pwsturk.meg.megplayer;
import android.animation.ValueAnimator;
import android.content.Context;
import android.content.Intent;
import android.media.MediaPlayer;
import android.net.Uri;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.Vie... | 6,604 | 0.573271 | 0.567051 | 204 | 31.308823 | 22.37816 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.647059 | false | false | 1 |
27ad1056d98d44c85839fc568beaf95d6f4cd60a | 18,365,280,210,836 | f59170a9ad8aa3de049f3636193bae7ca7410ed6 | /src/blockworld/Unstack.java | 5488d8522b1307e85752388da07552fcf24e4aa3 | [] | no_license | aclapes/parblockworld | https://github.com/aclapes/parblockworld | 21666ba6cee76502cd653598d152611840285cd2 | d7dfed4635e2968eddcdaefe42fe62017dcfb209 | refs/heads/master | 2020-05-18T11:06:35.729000 | 2012-12-27T09:56:26 | 2012-12-27T09:56:26 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package blockworld;
import goalstackplanner.*;
/**
*
* @author aclapes
*/
public class Unstack extends Operator
{
private On preOn;
private Free preFree;
private FreeArm preFreeArm;
privat... | UTF-8 | Java | 3,486 | java | Unstack.java | Java | [
{
"context": "d;\n\nimport goalstackplanner.*;\n\n\n/**\n *\n * @author aclapes\n */\npublic class Unstack extends Operator \n{ \n",
"end": 175,
"score": 0.9992882013320923,
"start": 168,
"tag": "USERNAME",
"value": "aclapes"
}
] | null | [] | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package blockworld;
import goalstackplanner.*;
/**
*
* @author aclapes
*/
public class Unstack extends Operator
{
private On preOn;
private Free preFree;
private FreeArm preFreeArm;
privat... | 3,486 | 0.470166 | 0.459266 | 161 | 20.652174 | 15.276443 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.496894 | false | false | 1 |
660d9e26dda7fbf4a092952dc48bb18aab729582 | 22,960,895,223,095 | a37faac536120f7453efc6e70b34a7f469280c2d | /helloworld/Demo01DataType.java | 4952749e0154f8903640b92d9766d827000dd690 | [] | no_license | good-and-more/java-study | https://github.com/good-and-more/java-study | 967e5a8abf2a5a0364f42a50a4c2473c1e430c2f | bcd3076c21e1cfd79fb58ed0eb93f903bef455af | refs/heads/master | 2023-01-21T09:52:32.185000 | 2020-11-17T03:15:13 | 2020-11-17T03:15:13 | 289,037,638 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
当数据类型不一样时,将会发生数据类型转换
自动类型转换(隐式)
1.特点:代码不需要特殊处理,自动完成
2.规则:数据范围从小到大
*/
public class Demo01DataType {
public static void main(String[] args) {
System.out.println(1024);//这是一个整数,默认时int类型
System.out.println(3.14);//这是一个浮点数,默认double
//long num1 = 100L;
//左边规定long类型,右边不加L默认int... | UTF-8 | Java | 1,089 | java | Demo01DataType.java | Java | [] | null | [] | /*
当数据类型不一样时,将会发生数据类型转换
自动类型转换(隐式)
1.特点:代码不需要特殊处理,自动完成
2.规则:数据范围从小到大
*/
public class Demo01DataType {
public static void main(String[] args) {
System.out.println(1024);//这是一个整数,默认时int类型
System.out.println(3.14);//这是一个浮点数,默认double
//long num1 = 100L;
//左边规定long类型,右边不加L默认int... | 1,089 | 0.629787 | 0.578723 | 28 | 24.178572 | 18.281633 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.321429 | false | false | 1 |
e0b459ce61342d2fa6846bb65bb3768f6687f4aa | 22,136,261,485,345 | 667c5a714648d80fa3272287c82d655839e09fd0 | /dubbo-provider/dubbo-provider-core/src/main/java/com/jay/dubbo/provider/core/ApplicationMain.java | fa74b336651aafc4135e86a476bec3293f7398b9 | [
"Apache-2.0"
] | permissive | jxpeople/dubbo-demo | https://github.com/jxpeople/dubbo-demo | e6e41c8f8d949cdddafeb3142d9ced5e26c0f317 | b856b67e37730231c050f772f7a92c72d2b4876b | refs/heads/master | 2020-03-31T16:20:36.311000 | 2020-01-17T15:06:51 | 2020-01-17T15:06:51 | 152,371,156 | 0 | 0 | Apache-2.0 | true | 2018-10-10T06:03:05 | 2018-10-10T06:03:04 | 2018-05-29T02:29:50 | 2018-05-12T14:12:11 | 10 | 0 | 0 | 0 | null | false | null | package com.jay.dubbo.provider.core;
import com.github.jay.merge.EnableMerge;
import org.apache.dubbo.config.spring.context.annotation.DubboComponentScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigur... | UTF-8 | Java | 887 | java | ApplicationMain.java | Java | [] | null | [] | package com.jay.dubbo.provider.core;
import com.github.jay.merge.EnableMerge;
import org.apache.dubbo.config.spring.context.annotation.DubboComponentScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigur... | 887 | 0.808343 | 0.808343 | 21 | 41.238094 | 36.263462 | 128 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.52381 | false | false | 1 |
c820bd5fca7118e18b5e7ede720084d81487f85d | 22,136,261,484,908 | adcc72be3952400c4f8d7dadfc44363dd4e24f60 | /src/main/java/de/dicecraft/dicemobmanager/entity/goals/MobGoalManager.java | 7916064c24cff593d6f58ad1a4c0f8a848054c65 | [] | no_license | lukeboxwalker/bukkit-mobmanager | https://github.com/lukeboxwalker/bukkit-mobmanager | 806bfd2a29d6396585c6d4672ef723b3fd1aab0e | 5200954ccff37162d5d1930b5a6962ca168f93b8 | refs/heads/master | 2023-02-14T04:48:00.209000 | 2020-12-21T16:34:45 | 2020-12-21T16:34:45 | 326,187,964 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package de.dicecraft.dicemobmanager.entity.goals;
import com.destroystokyo.paper.entity.ai.GoalKey;
import de.dicecraft.dicemobmanager.utils.PriorityEntry;
import org.bukkit.entity.Mob;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.L... | UTF-8 | Java | 2,187 | java | MobGoalManager.java | Java | [] | null | [] | package de.dicecraft.dicemobmanager.entity.goals;
import com.destroystokyo.paper.entity.ai.GoalKey;
import de.dicecraft.dicemobmanager.utils.PriorityEntry;
import org.bukkit.entity.Mob;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.L... | 2,187 | 0.691358 | 0.691358 | 74 | 28.554054 | 27.942093 | 90 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.364865 | false | false | 1 |
d57d06f8c4c46711b345be624b858f378b24db0b | 4,947,802,375,394 | 07c34eb84c7e0c3e50e9126bb9ae0cca911fb983 | /src/main/main.java | 9b03ce89268c2c6793ecc3bab79a8d909b9a2687 | [] | no_license | cziuwatis/TollBooth_OOP | https://github.com/cziuwatis/TollBooth_OOP | 37ab387f931b50b055b48db6166fb6d474473faf | d6ca729ef98e84ec1be0617db2b685c187bc47e6 | refs/heads/main | 2023-01-06T05:26:13.436000 | 2020-10-26T21:57:14 | 2020-10-26T21:57:14 | 307,513,786 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package main;
/**
*
* @author Andrej Gorochov D00218937
*/
public class main
{
public static void main(String[] args)
{
TollEventProcessor app = new TollEventProcessor();
app.run();
}
}
| UTF-8 | Java | 219 | java | main.java | Java | [
{
"context": "package main;\n\n/**\n *\n * @author Andrej Gorochov D00218937\n */\npublic class main\n{\n\n public sta",
"end": 48,
"score": 0.9998970031738281,
"start": 33,
"tag": "NAME",
"value": "Andrej Gorochov"
},
{
"context": "package main;\n\n/**\n *\n * @author Andrej Goro... | null | [] | package main;
/**
*
* @author <NAME> D00218937
*/
public class main
{
public static void main(String[] args)
{
TollEventProcessor app = new TollEventProcessor();
app.run();
}
}
| 210 | 0.607306 | 0.570776 | 15 | 13.6 | 17.331282 | 58 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.2 | false | false | 1 |
016de034386d65c7978c569a3a98e9df022f99c5 | 11,390,253,316,276 | 78da4195c1d6d6e3e76b6b4980b3274db39896d1 | /ems-mybatis/src/main/java/com/chooshine/ems/mybatis/auto/entity/PPowerMp.java | 12ef4a9e596e95c8b2662f04931912d46303f09f | [
"Apache-2.0"
] | permissive | chooshine/ems-repository | https://github.com/chooshine/ems-repository | 6ee5e7143ffa91e2ea40d05b880ad0445fc5162e | 3b30e77a1dd37cade119bcd86d382f8eea91fe19 | refs/heads/master | 2016-06-07T13:05:22.958000 | 2016-03-28T03:08:48 | 2016-03-28T03:08:48 | 53,924,951 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.chooshine.ems.mybatis.auto.entity;
import java.io.Serializable;
import java.math.BigDecimal;
public class PPowerMp extends PPowerMpKey implements Serializable {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column ent_p_power_mp.ACT_POWER
... | UTF-8 | Java | 1,376 | java | PPowerMp.java | Java | [] | null | [] | package com.chooshine.ems.mybatis.auto.entity;
import java.io.Serializable;
import java.math.BigDecimal;
public class PPowerMp extends PPowerMpKey implements Serializable {
/**
* This field was generated by MyBatis Generator.
* This field corresponds to the database column ent_p_power_mp.ACT_POWER
... | 1,376 | 0.66061 | 0.625 | 46 | 28.934782 | 25.944256 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.152174 | false | false | 1 |
2acd5c3971b75bc5fad88bde3b47cdea4f3d9bd5 | 12,197,707,121,399 | 6b74c649e3437a2d8079c8f328f875e0741175e4 | /gax/src/main/java/com/google/api/gax/core/GoogleCredentialsProvider.java | ddba0331dd238ab874607a6b015bece08a32bc81 | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | arithmetic1728/gax-java | https://github.com/arithmetic1728/gax-java | 9ecfa73dd15609372578a20377319f9f737d8e98 | 975b470d4fb46b471341ee4522b3158dcd9fc676 | refs/heads/master | 2023-05-19T13:28:27.276000 | 2021-06-04T18:39:04 | 2021-06-04T18:39:04 | 373,946,203 | 0 | 0 | BSD-3-Clause | true | 2021-06-04T19:54:05 | 2021-06-04T19:54:04 | 2021-06-04T18:39:08 | 2021-06-04T18:39:05 | 17,007 | 0 | 0 | 0 | null | false | false | /*
* Copyright 2016 Google LLC
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following discl... | UTF-8 | Java | 5,786 | java | GoogleCredentialsProvider.java | Java | [] | null | [] | /*
* Copyright 2016 Google LLC
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following discl... | 5,786 | 0.749914 | 0.748012 | 145 | 38.90345 | 30.626633 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.42069 | false | false | 1 |
be7689333e4ffd9a6f7f04b50cdb4c1193c5ea4b | 21,603,685,559,384 | faf41378200bb7d61020b657d4ee833c20c8a40b | /kx8v3-auth/src/main/java/com/dayang/commons/enums/AuthType.java | 2ed4af7fdd174bb8e2850049fab70d8b01af69d9 | [] | no_license | liujianyu4303/dyproject | https://github.com/liujianyu4303/dyproject | fc5ba69cd5997db998cd593d3983e4893ae7fad9 | b34bb53758d3493b248559f341f2486645b87c98 | refs/heads/master | 2016-08-31T16:01:46.185000 | 2016-07-28T06:37:37 | 2016-07-28T06:37:37 | 41,154,209 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dayang.commons.enums;
/**
* 类描述:权限标识枚举
* <pre>
* -------------History------------------
* DATE AUTHOR VERSION DESCRIPTION
* 2015年05月18日 刘建宇 V01.00.001 新增内容
* </pre>
*
* @author <a href="mailto:liujy@dayanginfo.com">刘建宇</a>
*/
public enum AuthTy... | UTF-8 | Java | 780 | java | AuthType.java | Java | [
{
"context": "ION DESCRIPTION\n * 2015年05月18日 刘建宇 V01.00.001\t\t 新增内容\n * </pre>\n *\n * @author ",
"end": 202,
"score": 0.9997192621231079,
"start": 199,
"tag": "NAME",
"value": "刘建宇"
},
{
"context": "\t\t 新增内容\n * </pre>\n *\n * @author <a href=\"mailto:... | null | [] | package com.dayang.commons.enums;
/**
* 类描述:权限标识枚举
* <pre>
* -------------History------------------
* DATE AUTHOR VERSION DESCRIPTION
* 2015年05月18日 刘建宇 V01.00.001 新增内容
* </pre>
*
* @author <a href="mailto:<EMAIL>">刘建宇</a>
*/
public enum AuthType {
MENU... | 767 | 0.533426 | 0.509749 | 30 | 22.933332 | 17.966513 | 67 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 1 |
b412e4e0934065d3cdc2457eb2d16aab2d4d6749 | 21,603,685,559,175 | 9c6c5536e75b3c445b690df32c07b47b3e654723 | /src/java/Controllers/AdminServlet.java | 2c8251753212f51fb675503845d6117df5c08f31 | [] | no_license | Leodanperez/SYS_MAPEO_V0.1 | https://github.com/Leodanperez/SYS_MAPEO_V0.1 | 568196b5da967d8bdff19b3afa6856b07ec670eb | c808e901e3bd2be747dd75bda8319fd8e8276a00 | refs/heads/Leodanperez | 2020-06-01T14:59:35.937000 | 2019-06-09T14:31:47 | 2019-06-09T14:31:47 | 190,824,594 | 0 | 0 | null | false | 2019-11-02T18:17:41 | 2019-06-07T23:43:43 | 2019-06-09T14:32:15 | 2019-11-02T18:17:40 | 85,586 | 0 | 0 | 1 | JavaScript | false | false | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Controllers;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.RequestDispatcher;
import ... | UTF-8 | Java | 3,224 | java | AdminServlet.java | Java | [
{
"context": "x.servlet.http.HttpSession;\r\n\r\n/**\r\n *\r\n * @author IVAN\r\n */\r\n@WebServlet(name = \"AdminServlet\", urlPattern",
"end": 599,
"score": 0.7443510890007019,
"start": 595,
"tag": "NAME",
"value": "IVAN"
}
] | 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 Controllers;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.RequestDispatcher;
import ... | 3,224 | 0.605402 | 0.605402 | 93 | 32.634407 | 26.121628 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.494624 | false | false | 1 |
8819f7cfc15402e0f3cbc227eee7886742ca5067 | 33,466,385,197,917 | 42640398f9ffdc46e15e05f3f8c7a8d4e18501d5 | /ananops-provider/ananops-provider-spc/src/main/java/com/ananops/provider/model/domain/SpcEngineerCertificate.java | 50c03c144f053f4a14b1f9c5f0e4907be50735fd | [] | no_license | jieke360/ananops-master | https://github.com/jieke360/ananops-master | 77ce7f60265b21291bf4182e6753d3b43d4a0e2f | 6aa7f06785638da4c78a56a5235d6db09cc792e9 | refs/heads/master | 2022-04-23T20:42:46.202000 | 2020-04-27T09:36:52 | 2020-04-27T09:36:52 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ananops.provider.model.domain;
import lombok.Data;
import javax.persistence.Column;
import javax.persistence.Table;
import java.io.Serializable;
/**
* 维修维保工程师与资质证书关系
*/
@Data
@Table(name = "an_spc_engineer_certificate")
public class SpcEngineerCertificate implements Serializable {
private static f... | UTF-8 | Java | 608 | java | SpcEngineerCertificate.java | Java | [] | null | [] | package com.ananops.provider.model.domain;
import lombok.Data;
import javax.persistence.Column;
import javax.persistence.Table;
import java.io.Serializable;
/**
* 维修维保工程师与资质证书关系
*/
@Data
@Table(name = "an_spc_engineer_certificate")
public class SpcEngineerCertificate implements Serializable {
private static f... | 608 | 0.696113 | 0.662544 | 29 | 18.551723 | 19.103323 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.275862 | false | false | 1 |
a8b24c7e821b98aee0269b2c73b7afda9e09b7d1 | 10,239,202,098,100 | a24c437e2742920bd3544d7239fc0c5c91472b99 | /android-push-notifications-demo/PushNotify/app/src/main/java/test/pushnotify/rest/services/UserServiceImpl.java | 54cb86dbe74e9a22e9e4173082709c81907df44a | [] | no_license | happysharma/rv-workspace | https://github.com/happysharma/rv-workspace | 41d6acb140e9188577c6eb6daf172ce5ed5e0928 | c59fa5cdd2ffa62b612316f90c4b58049164ee6a | refs/heads/master | 2017-10-31T19:47:03.146000 | 2016-08-02T11:57:00 | 2016-08-02T11:57:00 | 63,130,807 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package test.pushnotify.rest.services;
/**
* Created by user on 30/7/16.
*/
public class UserServiceImpl implements UserService {
}
| UTF-8 | Java | 135 | java | UserServiceImpl.java | Java | [
{
"context": " test.pushnotify.rest.services;\n\n/**\n * Created by user on 30/7/16.\n */\npublic class UserServiceImpl impl",
"end": 62,
"score": 0.9758723974227905,
"start": 58,
"tag": "USERNAME",
"value": "user"
}
] | null | [] | package test.pushnotify.rest.services;
/**
* Created by user on 30/7/16.
*/
public class UserServiceImpl implements UserService {
}
| 135 | 0.740741 | 0.703704 | 7 | 18.285715 | 20.111931 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.142857 | false | false | 1 |
fac8c58141647ddaaa4303c43b5f04d1964dd171 | 8,847,632,658,206 | 1db424b053dddd34d1613eeef88851b2540a3015 | /src/com/w/ttms/service/serviceImpl/SaleServiceImpl.java | 141fc41d889704b739b2871a31df98b929790d20 | [] | no_license | ANGleoKing/TTMS | https://github.com/ANGleoKing/TTMS | 60492583fd131931bbf82e1a94ea454118465720 | 9e0ad33fb796359d4418dcb9d4186425d37fc62f | refs/heads/master | 2020-05-30T04:34:44.005000 | 2019-06-13T08:07:48 | 2019-06-13T08:07:48 | 189,540,980 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.w.ttms.service.serviceImpl;
import com.w.ttms.dao.daoImpl.saleDaoImpl;
import com.w.ttms.domian.Sale;
import com.w.ttms.domian.SaleItem;
import com.w.ttms.service.SaleItemService;
import com.w.ttms.service.SaleService;
import java.sql.SQLException;
import java.util.List;
/**
* ClassName: SaleServiceImpl... | UTF-8 | Java | 1,524 | java | SaleServiceImpl.java | Java | [
{
"context": "e: SaleServiceImpl\n * Desrciption: TODO\n * Author: ANGLE0\n * CreateDate: 2019/6/6 0:34\n * Version: V1.0\n **",
"end": 359,
"score": 0.9996054768562317,
"start": 353,
"tag": "USERNAME",
"value": "ANGLE0"
}
] | null | [] | package com.w.ttms.service.serviceImpl;
import com.w.ttms.dao.daoImpl.saleDaoImpl;
import com.w.ttms.domian.Sale;
import com.w.ttms.domian.SaleItem;
import com.w.ttms.service.SaleItemService;
import com.w.ttms.service.SaleService;
import java.sql.SQLException;
import java.util.List;
/**
* ClassName: SaleServiceImpl... | 1,524 | 0.681102 | 0.666667 | 58 | 25.275862 | 25.107214 | 107 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.431034 | false | false | 1 |
b45747b36fb8454e539e849dbafcb4fafd6f8a0b | 7,292,854,514,183 | c2681ad789ed8b2181aa62aea861b1d7992cbf2b | /addressbook-web-tests/src/test/java/ru/stqa/pft/addressbook/model/ContactData.java | d48e40b5e2fbcd40fbe0b8e24766b86c6439c151 | [
"Apache-2.0"
] | permissive | vitvitvit/java_learning | https://github.com/vitvitvit/java_learning | 2dac051c4733d09b086cc1865696cada9125c618 | ddc0721cdda17120fd9e13c7bdb63f8ee07d6efe | refs/heads/master | 2021-01-21T13:03:13.094000 | 2016-04-28T20:09:15 | 2016-04-28T20:09:15 | 52,726,340 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ru.stqa.pft.addressbook.model;
import com.google.gson.annotations.Expose;
import org.hibernate.annotations.Type;
import javax.persistence.*;
import java.io.File;
@Entity
@Table(name = "addressbook")
public class ContactData {
@Id
@Column(name = "id")
private int id = Integer.MAX_VALUE;
@Expose
@C... | UTF-8 | Java | 5,629 | java | ContactData.java | Java | [] | null | [] | package ru.stqa.pft.addressbook.model;
import com.google.gson.annotations.Expose;
import org.hibernate.annotations.Type;
import javax.persistence.*;
import java.io.File;
@Entity
@Table(name = "addressbook")
public class ContactData {
@Id
@Column(name = "id")
private int id = Integer.MAX_VALUE;
@Expose
@C... | 5,629 | 0.68076 | 0.676852 | 276 | 19.387682 | 19.664534 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 1 |
d5b74e85f66e57c608c16346a07f324ba5ff079b | 18,305,150,662,394 | 1fc76fd8bd8e327d630447a52f2ca6dfbebf4835 | /admin_dashboard/src/main/java/com/example/study/interfaces/CrudInterface.java | 52639a7a5799aaf49b79baa37780870bf829651f | [] | no_license | bluemiv/spring_boot_study | https://github.com/bluemiv/spring_boot_study | d17651bd77ac9a36a1c3afaee398224eeb8687d9 | 7371f2d03acbffef4badf4cefbcd04b051a3c672 | refs/heads/main | 2023-01-18T23:05:44.643000 | 2020-11-17T13:10:40 | 2020-11-17T13:10:40 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.study.interfaces;
import com.example.study.model.network.Header;
public interface CrudInterface<Request, Response> {
public Header<Response> create(Header<Request> request);
public Header<Response> read(Long id);
public Header<Response> update(Header<Request> request);
public Header de... | UTF-8 | Java | 337 | java | CrudInterface.java | Java | [] | null | [] | package com.example.study.interfaces;
import com.example.study.model.network.Header;
public interface CrudInterface<Request, Response> {
public Header<Response> create(Header<Request> request);
public Header<Response> read(Long id);
public Header<Response> update(Header<Request> request);
public Header de... | 337 | 0.771513 | 0.771513 | 14 | 23.071428 | 23.885035 | 58 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 1 |
bd5f3a36978f3976ee713e24d6f0c43e8637350a | 7,464,653,206,567 | f62005a6c7624f9aa05a5523f0e5d5978080317e | /src/npp/spec/dao/AuthorDao.java | d69e7c3b7468633738ad2fd4583ef60793632617 | [] | no_license | zhengzhi530/newspaper-management-system | https://github.com/zhengzhi530/newspaper-management-system | 80894763c2e984db702bcf44d551801fba7429a0 | 25372e370b19d35b5c32e64c18691171ab872561 | refs/heads/master | 2021-05-16T09:29:59.191000 | 2015-07-21T09:36:38 | 2015-07-21T09:36:56 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package npp.spec.dao;
import java.io.IOException;
import java.util.List;
import npp.condition.DynamicQuery;
import npp.dto.AuthorDto;
public interface AuthorDao {
public AuthorDto findBySeq(Transaction transaction, int seq) throws IOException;
public List<AuthorDto> getAllList(Transaction transacti... | UTF-8 | Java | 703 | java | AuthorDao.java | Java | [] | null | [] | package npp.spec.dao;
import java.io.IOException;
import java.util.List;
import npp.condition.DynamicQuery;
import npp.dto.AuthorDto;
public interface AuthorDao {
public AuthorDto findBySeq(Transaction transaction, int seq) throws IOException;
public List<AuthorDto> getAllList(Transaction transacti... | 703 | 0.786629 | 0.786629 | 25 | 26.120001 | 31.635828 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.04 | false | false | 1 |
1846a7e3fe8ffd6daa95c2e8eef1513b5d613f61 | 22,660,247,478,852 | c40009bfb54fa904dc06cee08204b334eb98e22b | /src/practise2020/_10_anagramMappings.java | 4e1aa8663179c4a773164dbd21b0a2d053e1c598 | [] | no_license | GlennLuo1992/LeetCode-Learning | https://github.com/GlennLuo1992/LeetCode-Learning | 64eddebfac45ff26aa7b8ecd41c1bf39e32a53c4 | 551b1474c88e61da0eedd0a097d52fd6510811e5 | refs/heads/master | 2021-07-09T16:00:16.032000 | 2020-08-05T07:41:49 | 2020-08-05T07:41:49 | 166,781,059 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package practise2020;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.Map;
public class _10_anagramMappings {
public static int[] anagramMappings(int[] A, int[] B) {
Map<Integer,Integer> map = new HashMap<>();
for (int i = 0; i < A.length; i++)... | UTF-8 | Java | 789 | java | _10_anagramMappings.java | Java | [] | null | [] | package practise2020;
import java.util.HashMap;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.Map;
public class _10_anagramMappings {
public static int[] anagramMappings(int[] A, int[] B) {
Map<Integer,Integer> map = new HashMap<>();
for (int i = 0; i < A.length; i++)... | 789 | 0.520913 | 0.484157 | 29 | 26.206896 | 17.253445 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.137931 | false | false | 1 |
8fd2d611fca6cf3ca894ac9db4271c75c2278047 | 12,283,606,521,113 | 431e5d740282b2030e42bb8ab2b46df78f3de660 | /processor/src/test/resources/bad_input/com/example/inject/MultipleConstructorsScopedModel.java | c575a9f5575bffc19d492abb2dc79c2fb91601ce | [
"Apache-2.0"
] | permissive | xushjie1987/arez | https://github.com/xushjie1987/arez | 1f38775f4bbb57b4d51ef2e8b9c17d56d0f1f777 | b79acc1078032c3e996488a7f790c8b1456db3cc | refs/heads/master | 2020-03-23T07:03:59.888000 | 2018-07-17T04:39:50 | 2018-07-17T04:39:50 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.inject;
import arez.annotations.Action;
import arez.annotations.ArezComponent;
import javax.inject.Singleton;
@Singleton
@ArezComponent
public abstract class MultipleConstructorsScopedModel
{
public MultipleConstructorsScopedModel()
{
}
public MultipleConstructorsScopedModel( int i )
{
... | UTF-8 | Java | 363 | java | MultipleConstructorsScopedModel.java | Java | [] | null | [] | package com.example.inject;
import arez.annotations.Action;
import arez.annotations.ArezComponent;
import javax.inject.Singleton;
@Singleton
@ArezComponent
public abstract class MultipleConstructorsScopedModel
{
public MultipleConstructorsScopedModel()
{
}
public MultipleConstructorsScopedModel( int i )
{
... | 363 | 0.76584 | 0.76584 | 23 | 14.782609 | 17.072624 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.173913 | false | false | 1 |
647c8dcd22345f15c8031fbe3520e9d8c6fc4689 | 33,732,673,204,945 | cfa10c2aba4483f57083141d0b5c760e7e5ef7f8 | /src/main/java/com/fng/dto/ResultDTO.java | 2086146f001487a710ba8a9e7d70cafa9823b4af | [] | no_license | UESTC-FNG/community | https://github.com/UESTC-FNG/community | 7cedf8c5718fc97eb2ad6195b8fb2f9d56610ecc | 333ea2937ffb7f661923dfc08808ab21a58deda6 | refs/heads/master | 2021-01-04T20:11:04.227000 | 2020-02-23T13:55:55 | 2020-02-23T13:55:55 | 240,743,399 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.fng.dto;
import com.fng.exception.CustomizeException;
import com.fng.exception.ICustomizeErrorCode;
import lombok.Data;
import javax.xml.transform.Result;
import java.util.List;
@Data
public class ResultDTO<T> {
private Integer code;
private String message;
private T data;
public static ... | UTF-8 | Java | 1,228 | java | ResultDTO.java | Java | [] | null | [] | package com.fng.dto;
import com.fng.exception.CustomizeException;
import com.fng.exception.ICustomizeErrorCode;
import lombok.Data;
import javax.xml.transform.Result;
import java.util.List;
@Data
public class ResultDTO<T> {
private Integer code;
private String message;
private T data;
public static ... | 1,228 | 0.685246 | 0.680328 | 45 | 26.111111 | 21.694057 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6 | false | false | 1 |
c531b791207f057859af5f3220928d27aad0c97c | 8,881,992,400,362 | 7c3b734bcc2d515eb24a62dfe4ef509393ef67b7 | /0428/TabTest.java | 92fc65968ecb193b8abe7ca6c74f1257905084db | [] | no_license | zhenying2/java-study | https://github.com/zhenying2/java-study | 1a2af0375c3f3b79d2eb22ff41a0da6aa03a594b | 05d6b0dc688317d17ee8c206ccdefd8a531d1021 | refs/heads/master | 2023-05-01T05:27:55.613000 | 2021-05-16T07:08:09 | 2021-05-16T07:08:09 | 356,818,149 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class TabTest implements ItemListener, ActionListener
{
JFrame jf;
JTabbedPane tabpane;
JLabel label, label1, label2,text,doglabel,doglabel1;
JPanel one, two, go, back,three,four, checkpanel,sizePanel,orderPanel, resultPanel;
ImageIcon logo, dog;
J... | UHC | Java | 4,655 | java | TabTest.java | Java | [
{
"context": "(true);\n\t\t\t\ttwo.add(go);\n\t\t\t}\n\t\t});\n\n\t\t//three판넬에는 과일\n\t\tthree.setLayout(new GridLayout(0, 4));\n\t\t// 체크 ",
"end": 1881,
"score": 0.6703599095344543,
"start": 1879,
"tag": "NAME",
"value": "과일"
}
] | null | [] | import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
class TabTest implements ItemListener, ActionListener
{
JFrame jf;
JTabbedPane tabpane;
JLabel label, label1, label2,text,doglabel,doglabel1;
JPanel one, two, go, back,three,four, checkpanel,sizePanel,orderPanel, resultPanel;
ImageIcon logo, dog;
J... | 4,655 | 0.680056 | 0.669608 | 164 | 25.262196 | 16.745899 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.75 | false | false | 1 |
285791ef945379a86c42e8a5adae1d87750e4f93 | 26,207,890,440,956 | f2d902dd30c7ee8a3e20a32b101f8a2d59132d18 | /Code.java | e51b90077b2217cea8de9b507203314be61957f1 | [] | no_license | Ruslan1810/AutoCorrect | https://github.com/Ruslan1810/AutoCorrect | b3e3c14569752abf48694085a5190ac3964eb3d0 | d5f8d050b789f9de6710b320300eb3b8da0ed3f4 | refs/heads/master | 2020-09-29T18:25:52.173000 | 2019-12-24T11:31:17 | 2019-12-24T11:31:17 | 227,085,071 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class AutoCorrect {
public static void main(String[] args) {
Dictionary dict = new Dictionary();
Pair b = dict.verification("демократ");
System.out.println(b.word);
}
}
class Dictionary {
String[] ar;
//подсчет уровня разности строк
int distance(String str1, Str... | UTF-8 | Java | 1,731 | java | Code.java | Java | [
{
"context": ") {\n ar = new String[5];\n ar[0] = \"демократия\";\n ar[1] = \"коммунизм\";\n ar[2] = \"о",
"end": 1413,
"score": 0.584778904914856,
"start": 1404,
"tag": "NAME",
"value": "емократия"
}
] | null | [] | public class AutoCorrect {
public static void main(String[] args) {
Dictionary dict = new Dictionary();
Pair b = dict.verification("демократ");
System.out.println(b.word);
}
}
class Dictionary {
String[] ar;
//подсчет уровня разности строк
int distance(String str1, Str... | 1,731 | 0.490221 | 0.475079 | 69 | 21.971014 | 19.454124 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.507246 | false | false | 1 |
519f19492b577c3f2fc5c497739ce4d7f2628d24 | 2,843,268,398,400 | 671abc5bb50507c4755dc67eafc76af9566bf582 | /src/prototyping/Launcher.java | 21ec9d4f4b52db1ef542e98ecf01b739868fc514 | [] | no_license | codersteaparty/TheBeast | https://github.com/codersteaparty/TheBeast | f0ccd541a70e6a45a652468239709a456f0dd4dc | f0c74fdcfeedbb4a9928cb4b8fe6581dbca38552 | refs/heads/master | 2021-09-19T05:27:52.765000 | 2018-07-24T00:25:23 | 2018-07-24T00:25:23 | 111,868,657 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package prototyping;
import org.newdawn.slick.AppGameContainer;
import org.newdawn.slick.GameContainer;
import org.newdawn.slick.SlickException;
import org.newdawn.slick.state.StateBasedGame;
import core.MyWorld;
import logic.AgentOctavian;
import logic.AgentSasha;
public class Launcher extends StateBasedGame {
... | WINDOWS-1251 | Java | 1,109 | java | Launcher.java | Java | [] | null | [] | package prototyping;
import org.newdawn.slick.AppGameContainer;
import org.newdawn.slick.GameContainer;
import org.newdawn.slick.SlickException;
import org.newdawn.slick.state.StateBasedGame;
import core.MyWorld;
import logic.AgentOctavian;
import logic.AgentSasha;
public class Launcher extends StateBasedGame {
... | 1,109 | 0.763237 | 0.741259 | 38 | 25.342106 | 24.373493 | 87 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.473684 | false | false | 1 |
47fcae30a77b5046ae5ad682e7824acd95c8db5a | 32,358,283,656,435 | 0f147d9a59587a0b539473aa8d32049ef3a50bfa | /SpringBoot/BulletinBoard/src/main/java/com/example/demo/service/MessageService.java | 3737f068c4b922dda69f5ce86b9a8485e078b87b | [] | no_license | dejitaroooooo/test | https://github.com/dejitaroooooo/test | c95b8b90c0582aff2f9edd42361ade3db1483c70 | d31d6b2d1e5dc576e28dca7c18e30f4162e0e983 | refs/heads/master | 2020-03-31T16:24:35.862000 | 2019-01-03T10:28:13 | 2019-01-03T10:28:13 | 152,374,453 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.demo.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.example.demo.dao.MessageDao;
import com.example.demo.entity.Message;
@Ser... | UTF-8 | Java | 613 | java | MessageService.java | Java | [] | null | [] | package com.example.demo.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.example.demo.dao.MessageDao;
import com.example.demo.entity.Message;
@Ser... | 613 | 0.80261 | 0.80261 | 26 | 22.576923 | 22.653193 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.923077 | false | false | 1 |
226e3302f044daaab11fc7659676d20f8d840bb9 | 9,491,877,726,141 | cbfb59636707b74c9049245d28f084019bbce5d6 | /modules/ogc/net.opengis.wcs/src/net/opengis/wcs20/RequestBaseType.java | 4d0d39c90a62eb17067fcdb269dd34fd208d92f0 | [] | no_license | deadpassive/geotools | https://github.com/deadpassive/geotools | 9f2d77e9317fc0aad857f5a010095b614d5b85da | ef889df17a4e2ca7af573f877b834a305df5c17d | refs/heads/master | 2021-01-18T11:09:21.154000 | 2012-11-26T14:19:30 | 2012-11-26T14:19:30 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
*/
package net.opengis.wcs20;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Request Base Type</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* XML encoded WCS operation request base, for all operations except GetCapabilit... | UTF-8 | Java | 5,217 | java | RequestBaseType.java | Java | [] | null | [] | /**
*/
package net.opengis.wcs20;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Request Base Type</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* XML encoded WCS operation request base, for all operations except GetCapabilit... | 5,217 | 0.622005 | 0.614338 | 137 | 37.080292 | 39.347054 | 304 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.109489 | false | false | 1 |
9b7987860044df08d77e5d43e01675a50d787061 | 9,491,877,728,378 | 790e6926d96e6cc5c244ce956efc7ea515467a5a | /Aran/app/src/main/java/com/hackathon/aran2/Login/UserInfoActivity.java | e85bbcacf0303a3197f5249000c396e93a04b8d7 | [] | no_license | YeonJeongLee00/Aran | https://github.com/YeonJeongLee00/Aran | 6656334b93f1bec3def584ba02ce77c5d200cf31 | b075f107d4e3f9792b01e5f7c2e5a3ae9dcc6219 | refs/heads/main | 2023-05-02T16:01:15.169000 | 2021-05-25T10:39:53 | 2021-05-25T10:39:53 | 370,625,347 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hackathon.aran2.Login;
import android.app.DatePickerDialog;
import android.app.ProgressDialog;
import android.content.Intent;
import android.graphics.Typeface;
import android.os.Bundle;
import android.util.Log;
import android.view.KeyEvent;
import android.view.View;
import android.view.ViewGroup;
import an... | UTF-8 | Java | 9,230 | java | UserInfoActivity.java | Java | [] | null | [] | package com.hackathon.aran2.Login;
import android.app.DatePickerDialog;
import android.app.ProgressDialog;
import android.content.Intent;
import android.graphics.Typeface;
import android.os.Bundle;
import android.util.Log;
import android.view.KeyEvent;
import android.view.View;
import android.view.ViewGroup;
import an... | 9,230 | 0.58978 | 0.587143 | 269 | 32.832714 | 24.323675 | 107 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.635688 | false | false | 1 |
49c54d8ae3ef250bb99f2b612c88ec476cdc3b10 | 6,571,300,006,809 | 9d6501647db787f7972887e9b361a65712d77684 | /src/CancellableExecutor.java | 41edd7f13ebf297837ef324cc12fdaca96e322de | [
"Apache-2.0"
] | permissive | ivanr/poc-java-cancellable-task | https://github.com/ivanr/poc-java-cancellable-task | 024bd9d87b0746a6b24450be57c8d4b2751f318d | 685c9ea8ba60362b44ce7f56e027b21f95eba381 | refs/heads/master | 2021-01-21T16:27:36.668000 | 2018-06-24T17:55:14 | 2018-06-24T17:55:14 | 91,889,941 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.concurrent.*;
public class CancellableExecutor extends ThreadPoolExecutor {
private Set<CancellableCallable> cancellableCallables = Collections.synchronizedSet(new HashSet<>());
public Cancel... | UTF-8 | Java | 1,712 | java | CancellableExecutor.java | Java | [] | null | [] | import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.concurrent.*;
public class CancellableExecutor extends ThreadPoolExecutor {
private Set<CancellableCallable> cancellableCallables = Collections.synchronizedSet(new HashSet<>());
public Cancel... | 1,712 | 0.668224 | 0.668224 | 52 | 31.923077 | 29.519775 | 105 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.461538 | false | false | 1 |
700ede6d0a82d64173dead87181c42d189b6e8e8 | 28,346,784,221,668 | 6c9b6b8d163e8da095f493a20b5e6828ff780bc0 | /practica10/SetColor.java | 0c9b2d25e67266c7f1a65b4af4a5dbb5c26380ba | [] | no_license | zaladigvijay/java | https://github.com/zaladigvijay/java | 96aeb9795e2dbd36e4a74a18ac0a1cea8719d800 | e36c2ddb5e6d18531caa3b39b7dfd597e336d925 | refs/heads/master | 2020-06-20T16:41:20.420000 | 2019-09-25T07:19:31 | 2019-09-25T07:19:31 | 197,181,546 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.awt.*;
import java.applet.*;
import java.lang.reflect.*;
/*
*/
public class SetColor extends Applet
{
public void paint (Graphics g)
{
String color=getParameter("color");
Color c=Color.red;
try
{
Field f = Color.class.getField(color);
c= (... | UTF-8 | Java | 428 | java | SetColor.java | Java | [] | null | [] | import java.awt.*;
import java.applet.*;
import java.lang.reflect.*;
/*
*/
public class SetColor extends Applet
{
public void paint (Graphics g)
{
String color=getParameter("color");
Color c=Color.red;
try
{
Field f = Color.class.getField(color);
c= (... | 428 | 0.521028 | 0.521028 | 28 | 13.357142 | 14.268382 | 43 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.321429 | false | false | 1 |
030a6909f681b3c61849d1d3aefc10a131519bd5 | 17,188,459,189,399 | 201cd1a9023ee751f50bd97a2a487c7e15205e18 | /201812-1/src/Main.java | b921591bc2fa88169046ce23f5efe4b6f6887296 | [] | no_license | WorkStone/CSP_Study | https://github.com/WorkStone/CSP_Study | c11509b83fb7d0d4c50ad49b3740c0746cdf696f | 925ac92afc3ce5648829b3ad8a2ad7207c2048b6 | refs/heads/main | 2023-08-28T02:06:12.033000 | 2021-10-16T09:15:13 | 2021-10-16T09:15:13 | 404,339,022 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.io.*;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
//BufferedReader bf = new BufferedReader(new FileReader("C:/Users/17865/Desktop/data.txt"));
BufferedReader bf = new BufferedReader(new Input... | UTF-8 | Java | 740 | java | Main.java | Java | [] | null | [] | import java.io.*;
import java.util.Scanner;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
//BufferedReader bf = new BufferedReader(new FileReader("C:/Users/17865/Desktop/data.txt"));
BufferedReader bf = new BufferedReader(new Input... | 740 | 0.660274 | 0.652055 | 20 | 35.549999 | 28.113119 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.65 | false | false | 1 |
a3f75abb37420c3f7c5b818cc4052900deb62752 | 6,193,342,900,429 | 325854f60b7d9095a165ebd4a516669576ed7447 | /semester 1/tasks/ReentrantLock/src/main/java/com/rmv/oop/task8/MyRunnable.java | e633ad19efaaf2ae43abf7d4bfebd223342f7ffb | [
"MIT"
] | permissive | RostyslavMV/OOP-3-course | https://github.com/RostyslavMV/OOP-3-course | beddcc11def2748e01df3328b470f7329c8a56f5 | 9df754cbdd3485ae69dddcdcf09763f1ade04316 | refs/heads/main | 2023-01-29T03:12:37.695000 | 2020-12-10T18:23:20 | 2020-12-10T18:23:20 | 320,355,809 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.rmv.oop.task8;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class MyRunnable implements Runnable {
CustomLock customLock;
public MyRunnable(CustomLock customLock) {
this.customLock = customLock;
}
@Override
public void run() {
System.out.println(Thread.currentThrea... | UTF-8 | Java | 909 | java | MyRunnable.java | Java | [] | null | [] | package com.rmv.oop.task8;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class MyRunnable implements Runnable {
CustomLock customLock;
public MyRunnable(CustomLock customLock) {
this.customLock = customLock;
}
@Override
public void run() {
System.out.println(Thread.currentThrea... | 909 | 0.586359 | 0.577558 | 31 | 28.32258 | 20.403015 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.387097 | false | false | 1 |
1bbed882f0960d9d9514645640c3c28c570e35d6 | 14,499,809,643,809 | d7fa5058a026daebe0db828e67151036c565b2f5 | /src/main/model/GameState.java | 4ab18b36e648b26402a3ec221f50bcf6f582d5c7 | [] | no_license | webstek/AdventurersVoyage | https://github.com/webstek/AdventurersVoyage | 83133e414ef85933effbab1c04df01225502b857 | 3e2b9d8ed5483833e5ecdb34dec598b84dbfea1b | refs/heads/master | 2023-07-06T00:21:47.384000 | 2021-08-12T21:02:17 | 2021-08-12T21:02:17 | 395,442,788 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package model;
import model.combat.CombatHandler;
import model.entities.CaveSlug;
import model.entities.Enemy;
import model.entities.Entity;
import model.entities.Player;
import model.items.BirchBow;
import model.items.FluffyHat;
import org.json.JSONObject;
import persistence.JsonWriter;
import persistence.Writable;
... | UTF-8 | Java | 6,413 | java | GameState.java | Java | [] | null | [] | package model;
import model.combat.CombatHandler;
import model.entities.CaveSlug;
import model.entities.Enemy;
import model.entities.Entity;
import model.entities.Player;
import model.items.BirchBow;
import model.items.FluffyHat;
import org.json.JSONObject;
import persistence.JsonWriter;
import persistence.Writable;
... | 6,413 | 0.633245 | 0.632465 | 163 | 38.349693 | 34.295994 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.552147 | false | false | 1 |
343ec950ae5806c324df52583903657d01ad8a32 | 14,499,809,644,285 | 08043de7c5df631d4a2c937182ec230f4dea58d1 | /Epic-Payment-Core/src/main/java/com/epicgames/ecommerce/payment/core/persistence/WalletPersistent.java | dae2e330f80ba48d48d410da869d9545df4b8e3b | [] | no_license | chenmm1987/PaymentService | https://github.com/chenmm1987/PaymentService | 2a8faa4a725e4bba9284edc3eb79f65f1adde910 | 7955d879917ade1ea0b3f2cc3a3d6d3a8f41616f | refs/heads/master | 2016-09-22T03:46:17.951000 | 2016-08-24T12:28:35 | 2016-08-24T12:28:35 | 66,462,031 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright (C) 2015 Epic Games, Inc. All Rights Reserved.
*/
package com.epicgames.ecommerce.payment.core.persistence;
import com.epicgames.ecommerce.payment.core.dao.WalletDao;
import com.epicgames.ecommerce.payment.core.exception.DatabaseOperationConflictException;
import com.epicgames.ecommerce.payment.core.e... | UTF-8 | Java | 5,110 | java | WalletPersistent.java | Java | [] | null | [] | /*
* Copyright (C) 2015 Epic Games, Inc. All Rights Reserved.
*/
package com.epicgames.ecommerce.payment.core.persistence;
import com.epicgames.ecommerce.payment.core.dao.WalletDao;
import com.epicgames.ecommerce.payment.core.exception.DatabaseOperationConflictException;
import com.epicgames.ecommerce.payment.core.e... | 5,110 | 0.720744 | 0.71683 | 173 | 28.537573 | 30.321114 | 132 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.763006 | false | false | 1 |
fb69e44a9ecc4c4361ea9fe42b3a1867cdc5aec0 | 31,714,038,515,300 | 80d5e3ecbf6a2e216e8185e2a8d07587f96808ea | /app/src/main/java/com/newchinese/smartmeeting/base/BaseToolbar.java | ba0787803ee257f084814f0fab31260c4a73597c | [] | no_license | wbbltx/SmartMeeting | https://github.com/wbbltx/SmartMeeting | b5834c690292e6577944cfcd09eef078476e2900 | 1eeb4f30cb28f1c3be648db0f0f7f3240f0a04ba | refs/heads/master | 2021-08-22T19:50:52.864000 | 2017-12-01T04:00:13 | 2017-12-01T04:00:13 | 112,693,472 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.newchinese.smartmeeting.base;
/**
* Created by Administrator on 2017-08-24.
* ToolBar 标记
*/
public interface BaseToolbar {
}
| UTF-8 | Java | 146 | java | BaseToolbar.java | Java | [
{
"context": "m.newchinese.smartmeeting.base;\n\n/**\n * Created by Administrator on 2017-08-24.\n * ToolBar 标记\n */\n\npublic interfac",
"end": 74,
"score": 0.4948016107082367,
"start": 61,
"tag": "NAME",
"value": "Administrator"
}
] | null | [] | package com.newchinese.smartmeeting.base;
/**
* Created by Administrator on 2017-08-24.
* ToolBar 标记
*/
public interface BaseToolbar {
}
| 146 | 0.725352 | 0.669014 | 9 | 14.777778 | 16.89035 | 42 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.111111 | false | false | 1 |
82b272da93e6f367e63f4d275876ddfd8a6165bc | 24,962,349,983,693 | aaf8a5825dea06ac10c984121a2c0e8d62173531 | /web/src/main/java/com/learn/sky/web/aspect/WebLog.java | ba118e9f4e1826df95bf4272b7dac795e9e5f30c | [] | no_license | keitho00/LearnSky | https://github.com/keitho00/LearnSky | 235e4d31097ffb8f8d178ad71858225d9897729c | 211c6f3976a96997d13ca9d4be744e2bddd75e98 | refs/heads/master | 2023-06-26T04:42:46.776000 | 2023-06-16T09:17:05 | 2023-06-16T09:17:05 | 119,021,613 | 0 | 1 | null | false | 2022-10-04T23:44:07 | 2018-01-26T07:43:10 | 2019-10-25T06:50:44 | 2022-10-04T23:44:05 | 243 | 0 | 1 | 8 | Java | false | false | package com.learn.sky.web.aspect;
import java.lang.annotation.*;
/**
* @Author: JiuBuKong
* @Date: 2018/10/19 下午4:35
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface WebLog {
}
| UTF-8 | Java | 234 | java | WebLog.java | Java | [
{
"context": ";\n\nimport java.lang.annotation.*;\n\n/**\n * @Author: JiuBuKong\n * @Date: 2018/10/19 下午4:35\n */\n@Target(ElementTy",
"end": 92,
"score": 0.9998029470443726,
"start": 83,
"tag": "NAME",
"value": "JiuBuKong"
}
] | null | [] | package com.learn.sky.web.aspect;
import java.lang.annotation.*;
/**
* @Author: JiuBuKong
* @Date: 2018/10/19 下午4:35
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface WebLog {
}
| 234 | 0.730435 | 0.682609 | 13 | 16.692308 | 13.320803 | 35 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.153846 | false | false | 1 |
d17ffd540b36299119067796e80b500f518cd8a2 | 24,962,349,985,127 | 8d0d7e78d555652911c2cae1542920dba87ce2ee | /xsunrpc-common/src/main/java/com/xsun/common/codec/RpcEncoder.java | ab112be7d9095b78803c12c16bfcaa3725b36f4c | [] | no_license | dynamic-sevn/xsunrpc | https://github.com/dynamic-sevn/xsunrpc | ff7b7acdb8606c2a38b539b65be0b2bbde2a5cc9 | 627474f48351bd56db5a9d753b6d039be3f08f43 | refs/heads/master | 2021-06-25T14:15:45.953000 | 2020-11-27T10:20:52 | 2020-11-27T10:20:52 | 177,168,841 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.xsun.common.codec;
import com.xsun.common.util.SerializationUtils;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.MessageToByteEncoder;
/**
* created at 20:40, 2019/3/23
*
* @author sunhaoran <nuaa_sunhr@yeah.net>
*/
public class RpcEncoder... | UTF-8 | Java | 800 | java | RpcEncoder.java | Java | [
{
"context": "\n\n/**\n * created at 20:40, 2019/3/23\n *\n * @author sunhaoran <nuaa_sunhr@yeah.net>\n */\npublic class RpcEncoder",
"end": 270,
"score": 0.999701201915741,
"start": 261,
"tag": "USERNAME",
"value": "sunhaoran"
},
{
"context": "ated at 20:40, 2019/3/23\n *\n * @autho... | null | [] | package com.xsun.common.codec;
import com.xsun.common.util.SerializationUtils;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.MessageToByteEncoder;
/**
* created at 20:40, 2019/3/23
*
* @author sunhaoran <<EMAIL>>
*/
public class RpcEncoder extends Mes... | 788 | 0.69625 | 0.6825 | 28 | 27.571428 | 24.197741 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.464286 | false | false | 1 |
499fc19a8ae84841a7646fdeaa4910c4af2acc61 | 1,606,317,836,182 | ab61ce5adfa56bf545f4fcf852c3e63d6d6a54d3 | /Number_Complement.java | 5ed61fdebba1901656ee2a1273231f574b82cc74 | [] | no_license | welyab/leetcode | https://github.com/welyab/leetcode | 414c927512cedf3d4c73db4bdf5b9864c5c6d3ed | cbf0835174637fad2efffae13da5d4e5bbb33c54 | refs/heads/master | 2020-04-16T10:34:12.604000 | 2020-03-07T19:06:16 | 2020-03-07T19:06:16 | 165,509,059 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | // https://leetcode.com/problems/number-complement/
public class Number_Complement {
public int findComplement(int num) {
char bits[] = Integer.toBinaryString(num).toCharArray();
for (int i = 0; i < bits.length; i++) {
bits[i] = bits[i] == '0' ? '1' : '0';
}
return Integer.parseInt(new String(bits), 2);
}
... | UTF-8 | Java | 322 | java | Number_Complement.java | Java | [] | null | [] | // https://leetcode.com/problems/number-complement/
public class Number_Complement {
public int findComplement(int num) {
char bits[] = Integer.toBinaryString(num).toCharArray();
for (int i = 0; i < bits.length; i++) {
bits[i] = bits[i] == '0' ? '1' : '0';
}
return Integer.parseInt(new String(bits), 2);
}
... | 322 | 0.642857 | 0.627329 | 10 | 31.200001 | 20.316496 | 58 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.9 | false | false | 1 |
b69a12e87a40a0994e2ee8b0db99a96010254efd | 9,174,050,209,118 | 33feb9f4d3eaa2b704e6e358d88c8518e25b4e5f | /rabbitmq/src/hospital/Administrator.java | 4f7f6b48ab4fc1aa62249218f0d4d12b21e47cd1 | [] | no_license | Kamkalet/Rozprochy | https://github.com/Kamkalet/Rozprochy | ca9ecd74e0015ffe2e09923b724057a9da20e48b | 14f7b59ac58e355cb91f14d0286d305caf5bf9a9 | refs/heads/master | 2020-03-15T17:50:23.402000 | 2018-05-10T18:53:59 | 2018-05-10T18:53:59 | 132,270,580 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package hospital;
import com.rabbitmq.client.*;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import static hospital.Constants.*;
public class Administrator {
private static Channel channel;
public static void main(String[] argv) throws Exception {
S... | UTF-8 | Java | 1,187 | java | Administrator.java | Java | [] | null | [] | package hospital;
import com.rabbitmq.client.*;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import static hospital.Constants.*;
public class Administrator {
private static Channel channel;
public static void main(String[] argv) throws Exception {
S... | 1,187 | 0.68155 | 0.680708 | 43 | 26.60465 | 27.268808 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.604651 | false | false | 1 |
0f06b3c55a2344223d87dc551e9d8d16209fc390 | 10,720,238,423,472 | b7f5dcfa788c1310b48320ba299163bf326b3a7c | /src/com/cloudfire/controller/ConstructorDetail.java | 0beeb90a6e343be02ff0f5d69405e645c6f3be2e | [
"Apache-2.0"
] | permissive | bingo1118/zdst_service | https://github.com/bingo1118/zdst_service | 4a18ab499a2ae2c4142e33000794dc1381dfed06 | 6d1a743ea681e38494cb8d7732fa221dbb881e73 | refs/heads/master | 2022-01-20T10:40:51.893000 | 2019-05-13T01:21:47 | 2019-05-13T01:21:47 | 186,324,000 | 1 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cloudfire.controller;
import java.io.IOException;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.lang.StringUtils;
import org.springframework.stereotype.Controller;
import... | GB18030 | Java | 3,648 | java | ConstructorDetail.java | Java | [] | null | [] | package com.cloudfire.controller;
import java.io.IOException;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.lang.StringUtils;
import org.springframework.stereotype.Controller;
import... | 3,648 | 0.786031 | 0.779933 | 89 | 39.539326 | 28.312485 | 152 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.797753 | false | false | 1 |
68f8e077cce1728dc3e9e5e2fe27e3e26c0747f4 | 24,962,349,926,313 | 31267256abcbce7672280638025c64313d2ea4fa | /src/main/java/com/store/user/apicontroller/goods/GoodsController.java | 37de9456564c970bf3b2a9628529e34c3bbb2722 | [] | no_license | sfyproject/xhh-dehui | https://github.com/sfyproject/xhh-dehui | 6bdfd7cbcd8d830a9b5922335961d388c4b7e8e6 | fa6578c5e01ddfa0eb9b88ffc476879bc4e601bc | refs/heads/master | 2022-07-13T15:07:56.443000 | 2019-06-01T05:54:30 | 2019-06-01T05:54:30 | 189,696,517 | 0 | 1 | null | false | 2022-06-29T17:25:00 | 2019-06-01T06:00:16 | 2019-06-01T06:01:23 | 2022-06-29T17:24:57 | 11,979 | 0 | 1 | 4 | JavaScript | false | false | package com.store.user.apicontroller.goods;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bin... | UTF-8 | Java | 7,567 | java | GoodsController.java | Java | [] | null | [] | package com.store.user.apicontroller.goods;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bin... | 7,567 | 0.716091 | 0.714747 | 235 | 30.659575 | 28.929024 | 90 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.578723 | false | false | 1 |
8252477b054695a03b1d6dd401fb65986691031b | 11,227,044,524,705 | 1d928c3f90d4a0a9a3919a804597aa0a4aab19a3 | /java/neo4j/2016/12/CoreBootstrapper.java | 05f3df2372837c6366dd88166d4846128d31c270 | [] | no_license | rosoareslv/SED99 | https://github.com/rosoareslv/SED99 | d8b2ff5811e7f0ffc59be066a5a0349a92cbb845 | a062c118f12b93172e31e8ca115ce3f871b64461 | refs/heads/main | 2023-02-22T21:59:02.703000 | 2021-01-28T19:40:51 | 2021-01-28T19:40:51 | 306,497,459 | 1 | 1 | null | false | 2020-11-24T20:56:18 | 2020-10-23T01:18:07 | 2020-11-24T20:46:14 | 2020-11-24T20:56:17 | 744,608 | 0 | 0 | 0 | null | false | false | /*
* Copyright (c) 2002-2016 "Neo Technology,"
* Network Engine for Objects in Lund AB [http://neotechnology.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Fo... | UTF-8 | Java | 10,459 | java | CoreBootstrapper.java | Java | [] | null | [] | /*
* Copyright (c) 2002-2016 "Neo Technology,"
* Network Engine for Objects in Lund AB [http://neotechnology.com]
*
* This file is part of Neo4j.
*
* Neo4j is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Fo... | 10,459 | 0.751123 | 0.742996 | 193 | 53.191711 | 33.511879 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.134715 | false | false | 1 |
ef7b057079229bb8d6b7b17035cce6c5352f76a6 | 11,218,454,643,240 | 5d479e4c9494650d1a8be4bece1638c677d05f43 | /src/day13_2/Run.java | 784685c0c74cc93804f4a460bbbcc0c28c749432 | [] | no_license | LiHuaa666/javatest1 | https://github.com/LiHuaa666/javatest1 | b290a04306fca910d338b770603709ea57a57563 | 3b13cfc3bdcd98df44e59713f8bcf148652c4e06 | refs/heads/master | 2020-08-29T10:22:01.408000 | 2019-11-15T13:22:28 | 2019-11-15T13:22:28 | 218,004,964 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package day13_2;
/**
* @Author: yin
* @Time: 2019/11/6 15:02
*/
public class Run {
public static void main(String[] args) {
Long time=System.nanoTime();
GenericStack<Object> genericStack = new GenericStack<>();
genericStack.push("test");
genericStack.push(123);
genericSta... | UTF-8 | Java | 396 | java | Run.java | Java | [
{
"context": "package day13_2;\n\n/**\n * @Author: yin\n * @Time: 2019/11/6 15:02\n */\npublic class Run {\n",
"end": 37,
"score": 0.9982842206954956,
"start": 34,
"tag": "USERNAME",
"value": "yin"
}
] | null | [] | package day13_2;
/**
* @Author: yin
* @Time: 2019/11/6 15:02
*/
public class Run {
public static void main(String[] args) {
Long time=System.nanoTime();
GenericStack<Object> genericStack = new GenericStack<>();
genericStack.push("test");
genericStack.push(123);
genericSta... | 396 | 0.613636 | 0.570707 | 16 | 23.75 | 18.958838 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4375 | false | false | 1 |
7fdcc1c0b5d5f70102a83e5e8f6b0daf03dda9fc | 24,378,234,374,365 | 186372e2bb690197c8e2f8a2f526112c9ab17500 | /teacher/src/main/java/com/schoolteacher/pojos/ProfileServiceRequestType.java | 5bc1ec2c922948c69c86ce74ffdea379ac513e73 | [] | no_license | shah00070/techer | https://github.com/shah00070/techer | a57f76e9f4be212caf8350e0330a860b55e83ccb | c26143fde45a1f0f0eed6a7c1abe1b3fba16202a | refs/heads/master | 2021-01-19T11:42:29.707000 | 2016-06-03T08:46:39 | 2016-06-03T08:46:39 | 61,519,634 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.schoolteacher.pojos;
import java.io.Serializable;
public class ProfileServiceRequestType implements Serializable {
/**
*
*/
private static final long serialVersionUID = 7325178843188120200L;
private int ProfessionalServiceRequestTypeId;
private String ProfessionalServiceRequestTypeName;
public ... | UTF-8 | Java | 865 | java | ProfileServiceRequestType.java | Java | [] | null | [] | package com.schoolteacher.pojos;
import java.io.Serializable;
public class ProfileServiceRequestType implements Serializable {
/**
*
*/
private static final long serialVersionUID = 7325178843188120200L;
private int ProfessionalServiceRequestTypeId;
private String ProfessionalServiceRequestTypeName;
public ... | 865 | 0.840462 | 0.818497 | 30 | 27.833334 | 26.281912 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.233333 | false | false | 1 |
14ac75c843c1c60d5236317345f3cf645f9760e3 | 31,138,512,896,394 | e4b98aa8d26620437281c2f5c94b8ecf82de9fae | /src/main/java/services/AdministratorService.java | ae9c16df9df18a4c406527f95b762f6456ddd6b5 | [] | no_license | joslarmorETSII/Acme-Rendezvous | https://github.com/joslarmorETSII/Acme-Rendezvous | a77001598aeea9c83644a29bb0a9473dc099b4fd | 82f7e3808276a4a7dc7741096509a886b192754e | refs/heads/master | 2021-03-24T13:00:51.558000 | 2018-02-27T21:38:31 | 2018-02-27T21:38:31 | 122,181,986 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package services;
import domain.Administrator;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.util.Assert;
import repositories.AdministratorRepository;
import security.LoginService;
import security.UserAccount;
import javax.tran... | UTF-8 | Java | 1,862 | java | AdministratorService.java | Java | [] | null | [] | package services;
import domain.Administrator;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.util.Assert;
import repositories.AdministratorRepository;
import security.LoginService;
import security.UserAccount;
import javax.tran... | 1,862 | 0.618152 | 0.618152 | 73 | 24.506849 | 26.298666 | 87 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.383562 | false | false | 1 |
b6d6e5787b1d20c35fd98c52a189c3ae5a54598b | 20,572,893,350,631 | 37dce5da0e15df408226ba6abd6660f856db4621 | /src/me/fmon/itsonyou/service/FriendService.java | fa47d0c1f667e596f43f7de43261e0cd4ea0806f | [] | no_license | fmontesino/itsonyou | https://github.com/fmontesino/itsonyou | 40f3a2128244d6477bce9490044c16d02b3a65fc | 02292ba0e7c8a36d4fd1e05a530b2f6312038d77 | refs/heads/master | 2021-01-13T02:27:17.783000 | 2013-12-09T15:00:30 | 2013-12-09T15:00:30 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package me.fmon.itsonyou.service;
import me.fmon.itsonyou.model.Friend;
import me.fmon.itsonyou.model.FriendList;
import me.fmon.itsonyou.util.Constants;
import android.content.Intent;
import android.util.Log;
public class FriendService extends BaseService {
private static final String TAG = "FriendService::";
... | UTF-8 | Java | 2,443 | java | FriendService.java | Java | [] | null | [] | package me.fmon.itsonyou.service;
import me.fmon.itsonyou.model.Friend;
import me.fmon.itsonyou.model.FriendList;
import me.fmon.itsonyou.util.Constants;
import android.content.Intent;
import android.util.Log;
public class FriendService extends BaseService {
private static final String TAG = "FriendService::";
... | 2,443 | 0.726566 | 0.722882 | 81 | 29.160494 | 23.158316 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.716049 | false | false | 1 |
65d23a6da7ab37e5a6322caf971b9874de9be94a | 27,676,769,323,510 | ab918939f5de4246046ef24bc313e9e602d24792 | /trunk/oncotcap/src/main/java/oncotcap/display/editor/persistibleeditorpanel/StatementTemplateListPanel.java | 89bfe272727c72c053e413a7ec854a6e0b6d6027 | [] | no_license | professorbeautiful/oncotcap | https://github.com/professorbeautiful/oncotcap | 3c3006ff9d9da5283ba8e77378dcaf74b7fb9e3f | 5025b8b921f26cd74076eb26241c7041a7bc8d34 | refs/heads/master | 2021-01-21T18:10:37.083000 | 2014-02-19T15:59:26 | 2014-02-19T15:59:26 | 15,146,293 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package oncotcap.display.editor.persistibleeditorpanel;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import oncotcap.util.*;
import oncotcap.datalayer.persistible.*;
import oncotcap.datalayer.persistible.action.*;
import oncotcap.datalayer.persistible.parameter.*;
imp... | UTF-8 | Java | 10,578 | java | StatementTemplateListPanel.java | Java | [] | null | [] | package oncotcap.display.editor.persistibleeditorpanel;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import oncotcap.util.*;
import oncotcap.datalayer.persistible.*;
import oncotcap.datalayer.persistible.action.*;
import oncotcap.datalayer.persistible.parameter.*;
imp... | 10,578 | 0.69238 | 0.687937 | 342 | 28.929825 | 24.540474 | 146 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.114035 | false | false | 1 |
468f3e3af5134462623c10f51559947f501e39c4 | 23,313,082,483,355 | 3f95c5a20d74fab6fe8c037a4d43c16068dbd1cc | /src/model/ComparatorName.java | cafa6cc1c0f045c94b8b25819fec5370007c3711 | [] | no_license | ValeArias07/Crypter | https://github.com/ValeArias07/Crypter | d55318aa4c0fd28df6f25e93810657c0d42f5fc2 | e77cc7cf018cf09688c4278dcf16402b3e7514a5 | refs/heads/master | 2022-09-03T01:08:31.490000 | 2020-05-28T07:05:55 | 2020-05-28T07:05:55 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package model;
import java.util.Comparator;
public class ComparatorName implements Comparator<RouteNode>{
@Override
public int compare(RouteNode r1, RouteNode r2) {
if(r1.getName().compareTo(r2.getName())<0)
return -1;
if(r1.getName().compareTo(r2.getName())>0)
return 1;
return 0;
}
}
| UTF-8 | Java | 313 | java | ComparatorName.java | Java | [] | null | [] | package model;
import java.util.Comparator;
public class ComparatorName implements Comparator<RouteNode>{
@Override
public int compare(RouteNode r1, RouteNode r2) {
if(r1.getName().compareTo(r2.getName())<0)
return -1;
if(r1.getName().compareTo(r2.getName())>0)
return 1;
return 0;
}
}
| 313 | 0.693291 | 0.658147 | 17 | 17.411764 | 19.403028 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.647059 | false | false | 1 |
f30aa41569d65bfef39c9aadd4332bf9a71f4edd | 18,648,748,009,193 | f481309f88a05c1de05ff47b7bc231379b73d560 | /piles-core/src/main/java/com/piles/core/util/BigDecimalUtil.java | 836dcc0e2043ecc605b614df34b340656a8c8f84 | [] | no_license | aspiresnow/piles_to_gov | https://github.com/aspiresnow/piles_to_gov | cd54e6ab9ce3bea4ed425d4447d91c6f8aaa0455 | da2ccca38ebdf5b8d7b5c921dfec1933a7ac704f | refs/heads/master | 2020-05-22T12:15:57.113000 | 2019-05-22T07:57:36 | 2019-05-22T07:57:36 | 186,334,012 | 0 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.piles.core.util;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.text.DecimalFormat;
import java.util.Objects;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import java.util.stream.Stream;
/**
* @Auther: zhanglizhi
* @Date: 2019/2/25 21:56
* @Descriptio... | UTF-8 | Java | 3,854 | java | BigDecimalUtil.java | Java | [
{
"context": "\nimport java.util.stream.Stream;\n\n\n/**\n * @Auther: zhanglizhi\n * @Date: 2019/2/25 21:56\n * @Description: 处理BigD",
"end": 279,
"score": 0.9996185898780823,
"start": 269,
"tag": "USERNAME",
"value": "zhanglizhi"
}
] | null | [] | package com.piles.core.util;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.text.DecimalFormat;
import java.util.Objects;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import java.util.stream.Stream;
/**
* @Auther: zhanglizhi
* @Date: 2019/2/25 21:56
* @Descriptio... | 3,854 | 0.598307 | 0.590934 | 134 | 26.328358 | 23.300047 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.432836 | false | false | 1 |
61f12a193483778719a08b61e968f1e617ef9cf0 | 15,573,551,425,966 | 6e9ccbb9fe45b14a40a2bbe4c1d71b14596f25d1 | /plugin/map/server/src/main/java/org/pocketcampus/plugin/map/server/jsonitems/Feature.java | 1dac7e3ae05b613faf1a0aa3495ec559fc9b8643 | [] | no_license | ValentinMinder/epfl-dslab-pocketcampus-freeroom | https://github.com/ValentinMinder/epfl-dslab-pocketcampus-freeroom | 935b08487c35d7647625561968e7da4d08b97f9a | 9d5640d3f32da6211820baa59e38649e2c162822 | refs/heads/master | 2021-06-09T23:41:26.965000 | 2015-06-22T09:24:53 | 2015-06-22T09:24:53 | 38,155,341 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.pocketcampus.plugin.map.server.jsonitems;
/**
* Class used to deserialize content from the routing server
*
* @status Complete
*
* @author Jonas
*/
public class Feature {
public GeometryF geometry;
public String type;
public String id;
}
| UTF-8 | Java | 263 | java | Feature.java | Java | [
{
"context": "ing server \n * \n * @status Complete\n * \n * @author Jonas\n */\npublic class Feature {\n\tpublic GeometryF geom",
"end": 165,
"score": 0.9988077878952026,
"start": 160,
"tag": "NAME",
"value": "Jonas"
}
] | null | [] | package org.pocketcampus.plugin.map.server.jsonitems;
/**
* Class used to deserialize content from the routing server
*
* @status Complete
*
* @author Jonas
*/
public class Feature {
public GeometryF geometry;
public String type;
public String id;
}
| 263 | 0.726236 | 0.726236 | 14 | 17.785715 | 18.307604 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 1 |
901c2edd17705f4e92cb43149a3060d69d12d4fe | 12,068,858,110,445 | b8e2d1d7da1a99ee99802d4cdb950ab26db92717 | /src/test/java/com/library/search/SearchResultCoverImgProxyTestConfiguration.java | bf458231070c18100f752685eeddddd601832442 | [
"MIT"
] | permissive | sbarakad/QAProject | https://github.com/sbarakad/QAProject | 710b52805facdfcbf6b3e078d4bdcb9ffd363e5d | a3b66ff709969339153b99b40073385e4b8a3268 | refs/heads/master | 2022-08-01T03:50:18.781000 | 2019-05-23T16:43:08 | 2019-05-23T16:43:08 | 188,271,633 | 0 | 0 | MIT | false | 2022-06-21T01:09:32 | 2019-05-23T16:38:34 | 2019-05-23T16:43:42 | 2022-06-21T01:09:32 | 1,879 | 0 | 0 | 3 | Java | false | false | package com.library.search;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Primary;
import org.springframework.context.annotation.Profile;
import com.library.localStorage.CoverImageLoader;
@Profile("CoverImgProxyTest")
public class SearchResultCoverImgProxyTestConfi... | UTF-8 | Java | 439 | java | SearchResultCoverImgProxyTestConfiguration.java | Java | [] | null | [] | package com.library.search;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Primary;
import org.springframework.context.annotation.Profile;
import com.library.localStorage.CoverImageLoader;
@Profile("CoverImgProxyTest")
public class SearchResultCoverImgProxyTestConfi... | 439 | 0.833713 | 0.833713 | 16 | 26.4375 | 22.627331 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.75 | false | false | 1 |
795493683211f73c3bb4ef1f156d6fea0202d5a2 | 12,068,858,110,054 | 863acb02a064a0fc66811688a67ce3511f1b81af | /sources/p005cm/aptoide/p006pt/store/view/StoreTabFragmentChooser.java | 180d544582d0cc86ff8b055e8eed3a87a6d8048b | [
"MIT"
] | permissive | Game-Designing/Custom-Football-Game | https://github.com/Game-Designing/Custom-Football-Game | 98d33eb0c04ca2c48620aa4a763b91bc9c1b7915 | 47283462b2066ad5c53b3c901182e7ae62a34fc8 | refs/heads/master | 2020-08-04T00:02:04.876000 | 2019-10-06T06:55:08 | 2019-10-06T06:55:08 | 211,914,568 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package p005cm.aptoide.p006pt.store.view;
import android.support.p000v4.app.Fragment;
import org.jacoco.agent.p025rt.internal_8ff85ea.Offline;
import p005cm.aptoide.p006pt.app.view.ListAppsFragment;
import p005cm.aptoide.p006pt.app.view.MoreBundleFragment;
import p005cm.aptoide.p006pt.dataprovider.model.p009v7.Event.N... | UTF-8 | Java | 10,474 | java | StoreTabFragmentChooser.java | Java | [] | null | [] | package p005cm.aptoide.p006pt.store.view;
import android.support.p000v4.app.Fragment;
import org.jacoco.agent.p025rt.internal_8ff85ea.Offline;
import p005cm.aptoide.p006pt.app.view.ListAppsFragment;
import p005cm.aptoide.p006pt.app.view.MoreBundleFragment;
import p005cm.aptoide.p006pt.dataprovider.model.p009v7.Event.N... | 10,474 | 0.461428 | 0.432022 | 223 | 45.968609 | 28.849911 | 133 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.542601 | false | false | 1 |
156b2f80ba40a4ccb7adcaa3e0a53c8256317497 | 23,089,744,188,584 | baf642f53931ac4f951d62a08375b0281e055d83 | /src/main/java/com/qilu/utils/Config.java | 80640f9bbb8f7821fa07fdb4322b206bebb67078 | [] | no_license | 1359029494/SmartCampus2 | https://github.com/1359029494/SmartCampus2 | 62bf56dfd43013b9029451b200875b2a53897d4b | 3152d5bbc2a14986a52634af6916befff3cfd72e | refs/heads/master | 2022-07-08T13:36:31.658000 | 2019-09-25T14:34:44 | 2019-09-25T14:34:44 | 200,468,216 | 1 | 0 | null | false | 2022-06-29T17:39:21 | 2019-08-04T08:27:29 | 2019-09-25T14:35:33 | 2022-06-29T17:39:20 | 2,605 | 1 | 0 | 5 | Java | false | false | package com.qilu.utils;
public class Config {
/**
* url前半部分
*/
public static final String baseUrl="https://openapi.miaodiyun.com/distributor/sendSMS";
/**
* 开发者注册后系统自动生成的账号,可在官网登录后查看
*/
public static final String accountId="06c6a9164fa88cfe66ff909e65359c72";
/**
* 开发者注册后系统自动生成的TOKEN,可在官网登录后查看
*/
... | UTF-8 | Java | 598 | java | Config.java | Java | [
{
"context": "后查看\n\t */\n\tpublic static final String accountId=\"06c6a9164fa88cfe66ff909e65359c72\";\n\n\t/**\n\t * 开发者注册后系统自动生成的TOKEN,可在官网登录后查看\n\t */\n\tpu",
"end": 272,
"score": 0.9989145994186401,
"start": 240,
"tag": "KEY",
"value": "06c6a9164fa88cfe66ff909e65359c72"
},
{
"c... | null | [] | package com.qilu.utils;
public class Config {
/**
* url前半部分
*/
public static final String baseUrl="https://openapi.miaodiyun.com/distributor/sendSMS";
/**
* 开发者注册后系统自动生成的账号,可在官网登录后查看
*/
public static final String accountId="06c6a9164fa88cfe66ff909e65359c72";
/**
* 开发者注册后系统自动生成的TOKEN,可在官网登录后查看
*/
... | 576 | 0.720833 | 0.641667 | 23 | 19.913044 | 26.427774 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.956522 | false | false | 1 |
9d47dda64e4d6d16200968ca8de9c92ab6eb314f | 23,089,744,191,076 | 9c761f5265b65ec2acae3792a69925dcbc17b5a7 | /src/Number_Guesser.java | d8adceee9879ceadec016237d0010af5d71795d5 | [] | no_license | thejacobhardman/Basic-Java-Console-Programs | https://github.com/thejacobhardman/Basic-Java-Console-Programs | 26ca169c63c1688c2c6b5dfd9d766c62a91d53a1 | d773cbc49df3ff6bdded3ed18f44626d49672b20 | refs/heads/main | 2023-02-24T03:10:44.139000 | 2021-02-04T19:56:28 | 2021-02-04T19:56:28 | 332,098,547 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*******************************************************************************
* Assignment 1 – Python to Java *
* Part 1 - Number Guesser *
* ... | WINDOWS-1252 | Java | 3,092 | java | Number_Guesser.java | Java | [
{
"context": " *\n * PROGRAMMER: Jacob Hardman - hard7293@bears.unco.edu *\n * C",
"end": 359,
"score": 0.999881386756897,
"start": 346,
"tag": "NAME",
"value": "Jacob Hardman"
},
{
"context": " *\n * PROGRAMMER: Jaco... | null | [] | /*******************************************************************************
* Assignment 1 – Python to Java *
* Part 1 - Number Guesser *
* ... | 3,038 | 0.391586 | 0.380583 | 70 | 43.142857 | 31.00474 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.4 | false | false | 1 |
9421493d12ef330f2d79e0239b0571c3a7c0f233 | 28,664,611,766,431 | 43b2ff6b183c8cfba91a98be6df61f2266bc2327 | /app/src/main/java/com/example/akshay/sqlite_example/Prefs.java | bb6a2654163d317c5d12e882161dd175545d5b5c | [] | no_license | akshay2102/Notes-App | https://github.com/akshay2102/Notes-App | 1e7bbb6ed0419d3f5d9cabf7a052628b17bd6fbf | 394291b5e261ee62724eca7037fb084c9e20f46b | refs/heads/master | 2020-03-21T15:56:12.813000 | 2018-10-01T18:49:52 | 2018-10-01T18:49:52 | 138,740,882 | 0 | 1 | null | false | 2018-10-01T18:49:54 | 2018-06-26T13:18:14 | 2018-06-26T13:54:14 | 2018-10-01T18:49:53 | 130 | 0 | 1 | 0 | Java | false | null | package com.example.akshay.sqlite_example;
/**
* Created by akshay on 03-03-2018.
*/
public class Prefs {
public static final String NOTES_SETTINGS = "NotesSettings";
public static final String MAX_NOTES = "MAX";
public static final String READ_ONLY = "READONLY";
}
| UTF-8 | Java | 282 | java | Prefs.java | Java | [
{
"context": ".example.akshay.sqlite_example;\n\n/**\n * Created by akshay on 03-03-2018.\n */\n\npublic class Prefs {\n publ",
"end": 68,
"score": 0.9993091225624084,
"start": 62,
"tag": "USERNAME",
"value": "akshay"
}
] | null | [] | package com.example.akshay.sqlite_example;
/**
* Created by akshay on 03-03-2018.
*/
public class Prefs {
public static final String NOTES_SETTINGS = "NotesSettings";
public static final String MAX_NOTES = "MAX";
public static final String READ_ONLY = "READONLY";
}
| 282 | 0.705674 | 0.677305 | 11 | 24.636364 | 23.634615 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.363636 | false | false | 1 |
ffbb00225a9ee0818baa46394db0cb4e7071ddb4 | 206,158,471,069 | 1f47217ad740b03b5ca7c965a01788dee3c0fbf7 | /JLibrary06/lib/XML/JAXB/jaxb/samples/fix-collides/src/Main.java | 5d3af076dafba0492c8bb82373d2f42401941272 | [] | no_license | amitabha66/JLibrary06 | https://github.com/amitabha66/JLibrary06 | bee7fddca01188991af968a5678fe1d89dce7ee3 | f19056cee7a88318315f9c25f8618aface8f0683 | refs/heads/master | 2021-01-19T07:03:19.133000 | 2016-06-23T16:41:59 | 2016-06-23T16:41:59 | 61,802,950 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the "License"). You may not use this file except
* in compliance with the License.
*
* You can obtain a copy of the license at
* https://jwsdp.dev.java.net/CDDLv1.0.html
* See the License for the sp... | UTF-8 | Java | 2,511 | java | Main.java | Java | [
{
"context": "*;\n\n/*\n * $Id: Main.java,v 1.2 2005/09/10 19:08:05 kohsuke Exp $\n *\n * Copyright 2003 Sun Microsystems, Inc.",
"end": 1160,
"score": 0.8587880730628967,
"start": 1153,
"tag": "USERNAME",
"value": "kohsuke"
}
] | null | [] | /*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the "License"). You may not use this file except
* in compliance with the License.
*
* You can obtain a copy of the license at
* https://jwsdp.dev.java.net/CDDLv1.0.html
* See the License for the sp... | 2,511 | 0.66826 | 0.658702 | 73 | 33.397259 | 24.527166 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.342466 | false | false | 1 |
8a09a5d9e11b5ca6fad2bbf1706570438b144517 | 14,439,680,080,298 | f9a92fb8f8ba82b1bd3ba2d7d599bc38ebdaf633 | /src/main/java/io/github/slimshadeey1/MilspecLang/MilspecLang.java | 965599e5ae5c5894754cc02b380be874f6b8ac1c | [] | no_license | slimshadeey1/MilspecLang.slimshadeey1.github.io | https://github.com/slimshadeey1/MilspecLang.slimshadeey1.github.io | f092ec55219d3f4900be3f56ccb233add971cda2 | e6bff0629121d81bc54b4bb7d935914198a69e54 | refs/heads/master | 2020-04-17T20:37:52.377000 | 2014-07-17T23:14:57 | 2014-07-17T23:15:03 | 20,710,946 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package io.github.slimshadeey1.MilspecLang;
import org.bukkit.*;
import java.util.*;
import org.bukkit.plugin.*;
import org.bukkit.plugin.java.JavaPlugin;
import org.bukkit.event.EventHandler;
import org.bukkit.event.EventPriority;
import org.bukkit.event.Listener;
import org.bukkit.event.player.AsyncPlayerChatEvent... | UTF-8 | Java | 5,520 | java | MilspecLang.java | Java | [
{
"context": "package io.github.slimshadeey1.MilspecLang;\n\nimport org.bukkit.*;\n\nimport java.u",
"end": 30,
"score": 0.996246337890625,
"start": 18,
"tag": "USERNAME",
"value": "slimshadeey1"
},
{
"context": "r.PlayerCommandPreprocessEvent;\n\n/**\n * Created by Ben Byers on 6/8/... | null | [] | package io.github.slimshadeey1.MilspecLang;
import org.bukkit.*;
import java.util.*;
import org.bukkit.plugin.*;
import org.bukkit.plugin.java.JavaPlugin;
import org.bukkit.event.EventHandler;
import org.bukkit.event.EventPriority;
import org.bukkit.event.Listener;
import org.bukkit.event.player.AsyncPlayerChatEvent... | 5,517 | 0.587138 | 0.585507 | 125 | 43.16 | 28.710806 | 143 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.648 | false | false | 1 |
d409c0c432877f5b830a700698521f554260c80e | 8,942,121,933,796 | 5147a0208e05c999232da1ad4c193a1086238cb6 | /hundsun/netty-socket/src/main/java/com/hundsun/fcloud/pay/socket/handler/codec/HttpParamToDbHandler.java | 1de789f4dd45407a24cc9e9896bd971db55c75aa | [] | no_license | wusthuke/apps | https://github.com/wusthuke/apps | ba1e9c18e2f8f80d3523a7055261fa72048a536a | d0b1463210bfb884eb8fb1d7320e0fde963153c2 | refs/heads/master | 2016-03-28T03:47:11.325000 | 2016-01-04T01:23:13 | 2016-01-04T01:23:13 | 30,340,933 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hundsun.fcloud.pay.socket.handler.codec;
import com.hundsun.fcloud.pay.dao.service.NotifyEventService;
import io.netty.channel.ChannelHandler;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelInboundHandlerAdapter;
import org.apache.commons.logging.Log;
import org.apache.common... | UTF-8 | Java | 2,017 | java | HttpParamToDbHandler.java | Java | [
{
"context": "t java.util.Map;\n\n/**\n * Http 参数入库处理\n *\n * @author huke10591\n * @create 2015/5/20\n */\n@ChannelHandler.Sharable",
"end": 434,
"score": 0.9995102286338806,
"start": 425,
"tag": "USERNAME",
"value": "huke10591"
}
] | null | [] | package com.hundsun.fcloud.pay.socket.handler.codec;
import com.hundsun.fcloud.pay.dao.service.NotifyEventService;
import io.netty.channel.ChannelHandler;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelInboundHandlerAdapter;
import org.apache.commons.logging.Log;
import org.apache.common... | 2,017 | 0.644187 | 0.637645 | 70 | 27.385714 | 22.722734 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 1 |
9f0984b40a51379d71742da22e4a05e8c79a1966 | 23,210,003,275,237 | 16480037f43ed53e0a885eafa80db8acd2d20b2b | /octopus-commons/src/main/java/com/oneape/octopus/commons/algorithm/Graph.java | eaf267afa39150818de28703b0b1490628f5a31a | [] | no_license | oneape15/octopus | https://github.com/oneape15/octopus | 8ae39dce47cba1d208586ea93ee7f626af0a9cd8 | d126fbc340230eefc14ffecf2ed1760318e55b74 | refs/heads/master | 2022-09-19T20:59:05.414000 | 2021-04-07T12:42:19 | 2021-04-07T12:42:19 | 230,389,795 | 1 | 0 | null | false | 2022-06-21T02:33:37 | 2019-12-27T06:52:10 | 2021-07-22T02:06:53 | 2022-06-21T02:33:36 | 1,034 | 1 | 0 | 6 | Java | false | false | package com.oneape.octopus.commons.algorithm;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
/**
* graph implementation class.
* <p>
* 1. Parallel edges are not allowed.
* <p>
* Created by oneape<oneape15@163.com>
* Created 2020-06-28 14:56.
* Modify:
*/
pu... | UTF-8 | Java | 4,852 | java | Graph.java | Java | [
{
"context": "rallel edges are not allowed.\n * <p>\n * Created by oneape<oneape15@163.com>\n * Created 2020-06-28 14:56.\n *",
"end": 255,
"score": 0.9996595978736877,
"start": 249,
"tag": "USERNAME",
"value": "oneape"
},
{
"context": "dges are not allowed.\n * <p>\n * Created by on... | null | [] | package com.oneape.octopus.commons.algorithm;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
/**
* graph implementation class.
* <p>
* 1. Parallel edges are not allowed.
* <p>
* Created by oneape<<EMAIL>>
* Created 2020-06-28 14:56.
* Modify:
*/
public clas... | 4,843 | 0.491138 | 0.484336 | 225 | 20.564444 | 19.311863 | 134 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.315556 | false | false | 1 |
4169150a21198f246d5e1026bafe31a9bc9946b3 | 9,010,841,391,712 | dfc4ba1f0fd9c202a0c337422543af184684e737 | /src/main/java/com/example/do_an_cnpm/data_source/dao/UserSessionDAO.java | 65f302cbd17a4c73adbd13c43596fccbadc80d8d | [] | no_license | thienchidh/do_an_cnpm | https://github.com/thienchidh/do_an_cnpm | da22bb5c0027d269da913349e40464f4e7aa7e6f | d88e3e3d50ec23e49b362308c1eac22b910cb00e | refs/heads/master | 2021-05-18T15:44:30.337000 | 2020-04-06T13:10:07 | 2020-04-06T13:10:07 | 251,302,326 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.do_an_cnpm.data_source.dao;
import com.example.do_an_cnpm.model.Account;
import com.example.do_an_cnpm.model.UserSession;
import org.springframework.lang.NonNull;
import java.util.Date;
import java.util.Optional;
public interface UserSessionDAO extends BaseDAO<UserSession> {
UserSession addA... | UTF-8 | Java | 552 | java | UserSessionDAO.java | Java | [] | null | [] | package com.example.do_an_cnpm.data_source.dao;
import com.example.do_an_cnpm.model.Account;
import com.example.do_an_cnpm.model.UserSession;
import org.springframework.lang.NonNull;
import java.util.Date;
import java.util.Optional;
public interface UserSessionDAO extends BaseDAO<UserSession> {
UserSession addA... | 552 | 0.802536 | 0.802536 | 19 | 28.052631 | 26.216656 | 72 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.578947 | false | false | 1 |
79f2caaa1986b48e3771ca3ecfdbeba985a879be | 17,368,847,813,548 | b0a5ce0297845fdc1e54667bdcd28dda9e2b26f4 | /src/main/java/com/zking/erp/model/all/MaterialCategory.java | 3ea1762cfad80bb93effff60a31f06c3be862829 | [] | no_license | baishigroup/pepsi | https://github.com/baishigroup/pepsi | 871b8bc585434c398512ca2a308190c56a4bf8d5 | 437ff24a009d9515c7edcae883c731651735d809 | refs/heads/master | 2020-04-12T02:53:51.998000 | 2019-01-03T01:42:13 | 2019-01-03T01:42:13 | 162,256,899 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.zking.erp.model.all;
import lombok.ToString;
import java.io.Serializable;
@ToString
public class MaterialCategory implements Serializable{
private String id;
private String name;
private Integer categorylevel;
private String parentid;
public MaterialCategory(String id, String name... | UTF-8 | Java | 1,435 | java | MaterialCategory.java | Java | [] | null | [] | package com.zking.erp.model.all;
import lombok.ToString;
import java.io.Serializable;
@ToString
public class MaterialCategory implements Serializable{
private String id;
private String name;
private Integer categorylevel;
private String parentid;
public MaterialCategory(String id, String name... | 1,435 | 0.572822 | 0.572822 | 69 | 19.811594 | 18.92646 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.391304 | false | false | 1 |
0b838fd165b17f7bcf17a0b628382a9ee8c040d7 | 15,436,112,472,543 | 562587c35a096ffe3c4ee8f9a559f9b45684d936 | /Java 语言基础/语言基础语法/Java 内部类/Test_InnerClass/src/methodInnerClass/Method.java | 4ab3126be8eef569b58b15705c619d8ca2f326c3 | [] | no_license | SingleYam/overview_java | https://github.com/SingleYam/overview_java | 8041c8ae24f9ecddf5ba6f6e14a1754a73723623 | 07e5f9d074389ae48ad3c3df85222b328e72b08d | refs/heads/master | 2021-01-25T14:16:37.635000 | 2019-09-15T03:27:06 | 2019-09-15T03:27:06 | 123,677,518 | 203 | 61 | null | null | null | null | null | null | null | null | null | null | null | null | null | package methodInnerClass;
public class Method {
private static String name;
private int age;
public void hello(){
class MyInnerClass{
public void sayHello(){
System.out.println(name);
System.out.println(age);
}
}
}
}
| UTF-8 | Java | 307 | java | Method.java | Java | [] | null | [] | package methodInnerClass;
public class Method {
private static String name;
private int age;
public void hello(){
class MyInnerClass{
public void sayHello(){
System.out.println(name);
System.out.println(age);
}
}
}
}
| 307 | 0.537459 | 0.537459 | 15 | 19.466667 | 13.734951 | 41 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 1 |
a4bba9048be57741135ed75f97db8055ed0706a7 | 33,294,586,482,928 | 0181688fef6734a82bfee0f3a6a76e3dccbdbf82 | /src/main/java/com/ly/module/system/service/IndexService.java | fa3f0b24d3f0d59c30eb53061e5258802cb7dbac | [] | no_license | liyan4770/spring-mvc | https://github.com/liyan4770/spring-mvc | 337961eb1355b7b4faa89b929c9f1576cb1c8c79 | 748e757dba01a784231cf63dbdcdc5f591303d36 | refs/heads/master | 2021-01-19T02:31:07.172000 | 2016-08-04T09:29:05 | 2016-08-04T09:29:05 | 64,921,795 | 0 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ly.module.system.service;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
/**
* Created by Liyan on 2016/7/27.
*/
@Service
@Transactional
public class IndexService {
}
| UTF-8 | Java | 249 | java | IndexService.java | Java | [
{
"context": "ction.annotation.Transactional;\n\n/**\n * Created by Liyan on 2016/7/27.\n */\n@Service\n@Transactional\npubl",
"end": 172,
"score": 0.7150124907493591,
"start": 170,
"tag": "USERNAME",
"value": "Li"
},
{
"context": "on.annotation.Transactional;\n\n/**\n * Created by L... | null | [] | package com.ly.module.system.service;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
/**
* Created by Liyan on 2016/7/27.
*/
@Service
@Transactional
public class IndexService {
}
| 249 | 0.787149 | 0.759036 | 13 | 18.153847 | 20.36908 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.230769 | false | false | 1 |
11416956020b19491e668eb24f41d6b1d8b2c570 | 14,955,076,176,855 | d8fb026a0b9d561354af5c92b69bbab12b2ce4dc | /java_training/assingments/javafx_to_Java_Swing/BasicSwingImageLabel/src/main/LabelImage.java | e99da35ac7d08de91c40390a3c85cd5c30fe1fec | [] | no_license | jumpjune2019/Robert_Kirk | https://github.com/jumpjune2019/Robert_Kirk | fb1c4afceb1a388b5a82044d8a1fcc4100afb631 | a51d0c1ab0879bfb4c25a3331ad1791c83a0ca0b | refs/heads/master | 2020-06-06T12:47:03.036000 | 2019-07-31T18:26:43 | 2019-07-31T18:26:43 | 192,743,930 | 0 | 2 | null | false | 2019-07-31T18:26:44 | 2019-06-19T14:02:36 | 2019-07-31T03:41:58 | 2019-07-31T18:26:43 | 4,398 | 0 | 1 | 0 | Java | false | false | package main;
import java.awt.BorderLayout;
import java.awt.Font;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
@Su... | UTF-8 | Java | 1,125 | java | LabelImage.java | Java | [] | null | [] | package main;
import java.awt.BorderLayout;
import java.awt.Font;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
@Su... | 1,125 | 0.738667 | 0.733333 | 49 | 21.959183 | 19.062689 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.77551 | false | false | 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.