id stringlengths 36 36 | meta stringlengths 429 697 | url stringlengths 27 109 | tokens int64 137 584 | domain_prefix stringlengths 16 106 | score float64 0.16 0.3 | code_content stringlengths 960 1.25k |
|---|---|---|---|---|---|---|
8775b1b6-3850-46dd-878f-5a8f5d8c0af9 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-11-28 06:49:01", "repo_name": "BookArchive/BookArchive", "sub_path": "/src/main/java/Comp271/BookArchive/BookArchive/DataModels/User.java", "file_name": "User.java", "file_ext": "java", "file_size_in_byte": 1176,... | https://github.com/BookArchive/BookArchive | 243 | FILENAME: User.java | 0.20947 | package Comp271.BookArchive.BookArchive.DataModels;
import javax.persistence.*;
@Entity
@NamedQuery(name = "User.findByUsername",query = "SELECT u FROM User u WHERE u.username = ?3")
@Table(name = "Users")
public class User {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private long id;
privat... |
1b719c5d-fbbc-4deb-a219-1cb08223ba68 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2019-10-27T19:55:52", "repo_name": "jonathanxlee/order-tracker", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 1115, "line_count": 16, "lang": "en", "doc_type": "text",... | https://github.com/jonathanxlee/order-tracker | 249 | FILENAME: README.md | 0.217338 | # Order Tracker
This application should be able to identify emails in your gmail inboc that involve orders and display the status
of these orders within a web app
## Status 10/12/19
After consulting with a professional, I decided to restructure my design process to be more in-depth. I am changing my course of act... |
c34ed1c1-3ccd-4613-8bd6-5bb2a22751a7 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-04-12 08:37:31", "repo_name": "salmanit/MyDemoTest", "sub_path": "/app/src/main/java/com/sage/mydemotest/adapter/AdapterRVanima.java", "file_name": "AdapterRVanima.java", "file_ext": "java", "file_size_in_byte": ... | https://github.com/salmanit/MyDemoTest | 208 | FILENAME: AdapterRVanima.java | 0.249447 | package com.sage.mydemotest.adapter;
import android.view.View;
import android.widget.TextView;
import com.sage.mydemotest.R;
/**
* Created by Sage on 2016/4/1.
*/
public class AdapterRVanima extends AdapterVHbase {
@Override
public int getLayoutID() {
return R.layout.item_rv_anima;
}
@Over... |
e7701f3d-2ccd-4d74-8c52-e99a489054b6 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-12-01 17:06:58", "repo_name": "damiana/app-crud-cliente-sqlite", "sub_path": "/app/src/main/java/fatec/exemplo/sqlite/MainActivity.java", "file_name": "MainActivity.java", "file_ext": "java", "file_size_in_byte":... | https://github.com/damiana/app-crud-cliente-sqlite | 196 | FILENAME: MainActivity.java | 0.195594 | package fatec.exemplo.sqlite;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
Button btnCadastro = null;
Button btnListar = null;
@Over... |
bd8b78d7-60b2-43d2-b838-1feb044b168c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2014-05-25 20:02:32", "repo_name": "yohanbeschi/jvm_hardcore", "sub_path": "/03_projects/pjba/01_src/main/java/org/isk/jvmhardcore/pjba/instruction/meta/ShortArgMetaInstruction.java", "file_name": "ShortArgMetaInstruc... | https://github.com/yohanbeschi/jvm_hardcore | 218 | FILENAME: ShortArgMetaInstruction.java | 0.293404 | package org.isk.jvmhardcore.pjba.instruction.meta;
import org.isk.jvmhardcore.pjba.instruction.factory.ShortArgInstructionFactory;
import org.isk.jvmhardcore.pjba.structure.Instruction;
public class ShortArgMetaInstruction extends MetaInstruction {
final private static short SHORT_ZERO = 0;
private ShortArgInst... |
e299676e-caa9-4206-b6d1-ef2fc848f7b0 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-10-19 16:23:14", "repo_name": "escoffier/springormdemo", "sub_path": "/src/main/java/com/example/xmljpademo/service/PhoneService.java", "file_name": "PhoneService.java", "file_ext": "java", "file_size_in_byte": 9... | https://github.com/escoffier/springormdemo | 177 | FILENAME: PhoneService.java | 0.271252 | package com.example.xmljpademo.service;
import com.example.xmljpademo.model.Phone;
import com.example.xmljpademo.repository.empsrepository.PhoneRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.P... |
4114fc0d-867b-4c25-84fb-0ff01fe0d1c5 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-12-15 13:38:28", "repo_name": "wuhao939/ctf", "sub_path": "/src/main/java/com/pojo/Message.java", "file_name": "Message.java", "file_ext": "java", "file_size_in_byte": 1017, "line_count": 53, "lang": "en", "doc_t... | https://github.com/wuhao939/ctf | 197 | FILENAME: Message.java | 0.225417 | package com.pojo;
import javax.persistence.Entity;
import javax.persistence.Id;
@Entity
public class Message {
@Id
private int id;
private String username;
private String contexts;
private String time;
public Message(){}
public Message(String username,String contexts,String ... |
6fa28a97-3332-4e00-85f5-cf0788b11fbd | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2018-07-05T07:34:46", "repo_name": "HackAfro/ionic-graph-app", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 1177, "line_count": 43, "lang": "en", "doc_type": "text", "... | https://github.com/HackAfro/ionic-graph-app | 322 | FILENAME: README.md | 0.289372 | # Ionic-Realtime-Data-Visualization
Realtime data visualisation using Pusher and Ionic
You can find the article [here](https://pusher.com/tutorials/live-graph-ionic)
## Prerequisites
- [Ionic](https://ionicframework.com/)
- [Express](https://expressjs.com/)
- [Pusher](https://pusher.com)
- [ChartJs](http://www.chartj... |
d2fefa67-a957-4b3a-8429-8cfb29e4ba9f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2018-08-05T23:59:06", "repo_name": "NareshAruna/WebSocket", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 1230, "line_count": 42, "lang": "en", "doc_type": "text", "blo... | https://github.com/NareshAruna/WebSocket | 308 | FILENAME: README.md | 0.27048 | # WebsocketNew
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 6.0.8.
## Development server
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
## Code scaffolding
Run `ng new a... |
28844ef2-8bf3-45aa-bac9-238f84da7fb1 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-08-18 18:10:34", "repo_name": "AliaksandrKlimets/FinalProj", "sub_path": "/src/main/java/com/epam/car_rental/tag/FullNameTag.java", "file_name": "FullNameTag.java", "file_ext": "java", "file_size_in_byte": 1000, ... | https://github.com/AliaksandrKlimets/FinalProj | 212 | FILENAME: FullNameTag.java | 0.264358 | package com.epam.car_rental.tag;
import com.epam.car_rental.util.TagUtil;
import org.apache.log4j.Logger;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.tagext.TagSupport;
public class FullNameTag extends TagSupport {
private final static Logger LOGGER = Logg... |
06bdda3d-ffde-407d-91cd-ef15a2b6bf67 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-01-14 10:01:16", "repo_name": "Minuit-Z/MyTickets", "sub_path": "/app/src/main/java/ziye/mytickets/adapters/SmsAdapter.java", "file_name": "SmsAdapter.java", "file_ext": "java", "file_size_in_byte": 1175, "line_c... | https://github.com/Minuit-Z/MyTickets | 253 | FILENAME: SmsAdapter.java | 0.295027 | package ziye.mytickets.adapters;
import android.content.Context;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
import java.util.ArrayList;
import ziye.mytickets.R;
import ziye.mytickets.dao.SmsBean;
/**
* Created by Administrator on 2018... |
19797a22-0651-4cd5-ad5e-74de409cd7d7 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2017-07-06T01:39:29", "repo_name": "sivasamyk/logtrail-tools", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 987, "line_count": 18, "lang": "en", "doc_type": "text", "b... | https://github.com/sivasamyk/logtrail-tools | 201 | FILENAME: README.md | 0.199308 | # Logtrail-tools
Consists a bunch of tools that can be used to enhance the log messages shown in logtrail. Currently there are 2 modules
### Source Analyzer
Analyze the source code to extract logger information along with the variables logged. This will convert all the
log statement in source code into patterns tha... |
3cd7c1de-8351-4eee-a90b-d3ea4fb39092 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-09-06 13:15:35", "repo_name": "lindar-open/getAddress.io-client", "sub_path": "/src/main/java/com/lindar/getaddress/io/client/api/IPAddressResource.java", "file_name": "IPAddressResource.java", "file_ext": "java"... | https://github.com/lindar-open/getAddress.io-client | 206 | FILENAME: IPAddressResource.java | 0.245085 | package com.lindar.getaddress.io.client.api;
import com.google.gson.reflect.TypeToken;
import com.lindar.getaddress.io.client.util.GetAddressConfigs;
import com.lindar.getaddress.io.client.vo.GetAddressResponse;
import com.lindar.getaddress.io.client.vo.IPAddressVO;
import com.lindar.wellrested.vo.Result;
import java... |
9302c120-8af9-4b28-b6b9-5c9f95aac064 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-09-28 05:44:06", "repo_name": "ysakanaka/BioNEAT", "sub_path": "/src/main/java/erne/mutation/rules/TogglePseudoTemplate.java", "file_name": "TogglePseudoTemplate.java", "file_ext": "java", "file_size_in_byte": 99... | https://github.com/ysakanaka/BioNEAT | 250 | FILENAME: TogglePseudoTemplate.java | 0.289372 | package erne.mutation.rules;
import erne.Individual;
import erne.mutation.MutationRule;
import reactionnetwork.Node;
public class TogglePseudoTemplate extends MutationRule {
public double probGeneMutation = 0.3;
public TogglePseudoTemplate(int weight) {
super(weight);
}
/**
*
*/
private static final l... |
b2e261c7-289c-4893-94ac-d4729f048a5f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-06-22 16:28:38", "repo_name": "yanisdxw/micro-service", "sub_path": "/service-1/src/test/java/com/dxw/cloud/account/AccountServiceTest.java", "file_name": "AccountServiceTest.java", "file_ext": "java", "file_size... | https://github.com/yanisdxw/micro-service | 207 | FILENAME: AccountServiceTest.java | 0.286169 | package com.dxw.cloud.account;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import static org.junit.Assert.*;
@RunWith(S... |
a878287f-c37b-4c41-a7a2-bc295b624645 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-04-03 15:24:05", "repo_name": "MahmoudAymann/MySpareOld", "sub_path": "/app/src/main/java/com/spectraapps/myspare/navdrawer/AboutActivity.java", "file_name": "AboutActivity.java", "file_ext": "java", "file_size_i... | https://github.com/MahmoudAymann/MySpareOld | 210 | FILENAME: AboutActivity.java | 0.203075 | package com.spectraapps.myspare.navdrawer;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import com.spectra... |
04973a24-9014-42db-be64-cbb8d155b8c2 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-09-11 15:26:15", "repo_name": "Adronik/Book", "sub_path": "/src/main/java/Pages/LandingPage.java", "file_name": "LandingPage.java", "file_ext": "java", "file_size_in_byte": 1016, "line_count": 34, "lang": "en", "... | https://github.com/Adronik/Book | 200 | FILENAME: LandingPage.java | 0.252384 | package Pages;
import Utils.BasePage;
import Utils.WebdriverControl;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.testng.Assert;
public class LandingPage exten... |
dc3f4038-e7c7-428c-afd9-52e997e5d485 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-10-15 13:08:03", "repo_name": "xinghen110/szjh", "sub_path": "/src/main/java/com/magustek/szjh/config/ApplicationStartup.java", "file_name": "ApplicationStartup.java", "file_ext": "java", "file_size_in_byte": 107... | https://github.com/xinghen110/szjh | 205 | FILENAME: ApplicationStartup.java | 0.214691 | package com.magustek.szjh.config;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import or... |
5360fda4-2312-47d6-b885-d41668bfed36 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2019-10-30T11:58:27", "repo_name": "heyjaywilson/moodlogger", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 995, "line_count": 27, "lang": "en", "doc_type": "text", "bl... | https://github.com/heyjaywilson/moodlogger | 261 | FILENAME: README.md | 0.193147 | 


 {
super();
car = car;
id = 0;
}
public TaxiDriver(String name, String surname, LocalDate bornDate, String numberPhone, Ca... |
0207117f-6ccf-4feb-869c-829f1b10c760 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-10-07 05:56:00", "repo_name": "Bhismydv/FirebasePhoneNumberAuthentication", "sub_path": "/app/src/main/java/com/example/firebasephonenumberauthentication/ProfileActivity.java", "file_name": "ProfileActivity.java"... | https://github.com/Bhismydv/FirebasePhoneNumberAuthentication | 147 | FILENAME: ProfileActivity.java | 0.205615 | package com.example.firebasephonenumberauthentication;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import com.google.firebase.auth.FirebaseAuth;
public class ProfileActivity extends AppCompatActivit... |
1125186e-e49a-42c1-abb4-d2b14cd98001 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-06-28 10:41:18", "repo_name": "punit-patil/RchiveAutomation", "sub_path": "/src/main/java/co/rchive/pages/verifyemailspages/RchiveEmailVerificationForConRequest.java", "file_name": "RchiveEmailVerificationForConR... | https://github.com/punit-patil/RchiveAutomation | 231 | FILENAME: RchiveEmailVerificationForConRequest.java | 0.290981 | package co.rchive.pages.verifyemailspages;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
import co.rchive.util.Wait;
public class RchiveEmailVerificationForConRequest extends RchiveEmailVerificat... |
b6c33729-d9ae-432c-8194-66e45576fbc9 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2014-05-13T21:46:46", "repo_name": "wunsmat/BVU-Info", "sub_path": "/src/com/example/bvinfo/MainActivity.java", "file_name": "MainActivity.java", "file_ext": "java", "file_size_in_byte": 1017, "line_count": 41, "lang"... | https://github.com/wunsmat/BVU-Info | 234 | FILENAME: MainActivity.java | 0.294215 | package com.example.bvinfo;
import org.apache.cordova.Config;
import org.apache.cordova.DroidGap;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.widget.TextView;
import com.pushbots.push.Pushbots;
public class MainActivity extends DroidGap {
private String SENDER_ID =... |
5383694a-63fc-48df-a5af-4c5b170a9fd6 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-03-15 19:09:49", "repo_name": "amrm2018/amr_project", "sub_path": "/app/src/main/java/atfalna/atfalna/Login_Register_Java/Send_Data_Registration.java", "file_name": "Send_Data_Registration.java", "file_ext": "jav... | https://github.com/amrm2018/amr_project | 247 | FILENAME: Send_Data_Registration.java | 0.271252 | package atfalna.atfalna.Login_Register_Java;
/**
* Created by amr1 on 2/21/2018.
*/
import com.android.volley.Response;
import com.android.volley.toolbox.StringRequest;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;
public class Send_Data_Registration extends StringRequest {
... |
faed810f-f8bd-4fbc-9790-fc57d407ac7f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-02-16 22:48:46", "repo_name": "mehrdadinho/review-product", "sub_path": "/src/main/java/com/mehrdad/reviewproduct/model/Order.java", "file_name": "Order.java", "file_ext": "java", "file_size_in_byte": 1016, "line... | https://github.com/mehrdadinho/review-product | 221 | FILENAME: Order.java | 0.282988 | package com.mehrdad.reviewproduct.model;
import com.mehrdad.reviewproduct.model.enums.OrderStatus;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import javax.persistence.*;
import java.util.Date;
import java.util.Set;
/**
* Created by m.peykari on 2/1... |
9ac5a29f-d0af-42f2-99cc-412619aa48dd | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-10-11 20:31:48", "repo_name": "AlisherNurgazin/Scheduler", "sub_path": "/src/main/java/kz/spring/product/model/Role.java", "file_name": "Role.java", "file_ext": "java", "file_size_in_byte": 1175, "line_count": 46... | https://github.com/AlisherNurgazin/Scheduler | 234 | FILENAME: Role.java | 0.27513 | package kz.spring.product.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.*;
import org.springframework.data.jpa.domain.support.AuditingEntityListener;
import org.springframework.security.core.GrantedAuthority;
import javax.persistence.*;
import java.util.List;
@Entity
@Data
@AllArgsConstruc... |
7583eae1-9a84-4859-b971-f40037d7ea08 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-11-08 11:13:51", "repo_name": "flypig5211/Jcoffe", "sub_path": "/memshell/src/main/java/com/sorry/bug/UnserializeServlet.java", "file_name": "UnserializeServlet.java", "file_ext": "java", "file_size_in_byte": 117... | https://github.com/flypig5211/Jcoffe | 232 | FILENAME: UnserializeServlet.java | 0.233706 | package com.sorry.bug;
import javax.servlet.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.io.InputStream;
import java.io.ObjectInputStream;
import java.io.Writer;
/**
* created by 0x22cb7139 on 2021/7/9
*/
public class Unseri... |
63ddd29f-0ada-4433-8810-103c9c521ecf | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-10-21 04:31:48", "repo_name": "xfeier53/Snake", "sub_path": "/Server/src/com/anu/GetBestScore.java", "file_name": "GetBestScore.java", "file_ext": "java", "file_size_in_byte": 1018, "line_count": 37, "lang": "en"... | https://github.com/xfeier53/Snake | 203 | FILENAME: GetBestScore.java | 0.29584 | /*
Authorship: Feier Xiao
*/
package com.anu;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.Statement;
public class GetBestScore {
public int getBestScore(String account){
int score = 0;
// Set query
String query = "SELECT BestScore FROM AndroidUs... |
75105bbb-d278-46e4-8652-433bde6cff65 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-09-23 05:51:15", "repo_name": "luyulove001/coeus-weibo", "sub_path": "/app/src/main/java/net/tatans/coeus/weibo/util/HomeSpan.java", "file_name": "HomeSpan.java", "file_ext": "java", "file_size_in_byte": 1184, "l... | https://github.com/luyulove001/coeus-weibo | 270 | FILENAME: HomeSpan.java | 0.26971 | package net.tatans.coeus.weibo.util;
import android.content.Context;
import android.content.Intent;
import android.graphics.Color;
import android.net.Uri;
import android.text.TextPaint;
import android.text.style.ClickableSpan;
import android.view.View;
/**
* Created by LCM on 2016/8/5. 13:38
* 链接跳转
*/
public clas... |
261e1f7c-9824-4119-b036-5ff8d3f2e11b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-09-18 13:40:48", "repo_name": "r0384156/gameSite", "sub_path": "/src/test/java/be/multimedi/gameSite/AppTest.java", "file_name": "AppTest.java", "file_ext": "java", "file_size_in_byte": 1036, "line_count": 49, "l... | https://github.com/r0384156/gameSite | 222 | FILENAME: AppTest.java | 0.249447 | package be.multimedi.gameSite;
import org.junit.jupiter.api.*;
import static org.junit.jupiter.api.Assertions.*;
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
class AppTest {
@BeforeAll
void startSomething() {
System.out.println("Starting something");
}
@BeforeEach
void createSomethin... |
26243011-8193-44e5-89e3-e0ea89203d80 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2020-06-16T00:05:17", "repo_name": "DigHis2020/weekSix", "sub_path": "/notes.md", "file_name": "notes.md", "file_ext": "md", "file_size_in_byte": 1053, "line_count": 25, "lang": "en", "doc_type": "text", "blob_id"... | https://github.com/DigHis2020/weekSix | 236 | FILENAME: notes.md | 0.239349 | pg. 16-24 Voyant link
details mostly family and friend relationships. Definitely the most sparse of the sections in my opinion in regards to worthwhile data.
pg. 25-43 Voyant link
contains details related to her social networks and how she interacted with her wider social connections. What did she do for fun? Who... |
46edbe67-c293-46a3-911e-ed32a4a69a95 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2012-06-13 05:50:00", "repo_name": "saaperezru/iudex", "sub_path": "/src/main/java/org/xtremeware/iudex/businesslogic/service/updateimplementations/UsersUpdate.java", "file_name": "UsersUpdate.java", "file_ext": "java... | https://github.com/saaperezru/iudex | 256 | FILENAME: UsersUpdate.java | 0.282196 | package org.xtremeware.iudex.businesslogic.service.updateimplementations;
import javax.persistence.EntityManager;
import org.xtremeware.iudex.businesslogic.service.crudinterfaces.Update;
import org.xtremeware.iudex.dao.CrudDao;
import org.xtremeware.iudex.entity.UserEntity;
import org.xtremeware.iudex.helper.DataBaseE... |
516cb6ef-c99e-411a-b72b-252bd3ea2c6f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2023-02-06 03:06:30", "repo_name": "foilen/database-tools", "sub_path": "/src/main/java/com/foilen/databasetools/manage/CommonCreateManageConfigOptions.java", "file_name": "CommonCreateManageConfigOptions.java", "file... | https://github.com/foilen/database-tools | 225 | FILENAME: CommonCreateManageConfigOptions.java | 0.255344 | /*
Database Tools
https://github.com/foilen/database-tools
Copyright (c) 2020-2023 Foilen (https://foilen.com)
The MIT License
http://opensource.org/licenses/MIT
*/
package com.foilen.databasetools.manage;
import org.kohsuke.args4j.Option;
/**
* The arguments to pass to the application.
*/
pu... |
506bfc10-4746-4293-8e88-a1133a63f4fd | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2022-12-19 03:38:41", "repo_name": "gauravrmazra/gauravbytes", "sub_path": "/springjdbc-examples/src/main/java/com/gauravbytes/springjdbc/ProductBatchPreparedStatementSetter.java", "file_name": "ProductBatchPreparedSt... | https://github.com/gauravrmazra/gauravbytes | 213 | FILENAME: ProductBatchPreparedStatementSetter.java | 0.273574 | package com.gauravbytes.springjdbc;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.List;
import java.util.Objects;
import org.springframework.jdbc.core.BatchPreparedStatementSetter;
import com.gauravbytes.springjdbc.dto.Product;
/**
*
* @author Gaurav Rai Mazra <a href="https:/... |
f3d896bb-5a32-423d-8f89-5373e01102db | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-09-19 13:00:58", "repo_name": "RedIce1999/zhbMusic", "sub_path": "/music/src/test/java/com/zhb/music/dao/CommentTest.java", "file_name": "CommentTest.java", "file_ext": "java", "file_size_in_byte": 1061, "line_co... | https://github.com/RedIce1999/zhbMusic | 213 | FILENAME: CommentTest.java | 0.228156 | package com.zhb.music.dao;
import com.zhb.music.domain.Comment;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import java.u... |
2711be5e-5a6b-42e5-bcb4-4d61b1f2f37f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2020-03-31T16:30:19", "repo_name": "Zeukkari/terminal-corona", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 978, "line_count": 34, "lang": "en", "doc_type": "text", "b... | https://github.com/Zeukkari/terminal-corona | 232 | FILENAME: README.md | 0.291787 | # terminal-corona
corona status view shell script.
table, list and lingle line output.
1. clone web-data branch from https://github.com/CSSEGISandData/COVID-19.git to temp folder
2. parse intresting list countrie data and show it in terminal.
## source
CSSE at Johns Hopkins University COVID-19
https://github.com/CS... |
63abd6c0-95a1-442e-89c6-b9f1118d8b2e | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-06-13 12:13:00", "repo_name": "atymkiv/Arduino_Checkers", "sub_path": "/Checkers_algorithm/src/test.java", "file_name": "test.java", "file_ext": "java", "file_size_in_byte": 1056, "line_count": 34, "lang": "en", ... | https://github.com/atymkiv/Arduino_Checkers | 223 | FILENAME: test.java | 0.264358 | import org.codehaus.jackson.map.ObjectMapper;
import org.codehaus.jackson.type.TypeReference;
import java.io.File;
import java.io.IOException;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
public class test {
public static void main (String[]args) throws IOException {
O... |
f4ce02fa-95d5-443c-a289-22574294a353 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-11-01 14:46:59", "repo_name": "hefuren/iplatform", "sub_path": "/src/iplatform/src/main/java/com/bluesky/iplatform/component/from/model/FormList.java", "file_name": "FormList.java", "file_ext": "java", "file_size... | https://github.com/hefuren/iplatform | 287 | FILENAME: FormList.java | 0.282196 | package com.bluesky.iplatform.component.from.model;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.Transient;
import lombok.Data;
import org.springframework.con... |
7abf66a9-62e9-4e40-b536-3ad6fdf44370 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-05-18 18:30:21", "repo_name": "MehdiChouag/OnceAndroidTest", "sub_path": "/app/src/main/java/com/once/android/testandroid/OnceApplication.java", "file_name": "OnceApplication.java", "file_ext": "java", "file_size... | https://github.com/MehdiChouag/OnceAndroidTest | 188 | FILENAME: OnceApplication.java | 0.23793 | package com.once.android.testandroid;
import android.app.Application;
import android.content.Context;
import android.support.annotation.NonNull;
import com.once.android.testandroid.di.component.ApplicationComponent;
import com.once.android.testandroid.di.component.DaggerApplicationComponent;
import com.once.android.te... |
d419caff-23b0-4a3f-bffe-28990cb4bd3a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2021-06-25T01:11:37", "repo_name": "fernandamariscal/Equipo_2_D14", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 1181, "line_count": 42, "lang": "en", "doc_type": "tex... | https://github.com/fernandamariscal/Equipo_2_D14 | 345 | FILENAME: README.md | 0.214691 | ## Final_Projet.
* This repository contains our final project.
# Members | Phase 1.
<ol>
<li>Oscar Beltran Villegas | <strong>Scripter</strong>.</li>
<li>Mariscal Viorato Maria Fernanda | <strong>Admin</strong>.</li>
<li>Ramírez Vázquez Ezequiel Alberto | <strong>Documenter</strong>.</li>
<li> De La Cruz Chavarria... |
cf7ee8cd-ca88-4f1e-b46e-27a2cb5b7e99 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-08-30 15:40:46", "repo_name": "fabriciolfj/spring-webflux", "sub_path": "/src/main/java/com/github/fabriciolfj/springwebflux/domain/service/ItemService.java", "file_name": "ItemService.java", "file_ext": "java", ... | https://github.com/fabriciolfj/spring-webflux | 218 | FILENAME: ItemService.java | 0.26588 | package com.github.fabriciolfj.springwebflux.domain.service;
import com.github.fabriciolfj.springwebflux.domain.document.Item;
import com.github.fabriciolfj.springwebflux.domain.repository.ItemRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
impo... |
3a6c9a7a-fbbe-47a7-8730-27f1c17ed842 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-05-16 13:19:27", "repo_name": "Tony-Tor/Diplom", "sub_path": "/src/main/java/com/example/diplom/controllers/UserRestController.java", "file_name": "UserRestController.java", "file_ext": "java", "file_size_in_byte... | https://github.com/Tony-Tor/Diplom | 213 | FILENAME: UserRestController.java | 0.273574 | package com.example.diplom.controllers;
import com.example.diplom.model.User;
import com.example.diplom.model.web.UserTo;
import com.example.diplom.service.UserService;
import org.springframework.http.MediaType;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annota... |
90cc6cf8-558e-4d0e-848e-e454244e758c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-05-03 11:59:58", "repo_name": "nvthao-math/zada-ml", "sub_path": "/src/main/java/com/zada/data/type/Tuple.java", "file_name": "Tuple.java", "file_ext": "java", "file_size_in_byte": 993, "line_count": 63, "lang": ... | https://github.com/nvthao-math/zada-ml | 302 | FILENAME: Tuple.java | 0.290981 | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.zada.data.type;
/**
*
* @author bigdata
* @param <T1>
* @param <T2>
*/
public class Tuple<T1, T2> {
private T1 _... |
5714baf6-bd58-4191-8d5d-c0140d89fa2a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2023-06-11 00:33:41", "repo_name": "kvr000/zbynek-java-exp", "sub_path": "/pdf-exp/pdfbox-basic-exp/src/test/java/cz/znj/kvr/sw/exp/java/pdf/pdfbox/ReadTextTest.java", "file_name": "ReadTextTest.java", "file_ext": "ja... | https://github.com/kvr000/zbynek-java-exp | 261 | FILENAME: ReadTextTest.java | 0.284576 | package cz.znj.kvr.sw.exp.java.pdf.pdfbox;
import lombok.extern.log4j.Log4j2;
import org.apache.pdfbox.cos.COSDocument;
import org.apache.pdfbox.io.RandomAccessFile;
import org.apache.pdfbox.pdfparser.PDFParser;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.text.PDFTextStripper;
import org.test... |
ed50a186-5382-4458-8c01-7677014115f5 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-07-23 00:12:33", "repo_name": "lenik/stack", "sub_path": "/plover/modeling/plover-ox1/src/main/java/com/bee32/icsf/principal/UserController.java", "file_name": "UserController.java", "file_ext": "java", "file_siz... | https://github.com/lenik/stack | 212 | FILENAME: UserController.java | 0.233706 | package com.bee32.icsf.principal;
import java.io.IOException;
import java.io.PrintWriter;
import org.springframework.context.annotation.Lazy;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
import org.springframework.transaction.annotation.Transactional;
import ... |
2a11f839-ad73-4d42-9714-dc1a8659af9d | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-04-08 10:42:52", "repo_name": "rocknacl/amws", "sub_path": "/AMWS/src/control/transmission/SocketWriter.java", "file_name": "SocketWriter.java", "file_ext": "java", "file_size_in_byte": 1177, "line_count": 53, "l... | https://github.com/rocknacl/amws | 246 | FILENAME: SocketWriter.java | 0.292595 | package control.transmission;
import javax.swing.JOptionPane;
/**
* The thread created to send messages to the server.
* @author kerry
*
*/
public class SocketWriter extends Thread{
private int connectErrorTimes = 0;
private final int connectMaxErrorTimes = 3;
private Connection connection = Conn... |
9e24e3a3-50f9-4dc8-955e-44fc842fce4a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2021-09-02T14:25:08", "repo_name": "sebastianmarines/DevOps-Bootcamp", "sub_path": "/SPRINT-3/SMDB-44.md", "file_name": "SMDB-44.md", "file_ext": "md", "file_size_in_byte": 1176, "line_count": 28, "lang": "en", "d... | https://github.com/sebastianmarines/DevOps-Bootcamp | 284 | FILENAME: SMDB-44.md | 0.259826 | # Logging
Linux logs are stored in the `/var/log` directory.
- **syslog/messages**: This files store all system activity data, including startup messages. Debian based systems use *syslog* and Red Hat based systems use *messages*.
- **auth.log/secure**: Security related events such as logins, root user actions, and P... |
5964e036-6b13-4aea-9baa-abde4e3e8283 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-10-21 23:34:14", "repo_name": "qiuchili/ggnn_graph_classification", "sub_path": "/program_data/JavaProgramData/19/1112.java", "file_name": "1112.java", "file_ext": "java", "file_size_in_byte": 1016, "line_count":... | https://github.com/qiuchili/ggnn_graph_classification | 386 | FILENAME: 1112.java | 0.272799 | package <missing>;
public class GlobalMembers
{
public static int Main()
{
String juzi = new String(new char[100]);
char[][] danci = new char[200][200];
String ci1 = new String(new char[200]);
String ci2 = new String(new char[200]);
int i = 0;
int j = 0;
int k = 0;
int f;
int index;
juzi = new Scanner(Syst... |
28e3e6d2-2215-4bd1-90c4-ad7c199d7865 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2022-08-06 14:44:23", "repo_name": "yuanyaosmile/Ly", "sub_path": "/ly-item/ly-item-service/src/main/java/com/yy/item/service/impl/CategoryServiceImpl.java", "file_name": "CategoryServiceImpl.java", "file_ext": "java"... | https://github.com/yuanyaosmile/Ly | 222 | FILENAME: CategoryServiceImpl.java | 0.27513 | package com.yy.item.service.impl;
import com.leyou.item.pojo.Category;
import com.ly.common.exception.GlobalException;
import com.ly.common.vo.CodeMsg;
import com.yy.item.mapper.CategoryMapper;
import com.yy.item.service.CategoryService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springf... |
07170b2a-7ffd-4414-a132-656db6cfd21c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-08-24 10:10:03", "repo_name": "huxinsheng/spring_shiro_mybatis", "sub_path": "/ssm-commons/src/main/java/com/hxs/ssm/utils/CreateHelper.java", "file_name": "CreateHelper.java", "file_ext": "java", "file_size_in_b... | https://github.com/huxinsheng/spring_shiro_mybatis | 265 | FILENAME: CreateHelper.java | 0.272799 | package com.hxs.ssm.utils;
import com.fasterxml.jackson.core.JsonFactory;
import com.fasterxml.jackson.core.JsonGenerator;
import org.springframework.util.CollectionUtils;
import java.io.IOException;
import java.io.StringWriter;
import java.util.Iterator;
import java.util.Map;
/**
* @项目名称: hxs-ssm
* @类名称: MemberCr... |
e42918ec-3b03-4ffe-8ce2-be5e6155cf2a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2020-05-17T23:39:27", "repo_name": "cagdaskarademir/aspnetcore-graphql-dapper-sqlkata-sqlserver", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 1229, "line_count": 35, ... | https://github.com/cagdaskarademir/aspnetcore-graphql-dapper-sqlkata-sqlserver | 295 | FILENAME: README.md | 0.279828 | # tutorial-aspnetcore-graphql-sqlserver
Tutorial Asp.Net Core 3.0 + GraphQLApi + Sql Server
This tutorial sample was created by .net core, dapper and sqlkata.
If you new on graphql for .net, you could use that sample.
This example is very simple. You could connect database, search entity or entities a... |
2ab1153b-de1c-4a21-b24c-9f08e55bf582 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2023-04-19 13:42:27", "repo_name": "seratch/jslack-maintenance-releases", "sub_path": "/jslack-api-client/src/main/java/com/github/seratch/jslack/api/methods/response/chat/scheduled_messages/ChatScheduledMessagesListR... | https://github.com/seratch/jslack-maintenance-releases | 193 | FILENAME: ChatScheduledMessagesListResponse.java | 0.253861 | package com.github.seratch.jslack.api.methods.response.chat.scheduled_messages;
import com.github.seratch.jslack.api.methods.SlackApiResponse;
import com.github.seratch.jslack.api.model.Attachment;
import com.github.seratch.jslack.api.model.ResponseMetadata;
import com.github.seratch.jslack.api.model.block.LayoutBlock... |
4e8570ac-8381-403f-a392-15130a542b64 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2023-08-29 21:45:44", "repo_name": "Elikill58/Negativity", "sub_path": "/src/com/elikill58/deps/yaml/snakeyaml/nodes/ScalarNode.java", "file_name": "ScalarNode.java", "file_ext": "java", "file_size_in_byte": 1048, "li... | https://github.com/Elikill58/Negativity | 258 | FILENAME: ScalarNode.java | 0.264358 | package com.elikill58.deps.yaml.snakeyaml.nodes;
import com.elikill58.deps.yaml.snakeyaml.error.Mark;
public class ScalarNode extends Node {
private Character style;
private String value;
public ScalarNode(final Tag tag, final String value, final Mark startMark, final Mark endMark, final Character style) {
this... |
410e847a-cc54-40a8-8709-8642b42a709b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2010-07-15 11:55:13", "repo_name": "uzzal/smart-user", "sub_path": "/smart-user-api/src/main/java/com/smartitengineering/user/domain/BasicIdentity.java", "file_name": "BasicIdentity.java", "file_ext": "java", "file_si... | https://github.com/uzzal/smart-user | 248 | FILENAME: BasicIdentity.java | 0.242206 | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.smartitengineering.user.domain;
import com.smartitengineering.domain.AbstractPersistentDTO;
import org.apache.commons.lang.StringUtils;
/**
*
* @author modhu7
*/
public class BasicIdentity extends Abstra... |
b6f65ca5-4e76-4883-9122-be65324b2253 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2017-04-25T07:27:24", "repo_name": "alexpasta/Native-Ads-in-RecyclerView", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 1020, "line_count": 31, "lang": "en", "doc_type... | https://github.com/alexpasta/Native-Ads-in-RecyclerView | 267 | FILENAME: README.md | 0.250913 | # Native Ads in RecyclerView
### Demo
Note: In order to avoid showing real ads, we only show the MoPub demo ad in this video.

### How to Setup
1. Setup a FAN native ad placement ID. (Go through the steps in https://developers.f... |
fe02d90b-4b3d-4698-b98c-431200f8288b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-02-28 15:42:08", "repo_name": "SergeyChere/swapper", "sub_path": "/src/main/java/com/example/demo/controller/CommonController.java", "file_name": "CommonController.java", "file_ext": "java", "file_size_in_byte": ... | https://github.com/SergeyChere/swapper | 173 | FILENAME: CommonController.java | 0.245085 | package com.example.demo.controller;
import com.example.demo.model.Item;
import com.example.demo.service.CommonService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.sprin... |
d9a024e5-416a-4c03-afb6-c5c4b801049f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-10-16 12:17:08", "repo_name": "XGKerwin/city_boot", "sub_path": "/src/main/java/com/city/service/impl/NewsServiceImpl.java", "file_name": "NewsServiceImpl.java", "file_ext": "java", "file_size_in_byte": 1028, "li... | https://github.com/XGKerwin/city_boot | 224 | FILENAME: NewsServiceImpl.java | 0.236516 | package com.city.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.city.bean.News;
import com.city.mapper.NewsMapper;
import com.city.service.base.NewsService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.beans.factory.annotat... |
f71357fa-25ec-4e68-b752-3b3c5c387651 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-06-29 15:19:00", "repo_name": "fengGitHub8/shopiin", "sub_path": "/src/main/java/com/zs/service/impl/CategoryServiceImpl.java", "file_name": "CategoryServiceImpl.java", "file_ext": "java", "file_size_in_byte": 11... | https://github.com/fengGitHub8/shopiin | 250 | FILENAME: CategoryServiceImpl.java | 0.247987 | package com.zs.service.impl;
import com.zs.entity.Category;
import com.zs.mapper.CategoryMapper;
import com.zs.service.CategoryService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* @program: shopin
* @description: 品类管理Ser... |
d2ffb8d6-07d1-4a33-8feb-cf0c8397251d | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-06-30 03:10:45", "repo_name": "tuoyi5/TcpTest", "sub_path": "/app/mobile/bracelet/src/main/java/com/arvin/bracelet/ui/MainActivity.java", "file_name": "MainActivity.java", "file_ext": "java", "file_size_in_byte":... | https://github.com/tuoyi5/TcpTest | 214 | FILENAME: MainActivity.java | 0.240775 | package com.arvin.bracelet.ui;
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import com.arvin.bracelet.R;
import com.arvin.bracelet.service.manager.TcpServiceManager;
public class MainActivity extends AppCompatActivity {
TcpSer... |
8574d7c5-1ee0-453e-9caf-d642ee463acb | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-05-18 09:03:10", "repo_name": "navspeak/CommentAPI", "sub_path": "/CommentProj/src/main/java/com/nav/target/services/mapservices/CommentServiceImpl.java", "file_name": "CommentServiceImpl.java", "file_ext": "java... | https://github.com/navspeak/CommentAPI | 210 | FILENAME: CommentServiceImpl.java | 0.26971 | package com.nav.target.services.mapservices;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Profile;
import org.springframework.stereotype.Service;
import com.nav.target.domain.Comment;
import com.nav.target.domain.DomainObject;
imp... |
8dbb0c50-2fe6-45f7-9ecc-77ff788b0dad | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-02-17 21:37:40", "repo_name": "mbatyra/AuctionHouseWebDev", "sub_path": "/src/main/java/com/example/AuctionHouse/user/User.java", "file_name": "User.java", "file_ext": "java", "file_size_in_byte": 1126, "line_cou... | https://github.com/mbatyra/AuctionHouseWebDev | 247 | FILENAME: User.java | 0.289372 | package com.example.AuctionHouse.user;
import com.example.AuctionHouse.auction.Auction;
import com.example.AuctionHouse.bid.Bid;
import lombok.*;
import javax.persistence.*;
import java.util.ArrayList;
import java.util.List;
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
@Entity
@Table(name = "users", unique... |
b4b031b3-6770-49a5-9972-64a29988e1b8 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-02-12 10:09:30", "repo_name": "mohamed-shalash/simple-booking-pro", "sub_path": "/app/src/main/java/com/example/trainbooking/remaking_per.java", "file_name": "remaking_per.java", "file_ext": "java", "file_size_in... | https://github.com/mohamed-shalash/simple-booking-pro | 278 | FILENAME: remaking_per.java | 0.275909 | package com.example.trainbooking;
public class remaking_per {
int num;
String name;
String address;
String seat;
String hour;
public int getNum() {
return num;
}
public void setNum(int num) {
this.num = num;
}
public String getName() {
return name;
... |
dd0c0f1c-264d-4470-9d95-710a93b0ceb5 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2015-11-16T17:39:54", "repo_name": "chb/survey-wrapper-ios", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 1067, "line_count": 36, "lang": "en", "doc_type": "text", "bl... | https://github.com/chb/survey-wrapper-ios | 238 | FILENAME: README.md | 0.26971 | Survey Wrapper
==============
Simple app to wrap launching a web page via link embedded into QR-code.
Building
--------
The project includes the [ZBar][] library as a submodule.
Xcode should automatically build and link the ZBar library when running the app.
1. Clone the repo: `$ git clone --recursive git@github.co... |
51cb8cec-98a8-4bf5-ae10-18413907968b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2013-07-05 17:56:54", "repo_name": "dharanimishra/DD-ZJPlatform", "sub_path": "/ziksana-app/zsecurity/src/test/java/com/ziksana/service/security/impl/EmailSenderTest.java", "file_name": "EmailSenderTest.java", "file_e... | https://github.com/dharanimishra/DD-ZJPlatform | 245 | FILENAME: EmailSenderTest.java | 0.290981 | package com.ziksana.service.security.impl;
import org.apache.velocity.app.VelocityEngine;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.j... |
fb389903-2c15-488c-a9d3-26c5bab398eb | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-09-28 23:51:08", "repo_name": "jskim1991/spring-boot-webflux-sample", "sub_path": "/src/test/java/io/jay/springbootwebfluxsample/CustomerRepositoryTests.java", "file_name": "CustomerRepositoryTests.java", "file_e... | https://github.com/jskim1991/spring-boot-webflux-sample | 200 | FILENAME: CustomerRepositoryTests.java | 0.226784 | package io.jay.springbootwebfluxsample;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.data.r2dbc.AutoConfigureDataR2dbc;
import org.springframework.boot.test.autoconfigure.data.r2dbc.DataR2dbcTest;
import reactor.tes... |
ffa7cb2c-2061-4cd0-8b47-bb798c9f594b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-11-17T21:29:21", "repo_name": "zlowuj/DTO", "sub_path": "/src/main/java/com/example/demo/controllers/DemoController.java", "file_name": "DemoController.java", "file_ext": "java", "file_size_in_byte": 1149, "line_... | https://github.com/zlowuj/DTO | 200 | FILENAME: DemoController.java | 0.245085 | package com.example.demo.controllers;
import com.example.demo.dtos.DemoRequest;
import com.example.demo.dtos.DemoResponse;
import com.example.demo.repositories.DemoRepository;
import com.example.demo.services.DemoService;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
impor... |
cc5c559b-023b-44b9-a5ca-28be6907e0c5 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-07-12 06:08:11", "repo_name": "zhangqifan1/Demo_ok32", "sub_path": "/indicator/src/main/java/com/as/indicator/xiaoguo/Xiaoguo5Activity.java", "file_name": "Xiaoguo5Activity.java", "file_ext": "java", "file_size_i... | https://github.com/zhangqifan1/Demo_ok32 | 181 | FILENAME: Xiaoguo5Activity.java | 0.213377 | package com.as.indicator.xiaoguo;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Toast;
import com.as.indicator.R;
import com.as.indicator.widgt.AnimationButton;
public class Xiaoguo5Activity extends AppCompatActivity {
@Override
p... |
a4f40a3b-819e-439b-8db8-3b65948d85f8 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-11-24 23:30:41", "repo_name": "adityaraj52/AgentDrive_BachelorsThesis", "sub_path": "/highway/src/main/java/cz/agents/highway/storage/VehicleActuator.java", "file_name": "VehicleActuator.java", "file_ext": "java"... | https://github.com/adityaraj52/AgentDrive_BachelorsThesis | 209 | FILENAME: VehicleActuator.java | 0.276691 | package cz.agents.highway.storage;
import cz.agents.alite.common.entity.Entity;
import cz.agents.alite.environment.eventbased.EventBasedAction;
import cz.agents.alite.environment.eventbased.EventBasedEnvironment;
import cz.agents.highway.storage.plan.Action;
import cz.agents.highway.util.Utils;
import java.ut... |
280e996e-d9e3-4bbd-b273-9935021af912 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2018-03-02T23:40:32", "repo_name": "Shimmering-Buddhism/Guide", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 1126, "line_count": 14, "lang": "en", "doc_type": "text", ... | https://github.com/Shimmering-Buddhism/Guide | 236 | FILENAME: README.md | 0.255344 | # Guide #
The goal of this path is to be awake, easy, happy and loving.
## Method ##
All of the above follow from selflessness (translation of emptiness in Buddhism). Understanding selflessness and empty mind is to be awake to the nature of reality. That leads to being easy and happy, since "you" isn't a concept to ... |
790f3220-66ee-488c-bcf0-9841af1a5674 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-11-01 07:53:07", "repo_name": "colinbut/rabbitmq-tutorials", "sub_path": "/helloworld/src/main/java/com/mycompany/rabbitmq/Send.java", "file_name": "Send.java", "file_ext": "java", "file_size_in_byte": 821, "line... | https://github.com/colinbut/rabbitmq-tutorials | 177 | FILENAME: Send.java | 0.245085 | /*
* |-------------------------------------------------
* | Copyright © 2017 Colin But. All rights reserved.
* |-------------------------------------------------
*/
package com.mycompany.rabbitmq;
import com.rabbitmq.client.ConnectionFactory;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.Chann... |
8ec246c8-10f9-4038-9036-6ee16abd3419 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2013-02-27 03:35:21", "repo_name": "leo-at-rsmart/kuali_kc", "sub_path": "/src/main/java/org/kuali/kra/negotiations/auth/CreateActivitiesAuthorizer.java", "file_name": "CreateActivitiesAuthorizer.java", "file_ext": "j... | https://github.com/leo-at-rsmart/kuali_kc | 245 | FILENAME: CreateActivitiesAuthorizer.java | 0.294215 | /*
* Copyright 2005-2010 The Kuali Foundation
*
* Licensed under the Educational Community 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.opensource.org/licenses/ecl1.php
*
* Unless re... |
d28d05bb-4945-47f2-b174-dd335300087c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-09-13 02:25:48", "repo_name": "biantaiwuzui/netx", "sub_path": "/trunk/netx-common/src/main/java/com/netx/common/vo/business/UpdateAddressRequestDto.java", "file_name": "UpdateAddressRequestDto.java", "file_ext":... | https://github.com/biantaiwuzui/netx | 224 | FILENAME: UpdateAddressRequestDto.java | 0.185947 | package com.netx.common.vo.business;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.hibernate.validator.constraints.NotBlank;
import java.util.List;
/**
* Created By liwei
* Description: 修改用户收货地址请求参数
* Date: 2018-01-29
*/
@ApiModel
public class UpdateAddressReq... |
694c9e69-78bc-4bd6-8c95-03499595b4ed | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-05-01 19:29:58", "repo_name": "cClaude/cchlib", "sub_path": "/apps/xcchlib-apps-duplicatefilesmanager/src/main/java/com/googlecode/cchlib/apps/duplicatefiles/console/taskhash/HashFile.java", "file_name": "HashFil... | https://github.com/cClaude/cchlib | 243 | FILENAME: HashFile.java | 0.279828 | package com.googlecode.cchlib.apps.duplicatefiles.console.taskhash;
import java.io.File;
import java.io.Serializable;
/**
* Convenience version to store couple of value (hash,file)
*/
class HashFile implements Serializable
{
private static final long serialVersionUID = 1L;
private String hash;
private ... |
f0419204-f7e5-45e1-9ee1-05c05cb301c3 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-02-18 18:16:52", "repo_name": "Dreambotcoder/ArtiAirOrbs-PRO", "sub_path": "/src/org/dreambot/articron/api/controller/impl/node/NodeTree.java", "file_name": "NodeTree.java", "file_ext": "java", "file_size_in_byte... | https://github.com/Dreambotcoder/ArtiAirOrbs-PRO | 227 | FILENAME: NodeTree.java | 0.290176 | package org.dreambot.articron.api.controller.impl.node;
import org.dreambot.articron.api.APIProvider;
import org.dreambot.articron.api.util.CronConstants;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.function.BooleanSupplier;
public abstract class NodeTree extends... |
9472f73b-bbe5-457c-a1f8-ae5f8b278e8a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-09-27 10:59:36", "repo_name": "EchoKoreyoshi/heartake_care_device_app", "sub_path": "/app/src/main/java/com/cjyun/heartakecare/utils/LanguageUtil.java", "file_name": "LanguageUtil.java", "file_ext": "java", "file... | https://github.com/EchoKoreyoshi/heartake_care_device_app | 230 | FILENAME: LanguageUtil.java | 0.236516 | package com.cjyun.heartakecare.utils;
import android.content.Context;
import android.content.res.Configuration;
import android.content.res.Resources;
import com.cjyun.heartakecare.App;
import java.util.Locale;
/**
* 创建者: vee
* 时 间: 2016/8/31 0031
* 描 述: 语言工具类
*/
public class LanguageUtil {
/**
* 设置语言
... |
6fae90c0-dc9e-44be-a954-dfffa7ac5bf1 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-05-19 16:36:48", "repo_name": "cwasserman1/SchoolAdminSystem", "sub_path": "/Wasserman_HW1/src/User.java", "file_name": "User.java", "file_ext": "java", "file_size_in_byte": 1045, "line_count": 46, "lang": "en", ... | https://github.com/cwasserman1/SchoolAdminSystem | 257 | FILENAME: User.java | 0.229535 |
public class User {
protected String username, password, fname, lname;
public User(String username, String password, String fname, String lname) {
this.username = username;
this.password = password;
this.fname = fname;
this.lname = lname;
}
public User() {
}
public String getUsername() {
return use... |
16bfb2f6-05e2-4ee9-a25b-1335a1dd9e3d | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-07-09 15:43:03", "repo_name": "ChenKangQiang/javaSE", "sub_path": "/javaSE-core/src/main/java/edu/tongji/comm/example/thread/concurrencyutils/cyclicBarrier/Sportsman.java", "file_name": "Sportsman.java", "file_ex... | https://github.com/ChenKangQiang/javaSE | 260 | FILENAME: Sportsman.java | 0.285372 | package edu.tongji.comm.example.thread.concurrencyutils.cyclicBarrier;
import java.util.Random;
import java.util.concurrent.BrokenBarrierException;
import java.util.concurrent.CyclicBarrier;
import java.util.concurrent.TimeUnit;
/**
* @Author chenkangqiang
* @Data 2017/10/18
*/
public class Sportsman implements Ru... |
fdac262c-247f-4547-8111-c234812f2493 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-10-20 18:30:35", "repo_name": "Jaky88/MyTest", "sub_path": "/app/src/main/java/com/onyx/test/styletest/translator/network/RetrofitWrapper.java", "file_name": "RetrofitWrapper.java", "file_ext": "java", "file_size... | https://github.com/Jaky88/MyTest | 177 | FILENAME: RetrofitWrapper.java | 0.261331 | package com.onyx.test.styletest.translator.network;
import android.content.Context;
import com.onyx.test.styletest.translator.config.Constants;
import retrofit2.Retrofit;
import retrofit2.converter.gson.GsonConverterFactory;
public class RetrofitWrapper {
private static RetrofitWrapper instance;
private Con... |
0c97a52f-cfcc-4522-819f-ed5c79f5170c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-09-23 12:13:20", "repo_name": "UddhavGanorkar/tsl949_Selenium", "sub_path": "/src/day1/Locator_exp.java", "file_name": "Locator_exp.java", "file_ext": "java", "file_size_in_byte": 1109, "line_count": 35, "lang": ... | https://github.com/UddhavGanorkar/tsl949_Selenium | 256 | FILENAME: Locator_exp.java | 0.286968 | package day1;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
//import org.openqa.selenium.firefox.FirefoxDriver;
public class Locator_exp {
public static void main(String[] args) throws Exception{
System.setProperty("webdriver.chrome.driver"... |
c2994ff0-b8bb-477d-9040-c52c4397b4d8 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2020-04-27T07:26:41", "repo_name": "neilbalch/CPPM-HID-Adapter", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 1149, "line_count": 20, "lang": "en", "doc_type": "text",... | https://github.com/neilbalch/CPPM-HID-Adapter | 283 | FILENAME: README.md | 0.208179 | # CPPM-HID-Adapter
## Description
USB Joystick HID adapter for CPPM RC recievers. (*requires microprocesor with native USB support, e.g. Arduino Pro Micro or Arduino Duemilanove*) Dependent upon [`jmparatte/jm_CPPM`](https://github.com/jmparatte/jm_CPPM) and [`MHeironimus/ArduinoJoystickLibrary`](https://github.com/M... |
cfdea91f-cc75-4c1e-b7e3-4c2f07bca4f1 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-11-11 13:39:17", "repo_name": "RohanKumar12345/samajsewa", "sub_path": "/app/src/main/java/com/smartwebarts/samajsewa/Activity/MobileveriActivity.java", "file_name": "MobileveriActivity.java", "file_ext": "java",... | https://github.com/RohanKumar12345/samajsewa | 160 | FILENAME: MobileveriActivity.java | 0.176672 | package com.smartwebarts.samajsewa.Activity;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import com.smartwebarts.samajsewa.databinding.ActivityMobileveriBinding;
public class MobileveriActivity extends AppCompatActivity {
A... |
4e73aa43-928b-4cf2-872f-33330fed9ebf | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-01-06 12:27:25", "repo_name": "alexandraseeme/swapitestexample", "sub_path": "/src/main/java/my/company/models/Film.java", "file_name": "Film.java", "file_ext": "java", "file_size_in_byte": 1207, "line_count": 47... | https://github.com/alexandraseeme/swapitestexample | 239 | FILENAME: Film.java | 0.233706 | package my.company.models;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.*;
import java.util.List;
@Getter
@AllArgsConstructor
@NoArgsConstructor
@ToString
@EqualsAndHashCode
@JsonIgnoreProperties(ignoreUnknown = true)
public class ... |
bf66ebb8-60d7-4ee0-ab62-50afca9050bc | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-04-22 23:32:39", "repo_name": "iwolfsdorf/cash-online", "sub_path": "/cash-online/src/main/java/ar/com/cash/online/backend/service/impl/LoanServiceImpl.java", "file_name": "LoanServiceImpl.java", "file_ext": "jav... | https://github.com/iwolfsdorf/cash-online | 231 | FILENAME: LoanServiceImpl.java | 0.288569 | package ar.com.cash.online.backend.service.impl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import ar.com.cash.online.backend.exception.ServiceException;
import ar.com.cash.online.backend.model.... |
a94b14ee-db7b-4732-bb63-a4c8b81ba1aa | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-05-14 16:11:02", "repo_name": "dimka668/java_study", "sub_path": "/springproject1/src/main/java/com/klyshov/ioc/autowired/FieldAutowiredIntegrationTest.java", "file_name": "FieldAutowiredIntegrationTest.java", "f... | https://github.com/dimka668/java_study | 214 | FILENAME: FieldAutowiredIntegrationTest.java | 0.288569 | package com.klyshov.ioc.autowired;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test... |
00e93173-8753-4739-a02d-e1e8eb021719 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-12-11 12:12:49", "repo_name": "MinerArcana/RunicDungeons", "sub_path": "/src/main/java/com/minerarcana/runicdungeons/RunicDungeons.java", "file_name": "RunicDungeons.java", "file_ext": "java", "file_size_in_byte"... | https://github.com/MinerArcana/RunicDungeons | 225 | FILENAME: RunicDungeons.java | 0.235108 | package com.minerarcana.runicdungeons;
import com.minerarcana.runicdungeons.content.BlockRegistry;
import com.minerarcana.runicdungeons.content.DimensionRegistry;
import com.minerarcana.runicdungeons.content.StructureRegistry;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.eventbus.api.IEv... |
541d186b-39c2-4d8e-97c1-b23658aed751 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-06-26 10:35:18", "repo_name": "atguiguliuyan/myspring2.0", "sub_path": "/src/main/java/com/spring/demo/action/DemoAction.java", "file_name": "DemoAction.java", "file_ext": "java", "file_size_in_byte": 1087, "line... | https://github.com/atguiguliuyan/myspring2.0 | 216 | FILENAME: DemoAction.java | 0.261331 | package com.spring.demo.action;
import com.spring.demo.service.IDemoService;
import com.spring.framework.annotation.LyAutowired;
import com.spring.framework.annotation.LyController;
import com.spring.framework.annotation.LyRequestMapping;
import com.spring.framework.annotation.LyRequestParam;
import com.spring.frame... |
14611415-9bc6-411c-9578-0ed7d5bfdfc2 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-11-28 02:12:46", "repo_name": "thomas-dean/GITS", "sub_path": "/src/main/java/me/tomdean/gits/daos/InvestigationStatusDaoImpl.java", "file_name": "InvestigationStatusDaoImpl.java", "file_ext": "java", "file_size_... | https://github.com/thomas-dean/GITS | 201 | FILENAME: InvestigationStatusDaoImpl.java | 0.261331 | package me.tomdean.gits.daos;
import me.tomdean.gits.models.InvestigationStatus;
import org.hibernate.Criteria;
import org.hibernate.criterion.Order;
import org.hibernate.criterion.Restrictions;
import org.springframework.stereotype.Repository;
import java.util.List;
@Repository("investigationStatusDao")
public clas... |
05975a58-a227-4b27-bdc9-be416240cf03 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-07-21 08:30:40", "repo_name": "liyunfengfengfeng/appliancesales", "sub_path": "/src/main/java/com/appliancesales/entity/Saler.java", "file_name": "Saler.java", "file_ext": "java", "file_size_in_byte": 1049, "line... | https://github.com/liyunfengfengfeng/appliancesales | 213 | FILENAME: Saler.java | 0.2227 | package com.appliancesales.entity;
import java.io.Serializable;
public class Saler implements Serializable{
private Integer id;
private String name;
private String password;
private Integer account;
public Saler() {
super();
}
public Saler(Integer id,String name,String password,Int... |
867d1e07-0cc5-440f-89b3-d2882ad68cea | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-02-28 09:53:00", "repo_name": "Archer0110/MountianRubbit", "sub_path": "/app/src/main/java/com/mr/mountainrabbit/adapter/RacreationFirst.java", "file_name": "RacreationFirst.java", "file_ext": "java", "file_size_... | https://github.com/Archer0110/MountianRubbit | 217 | FILENAME: RacreationFirst.java | 0.240775 | package com.mr.mountainrabbit.adapter;
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import com.mr.mountainrabbit.R;
import java.util.List;
/**
* 娱乐页面的第一... |
b24dbe23-2e96-4091-8365-a45617ad26ff | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-10-19T17:27:22", "repo_name": "mstepovanyy/PQC", "sub_path": "/src/main/java/com/stepomy/core/consumer/MessageFetch.java", "file_name": "MessageFetch.java", "file_ext": "java", "file_size_in_byte": 1002, "line_co... | https://github.com/mstepovanyy/PQC | 199 | FILENAME: MessageFetch.java | 0.27048 | package com.stepomy.core.consumer;
import com.stepomy.core.Configuration;
import com.stepomy.core.Queue;
import com.stepomy.core.QueueItem;
import java.util.TimerTask;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.stream.IntStream;
public class MessageFetch extends TimerTask {
private LinkedB... |
56bfb835-c636-454a-8abb-356bc42edf8a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2015-06-28 13:42:24", "repo_name": "fabianacristina89/agenda-caelum", "sub_path": "/app/src/main/java/receiver/caelum/com/br/cadastrocaelum/SMSReceiver.java", "file_name": "SMSReceiver.java", "file_ext": "java", "file... | https://github.com/fabianacristina89/agenda-caelum | 271 | FILENAME: SMSReceiver.java | 0.286169 | package receiver.caelum.com.br.cadastrocaelum;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.telephony.SmsMessage;
import android.widget.Toast;
import cadastro.caelum.com.br.cadastroca... |
d6fbbb04-37c1-4b03-9b8d-b20d2a1df737 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-12-07 19:00:59", "repo_name": "tiagopoa/NetbeansProjects", "sub_path": "/NetbeansProjects/DashBoard/src/RecebeDados.java", "file_name": "RecebeDados.java", "file_ext": "java", "file_size_in_byte": 1039, "line_cou... | https://github.com/tiagopoa/NetbeansProjects | 221 | FILENAME: RecebeDados.java | 0.246533 |
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
class RecebeDados implements Runnable {
int sensor1;
private JLabel janela1;
public RecebeDados(JLabel janela... |
d4c43ac0-7d6d-4914-b1ea-49ae459e0988 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-09-03 11:18:42", "repo_name": "jiwangyu/tzsc", "sub_path": "/web/bjtumidas/bjtumidas/src/com/jwy/bjtumidas/action/UpdatePwdServlet.java", "file_name": "UpdatePwdServlet.java", "file_ext": "java", "file_size_in_by... | https://github.com/jiwangyu/tzsc | 219 | FILENAME: UpdatePwdServlet.java | 0.264358 | package com.jwy.bjtumidas.action;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.jwy.bjtumidas.engine.UpdateService;... |
f0717459-9238-4fff-b73a-459cd12a8eee | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-06-29 21:31:32", "repo_name": "eye-dee/Polytech", "sub_path": "/src/main/java/prospring/chapter4/classforconfig/AppConfig.java", "file_name": "AppConfig.java", "file_ext": "java", "file_size_in_byte": 1018, "line... | https://github.com/eye-dee/Polytech | 206 | FILENAME: AppConfig.java | 0.283781 | package prospring.chapter4.classforconfig;
import org.springframework.context.annotation.*;
import org.springframework.transaction.annotation.EnableTransactionManagement;
/**
* Polytech
* Created by igor on 17.03.17.
*/
@Configuration
@ImportResource(value="classpath:META-INF/spring/app-context-xml.xml")
@Propert... |
4123aaa9-1885-49cf-9603-82f275c2d74a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-04-22 18:59:47", "repo_name": "Bruno-Lerner/5-Exemplo-Hello-World-Lombok", "sub_path": "/5-exemplo-HelloWorld-lombok/src/main/java/lerner/bruno/exemplohelloworldlombok/controller/ClientController.java", "file_nam... | https://github.com/Bruno-Lerner/5-Exemplo-Hello-World-Lombok | 265 | FILENAME: ClientController.java | 0.262842 | package lerner.bruno.exemplohelloworldlombok.controller;
import lerner.bruno.exemplohelloworldlombok.model.Client;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.ArrayList;
/**
* @author Bruno Lerner
* @version 1.0
* @sinc... |
e9612b36-f810-434a-a2cd-9d2cc6dfef23 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-12-20 23:58:52", "repo_name": "menolascino/final-project", "sub_path": "/src/main/java/com/claim/entity/User.java", "file_name": "User.java", "file_ext": "java", "file_size_in_byte": 1068, "line_count": 60, "lang... | https://github.com/menolascino/final-project | 224 | FILENAME: User.java | 0.214691 | package com.claim.entity;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table
public class User {
@Id
@Column
private String username;
@Column
private String email;
@Column
private String phoneNumber;
@Column
privat... |
e06db43b-1c92-4941-8850-5618aec68cf3 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-12-17 08:47:07", "repo_name": "hckjCRM/shop", "sub_path": "/Servlet/src/servletwork/RegistServlet.java", "file_name": "RegistServlet.java", "file_ext": "java", "file_size_in_byte": 1127, "line_count": 39, "lang":... | https://github.com/hckjCRM/shop | 207 | FILENAME: RegistServlet.java | 0.284576 | package servletwork;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.