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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
de6d7832465dfa6308972d8365a25f9d5e78fe89 | 27,462,020,927,885 | 1081753457a947e708964db3aef3b9d4bd43b77d | /part8/8-2_hash_map/src/Exercises/E5_IOweYou/IOU.java | 452afa6d947caf0a072e28664e43cfcee2988fe3 | [] | no_license | lightkun10/Java-Programming-II | https://github.com/lightkun10/Java-Programming-II | 87cf0640446b7c832d8c86774fe129442a4e8f5c | ac35c58145ef2b3ea8204548e380d6da9082a68b | refs/heads/master | 2022-12-21T15:26:01.579000 | 2020-09-11T02:53:10 | 2020-09-11T02:53:10 | 287,518,398 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Exercises.E5_IOweYou;
import java.util.HashMap;
public class IOU {
private HashMap<String, Double> iOweYou;
// Constructor
public IOU() {
this.iOweYou = new HashMap<>();
}
// Saves the amount owed and the person owed to to the IOU.
public void setSum(String toWhom, double amo... | UTF-8 | Java | 625 | java | IOU.java | Java | [] | null | [] | package Exercises.E5_IOweYou;
import java.util.HashMap;
public class IOU {
private HashMap<String, Double> iOweYou;
// Constructor
public IOU() {
this.iOweYou = new HashMap<>();
}
// Saves the amount owed and the person owed to to the IOU.
public void setSum(String toWhom, double amo... | 625 | 0.6624 | 0.6544 | 24 | 25.041666 | 23.802099 | 67 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.458333 | false | false | 12 |
95c05946a77652a8b62dc63bf4a67e06fec0fe2c | 25,649,544,732,067 | e549b5deac9b43e576687807fbc86826007e6a60 | /JavaDataStructures/src/edu/personal/TrieST.java | 39bc0d15b5aca52d478c0045af3476e13c449391 | [] | no_license | chaideos/JavaDataStructures | https://github.com/chaideos/JavaDataStructures | 21fb52442397cce41be15d76a70246dc1c627d60 | d8c826338f951facd2189a6e6b66155ca409f112 | refs/heads/master | 2021-01-09T20:57:38.724000 | 2016-12-05T14:04:27 | 2016-12-05T14:04:27 | 59,839,287 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package edu.personal;
public class TrieST<Value>
{
private static final int R = 256;
private TrieNode root = new TrieNode();
private static class TrieNode
{
private Object value;
private TrieNode[] next = new TrieNode[R];
}
public void put(String key, Value value)
{
put(root, key, value, 0);
}
priv... | UTF-8 | Java | 1,005 | java | TrieST.java | Java | [] | null | [] | package edu.personal;
public class TrieST<Value>
{
private static final int R = 256;
private TrieNode root = new TrieNode();
private static class TrieNode
{
private Object value;
private TrieNode[] next = new TrieNode[R];
}
public void put(String key, Value value)
{
put(root, key, value, 0);
}
priv... | 1,005 | 0.60199 | 0.595025 | 62 | 15.209678 | 15.788049 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.967742 | false | false | 12 |
651635d5798411e66544d5287a3280a3490a250d | 32,693,291,082,568 | 1744f876c753f3e47380549902915c648fd00c67 | /17/EasyGuitar2.0s/test/com/zparkep/dao/impl/CdDaoImplTest.java | 62562954232c79e968df6c9c0df1f994362432ab | [] | no_license | bennyrhys/Demo | https://github.com/bennyrhys/Demo | bbf0bc30c75a5c9065912f65bf4dcf4f96e068a7 | f27f70dfaca756addb4e72140315e9a1fae3f4a6 | refs/heads/master | 2020-04-17T07:20:09.554000 | 2019-01-19T09:06:07 | 2019-01-19T09:06:07 | 166,364,926 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.zparkep.dao.impl;
import java.sql.SQLException;
import org.junit.Before;
import org.junit.Test;
import com.zparkep.bean.Cdetails;
import com.zparkep.dao.CdDao;
public class CdDaoImplTest {
private CdDao cdDao;
@Before
public void fun(){
cdDao = new CdDaoImpl();
}
@Test
public void testInser... | UTF-8 | Java | 603 | java | CdDaoImplTest.java | Java | [
{
"context": "\n\t\tCdetails cd = new Cdetails(1, \"hh\", \"wshfkj\", \"username\");\n\t\tint res = cdDao.insertCd(cd);\n\t\tSystem.out.p",
"end": 405,
"score": 0.9969725608825684,
"start": 397,
"tag": "USERNAME",
"value": "username"
}
] | null | [] | package com.zparkep.dao.impl;
import java.sql.SQLException;
import org.junit.Before;
import org.junit.Test;
import com.zparkep.bean.Cdetails;
import com.zparkep.dao.CdDao;
public class CdDaoImplTest {
private CdDao cdDao;
@Before
public void fun(){
cdDao = new CdDaoImpl();
}
@Test
public void testInser... | 603 | 0.71476 | 0.711443 | 31 | 18.451612 | 17.194971 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.290323 | false | false | 12 |
4b552d62ba4b376b453d0e532d0f9e6ff8b111a0 | 10,144,712,791,936 | eb858f6582289a4f9ba7be79d02fe98c151e2949 | /src/tictactoe/MyTableModel.java | 60270b17aa8be42ecb6ca6f517edc5c25a1a248f | [] | no_license | StrayEddy/TicTacToe | https://github.com/StrayEddy/TicTacToe | c50ffdff1254dee93932c7677baf8d0b319c8af0 | adcf0845e0c3cade963632458372bdf5b909f5c2 | refs/heads/master | 2017-12-03T00:04:30.566000 | 2012-03-18T22:02:09 | 2012-03-18T22:02:09 | 3,242,586 | 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 tictactoe;
import javax.swing.ImageIcon;
import javax.swing.table.DefaultTableModel;
/**
*
* @author Administrator
*/
public class MyTableModel extends DefaultTableModel{
public MyTableMode... | UTF-8 | Java | 523 | java | MyTableModel.java | Java | [
{
"context": "ng.table.DefaultTableModel;\r\n\r\n/**\r\n *\r\n * @author Administrator\r\n */\r\npublic class MyTableModel extends DefaultTabl",
"end": 237,
"score": 0.5574651956558228,
"start": 224,
"tag": "USERNAME",
"value": "Administrator"
}
] | null | [] | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package tictactoe;
import javax.swing.ImageIcon;
import javax.swing.table.DefaultTableModel;
/**
*
* @author Administrator
*/
public class MyTableModel extends DefaultTableModel{
public MyTableMode... | 523 | 0.66348 | 0.66348 | 23 | 20.73913 | 20.502848 | 67 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.391304 | false | false | 12 |
cd6fc43bd1103301d9d9941e38197dfc2893104b | 7,524,782,739,411 | cc16de383b8d4ea97d21a1b43bf4fd35b5114d19 | /flow-tests/test-root-context/src/main/java/com/vaadin/flow/uitest/ui/template/collections/ToggleNullListView.java | d5f0f39e2824c9fb864352b324b9dbca69a4a1e0 | [
"Apache-2.0"
] | permissive | vaadin/flow | https://github.com/vaadin/flow | 2c1e446473a2f7d53bde4e5e41c36c96189b50f0 | 9f14bcd948457c44dfc1f5cf2ad27a43153775cf | refs/heads/main | 2023-09-04T04:26:45.702000 | 2023-09-01T12:52:14 | 2023-09-01T12:52:14 | 34,809,191 | 561 | 234 | Apache-2.0 | false | 2023-09-14T15:11:05 | 2015-04-29T17:54:35 | 2023-09-12T15:14:18 | 2023-09-14T15:11:03 | 189,270 | 517 | 151 | 1,056 | Java | false | false | package com.vaadin.flow.uitest.ui.template.collections;
import java.util.List;
import com.vaadin.flow.component.Tag;
import com.vaadin.flow.component.dependency.JsModule;
import com.vaadin.flow.component.html.Div;
import com.vaadin.flow.component.html.NativeButton;
import com.vaadin.flow.component.polymertemplate.Pol... | UTF-8 | Java | 1,654 | java | ToggleNullListView.java | Java | [] | null | [] | package com.vaadin.flow.uitest.ui.template.collections;
import java.util.List;
import com.vaadin.flow.component.Tag;
import com.vaadin.flow.component.dependency.JsModule;
import com.vaadin.flow.component.html.Div;
import com.vaadin.flow.component.html.NativeButton;
import com.vaadin.flow.component.polymertemplate.Pol... | 1,654 | 0.683192 | 0.683192 | 44 | 36.590908 | 26.099737 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.545455 | false | false | 12 |
8608d906ad57c756dc65e7d72b7e715e89cd4acb | 23,261,542,891,962 | b5e4bdec3623d4643b355ac29ceed9a387c996c0 | /app/src/main/java/network/kotlin/flow9/net/networkbasic/network/request/NetworkRequest.java | 72f2dd4589fe3394cf93d73423bcce4ff80ae112 | [] | no_license | qskeksq/Android_NetworkBasic | https://github.com/qskeksq/Android_NetworkBasic | 5ee44787be29b02c20a959e689e9c1ead0a7edc6 | bb5d79b416d4a619aadb03135bb4fe3affdc84ab | refs/heads/master | 2020-03-21T23:48:22.677000 | 2018-06-30T00:25:16 | 2018-06-30T00:25:16 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package network.kotlin.flow9.net.networkbasic.network.request;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import network.kotlin.flow9.net.networkbasic.network.NetworkManager;
publi... | UTF-8 | Java | 4,122 | java | NetworkRequest.java | Java | [] | null | [] | package network.kotlin.flow9.net.networkbasic.network.request;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import network.kotlin.flow9.net.networkbasic.network.NetworkManager;
publi... | 4,122 | 0.562469 | 0.559446 | 144 | 26.569445 | 20.834217 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.409722 | false | false | 12 |
9e8ba7c7c93056de3e15fd8d0b039b197c6e2275 | 34,248,069,224,515 | 6234cfe452bd66fd60d743edd05f4288342a60ea | /app/src/main/java/com/hotniao/live/activity/account/HnUserBillEarningActivity.java | ba15226a93c2a64e8ea08b846ed6536e6f07f6d5 | [] | no_license | WHX979454518/liveshoping | https://github.com/WHX979454518/liveshoping | 3e2aee0b51fbf290dfd28047d74daba0329e1322 | 0b8edc99733e9ad85ef2ff8baeb3a8d919296f7c | refs/heads/master | 2022-11-27T01:17:27.685000 | 2020-08-01T03:13:30 | 2020-08-01T03:13:30 | 284,173,182 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hotniao.live.activity.account;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.TextView;
import androidx.appcompat.widget.Toolbar;
import androidx.fragment.app.Fragment;
import androidx.viewpager.widget.ViewPager;
import com.alibaba.android.arouter... | UTF-8 | Java | 7,713 | java | HnUserBillEarningActivity.java | Java | [
{
"context": " rights reserved.\n * 项目名称:红鸟电商\n * 类描述:收益详情\n * 创建人:mj\n * 创建时间:2017/3/6 16:16\n * 修改人:\n * 修改时间:2017/3/6 1",
"end": 1558,
"score": 0.9513116478919983,
"start": 1556,
"tag": "USERNAME",
"value": "mj"
}
] | null | [] | package com.hotniao.live.activity.account;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.TextView;
import androidx.appcompat.widget.Toolbar;
import androidx.fragment.app.Fragment;
import androidx.viewpager.widget.ViewPager;
import com.alibaba.android.arouter... | 7,713 | 0.637979 | 0.633169 | 243 | 29.794239 | 27.526995 | 159 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.485597 | false | false | 12 |
1d4b90ecd9b518496ba2a5fdbea9b840f8be247d | 2,834,678,481,078 | 7a428c7bcc5c9f07ea8acc73741b6681ac7ed870 | /src/h31_s/Direction.java | 87320879873061adeab2c64ca6f589433f90c125 | [] | no_license | 1noseA/algorithm | https://github.com/1noseA/algorithm | 111b6d27fe4c66944f7082e36f49e7033e6fadbe | 4614aa5f10f0c61e2d4e09fd017268003a2ec2bf | refs/heads/master | 2023-03-21T17:51:09.535000 | 2021-03-14T10:37:32 | 2021-03-14T10:37:32 | 326,337,262 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package h31_s;
/**
* 方角
*/
public enum Direction {
NORTH(0, -1), EAST(1,0), SOURTH(0, 1), WEST(-1, 0);
public int dx, dy;
private Direction(int dx, int dy) {
this.dx = dx;
this.dy = dy;
}
// クラスメソッドvaluesは、この列挙型で定義している列挙定数を、
// 定義順に格納した配列を返す。
// メソッドordinalは、この列挙定数の定義順(先頭は0)を返す。
public Direction left(... | UTF-8 | Java | 571 | java | Direction.java | Java | [] | null | [] | package h31_s;
/**
* 方角
*/
public enum Direction {
NORTH(0, -1), EAST(1,0), SOURTH(0, 1), WEST(-1, 0);
public int dx, dy;
private Direction(int dx, int dy) {
this.dx = dx;
this.dy = dy;
}
// クラスメソッドvaluesは、この列挙型で定義している列挙定数を、
// 定義順に格納した配列を返す。
// メソッドordinalは、この列挙定数の定義順(先頭は0)を返す。
public Direction left(... | 571 | 0.616092 | 0.581609 | 22 | 18.772728 | 21.038778 | 67 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.318182 | false | false | 12 |
82eab5123215d37a1bf90d8e28579e8609bb85e1 | 901,943,183,358 | b1c6b6fda9a40b9ae1d1811db13d90d6bb38bb1a | /src/com/asiainfo/cs/sr/config/service/impl/SrTypeGroupClientSVImpl.java | 47d4b647f86bc2ae9bcf855a7313c38155183636 | [] | no_license | feiniaoying/Inet | https://github.com/feiniaoying/Inet | e7ef42ca9578f463d11e0faca2308afa0804019e | 5cb1918f7ba03024dc3b20aa32254abb2f3ec2fd | refs/heads/master | 2016-06-06T20:48:56.142000 | 2016-03-05T14:50:58 | 2016-03-05T14:50:58 | 53,204,179 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.asiainfo.cs.sr.config.service.impl;
import java.rmi.RemoteException;
import java.sql.Timestamp;
import java.util.ArrayList;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import com.ai.appframe2.service.ServiceFactory;
import com.asiainfo.cs.base.cboss.frame.utils.Gr... | GB18030 | Java | 6,315 | java | SrTypeGroupClientSVImpl.java | Java | [
{
"context": "iainfo.cs.sr.util.CommonUtil;\n\n/**\n * \n * @author 王小波\n * @date 2014-9-25 下午03:00:40\n */\npublic class Sr",
"end": 1132,
"score": 0.9909631609916687,
"start": 1129,
"tag": "NAME",
"value": "王小波"
},
{
"context": "编号\n\t * @return\n\t * @throws Exception \n\t * @auth... | null | [] | package com.asiainfo.cs.sr.config.service.impl;
import java.rmi.RemoteException;
import java.sql.Timestamp;
import java.util.ArrayList;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import com.ai.appframe2.service.ServiceFactory;
import com.asiainfo.cs.base.cboss.frame.utils.Gr... | 6,315 | 0.751618 | 0.69703 | 157 | 37.388535 | 27.758432 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.356688 | false | false | 12 |
4647a58dc3e9fb47777f18e41e61701e382a5832 | 18,957,985,692,606 | 6ef47d69dd907e94c40344612ac2b22f037d12b6 | /student/world/util/HashCodeAccessSet.java | 0625a54f1dfba61c1a33ad83fabb4c5c29658006 | [] | no_license | EileenLiu/pandaworld | https://github.com/EileenLiu/pandaworld | c58e210a4c09ecc65aa284faef57c578343d5994 | 416c27056973bbe225e1f5fe5c2f22c1f95b3fb0 | refs/heads/master | 2021-01-23T23:14:00.813000 | 2012-12-03T00:30:35 | 2012-12-03T00:30:35 | 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 student.world.util;
import java.util.Comparator;
import java.util.TreeSet;
/**
*
* @author haro
*/
public class HashCodeAccessSet<E> extends TreeSet<E> {
public HashCodeAccessSet() {
super(new Co... | UTF-8 | Java | 1,629 | java | HashCodeAccessSet.java | Java | [
{
"context": "ator;\nimport java.util.TreeSet;\n\n/**\n *\n * @author haro\n */\npublic class HashCodeAccessSet<E> extends Tre",
"end": 207,
"score": 0.6754471063613892,
"start": 203,
"tag": "USERNAME",
"value": "haro"
}
] | null | [] | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package student.world.util;
import java.util.Comparator;
import java.util.TreeSet;
/**
*
* @author haro
*/
public class HashCodeAccessSet<E> extends TreeSet<E> {
public HashCodeAccessSet() {
super(new Co... | 1,629 | 0.56415 | 0.552486 | 50 | 31.58 | 25.377226 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.46 | false | false | 12 |
fd2817baee91a80b08314baa636f5f58aa9914a7 | 29,454,885,740,708 | dc1d0fdc669b852d02af0b13d2e8c1d280fe06ee | /rpg-persistence/src/main/java/com/endava/rpg/persistence/models/BranchEntity.java | 50dd6665c120806a27a836dad32407a3c254f669 | [] | no_license | Alex-Railean/rpg | https://github.com/Alex-Railean/rpg | 583713701fc5d15060566aa6bbfbf23510a087c1 | 6157ab84d79ab06270c3607b84890ba0d2bcb5e0 | refs/heads/master | 2021-09-18T06:35:44.117000 | 2018-07-10T21:03:08 | 2018-07-10T21:03:08 | 112,339,159 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.endava.rpg.persistence.models;
public abstract class BranchEntity implements TableMapping {
public abstract BranchEntity calculateTotalPoints();
public abstract Integer getTotalPoints();
}
| UTF-8 | Java | 212 | java | BranchEntity.java | Java | [] | null | [] | package com.endava.rpg.persistence.models;
public abstract class BranchEntity implements TableMapping {
public abstract BranchEntity calculateTotalPoints();
public abstract Integer getTotalPoints();
}
| 212 | 0.801887 | 0.801887 | 8 | 25.5 | 25.797287 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.375 | false | false | 12 |
5d200cc351b24152448d8613e745ab24d55ab4e0 | 31,885,837,229,914 | a076cf2499ba26c93778b91a57fbd47ac0d81e17 | /HW3/src/hw_3/Q24.java | f923ebaa1e73ca1991a86930776744a30d808f63 | [] | no_license | YasarEskicioglu/JavaTraining | https://github.com/YasarEskicioglu/JavaTraining | 5c0e57ee110fcb537333795c005bc188ccacb6ce | 5a3c9ecf86b52c8e90286445ee89ad7d707dde72 | refs/heads/master | 2022-10-20T14:34:28.466000 | 2020-06-20T21:44:25 | 2020-06-20T21:44:25 | 254,930,048 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package hw_3;
public class Q24 {
public static void main(String... args) {
int flavors = 30;
int eaten = 0;
// There is no break keyword in switch statement. Code complied without any obstacle.
switch (flavors) {
case 30: eaten++;
case 40: eaten+=2;
default: eaten--;
}
System.out.println(... | UTF-8 | Java | 334 | java | Q24.java | Java | [] | null | [] | package hw_3;
public class Q24 {
public static void main(String... args) {
int flavors = 30;
int eaten = 0;
// There is no break keyword in switch statement. Code complied without any obstacle.
switch (flavors) {
case 30: eaten++;
case 40: eaten+=2;
default: eaten--;
}
System.out.println(... | 334 | 0.634731 | 0.601796 | 19 | 16.578947 | 20.316744 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.789474 | false | false | 12 |
5498826948bd8bf3906d7431560fd87c7d00d411 | 188,978,610,025 | fa93c9be2923e697fb8a2066f8fb65c7718cdec7 | /sources/com/avito/android/public_profile/di/PublicProfileTrackerModule_ProvidesIsSubComponentFactory.java | 0cedeb5ea77271fadba09d1a65999ac4d8869e32 | [] | no_license | Auch-Auch/avito_source | https://github.com/Auch-Auch/avito_source | b6c9f4b0e5c977b36d5fbc88c52f23ff908b7f8b | 76fdcc5b7e036c57ecc193e790b0582481768cdc | refs/heads/master | 2023-05-06T01:32:43.014000 | 2021-05-25T10:19:22 | 2021-05-25T10:19:22 | 370,650,685 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.avito.android.public_profile.di;
import dagger.internal.Factory;
import javax.inject.Provider;
public final class PublicProfileTrackerModule_ProvidesIsSubComponentFactory implements Factory<Boolean> {
public final Provider<Boolean> a;
public PublicProfileTrackerModule_ProvidesIsSubComponentFactory... | UTF-8 | Java | 897 | java | PublicProfileTrackerModule_ProvidesIsSubComponentFactory.java | Java | [] | null | [] | package com.avito.android.public_profile.di;
import dagger.internal.Factory;
import javax.inject.Provider;
public final class PublicProfileTrackerModule_ProvidesIsSubComponentFactory implements Factory<Boolean> {
public final Provider<Boolean> a;
public PublicProfileTrackerModule_ProvidesIsSubComponentFactory... | 897 | 0.772575 | 0.772575 | 24 | 36.375 | 37.140289 | 111 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 12 |
e35d24069d32add38a1e66fb39c540b644f658ad | 32,384,053,434,233 | bd89cbdc9f94e16cf91631139ef6cde257023abf | /favoritesService/favorite-api/src/main/java/io/renren/favorite/service/FavoriteTypeService.java | 65677788f9e9040cca7bf10a34797484dcb7e3f5 | [
"Apache-2.0"
] | permissive | hejun5448/NiufenFavorites | https://github.com/hejun5448/NiufenFavorites | 71f073ea9d542f7285dd3232b91620a930ebeb65 | 66aedeaf6dfb10c88c5985b14856a6e824724ea1 | refs/heads/master | 2023-02-13T22:57:06.512000 | 2020-01-07T00:58:45 | 2020-01-07T00:58:45 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package io.renren.favorite.service;
import com.baomidou.mybatisplus.extension.service.IService;
import io.renren.common.utils.PageUtils;
import io.renren.favorite.entity.FavoriteTypeEntity;
import java.util.Map;
/**
* 收藏夹-类型
*
* @author niufen
* @email haijun917@qq.com
* @date 2019-12-26 21:29:49
*/
public int... | UTF-8 | Java | 453 | java | FavoriteTypeService.java | Java | [
{
"context": "import java.util.Map;\n\n/**\n * 收藏夹-类型\n *\n * @author niufen\n * @email haijun917@qq.com\n * @date 2019-12-26 21",
"end": 249,
"score": 0.999613881111145,
"start": 243,
"tag": "USERNAME",
"value": "niufen"
},
{
"context": "Map;\n\n/**\n * 收藏夹-类型\n *\n * @author niufen... | null | [] | package io.renren.favorite.service;
import com.baomidou.mybatisplus.extension.service.IService;
import io.renren.common.utils.PageUtils;
import io.renren.favorite.entity.FavoriteTypeEntity;
import java.util.Map;
/**
* 收藏夹-类型
*
* @author niufen
* @email <EMAIL>
* @date 2019-12-26 21:29:49
*/
public interface Fa... | 444 | 0.765237 | 0.726862 | 19 | 22.263159 | 23.18766 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.368421 | false | false | 12 |
0442332f0e8daf06a5459d6bde8759393366254a | 32,547,262,236,627 | 06b1960b3008844f71ddd2cf17c7c21bb7cb05f4 | /src/main/java/com/afan/conf/service/ConfigAdminService.java | aa37eac3790d43acb38462c9041f07aa13cd3d6c | [] | no_license | afan966/afanConf | https://github.com/afan966/afanConf | 83041b3d7528eea95a01ea3af9667eb13c90ed7b | 16f35e106d045d47c380dcf9de5e0dfd4bba0736 | refs/heads/master | 2020-03-26T08:58:15.133000 | 2018-08-14T14:10:48 | 2018-08-14T14:10:48 | 144,728,432 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.afan.conf.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.afan.conf.dao.IConfigDao;
@Service
public class ConfigAdminService {
@Autowired
IConfigDao configDao;
@Autowired
ConfigService configService;
}
| UTF-8 | Java | 309 | java | ConfigAdminService.java | Java | [] | null | [] | package com.afan.conf.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.afan.conf.dao.IConfigDao;
@Service
public class ConfigAdminService {
@Autowired
IConfigDao configDao;
@Autowired
ConfigService configService;
}
| 309 | 0.809061 | 0.809061 | 17 | 17.17647 | 18.573338 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.764706 | false | false | 12 |
2f90cf54ebac4531de50824efd2fafa7564d1458 | 987,842,540,448 | 0ad0b2c0906b248a841e68d45e8fc8b3917f6d40 | /src/main/java/Solution_215.java | 022ac5a9985e938ae86621e09f6d0245452cc51c | [] | no_license | chienmy/leetcode-java | https://github.com/chienmy/leetcode-java | af20d3df3106bf3cb427c9c840a44f7dc113b493 | f9729eb227eabce0cc934d94374acfdfca27809b | refs/heads/master | 2023-04-02T15:20:12.633000 | 2021-04-06T08:22:56 | 2021-04-06T08:22:56 | 303,556,908 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class Solution_215 {
public int findKthLargest(int[] nums, int k) {
int l = 0;
int r = nums.length - 1;
while (l < r) {
// 对标志两边分别进行处理
int pivot = partition(nums, l, r);
// 标志就是k
if (pivot == nums.length - k) {
break;
... | UTF-8 | Java | 1,345 | java | Solution_215.java | Java | [] | null | [] | public class Solution_215 {
public int findKthLargest(int[] nums, int k) {
int l = 0;
int r = nums.length - 1;
while (l < r) {
// 对标志两边分别进行处理
int pivot = partition(nums, l, r);
// 标志就是k
if (pivot == nums.length - k) {
break;
... | 1,345 | 0.394366 | 0.387738 | 47 | 24.680851 | 14.752002 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.617021 | false | false | 12 |
87a5f4320835d948904561294be402c6de8e7379 | 987,842,542,072 | 3b1391ab4ed66eecad3abbcbced17d3c417493e1 | /RomanConversion/src/main.java | ed6683514185242cfa674218af04cc8d96698323 | [] | no_license | BiYingP/RomanConversion | https://github.com/BiYingP/RomanConversion | b38ac76a7cba143bdf892a50785476159370a491 | 66f7a408d614947cd3ef2e213190d60d12a5fbb0 | refs/heads/main | 2023-01-22T05:24:42.136000 | 2020-11-18T14:33:25 | 2020-11-18T14:33:25 | 313,957,463 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.*;
public class main {
public static void main(String[] args) {
Scanner kb = new Scanner(System.in);
// String input = "";
while (true) {
try {
System.out.println("Choose Options:");
System.out.println("1): Integer to Roman");
... | UTF-8 | Java | 1,285 | java | main.java | Java | [] | null | [] | import java.util.*;
public class main {
public static void main(String[] args) {
Scanner kb = new Scanner(System.in);
// String input = "";
while (true) {
try {
System.out.println("Choose Options:");
System.out.println("1): Integer to Roman");
... | 1,285 | 0.43035 | 0.424125 | 40 | 31.125 | 20.642416 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.525 | false | false | 12 |
1cc85f406de304f76c1b09354f7a06863c317266 | 11,647,951,349,751 | ae9642f6c351a5bb9dc8bb091c92c3a78cad38ce | /src/GuessNumberHigherorLower.java | 5735d7b28de5cb0a4af3e2cfb836bbf95ec9c375 | [
"MIT"
] | permissive | VirtualChenL/LeetCode | https://github.com/VirtualChenL/LeetCode | cb9a75c5e16922eefb8c03a35ef93f09bb65f66c | 462e5c9082b0f24902be56865e8a63432d7b7484 | refs/heads/master | 2021-07-14T20:38:01.038000 | 2020-06-10T05:42:06 | 2020-06-10T05:42:06 | 158,083,276 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* 猜数字大小
* @author Administrator
*
*/
public class GuessNumberHigherorLower {
public int guessNumber(int n) {
int t = guess(n);
if(t==0){
return n;
}
int left = 1,right = n;
while(left<right)
{
int mid = left + (right-left)/2;
int x ... | UTF-8 | Java | 547 | java | GuessNumberHigherorLower.java | Java | [
{
"context": "/**\n * 猜数字大小\n * @author Administrator\n *\n */\npublic class GuessNumberHigherorLower {\n\tp",
"end": 37,
"score": 0.9693519473075867,
"start": 24,
"tag": "NAME",
"value": "Administrator"
}
] | null | [] | /**
* 猜数字大小
* @author Administrator
*
*/
public class GuessNumberHigherorLower {
public int guessNumber(int n) {
int t = guess(n);
if(t==0){
return n;
}
int left = 1,right = n;
while(left<right)
{
int mid = left + (right-left)/2;
int x ... | 547 | 0.387337 | 0.376164 | 27 | 18.888889 | 11.867582 | 44 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.518519 | false | false | 12 |
e71eb439d4e3e9a22172c0603c0167a1571e5400 | 15,341,623,248,136 | 64bc12afbce6f4243d6a1c345b54438514d197fb | /src/main/java/com/ascending/controller/CustomerController.java | 91ea70cff36a49b3e6788001fe186f36f5da6b67 | [] | no_license | cowboybebophan/SneakerShop | https://github.com/cowboybebophan/SneakerShop | 4abc522b1e65b540726be6f5689145110edc5958 | 5a55e3980f603bf6740e3feb6da8c1d8ad2e2673 | refs/heads/master | 2022-09-28T13:58:46.611000 | 2020-03-04T21:49:31 | 2020-03-04T21:49:31 | 223,996,961 | 0 | 1 | null | false | 2022-09-08T01:04:21 | 2019-11-25T16:47:03 | 2020-03-04T21:49:40 | 2022-09-08T01:04:21 | 162 | 0 | 0 | 3 | Java | false | false | package com.ascending.controller;
import com.ascending.model.Customer;
import com.ascending.service.CustomerService;
import com.fasterxml.jackson.annotation.JsonView;
import org.slf4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.annotation.CachePut;
import org... | UTF-8 | Java | 3,008 | java | CustomerController.java | Java | [] | null | [] | package com.ascending.controller;
import com.ascending.model.Customer;
import com.ascending.service.CustomerService;
import com.fasterxml.jackson.annotation.JsonView;
import org.slf4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.annotation.CachePut;
import org... | 3,008 | 0.714096 | 0.713763 | 76 | 38.578949 | 33.462967 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.644737 | false | false | 12 |
1308bdc2f5027e14b21ea8a638e7b33855e029c1 | 3,728,031,664,418 | 97386e850ed82f43e40f8c793768ae679fb76688 | /java_dev/MMS/src/com/tgyt/permissions/dao/UsersDao.java | 3519509f389de5badb5afa6dc364c4d465dab35f | [] | no_license | cnjeffliu/java | https://github.com/cnjeffliu/java | dcf065061052eed40bd8c3338b1684ce10b383ce | d22f402b1487a81605992244f2968cc41967062b | refs/heads/master | 2016-09-14T04:51:02.073000 | 2016-05-28T05:04:23 | 2016-05-28T05:04:23 | 59,579,939 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.tgyt.permissions.dao;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import org.springframework.stereotype.Repository;
import com.tgyt.common.tools.page.Pagination;
import com.tgyt.framework.dao.hibernate.Finder;
import com.tg... | UTF-8 | Java | 7,060 | java | UsersDao.java | Java | [
{
"context": "me: UsersDao \n * @Description: 用户Dao层\n * @author ligangying ligangying1987@163.com \n * @date 2011-9-26 上午9:5",
"end": 556,
"score": 0.9734885692596436,
"start": 546,
"tag": "USERNAME",
"value": "ligangying"
},
{
"context": "o \n * @Description: 用户Dao层\n * @autho... | null | [] | package com.tgyt.permissions.dao;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import org.springframework.stereotype.Repository;
import com.tgyt.common.tools.page.Pagination;
import com.tgyt.framework.dao.hibernate.Finder;
import com.tg... | 7,033 | 0.617682 | 0.61369 | 264 | 24.621212 | 22.888409 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.291667 | false | false | 12 |
b2e8299c16515b71a3226b8e066307127939823e | 8,916,352,151,674 | c451e81ee8a7663810657c2017f50b115af0f7a5 | /src/com/inventory/payroll/dao/OverTimeDao.java | 5ef30b8e8c47b3462a9b1b142a23e4eddfaa9c8e | [] | no_license | mahendrahubrum/REVERP | https://github.com/mahendrahubrum/REVERP | 0eb4154c2d48c5cea6946f5355992acb9a971c22 | fbf469dcb6088ecd361311a124995d440f39250a | refs/heads/master | 2020-04-02T13:18:59.378000 | 2018-10-25T05:56:46 | 2018-10-25T05:56:46 | 154,476,197 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.inventory.payroll.dao;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import com.inventory.payroll.model.OverTimeModel;
import com.webspark.dao.SHibernate;
/**
* @author sangeeth
* @date 17-Nov-2015
* @Project REVERP
*/
@SuppressWarnings("serial")
public class OverTi... | UTF-8 | Java | 2,041 | java | OverTimeDao.java | Java | [
{
"context": "mport com.webspark.dao.SHibernate;\n\n/**\n * @author sangeeth\n * @date 17-Nov-2015\n * @Project REVERP\n */\n\n@Sup",
"end": 227,
"score": 0.9996678233146667,
"start": 219,
"tag": "USERNAME",
"value": "sangeeth"
}
] | null | [] | package com.inventory.payroll.dao;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import com.inventory.payroll.model.OverTimeModel;
import com.webspark.dao.SHibernate;
/**
* @author sangeeth
* @date 17-Nov-2015
* @Project REVERP
*/
@SuppressWarnings("serial")
public class OverTi... | 2,041 | 0.649192 | 0.646252 | 111 | 17.396397 | 19.525579 | 112 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.477478 | false | false | 12 |
c41b8d1835f192ae5082631cfd66f8028b28907c | 8,787,503,087,814 | 6235d3b43a49a6d7fea4344300874e8e6853f020 | /src/main/java/com/ss/android/newmedia/thread/AppActionThread.java | c06cf674144066b0255717d4c58bf79b841786ad | [] | no_license | junges521/src_awe | https://github.com/junges521/src_awe | a12bcfeb6c62bd55afba7147b83f4e3df8797019 | cff4a5e230f3346f493df79744e6f2a6f20a47e2 | refs/heads/master | 2020-07-13T19:37:36.253000 | 2019-08-29T10:47:51 | 2019-08-29T10:47:51 | 205,140,726 | 0 | 0 | null | true | 2019-08-29T10:41:58 | 2019-08-29T10:41:58 | 2019-08-29T08:24:29 | 2019-08-23T11:31:27 | 177,015 | 0 | 0 | 0 | null | false | false | package com.ss.android.newmedia.thread;
import android.content.Context;
import android.net.Uri;
import com.bytedance.common.utility.StringUtils;
import com.bytedance.retrofit2.Call;
import com.bytedance.retrofit2.http.GET;
import com.bytedance.retrofit2.http.MaxLength;
import com.bytedance.retrofit2.http.Url;
import c... | UTF-8 | Java | 3,413 | java | AppActionThread.java | Java | [] | null | [] | package com.ss.android.newmedia.thread;
import android.content.Context;
import android.net.Uri;
import com.bytedance.common.utility.StringUtils;
import com.bytedance.retrofit2.Call;
import com.bytedance.retrofit2.http.GET;
import com.bytedance.retrofit2.http.MaxLength;
import com.bytedance.retrofit2.http.Url;
import c... | 3,413 | 0.551128 | 0.533255 | 93 | 35.698925 | 26.566526 | 183 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.795699 | false | false | 12 |
9ba936225ef41744579ae882b8d7a44019fde087 | 14,766,097,605,142 | ef527b45fd05e723a920fa3b5c87240d69bd1214 | /src/JDBC07_26_country_city/dao/CityDao.java | bf36102ee562c7eb99f784bfbf206c5a034a1a24 | [] | no_license | Cherish-xu/MySQL_JDBC_All | https://github.com/Cherish-xu/MySQL_JDBC_All | ef98ad04d08bb8512c43d442f6f64f752154674f | f4bd0805de165f0af44f76e049bf085969fa6b93 | refs/heads/master | 2021-03-18T09:26:46.481000 | 2020-03-13T12:15:24 | 2020-03-13T12:15:24 | 247,062,865 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package JDBC07_26_country_city.dao;
public class CityDao {
}
| UTF-8 | Java | 62 | java | CityDao.java | Java | [] | null | [] | package JDBC07_26_country_city.dao;
public class CityDao {
}
| 62 | 0.758065 | 0.693548 | 4 | 14.5 | 14.739403 | 35 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.25 | false | false | 12 |
dcfb1c41096ca8c202c6a3b4f6d2c10be997f193 | 9,363,028,755,800 | 2daeeccfdab41402efe837f0c44d52fc6cc4d336 | /src/main/java/com/payline/payment/ppewshop/utils/PluginUtils.java | b8f02577d67768a9d8182efa50fd90115fd0fa63 | [] | no_license | PaylinePaymentMethod/payment-method-ppewshop | https://github.com/PaylinePaymentMethod/payment-method-ppewshop | 6e49cce2bea4a006254a6ffc262f394b3bd248bb | 3ee6bf7ce5f18cb72db014b626665c9590d2c127 | refs/heads/master | 2021-07-04T04:08:09.188000 | 2021-05-06T12:29:17 | 2021-05-06T12:29:17 | 232,767,034 | 0 | 1 | null | false | 2021-04-13T09:14:43 | 2020-01-09T09:05:06 | 2020-11-24T14:36:38 | 2021-04-13T09:14:42 | 137 | 0 | 1 | 0 | Java | false | false | package com.payline.payment.ppewshop.utils;
import com.payline.payment.ppewshop.exception.PluginException;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.nio.charset.Standar... | UTF-8 | Java | 2,291 | java | PluginUtils.java | Java | [] | null | [] | package com.payline.payment.ppewshop.utils;
import com.payline.payment.ppewshop.exception.PluginException;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.nio.charset.Standar... | 2,291 | 0.665648 | 0.65299 | 75 | 29.559999 | 29.578028 | 164 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.413333 | false | false | 12 |
fc07a790ec75ed14eb6628a64e97bf5a71bf2d98 | 26,113,401,188,829 | 77441a16f259cf60a28d0dca76a14a5afc2f16a9 | /src/main/java/org/redex/backend/controller/scheduledService/ScheduledServiceService.java | b30f23c6b96f49f849bc019310d6f6ce4f7d5867 | [] | no_license | johannMorales/redex-backend | https://github.com/johannMorales/redex-backend | 7ae8b034b43b4cc8f387584f74a5442723356289 | 1bf35278716ffa6fff9fae889e77577c340a7f51 | refs/heads/master | 2021-06-19T11:30:10.477000 | 2019-12-06T16:55:50 | 2019-12-06T16:55:50 | 152,361,541 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.redex.backend.controller.scheduledService;
public interface ScheduledServiceService {
public void salidaVuelos();
public void llegadaVuelos();
public void generarRutas();
}
| UTF-8 | Java | 198 | java | ScheduledServiceService.java | Java | [] | null | [] | package org.redex.backend.controller.scheduledService;
public interface ScheduledServiceService {
public void salidaVuelos();
public void llegadaVuelos();
public void generarRutas();
}
| 198 | 0.772727 | 0.772727 | 7 | 27.285715 | 18.575823 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.571429 | false | false | 12 |
a4459aa34cbd2f5fa23d743674cb1e163b1fcfa7 | 32,478,542,751,571 | bcea35c700bfd8ac5e345ba62e740f453f77e185 | /Client/src/gui/listeners/RemoveOrganisationDialogListener.java | b2ccf7fd471ab2e426de80d96d25183acb6aa9b4 | [] | no_license | charliecooper45/recruitment-client | https://github.com/charliecooper45/recruitment-client | ef942104da44ab174f067a4edad199461869e6e9 | b3f5f6cdae11b4148767638f318aec8bf87aa397 | refs/heads/master | 2020-06-08T15:24:54.134000 | 2014-12-20T15:39:06 | 2014-12-20T15:39:06 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package gui.listeners;
import gui.ConfirmDialogType;
import gui.DialogType;
import gui.ErrorDialogType;
import gui.MessageDialogType;
import gui.PanelType;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.rmi.RemoteException;
import java.util.List;
import javax.swing.... | UTF-8 | Java | 2,758 | java | RemoveOrganisationDialogListener.java | Java | [
{
"context": "ts on the remove organisation dialog. \r\n * @author Charlie\r\n */\r\npublic class RemoveOrganisationDialogListen",
"end": 551,
"score": 0.9997556209564209,
"start": 544,
"tag": "NAME",
"value": "Charlie"
}
] | null | [] | package gui.listeners;
import gui.ConfirmDialogType;
import gui.DialogType;
import gui.ErrorDialogType;
import gui.MessageDialogType;
import gui.PanelType;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.rmi.RemoteException;
import java.util.List;
import javax.swing.... | 2,758 | 0.715736 | 0.715373 | 79 | 32.911392 | 30.303608 | 121 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.443038 | false | false | 12 |
6a290d179d5a5f49ecbb223d6f27bb20549ab7c9 | 3,856,880,695,853 | 5602834d6ceb24792fae3e53b8432385ee67c94b | /vuze/org/gudy/azureus2/ui/swt/views/table/impl/FakeTableCell.java | e8a10067a3af61d5483623ac4a131df88c065d6a | [] | no_license | alevy/comet | https://github.com/alevy/comet | 6cc7a1a53abe4c9cd27d55ed2a5dad2d28bca62e | e47c7390a757e1892a39b10e45b9188d3934c367 | refs/heads/master | 2021-01-22T05:06:17.157000 | 2010-11-10T19:31:28 | 2010-11-10T19:31:28 | 1,002,581 | 4 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Copyright (C) 2007 Aelitis, All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This p... | UTF-8 | Java | 35,997 | java | FakeTableCell.java | Java | [
{
"context": " * AELITIS, SAS au capital de 63.529,40 euros\n * 8 Allee Lenotre, La Grille Royale, 78600 Le Mesnil le Roi, France",
"end": 833,
"score": 0.9996355175971985,
"start": 820,
"tag": "NAME",
"value": "Allee Lenotre"
}
] | null | [] | /**
* Copyright (C) 2007 Aelitis, All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This p... | 35,990 | 0.700586 | 0.695252 | 1,430 | 24.172728 | 24.737677 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.185315 | false | false | 12 |
16f8c24b7a90574fd3a23074d7ce40607adb0406 | 18,786,187,009,921 | 9c1970b246eacd402559403efaf32eef83a8e3c7 | /DEVS_GROUP/src/main/java/com/devs/group/common/ssohandler/domain/vo/TokenRequestResult.java | 2954f9e161e04a1bf51af0c17e4b9fdadf905209 | [] | no_license | printf100/DEVS-GROUP-WebRTC | https://github.com/printf100/DEVS-GROUP-WebRTC | 925a86e2d7cfee8f3dafbe324445874b8cdab55a | 0616183a42c5bc18deb04a7caf46a1367221c9a7 | refs/heads/master | 2022-10-06T03:51:00.680000 | 2020-06-08T05:25:44 | 2020-06-08T05:25:44 | 264,374,210 | 3 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.devs.group.common.ssohandler.domain.vo;
import com.fasterxml.jackson.annotation.JsonProperty;
public class TokenRequestResult {
@JsonProperty("access_token")
private String accessToken;
@JsonProperty("token_type")
private String tokenType;
@JsonProperty("expires_in")
private String expriesIn;
p... | UTF-8 | Java | 2,183 | java | TokenRequestResult.java | Java | [] | null | [] | package com.devs.group.common.ssohandler.domain.vo;
import com.fasterxml.jackson.annotation.JsonProperty;
public class TokenRequestResult {
@JsonProperty("access_token")
private String accessToken;
@JsonProperty("token_type")
private String tokenType;
@JsonProperty("expires_in")
private String expriesIn;
p... | 2,183 | 0.716445 | 0.716445 | 114 | 18.149122 | 16.618122 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.666667 | false | false | 12 |
e2a1ec5a9dd0b1ad564e5dc0c40afb71f1d2d5f3 | 1,443,109,073,640 | bb5219895ff1ce0067638eaada7997c7d8286c89 | /citrix-jmeter/src/main/java/com/blazemeter/jmeter/citrix/sampler/CitrixSessionHolder.java | 3165393658913a1cb3c9b5805ade4e92ffcd58d6 | [
"Apache-2.0",
"CC-BY-3.0",
"BSD-2-Clause"
] | permissive | 3dgiordano/CitrixPlugin | https://github.com/3dgiordano/CitrixPlugin | cbc10f41e3f9b54b0b4a384388e379e481cfa530 | 5daf7dff4db170feec5fc3d1e6eb144cc05ed72a | refs/heads/master | 2022-05-25T08:39:41.794000 | 2020-01-31T08:24:53 | 2020-01-31T08:24:53 | 267,336,065 | 2 | 0 | Apache-2.0 | true | 2020-05-27T14:07:11 | 2020-05-27T14:07:11 | 2020-05-12T10:46:13 | 2020-01-31T08:25:36 | 2,881 | 0 | 0 | 0 | null | false | false | /**
*
*/
package com.blazemeter.jmeter.citrix.sampler;
import com.blazemeter.jmeter.citrix.client.CitrixClient;
/**
* Holds the Citrix Client and underlying session
*/
public class CitrixSessionHolder {
protected static final ThreadLocal<CitrixClient> LOCAL_CLIENT = new ThreadLocal<>();
/**
*
... | UTF-8 | Java | 778 | java | CitrixSessionHolder.java | Java | [] | null | [] | /**
*
*/
package com.blazemeter.jmeter.citrix.sampler;
import com.blazemeter.jmeter.citrix.client.CitrixClient;
/**
* Holds the Citrix Client and underlying session
*/
public class CitrixSessionHolder {
protected static final ThreadLocal<CitrixClient> LOCAL_CLIENT = new ThreadLocal<>();
/**
*
... | 778 | 0.634961 | 0.634961 | 36 | 20.611111 | 23.686937 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.166667 | false | false | 12 |
a6c8fd38ab1d05660677c00269005f5d17055642 | 23,854,248,407,269 | b27cb54f461f03cc06af30bdba312b242dcc42ec | /src/com/patterns/strategy/objects/Painter.java | cc7dad460cf64037ef1a2d8ae5b115c6084b2478 | [] | no_license | sahatovbatyr/design_patterns | https://github.com/sahatovbatyr/design_patterns | a327f05d28a44c7ae35bbc84dc249228833be4a4 | e49eeddcd9ea25d3cc08becf751c823934341199 | refs/heads/master | 2020-04-30T23:30:50.625000 | 2019-03-30T04:30:48 | 2019-03-30T04:30:48 | 177,145,876 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.patterns.strategy.objects;
/**
* Created by Sahatov Batyr on 22.03.2019.
*/
public class Painter {
private Shape shape;
public void setShape(Shape shape) {
this.shape = shape;
}
public void draw(){
shape.draw();
}
} | UTF-8 | Java | 268 | java | Painter.java | Java | [
{
"context": " com.patterns.strategy.objects;\n\n/**\n * Created by Sahatov Batyr on 22.03.2019.\n */\npublic class Painter {\n pri",
"end": 71,
"score": 0.9998530745506287,
"start": 58,
"tag": "NAME",
"value": "Sahatov Batyr"
}
] | null | [] | package com.patterns.strategy.objects;
/**
* Created by <NAME> on 22.03.2019.
*/
public class Painter {
private Shape shape;
public void setShape(Shape shape) {
this.shape = shape;
}
public void draw(){
shape.draw();
}
} | 261 | 0.61194 | 0.58209 | 16 | 15.8125 | 14.908969 | 42 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.25 | false | false | 12 |
7447013c15ec36c33f168f71bafd2c415c158f4e | 5,677,946,815,076 | e5144d50b25e8c75d7f20afc5b4b61d09048c03c | /gmall-interface/src/main/java/com/atguigu/gmall0508/service/PaymentService.java | 8a1df6d883af831b99a0403a2e538fe00a81d75d | [] | no_license | famousMonkey/gmall0508 | https://github.com/famousMonkey/gmall0508 | 0f72a87514780ce6296a6e22b1d9c7dbbebbea78 | c4ff7931ec385f6c372ebe7f4fce234d04aa886b | refs/heads/master | 2022-09-15T16:19:19.704000 | 2019-07-07T10:32:57 | 2019-07-07T10:35:17 | 148,287,033 | 0 | 0 | null | false | 2022-09-01T23:09:37 | 2018-09-11T08:41:09 | 2019-07-07T11:23:27 | 2022-09-01T23:09:34 | 7,742 | 0 | 0 | 4 | CSS | false | false | package com.atguigu.gmall0508.service;
import com.atguigu.gmall0508.bean.PaymentInfo;
public interface PaymentService {
public void savyPaymentInfo(PaymentInfo paymentInfo);
public PaymentInfo getPaymentInfo(PaymentInfo paymentInfoQuery);
public void updatePaymentInfo(PaymentInfo paymentInfo);
public... | UTF-8 | Java | 482 | java | PaymentService.java | Java | [] | null | [] | package com.atguigu.gmall0508.service;
import com.atguigu.gmall0508.bean.PaymentInfo;
public interface PaymentService {
public void savyPaymentInfo(PaymentInfo paymentInfo);
public PaymentInfo getPaymentInfo(PaymentInfo paymentInfoQuery);
public void updatePaymentInfo(PaymentInfo paymentInfo);
public... | 482 | 0.817427 | 0.80083 | 14 | 33.42857 | 31.923378 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.642857 | false | false | 12 |
d2fa46390a32e124c9cfe61c0cbe8d75e6d92d84 | 16,381,005,267,728 | ab41927a9b1b63c08a5f7003269e9482c1445739 | /SimulatorSpecificationLanguage/src/ssl/impl/TestcaseImpl.java | 7234442c13a93c201df74ebe4dc2d4ca1a6798dc | [] | no_license | louismrose/ttc2011 | https://github.com/louismrose/ttc2011 | bcca3299875b8c41d4b85e53c75ac4d6b099e6e2 | 8456184f4e1b8c1367aa80ba58cf97f7c18997bd | refs/heads/master | 2020-06-02T09:29:29.770000 | 2011-09-05T11:07:46 | 2011-09-05T11:07:46 | 1,899,623 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* <copyright>
* </copyright>
*
* $Id$
*/
package ssl.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import... | UTF-8 | Java | 8,740 | java | TestcaseImpl.java | Java | [] | null | [] | /**
* <copyright>
* </copyright>
*
* $Id$
*/
package ssl.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import... | 8,740 | 0.649428 | 0.649428 | 338 | 24.857988 | 26.494343 | 130 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.029586 | false | false | 12 |
daecdb0517448bd861357ea1c3b53cae75cebeee | 10,093,173,194,042 | 05c9b2ae7f1220a61f04709a0856aa4cb871d5e0 | /Neodatis/src/daos/PersonaDAO.java | 8cc1aeb08f574320d2865a0fc002af8a7637e504 | [] | no_license | roberGzt/neodatis | https://github.com/roberGzt/neodatis | a2ec363e9ae03030bf6f9956b3c701e023fe78fc | 251aa598ff501f0fbd7217411a27203560bf26a7 | refs/heads/master | 2021-01-19T00:36:16.054000 | 2017-04-07T17:06:51 | 2017-04-07T17:06:51 | 87,016,531 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package daos;
import java.util.Collection;
import entidades.Persona;
public interface PersonaDAO extends DAO<Persona>
{
public Collection<Persona> getPersonas();
public Collection<Persona> getPersonasConNombre(String nombre);
public Collection<Persona> getPersonasConNombreEmpezadoEn(char c);
public Collection<P... | UTF-8 | Java | 537 | java | PersonaDAO.java | Java | [] | null | [] | package daos;
import java.util.Collection;
import entidades.Persona;
public interface PersonaDAO extends DAO<Persona>
{
public Collection<Persona> getPersonas();
public Collection<Persona> getPersonasConNombre(String nombre);
public Collection<Persona> getPersonasConNombreEmpezadoEn(char c);
public Collection<P... | 537 | 0.836127 | 0.836127 | 15 | 34.799999 | 31.783014 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.133333 | false | false | 12 |
d2ef39c9dc4ecd251f1256a68de3623765db06ed | 7,894,149,949,125 | 392881442f5aedbe01287cbfab6985a28f25f6fb | /src/main/java/com/atguigu/simplefactory/pizza/CheesePizza.java | 2b35f02b3203276e4ef9a831987a07b8607787a4 | [] | no_license | UnbeatableLeslie/pattern | https://github.com/UnbeatableLeslie/pattern | c80c402f4f9a650f3e49e3b7baa03bfb5bb417f2 | 46b28e2003f565cc80046528daee67cb4e6e0f3d | refs/heads/master | 2023-03-14T05:58:34.020000 | 2021-02-28T14:20:37 | 2021-02-28T14:20:37 | 306,812,749 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.atguigu.simplefactory.pizza;
/**
* @Author pengheng
* @Date 2021/2/28 19:23
* @Remark
*/
public class CheesePizza extends Pizza{
@Override
public void prepare() {
setName("芝士味披萨");
System.out.println(name+"preparing");
}
}
| UTF-8 | Java | 278 | java | CheesePizza.java | Java | [
{
"context": "e com.atguigu.simplefactory.pizza;\n\n/**\n * @Author pengheng\n * @Date 2021/2/28 19:23\n * @Remark\n */\npublic cl",
"end": 65,
"score": 0.9696378707885742,
"start": 57,
"tag": "USERNAME",
"value": "pengheng"
}
] | null | [] | package com.atguigu.simplefactory.pizza;
/**
* @Author pengheng
* @Date 2021/2/28 19:23
* @Remark
*/
public class CheesePizza extends Pizza{
@Override
public void prepare() {
setName("芝士味披萨");
System.out.println(name+"preparing");
}
}
| 278 | 0.634328 | 0.593284 | 14 | 18.142857 | 14.980259 | 45 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.214286 | false | false | 12 |
7c50e8ccaacbec50c276a7b8ca3e756e362b3cf2 | 32,212,254,764,200 | 9039c70dc8c2e54c6d5bad88a00790c638e2407f | /src/main/java/com/genability/client/types/CalendarEventDate.java | d7c705698d290cc3bd747250a241f7ea0a0585cc | [
"MIT"
] | permissive | Genability/genability-java | https://github.com/Genability/genability-java | 6135edb3eba44a615da2fed3bccfacb2443f8cb9 | 1cea0581a51da410a4e07cf6b653fd57251b51e0 | refs/heads/main | 2022-11-24T18:16:15.205000 | 2022-11-17T20:30:59 | 2022-11-17T20:30:59 | 3,147,767 | 3 | 6 | NOASSERTION | false | 2022-11-17T20:28:04 | 2012-01-10T19:13:16 | 2022-11-17T11:45:11 | 2022-11-17T20:28:03 | 6,152 | 6 | 8 | 2 | Java | false | false | package com.genability.client.types;
import org.joda.time.DateTime;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(Include.NON_NULL... | UTF-8 | Java | 2,004 | java | CalendarEventDate.java | Java | [] | null | [] | package com.genability.client.types;
import org.joda.time.DateTime;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(Include.NON_NULL... | 2,004 | 0.736527 | 0.736527 | 110 | 17.218182 | 18.737606 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.054545 | false | false | 12 |
3ab04f6b4fcbdd507fcbcab0b0962ad0390d3493 | 17,669,495,457,141 | 7731f417107b20a649801d936f51c12838b56a20 | /module_publicaccount/src/main/java/synway/module_publicaccount/until/ClearTipUtils.java | d3b8d4b98cadb41624a64df14f54ecff02e84826 | [] | no_license | wuliang6661/app2.0 | https://github.com/wuliang6661/app2.0 | 19125181d4f431f03e644ab5293d402277def646 | 2c3ddbaa1dc7f9d0d7ba5c5443854c747b6f7d30 | refs/heads/master | 2023-06-04T15:21:53.375000 | 2021-06-23T08:41:37 | 2021-06-23T08:41:37 | 258,925,054 | 3 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package synway.module_publicaccount.until;
import android.content.Context;
public class ClearTipUtils {
public static void clearTip(Context context, String publicAccountID) {
//TODO: 清除未读
return;
// 清除 消息提醒
// SQLiteDatabase db = null;
// try {
//
// // db = SQL... | UTF-8 | Java | 1,382 | java | ClearTipUtils.java | Java | [] | null | [] | package synway.module_publicaccount.until;
import android.content.Context;
public class ClearTipUtils {
public static void clearTip(Context context, String publicAccountID) {
//TODO: 清除未读
return;
// 清除 消息提醒
// SQLiteDatabase db = null;
// try {
//
// // db = SQL... | 1,382 | 0.566563 | 0.566563 | 39 | 32.128204 | 28.444439 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.461538 | false | false | 12 |
6c8c140ce31d4d47a891e24723df516306790109 | 37,967,510,924,003 | a83d57bd3a7cab3f82a788756a0518c39b1d35f0 | /src/main/java/com/meganlee/BinaryTreeInorderTraversal.java | c0f64fcf2a385d6a64c42ef07de75f5a37b34358 | [] | no_license | meganlee-id/leetcode | https://github.com/meganlee-id/leetcode | 34c47c6006da8215eca8e2666996db817bcddee5 | 15bd37e23c3147ce093b8bd1e0aba1aa4e73bfc4 | refs/heads/master | 2022-05-25T05:09:31.695000 | 2022-05-06T06:20:09 | 2022-05-06T06:20:09 | 76,831,905 | 1 | 0 | null | false | 2022-05-06T05:58:52 | 2016-12-19T05:46:06 | 2022-05-06T05:29:15 | 2022-05-06T05:58:52 | 1,166 | 0 | 0 | 2 | Java | false | false | package com.meganlee;
import java.util.*;
public class BinaryTreeInorderTraversal {
//----------------- Solution 1 ------------------//
// recursion
public List<Integer> inorderTraversal(TreeNode root) {
List<Integer> res = new ArrayList();
helper(root, res);
return res;
}
... | UTF-8 | Java | 2,638 | java | BinaryTreeInorderTraversal.java | Java | [] | null | [] | package com.meganlee;
import java.util.*;
public class BinaryTreeInorderTraversal {
//----------------- Solution 1 ------------------//
// recursion
public List<Integer> inorderTraversal(TreeNode root) {
List<Integer> res = new ArrayList();
helper(root, res);
return res;
}
... | 2,638 | 0.435557 | 0.431387 | 80 | 31.987499 | 19.103333 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.45 | false | false | 12 |
fec415fb3457e428ae511bdea8c526ad71f16e42 | 38,963,943,328,190 | bd699cdad6b029df8015cc04f066d8bee423b5ee | /src/main/java/com/servicio/UserService.java | c8150ad7b73b133b5c67066f9c1f6c82c6b0c35a | [] | no_license | VictorRuizChambi/SisCliv-Sistema_de_Clinica_Veterinaria | https://github.com/VictorRuizChambi/SisCliv-Sistema_de_Clinica_Veterinaria | feda07dabdf9c61f319b00b99c652fd5f9a4d4fa | 8a386ac5604bc7691ce8746d66afc1f5c5950fbc | refs/heads/master | 2021-01-10T15:25:58.354000 | 2016-01-12T17:33:39 | 2016-01-12T17:33:39 | 49,516,515 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.servicio;
import java.util.List;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
import com.modelo.Usuario;
@Transactional(propagation = Propagation.REQUIRED)
public interface UserService {
public List<Usuario>... | UTF-8 | Java | 652 | java | UserService.java | Java | [] | null | [] | package com.servicio;
import java.util.List;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
import com.modelo.Usuario;
@Transactional(propagation = Propagation.REQUIRED)
public interface UserService {
public List<Usuario>... | 652 | 0.805215 | 0.805215 | 20 | 30.6 | 23.258118 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1 | false | false | 12 |
cf26b23db5a0e47aa4f13a4554a8b1613c84077d | 35,012,573,448,402 | 06e618b1515c23c59c3a0b7766b1334f8ec6cf08 | /src/main/java/com/horsemenoftheocics/brightzone/controller/admin/AdminCourseController.java | a95fbdebb425ff2d005bf92777b35b85eeea2bd5 | [
"MIT"
] | permissive | ruizi/BrightZone-Backend | https://github.com/ruizi/BrightZone-Backend | fbe534e7a08ab2137d041647815726257f00e091 | a91ebada837920fd33924e2fbaa1d14187c0ac3e | refs/heads/master | 2023-02-10T13:13:26.516000 | 2021-01-05T15:09:09 | 2021-01-05T15:09:09 | 327,032,329 | 0 | 0 | null | true | 2021-01-05T15:03:25 | 2021-01-05T15:00:05 | 2021-01-05T15:00:07 | 2021-01-05T15:03:24 | 585 | 0 | 0 | 0 | null | false | false | package com.horsemenoftheocics.brightzone.controller.admin;
import com.horsemenoftheocics.brightzone.entity.Course;
import com.horsemenoftheocics.brightzone.service.AdminCourseService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domai... | UTF-8 | Java | 7,035 | java | AdminCourseController.java | Java | [] | null | [] | package com.horsemenoftheocics.brightzone.controller.admin;
import com.horsemenoftheocics.brightzone.entity.Course;
import com.horsemenoftheocics.brightzone.service.AdminCourseService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domai... | 7,035 | 0.676901 | 0.674627 | 190 | 36.026318 | 33.425713 | 133 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.431579 | false | false | 12 |
3066462c8d4c6d11f09e2699ff5c4d4306c9c59d | 37,074,157,729,287 | 1430e607b10fc703fb78c63dbd3dbc0543993ee6 | /Todo/src/main/java/service/menu/UserMenu.java | f39c35c934b1e858cc07a3445d322a86ad975ebe | [] | no_license | aminty/TODO-App | https://github.com/aminty/TODO-App | 3cb359fafe71d68498a4e20dd6612a888341f19d | 299c9435ca4fa9a14fd916e831ddc97d8dc75778 | refs/heads/main | 2023-07-05T06:00:04.786000 | 2021-08-10T13:04:21 | 2021-08-10T13:04:21 | 394,199,154 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package service.menu;
import entity.Activity;
import entity.User;
import entity.enumeration.ActivityStatus;
import service.ApplicationObject;
import service.Constant;
import service.PrintMessage;
import service.sorter.SortByDate;
import service.sorter.SortByName;
import service.sorter.SortByStatus;
import java.util.... | UTF-8 | Java | 5,693 | java | UserMenu.java | Java | [
{
"context": ")) Menu.runPublicMenu();\n user.setPassword(password);\n ApplicationObject.getUserRepo().insert(",
"end": 1562,
"score": 0.6631317138671875,
"start": 1554,
"tag": "PASSWORD",
"value": "password"
},
{
"context": "Constant.INVALID_INPUT);\n user.setUs... | null | [] | package service.menu;
import entity.Activity;
import entity.User;
import entity.enumeration.ActivityStatus;
import service.ApplicationObject;
import service.Constant;
import service.PrintMessage;
import service.sorter.SortByDate;
import service.sorter.SortByName;
import service.sorter.SortByStatus;
import java.util.... | 5,697 | 0.594239 | 0.591955 | 149 | 37.208054 | 30.697763 | 162 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.637584 | false | false | 12 |
deb205692777702f6cd7ca66818099e8ae24b3e3 | 37,426,345,053,643 | 6743d32f8efed002721279bfc11ea7e43b67b825 | /src/main/java/bd2/Muber/services/bi/PuntajesServiceBI.java | cf2564991dd5d386111d40729b3dc8d821eb3d1b | [] | no_license | parinisantiago/muber | https://github.com/parinisantiago/muber | 20c82872a7c2bb3e80d63e5d86f85eee12a246c1 | b05be65d1e643e93b2fa86cbd0ff97994d9f18e9 | refs/heads/master | 2022-04-28T09:54:31.598000 | 2017-06-29T19:49:08 | 2017-06-29T19:49:08 | 87,478,623 | 0 | 0 | null | false | 2022-03-31T19:11:12 | 2017-04-06T21:55:41 | 2017-04-06T22:07:22 | 2022-03-31T19:11:11 | 125 | 0 | 0 | 12 | Java | false | false | package bd2.Muber.services.bi;
import bd2.Muber.dto.ScoreDTO;
import bd2.Muber.model.Score;
public interface PuntajesServiceBI {
ScoreDTO calificarViaje(Score score);
}
| UTF-8 | Java | 174 | java | PuntajesServiceBI.java | Java | [] | null | [] | package bd2.Muber.services.bi;
import bd2.Muber.dto.ScoreDTO;
import bd2.Muber.model.Score;
public interface PuntajesServiceBI {
ScoreDTO calificarViaje(Score score);
}
| 174 | 0.793103 | 0.775862 | 10 | 16.4 | 16.408535 | 38 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 12 |
7bab6bbb214314510620dfddb038ac58fc51118f | 7,876,970,021,035 | 3a298a98fa25c2bebf3e2f6cf8eda707f1d2f941 | /JIEYI_LOP-PROJECT3.0/src/main/java/com/pqsoft/quartzjobs/QuartzJobListener.java | 75a29391bf5cba133a763e12e9c4cdaffbd52cf9 | [] | no_license | hongweichang/leasing | https://github.com/hongweichang/leasing | c5fb2cf5b935c0bac52fe7fbf66df6ba730eef45 | f75970a3f544ff96fa822da696c0f36ccdd37592 | refs/heads/master | 2020-02-25T13:06:59.628000 | 2016-07-22T10:07:45 | 2016-07-22T10:07:45 | 65,870,615 | 0 | 5 | null | true | 2016-08-17T02:48:41 | 2016-08-17T02:48:41 | 2016-08-17T02:48:38 | 2016-07-22T10:09:23 | 103,856 | 0 | 0 | 0 | null | null | null | /**
* TODO
* @author LUYANFENG @ 2015年5月11日
*/
package com.pqsoft.quartzjobs;
import java.text.SimpleDateFormat;
import java.util.UUID;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import org.quartz.listeners.JobListenerSupport;
import com.pqsoft.skyeye.Log;
/**
* TODO
* @a... | UTF-8 | Java | 1,202 | java | QuartzJobListener.java | Java | [
{
"context": "/**\n * TODO \n * @author LUYANFENG @ 2015年5月11日\n */\npackage com.pqsoft.quartzjobs;\n\n",
"end": 33,
"score": 0.9943801760673523,
"start": 24,
"tag": "USERNAME",
"value": "LUYANFENG"
},
{
"context": "rt com.pqsoft.skyeye.Log;\n\n/**\n * TODO \n * @author LUYANFENG @ 2... | null | [] | /**
* TODO
* @author LUYANFENG @ 2015年5月11日
*/
package com.pqsoft.quartzjobs;
import java.text.SimpleDateFormat;
import java.util.UUID;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;
import org.quartz.listeners.JobListenerSupport;
import com.pqsoft.skyeye.Log;
/**
* TODO
* @a... | 1,202 | 0.7307 | 0.718133 | 43 | 24.906977 | 26.224268 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.976744 | false | false | 12 |
0e7d0dbb6d4f89ec11ecfa49c2fbf61a95a9d0fe | 7,868,380,152,288 | b689934a58a3f83ba4aaa7502d67bd654170d3fb | /ChatServer/src/main/java/com/dylanburati/cnchat/server/ChatUtils/MariaDBReader.java | 486739334e128ead827b7bc629028cd008d1a6c5 | [
"MIT"
] | permissive | dylanburati/CNChat | https://github.com/dylanburati/CNChat | 484110106ce942be05005e6a409737be5a081b57 | e21193355a6e923acb352541d423879d01b863f2 | refs/heads/master | 2023-01-14T03:46:29.586000 | 2019-08-18T00:23:34 | 2019-08-18T00:28:20 | 72,042,719 | 0 | 0 | MIT | false | 2023-01-04T06:41:16 | 2016-10-26T20:42:41 | 2019-08-18T00:28:33 | 2023-01-04T06:41:16 | 62,510 | 0 | 0 | 14 | Java | false | false | package com.dylanburati.cnchat.server.ChatUtils;
import com.jsoniter.output.JsonStream;
import java.io.*;
import java.sql.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static java.nio.charset.StandardCharsets.UTF_8;
public class MariaDBRead... | UTF-8 | Java | 18,330 | java | MariaDBReader.java | Java | [
{
"context": "package com.dylanburati.cnchat.server.ChatUtils;\r\n\r\nimport com.json",
"end": 17,
"score": 0.7577136754989624,
"start": 12,
"tag": "USERNAME",
"value": "dylan"
},
{
"context": "package com.dylanburati.cnchat.server.ChatUtils;\r\n\r\nimport com.jsoniter.o",
"end":... | null | [] | package com.dylanburati.cnchat.server.ChatUtils;
import com.jsoniter.output.JsonStream;
import java.io.*;
import java.sql.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static java.nio.charset.StandardCharsets.UTF_8;
public class MariaDBRead... | 18,330 | 0.540589 | 0.535025 | 388 | 45.242268 | 32.938213 | 162 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.96134 | false | false | 12 |
083c2cdb3d9d4f2e576ebda389e7126f4033296a | 26,749,056,371,965 | 6c6e036fafcd11d21f4e9ed1ffeb81e1a38a0079 | /src/main/java/io/pricereader/batch/dao/ProductRepository.java | 8617ae480f6004d7fbd9e92ddb35762a98b7b7af | [] | no_license | errakeshm/price-tracker-spring-batch | https://github.com/errakeshm/price-tracker-spring-batch | a639af3c2167c9c407a29aca8e15d7cd7fc4e034 | 0572c8d684138f733f7f5f3762cc064543f17482 | refs/heads/master | 2023-03-05T14:03:17.268000 | 2021-02-13T08:45:58 | 2021-02-13T08:45:58 | 325,818,673 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package io.pricereader.batch.dao;
import java.util.Optional;
import org.springframework.data.jdbc.repository.query.Query;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
import io.pricereader.batch.entities.Product;
@Repository
public interface... | UTF-8 | Java | 479 | java | ProductRepository.java | Java | [] | null | [] | package io.pricereader.batch.dao;
import java.util.Optional;
import org.springframework.data.jdbc.repository.query.Query;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
import io.pricereader.batch.entities.Product;
@Repository
public interface... | 479 | 0.795407 | 0.793319 | 15 | 29.933332 | 25.185886 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 12 |
961161763676595b0f1f3e9e28d48cbe98ee84fa | 25,426,206,442,490 | f2607e2391c499ad0405d6adccb94ae6cc7481ab | /src/StringBuffer/reverse.java | 2450ac2b4aec5719ebbd6aa3883096394d7d4462 | [] | no_license | vasumaradiya89/CoreJava | https://github.com/vasumaradiya89/CoreJava | 18ddfac8fc87296aa9b0b08e86d9106fcb9ed456 | 61e31b8e6804fd128eba2c0994a6347b263ec4a9 | refs/heads/master | 2021-05-16T12:01:51.655000 | 2017-10-10T10:46:17 | 2017-10-10T10:46:17 | 104,869,010 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package StringBuffer;
/**
* Created by Vasu Maradiya on 10-10-2017.
*/
public class reverse
{
public static void main(String[] args) {
StringBuffer s=new StringBuffer("Hello Java");
s.reverse();
System.out.println(s);
}
}
| UTF-8 | Java | 258 | java | reverse.java | Java | [
{
"context": "package StringBuffer;\n\n/**\n * Created by Vasu Maradiya on 10-10-2017.\n */\npublic class reverse\n{\n pub",
"end": 54,
"score": 0.9998645186424255,
"start": 41,
"tag": "NAME",
"value": "Vasu Maradiya"
}
] | null | [] | package StringBuffer;
/**
* Created by <NAME> on 10-10-2017.
*/
public class reverse
{
public static void main(String[] args) {
StringBuffer s=new StringBuffer("Hello Java");
s.reverse();
System.out.println(s);
}
}
| 251 | 0.620155 | 0.589147 | 14 | 17.428572 | 18.026625 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.285714 | false | false | 12 |
add61a37ef7bb81075acb8571d3d03e3a818d9e6 | 28,570,122,516,022 | d528fe4f3aa3a7eca7c5ba4e0aee43421e60857f | /main/com/zfsoft/xgxt/rcsw/hczd/HczdDao.java | 735d20680dd84ba37b1bfb57b58bebc4c4d40b19 | [] | no_license | gxlioper/xajd | https://github.com/gxlioper/xajd | 81bd19a7c4b9f2d1a41a23295497b6de0dae4169 | b7d4237acf7d6ffeca1c4a5a6717594ca55f1673 | refs/heads/master | 2022-03-06T15:49:34.004000 | 2019-11-19T07:43:25 | 2019-11-19T07:43:25 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* <p>Coyright (R) 2014 正方软件股份有限公司。<p>
*/
package com.zfsoft.xgxt.rcsw.hczd;
import java.util.HashMap;
import java.util.List;
import xgxt.form.User;
import xgxt.utils.String.StringUtils;
import com.zfsoft.xgxt.base.dao.impl.SuperDAOImpl;
/**
* @className : HczdDao
* @description : TODO(描述这个类的作... | GB18030 | Java | 2,293 | java | HczdDao.java | Java | [
{
"context": "\r\n * @description\t: TODO(描述这个类的作用)\r\n * @author \t\t:柳俊(1282)\r\n * @date\t\t: 2017-11-22 下午04:01:21\r\n * @ver",
"end": 340,
"score": 0.9992428421974182,
"start": 338,
"tag": "NAME",
"value": "柳俊"
},
{
"context": "\r\n\r\n\t/**\r\n\t * @description\t: TODO\r\n\t * ... | null | [] | /**
* <p>Coyright (R) 2014 正方软件股份有限公司。<p>
*/
package com.zfsoft.xgxt.rcsw.hczd;
import java.util.HashMap;
import java.util.List;
import xgxt.form.User;
import xgxt.utils.String.StringUtils;
import com.zfsoft.xgxt.base.dao.impl.SuperDAOImpl;
/**
* @className : HczdDao
* @description : TODO(描述这个类的作... | 2,293 | 0.603248 | 0.557309 | 93 | 21.172043 | 19.626965 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.774194 | false | false | 12 |
4cb6e0088c8cdb115182c3720ecf53f43b0cf54a | 27,410,481,349,715 | fcdd2ca38900447abc6dd3ec3b2f86e4b8b3c488 | /java/13_08_2019_FSD/src/comm/Array/ArrayMain.java | dff97912112d2e8d7dbe57fd4f5037e13647b0ef | [] | no_license | vivek-shukla/ibm-fsd-000GGU | https://github.com/vivek-shukla/ibm-fsd-000GGU | 94d7763ee64e9cefe71918428829884945abb848 | 80c3f9d3bc460d5a1f5478f826fa529e90cff7fd | refs/heads/master | 2023-01-19T20:20:19.716000 | 2021-05-10T16:19:29 | 2021-05-10T16:19:29 | 195,184,416 | 0 | 0 | null | false | 2023-01-07T19:09:59 | 2019-07-04T06:45:23 | 2021-05-10T16:19:35 | 2023-01-07T19:09:58 | 21,244 | 0 | 0 | 71 | Java | false | false | package comm.Array;
import java.util.Arrays;
public class ArrayMain {
public static void main(String[] args)
{ int index;
// System.out.println(ArrayDemo.createArray(26));
char[] charArray = ArrayDemo.createArray(26);
// for(char item:ArrayDemo.createArray(26)) {
// System.out.print(item+" |"); // sy... | UTF-8 | Java | 700 | java | ArrayMain.java | Java | [] | null | [] | package comm.Array;
import java.util.Arrays;
public class ArrayMain {
public static void main(String[] args)
{ int index;
// System.out.println(ArrayDemo.createArray(26));
char[] charArray = ArrayDemo.createArray(26);
// for(char item:ArrayDemo.createArray(26)) {
// System.out.print(item+" |"); // sy... | 700 | 0.611429 | 0.588571 | 31 | 21.580645 | 22.222879 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.516129 | false | false | 12 |
49e400770cd9075264e9e16c131ab434f89579a3 | 30,777,735,687,667 | ca8d8ccb6b708f97350e597a14cf3244f835ec35 | /src/main/java/com/unisinsight/demo/controller/PrivilegeController.java | 56b703236ea95a3d66bb8bbf4c8f3826fb38ac25 | [] | no_license | lr635934333/demo | https://github.com/lr635934333/demo | dc9d20751a275556a7cee28f5df41f34d1ac0212 | a235a44cf1a8651166f1763041e2be4e2602a067 | refs/heads/master | 2023-05-13T10:40:04.349000 | 2022-05-09T08:39:30 | 2022-05-09T08:39:30 | 268,046,256 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.unisinsight.demo.controller;
import com.unisinsight.demo.service.PrivilegeSequenceInitDataService;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframewo... | UTF-8 | Java | 731 | java | PrivilegeController.java | Java | [] | null | [] | package com.unisinsight.demo.controller;
import com.unisinsight.demo.service.PrivilegeSequenceInitDataService;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframewo... | 731 | 0.805746 | 0.805746 | 22 | 32.227272 | 26.484871 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 12 |
618316f361716c1bb80a7713f698b50a57b99caf | 17,274,358,531,363 | ac557f0c203e8a395c031ae3cf12646f84859e51 | /src/main/java/ua/stepess/hazelcast/hazelcastdemo/Counter.java | b903441056991a80679ffebbec32a566f40a8bef | [] | no_license | Stepess/hazelcast-demo | https://github.com/Stepess/hazelcast-demo | ea5f4a1445c34052a486efc90891a8a00b5ec991 | b5cc449387ec114c5d2b138ea9d5f22be57d5c4c | refs/heads/master | 2022-04-11T22:56:56.930000 | 2020-03-27T17:27:58 | 2020-03-27T17:27:58 | 245,870,040 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ua.stepess.hazelcast.hazelcastdemo;
import com.hazelcast.client.HazelcastClient;
import com.hazelcast.client.config.ClientConfig;
import com.hazelcast.core.HazelcastInstance;
import com.hazelcast.core.IMap;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotat... | UTF-8 | Java | 4,125 | java | Counter.java | Java | [] | null | [] | package ua.stepess.hazelcast.hazelcastdemo;
import com.hazelcast.client.HazelcastClient;
import com.hazelcast.client.config.ClientConfig;
import com.hazelcast.core.HazelcastInstance;
import com.hazelcast.core.IMap;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotat... | 4,125 | 0.594667 | 0.589333 | 136 | 29.330883 | 27.765047 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.757353 | false | false | 12 |
a2ba08b1de302fd3963e8e47888e09e3252b3651 | 35,665,408,452,501 | f6d2b99a76bdcf214c8d81845d7b0e9636225eff | /ponysdk/src-defaultimpl/main/java/com/ponysdk/impl/webapplication/notification/renderer/PLabelRenderer.java | 21ea94f841d20a47e01c0eff6da958c45b1d0238 | [] | no_license | st-daristodemo/PonySDK | https://github.com/st-daristodemo/PonySDK | 805e9166bbf195183a89c0d67e13d9cda6c117a0 | 1a3f5c90cfb640ea7bf0fb5b216d04f6fbc4c8cd | refs/heads/master | 2021-01-17T05:59:39.911000 | 2015-07-02T09:04:15 | 2015-07-02T09:04:15 | 13,805,767 | 0 | 1 | null | true | 2015-03-11T14:18:16 | 2013-10-23T14:56:29 | 2014-07-11T07:54:11 | 2015-03-11T14:18:16 | 4,863 | 0 | 1 | 0 | Java | null | null |
package com.ponysdk.impl.webapplication.notification.renderer;
import com.ponysdk.ui.server.basic.PLabel;
import com.ponysdk.ui.server.basic.PWidget;
public class PLabelRenderer implements NotificationTypeRenderer<String> {
@Override
public PWidget getWidget(final String source) {
return n... | UTF-8 | Java | 350 | java | PLabelRenderer.java | Java | [] | null | [] |
package com.ponysdk.impl.webapplication.notification.renderer;
import com.ponysdk.ui.server.basic.PLabel;
import com.ponysdk.ui.server.basic.PWidget;
public class PLabelRenderer implements NotificationTypeRenderer<String> {
@Override
public PWidget getWidget(final String source) {
return n... | 350 | 0.74 | 0.74 | 12 | 27 | 25.803747 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 12 |
ecf4d154c138584240d77e7c074178877cc839d1 | 34,368,328,324,660 | 092e79c1748652585e3acaa9d4c041ed8acd07aa | /src/com/syntax/Selenium06/AuthenticationAlert.java | e5631d1336f0a1428a29856fa73b5b18c2c72ebc | [] | no_license | tugba54-test/selenium.batch | https://github.com/tugba54-test/selenium.batch | 372f30fa38d7ce6c240d0125916735f14aae344f | d9c81680653a18b1ebb80fa443f99027899310d1 | refs/heads/master | 2022-10-01T08:28:25.148000 | 2020-06-07T15:33:02 | 2020-06-07T15:33:02 | 264,053,619 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.syntax.Selenium06;
public class AuthenticationAlert {
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}
| UTF-8 | Java | 154 | java | AuthenticationAlert.java | Java | [] | null | [] | package com.syntax.Selenium06;
public class AuthenticationAlert {
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}
| 154 | 0.733766 | 0.720779 | 10 | 14.4 | 17.217434 | 41 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 12 |
86072319f4b82ed9caa881f4c11fc78d97c8533b | 6,734,508,782,391 | 127d8055cc59ec2f601b487b8b4e6d78c3e37f88 | /src/main/java/interface_test_framework_testng_maven/util/time/FluentWait.java | befc80938b6f1b7a42229d398f372d6aa76344b5 | [] | no_license | JohnHuahuaZhan/interface_test_framework_testng_maven | https://github.com/JohnHuahuaZhan/interface_test_framework_testng_maven | a0ffd0ac997d659a098f1277da9a21d1b2f8d6df | e493331b82edbf716382ef8a94dd72ff09b2c400 | refs/heads/master | 2021-06-13T00:10:56.071000 | 2020-01-19T07:06:56 | 2020-01-19T07:06:56 | 181,153,068 | 11 | 0 | null | false | 2021-04-26T18:59:20 | 2019-04-13T10:09:15 | 2020-01-19T07:07:07 | 2021-04-26T18:59:19 | 71,659 | 4 | 0 | 1 | Java | false | false | /**
* @author 菜花
* @date 20190524
*/
package interface_test_framework_testng_maven.util.time;
import com.google.common.base.Throwables;
import com.google.common.collect.ImmutableList;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import static com.google.common.base.Precondition... | UTF-8 | Java | 6,653 | java | FluentWait.java | Java | [
{
"context": "/**\n * @author 菜花\n * @date 20190524\n */\npackage interface_test_fram",
"end": 17,
"score": 0.9903392791748047,
"start": 15,
"tag": "NAME",
"value": "菜花"
}
] | null | [] | /**
* @author 菜花
* @date 20190524
*/
package interface_test_framework_testng_maven.util.time;
import com.google.common.base.Throwables;
import com.google.common.collect.ImmutableList;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import static com.google.common.base.Precondition... | 6,653 | 0.619979 | 0.617857 | 207 | 30.874395 | 28.903532 | 105 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.338164 | false | false | 12 |
4429b521f646a7f0332578d4f0489ecb59a97532 | 33,887,292,002,928 | 5b6563a505f0aea15f3ba47b37bd977632a3007b | /web/web-pressure-test/web-undertow-test/src/test/java/test/web/WebApplicationTest.java | 410504fd73ba3f951d2370f2d1decff6fc5458f4 | [] | no_license | zengxf/spring-demo | https://github.com/zengxf/spring-demo | 0c62ad20e4a743fccadf016042184acb64cb52a3 | 3393fbd37815cb612ce929821f8f3e4a78c5ea9f | refs/heads/master | 2023-08-19T03:30:22.483000 | 2023-08-15T07:10:58 | 2023-08-15T07:10:58 | 180,314,311 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package test.web;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.test.context.SpringBootTest;
import org.springfr... | UTF-8 | Java | 731 | java | WebApplicationTest.java | Java | [
{
"context": "piter.SpringExtension;\n\n/**\n * <br/>\n * Created by ZXFeng on 2023/3/4.\n */\n@SpringBootTest(webEnvironment =",
"end": 406,
"score": 0.9986678957939148,
"start": 400,
"tag": "USERNAME",
"value": "ZXFeng"
}
] | null | [] | package test.web;
import lombok.extern.slf4j.Slf4j;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.boot.test.context.SpringBootTest;
import org.springfr... | 731 | 0.740027 | 0.727648 | 29 | 24.103449 | 21.69593 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.37931 | false | false | 12 |
fd5ebf6166b6e39a033de7181a1a332c54a6a456 | 26,843,545,604,692 | b6ab94303da92faf5f0392beb0e32d361706085c | /jsonb-modeler/src/main/java/io/github/jeddict/jsonb/modeler/spec/JSONBBranchNode.java | 8c815089f031c10037f73a1763d5baf3da682616 | [
"Apache-2.0",
"EPL-2.0"
] | permissive | jeddict/jeddict | https://github.com/jeddict/jeddict | b286f9e03727fc2508d480145d49e7e2a8787b73 | 3765ebb6682d28f444e9a13daf7d2ed7ea53c515 | refs/heads/master | 2023-04-14T17:03:18.672000 | 2022-10-01T07:42:10 | 2022-10-01T07:42:10 | 48,540,562 | 314 | 46 | Apache-2.0 | false | 2023-05-31T13:01:45 | 2015-12-24T11:45:02 | 2023-04-27T09:16:11 | 2023-03-15T16:33:31 | 56,648 | 387 | 43 | 70 | Java | false | false | /**
* Copyright 2013-2022 the original author or authors from the Jeddict project (https://jeddict.github.io/).
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.ap... | UTF-8 | Java | 2,263 | java | JSONBBranchNode.java | Java | [
{
"context": "c.extend.RelationAttribute;\r\n\r\n/**\r\n *\r\n * @author jGauravGupta\r\n */\r\npublic class JSONBBranchNode extends JSONBN",
"end": 982,
"score": 0.9995768070220947,
"start": 970,
"tag": "NAME",
"value": "jGauravGupta"
}
] | null | [] | /**
* Copyright 2013-2022 the original author or authors from the Jeddict project (https://jeddict.github.io/).
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.ap... | 2,263 | 0.707026 | 0.701723 | 59 | 36.35593 | 32.93021 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.338983 | false | false | 12 |
92cecc185f841b55a427ce0d592f4b449d2a8966 | 37,014,028,172,344 | 00c07582802a015e11eb31224f9aecc48e5f0f71 | /app/src/main/java/com/qinshou/qinshoubox/homepage/presenter/HomepagePresenter.java | b472c1052e9403ef97da27917c7beaf9a6e7d57e | [] | no_license | mrqinshou/QinshouBox | https://github.com/mrqinshou/QinshouBox | 6e01abaf9799e6949917b8802ccbb83ae9f3c5d3 | ef7a3e5f38ce99dc1795f1147ab7341e98d34e31 | refs/heads/master | 2021-07-19T06:29:55.735000 | 2020-05-22T11:46:13 | 2020-05-22T11:46:13 | 163,412,746 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.qinshou.qinshoubox.homepage.presenter;
import com.qinshou.networkmodule.callback.Callback;
import com.qinshou.commonmodule.base.AbsPresenter;
import com.qinshou.qinshoubox.homepage.bean.NewsBean;
import com.qinshou.qinshoubox.homepage.bean.PageResultBean;
import com.qinshou.qinshoubox.homepage.bean.Wallpap... | UTF-8 | Java | 2,203 | java | HomepagePresenter.java | Java | [
{
"context": "page.ui.fragment.HomepageFragment;\n\n/**\n * Author: QinHao\n * Email:qinhao@jeejio.com\n * Date: 2019/10/16 17",
"end": 546,
"score": 0.9992769956588745,
"start": 540,
"tag": "NAME",
"value": "QinHao"
},
{
"context": "HomepageFragment;\n\n/**\n * Author: QinHao\n * Em... | null | [] | package com.qinshou.qinshoubox.homepage.presenter;
import com.qinshou.networkmodule.callback.Callback;
import com.qinshou.commonmodule.base.AbsPresenter;
import com.qinshou.qinshoubox.homepage.bean.NewsBean;
import com.qinshou.qinshoubox.homepage.bean.PageResultBean;
import com.qinshou.qinshoubox.homepage.bean.Wallpap... | 2,193 | 0.612096 | 0.606639 | 67 | 31.820896 | 27.240185 | 144 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.358209 | false | false | 12 |
252f25b1dcb1642f3f1ac299fc0a3eaf54c3e054 | 35,485,019,830,036 | 0c85cc14378f22704b8262d440a3e1652099e62c | /TrabalhoArtigoDaves/app/src/main/java/daniellopes/treinamento/trabalhoartigodaves/Fragments/ArtigosFragment.java | 4002eaa03f7902e47138987c6b2d710ba99e31f1 | [] | no_license | leo2d/TrabalhoArtigoDaves | https://github.com/leo2d/TrabalhoArtigoDaves | 096d7aea6fb11331f257f619b02dbbc92b11c812 | 651a50ba4a9d44ede2c1d335809c8c78555b9439 | refs/heads/master | 2020-06-08T17:43:24.512000 | 2019-06-27T00:18:35 | 2019-06-27T00:18:35 | 193,275,029 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package daniellopes.treinamento.trabalhoartigodaves.Fragments;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup... | UTF-8 | Java | 5,077 | java | ArtigosFragment.java | Java | [] | null | [] | package daniellopes.treinamento.trabalhoartigodaves.Fragments;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup... | 5,077 | 0.654323 | 0.653536 | 159 | 30.930819 | 28.84618 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.540881 | false | false | 12 |
23b856f85ea12f181bd9ef5cf283f32f5382fcd8 | 35,837,207,145,249 | 0726e056b70868465c9c162761124bb104b02720 | /Source Cafebazzar/android/support/v4/view/de.java | 01537fd2962ff2deed04a234143285be5452c1ae | [] | no_license | realjohnwick/Cafebazzar_Static_Analysis | https://github.com/realjohnwick/Cafebazzar_Static_Analysis | cc24af237aa4996eb59d7a30f2d01ee491fd7021 | 61ee37b60459919a2769800dbe00b719cd4c8278 | refs/heads/master | 2021-06-01T02:27:17.873000 | 2016-08-18T17:55:26 | 2016-08-18T17:55:26 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package android.support.v4.view;
class de extends dc {
de() {
}
}
| UTF-8 | Java | 75 | java | de.java | Java | [] | null | [] | package android.support.v4.view;
class de extends dc {
de() {
}
}
| 75 | 0.6 | 0.586667 | 6 | 11.5 | 11.528949 | 32 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.166667 | false | false | 12 |
667a5b5e0160c9dc2b14fad5354cefc9e4441c2d | 19,610,820,721,726 | 0a4dac485e23b86620d1efd5cda496fb9836702c | /thread/手机营业/src/factoryphone/FactoryTelecom.java | f7c3e8d7d8b1414f3843d82bf9bf0ab2c182807d | [] | no_license | pumpkin-wn/mygit | https://github.com/pumpkin-wn/mygit | 06277ac4795f4eafb2198d7b51218de426c6a70b | 522ef6a5b89fde2c45ea2f539536b514e0bba69d | refs/heads/master | 2020-07-22T06:32:19.050000 | 2019-12-25T02:11:24 | 2019-12-25T02:11:24 | 207,101,997 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package factoryphone;
import phoneuser.*;
public class FactoryTelecom implements FactoryPhone{
public TelecomUser createPhoneuser(){
return new TelecomUser();
}
}
/*package factorybmw;
import bmw.*;
public class FactoryBMW320 implements FactoryBMW{
public BMW320 createBMW(){
return new BMW320();
}
}
*... | UTF-8 | Java | 321 | java | FactoryTelecom.java | Java | [] | null | [] | package factoryphone;
import phoneuser.*;
public class FactoryTelecom implements FactoryPhone{
public TelecomUser createPhoneuser(){
return new TelecomUser();
}
}
/*package factorybmw;
import bmw.*;
public class FactoryBMW320 implements FactoryBMW{
public BMW320 createBMW(){
return new BMW320();
}
}
*... | 321 | 0.744548 | 0.716511 | 16 | 19.125 | 16.377863 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.375 | false | false | 12 |
19bb5505319174c3c8368e67ac0be90534a6a33a | 37,211,596,667,406 | f39701ee45e77b20173a9ae6bfe60170a7635cd8 | /application/src/main/java/com/pashov/web/GlobalExceptionHandler.java | 3a951f098e0b0230767134c79080acecb4f0cfa3 | [] | no_license | pashov/Virtual-machines | https://github.com/pashov/Virtual-machines | 6d74b5b970e6d9a395040cbc09e9bb88bf151a54 | 585bd627d5f94a363fd5a437e3f6ee6546465189 | refs/heads/master | 2022-11-24T13:19:40.082000 | 2022-09-25T13:35:09 | 2022-09-25T13:35:09 | 208,473,292 | 0 | 0 | null | false | 2022-11-23T22:26:44 | 2019-09-14T16:59:38 | 2022-09-25T13:35:02 | 2022-11-23T22:26:43 | 26 | 0 | 0 | 1 | Java | false | false | package com.pashov.web;
import com.pashov.exception.BusinessRuleException;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseStatus;
@Contr... | UTF-8 | Java | 562 | java | GlobalExceptionHandler.java | Java | [] | null | [] | package com.pashov.web;
import com.pashov.exception.BusinessRuleException;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseStatus;
@Contr... | 562 | 0.818505 | 0.818505 | 16 | 34.1875 | 22.921658 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4375 | false | false | 12 |
234aee6f7be9fad95bd274e3e3b0ed643ad1846a | 35,450,660,098,268 | 2abb6c492a8addc4389c6434d7a788db401aa284 | /src/main/java/in/taskoo/core/request/dto/TaskQuestionRequestDto.java | 233f20c5d21967de8ec6362a1ac3c1c487c1a4b9 | [] | no_license | shibanitaskoo/taskoo-core | https://github.com/shibanitaskoo/taskoo-core | 4fa96e929b0936d0d7225b0f7c32829722983699 | 07f3ba3441f86f4399fbdaf25d33d7a069d3a267 | refs/heads/master | 2020-07-17T00:31:41.851000 | 2020-01-25T12:15:29 | 2020-01-25T12:15:29 | 205,901,942 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package in.taskoo.core.request.dto;
import javax.validation.constraints.NotNull;
import lombok.Data;
@Data
public class TaskQuestionRequestDto {
@NotNull(message="statement can't be null")
private String statement;
@NotNull(message="userId can't be null")
private Long userId;
private Long parentId;
}
| UTF-8 | Java | 316 | java | TaskQuestionRequestDto.java | Java | [] | null | [] | package in.taskoo.core.request.dto;
import javax.validation.constraints.NotNull;
import lombok.Data;
@Data
public class TaskQuestionRequestDto {
@NotNull(message="statement can't be null")
private String statement;
@NotNull(message="userId can't be null")
private Long userId;
private Long parentId;
}
| 316 | 0.765823 | 0.765823 | 17 | 17.588236 | 17.019224 | 44 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.823529 | false | false | 12 |
9546491d82d498aefb3ec2924536a513ae12869b | 36,782,099,946,164 | 73c7df6a5d7c4e2e656f71d0e2675c0ab5230afb | /src/main/java/com/example/demo/service/IShiroUserService.java | 035914e8d0251a4edfa03ee8f1a864e162d6d7fd | [] | no_license | buerbl/easy-authority-system | https://github.com/buerbl/easy-authority-system | 4b3b964d517f1af9e0a3e94128925aa34546d519 | 15ac1af3d9fc3c0926c1002bbcacdbeb21f8fd77 | refs/heads/master | 2023-02-05T15:17:50.424000 | 2023-01-24T14:22:23 | 2023-01-24T14:22:23 | 237,437,224 | 32 | 13 | null | false | 2022-10-05T08:53:36 | 2020-01-31T13:37:06 | 2022-09-21T07:53:21 | 2022-10-05T08:53:35 | 925 | 25 | 13 | 6 | Java | false | false | package com.example.demo.service;
import com.example.demo.dto.ShiroUserDto;
import com.example.demo.entity.ShiroUser;
import com.example.demo.vo.ShiroUserVo;
public interface IShiroUserService {
/**
* 登录方法
*
* @param name
* @param password
* @return
*/
ShiroUser getUser(String na... | UTF-8 | Java | 476 | java | IShiroUserService.java | Java | [] | null | [] | package com.example.demo.service;
import com.example.demo.dto.ShiroUserDto;
import com.example.demo.entity.ShiroUser;
import com.example.demo.vo.ShiroUserVo;
public interface IShiroUserService {
/**
* 登录方法
*
* @param name
* @param password
* @return
*/
ShiroUser getUser(String na... | 476 | 0.630435 | 0.630435 | 24 | 18.166666 | 16.030354 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.291667 | false | false | 12 |
90d40379b18d5dc91efd2e2e09e4fc94d9c2b72d | 5,179,730,600,827 | 0b923333330c1439bdc6c9d4678bca0eeab4fbc2 | /src/main/java/cc/cary/vel/common/export/AbstractBatchExport.java | fd975d02de33c145d794007b2fe011edd9651173 | [] | no_license | JGuga/single-vel | https://github.com/JGuga/single-vel | ef8fed57564aec8ffdcfe1ec25ec3baaa220ef05 | d767a28881189b9bc335d9328a93fa8a4469f6d8 | refs/heads/master | 2023-08-14T14:30:56.983000 | 2021-10-08T07:54:21 | 2021-10-08T07:54:21 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cc.cary.vel.common.export;
import cc.cary.vel.common.entities.UploadResult;
import cc.cary.vel.common.libs.Constants;
import cc.cary.vel.common.libs.RedisKeys;
import cc.cary.vel.common.upload.UploadUtil;
import cc.cary.vel.common.utils.VelFileUtils;
import cc.cary.vel.common.utils.RedisUtils;
import cc.cary.v... | UTF-8 | Java | 5,133 | java | AbstractBatchExport.java | Java | [
{
"context": "mport java.util.Map;\n\n/**\n * 批量导出抽象类\n *\n * @author Cary\n * @date 2021/5/26\n */\n@Slf4j\npublic abstract cla",
"end": 773,
"score": 0.9995510578155518,
"start": 769,
"tag": "NAME",
"value": "Cary"
},
{
"context": "(adminUser.getId());\n exportRecord.setUsername... | null | [] | package cc.cary.vel.common.export;
import cc.cary.vel.common.entities.UploadResult;
import cc.cary.vel.common.libs.Constants;
import cc.cary.vel.common.libs.RedisKeys;
import cc.cary.vel.common.upload.UploadUtil;
import cc.cary.vel.common.utils.VelFileUtils;
import cc.cary.vel.common.utils.RedisUtils;
import cc.cary.v... | 5,133 | 0.675977 | 0.670917 | 169 | 28.236687 | 24.171299 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.585799 | false | false | 12 |
9bab3801d1dea7e4b5a8dcfebb1e3ef67025a3b6 | 6,828,998,002,351 | 091cf57a4726e99b8f6cf90f197ed96aae7fbead | /src/main/java/com/seezoon/boot/common/sms/SmsSender.java | 17ac945c0f513780057f3c5750addfa66f030eb9 | [] | no_license | 734839030/seezoon-boot | https://github.com/734839030/seezoon-boot | 5b3274b81ff4157778d1a83175ba4f7ccf4ad7ea | a965385c0b1b0f92114338cf0c0d2e2528e20455 | refs/heads/master | 2023-01-29T23:47:49.105000 | 2020-05-06T03:39:16 | 2020-05-06T03:39:16 | 155,083,708 | 14 | 8 | null | false | 2023-01-06T05:07:03 | 2018-10-28T15:07:14 | 2021-12-20T14:35:46 | 2023-01-06T05:07:02 | 10,839 | 11 | 8 | 14 | JavaScript | false | false | package com.seezoon.boot.common.sms;
import com.aliyuncs.DefaultAcsClient;
import com.aliyuncs.IAcsClient;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsRequest;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsResponse;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.http.MethodType;
impo... | UTF-8 | Java | 2,627 | java | SmsSender.java | Java | [] | null | [] | package com.seezoon.boot.common.sms;
import com.aliyuncs.DefaultAcsClient;
import com.aliyuncs.IAcsClient;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsRequest;
import com.aliyuncs.dysmsapi.model.v20170525.SendSmsResponse;
import com.aliyuncs.exceptions.ClientException;
import com.aliyuncs.http.MethodType;
impo... | 2,627 | 0.774523 | 0.762436 | 58 | 36.086208 | 25.592485 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.310345 | false | false | 12 |
f860e568c3964d440f8ee107ab29d0f6c8050d1d | 6,828,998,004,059 | d290d78f0ee5e702173347f0b71a283097e7d281 | /java_junit/src/main/java/Holiday.java | c6b060156f65a086ca617160db4a9846e5baa151 | [] | no_license | kanai-leek08/practice | https://github.com/kanai-leek08/practice | 228511addfc3126950dcf8db7d36391ee1e6c525 | 874091455d69df9bd551ebaf9f70555b84e4be8a | refs/heads/master | 2022-08-14T20:19:27.131000 | 2020-10-07T23:51:19 | 2020-10-07T23:51:19 | 148,298,834 | 0 | 6 | null | false | 2022-10-05T03:01:45 | 2018-09-11T10:13:33 | 2020-10-07T23:51:28 | 2022-10-05T03:01:42 | 1,933 | 0 | 6 | 32 | JavaScript | false | false | import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
class Holiday {
public boolean isXmas() {
// 100 lines code here...
DateTimeFormatter dtf = DateTimeFormatter.ofPattern("MM/dd");
LocalDate localDate = LocalDate.now();
// 100 lines code here...
return dt... | UTF-8 | Java | 365 | java | Holiday.java | Java | [] | null | [] | import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
class Holiday {
public boolean isXmas() {
// 100 lines code here...
DateTimeFormatter dtf = DateTimeFormatter.ofPattern("MM/dd");
LocalDate localDate = LocalDate.now();
// 100 lines code here...
return dt... | 365 | 0.649315 | 0.621918 | 12 | 29.416666 | 20.544498 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.416667 | false | false | 12 |
bfef34750896825a3df2f7a7329d2948fdfad298 | 6,828,998,003,010 | 7066a0576ab77fd4c205a700f666f66edd8cd572 | /src/main/java/group/zhangtao/forkjoin/list_speed/VistorType.java | bbef00676c04d398268fb36dbb4edbc19f8d8879 | [] | no_license | puzzzzzzle/JavaStudyRebuild | https://github.com/puzzzzzzle/JavaStudyRebuild | 2f9ed980f304abf1fd64d0398f2933d8aaeed3b9 | 24ed43d50771a3d28935d0eb838debff90db3a04 | refs/heads/master | 2020-08-27T07:32:56.934000 | 2018-12-22T07:45:54 | 2018-12-22T07:45:54 | 217,285,553 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package group.zhangtao.forkjoin.list_speed;
import java.io.Serializable;
public enum VistorType implements Serializable {
FOR,
IT,
}
| UTF-8 | Java | 143 | java | VistorType.java | Java | [] | null | [] | package group.zhangtao.forkjoin.list_speed;
import java.io.Serializable;
public enum VistorType implements Serializable {
FOR,
IT,
}
| 143 | 0.755245 | 0.755245 | 8 | 16.875 | 18.617449 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 12 |
bb97ab634e8c5f01de3cba1184c934d2a0c9b228 | 20,272,245,705,729 | 0818a56ae2c4be2c0cd5a5d4ca682091546645d0 | /src/main/java/controllers/owner/NeighborsBoardOwnerController.java | 20787d315cb18455f5da70bf185f7264d3d19a09 | [
"MIT"
] | permissive | juagarfer4/Condominium-Manager | https://github.com/juagarfer4/Condominium-Manager | a68af660e2a9fb8904b8c48ad285db9c69812e8b | 8e944d57af0832aac9bcd9c8331d329ec91d2105 | refs/heads/master | 2021-07-07T11:33:00.207000 | 2017-09-29T22:32:25 | 2017-09-29T22:32:25 | 105,249,749 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package controllers.owner;
import java.util.Collection;
import javax.servlet.http.HttpServletResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.an... | UTF-8 | Java | 2,042 | java | NeighborsBoardOwnerController.java | Java | [] | null | [] | package controllers.owner;
import java.util.Collection;
import javax.servlet.http.HttpServletResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.an... | 2,042 | 0.642018 | 0.642018 | 63 | 31.412699 | 30.215961 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.015873 | false | false | 12 |
b807853a7754aca66ca842b8fe8a3139b7ab2a63 | 7,189,775,293,980 | d0c3715d5fd143f7dad374340010489a0e6907cb | /aco-core/src/main/java/localsearch/DefaultStretegy.java | b228def2ab4655bb129e8248dcff6b928397e36c | [] | no_license | w-ziyang/Aco_Vrp | https://github.com/w-ziyang/Aco_Vrp | 1c5439407b43dc8137142b54b0601fbdd318efe4 | 6140b3c6eb23165649cfedd8400586330a56a63b | refs/heads/master | 2023-03-16T12:56:57.824000 | 2017-05-02T13:40:32 | 2017-05-02T13:40:32 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package localsearch;
import java.io.Serializable;
import vrp.Solution;
/**
* Created by ab792 on 2017/3/2.
*/
public class DefaultStretegy implements BaseStretegy, Serializable {
private static final long serialVersionUID = -3316704928567998830L;
@Override
public void updateSolution(Solution preSolutio... | UTF-8 | Java | 351 | java | DefaultStretegy.java | Java | [
{
"context": "ializable;\nimport vrp.Solution;\n\n/**\n * Created by ab792 on 2017/3/2.\n */\npublic class DefaultStretegy imp",
"end": 96,
"score": 0.9995548725128174,
"start": 91,
"tag": "USERNAME",
"value": "ab792"
}
] | null | [] | package localsearch;
import java.io.Serializable;
import vrp.Solution;
/**
* Created by ab792 on 2017/3/2.
*/
public class DefaultStretegy implements BaseStretegy, Serializable {
private static final long serialVersionUID = -3316704928567998830L;
@Override
public void updateSolution(Solution preSolutio... | 351 | 0.754986 | 0.675214 | 16 | 20.9375 | 25.633154 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3125 | false | false | 12 |
61d674899e0d1659328aee47d91464352a9e0baf | 28,372,554,012,577 | 189a727dffa854c70ff03d6b1a2911400193000a | /knowledge-repository-app/src/main/java/br/base/conhecimento/Knowledge.java | c3a499f2afb8259f651c4da5acdd950abb809ed2 | [] | no_license | kubruslihiga/knowledge-repository | https://github.com/kubruslihiga/knowledge-repository | f5585cd9092ad8f83fa6b02a220be1a096526a95 | e1b3cf543371a9591f5404e894c07e4e055dd2b8 | refs/heads/master | 2021-01-20T09:55:38.260000 | 2017-05-08T20:28:08 | 2017-05-08T20:28:08 | 90,305,851 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.base.conhecimento;
import java.io.Serializable;
import java.util.List;
public class Knowledge implements Serializable {
private static final long serialVersionUID = 1L;
private String name;
private String comment;
private String label;
private List<Attribute> attributeList;
private String owlPa... | UTF-8 | Java | 971 | java | Knowledge.java | Java | [] | null | [] | package br.base.conhecimento;
import java.io.Serializable;
import java.util.List;
public class Knowledge implements Serializable {
private static final long serialVersionUID = 1L;
private String name;
private String comment;
private String label;
private List<Attribute> attributeList;
private String owlPa... | 971 | 0.728115 | 0.727085 | 60 | 15.183333 | 16.529259 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.083333 | false | false | 12 |
161c717bf8db441624c37ee78dd1df9943a86101 | 5,514,738,036,075 | a1e0706bf1bc83919654b4517730c9aed6499355 | /PerforceIntegration/testSource/org/jetbrains/idea/perforce/UnversionedTest.java | e3b3cdec2aa7a7b32a313038e2380cf54886e780 | [
"MIT"
] | permissive | JetBrains/intellij-plugins | https://github.com/JetBrains/intellij-plugins | af734c74c10e124011679e3c7307b63d794da76d | f6723228208bfbdd49df463046055ea20659b519 | refs/heads/master | 2023-08-23T02:59:46.681000 | 2023-08-22T13:35:06 | 2023-08-22T15:23:46 | 5,453,324 | 2,018 | 1,202 | null | false | 2023-09-13T10:51:36 | 2012-08-17T14:31:20 | 2023-09-12T11:31:26 | 2023-09-13T10:51:32 | 413,387 | 2,002 | 1,010 | 25 | Java | false | false | package org.jetbrains.idea.perforce;
import com.intellij.execution.process.ProcessOutput;
import com.intellij.openapi.vcs.FileStatus;
import com.intellij.openapi.vcs.VcsConfiguration;
import com.intellij.openapi.vcs.VcsShowConfirmationOption;
import com.intellij.openapi.vcs.changes.ChangeListManagerImpl;
import com.in... | UTF-8 | Java | 4,896 | java | UnversionedTest.java | Java | [] | null | [] | package org.jetbrains.idea.perforce;
import com.intellij.execution.process.ProcessOutput;
import com.intellij.openapi.vcs.FileStatus;
import com.intellij.openapi.vcs.VcsConfiguration;
import com.intellij.openapi.vcs.VcsShowConfirmationOption;
import com.intellij.openapi.vcs.changes.ChangeListManagerImpl;
import com.in... | 4,896 | 0.774918 | 0.774306 | 122 | 39.131149 | 29.658701 | 139 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.97541 | false | false | 12 |
db07b56918a6293b78d8495bbf36d70f04adcabb | 25,683,904,452,761 | 4eca5758a395ea06cb26465d2fd52dd171687085 | /app/src/main/java/com/ultraviolet/delieve/data/dto/DelieverAcceptResDto.java | 979fbab9dc79b00a9213c3bff7ac4f61e64281ea | [] | no_license | Ultraviolet-Capstone/delieve-client | https://github.com/Ultraviolet-Capstone/delieve-client | faad55a16b213b375b74dd2b7395dcff2e340b31 | 53d422c88cff597be97706a689f5a78fdc139c67 | refs/heads/master | 2020-03-15T04:53:38.344000 | 2018-06-14T08:18:29 | 2018-06-14T08:18:29 | 131,976,596 | 3 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ultraviolet.delieve.data.dto;
public class DelieverAcceptResDto {
public int delivererId;
public int matchingId;
}
| UTF-8 | Java | 136 | java | DelieverAcceptResDto.java | Java | [] | null | [] | package com.ultraviolet.delieve.data.dto;
public class DelieverAcceptResDto {
public int delivererId;
public int matchingId;
}
| 136 | 0.772059 | 0.772059 | 6 | 21.666666 | 15.786774 | 41 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 12 |
737760888c41de16b4f6864eedad2f91d9f38cc7 | 858,993,525,742 | d6ba22a8a9dd431921b8af8982edf115e0f84e01 | /stroom-app/src/test/java/stroom/receive/ProxyAggregationLoader.java | a900caaca71712e208f7d9008b97bdfb5fa6f097 | [
"LicenseRef-scancode-proprietary-license",
"Apache-2.0",
"CDDL-1.0",
"GPL-1.0-or-later",
"LGPL-2.0-or-later",
"MPL-1.0",
"CC-BY-4.0",
"LicenseRef-scancode-public-domain",
"EPL-1.0"
] | permissive | gchq/stroom | https://github.com/gchq/stroom | 15dc1d4a8527fe7888d060d39e639b48183ff8bd | 759370c31d5d441444bca9d59c41c54bc42816f2 | refs/heads/master | 2023-09-05T01:40:41.773000 | 2023-09-04T16:40:12 | 2023-09-04T16:40:12 | 72,740,687 | 442 | 65 | Apache-2.0 | false | 2023-09-14T12:12:28 | 2016-11-03T11:55:47 | 2023-09-01T18:33:25 | 2023-09-14T12:12:27 | 170,887 | 410 | 54 | 552 | Java | false | false | package stroom.receive;
import stroom.data.zip.StroomZipEntry;
import stroom.data.zip.StroomZipFile;
import stroom.util.io.FileUtil;
import java.io.IOException;
import java.io.PrintWriter;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.zip.ZipEntry;
import java.uti... | UTF-8 | Java | 2,083 | java | ProxyAggregationLoader.java | Java | [] | null | [] | package stroom.receive;
import stroom.data.zip.StroomZipEntry;
import stroom.data.zip.StroomZipFile;
import stroom.util.io.FileUtil;
import java.io.IOException;
import java.io.PrintWriter;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.zip.ZipEntry;
import java.uti... | 2,083 | 0.69035 | 0.679789 | 55 | 36.872726 | 30.736448 | 101 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.727273 | false | false | 12 |
003d490f239396b0c6f01f1da615841de3c51a88 | 28,870,770,191,941 | a08e49ef80d51c995db121064bea8999ca73794e | /Queue/Main.java | 0b11ebf5a58fdd3110abc1298223565aba8b773d | [] | no_license | ramyaguntuku/Playground | https://github.com/ramyaguntuku/Playground | 7554fc6410bb27f0d16ec271e9544791e4294eb6 | 862871e3ed5325ad1d5bdb18ec27a34c0e669673 | refs/heads/master | 2021-05-19T00:34:09.895000 | 2020-06-19T11:17:20 | 2020-06-19T11:17:20 | 251,496,848 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | #include<iostream>
using namespace std;
int main()
{
//Type your code here.
int n,m,i,s=0,a[100],t;
cin>>n>>m;
for(i=0;i<n;i++)
{
cin>>a[i];
}
for(i=0;i<n;i++)
{
if(a[i]>1 && a[i]+a[i+1]<=m)
{
i++;
}
else if(a[i]>m && i<n-1)
{
t=a[i]-m;
}
s++;
}
cout<<s;... | UTF-8 | Java | 329 | java | Main.java | Java | [] | null | [] | #include<iostream>
using namespace std;
int main()
{
//Type your code here.
int n,m,i,s=0,a[100],t;
cin>>n>>m;
for(i=0;i<n;i++)
{
cin>>a[i];
}
for(i=0;i<n;i++)
{
if(a[i]>1 && a[i]+a[i+1]<=m)
{
i++;
}
else if(a[i]>m && i<n-1)
{
t=a[i]-m;
}
s++;
}
cout<<s;... | 329 | 0.389058 | 0.361702 | 26 | 11.692307 | 8.712366 | 32 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.653846 | false | false | 12 |
0df28d83829d68219c4ffd33ce3b5c0a7b99e88b | 10,977,936,414,202 | cfc1be8d4ef8d7dd4f3e9b55b841ea6b4cb853f2 | /SummerProject/src/main/java/com/knoow/spring/member/service/MemberService.java | 9e125a3580d5c547df19d9757226d98b4ce6e8f1 | [
"Apache-2.0"
] | permissive | DAEWOONPARK/SummerProject | https://github.com/DAEWOONPARK/SummerProject | 9f760295247a8e08f4fa5a3c0d2602b47584ad3f | bf8f4eb43c7ba223a86cae78fb4c5e20042dbab9 | refs/heads/master | 2022-04-27T04:27:37.938000 | 2019-07-19T02:11:16 | 2019-07-19T02:11:16 | 197,533,725 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.knoow.spring.member.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.knoow.spring.member.Member;
import com.knoow.spring.member.dao.MemberDao;
@Service
public class MemberService implements IMemberService {
@Au... | UTF-8 | Java | 1,914 | java | MemberService.java | Java | [] | null | [] | package com.knoow.spring.member.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.knoow.spring.member.Member;
import com.knoow.spring.member.dao.MemberDao;
@Service
public class MemberService implements IMemberService {
@Au... | 1,914 | 0.609718 | 0.60815 | 91 | 19.054945 | 18.78529 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.934066 | false | false | 12 |
8a93dd3f64d386b699628b850c8496aada315fac | 10,977,936,416,565 | 7f6237bc6fdcd15a97e37ec10729779be96ae38f | /src/main/java/com/linear/linkedlist/DoublyLinkList.java | b0483e80d4245ec0598682ec74d840af55090375 | [] | no_license | vigneshwaranit56/DataStructures | https://github.com/vigneshwaranit56/DataStructures | 0d122f0909e01984ca4f6ab7bdc18b2a95178a4b | 83584a9b27038f7ed0ff2246c4ccbe8df73f952f | refs/heads/master | 2023-07-06T11:42:38.890000 | 2023-06-23T15:20:55 | 2023-06-23T15:20:55 | 139,013,128 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.linear.linkedlist;
public class DoublyLinkList implements LinkdedList {
DNode root;
int length = 0;
@Override
public void add(Integer n) {
DNode child = new DNode(n);
child.next = root;
if (root != null)
root.prev = child;
root = child;
length++;
}
@Override
public void remove(... | UTF-8 | Java | 2,061 | java | DoublyLinkList.java | Java | [] | null | [] | package com.linear.linkedlist;
public class DoublyLinkList implements LinkdedList {
DNode root;
int length = 0;
@Override
public void add(Integer n) {
DNode child = new DNode(n);
child.next = root;
if (root != null)
root.prev = child;
root = child;
length++;
}
@Override
public void remove(... | 2,061 | 0.591946 | 0.586608 | 145 | 13.213793 | 13.224422 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.882759 | false | false | 12 |
9f1f55717786c6a3b1c8034c4136991f75abbd0c | 32,280,974,248,851 | 899d042fb01bfae14cbb85fd0358e0c5651f3627 | /StageImage/src/ui/result/event/EventChangeView.java | f043f8c60c1caf651bf61a7a534ba664c72ccac1 | [] | no_license | ebarjou/photogrammetry_opencv | https://github.com/ebarjou/photogrammetry_opencv | 8f4f6b172182eceb38d26f661ee4b019ed19b764 | d297898b73b18b90e42b6c921f6171c1008988c0 | refs/heads/master | 2022-02-11T11:44:30.086000 | 2016-07-25T17:06:50 | 2016-07-25T17:06:50 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ui.result.event;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import ui.result.ResultPanel;
public class EventChangeView implements ActionListener {
public static enum action {SCALE, MOVE};
public static enum dir {PLUS, LESS, UP, DOWN, RIGHT, LEFT};
action a;
... | UTF-8 | Java | 1,049 | java | EventChangeView.java | Java | [] | null | [] | package ui.result.event;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import ui.result.ResultPanel;
public class EventChangeView implements ActionListener {
public static enum action {SCALE, MOVE};
public static enum dir {PLUS, LESS, UP, DOWN, RIGHT, LEFT};
action a;
... | 1,049 | 0.676835 | 0.668256 | 36 | 27.138889 | 23.930632 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.416667 | false | false | 12 |
08dfc6849158bc167e99a25ff1c4d55fc38b6762 | 30,889,404,859,700 | f6585a6b501fe61f6d1ef66bfdb5f183bd4c1e62 | /java-new-features/java-6-new-features/src/main/java/java6/newfeatures/_1_new_utils/_4_webservice/_1_JAXB/generated/ObjectFactory.java | f519b1f1a2cf707fae3f2eba6f73cc9bc2354447 | [
"MIT"
] | permissive | shijiansu/core-java-5-newfeatures | https://github.com/shijiansu/core-java-5-newfeatures | 52bbd1a082d8d69b795d9a74bd330a9778be8d58 | 95035f4490b7d15f7b24ac86a15628ab65ba66cf | refs/heads/master | 2021-03-01T21:40:27.989000 | 2020-08-11T11:33:38 | 2020-08-11T11:33:38 | 245,815,267 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.04.... | UTF-8 | Java | 4,491 | java | ObjectFactory.java | Java | [] | null | [] | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.04.... | 4,491 | 0.657537 | 0.649744 | 126 | 34.642857 | 33.95269 | 156 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.460317 | false | false | 12 |
93b71ed9070ea398868fde70b555cb5a5b25eddd | 30,889,404,862,209 | b8c5300690cdcdffb4acc294b61b14cad347ce7b | /app/src/main/java/com/example/greenpp/Helper/Parameters.java | e88b5ebd9aba247bc0d4bbe93546bcac3458dfb4 | [] | no_license | benhoumine/RamassePoubelleMobile | https://github.com/benhoumine/RamassePoubelleMobile | 5a5cbef9e9d5d5f38f553f2bbff9de1b31c05268 | 937ed72028a563ba953145676a13b82da97d60fb | refs/heads/master | 2021-03-22T07:48:07.583000 | 2020-04-11T18:54:39 | 2020-04-11T18:54:39 | 247,344,150 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.greenpp.Helper;
public class Parameters {
public static final String URL_SERVER="http://192.168.0.37:";
public static final String PORT= "8081";
}
| UTF-8 | Java | 177 | java | Parameters.java | Java | [
{
"context": " public static final String URL_SERVER=\"http://192.168.0.37:\";\n public static final String PORT= \"8081\";\n}",
"end": 126,
"score": 0.9997310042381287,
"start": 114,
"tag": "IP_ADDRESS",
"value": "192.168.0.37"
}
] | null | [] | package com.example.greenpp.Helper;
public class Parameters {
public static final String URL_SERVER="http://192.168.0.37:";
public static final String PORT= "8081";
}
| 177 | 0.717514 | 0.644068 | 7 | 24.285715 | 23.553673 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.428571 | false | false | 12 |
e4a4232fb4baee3ce22e6a318f566f40ea3926bb | 30,623,116,851,618 | 7616b59db859bc95bf17f770eb12ff2f2b8a11ad | /MedSavantServerEngine/src/main/java/org/ut/biolab/medsavant/server/db/ConnectionPool.java | fe1b40c13cc7553878ae44623c78a2dbfd8e6a88 | [] | no_license | compbio-UofT/medsavant | https://github.com/compbio-UofT/medsavant | d38ddf7dd411e4fc7584e168df57759ed84c7feb | bcbeecd26cb51a44052aefaef0d7f6c4f44f1de1 | refs/heads/master | 2020-12-24T19:17:20.939000 | 2016-04-21T19:43:28 | 2016-04-21T19:43:28 | 7,762,720 | 9 | 5 | null | false | 2014-09-26T21:05:09 | 2013-01-22T22:25:16 | 2014-09-02T19:28:02 | 2014-09-18T22:53:14 | 418,030 | 15 | 4 | 123 | Java | null | null | /**
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* t... | UTF-8 | Java | 4,192 | java | ConnectionPool.java | Java | [
{
"context": "ased on JDC Connection Pool example.\n *\n * @author Andrew\n */\npublic class ConnectionPool {\n\n private st",
"end": 1131,
"score": 0.9994778037071228,
"start": 1125,
"tag": "NAME",
"value": "Andrew"
},
{
"context": "\n this.user = user;\n this.passw... | null | [] | /**
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* t... | 4,194 | 0.630487 | 0.624523 | 137 | 29.59124 | 28.047289 | 149 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.452555 | false | false | 12 |
1ab2c52c16184fb7cb3f9923fd3bf189591bc3a3 | 18,193,481,505,925 | c418ed7bcdc0fa7a09bc534622b5f97602ccd2dc | /ml_2/Message_Passing.java | 9a1bc15f7e07677f001d170d86d0150132a638d3 | [] | no_license | shivanth/Academic | https://github.com/shivanth/Academic | 58d4e42522c14417f4e7222005b40ac343108a70 | af8eada3161261aec770f100d5e6487274a44180 | refs/heads/master | 2021-01-01T04:58:18.193000 | 2020-03-22T18:29:22 | 2020-03-22T18:29:22 | 58,086,929 | 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 ml_2;
import java.io.BufferedOutputStream;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundExce... | UTF-8 | Java | 7,661 | java | Message_Passing.java | Java | [
{
"context": "ht.traverse.DepthFirstIterator;\n\n/**\n *\n * @author Shivanth\n */\npublic class Message_Passing {\n\n SimpleWeig",
"end": 773,
"score": 0.9217532277107239,
"start": 765,
"tag": "NAME",
"value": "Shivanth"
}
] | 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 ml_2;
import java.io.BufferedOutputStream;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundExce... | 7,661 | 0.534003 | 0.532959 | 216 | 34.467594 | 27.386446 | 111 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.606481 | false | false | 12 |
8144e4beadc9d0aa42cf79afeb85d26561990424 | 13,640,816,200,757 | 73d71cfb0eec4da898dc1f70ec8cdd850ef38849 | /src/main/java/com/ncs/doorsystem/controller/PersonController.java | bf25996fcf36ffb791abc0e5bbd6e55bb35f3b3e | [] | no_license | parshugithub/doorAccessBackend | https://github.com/parshugithub/doorAccessBackend | 50be73ca1f4dfece4f636f643576ba1255032082 | dc3ed1469c38c624ad7fce2fbc345fb5646fefc0 | refs/heads/main | 2023-06-11T18:57:44.775000 | 2021-07-05T02:31:55 | 2021-07-05T02:31:55 | 382,992,342 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ncs.doorsystem.controller;
import java.util.List;
import javax.validation.Valid;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetM... | UTF-8 | Java | 3,660 | java | PersonController.java | Java | [] | null | [] | package com.ncs.doorsystem.controller;
import java.util.List;
import javax.validation.Valid;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetM... | 3,660 | 0.771858 | 0.771858 | 105 | 33.857143 | 37.947941 | 194 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.428571 | false | false | 12 |
02fddfb9383e3d08cd24f599d08d9b2cae1507a4 | 8,753,143,400,893 | 3e48b35b502fb9d89cefebaad5ed85f5683e4aa2 | /baseProject/src/test/java/ch/unibe/ese/team1/test/controller/SearchControllerTest.java | c5e1ebc91dcafc7c44d9bb54cdb6bc8c7f48436f | [] | no_license | scg-unibe-ch/ese2016-team2 | https://github.com/scg-unibe-ch/ese2016-team2 | dd8882569a3585c3eb8bc803e1be389ee06919eb | b4b820cf6ad66d8198b5927eeec464aac2430a70 | refs/heads/master | 2021-01-12T13:32:02.890000 | 2016-12-14T12:49:31 | 2016-12-14T12:49:31 | 69,378,338 | 4 | 3 | null | false | 2016-12-14T11:29:09 | 2016-09-27T16:49:04 | 2016-12-14T08:37:39 | 2016-12-14T11:24:04 | 100,862 | 1 | 2 | 0 | Java | null | null | package ch.unibe.ese.team1.test.controller;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.test.context.ContextConfiguration;
import or... | UTF-8 | Java | 7,500 | java | SearchControllerTest.java | Java | [
{
"context": "l.class);\n\t\twhen(principal.getName()).thenReturn(\"user@bern.com\");\n\t\t\n\t\tthis.mockMvc.perform(post(\"/results\")\n\t\t\t",
"end": 4211,
"score": 0.999895453453064,
"start": 4198,
"tag": "EMAIL",
"value": "user@bern.com"
}
] | null | [] | package ch.unibe.ese.team1.test.controller;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.test.context.ContextConfiguration;
import or... | 7,494 | 0.628133 | 0.6072 | 239 | 30.380753 | 16.595654 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.949791 | false | false | 12 |
a874d50785eef371a88cb2888bea2bb4a1e66ad1 | 32,710,470,968,915 | 27673860e16c8768ff98cf4ac5dea6b218bb784b | /spring_project/Spring-AOP/src/aop/CalculatorImpl.java | f885872b35351c8bc0e6e5d6abff2f25673696c2 | [] | no_license | doyongsung/ppelpp | https://github.com/doyongsung/ppelpp | 38b2a4a1822fc33efe5d0032d6453e44a67c5a69 | 7c6a9e72285be6cf38d02fc47016fbc242b045b5 | refs/heads/main | 2023-08-03T07:34:28.651000 | 2021-09-20T07:28:05 | 2021-09-20T07:28:05 | 370,221,998 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package aop;
public class CalculatorImpl implements Calculator {
// 인터페이스에서 정의되었던 추상메서드
@Override
public long factorial(long num) {
// 현재 시간 기준에서 1970년 10월 1일 0시 0분 0초를 기준으로 밀리 초 값을 long타입으로 계산해서 반환
long start = System.currentTimeMillis();
long result = 1;
for (long i = 1; i <= num; i++) {
result *= i;
... | UTF-8 | Java | 616 | java | CalculatorImpl.java | Java | [] | null | [] | package aop;
public class CalculatorImpl implements Calculator {
// 인터페이스에서 정의되었던 추상메서드
@Override
public long factorial(long num) {
// 현재 시간 기준에서 1970년 10월 1일 0시 0분 0초를 기준으로 밀리 초 값을 long타입으로 계산해서 반환
long start = System.currentTimeMillis();
long result = 1;
for (long i = 1; i <= num; i++) {
result *= i;
... | 616 | 0.654321 | 0.62963 | 18 | 26 | 21.184376 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.888889 | false | false | 12 |
04afbf3212fd0bd6b7aaa8f793a6f8f2bea70a90 | 16,509,854,296,109 | fe3942cbdb0c11e913a6f2fde2e51a90393a5cc3 | /qbit/core/src/test/java/io/advantageous/qbit/meta/builder/ServiceMetaBuilderTest.java | 518dc768468abea49d2399c25d16511a9aa50dbf | [
"Apache-2.0"
] | permissive | juanavelez/qbit | https://github.com/juanavelez/qbit | c5b003d5a514b7af84be6ccda48712301d7c9fc5 | 27b84787965d1c28dba8d79bf8d1f2257c4b35c8 | refs/heads/master | 2017-02-11T02:01:14.821000 | 2015-11-05T00:10:35 | 2015-11-05T00:10:35 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package io.advantageous.qbit.meta.builder;
import io.advantageous.boon.core.Lists;
import io.advantageous.boon.core.reflection.ClassMeta;
import io.advantageous.qbit.annotation.RequestMapping;
import io.advantageous.qbit.meta.ServiceMethodMeta;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Created ... | UTF-8 | Java | 1,001 | java | ServiceMetaBuilderTest.java | Java | [
{
"context": "port static org.junit.Assert.*;\n\n/**\n * Created by rick on 10/26/15.\n */\npublic class ServiceMetaBuilderT",
"end": 327,
"score": 0.9970667362213135,
"start": 323,
"tag": "USERNAME",
"value": "rick"
}
] | null | [] | package io.advantageous.qbit.meta.builder;
import io.advantageous.boon.core.Lists;
import io.advantageous.boon.core.reflection.ClassMeta;
import io.advantageous.qbit.annotation.RequestMapping;
import io.advantageous.qbit.meta.ServiceMethodMeta;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Created ... | 1,001 | 0.69031 | 0.682318 | 44 | 21.772728 | 26.650826 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.340909 | false | false | 12 |
96e11b29234851697d67524c544d47d1780f072d | 3,375,844,302,442 | 179302fbc633e6d7762aadd5541d60f4a693a98c | /src/main/java/net/pl3x/map/fabric/tiles/Tile.java | 246c67e10455c8b64772dba59cc3b611d7513b1f | [
"MIT"
] | permissive | pl3xgaming/Pl3xMap-Fabric | https://github.com/pl3xgaming/Pl3xMap-Fabric | 9938232fd613be8b65f47cdc75b76c0df9d5fb64 | ec117879fe3a6bb95e8b12ff57f9c97b7eb3bf90 | refs/heads/master | 2023-08-11T19:33:09.652000 | 2021-09-03T15:23:47 | 2021-09-03T15:23:47 | 390,646,829 | 12 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.pl3x.map.fabric.tiles;
import com.mojang.blaze3d.systems.RenderSystem;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.texture.NativeImageBackedTexture;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.util.Identifier;
import net.pl3x.map.fabric.Pl3xMap;
impo... | UTF-8 | Java | 4,546 | java | Tile.java | Java | [] | null | [] | package net.pl3x.map.fabric.tiles;
import com.mojang.blaze3d.systems.RenderSystem;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.texture.NativeImageBackedTexture;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.util.Identifier;
import net.pl3x.map.fabric.Pl3xMap;
impo... | 4,546 | 0.578091 | 0.566212 | 148 | 29.716217 | 29.76894 | 163 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.810811 | false | false | 12 |
f0d87017c6a9a3dd40311726b3ef6ed57cb686c1 | 25,391,846,715,463 | 8d2cb2384311570a3d096b317ed815127d9dfe2a | /j360-raft-counter/src/main/java/me/j360/raft/counter/command/BooleanCommand.java | ad83e3725809b4aa30b0034577010b4a1c57650b | [] | no_license | xuminwlt/j360-raft | https://github.com/xuminwlt/j360-raft | 1f00d0608c01ef00a31f2a9a19411ed6922b5d40 | 086ea89b91be3e1a0ff98cd84b1284e24d75ce55 | refs/heads/master | 2020-05-02T10:34:12.680000 | 2019-04-17T07:15:41 | 2019-04-17T07:15:41 | 177,900,522 | 5 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package me.j360.raft.counter.command;
import java.io.Serializable;
/**
* @author: min_xu
*/
public class BooleanCommand implements Serializable {
private static final long serialVersionUID = 2776110757482798187L;
private boolean success;
private String errorMsg;
private String ... | UTF-8 | Java | 1,096 | java | BooleanCommand.java | Java | [
{
"context": "nd;\n\nimport java.io.Serializable;\n\n/**\n * @author: min_xu\n */\npublic class BooleanCommand implements Serial",
"end": 91,
"score": 0.8304125666618347,
"start": 85,
"tag": "USERNAME",
"value": "min_xu"
}
] | null | [] | package me.j360.raft.counter.command;
import java.io.Serializable;
/**
* @author: min_xu
*/
public class BooleanCommand implements Serializable {
private static final long serialVersionUID = 2776110757482798187L;
private boolean success;
private String errorMsg;
private String ... | 1,096 | 0.616788 | 0.596715 | 52 | 20.076923 | 18.805529 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.365385 | false | false | 12 |
a3545eb9525461541f9eb78b845286ef31f0c9db | 17,360,257,826,004 | 8b37a6fe0a647f7b2dea197cb9c2456faa09e408 | /src/main/java/com/makun/rpc/jike/NameService.java | 89ca84bfa0ffee6dfb4b11818e3a5b3716418342 | [] | no_license | MichaelDady/java_base_knowledge | https://github.com/MichaelDady/java_base_knowledge | 9212e4eee66a3362012a84acdca089a3b6957adf | a80dda3766baa6b2d944786eb8392d0cdad8cb34 | refs/heads/master | 2022-12-22T14:45:45.721000 | 2020-02-03T14:10:01 | 2020-02-03T14:10:01 | 205,149,494 | 0 | 0 | null | false | 2022-12-16T04:32:38 | 2019-08-29T11:36:50 | 2020-02-03T14:10:45 | 2022-12-16T04:32:36 | 3,059 | 0 | 0 | 3 | Java | false | false | package com.makun.rpc.jike;
import java.io.IOException;
import java.net.URI;
/**
* 注册中心
*/
public interface NameService {
/**
* 注册服务
*
* @param serviceName 服务名称
* @param uri 服务地址
*/
void registerService(String serviceName, URI uri) throws IOException;
/**
* 查询服务地址
... | UTF-8 | Java | 510 | java | NameService.java | Java | [] | null | [] | package com.makun.rpc.jike;
import java.io.IOException;
import java.net.URI;
/**
* 注册中心
*/
public interface NameService {
/**
* 注册服务
*
* @param serviceName 服务名称
* @param uri 服务地址
*/
void registerService(String serviceName, URI uri) throws IOException;
/**
* 查询服务地址
... | 510 | 0.604444 | 0.604444 | 25 | 17 | 18.187908 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.24 | false | false | 12 |
7dca83c6611750b87dccd236bfb1b8c2c071d089 | 32,736,240,793,384 | 922ce78b37521cc06b79667d34b9053e64d0e3a1 | /src/main/java/io/javabrains/springbootstarter/course/CourseRepository.java | d897c2e7958c191888f2a59c149703b559150741 | [] | no_license | roshanaale9818/CoursesSpringBootApplication | https://github.com/roshanaale9818/CoursesSpringBootApplication | a652527e6a66df1468c3b4ec0d6b1512ff1b61a5 | 832eef355f70e84a8393c965622d04f92b0cfd4c | refs/heads/master | 2022-11-24T14:04:26.319000 | 2020-07-30T17:22:49 | 2020-07-30T17:22:49 | 283,834,291 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package io.javabrains.springbootstarter.course;
import java.util.List;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
//my custom repository will extend the built in crud repository for Crud operations
//@Repository
public interface CourseRepository exten... | UTF-8 | Java | 540 | java | CourseRepository.java | Java | [] | null | [] | package io.javabrains.springbootstarter.course;
import java.util.List;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
//my custom repository will extend the built in crud repository for Crud operations
//@Repository
public interface CourseRepository exten... | 540 | 0.792593 | 0.792593 | 21 | 24.714285 | 26.040524 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.761905 | false | false | 12 |
3aca64af87dde6a2d336e95481a5883ed84eca2d | 32,736,240,792,185 | cce16e39d9b009ff1fc8f737717e881d86280615 | /ShopMini/src/main/java/com/dongvv2/daoimp/ProductDaoImp.java | fc786641f41c7273f8e2674cfff5c8c732d5eaf5 | [] | no_license | vovandong9646/MiniShopJv | https://github.com/vovandong9646/MiniShopJv | 99626210c7e38065c4976bce11aec10be8d37a1c | e64f3b23105e93b7c1afe7251571d9dddae86029 | refs/heads/master | 2020-03-17T19:55:30.297000 | 2018-05-18T01:12:19 | 2018-05-18T01:12:19 | 133,884,351 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dongvv2.daoimp;
import com.dongvv2.dao.ProductDao;
import com.dongvv2.persistence.data.ProductEntity;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.query.Query;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annota... | UTF-8 | Java | 4,162 | java | ProductDaoImp.java | Java | [] | null | [] | package com.dongvv2.daoimp;
import com.dongvv2.dao.ProductDao;
import com.dongvv2.persistence.data.ProductEntity;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.query.Query;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annota... | 4,162 | 0.706631 | 0.703988 | 110 | 36.836365 | 29.690075 | 133 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.545455 | false | false | 12 |
0bb3213230f32155a115b3a8f6c966340f975547 | 10,093,173,213,607 | 0f3a68065fffb6df291bc4a229f5017a82666104 | /Lcb_construction/soa-misc/soa-misc-release-resource/com/lcb/soa/misc/task/ITask.java | 1a509a916735a8652b3f1d01af09bebe21fc27ba | [] | no_license | wang6771264/OrdinaryMaple | https://github.com/wang6771264/OrdinaryMaple | f557321466fae0cd1badafd55a9dd5e2bdae2f8d | 2987a44feaae39c1006527337e65765c560bba1c | refs/heads/master | 2017-11-12T11:59:18.450000 | 2017-11-10T10:15:11 | 2017-11-10T10:15:11 | 83,937,225 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lcb.soa.misc.task;
import java.io.Serializable;
public interface ITask extends Runnable, Serializable {
}
| UTF-8 | Java | 121 | java | ITask.java | Java | [] | null | [] | package com.lcb.soa.misc.task;
import java.io.Serializable;
public interface ITask extends Runnable, Serializable {
}
| 121 | 0.785124 | 0.785124 | 7 | 16.285715 | 20.189915 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.428571 | false | false | 12 |
fe963f2bf51af95f1731a99fee43c20370f2c77e | 8,340,826,508,250 | 33f437ff06081711d45e2b0f2e8eb85975c78fe9 | /java/com/adaptionsoft/games/trivia/runner/PlayersTest.java | 2cc35e848d385a3387614f86119495fa4839eaf9 | [] | no_license | vicalro/trivia | https://github.com/vicalro/trivia | 3e4fa561e6082921ba7f9575c31bcee6fc8eb606 | d5d156c5d3ee21f09b5b1a6e8b917effbb81f55f | refs/heads/master | 2021-01-16T21:35:14.342000 | 2012-04-24T00:18:22 | 2012-04-24T00:18:22 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.adaptionsoft.games.trivia.runner;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
public class PlayersTest {
public Players players;
public int maxPlayers;
@Before
public void initializePlayersTest(){
maxPlayers = 5;
players = new Players(maxPlayers);
player... | UTF-8 | Java | 3,023 | java | PlayersTest.java | Java | [
{
"context": "s = new Players(maxPlayers);\n\t\tplayers.addPlayer(\"Carles\");\n\t\tplayers.addPlayer(\"Andres\");\n\t\tplayers.addPl",
"end": 339,
"score": 0.9997823238372803,
"start": 333,
"tag": "NAME",
"value": "Carles"
},
{
"context": "players.addPlayer(\"Carles\");\n\t\tplayers... | null | [] | package com.adaptionsoft.games.trivia.runner;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
public class PlayersTest {
public Players players;
public int maxPlayers;
@Before
public void initializePlayersTest(){
maxPlayers = 5;
players = new Players(maxPlayers);
player... | 3,023 | 0.713199 | 0.695997 | 137 | 21.065693 | 15.138391 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.284672 | false | false | 12 |
d7ce9556a2984d69d457fa02de7bf6b2c6424577 | 23,390,391,964,457 | ca6ac9892827c008b5319a4ecbb775a49ffd8a50 | /src/tw/leonchen/model/LoginService.java | 9dd9c68ac10fb2f0e8f2562022de515ad62fc14f | [] | no_license | Beck791/SpringWebProject | https://github.com/Beck791/SpringWebProject | f33a6c25af4e71d313c624401e701613ca232acd | 8ac9d09ed8853aea58d5ba6f3bccd916d9e8c5b0 | refs/heads/main | 2023-01-06T18:36:18.074000 | 2020-11-02T04:27:51 | 2020-11-02T04:27:51 | 309,238,553 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package tw.leonchen.model;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service(value = "lgService")
public class LoginService {
@Autowired
private LoginDAO loginDao;
public LoginService() {
}
public LoginService(LoginDAO loginDao) {
thi... | UTF-8 | Java | 529 | java | LoginService.java | Java | [] | null | [] | package tw.leonchen.model;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service(value = "lgService")
public class LoginService {
@Autowired
private LoginDAO loginDao;
public LoginService() {
}
public LoginService(LoginDAO loginDao) {
thi... | 529 | 0.752363 | 0.752363 | 28 | 17.892857 | 19.32123 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.071429 | false | false | 12 |
5bf850ee295551dce48ef3c407be928637550687 | 4,904,852,662,870 | 544ff5c9f9b5e7f5e33da9bca9c170ccad7d5054 | /app/src/main/java/net/bosccoma/info/engrescat/LlistaEventsActivity.java | a2a9ac2070deb3d90e50294899d5e87b9120140f | [] | no_license | kirudas/EngresCAT | https://github.com/kirudas/EngresCAT | 441f109bc2b64034cad5e64a34907b65810348f4 | 29b1e0a31e99a15437449fb76b63c41e584dddb3 | refs/heads/master | 2020-03-15T13:23:08.712000 | 2018-06-01T00:13:00 | 2018-06-01T00:13:00 | 132,165,085 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.bosccoma.info.engrescat;
import android.content.Intent;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.Toolbar;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuInflate... | UTF-8 | Java | 13,446 | java | LlistaEventsActivity.java | Java | [] | null | [] | package net.bosccoma.info.engrescat;
import android.content.Intent;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.Toolbar;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuInflate... | 13,446 | 0.603926 | 0.592656 | 287 | 45.686413 | 35.299404 | 252 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.655052 | false | false | 12 |
0c7a584bd537525f78751448b339db00a1fd0400 | 15,350,213,153,067 | 70d436b1f9829e99e2a9789c923e4569a39abafb | /CSSE2002/lectures/week9/DisplayButton.java | 3bfb04875b2c72d00364d7872521f522e27b42cf | [] | no_license | ben-doyle/university-projects | https://github.com/ben-doyle/university-projects | 334b03cd3714161da44b92a4b979de0b5f64ae3c | cf2324984d03245d9d556ab2c358c8058b988741 | refs/heads/master | 2022-08-03T02:21:35.492000 | 2018-03-06T00:29:11 | 2018-03-06T00:29:11 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package week9;
import javafx.application.Application;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.layout.BorderPane;
import javafx.scene.control.Button;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
public class DisplayButton extends Application {
public static ... | UTF-8 | Java | 1,478 | java | DisplayButton.java | Java | [] | null | [] | package week9;
import javafx.application.Application;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.layout.BorderPane;
import javafx.scene.control.Button;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
public class DisplayButton extends Application {
public static ... | 1,478 | 0.627199 | 0.622463 | 54 | 26.370371 | 22.048176 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.444444 | false | false | 12 |
11fe0938a628338ab354440e51b32724a104fcef | 8,718,783,630,260 | 901aed8f7e3f82b013ad2a8dafe7dcda3ef65169 | /detrin-gui/src/main/java/de/soniro/detrin/gui/listeners/ExportReportListener.java | 89ce64805f71809fedad5080172826d4eaa0b571 | [] | no_license | tectronics/detrin | https://github.com/tectronics/detrin | f988a0ee9d7e02f4c196d8220d1c124ff06890ad | 2bbcbd2b9dc3282d5aeb7d8a2d488ce21dbb832c | refs/heads/master | 2018-01-11T15:11:24.185000 | 2014-03-24T20:23:24 | 2014-03-24T20:23:24 | 46,183,910 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package de.soniro.detrin.gui.listeners;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.swing.JFileChooser;
import javax.sw... | UTF-8 | Java | 3,977 | java | ExportReportListener.java | Java | [
{
"context": "l;\n\n/**\n * The file import listener.\n *\n * @author Nina Rothenberg\n */\npublic class ExportReportListener implements ",
"end": 912,
"score": 0.9997997283935547,
"start": 897,
"tag": "NAME",
"value": "Nina Rothenberg"
}
] | null | [] | package de.soniro.detrin.gui.listeners;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.swing.JFileChooser;
import javax.sw... | 3,968 | 0.760121 | 0.756852 | 114 | 33.885963 | 32.856617 | 172 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.070175 | false | false | 12 |
732cf5b47e9d7ee46753d5269ac9c056350dd312 | 13,846,974,608,474 | c70ac5f26c690bf33246f8ff32e8c243e63293e9 | /mjl-jersey-common/src/main/java/de/codecentric/mjl/jerseytest/exceptions/TodoNotFoundException.java | 566cf94007f83413be994414d095599770154b9f | [] | no_license | maddymishra/jerseytest | https://github.com/maddymishra/jerseytest | 9421d1064ebe9f6551095b2d9d31edc81f4870ab | 1eaea4af982f3674b9eaeb2186d5a0905af591df | refs/heads/master | 2021-01-22T05:42:39.998000 | 2012-04-10T08:09:21 | 2012-04-10T08:09:21 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package de.codecentric.mjl.jerseytest.exceptions;
public class TodoNotFoundException extends RuntimeException {
public TodoNotFoundException() {
super();
}
public TodoNotFoundException(String msg) {
super(msg);
}
}
| UTF-8 | Java | 235 | java | TodoNotFoundException.java | Java | [] | null | [] | package de.codecentric.mjl.jerseytest.exceptions;
public class TodoNotFoundException extends RuntimeException {
public TodoNotFoundException() {
super();
}
public TodoNotFoundException(String msg) {
super(msg);
}
}
| 235 | 0.740426 | 0.740426 | 11 | 20.363636 | 21.843546 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.454545 | false | false | 12 |
9167e8d01a5daeaf7413c8574db5fd06e422684b | 27,041,114,154,269 | d4022caaa56901a55646783e2db8dafd84d7bc7c | /src/main/java/ExecuteCommand.java | 40d0951d24ec013be945dee16ed3ecbc7bf7bea7 | [] | no_license | Sylwester12351/DiscPartJVM | https://github.com/Sylwester12351/DiscPartJVM | 1765faab00b4d3a96f2a77092190039cea8203fc | d4458dd40930312b34dff3699e3c133d1f732111 | refs/heads/master | 2023-03-26T10:20:44.287000 | 2021-03-23T17:37:28 | 2021-03-23T17:37:28 | 345,200,187 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class ExecuteCommand {
private Runtime runtime = Runtime.getRuntime();
StringBuilder result = new StringBuilder();
public StringBuilder getResult() {
return result;
}
public void commands(St... | UTF-8 | Java | 897 | java | ExecuteCommand.java | Java | [] | null | [] | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class ExecuteCommand {
private Runtime runtime = Runtime.getRuntime();
StringBuilder result = new StringBuilder();
public StringBuilder getResult() {
return result;
}
public void commands(St... | 897 | 0.571906 | 0.570792 | 32 | 27.03125 | 21.34901 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4375 | false | false | 12 |
e306b257031ab5d6272830b1d202500caf186554 | 27,659,589,417,817 | 2e18f888bf92a8cd7cfb28304681aed739c243cc | /app/controllers/security/HandlerSecurityController.java | 3719d161d74abcf97e7a4cdb988d8cddd7cc40af | [
"Apache-2.0"
] | permissive | Agrity/handler-server | https://github.com/Agrity/handler-server | af831f91773b517813533c00dc0d5b2e2ba282b3 | e2ac3c74b1c97f97d91d6e3930efe3d53907d092 | refs/heads/master | 2021-01-13T09:48:16.586000 | 2016-08-17T21:32:17 | 2016-08-17T21:32:17 | 53,475,545 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package controllers.security;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import javax.inject.Inject;
import models.Handler;
import play.Logger;
import play.libs.Json;
import play.mvc.BodyParser;
import play.mvc.Controller;
import play.mvc.Http;
import play... | UTF-8 | Java | 2,518 | java | HandlerSecurityController.java | Java | [
{
"context": "OKEN\";\n public static final String AUTH_TOKEN = \"auth_token\";\n\n public static final String HANDLER_KEY = \"ha",
"end": 647,
"score": 0.9097966551780701,
"start": 637,
"tag": "PASSWORD",
"value": "auth_token"
}
] | null | [] | package controllers.security;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
import javax.inject.Inject;
import models.Handler;
import play.Logger;
import play.libs.Json;
import play.mvc.BodyParser;
import play.mvc.Controller;
import play.mvc.Http;
import play... | 2,518 | 0.714853 | 0.714853 | 96 | 25.229166 | 22.46269 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.447917 | false | false | 12 |
292bc944cfda310a6696d8e7e2a10b1e4d7f5153 | 29,214,367,592,597 | f762a8d198d15540247c0074b13a4673a19b2b0e | /Documents/Hany/New folder/ANother Client Server/src/com/bornander/clientservertest/client.java | 09dd1780a30ac0ae498fd042e3e0c546d9c9e3f0 | [] | no_license | hanyeldeib/Test-Repository | https://github.com/hanyeldeib/Test-Repository | 6dd26f66a4ede332f3abfbd58b40a2523cfb7d78 | 2e5dd176f51a75a9a77aaed11edbea54cf26072d | refs/heads/master | 2021-01-21T04:44:07.577000 | 2018-09-24T17:33:46 | 2018-09-24T17:33:46 | 39,973,710 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.bornander.clientservertest;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.Socket;
public class client {
public void go() throws IOException {
System.out.println("Getting some good advice...");
Socket socket =... | UTF-8 | Java | 734 | java | client.java | Java | [] | null | [] | package com.bornander.clientservertest;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.Socket;
public class client {
public void go() throws IOException {
System.out.println("Getting some good advice...");
Socket socket =... | 734 | 0.643052 | 0.637602 | 24 | 28.583334 | 23.467915 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.625 | false | false | 12 |
18119ea50c49a3fb24d9c3b8c1c0b0a429e09701 | 17,446,157,175,430 | ed5b9530340eb46e8cf75ff96af52902fa8af457 | /src/org/techsoft/sklad/model/SurovinyCmbModel.java | 916d5312faba6a29c76ac37c45575fd66a799b65 | [] | no_license | TechSoftDbs2/sklad | https://github.com/TechSoftDbs2/sklad | 38f09c3b7db73a9003ce119c985412f75a575b3c | a7f70901490118da26a75743251434fc557646bb | refs/heads/master | 2021-01-10T20:24:45.797000 | 2015-05-10T19:46:22 | 2015-05-10T19:46:22 | 33,238,145 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.techsoft.sklad.model;
import java.util.List;
import javax.swing.DefaultComboBoxModel;
import org.techsoft.sklad.pojo.Suroviny;
public class SurovinyCmbModel extends DefaultComboBoxModel<Suroviny> {
private static final long serialVersionUID = -1959762421651455693L;
private List<Suroviny> suroviny = nul... | UTF-8 | Java | 879 | java | SurovinyCmbModel.java | Java | [] | null | [] | package org.techsoft.sklad.model;
import java.util.List;
import javax.swing.DefaultComboBoxModel;
import org.techsoft.sklad.pojo.Suroviny;
public class SurovinyCmbModel extends DefaultComboBoxModel<Suroviny> {
private static final long serialVersionUID = -1959762421651455693L;
private List<Suroviny> suroviny = nul... | 879 | 0.746303 | 0.724687 | 45 | 18.533333 | 20.004 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.2 | false | false | 12 |
2ed567354c3d4bb6ce64c6da5058fafb71c40506 | 22,471,268,936,113 | 6d9c2aa1fd42e8974f1252e3dcdde714eeb0d078 | /test/org/harvey/solve/business/FibonacciProblemSolverBusinessTest.java | d2a92cdde0a1b8f0f16d6091d0bc211e7f934c1f | [] | no_license | McDikeKi/MyServlet | https://github.com/McDikeKi/MyServlet | f049b29eba3514e3fd73780b60e6ec69fffa7be1 | cbc9ddc8721d5bcd2287abfd4b113653f3315de7 | refs/heads/master | 2021-05-15T00:49:18.102000 | 2017-10-24T06:53:44 | 2017-10-24T06:53:44 | 103,108,559 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.harvey.solve.business;
import static org.junit.Assert.*;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import static org.mockito.Mockito.*;
import org.harvey.solve.business.impl.FibonacciProblemSolverBusinessImpl;
import org.harvey.solve.service.FibonacciProblemSolverSer... | UTF-8 | Java | 1,231 | java | FibonacciProblemSolverBusinessTest.java | Java | [] | null | [] | package org.harvey.solve.business;
import static org.junit.Assert.*;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import static org.mockito.Mockito.*;
import org.harvey.solve.business.impl.FibonacciProblemSolverBusinessImpl;
import org.harvey.solve.service.FibonacciProblemSolverSer... | 1,231 | 0.774167 | 0.768481 | 45 | 26.355556 | 22.908665 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.333333 | false | false | 12 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.