id stringlengths 36 36 | meta stringlengths 429 697 | code_content large_stringlengths 612 1.26k |
|---|---|---|
4b42dd0f-41cb-4315-9d83-a4610482a9f3 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-09-18 11:23:19", "repo_name": "presly808/ACP14ClientServer", "sub_path": "/server/src/main/java/ua/artcode/server/PropertiesHolder.java", "file_name": "PropertiesHolder.java", "file_ext": "java", "file_size_in_by... | package ua.artcode.server;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
/**
* Created by serhii on 9/18/16.
*/
public class PropertiesHolder {
private static final Properties PROP = init();
private static Properties init(){
Properties properties = new Pr... |
448d446f-1295-4746-b1a8-419e9a99a70e | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-10-01 19:20:57", "repo_name": "PimGroeneveld/Inheritance_company_structure", "sub_path": "/src/test/java/Staff/techStaff/DatabaseAdminTest.java", "file_name": "DatabaseAdminTest.java", "file_ext": "java", "file_s... | package Staff.techStaff;
import Staff.Management.Manager;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
public class DatabaseAdminTest {
DatabaseAdmin databaseAdmin;
@Before
public void before(){
databaseAdmin = new DatabaseAdmin("Oscar Martinez", "N15T46", 2... |
515dd904-9888-4989-921a-423d4a4cad2f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-08-23 02:25:26", "repo_name": "leiMsnow/head_first_java", "sub_path": "/src/com/ray/java/basic/simple_comparator/TestComparator.java", "file_name": "TestComparator.java", "file_ext": "java", "file_size_in_byte": ... | package com.ray.java.basic.simple_comparator;
import java.util.TreeSet;
/**
* Created by dangdang on 5/23/16.
*/
public class TestComparator {
public static void main(String[]a){
TestComparator comparator = new TestComparator();
comparator.go();
}
public void go(){
Book b1 = ... |
1c5f38ed-cd52-4441-90b5-f6e6e87f66fe | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-01-29 00:24:30", "repo_name": "gersonlgt/tecnoysoftJava", "sub_path": "/ProyectoBase/src/gt/com/itSoftware/acmulti/crm/view/components/CrmPrincipal.java", "file_name": "CrmPrincipal.java", "file_ext": "java", "fi... | package gt.com.itSoftware.acmulti.crm.view.components;
import gt.com.itSoftware.acmulti.core.view.components.ACMCustomComponent;
public class CrmPrincipal extends ACMCustomComponent{
private CrmPrincipalVC pantalla = null;
public CrmPrincipal(){
try {
pantalla = new CrmPrincipalVC();
se... |
fb7c5302-e68a-48b6-b7b1-fbec641ab864 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2021-02-17T16:21:27", "repo_name": "maximmajor/HTML-PROJECT", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 661, "line_count": 14, "lang": "en", "doc_type": "text", "bl... | # HTML-PROJECT
Create your First HTML PROJECT
*HTML PROJECTS*
1. Print a paragraph that is a description of a book, include the title of the book as well as its author. Names and titles should be underlined, adjectives should be italicized and bolded.
.
2. Prints 10 names with a line break between each name. The list ... |
5f33db95-cc8b-4ce5-8f80-cf0f40574aa4 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2015-07-11T13:06:31", "repo_name": "mathieucp/BTNavigator", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 664, "line_count": 17, "lang": "en", "doc_type": "text", "blob... | # BTNavigator
- SSS Project Navigator
### Features
- [x] Detect user’s current location.
- [x] Convert map’s current longitude and latitude into address.
- [x] When user move the map, address must be updated according to new longitude and
latitude.
- [x] Allow user to search a specific location by address (auto-comple... |
798a85c3-0f43-42fe-ab49-b25ceb7e4f91 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2019-05-10T20:59:41", "repo_name": "bevacqua/eshose", "sub_path": "/readme.markdown", "file_name": "readme.markdown", "file_ext": "markdown", "file_size_in_byte": 664, "line_count": 31, "lang": "en", "doc_type": "... | # eshose
> 🦜 adds documents to a `tweets` index in elasticsearch, drinking from the twitter firehose
```
npm i -g eshose
```
create an `~/.eshose` file like:
```json
{
"ELASTICSEARCH_HOST": "https://user:pass@localhost:9200",
"TWITTER_SEARCH_TERMS": "trump",
"TWITTER_CONSUMER_KEY": "PASTE_YOUR_CONSUMER_KEY_H... |
b39d80fd-4ece-484c-a69a-0e75ec203f6a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2023-08-31T08:54:02", "repo_name": "bjtj/tjsamples", "sub_path": "/ruby/gem/package/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 664, "line_count": 55, "lang": "en", "doc_type": "te... | # Make your own gem
* https://guides.rubygems.org/make-your-own-gem/
## Build and install
```
gem build hello-tj.gemspec
gem install ./hello-tj-0.1.0.gem
```
e.g.)
```
$ irb
irb(main):001:0> require 'hello-tj'
=> true
irb(main):002:0> HelloTj.hi
Hi! TJ
=> nil
```
## Push
### Requirement
* RubyGems.org account
... |
7d3a188d-d0f3-43b8-8b06-8086ef422a4e | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-09-11 13:51:54", "repo_name": "krisjey/backend-book", "sub_path": "/hr-api-server/src/main/java/chapter04/BasicDaoV3.java", "file_name": "BasicDaoV3.java", "file_ext": "java", "file_size_in_byte": 662, "line_coun... |
package chapter04;
import java.sql.SQLException;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
public class BasicDaoV3 {
protected StringBuffer toApiResult(List<Map<String, Object>> result) throws SQLException {
StringBuffer builder = new StringBuffer();
if (result != null) {
... |
d68cfb05-c7af-4720-b10a-3ba2a45604bf | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-03-02 07:35:35", "repo_name": "abhishekmv/NationalVaccineDistribution", "sub_path": "/src/business/Patient/EncounterDirectory.java", "file_name": "EncounterDirectory.java", "file_ext": "java", "file_size_in_byte"... | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package business.Patient;
import java.util.ArrayList;
/**
*
* @author Abhishek
*/
public class EncounterDirectory {
private ArrayList<Encounter> encounterList;
public ArrayList<Encounter> getEncounterL... |
b27f5d28-6f7b-457f-b75a-fdf376151a33 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-06-29 16:11:50", "repo_name": "kong0827/Design-Patterns", "sub_path": "/demo-design-structural-adapter/src/main/java/com/kxj/adapter/obj/EnMoviePlayerAdapter.java", "file_name": "EnMoviePlayerAdapter.java", "file... | package com.kxj.adapter.obj;
import com.kxj.Player;
import com.kxj.Translator;
import com.kxj.impl.Zh_EnTranslator;
/**
* @author kxj
* @date 2021/5/19 23:43
* @desc 组合的方式:对象结构模型,适配转换到了翻译器的功能上
*/
public class EnMoviePlayerAdapter implements Player {
private Translator translator = new Zh_EnTranslator();
... |
5ed200f9-e941-4ee2-8a1d-1f6653b20fe2 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-06-27 14:21:05", "repo_name": "kobeyk/web-sample", "sub_path": "/sample-core/src/main/java/com/appleyk/core/helper/UserHelper.java", "file_name": "UserHelper.java", "file_ext": "java", "file_size_in_byte": 763, "... | package com.appleyk.core.helper;
import com.appleyk.core.service.AbstractService;
import com.appleyk.core.service.ServiceContainer;
/**
* <p>用户帮助类 -- 模拟Controller无需注入bean,只需要调用该类的create方法既能实现用户的插入</p>
*
* @author appleyk
* @version V.1.0.0
* @blob https://blog.csdn.net/appleyk
* @date created on 下午 2:47 2019-4-... |
7b13a0d1-9874-41f2-83d6-6d2c74e59796 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-02-19 01:33:37", "repo_name": "PauloHAPereira/Exemplo-Gerador-de-PDF", "sub_path": "/src/main/java/model/Student.java", "file_name": "Student.java", "file_ext": "java", "file_size_in_byte": 661, "line_count": 47,... | package model;
/**
*
* @author Paulo Pereira
*
*/
public class Student {
private String name;
private int age;
private boolean sex;
//construtor generico
public Student(){
}
//construtor completo
public Student(String name, int age, boolean sex) {
super();
this.name = name;
this.age = age;
t... |
3b70b5a0-5d1a-41eb-ac1b-73ad0d29ca7b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-07-06 14:30:01", "repo_name": "zonghuanjs/mall", "sub_path": "/mall-base/src/main/java/com/mall/dao/impl/MemberDaoImpl.java", "file_name": "MemberDaoImpl.java", "file_ext": "java", "file_size_in_byte": 662, "line... | package com.mall.dao.impl;
import org.hibernate.Session;
import org.springframework.stereotype.Repository;
import com.mall.dao.MemberDao;
import com.mall.entity.Member;
@Repository
public class MemberDaoImpl extends BaseDaoImpl<Long, Member> implements MemberDao {
@Override
public Member getByUsername... |
3ec89d8d-235d-4aaf-a827-76bc0049c747 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-02-01 10:58:36", "repo_name": "akjbm/MyStore", "sub_path": "/common/src/main/java/com/a135/common/Base/BaseActivity.java", "file_name": "BaseActivity.java", "file_ext": "java", "file_size_in_byte": 661, "line_cou... | package com.a135.common.Base;
import android.os.Bundle;
import org.reactivestreams.Subscription;
import java.util.ArrayList;
import java.util.List;
/**
* Created by 135 on 2016/10/17.
*/
public class BaseActivity extends MonitoredActivity {
private List<Subscription> subscriptions = new ArrayList<>();
@Ov... |
ba73c40c-bde0-4ed8-89aa-97ab8ea391b5 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-09-20 14:01:17", "repo_name": "androidmianbizhe/JenkinsTest", "sub_path": "/src/main/java/Args.java", "file_name": "Args.java", "file_ext": "java", "file_size_in_byte": 661, "line_count": 29, "lang": "en", "doc_t... | import java.util.ArrayList;
import java.util.List;
/**
* @author fq
* @create 2020-05-13
*/
public class Args {
private List<Arg> argList = new ArrayList<>();
public Args(String[] inputText, Schema schema) {
for (int i = 0; i <inputText.length ; i+=2) {
String tag = inputText[i];
... |
cef1b9c6-cccb-45a4-a464-308bb7f44652 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2019-12-17T11:59:42", "repo_name": "Dina-tolemy/Weather-Dashboard", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 661, "line_count": 16, "lang": "en", "doc_type": "text... | # Weather-Dashboard
Weather Dashboard is helping the user to get the weather for any city for the current day and the next five days
you can get the weather for different cities.

in the next image the l... |
edaf636b-c823-40ee-8e36-6e6c5b53f0e4 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2021-04-14T15:00:39", "repo_name": "Virginia-Nyawira/Clap-sparkle-Animation", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 661, "line_count": 17, "lang": "en", "doc_ty... | # simple flutter animation
A Score widget pops out and increments when the clap button is pressed,sparkles also
appear and vanish as the score widget fades
## Getting Started
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
- [La... |
02b1fcc6-fc58-4d3e-a898-96321ebf36cd | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-07-11 05:07:05", "repo_name": "MounikaDudyala/JsonProject", "sub_path": "/src/main/java/com/employee/Employee.java", "file_name": "Employee.java", "file_ext": "java", "file_size_in_byte": 661, "line_count": 41, "... | package com.employee;
import com.fasterxml.jackson.annotation.JsonGetter;
import com.fasterxml.jackson.annotation.JsonRootName;
@JsonRootName(value = "Employee")
public class Employee {
public String empName;
public int empId;
public int managerId;
public Employee()
{
}
public Employee(int empId,String em... |
ba9b66e7-6175-4833-85a8-1ab817c7e6a1 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-10-01 03:09:56", "repo_name": "shiftcat/juser-board", "sub_path": "/src/han/juser/controller/param/GuestParam.java", "file_name": "GuestParam.java", "file_ext": "java", "file_size_in_byte": 662, "line_count": 35,... | package han.juser.controller.param;
import javax.servlet.http.HttpServletRequest;
public class GuestParam
{
public static final String PAGE_NUMBER = "pno";
public static final String CONTENT_ID = "gid";
public static int getPageNumber(HttpServletRequest req)
{
String sp = req.getParameter(PA... |
00e6290a-db91-4011-928d-a8101fd2b756 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-10-22 06:28:48", "repo_name": "nextuser88/lara_java_code", "sub_path": "/jdbc/app4/src/com/lara/S.java", "file_name": "S.java", "file_ext": "java", "file_size_in_byte": 661, "line_count": 32, "lang": "en", "doc_t... | package com.lara;
import java.sql.*;
class S
{
public static void main(String[] args)
{
String s1 = "create or replace procedure p3 " +
"(arg1 int, arg2 varchar, arg3 int, arg4 varchar); "+
"as begin " +
"insert into student1 values(arg1, arg2, arg3, arg4); " +
"insert into student2 values(arg... |
640528f4-7938-43e3-b309-724938c24309 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-06-17 09:48:26", "repo_name": "Kherdu/TFG", "sub_path": "/TFG/src/main/java/TFG/TutorialesInteractivos/Main.java", "file_name": "Main.java", "file_ext": "java", "file_size_in_byte": 662, "line_count": 35, "lang":... | package TFG.TutorialesInteractivos;
import javafx.application.Application;
import javafx.stage.Stage;
import TFG.TutorialesInteractivos.controller.Controller;
/**
* Clase principal de la aplicación
* @author Carlos, Rafa
*
*/
public class Main extends Application{
private Stage primaryStage;
public sta... |
5eb153b6-888b-4c9f-b24a-b4c6413ff987 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2020-03-01T16:30:40", "repo_name": "thomasxnguy/login-totp", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 661, "line_count": 28, "lang": "en", "doc_type": "text", "blo... | # Login Page with Spring
Simple login page using Spring Boot, Spring Data, Spring Security, Spring MVC
Add 2FactorAuthentication following OTP specification
https://tools.ietf.org/html/rfc6238
## Demo
This application used H2, an in-memory database for storing persistent data. We have two pre-defined user :
1) adm... |
24349765-d15e-4027-ab4c-2b237cfc416f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-06-25 14:32:57", "repo_name": "marceloarb/InventoryManagementAutomation", "sub_path": "/webapptesting/src/main/java/org/tgs_ct/probies/ProductsViewExpected.java", "file_name": "ProductsViewExpected.java", "file_e... | package org.tgs_ct.probies;
import org.tgs_ct.probies.inventory.data.ProductCalibratable;
import org.tgs_ct.probies.inventory.data.ProductProvider;
import java.util.List;
public class ProductsViewExpected implements ProductsViewCalibratable {
private static final String LABEL = "Product name";
private Produ... |
2462b814-acd6-44ac-a830-70cc966633b3 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-08-19 08:33:42", "repo_name": "Cainabel1910/desafioTCS_2", "sub_path": "/src/main/java/com/bismark/rest/webservice/model/User.java", "file_name": "User.java", "file_ext": "java", "file_size_in_byte": 661, "line_c... | package com.bismark.rest.webservice.model;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name = "uni_usuarios")
public class User{
@Id
private String usuario;
private String password;
public User() {
super();
}
public User(String usuario, Stri... |
910133ef-8f45-46d8-8cf7-dc8fe76e3fe8 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-05-06 01:42:30", "repo_name": "gongmb/SpringCloud", "sub_path": "/spring-cloud-serviceA/src/main/java/com/founder/service/web/Task.java", "file_name": "Task.java", "file_ext": "java", "file_size_in_byte": 699, "l... | package com.founder.service.web;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Configuration;
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import java.util.Date;
/**
* 定时任务测试
*... |
7612d9d2-9b3a-4529-9a05-0ef24ab88978 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-09-19 09:16:45", "repo_name": "boris-sf/pari", "sub_path": "/src/main/java/pari/auth/AuthService.java", "file_name": "AuthService.java", "file_ext": "java", "file_size_in_byte": 660, "line_count": 26, "lang": "en... | package pari.auth;
import static org.springframework.context.annotation.ScopedProxyMode.TARGET_CLASS;
import static org.springframework.web.context.WebApplicationContext.SCOPE_REQUEST;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
@Component
@Scope(sco... |
2c3d8a8f-1732-432f-be8e-33f2bd70d500 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-10-28 01:50:00", "repo_name": "Nevermore160/AlgorithmTraining", "sub_path": "/src/com/华为二面/Main.java", "file_name": "Main.java", "file_ext": "java", "file_size_in_byte": 669, "line_count": 27, "lang": "en", "doc_... | package com.华为二面;
import java.util.ArrayList;
import java.util.List;
public class Main {
public int main(int[] a){
List<Integer> list = new ArrayList<>();
int temp = 0;
while (list.size() <= a.length - 1){
for (int i = 0; i < a.length; i++) {
if (list.contains(a... |
49996fd4-608d-4aac-a9a2-0c1c7bf7d2be | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2014-11-06 22:40:25", "repo_name": "RyanDur/Java-class", "sub_path": "/day_12/TestPracticeFindBugsOnce.java", "file_name": "TestPracticeFindBugsOnce.java", "file_ext": "java", "file_size_in_byte": 661, "line_count": 2... | import org.junit.*;
import static org.junit.Assert.*;
public class TestPracticeFindBugsOnce {
PracticeFindBugsOnce p;
@Before
public void setup() {
p = new PracticeFindBugsOnce();
}
@Test
public void testsNormalName() {
String input = "Dereck Robert Yssirt";
String out... |
fca98ac7-9970-4d88-b2af-f4a15eb63b6d | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2016-04-25T20:56:53", "repo_name": "tomatopeel/gtrans2", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 661, "line_count": 15, "lang": "en", "doc_type": "text", "blob_id... | # gtrans2
### Description
gtrans2.pl is an irssi script written in Perl to leverage the Google Translate v2 API. It requires a legitimate Google Translate v2 API key which implements usage-based pricing. If not wanting to pay Google any more dollars, please see similar script leveraging the Bing Translate API, whose... |
2488d6e1-5b46-4d5b-8704-4469868dd207 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2021-05-27T15:00:22", "repo_name": "imjuangarcia/recipes-app", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 661, "line_count": 16, "lang": "en", "doc_type": "text", "b... | # Recipe App
A simple Recipe App in React Native, created as an exercise for [The Practical Guide to React Native](https://www.udemy.com/course/react-native-the-practical-guide/) course.
## Installation and running the app
1. `git clone https://github.com/imjuangarcia/recipes-app/`
2. `npm install`
3. `npm run start... |
6eab5407-6bde-4c21-974e-a2ed55917ac8 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2014-01-13 03:32:24", "repo_name": "KeplerKid/the-adventure", "sub_path": "/src/com/bigeauofn/adventure/models/AbilityScores.java", "file_name": "AbilityScores.java", "file_ext": "java", "file_size_in_byte": 661, "lin... | package com.bigeauofn.adventure.models;
import java.util.HashMap;
import com.bigaeuofn.adventure.utilities.ListUtility;
public class AbilityScores {
private HashMap<String, AbilityScore> abilityList;
public AbilityScores(HashMap<String, AbilityScore> scores) {
this.abilityList = scores;
}
public AbilitySc... |
98f6bc29-a8ab-493f-88fa-a32e32b5ebd9 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-05-10 04:36:45", "repo_name": "liuxiao8114/algs4-programming", "sub_path": "/week8/Edge.java", "file_name": "Edge.java", "file_ext": "java", "file_size_in_byte": 661, "line_count": 32, "lang": "en", "doc_type": "... | public class Edge implements Comparable<Edge> {
private final int v;
private final int w;
private final double weight;
public Edge(int v, int w, double weight) {
this.v = v;
this.w = w;
this.weight = weight;
}
public double weight() {
return this.weight;
}
public int either() {
re... |
abf5c653-9456-4edd-8ebb-45cb46485697 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-09-06 08:53:08", "repo_name": "kwz219/SmartDrawer", "sub_path": "/SmartDrawer/src/View/DrawerPanel/CursorSetter.java", "file_name": "CursorSetter.java", "file_ext": "java", "file_size_in_byte": 690, "line_count":... | package View.DrawerPanel;
import java.awt.Cursor;
import java.awt.Image;
import java.awt.Toolkit;
import javax.swing.ImageIcon;
/**
*
* @author zwk
* 一个无聊的类,用于设置鼠标样式
*/
public class CursorSetter {
public static Cursor getCursor(String type) {
Toolkit tk = Toolkit.getDefaultToolkit();
String roo... |
7fd91599-7c9d-4711-8a5b-ef49f824d420 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-09-03 20:28:00", "repo_name": "Java-Camp/Back-end", "sub_path": "/src/main/java/com/jcf/mapper/UserMapper.java", "file_name": "UserMapper.java", "file_ext": "java", "file_size_in_byte": 660, "line_count": 30, "la... | package com.jcf.mapper;
import com.jcf.persistence.model.User;
import com.jcf.persistence.dto.UserDTO;
import org.modelmapper.ModelMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class UserMapper {
private final ModelMappe... |
083f1354-4186-4a10-82c7-775aa9c56eb9 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2022-10-23T14:05:51", "repo_name": "lanlan2017/blog", "sub_path": "/source/_posts/编程/Linux/通用/替换、元字符和转义/Linux 在脚本中编辑文件.md", "file_name": "Linux 在脚本中编辑文件.md", "file_ext": "md", "file_size_in_byte": 992, "line_count... | ---
title: Linux 在脚本中编辑文件
categories:
- Linux
- 通用
- 替换、元字符和转义
abbrlink: 99a1f664
date: 2021-06-27 16:52:34
updated: 2022-04-04 00:51:45
---
# read:读用户的输入
内部命令read:变量取值的另外一种方法
**从标准输入读入一行内容赋值给变量**
例:读取用户的输入,并使用输入的信息。
```
[root@localhost 替换、元字符和转义]# ls
variable.sh varSet+U.sh
[root@localhost 替换、元字符和转义]# read nam... |
078da5b6-a076-4517-a7c1-8f5abcdf4359 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-06-05 20:49:57", "repo_name": "ejcoral/SpringBootCollector", "sub_path": "/src/main/java/com/endava/jiracollector/JiraCollector/config/DownStreamUrlConfig.java", "file_name": "DownStreamUrlConfig.java", "file_ext... | package com.endava.jiracollector.JiraCollector.config;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
@Configuration
public class DownStreamUrlConfig {
private final String boardUrl;
private final String kanbanBoardUrl;
public Dow... |
efdec8e2-efa0-40a7-9a66-ef52cf61b2e7 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2021-07-22T01:07:33", "repo_name": "HangGao132/musicRoom", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 660, "line_count": 14, "lang": "en", "doc_type": "text", "blob_... | # A real-time music sharing application
## Front-end
The front-end is using React to create a ''room'' or join a room. In each room, there is a playlist, and all users in this room can search and add youtube content to the queue. The host of the room will have a streaming component that plays the video.
## How to ins... |
91a4dd20-49c7-4b0d-973c-5ab50dea732d | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-01-30 23:09:43", "repo_name": "crystanthemum/JavaPracticals", "sub_path": "/Week10/src/oopPractical/CartoonApp.java", "file_name": "CartoonApp.java", "file_ext": "java", "file_size_in_byte": 660, "line_count": 29... | package oopPractical;
public class CartoonApp {
/*
* this class will ad hoc test the Simpsons class
*/
public static void main(String[] args) {
Simpsons char1 = new Simpsons();
char1.setName("Bart");
char1.setCatchPhrase("Eat my shorts!");
Simpsons char2 = new Simpsons();
char2.setName("Homer");
char... |
8851b043-e86b-4487-b7c3-28a3caca244f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2022-08-08T01:01:11", "repo_name": "DarrellKeller/Banana_bread_baker", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 660, "line_count": 11, "lang": "en", "doc_type": "t... | # Banana bread baker
> Author: Darrell Keller (ohme33@gmail.com) dkdoes.us
Banana bread baker uses Alexa Skills Kit Command Line Interface so that you can easily get the skill running in your own developer console.
This is a prototype for my Cros Cooking Skill I plan on finishing later, so I am not offering a license... |
d9f91098-8282-4a70-bdf2-e5a416d0d333 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-04-16 21:47:18", "repo_name": "mikhailhathey/CarRental", "sub_path": "/src/main/java/com/CarRental/services/Impl/AdminServiceImpl.java", "file_name": "AdminServiceImpl.java", "file_ext": "java", "file_size_in_byt... | package com.CarRental.services.Impl;
import com.CarRental.domain.Admin;
import com.CarRental.repositories.AdminRepository;
import com.CarRental.services.AdminService;
public class AdminServiceImpl implements AdminService {
private AdminRepository repository;
@Override
public Admin save(Admin entity)
{... |
fb97f853-a00d-47dc-9565-f71a36449763 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2013-06-06 12:38:44", "repo_name": "aureta/logparser", "sub_path": "/src/com/amazon/reader/EntryReaderBase.java", "file_name": "EntryReaderBase.java", "file_ext": "java", "file_size_in_byte": 660, "line_count": 23, "l... | package com.amazon.reader;
import java.io.IOException;
import java.util.List;
import com.amazon.ConnectionInformation;
import com.amazon.IEntryReader;
import com.amazon.fieldset.Parser;
public abstract class EntryReaderBase<Input> implements
IEntryReader<Input, List<ConnectionInformation>> {
protected Connection... |
76de6d91-de33-43f1-9b50-a5342652616f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2017-03-08T13:39:25", "repo_name": "khenrix/twidder_web", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 661, "line_count": 37, "lang": "en", "doc_type": "text", "blob_i... | # Twidder
### A simple social-networking web application for learning purposes
This single page web application (SPA) was created to learn some basic web programming techniques.
Be aware of some ugly code as this is the first 'real' web application I have worked on.
***
### Backend
* Flask
* Gevent
* Websoc... |
c5a712dc-e487-45d8-8c96-d6adaa73276c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-11-28 23:30:35", "repo_name": "ShizukaIkari/POO", "sub_path": "/MenuComposite/src/menucomposite/Menu.java", "file_name": "Menu.java", "file_ext": "java", "file_size_in_byte": 660, "line_count": 32, "lang": "en", ... | /*
* 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 menucomposite;
import java.util.ArrayList;
/**
*
* @author 20161bsi0284
*/
public abstract class Menu {
private S... |
2cb24e94-378b-4fcb-851b-28ff03060f16 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-05-18 08:03:42", "repo_name": "moutainhigh/goddess-java", "sub_path": "/modules/projectroyalty/projectroyalty-api/src/main/java/com/bjike/goddess/projectroyalty/to/WeightalAdjustsTO.java", "file_name": "WeightalA... | package com.bjike.goddess.projectroyalty.to;
import com.bjike.goddess.common.api.to.BaseTO;
import java.util.List;
/**
* 项目提成权重分配表
*
* @Author: [ zhuangkaiqin ]
* @Date: [ 2017-09-14 01:55 ]
* @Description: [ 项目提成权重分配表 ]
* @Version: [ v1.0.0 ]
* @Copy: [ com.bjike ]
*/
public class WeightalAdjustsTO extends ... |
3c472c62-7852-4423-92bb-9d8e2169396b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-04-30 07:58:43", "repo_name": "harshaldeshmukh/RecycleViewHorizontalDemo", "sub_path": "/app/src/main/java/com/example/hp/recycleviewhorizontaldemo/VolleyApplication.java", "file_name": "VolleyApplication.java", ... | package com.example.hp.recycleviewhorizontaldemo;
import android.app.Application;
import com.android.volley.RequestQueue;
import com.android.volley.toolbox.Volley;
public class VolleyApplication extends Application {
private static VolleyApplication instance;
private RequestQueue requestQueue;
@Overrid... |
cfeb13f3-1635-4966-9ff2-5fab26ae3953 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2023-02-27 12:21:57", "repo_name": "HWYWL/uccn", "sub_path": "/src/main/java/com/yi/uccn/config/Config.java", "file_name": "Config.java", "file_ext": "java", "file_size_in_byte": 700, "line_count": 30, "lang": "en", "... | package com.yi.uccn.config;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
/**
* 配置扫描接口路径
* @author YI
* @date 2018-8-22 18:19:45
*/
@Configuration
@MapperScan(basePackages = {"com.yi.uccn.dao... |
bded864c-ab0b-465f-9ccd-be97a682ae96 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-05-09 02:30:18", "repo_name": "twenty-fourmoons/wellq", "sub_path": "/ManageSystem/src/util/MyPanel.java", "file_name": "MyPanel.java", "file_ext": "java", "file_size_in_byte": 660, "line_count": 31, "lang": "en"... | package util;
import java.awt.Graphics;
import java.awt.Image;
import javax.swing.ImageIcon;
import javax.swing.JPanel;
public class MyPanel extends JPanel {
public void paintComponent(Graphics g){
super.paintComponent(g);
Image image = new ImageIcon("you.jpg").getImage();
int x = 0... |
52602688-ec96-4956-8632-5dc22bab88c9 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2018-11-26T01:24:30", "repo_name": "cnpepper/vuelaravel", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 1240, "line_count": 44, "lang": "zh", "doc_type": "text", "blob_... | # vuelaravel
参考大神的前端项目练习写的后台系统
现在前端主要开发客户端版本
clectron-project 项目是打包客户端代码
laravel 是服务端代码
vue 是web端代码
目前项目主要用来练习全栈建构和熟悉使用vue+laravel
技术栈
前端
vue
vuex
axios
elementUI
webpakage
后端
laravel
dingo
passport
laravel-cors
laravel-pormission
客户端
clectron-vue
其他工具
目录说明
clectron 客户端目录
laravel 服务端目录 主要说下有区别的目录
app 目录下边新增了 d... |
596c1e27-8578-4347-9cf3-31f89c20a58f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2015-08-29 21:33:22", "repo_name": "vauvenal5/pieShare", "sub_path": "/pieUtilities/src/main/java/org/pieShare/pieTools/pieUtilities/model/EncryptedPassword.java", "file_name": "EncryptedPassword.java", "file_ext": "j... | /*
* 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 org.pieShare.pieTools.pieUtilities.model;
import javax.crypto.SecretKey;
/**
*
* @author Svetoslav
*/
public class Encrypt... |
f78abfde-68dd-43e6-a35f-8eb4efc3fc69 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2015-11-20 14:57:58", "repo_name": "MaxenceMax/ffjda", "sub_path": "/app/src/main/java/com/ffjda/ffjudo/utils/CheckConnection.java", "file_name": "CheckConnection.java", "file_ext": "java", "file_size_in_byte": 660, "... | package com.ffjda.ffjudo.utils;
import android.content.Context;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
/**
* Created by maxence on 19/03/15.
*/
public class CheckConnection {
/**
* Function to know if network is available
* @param context
* @return boolean
*... |
1452f686-febe-4b15-8ca3-0d5a1c59be60 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-03-08 03:28:38", "repo_name": "wangye1987/HeheDrink", "sub_path": "/BusinesMove/businessDrinkApp/src/main/java/com/heheys/ec/model/dataBean/ShoppingCartListBean.java", "file_name": "ShoppingCartListBean.java", "f... | package com.heheys.ec.model.dataBean;
import java.io.Serializable;
import java.util.List;
/**
* Describe:进入订单详情,传参实体类
*
* Date:2015-10-15
*
* Author:liuzhouliang
*/
public class ShoppingCartListBean implements Serializable {
private static final long serialVersionUID = 1L;
private List<ShoppingCartSelectBe... |
22af2f35-8535-4a51-b33a-c8259c56a7f5 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2015-12-14 14:08:19", "repo_name": "messagR/POEC", "sub_path": "/FullWeb/src/main/java/com/projet/views/CategoryListView.java", "file_name": "CategoryListView.java", "file_ext": "java", "file_size_in_byte": 661, "line... | package com.projet.views;
import java.util.List;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ManagedProperty;
import javax.faces.bean.RequestScoped;
import com.projet.donnees.Category;
@ManagedBean(name="categoryListView")
@RequestScoped
public class CategoryListView {
@ManagedPrope... |
e6f00e68-74b5-4efe-ba4e-a73fdc70ff89 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-04-26 17:10:50", "repo_name": "abdurashitov/OpenHomeTest1", "sub_path": "/app/src/main/java/com/example/openhometest1/Home.java", "file_name": "Home.java", "file_ext": "java", "file_size_in_byte": 659, "line_coun... | package com.example.openhometest1;
import java.io.Serializable;
public class Home implements Serializable {
private String name;
private String value;
private String data;
public Home(String name, String value, String data) {
this.name = name;
this.value = value;
this.data = d... |
a52d33d2-16cc-471a-95cc-82eb372b5d77 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2023-06-02 07:04:52", "repo_name": "mizool/mizool", "sub_path": "/technology/jackson/src/main/java/com/github/mizool/technology/jackson/ZonedDateTimeParamConverter.java", "file_name": "ZonedDateTimeParamConverter.java... | package com.github.mizool.technology.jackson;
import java.time.ZonedDateTime;
import jakarta.ws.rs.ext.ParamConverter;
import lombok.RequiredArgsConstructor;
import com.github.mizool.core.converter.ZonedDateTimeConverter;
@RequiredArgsConstructor
class ZonedDateTimeParamConverter implements ParamConverter<ZonedDat... |
34b93409-eebb-401b-87c1-cb2a3878f97e | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-11-09 22:52:03", "repo_name": "opencit/opencit-util", "sub_path": "/features/mtwilson-shiro-util/src/main/java/com/intel/mtwilson/shiro/authc/host/LoginHostPrincipal.java", "file_name": "LoginHostPrincipal.java",... | /*
* Copyright (C) 2014 Intel Corporation
* All rights reserved.
*/
package com.intel.mtwilson.shiro.authc.host;
import com.intel.dcsg.cpg.io.UUID;
import java.io.Serializable;
import java.security.Principal;
/**
*
* @author jbuhacoff
*/
public class LoginHostPrincipal implements Serializable, Principal {
p... |
74107074-173c-4593-aa27-eb7f76ea4d11 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2023-08-15T06:05:49", "repo_name": "ankurk91/laravel-bundler", "sub_path": "/wiki/post-css.md", "file_name": "post-css.md", "file_ext": "md", "file_size_in_byte": 660, "line_count": 21, "lang": "en", "doc_type": "... | ## PostCSS
[PostCSS](https://github.com/postcss/postcss) loader is already configured
with [autoprefixer](https://github.com/postcss/autoprefixer)
In order to override default configuration; you can create your own PostCSS config file on project root. File name can
be one of `.postcssrc`, `.postcssrc.json`, `.postcss... |
9dc8513e-e7bf-44ac-9949-e22d93ccd3ef | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-04-30 10:36:49", "repo_name": "kenyim001/Eclipse", "sub_path": "/spring-aop-01/src/main/java/cn/tedu/proxy/ProjectServiceStaticProxy.java", "file_name": "ProjectServiceStaticProxy.java", "file_ext": "java", "file... | package cn.tedu.proxy;
public class ProjectServiceStaticProxy implements ProjectService{
private ProjectService projectService;
public ProjectServiceStaticProxy(ProjectService projectService) {
this.projectService=projectService;
}
public void saveObject(Object obj) {
long t1=System.currentTimeMilli... |
3273b2a9-3b4d-441f-9096-b5343098224a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-09-18 16:38:46", "repo_name": "romanbaranov/rbaranov", "sub_path": "/chapter_002/src/main/java/ru/job4j/threads/lock/SimpleCounter.java", "file_name": "SimpleCounter.java", "file_ext": "java", "file_size_in_byte"... | package ru.job4j.threads.lock;
import static java.lang.Thread.currentThread;
/**
* Simple counter
*/
public class SimpleCounter implements Runnable {
private Lock lock = new SimpleLock();
private int counter = 0;
public void increment() throws InterruptedException {
lock.lock();
for (i... |
e4019024-559f-4e62-9a75-1f54ff97ba3b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-08-12 19:51:55", "repo_name": "Lemuu/ljava.sql", "sub_path": "/src/main/java/info/lemuu/sql/thread/SQLThreadFallback.java", "file_name": "SQLThreadFallback.java", "file_ext": "java", "file_size_in_byte": 659, "li... | package info.lemuu.sql.thread;
import java.sql.SQLException;
import java.util.concurrent.TimeUnit;
import info.lemuu.sql.connection.SQLConnection;
public class SQLThreadFallback implements Runnable {
public final int MINUTES_CONNECTIONS_NO_RESPONSE = 10;
private final SQLConnection sqlConnection;
public SQLT... |
ff9c8edb-1b4d-4a36-9a9f-4c5812c9e21b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-11-20 11:35:53", "repo_name": "elisabethmarie/DAT159", "sub_path": "/SparkRestService/SparkRestService/src/main/java/no/hvl/dat159/roomcontrol/TemperatureSensor.java", "file_name": "TemperatureSensor.java", "file... | package no.hvl.dat159.roomcontrol;
import java.io.IOException;
import no.hvl.dat159.dweet.DweetClientTemperature;
public class TemperatureSensor implements Runnable {
private Room room;
public TemperatureSensor(Room room) {
this.room = room;
}
public double read() {
return room.sense();
}
@Override
... |
85cb5816-20bd-4e76-94ff-5c51738be96b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-08-21 17:56:30", "repo_name": "SJX516/DuchenProject", "sub_path": "/java/design-code/src/main/java/com/duchen/design/iterator/iterator/DinerMenuIterator.java", "file_name": "DinerMenuIterator.java", "file_ext": "... | package com.duchen.design.iterator.iterator;
import com.duchen.design.iterator.menu.MenuItem;
import java.util.Iterator;
public class DinerMenuIterator implements Iterator<MenuItem> {
MenuItem[] mItems;
int mPosition = 0;
public DinerMenuIterator(MenuItem[] items) {
mItems = items;
}
@... |
ec406b75-c73a-4b89-818f-f52b6d6e8f0d | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2017-04-08T01:43:33", "repo_name": "emarcopoulos/comp20-emarcopoulos", "sub_path": "/landmarks/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 659, "line_count": 25, "lang": "en", "doc... | Readme for landmarks (assignment 2)
Implemented:
-write index.html
--read google API tutorial
--using the datastore API
--write javascript
-include navigator.geolocation
-include XMLHttpRequest
--pick image for personal marker
-click on me to display closest landmark
-and display line between and distance
--dis... |
59dc8712-5cf4-4ff9-80ad-ff95234b0468 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2023-06-16T16:21:14", "repo_name": "rust-fuzz/book", "sub_path": "/src/introduction.md", "file_name": "introduction.md", "file_ext": "md", "file_size_in_byte": 660, "line_count": 17, "lang": "en", "doc_type": "tex... | # Introduction
[Fuzz testing][] is a software testing technique used to find security and stability issues by providing pseudo-random data as input to the software.
[Rust][] is a high performance, safe, general purpose programming language.
This book demonstrates how to perform fuzz testing for software written in R... |
f8d8b79c-99c2-4a4f-961c-a29eb48c489b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2014-02-21 19:17:35", "repo_name": "MrInspectorDev/sSecurity", "sub_path": "/src/com/security/listener/ChatListener.java", "file_name": "ChatListener.java", "file_ext": "java", "file_size_in_byte": 660, "line_count": ... | package com.security.listener;
import org.bukkit.ChatColor;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.player.AsyncPlayerChatEvent;
import com.security.plugin.sSecurity;
public class ChatListener implements Listener {
sSecurity plugin;
public ChatListener(sSec... |
26a3949b-8c1f-4a83-9655-9d51efd0940f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2019-07-18T11:06:14", "repo_name": "yangshuaionline/YsAndroid", "sub_path": "/Git.md", "file_name": "Git.md", "file_ext": "md", "file_size_in_byte": 1045, "line_count": 31, "lang": "zh", "doc_type": "text", "blob_... | # Git命令集合
新建一个README文档,若上一步勾选了创建README.md,提交时导致冲突
>touch README.md
初始化本地仓库
>git init
添加刚刚创建的README文档
>git add README.md
提交到本地仓库,并写一些注释
>git commit -m "你的注释...."
连接远程仓库并建了一个名叫:origin的别名,当然可以为其他名字,但是origin一看就知道是别名,youname记得替换成你的用户名
>git remote add origin git@github.com:yangshuaionline/YsAndroid.git
... |
af70ae54-697f-4098-82c6-3ec336ab95e4 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-11-11 04:08:02", "repo_name": "kumin/JavaDesignPatterns", "sub_path": "/src/main/java/com/kumin/behaviral/iterator/CompleteBTree.java", "file_name": "CompleteBTree.java", "file_ext": "java", "file_size_in_byte": ... | package com.kumin.behaviral.iterator;
import java.util.List;
public class CompleteBTree implements Tree {
private List<Integer> nodes;
public CompleteBTree(List<Integer> nodes) {
this.nodes = nodes;
}
@Override
public TreeIterator<Integer> getIterator() {
return new CompleteTreeI... |
9028b577-d8d7-4c9f-b417-419ccd094a19 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-01-22 02:13:48", "repo_name": "haoxikang/gank.io-with-MVVM", "sub_path": "/app/src/main/java/com/fall/gank/presenter/TestPresenter.java", "file_name": "TestPresenter.java", "file_ext": "java", "file_size_in_byte"... | package com.fall.gank.presenter;
import android.databinding.BaseObservable;
import com.fall.gank.core.BasePresenter;
import com.fall.gank.viewmodel.ITestModel;
import rx.Observable;
/**
* Created by qqq34 on 2017/1/18.
* 由于此项目比较简单,并未用到多presenter的情况 所以我们在这里写一个 简单的例子
*
*/
public class TestPresenter extends BaseP... |
ee9b5a49-2e79-47a6-bddb-df2d8caf6309 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2023-06-02 10:09:55", "repo_name": "BioMachinesLab/jbotevolver", "sub_path": "/JBotSim/src/simulation/robot/sensors/TeamNestSensor.java", "file_name": "TeamNestSensor.java", "file_ext": "java", "file_size_in_byte": 65... | package simulation.robot.sensors;
import simulation.Simulator;
import simulation.physicalobjects.checkers.AllowTeamNestChecker;
import simulation.robot.Robot;
import simulation.util.Arguments;
public class TeamNestSensor extends LightTypeSensor {
public TeamNestSensor(Simulator simulator, int id, Robot robot, Argum... |
02dfe542-ad4d-4f74-85d6-0cb734b819ff | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-01-17 09:09:02", "repo_name": "green-fox-academy/pityu_szivos", "sub_path": "/Gilthanas122/Week_04/Practice/src/practiceReadAllLines.java", "file_name": "practiceReadAllLines.java", "file_ext": "java", "file_size... | import java.io.File;
import java.io.SyncFailedException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Arrays;
import java.util.List;
public class practiceReadAllLines {
public static void main(String[] args) {
String filePath = "/home/pityu/home/Giltha... |
4b3fe41a-50da-4f6c-a622-3ff524e87346 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-10-09 05:25:16", "repo_name": "kimdaehyeok/Spring", "sub_path": "/SpringJavaAnnotationExample/src/com/example/annoation/main/FieldAnnotationMain.java", "file_name": "FieldAnnotationMain.java", "file_ext": "java",... | package com.example.annoation.main;
import com.example.annoation.object.FieldAnnotationObject;
public class FieldAnnotationMain {
public static void main(String[] args) throws IllegalAccessException, InstantiationException {
// 컨텍스트 컨테이너를 초기화 합니다.
FieldContextContainer demo = new FieldContextContainer()... |
23d21648-0166-4ea4-8053-06233dd5fc33 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-12-08 02:29:06", "repo_name": "jsdelivrbot/microservice-k8s", "sub_path": "/libraries/service-base/src/main/java/com/epam/service/exception/ApiException.java", "file_name": "ApiException.java", "file_ext": "java"... | package com.epam.service.exception;
import lombok.Getter;
import org.springframework.http.HttpStatus;
import java.util.UUID;
//@Getter
public class ApiException extends RuntimeException {
private UUID uuid;
private HttpStatus httpStatus;
private int code;
public ApiException(HttpStatus httpStatus, ... |
64e94a5e-a53e-4af6-9a39-368de5900eab | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2015-11-29 04:18:44", "repo_name": "target000/file-io", "sub_path": "/File IO/src/FileTest2.java", "file_name": "FileTest2.java", "file_ext": "java", "file_size_in_byte": 660, "line_count": 32, "lang": "en", "doc_type... | import java.io.File;
import java.io.FilenameFilter;
public class FileTest2
{
public static void main(String[] args)
{
File file = new File("/");
String[] files = file.list(new FilenameFilter()
{
@Override
public boolean accept(File dir, String name)
... |
b02f67c3-98da-4f7e-a7af-3d1e1beba6d1 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2019-01-04T16:46:50", "repo_name": "specialcredentials/KPI.-IPS.-Unitled-team.Lab3", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 660, "line_count": 21, "lang": "en", ... | # KPI.-IPS.-Unitled-team.Lab3
In a 4 lab work you'll get docker project and ability to run it.
So, the task was to describe proccess of running.
Lets go.
Envinronment:
-Operation System: Windows, Linux(Unix), Mac
-Docker installed
-Project clonned from https://github.com/specialcredentials/KPI.-IPS.-Unitled-tea... |
93d3f615-9080-4605-a38c-f3db6920fece | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-11-11 09:33:40", "repo_name": "pdefratyka/LeCarden", "sub_path": "/backend/lecarden/auth-service/src/main/java/com/lecarden/auth/domain/AuthUser.java", "file_name": "AuthUser.java", "file_ext": "java", "file_size... | package com.lecarden.auth.domain;
import lombok.EqualsAndHashCode;
import lombok.Singular;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.userdetails.User;
import java.util.Collection;
@EqualsAndHashCode(callSuper = false)
public class AuthUser extends User {
... |
2b82bb1f-3b59-49df-863f-64736e5d52aa | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2018-08-26T08:00:11", "repo_name": "ilmarskozlovs/computer-shop", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 680, "line_count": 23, "lang": "en", "doc_type": "text",... | # computer-shop
Pet project- computer online shop
Spring Boot project.
Technical stack - Tomcat, MySQL database, Maven, Spring, HTML, CSS, Bootstrap, Thymeleaf.
Description - CRUD based application to persist and maintain various computer details and parts in database.
Put together computer from parts t... |
a5ce0d33-6584-4f5b-84b1-571baadd9d59 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-05-15 20:54:21", "repo_name": "hacidoganilbars/servlets", "sub_path": "/servlet-080-jsp-nestedtags/src/com/doganilbars/chieldtag/MenuItem.java", "file_name": "MenuItem.java", "file_ext": "java", "file_size_in_byt... | package com.doganilbars.chieldtag;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.tagext.TagSupport;
public class MenuItem extends TagSupport {
private static final long serialVersionUID = 1L;
// MenuItem Tag'i icin TLD dosyamizda itemValue attribute ekledik.
private String itemValue;
... |
45fae667-7c5b-4b9e-90ca-f605d4ba2052 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2020-08-23T13:55:43", "repo_name": "dkdevelopment/discord-bot", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 659, "line_count": 16, "lang": "en", "doc_type": "text", "... | # discord-bot
For one guild bot
## Environment variables
The required environments are listed in `helpers/envChecker.ts`
Documented environment variables and their use case:
- `CMD_INVOKER`: (Default: `db`) <br />
Many of the common bots require some sort of invokation, e.g. `!play some music` the `CMD_INVOKER` in su... |
b97b278f-e2c3-41db-98c3-b85cbcd67287 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-07-13 17:53:59", "repo_name": "mshahzaib1629/FCFS-Scheduling_Operating-System-OS_Java", "sub_path": "/src/application/Process.java", "file_name": "Process.java", "file_ext": "java", "file_size_in_byte": 660, "lin... | package application;
public class Process {
String id;
int arrivalTime;
int burstTime;
public Process() {
super();
}
public Process(String id, int arrivalTime, int burstTime) {
super();
this.id = id;
this.arrivalTime = arrivalTime;
this.burstTime = burstTime;
}
public String getId() {
... |
75df2854-e396-45b9-8873-e38c43c1c33f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2017-10-26T19:37:11", "repo_name": "leonbobster/osdb-trial-task", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 660, "line_count": 25, "lang": "en", "doc_type": "text",... | # OSDB.io trial task app
### Install:
You need Docker to run this App.
Clone this repository and run following commands inside the project directory:
```
git clone git@github.com:leonbobster/osdb-trial-task.git my-app
cd my-app
docker build -t osdb-trial-task .
```
### Run:
```
docker run -it -v `pwd`:/tmp/app-dat... |
e3fd3fee-6a80-4292-a50f-185e00e19f0c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-01-22 07:38:43", "repo_name": "FallInLoveOfOne/project_2019", "sub_path": "/releaseRecord/tags/releasedRecord-va/src/main/java/cn/innosoft/en/releaseRecord/releaseManager/service/TaskService.java", "file_name": "... | package cn.innosoft.en.releaseRecord.releaseManager.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service("TaskService")
public class TaskService {
@Autowired
private JcDetoxInfoService jcDetoxInfoService;
@Autowired
private... |
36e2a1c7-3311-4efc-b694-6e5f36fb0f7f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-07-08 17:59:26", "repo_name": "kaamiel/Ticket-Booking-App", "sub_path": "/src/main/java/com/ticketbooking/app/Repertoire.java", "file_name": "Repertoire.java", "file_ext": "java", "file_size_in_byte": 660, "line_... | package com.ticketbooking.app;
import lombok.Data;
import javax.persistence.*;
import javax.validation.constraints.NotNull;
import java.time.LocalDateTime;
@Entity
@Data
@Table(uniqueConstraints = {
@UniqueConstraint(columnNames = {"movie_id", "dateTime"})
})
class Repertoire {
private @Id
@Generat... |
7b012cfc-a8b6-42e0-a427-06e273ff66d0 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-01-28 17:26:49", "repo_name": "paulholiday/advent-of-code", "sub_path": "/src/main/java/org/paulholiday/PasswordPolicyParser.java", "file_name": "PasswordPolicyParser.java", "file_ext": "java", "file_size_in_byte... | package org.paulholiday;
public class PasswordPolicyParser {
PasswordPolicy parse(String policy) {
String[] splitOnSpace = policy.split("\\s");
String[] minAndMax = splitOnSpace[0].split("-");
int policyDigit1 = Integer.parseInt(minAndMax[0]);
int policyDigit2 = Integer.parseInt(... |
f715036f-5a91-4f40-84e6-9e8401556056 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-08-27 07:17:01", "repo_name": "win-than-htike/Meal-Ordering-App", "sub_path": "/app/src/main/java/xyz/padc/mealordering/events/DataEvent.java", "file_name": "DataEvent.java", "file_ext": "java", "file_size_in_byt... | package xyz.padc.mealordering.events;
import java.util.List;
import xyz.padc.mealordering.data.vos.Meal;
/**
* Created by aung on 7/9/16.
*/
public class DataEvent {
public static class AttractionDataLoadedEvent {
private String extraMessage;
private List<Meal> mealList;
public Attract... |
34c1650d-fd23-46d5-bdd1-811d2e6b9303 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2022-12-12 08:52:54", "repo_name": "catalin-burcea/playground", "sub_path": "/java11/src/test/java/ro/cburcea/playground/java11/LanguageModificationsTest.java", "file_name": "LanguageModificationsTest.java", "file_ext... | package ro.cburcea.playground.java11;
import org.junit.jupiter.api.Test;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintWriter;
import java.util.Scanner;
public class LanguageModificationsTest {
@Test
void testTryWithResources() throws FileNotFoundException {
final S... |
1eca68ec-a0f8-4c63-8b7b-e0b02b62ce0e | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2020-12-02T16:57:55", "repo_name": "mrwhoknows55/Wall-Stack", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 660, "line_count": 30, "lang": "en", "doc_type": "text", "bl... | # Wall-Stack
## About the App
A wallpaper app which uses wallheaven's api to fetch cool wallpapers and helps to set them as homescreen wallpaper.
This app is created in #30DaysOfKotlin challenge.
Demo [Video](docs/wallstack.mp4)
## Screenshots
<table>
<tr>
<td><img src = "docs/1.jpg"></td>
... |
c0481d69-80e8-46f1-a6a2-570c58165759 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-09-15 23:21:00", "repo_name": "nebnamwen/buttonbox", "sub_path": "/ControlPanel.java", "file_name": "ControlPanel.java", "file_ext": "java", "file_size_in_byte": 660, "line_count": 27, "lang": "en", "doc_type": "... | import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
public class ControlPanel extends JPanel implements ActionListener {
final ButtonBox parent;
final int channel;
final JComboBox instrument;
public ControlPanel(ButtonBox parent, int channel) {
this.parent = parent;
this.chan... |
6dbc97af-8c72-41fa-898a-37408fbc3f78 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-09-17 16:31:38", "repo_name": "c-ramirez6/Project1-Chris-Ramirez", "sub_path": "/src/main/java/com/connection/ConnectionFactory.java", "file_name": "ConnectionFactory.java", "file_ext": "java", "file_size_in_byte... | package com.connection;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.ResourceBundle;
public class ConnectionFactory {
private static Connection conn = null;
private ConnectionFactory() {
}
public static Connection getConnection() throws SQLExcep... |
140271b7-5236-40c9-8693-173cbce0ad2a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2020-07-20T08:32:19", "repo_name": "Smit-Kakadiya/Weather-Application", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 660, "line_count": 22, "lang": "en", "doc_type": "... | # Weather Application
- I have developed web based application which depicts free weather information of the location you type in textbox.
- Also, the AccuWeather API has been implemented in order to view temperature and weather information of the particular location.
- The AccuWeather API used here is the free version... |
6e89f1aa-032a-47b4-9c12-643c7ba39b2a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-05-15 14:06:46", "repo_name": "makifarslan/Java_Codes", "sub_path": "/Dosya İşlemleri/BufferedReader.java", "file_name": "BufferedReader.java", "file_ext": "java", "file_size_in_byte": 663, "line_count": 22, "lan... | import java.io.*;
public class BufferedReader{
public static void main(String args[]){
try
{
File f = new File("C:\\Users\\ceng00\\Desktop\\buffer.txt"); /*Kendi bilgisayarınıza göre ayarlayın.*/
FileReader fr = new FileReader(f);
BufferedReader br = new Bu... |
f15197e5-9b39-42b5-8097-18809fc18006 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-01-21 10:55:29", "repo_name": "Andreasbirch/Tetris", "sub_path": "/jSpace-Project/src/tetris/HighScoreData.java", "file_name": "HighScoreData.java", "file_ext": "java", "file_size_in_byte": 660, "line_count": 32,... | package tetris;
import javafx.beans.property.SimpleStringProperty;
public class HighScoreData {
private final SimpleStringProperty name;
private final SimpleStringProperty score;
public HighScoreData(String name, String score) {
this.name = new SimpleStringProperty(name);
this.score = ne... |
2ae1dd45-c31b-4778-a31e-cc9550cec578 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-09-04 01:19:31", "repo_name": "ivicel/my-blog-wheel", "sub_path": "/src/test/java/info/ivicel/blog/WheelApplicationTests.java", "file_name": "WheelApplicationTests.java", "file_ext": "java", "file_size_in_byte": ... | package info.ivicel.blog;
import info.ivicel.blog.core.repository.PostRepository;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.t... |
0c3cd5a4-2552-43ba-af29-5bef7dc8ea1e | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2014-04-11 18:49:15", "repo_name": "rebeccamurphy/StudyBug", "sub_path": "/src/com/kgght/studybug/objects/Test.java", "file_name": "Test.java", "file_ext": "java", "file_size_in_byte": 660, "line_count": 37, "lang": "... | package com.kgght.studybug.objects;
import java.util.ArrayList;
public class Test {
private ArrayList<Picture> picturesList;
private ArrayList<FlipCard> flipCardList;
public Test() {
picturesList = new ArrayList<Picture>();
flipCardList = new ArrayList<FlipCard>();
}
public Test(Test oldTest){
flipCardL... |
d7cd8926-cea7-4f82-ad9a-b2bdad27b9b9 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2015-02-18 14:09:30", "repo_name": "michaelgena/nuxeo-labs-place", "sub_path": "/src/main/java/org/nuxeo/labs/place/providers/google/model/GoogleSuggestion.java", "file_name": "GoogleSuggestion.java", "file_ext": "jav... | package org.nuxeo.labs.place.providers.google.model;
import org.nuxeo.labs.place.model.PlaceSuggestion;
/**
* Created by Michaël on 16/02/2015.
*/
public class GoogleSuggestion implements PlaceSuggestion {
private String place_id;
private String description;
@Override
public String getId(... |
9d9d811f-3932-4f3e-b7f1-011f53c524be | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-03-07 16:44:40", "repo_name": "tolgafguler/Pizza-Delivery-Automation", "sub_path": "/Order.java", "file_name": "Order.java", "file_ext": "java", "file_size_in_byte": 659, "line_count": 38, "lang": "en", "doc_type... | import java.util.ArrayList;
public class Order {
protected int orderId;
protected int customerId;
protected int drink;
ArrayList<Pizza> basket;
public int getOrderId() {
return orderId;
}
public void setOrderId(int orderId) {
this.orderId = orderId;
}
public int getCustomerId() {
return customerId;
}... |
455bbe4d-e967-46c7-a750-d9de33a75f8e | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-12-20 12:05:57", "repo_name": "JiseokKim/MondayFairy", "sub_path": "/app/src/main/java/com/test/k/mondayfairy/WakeLockUtil.java", "file_name": "WakeLockUtil.java", "file_ext": "java", "file_size_in_byte": 659, "l... | package com.test.k.mondayfairy;
import android.content.Context;
import android.os.PowerManager;
public class WakeLockUtil {
private static PowerManager.WakeLock mCpuWakeLock;
static public void acquireCpuWakeLock(Context context, int flag){
if(mCpuWakeLock != null) return;
PowerManager pm = (P... |
bc8d38ec-1d68-48dd-86f4-c3b9aa7dbbc4 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2021-01-16T20:10:59", "repo_name": "akkuprin/android-appsample-2", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 658, "line_count": 19, "lang": "en", "doc_type": "text"... | ### Sample Android app based on:
1. MVVM (AndroidX ViewModel, LiveData)
2. Repository based on Coroutines Flow and suspend functions
3. Koin DI
4. Common module with logger and custom util
5. Dependency versions in versions.gradle
6. RecyclerView with Paged adapter and item animator in gallery feature
6. CoordinatorLa... |
87a2a730-1d2e-41f8-8b43-baa37238620f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2016-06-01T17:19:07", "repo_name": "keith/travis.vim", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 659, "line_count": 32, "lang": "en", "doc_type": "text", "blob_id":... | # Travis.vim
View your [Travis CI](https://travis-ci.org/) build status within Vim
## Usage
Run `:Travis` from within vim. You must be running vim from a folder
within the Git repository. Note: Travis.vim requires `+python`
Inside the Quickfix window:
`q`: closes the quickfix window
`r`: refreshes the build statu... |
f74c345c-2acc-4872-b5ac-3a77bced85ca | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-04-24 07:46:59", "repo_name": "sxqyzm/jraft", "sub_path": "/src/main/java/com/test/zhangmeng/server/outputHandler/ServerEncoder.java", "file_name": "ServerEncoder.java", "file_ext": "java", "file_size_in_byte": 7... | package com.test.zhangmeng.server.outputHandler;
import com.test.zhangmeng.serial.BasicSerialIml;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.MessageToByteEncoder;
/**
* 输出流最后一个handler,将对象序列化成字节数组,并放到bytebuf中,然后进行网络传输
* Created by zhangmeng on 2017/03... |
a8eedc6d-7bf0-4295-9076-8b85d470ead1 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-02-16 01:44:58", "repo_name": "solesdcorona/arki", "sub_path": "/jif/base/base-messaging/src/main/java/com/walmart/jif/messaging/types/Queue.java", "file_name": "Queue.java", "file_ext": "java", "file_size_in_byt... | package com.walmart.jif.messaging.types;
import java.io.Serializable;
/**
* Queue object class.
*
* @param <T> the generic type.
* @author vcamacho
* @created 2015
*/
public class Queue<T extends Serializable > extends BaseMessage<T> {
/** Serialization. */
private static final long serialVersionUID = 1L;
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.