id stringlengths 36 36 | meta stringlengths 429 697 | code_content large_stringlengths 612 1.26k |
|---|---|---|
687b1055-fb1d-46e3-b547-bb75c4e33d54 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-12-10 07:28:55", "repo_name": "eudeka/osg2-android-2-view-viewgroup", "sub_path": "/app/src/main/java/com/educa62/view_and_viewgroup/MainActivity.java", "file_name": "MainActivity.java", "file_ext": "java", "file... | package com.educa62.view_and_viewgroup;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCrea... |
66ce7b63-1ee7-4b71-86d4-a43c020f498f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-09-21 20:32:19", "repo_name": "Otaka/ScriptLang", "sub_path": "/src/main/java/com/scriptlang/bytecode/LoadArgumentInstruction.java", "file_name": "LoadArgumentInstruction.java", "file_ext": "java", "file_size_in_... | package com.scriptlang.bytecode;
import com.scriptlang.Interpreter;
/**
* @author Dmitry
*/
public class LoadArgumentInstruction extends BaseInstruction {
private int argumentIndex;
public LoadArgumentInstruction(int argumentIndex) {
this.argumentIndex = argumentIndex;
}
public int getArg... |
1dc644dc-17dd-4b69-865d-d07f1880f247 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2022-07-04 11:51:45", "repo_name": "stuckless/sagetv-bmtweb", "sub_path": "/src/org/jdna/bmt/web/client/media/GWTViewCategories.java", "file_name": "GWTViewCategories.java", "file_ext": "java", "file_size_in_byte": 68... | package org.jdna.bmt.web.client.media;
import java.io.Serializable;
import java.util.ArrayList;
public class GWTViewCategories implements Serializable {
private static final long serialVersionUID = 1L;
private String id, label;
private ArrayList<GWTView> views = new ArrayList<GWTView>();
public GWTViewCategories... |
ab73ec2d-bac1-47d7-b38e-2ad6e663eb1e | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2017-09-15T20:15:36", "repo_name": "kma/singularity-jupyter", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 690, "line_count": 32, "lang": "en", "doc_type": "text", "bl... | # singularity-jupyter
This example shows how to run a jupyter notebook server within singularity container.
## Create and bootstrap the container
```bash
$ sudo singularity create -s 1200 jupyter.img
$ sudo singularity bootstrap jupyter.img Singularity
```
## Use singularity-hub to pull this container
``
$ singula... |
02da1242-fc54-42cb-a7d5-010bc9bc0a51 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-04-10 08:57:56", "repo_name": "MohammedRiazKhan/HospitalVisitSystem", "sub_path": "/src/test/java/factories/PatientFactoryTest.java", "file_name": "PatientFactoryTest.java", "file_ext": "java", "file_size_in_byte... | package factories;
import domain.Doctor;
import domain.Patient;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
public class PatientFactoryTest {
@Test
public void getPatient() {
String firstName = "Riaz";
S... |
8606fe96-fe5b-4c1a-a51a-7824b3def121 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-02-02 01:54:36", "repo_name": "1755616537/alipay-sdk-java-all", "sub_path": "/src/main/java/com/alipay/api/domain/CategoryLeafDTO.java", "file_name": "CategoryLeafDTO.java", "file_ext": "java", "file_size_in_byte... | package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 类目叶子节点
*
* @author auto create
* @since 1.0, 2020-10-20 14:02:49
*/
public class CategoryLeafDTO extends AlipayObject {
private static final long serialVersionUID = 16828921575... |
abda851d-9aba-44ab-bbb5-eac71392a7c7 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-10-22 13:58:02", "repo_name": "BaikovSergey/junior", "sub_path": "/OOD/src/main/java/ru/job4j/thegame/menu/choseturn/ComputerTurn.java", "file_name": "ComputerTurn.java", "file_ext": "java", "file_size_in_byte": ... | package ru.job4j.thegame.menu.choseturn;
import ru.job4j.thegame.TheGame;
import ru.job4j.thegame.menu.IAction;
import ru.job4j.thegame.menu.IItem;
/**
* @author Sergey Baikov
* @version $1$
* @since 23.10.19
*/
public class ComputerTurn implements IItem, IAction {
/**
* Stores TheGame instance.
*/... |
26cc87ab-9b87-4857-9106-53c5a0b358de | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2023-08-03 17:13:38", "repo_name": "Ravaelles/Atlantis", "sub_path": "/src/atlantis/keyboard/AForcedClicks.java", "file_name": "AForcedClicks.java", "file_ext": "java", "file_size_in_byte": 688, "line_count": 27, "lan... | package atlantis.keyboard;
import java.awt.*;
import java.awt.event.KeyEvent;
public class AForcedClicks {
/**
* Alt+F9 makes ChaosLauncher double the size, it's simply bigger.
*/
public static void clickAltF9() {
Robot robot = null;
try {
robot = new Robot();
... |
0fce4d43-fa46-4b4a-a635-149ed42ae833 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-03-10 03:31:06", "repo_name": "my1free/qijin-tech-study-java", "sub_path": "/mysql-conn-pool/src/main/java/tech/qijin/study/mysql/conn/pool/ConnPoolMain.java", "file_name": "ConnPoolMain.java", "file_ext": "java"... | package tech.qijin.study.mysql.conn.pool;
import java.sql.*;
public class ConnPoolMain {
public static void main(String[] args) throws SQLException {
ConnPool connPool = MySqlConnPool.getInstance();
Connection connection = connPool.getConnection();
String sql = "select * from test";
... |
df1fa8a9-3cfb-4237-a80f-d9f338aa4188 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2021-08-16T23:19:12", "repo_name": "muzammil17sp/Disney-clone", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 692, "line_count": 43, "lang": "en", "doc_type": "text", "... | ### Disney Clone
### [Live Site](https://disney-313420.web.app/details/UHjQnPUGFzaV4RWqiNOZ)
[](https://www.linkpicture.com/view.php?img=LPic611af2429b289831858909)
This is a code repository for the Disney clone
In thi... |
6dbbef52-a892-4257-8d34-ea2c7f2591e3 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-01-09 02:20:52", "repo_name": "coding-new-talking/java-class-file", "sub_path": "/src/main/java/org/codingnewtalking/classfile/attribute/util/StackMapFrame.java", "file_name": "StackMapFrame.java", "file_ext": "j... | package org.codingnewtalking.classfile.attribute.util;
/**
* @author lixinjie
* @since 2019-08-09
*/
public class StackMapFrame {
private byte[] bytes;
private int offset;
private Frame frame;
public StackMapFrame(byte[] bytes, int offset) {
this.bytes = bytes;
this.offset = offset;
}
... |
074fbcd1-0864-44f3-ab7d-3c16b7d1517f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2022-03-17T17:59:20", "repo_name": "paulanderson1234/myAllAboutScala", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 695, "line_count": 28, "lang": "en", "doc_type": "t... | MyAllAboutScala
======================
This repository contains examples from the tutorial that can be found at :
http://allaboutscala.com/
Git repository can be found at :
https://github.com/nadimbahadoor/allaboutscala
### Chapters
Chapter 1: Getting familiar with the IntelliJ IDEA
Chapter 2: Learning ... |
c47527c0-f410-4fd7-9ded-9b22d31547ee | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-10-06 11:45:08", "repo_name": "maxerling/Inlamningsuppgift1", "sub_path": "/Animal.java", "file_name": "Animal.java", "file_ext": "java", "file_size_in_byte": 598, "line_count": 40, "lang": "en", "doc_type": "cod... | /**
* Created by Max Erling
* Date: 2020-09-25
* Copyright: MIT
* Class: Java20B
*/
abstract class Animal implements FoodAmount {
//Skyddar alla instansvariabler (Encapsulation)
private String name;
private int weight;
Animal(String name, int weight) {
this.name = name;
this.weigh... |
88ec60c7-ec3f-4d9f-8fcb-0735b5d411e5 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2023-08-19T11:45:54", "repo_name": "Nitrokey/pynitrokey", "sub_path": "/.github/pull_request_template.md", "file_name": "pull_request_template.md", "file_ext": "md", "file_size_in_byte": 688, "line_count": 29, "la... | <!-- (an executive summary of the changes, ideally in one sentence) -->
This PR...
## Changes
<!-- (major technical changes list) -->
-
## Checklist
Make sure to run `make check` and `make fix` before creating a PR, otherwise the CI will fail.
- [ ] tested with Python3.9
- [ ] signed commits
- [ ] updated document... |
4bf79caf-574c-4dcc-985a-df21d4970231 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-04-27 15:46:52", "repo_name": "wanelte/AT_HT_FINAL", "sub_path": "/src/main/java/miamato/pageobject/ebay/SignOutPage.java", "file_name": "SignOutPage.java", "file_ext": "java", "file_size_in_byte": 688, "line_cou... | package miamato.pageobject.ebay;
import com.miamato.pageobject.BasePage;
import com.miamato.pageobject.PageManager;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;... |
b65c35f1-ba6b-4909-81d5-74b00b3880cf | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-02-19 20:54:08", "repo_name": "bsponge/chess", "sub_path": "/src/main/java/chessLibOptimized/Move.java", "file_name": "Move.java", "file_ext": "java", "file_size_in_byte": 688, "line_count": 36, "lang": "en", "do... | package chessLibOptimized;
import lombok.Data;
import javax.persistence.Embeddable;
import javax.persistence.Transient;
@Embeddable
@Data
public class Move {
@Transient
public static final Move BAD_MOVE = new Move(-1, -1, -1, -1, -1, -1);
private int fromX;
private int fromY;
private int fromP... |
0c17f207-8110-42a8-a3cb-39586547326a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-09-15 19:53:33", "repo_name": "kframework/java-semantics", "sub_path": "/tests/57_field_access_mode/f_access_01_instance_all_pairs.java/A.java", "file_name": "A.java", "file_ext": "java", "file_size_in_byte": 688... | /*
Concrete pairs:
- public, public
- public, protected
- public, package
- public, private
- protected, protected
- protected, package
- protected, private
- package, package
- package, private
- private, private
*/
package a;
public class A {
public String pub_pub = "A.pub_pub";
public ... |
883f010c-f394-469b-94ad-14058f49e6a3 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-12-08 21:44:02", "repo_name": "monarezio/task-manager-java", "sub_path": "/src/main/java/cz/ucl/logic/data/mappers/entityToDAO/UserToUserDAOMapper.java", "file_name": "UserToUserDAOMapper.java", "file_ext": "java... | package cz.ucl.logic.data.mappers.entityToDAO;
import cz.ucl.logic.app.entities.definition.IUser;
import cz.ucl.logic.data.dao.UserDAO;
import cz.ucl.logic.data.mappers.definitions.entityToDAO.IUserToUserDAOMapper;
final public class UserToUserDAOMapper implements IUserToUserDAOMapper {
public UserToUserDAOMappe... |
c4e5ab64-fbe0-4bc1-8564-834da22d140c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2011-10-09 10:45:27", "repo_name": "JIAZHEN/OrderSystem", "sub_path": "/OrderSystemClient/src/gui/Test.java", "file_name": "Test.java", "file_ext": "java", "file_size_in_byte": 688, "line_count": 31, "lang": "en", "do... | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package gui;
import javax.swing.*;
import ordersystemclient.model.ClientModel;
/**
*
* @author Administrator
*/
public class Test {
public static void main(String[] args) {
JFrame frame = new JFrame();
... |
1e8329da-a142-4e45-bba8-aa008d3b3ed3 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-12-17 11:30:05", "repo_name": "superxiaohui/AAA", "sub_path": "/xcEduService01/xc-service-manage-cms/src/main/java/com/xuecheng/manage_cms/controller/CmsTemplateController.java", "file_name": "CmsTemplateControll... | package com.xuecheng.manage_cms.controller;
import com.xuecheng.framework.domain.cms.CmsTemplate;
import com.xuecheng.manage_cms.service.TemplateService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotat... |
c2cb6808-ad05-4c3a-8398-5d17e4ace775 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-01-16 07:51:47", "repo_name": "BanneretLi/MyApp", "sub_path": "/myyuekao/src/main/java/com/example/a51044/myyuekao/utils/OkHttpUtils.java", "file_name": "OkHttpUtils.java", "file_ext": "java", "file_size_in_byte"... | package com.example.a51044.myyuekao.utils;
import okhttp3.Callback;
import okhttp3.OkHttpClient;
import okhttp3.Request;
public class OkHttpUtils {
private OkHttpClient okHttpClient=new OkHttpClient();
public void OkHttpUtils()
{
okHttpClient=new OkHttpClient();
}
public static OkHttpUtil... |
e7d42796-cc66-4280-b51d-2decca385107 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-05-03 17:40:47", "repo_name": "Decapitator1988/university", "sub_path": "/src/main/java/Students.java", "file_name": "Students.java", "file_ext": "java", "file_size_in_byte": 688, "line_count": 27, "lang": "en", ... | public class Students {
private int studentId;
private int groupId;
private String firstName;
private String lastName;
public Students() {
}
public Students(int studentId, int groupId, String firstName, String lastName) {
this.studentId = studentId;
this.groupId = groupId;
... |
6cc465ed-894d-4a8d-9b09-b7784ff7e3a9 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-06-19 01:43:51", "repo_name": "grqueiroz/lupus-tcc", "sub_path": "/app/src/main/java/com/example/grqueiroz/lupus_tcc/entity/CardContent.java", "file_name": "CardContent.java", "file_ext": "java", "file_size_in_by... | package com.example.grqueiroz.lupus_tcc.entity;
/**
* Created by gabriel-queiroz on 09/03/18.
*/
public class CardContent implements Content {
private String destinationId;
private ImageContent cardImage;
private TextContent cardText;
public CardContent(String destinationId, ImageContent cardImage,... |
3cfbd373-f1b5-4c5d-bab0-fccacb244ef7 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-11-16 06:41:01", "repo_name": "jkloshhm/YiChuFang2.0", "sub_path": "/yichufang/src/main/java/com/guojian/weekcook/adapter/MyFragmentPagerAdapter.java", "file_name": "MyFragmentPagerAdapter.java", "file_ext": "jav... | package com.guojian.weekcook.adapter;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import java.util.List;
/**
*@author Created by jkloshhm on 2017/6/24. 主页的FragmentPagerAdapter
*/
public class MyFragmentPagerAdapter exte... |
19f88c0b-e85f-4f11-ad94-ea1cda06489c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-10-01 23:52:47", "repo_name": "Wkerlyson/cursomc-springboot-backend", "sub_path": "/src/main/java/com/wkprojects/domain/enums/PaymentStatus.java", "file_name": "PaymentStatus.java", "file_ext": "java", "file_size... | package com.wkprojects.domain.enums;
public enum PaymentStatus {
PENDING(1, "Pendente"),
SETTLED(2, "Quitado"),
CANCELED(3, "Cancelado");
private int cod;
private String description;
private PaymentStatus(int cod, String description) {
this.cod = cod;
this.description = description;
}
public int getCod... |
662ccc6b-04be-4bea-968e-16e8c79354e9 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2015-10-22 00:40:23", "repo_name": "sophiathach/BreakfastSloth", "sub_path": "/src/sloth/adventure/ShortAnswer.java", "file_name": "ShortAnswer.java", "file_ext": "java", "file_size_in_byte": 687, "line_count": 24, "l... | package sloth.adventure;
public class ShortAnswer extends Question{
/**
* Creates a short answer question.
* Derives from the Question class.
* @param statName name of the stat this question relates to
*/
public ShortAnswer(String statName){super(statName);}
/**
* Checks user i... |
b3d062f7-13d0-4a2c-8f1c-166a148eb847 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2021-07-10T22:25:48", "repo_name": "maxcastelobranco/move-it", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 687, "line_count": 26, "lang": "en", "doc_type": "text", "b... | <div align="center">
<img src=".github/moveit-logo.svg" alt="MoveIt logo">
</div>
## MoveIt
<h4 align="center">
MoveIt is a web app that uses the Pomodoro technique <br/> alongside meditation related challenges aimed to prevent burnout.
</h4>
## Technologies used in this project
* [NextJs](https://github.com/ver... |
7c2a3886-5606-4442-886d-89fe65dbe68e | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-03-21 12:42:19", "repo_name": "Brenin/Stuff", "sub_path": "/Android/FCMTesting/app/src/main/java/com/lundin_pr/fcmtesting/MainActivity.java", "file_name": "MainActivity.java", "file_ext": "java", "file_size_in_by... | package com.lundin_pr.fcmtesting;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
import com.google.firebase.messaging.FirebaseMessaging;
public class MainActivity extends AppCompatActivity {
private TextView textView ;
@Override
protected void... |
590b2870-6f59-4af0-8a59-01e789397c31 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-07-04 11:44:35", "repo_name": "GZAY/Yichuguanjia2", "sub_path": "/app/src/main/java/com/example/yichuguanjia2/M_Activity/M_set.java", "file_name": "M_set.java", "file_ext": "java", "file_size_in_byte": 687, "line... | package com.example.yichuguanjia2.M_Activity;
import android.view.View;
import android.widget.ImageView;
import com.example.yichuguanjia2.R;
import com.example.yichuguanjia2.base.BaseActivity;
public class M_set extends BaseActivity {
ImageView back;
@Override
protected int attachLayoutRes() {
re... |
b139a81d-c33b-4d92-afca-70241cc26cb4 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-02-13 17:11:21", "repo_name": "rishabh05/OJTApp", "sub_path": "/app/src/main/java/com/ojt/readyreckoner/RowItem.java", "file_name": "RowItem.java", "file_ext": "java", "file_size_in_byte": 686, "line_count": 32, ... | /*@ID: CN20140001
*@Description: srcRowItem is used to stored BA's name,id,record id
* @Developer: Arunachalam
* @Version 1.0
* @Date: 21/03/2014
*/
package com.ojt.readyreckoner;
public class RowItem
{
private String strName=null;
private String strID=null;
private String strDetailID=null;
publ... |
a27279b9-c8ab-4e1f-b883-38e401a370ea | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2017-06-12T14:08:51", "repo_name": "andrei-zhidkov/ember-simple-qrcode", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 687, "line_count": 34, "lang": "en", "doc_type": ... | ember-simple-qrcode
============
A simple QR code component & npm's `qrcode` package shim.
This addon is a thin wrapper around [node-qrcode](https://github.com/soldair/node-qrcode) library.
Installation
------------
Run `ember install ember-simple-qrcode`.
Usage
------------
### Component
```hbs
{{qr-code content... |
bb5a3e2e-b2f4-4c3e-bddf-519a86cf919e | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-11-23 15:12:07", "repo_name": "feechanz/LetShoppa", "sub_path": "/app/src/main/java/com/letshoppa/feechan/letshoppa/SplashActivity.java", "file_name": "SplashActivity.java", "file_ext": "java", "file_size_in_byte... | package com.letshoppa.feechan.letshoppa;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import com.letshoppa.feechan.letshoppa.Class.AppHelper;
/**
* Created by Feechan on 9/17/2016.
*/
public class SplashActivity extends AppCompatActivity {
@Override
... |
6dd34939-556b-4159-a173-80caa47ec03a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2017-08-19T04:49:31", "repo_name": "AstroMekanikle62/Fortuna---a-small-RPG", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 687, "line_count": 19, "lang": "en", "doc_typ... | # Fortuna---a-small-RPG
After over three months of constant work it's finally done!
my first programming project, Fortuna is a small-linear-turn based-rpg game with unique twists.
you can start with three player classes all with there unique abilities,
and you must defeat the 8(?) knights of the arcana in your quest ... |
2abecb02-6ff9-436e-bec9-20c3c74e3408 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-01-31 15:29:45", "repo_name": "ronindevreeze/Terraria", "sub_path": "/com/terarria/main/blocks/Wood.java", "file_name": "Wood.java", "file_ext": "java", "file_size_in_byte": 687, "line_count": 31, "lang": "en", "... | package com.terarria.main.blocks;
import java.awt.Color;
import java.awt.Graphics;
import java.util.Random;
import com.terarria.main.Game;
import com.terarria.main.utils.Utils;
public class Wood extends Block {
private static final long serialVersionUID = -2564345609719102389L;
Random random = new Random();
int... |
d710fc97-66e4-4031-b38e-aa2f0df8b4e3 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-12-22 09:12:09", "repo_name": "beddingearly/Java_entry_to_death", "sub_path": "/Ch8_6/src/Ch8_6.java", "file_name": "Ch8_6.java", "file_ext": "java", "file_size_in_byte": 687, "line_count": 31, "lang": "en", "doc... | class Person{
public String name;
public String address;
public final String getName(){return name;}
public final String getAddress(){return address;}
public final void setName(String name){this.name = name;}
public final void setAddress(String address){this.address = address;}
}
final class Customer extends Pers... |
18169010-3e5d-42a9-a558-5312f6271e33 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-02-04 12:25:39", "repo_name": "keepthinker/wavemessaging", "sub_path": "/wm-core/src/main/java/com/keepthinker/wavemessaging/core/utils/WmpActionLogger.java", "file_name": "WmpActionLogger.java", "file_ext": "jav... | package com.keepthinker.wavemessaging.core.utils;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
/**
* Created by keepthinker on 2017/3/26.
*/
public class WmpActionLogger {
private static final Logger MESSAGE_LOGER = LogManager.getLogger("message");
private static fina... |
1a43d87d-f994-4f5b-8d3c-f7b43e9797fd | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-07-20 04:43:01", "repo_name": "jay-genhot/sample", "sub_path": "/src/main/java/no/trinnvis/dabih/resources/PreconditionFailedException.java", "file_name": "PreconditionFailedException.java", "file_ext": "java", "... | package no.trinnvis.dabih.resources;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
public class PreconditionFailedException extends WebApplicationException {
public PreconditionFailedException(String message) {
super(Response.status(Respo... |
f1f73af0-783c-4816-baef-5a544168da4a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-03-10 14:19:04", "repo_name": "Deathsmell/demo-secure-jdbc", "sub_path": "/src/test/java/com/example/demosecurejdbcrest/DemoSecureJdbcRestApplicationTests.java", "file_name": "DemoSecureJdbcRestApplicationTests.j... | package com.example.demosecurejdbcrest;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
class DemoSecureJdbcRestApplicationTests {
void contextLoads() {
}
public ... |
3040e54c-6574-4c68-b449-74551aa13fc1 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-05-24 18:44:22", "repo_name": "laksheenmendis/sfg-di", "sub_path": "/src/test/java/guru/springframework/sfgdi/controllers/PropertyInjectedControllerTest.java", "file_name": "PropertyInjectedControllerTest.java", ... | package guru.springframework.sfgdi.controllers;
import guru.springframework.sfgdi.services.ConstructorGreetingService;
import guru.springframework.sfgdi.services.PropertyInjectedGreetingService;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
/**
* Created by laksheenmendis on 5/19/20 at ... |
fb04a5b0-8869-4a50-8d11-918a1c1ddf2d | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-06-18 08:34:09", "repo_name": "zxc-vitaliy/zxc-study-project-software-design", "sub_path": "/src/main/java/com/vitaliy/turkov/level/editor/entity/Step.java", "file_name": "Step.java", "file_ext": "java", "file_si... | package com.vitaliy.turkov.level.editor.entity;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
@EqualsAndHashCode
public class Step {
private Integer length;
private Direction direction;
public Step(Integer length, Direction direction) {
this.length =... |
21a73e47-b39c-4d46-8a81-2249e13127de | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2019-11-12T09:12:16", "repo_name": "sayederfanarefin/html-neonsofts.com", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 687, "line_count": 11, "lang": "en", "doc_type":... | # Neonsofts Website
[](https://opensource.org/licenses/MIT)  [](http://hits.d... |
12eebf70-bfa7-4be5-9f4b-ce2ed0fe6298 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-05-19 02:01:42", "repo_name": "SantiagoBernalO/JugandoConLaHistoria", "sub_path": "/src/modelo/Hilo1.java", "file_name": "Hilo1.java", "file_ext": "java", "file_size_in_byte": 729, "line_count": 36, "lang": "en",... | package modelo;
import modelo.Board2;
public class Hilo1 extends Thread{
//Calculate the duration in which you make the movements
int minutes=0, seconds=0;
public void run() {
try{
while(true){
synchronized(Board2.time){
if(seconds==59) { seconds=0; minutes+... |
f4cbfb70-073a-449b-b374-0ed6c10cbae0 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2014-11-05 08:28:01", "repo_name": "sdgdsffdsfff/hehua-item", "sub_path": "/src/main/java/com/hehua/item/test/Test2.java", "file_name": "Test2.java", "file_ext": "java", "file_size_in_byte": 687, "line_count": 33, "la... | /**
*
*/
package com.hehua.item.test;
import java.util.HashSet;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.hehua.item.dao.ItemDAO;
/**
* @author zhihua
*
*/
public class Test2 {
public static void main(String[] args) {
ClassPathXmlApplicationContext app... |
df1b6c9c-8194-409c-a123-e180f5993709 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-02-12 21:30:14", "repo_name": "KostNik/rest-mvc", "sub_path": "/mvc-rest-app/src/main/java/com/edu/restmvc/model/VendorDTO.java", "file_name": "VendorDTO.java", "file_ext": "java", "file_size_in_byte": 687, "line... | package com.edu.restmvc.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* Created by Kostiuk Nikita
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Ven... |
9d238042-8448-4d9c-8da6-75a6d3f74e06 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-08-09 08:33:13", "repo_name": "Java-Publications/javamagazin-013-vaadin-testcontainers", "sub_path": "/src/main/java/org/rapidpm/vaadin/MainView.java", "file_name": "MainView.java", "file_ext": "java", "file_size... | package org.rapidpm.vaadin;
import com.vaadin.flow.component.Composite;
import com.vaadin.flow.component.html.Div;
import com.vaadin.flow.component.html.Span;
import com.vaadin.flow.router.Route;
import org.rapidpm.dependencies.core.logger.HasLogger;
@Route(MainView.MAIN_VIEW)
public class MainView extends Composite<... |
3c4b29f0-28c2-4f56-b4ab-40212d586bc1 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-09-02 23:30:22", "repo_name": "TeamoYOOOO/dailyLeetCode", "sub_path": "/MaximumNumberOfWordsYouCanType.java", "file_name": "MaximumNumberOfWordsYouCanType.java", "file_ext": "java", "file_size_in_byte": 687, "lin... | public class MaximumNumberOfWordsYouCanType {
public int canBeTypedWords(String text, String brokenLetters) {
String[] strs = text.split(" ");
// HashSet<Character> hs = new HashSet<>();
// for(int x = 0; x < brokenLetters.length(); x++){
// hs.add(brokenLetters.charAt(x));
// }
boolean[] ... |
e9f1f5a5-ed5b-4838-a6fa-2619063abb52 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2020-09-11T19:55:15", "repo_name": "PrzemyslawRodzik/ImageSharing", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 688, "line_count": 34, "lang": "en", "doc_type": "text... | # ImageSharing
Website for image sharing between users written in a laravel.

## Installation
First you'll need to create empty database in mysql named "imageshare".
In your project location on the command line, type the following:
```bash
composer instal... |
be42800d-8d49-4f58-8d15-ec33912e04c2 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-11-12 20:51:05", "repo_name": "nokia/osgi-microfeatures", "sub_path": "/com.nokia.as.thirdparty.cljl/src/com/nokia/licensing/interfaces/CredentialAccess.java", "file_name": "CredentialAccess.java", "file_ext": "j... | // Copyright 2000-2021 Nokia
//
// Licensed under the Apache License 2.0
// SPDX-License-Identifier: Apache-2.0
//
package com.nokia.licensing.interfaces;
import java.util.HashMap;
public interface CredentialAccess {
public static final String USERNAME_KEY = "username";
public static final String PASSWORD_... |
a636fad9-f460-4a05-93fa-3150404eb8ba | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-03-19 08:49:31", "repo_name": "Karolyi1995/CLI", "sub_path": "/src/commandlineinterface/CLI.java", "file_name": "CLI.java", "file_ext": "java", "file_size_in_byte": 687, "line_count": 35, "lang": "en", "doc_type"... | /*
* 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 commandlineinterface;
/**
*
* @author Iskola02
*/
public class CLI {
public static int count = 0;
private String ... |
fcab9c92-7911-4e06-9631-61fe154ae116 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2018-03-30T10:54:37", "repo_name": "zilahir/project-init", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 689, "line_count": 21, "lang": "en", "doc_type": "text", "blob_... | ### This is a project for initilizing and creating project with gitrepo, npm, bower, and gulp
# Usage
`sh initproject.sh <projectname>`
Will do the following:
1. creates a folder named `<projectname>`
2. install the npm packages predefined in the `packages.josn.template` file.
3. during execution the script will as... |
75816146-d502-48d3-b3ad-1e0c5035b1c5 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2019-03-12T21:54:17", "repo_name": "jeltethefacer/csv_parser", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 689, "line_count": 22, "lang": "en", "doc_type": "text", "b... | A simple csv parser which you can use in your projects.
To parse a csv file you can use the function
```
int parse_csv_file(char*, csv_parser*);
```
supplied with the file_name and a pointer to a csv parser object.
he reads the csv file into the csv_parser object it automaticly detects the needed file size
it strips... |
c53e5699-5ca4-4adc-a965-2d6ec01fbbb9 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2015-09-25 20:50:54", "repo_name": "abelavusau/hpoc", "sub_path": "/src/main/java/com/abelavusau/restfulapi/configuration/Read.java", "file_name": "Read.java", "file_ext": "java", "file_size_in_byte": 688, "line_count... | package com.abelavusau.restfulapi.configuration;
import java.io.File;
import java.io.IOException;
import java.nio.charset.Charset;
import java.util.StringTokenizer;
import org.apache.commons.io.FileUtils;
import org.apache.commons.lang.StringUtils;
public class Read {
public static void main(String[] arg... |
7777b949-6631-44c5-9768-faee197443cb | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-04-09 04:01:14", "repo_name": "songlili/insurance-1", "sub_path": "/src/main/java/cn/annpeter/insurance/entities/JsonBean/shoopingcart/JsonShoppingCartModify.java", "file_name": "JsonShoppingCartModify.java", "fi... | package cn.annpeter.insurance.entities.JsonBean.shoopingcart;
import org.springframework.stereotype.Component;
/**
* Created by annpeter on 3/20/16.
*/
@Component
public class JsonShoppingCartModify {
Integer id; //产品id
Integer num; //产品当前的数量.
public Integer getId() {
return id;
}
... |
ed5b93de-8df2-413a-899f-90d24c42e6d0 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-04-02 21:49:19", "repo_name": "ASR4/cnb_ecommerce", "sub_path": "/cnb/src/main/java/com/cnb/ecommerce/domain/CNBData.java", "file_name": "CNBData.java", "file_ext": "java", "file_size_in_byte": 687, "line_count":... | package com.cnb.ecommerce.domain;
import java.util.ArrayList;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
@JsonInclude(Include.NON_NULL)
public class CNBData {
private static UserDetails userDetails;
private static List<... |
41ad7e3c-c36b-4fe6-8fa6-bb35ee097053 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2017-06-13T12:21:08", "repo_name": "skvrnami/plisty-scraper", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 687, "line_count": 13, "lang": "en", "doc_type": "text", "bl... | ## Parlamentnilisty.cz scraper
### Description
This scraper creates a .csv file with all articles published on the parlamentnilisty.cz. The scraper works in the following way:
1. The scraper extracts the number of pages in the section of articles by looking at the number of last page (see the picture below).
![scre... |
603a5cad-f51d-46b8-a9da-e3dc5fa52073 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2023-06-17 16:20:50", "repo_name": "VocabHunter/VocabHunter", "sub_path": "/core/src/test/java/io/github/vocabhunter/analysis/settings/DocumentListedFileTest.java", "file_name": "DocumentListedFileTest.java", "file_ex... | /*
* Open Source Software published under the Apache Licence, Version 2.0.
*/
package io.github.vocabhunter.analysis.settings;
import io.github.vocabhunter.test.core.AbstractBeanTest;
import java.nio.file.Path;
import java.nio.file.Paths;
public class DocumentListedFileTest extends AbstractBeanTest<DocumentListed... |
612635b8-69a4-4179-924b-3f4c3be4bc53 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2015-02-12 12:21:27", "repo_name": "marcialvarela/TesCalendarPlugin", "sub_path": "/plugins/src/com/test/plugin/HelloPlugin.java", "file_name": "HelloPlugin.java", "file_ext": "java", "file_size_in_byte": 688, "line_c... | package com.test.plugin;
import org.apache.cordova.CordovaPlugin;
import org.apache.cordova.PluginResult;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
public class HelloPlugin extends CordovaPlugin {
@Override
public boolean execute(String action, CordovaArgs args, Ca... |
8269c223-cdc5-45dc-848d-b021e9112249 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2015-08-31T15:58:00", "repo_name": "cha63506/atom-10", "sub_path": "/.npm/minidump/0.5.0/package/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 687, "line_count": 31, "lang": "en", "d... | # minidump - Process minidump files
## Installing
```sh
npm install minidump
```
## Building
* Clone the repository recursively
* Run `npm install`
## Docs
```javascript
minidump = require('minidump');
```
### minidump.addSymbolPath(path1, ..., pathN)
Add search paths for looking up symbol files.
### minidu... |
f084e9f7-a24d-4489-8976-8a49a26ae00c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-03-09 05:30:57", "repo_name": "nehajana/featuringfood", "sub_path": "/app/src/main/java/shubham/com/featurringfooddelivery/StripePayment/ErrorDialogHandler.java", "file_name": "ErrorDialogHandler.java", "file_ext... | package shubham.com.featurringfooddelivery.StripePayment;
import android.support.v4.app.DialogFragment;
import android.support.v4.app.FragmentManager;
import shubham.com.featurringfooddelivery.R;
/**
* A convenience class to handle displaying error dialogs.
*/
public class ErrorDialogHandler {
FragmentManager ... |
c7e4825f-c08d-4b7e-a78c-1804274087bd | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-04-22 01:54:24", "repo_name": "MartinPSE/Encore_TIL", "sub_path": "/web27_FactoryPattern_Ajax/src/servlet/controller/IdCheckController.java", "file_name": "IdCheckController.java", "file_ext": "java", "file_size_... | package servlet.controller;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import servlet.model.MemberDAOImpl;
public class IdCheckController implements Controller{
@Override
public ModelAndView execute(HttpSer... |
29bcf192-3c7a-499f-988d-bd6fa58ec1af | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-10-21 11:15:33", "repo_name": "ElizabetG/OOP", "sub_path": "/Lab6/src/com/company/Staff.java", "file_name": "Staff.java", "file_ext": "java", "file_size_in_byte": 687, "line_count": 17, "lang": "en", "doc_type": ... | package com.company;
public class Staff extends Person {
Date joined;
String education;
String certification;
String languages;
public Staff(Hospital[] hospital1, String title, String givenName, String middleName, String familyName, FullName personName, Date birthDate, Gender gender, Address homeA... |
9c7c1b37-c0af-4e91-b30e-d27975d7bddf | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2023-08-07 15:25:00", "repo_name": "micronaut-projects/micronaut-guides", "sub_path": "/guides/micronaut-cache/java/src/main/java/example/micronaut/News.java", "file_name": "News.java", "file_ext": "java", "file_size_... | package example.micronaut;
import io.micronaut.serde.annotation.Serdeable;
import java.time.Month;
import java.util.List;
@Serdeable // <1>
public class News {
private Month month;
private List<String> headlines;
public News() {
}
public News(Month month, List<String> headlines) {
thi... |
11c92b73-5ee5-4a56-b78f-6d1fde767bfd | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-12-29 11:34:25", "repo_name": "cbb0520/shopping", "sub_path": "/crmsystem-dao/src/main/java/com/huguigu/vo/Ber.java", "file_name": "Ber.java", "file_ext": "java", "file_size_in_byte": 693, "line_count": 40, "lang... | package com.huguigu.vo;
//饼装图
public class Ber {
private float value;
private String name;
public float getValue() {
return value;
}
public void setValue(float value) {
this.value = value;
}
public String getName() {
return name;
}
public void setName(Stri... |
d3270757-de62-4767-ba5c-8d21d56f3a47 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-05-21 19:44:28", "repo_name": "kiciax98/RadioHits", "sub_path": "/src/main/java/SongApp/service/utils/DocumentUtils.java", "file_name": "DocumentUtils.java", "file_ext": "java", "file_size_in_byte": 687, "line_co... | package SongApp.service.utils;
import org.jsoup.Connection;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.select.Elements;
import org.springframework.stereotype.Component;
@Component
public class DocumentUtils {
private Document document;
private Connection connection;
public ... |
e8c8961f-76eb-4653-92ee-2d1b9c7b3bd2 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-01-10 08:23:21", "repo_name": "gogogoyon/simulator", "sub_path": "/simulator-server/src/test/java/com/samlic/emulator/core/ScriptStateMachineTest.java", "file_name": "ScriptStateMachineTest.java", "file_ext": "ja... | package com.samlic.emulator.core;
import org.junit.Assert;
import org.junit.Test;
public class ScriptStateMachineTest {
@Test
public void Test() {
String input = "fdsafd<script>hello world!</script>few<script>hello yp!</script>";
String output = new ScriptOutputParser(null).parse(input);
System.o... |
1b7f0a73-b1b9-4fa9-bc4a-e811a3200bca | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2015-12-05T21:12:16", "repo_name": "KernelDeimos/fishpool", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 687, "line_count": 41, "lang": "en", "doc_type": "text", "blob... | Things To Do
============
Things to Document
------------------
- Template.php
- Page.php
- ContentPage.php
- DatabaseConnection.php
- Many other things!!
Next Tasks
----------
- Create the Group class
- Create the ProjectsDatabase class
- Create the FilesDatabase class
Order of Importance
-------------------
- [che... |
3c2a85f2-e9f5-452f-9411-2117510253ce | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-04-19 17:45:53", "repo_name": "amitkapps/pocs", "sub_path": "/ApacheCamel/src/test/java/poc/camel/hello/FileCopierWithCamelTest.java", "file_name": "FileCopierWithCamelTest.java", "file_ext": "java", "file_size_i... | package poc.camel.hello;
import org.apache.camel.CamelContext;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.impl.DefaultCamelContext;
import org.junit.Test;
/**
* Unit test for simple App.
*/
public class FileCopierWithCamelTest {
@Test
public void testFileCopierWithCamel() throws... |
a4f3f23c-1ca7-40e0-92af-0e105f12e081 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-12-08 01:56:23", "repo_name": "isapham/CS151-section3-team6", "sub_path": "/src/application/tetris/logic/events/MoveEvent.java", "file_name": "MoveEvent.java", "file_ext": "java", "file_size_in_byte": 687, "line_... | package application.tetris.logic.events;
/**
* This class is for capture the move event
*
*/
public final class MoveEvent {
private final EventType eventType;
private final EventSource eventSource;
public MoveEvent(EventType eventType, EventSource eventSource) {
this.eventType = eventType;
... |
9fca4c4b-eccd-49d9-9bf7-281de3031e68 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-04-15 11:39:46", "repo_name": "Lowkh/MAD_Junit", "sub_path": "/Question1Test.java", "file_name": "Question1Test.java", "file_ext": "java", "file_size_in_byte": 687, "line_count": 31, "lang": "en", "doc_type": "co... | import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
public class Question1Test {
private final ByteArrayOutputStream out = new ByteArrayOutputStream();
private final PrintStream originalOut = System... |
bc731aef-7fcc-4d26-b4c4-28f2e0d4eb2f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-03-26 06:32:26", "repo_name": "Nekak/claro_video_android", "sub_path": "/ClaroVideo/app/src/main/java/com/amco/clarovideo/helpers/model_response/movie_description/RolesResponse.java", "file_name": "RolesResponse.... | package com.amco.clarovideo.helpers.model_response.movie_description;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.util.ArrayList;
/**
* Created by nekak on 24/03/18.
*/
public class RolesResponse {
@SerializedName("role")
@Expose
private Arr... |
b4664ae2-a732-4bcc-ad1e-271480068ed7 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-07-08 14:20:26", "repo_name": "fightingBirdCaiy/Util", "sub_path": "/app/src/main/java/util/learn/caiy/com/view/NoMenuEditActivity.java", "file_name": "NoMenuEditActivity.java", "file_ext": "java", "file_size_in_... | package util.learn.caiy.com.view;
import android.app.Activity;
import android.os.Bundle;
import android.support.annotation.Nullable;
import util.learn.caiy.com.util.R;
/**
* Created by yongc on 2017/12/5.
*/
public class NoMenuEditActivity extends Activity{
private NoMenuEditText mNoMenuEditText;
@Overri... |
1de403ab-2a9e-40b1-aa77-e7d3a9c9bd80 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-07-29 00:41:41", "repo_name": "TuchkovDG/Last_fm", "sub_path": "/app/src/main/java/com/example/last_fm/model/by_artist_and_album/StreamableByArtistAlbum.java", "file_name": "StreamableByArtistAlbum.java", "file_e... | package com.example.last_fm.model.by_artist_and_album;
import com.google.gson.annotations.SerializedName;
class StreamableByArtistAlbum {
@SerializedName("#text")
private String text;
@SerializedName("fulltrack")
private String fulltrack;
public StreamableByArtistAlbum(String text, String fulltr... |
11343c00-21ab-43bf-9a6e-dcdfcf1ce461 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-08-25 13:23:14", "repo_name": "Marecki76/szkolenie_Java", "sub_path": "/szkolenie/src/ex05_Cwicz5_2_Biuropodrozy_cd/Customer.java", "file_name": "Customer.java", "file_ext": "java", "file_size_in_byte": 688, "lin... | package ex05_Cwicz5_2_Biuropodrozy_cd;
public class Customer {
//atrybuty
private String name; //imię, nazwisko
private Address address; //adres
private Trip trip; //wycieczka, na którą jedzie klient
public Customer(String name) {
this.name=name;
}
//metody
public voi... |
c20c28c5-3416-41a6-a193-ab65c1469f67 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-07-28 15:05:06", "repo_name": "zz155666/SpringBoot", "sub_path": "/springapplication/src/main/java/com/imooc/springapplication/SpringApplicationEventBootstrap.java", "file_name": "SpringApplicationEventBootstrap.... | package com.imooc.springapplication;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
/**
* spring应用事件引导类
*/
public class SpringApplicationEventBootstrap {
public static void main(String[] args) {
AnnotationConfigApp... |
86c6ed3a-c3d4-4311-9e60-4ccc1e88787b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-09-26 15:13:16", "repo_name": "alexoro/ZhukovTestImageGroup", "sub_path": "/lib-vk-images-view-group/src/main/java/com/vk/imagesviewgroup/SimpleObjectsPool.java", "file_name": "SimpleObjectsPool.java", "file_ext"... | package com.vk.imagesviewgroup;
import java.util.Stack;
/**
* Not thread safe.
*/
class SimpleObjectsPool<T> {
public interface ObjectFactory<T> {
T newObject();
void reset(T object);
}
private Stack<T> mPool;
private ObjectFactory<T> mFactory;
public SimpleObjectsPool(ObjectF... |
af396f36-e222-4a70-a902-8df4578ae6b5 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-02-20 22:40:29", "repo_name": "mgrunauer/untitled-adventure", "sub_path": "/monsterClass.java", "file_name": "monsterClass.java", "file_ext": "java", "file_size_in_byte": 691, "line_count": 38, "lang": "en", "doc... | public class monsterClass
{
private int mHealth;
private int mLevel;
private int mGold;
public monsterClass(int monsterID, int mLevel)
{
mHealth = (monsterID * 10);
this.mLevel = mLevel;
mGold = 1 + (int)(Math.random()*10);
}
public int getHealth()
{
return mHealth; ... |
85b55ceb-7c0e-4d38-94db-fe1f8502db0d | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-06-27 20:05:47", "repo_name": "klapatnyuk/sberbank", "sub_path": "/sberbank-model/src/main/java/ru/klapatnyuk/sberbank/model/entity/AbstractRemovableEntity.java", "file_name": "AbstractRemovableEntity.java", "fil... | package ru.klapatnyuk.sberbank.model.entity;
import ru.klapatnyuk.sberbank.model.entity.api.RemovableEntity;
/**
* @author klapatnyuk
*/
public abstract class AbstractRemovableEntity extends AbstractEntity implements RemovableEntity {
private boolean active = true;
@Override
public boolean isActive() ... |
004e12bc-260d-4485-93cd-a06f276a9822 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-10-15 04:14:39", "repo_name": "zwj5582/120ManageHUZHOU", "sub_path": "/src/main/java/com/meliora/common/PagedList.java", "file_name": "PagedList.java", "file_ext": "java", "file_size_in_byte": 687, "line_count": ... | package com.meliora.common;
import lombok.Data;
import org.displaytag.pagination.PaginatedList;
import org.displaytag.properties.SortOrderEnum;
import java.util.ArrayList;
import java.util.List;
@Data
public class PagedList<E> implements PaginatedList {
private int fullListSize;
private List<E> list = new ArrayLi... |
a767dd8c-fc39-4e1b-b086-bb00d654bca2 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-08-09 17:42:41", "repo_name": "timuruktus/TrelicoDelivery", "sub_path": "/app/src/main/java/ru/timuruktus/trelico/REST/BackendlessAPI.java", "file_name": "BackendlessAPI.java", "file_ext": "java", "file_size_in_b... | package ru.timuruktus.trelico.REST;
import java.util.List;
import retrofit2.http.GET;
import retrofit2.http.Path;
import ru.timuruktus.trelico.POJO.Shop;
import rx.Observable;
public interface BackendlessAPI {
// https://api.backendless.com/<application-id>/<api-key>/<operation-specific-path>
String APP_... |
bde512ae-3641-4137-bdd0-fc48bc85131d | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-08-30T19:47:30", "repo_name": "Andrelo9/java-bootcamp-2016", "sub_path": "/Topics/Implementations/src/main/java/com/globant/topiczero/one/ConnectionData.java", "file_name": "ConnectionData.java", "file_ext": "jav... | package com.globant.topiczero.one;
import java.sql.DriverManager;
import java.sql.SQLException;
public class ConnectionData {
private String username;
private String password;
private String host;
public ConnectionData(String user, String password, String host) {
this.username = user;
this.password = passwo... |
314d22ae-20a3-4447-9e3d-224b514f5eae | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-11-11 17:18:41", "repo_name": "fededevi/Continuous", "sub_path": "/src/Continuous/Window.java", "file_name": "Window.java", "file_ext": "java", "file_size_in_byte": 687, "line_count": 34, "lang": "en", "doc_type"... | package Continuous;
import java.awt.BorderLayout;
import java.awt.Dimension;
import javax.swing.JFrame;
public class Window extends JFrame {
int WIDTH = 1024;
int HEIGHT = 1024;
public Window(String string) {
super(string);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//FixedSizeCanvas panel = ne... |
33413f4d-47a1-4407-9484-9cb35460ba6c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2014-11-05 08:28:01", "repo_name": "sdgdsffdsfff/hehua-item", "sub_path": "/src/main/stub/com/hehua/item/domain/ItemSku.java", "file_name": "ItemSku.java", "file_ext": "java", "file_size_in_byte": 701, "line_count": 3... | /*
* 由系统于2014-08-18 23:58:24生成。
*/
package com.hehua.item.domain;
import com.google.common.base.Function;
import java.util.List;
public class ItemSku extends ItemSkuI {
private List<PropertyValue> propertyValueList;
public static Function<ItemSku, Integer> itemIdExtractor = new Function<ItemSku, Integer>... |
3a2968bf-4277-4653-803b-650ac2d454d8 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2021-12-07T14:41:42", "repo_name": "plantain-00/blogs", "sub_path": "/contents/nodejs-introduction.md", "file_name": "nodejs-introduction.md", "file_ext": "md", "file_size_in_byte": 987, "line_count": 37, "lang": ... | # nodejs 概要介绍分享记录
### nodejs: 服务端 js 运行环境
### Js + nodejs 运行环境 + Npm 包管理器
+ Js:ECMAScript 的实现
+ Nodejs 中的 global 对象 / 浏览器中的 window 对象
+ Nodejs 标准库:fs/http/net/dgram/os/process…
+ Npm:类似于 maven
### 问题和方案
+ Js 的缺陷:严格模式、代码检查、 ES 新特性
+ CPU 核心:负载均衡
+ 服务守护:pm2
+ 包依赖和管理:语义化版本 / npm-check
+ Callback:Promise/Generator/asyn... |
a82e2900-18ef-4439-b3a8-b984549086c4 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2021-10-23T20:54:18", "repo_name": "Flumanuck/note-taker", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 687, "line_count": 17, "lang": "en", "doc_type": "text", "blob_... | # Note Taker
## Description
This application allows the user to write, save, and delete notes using Express.
## Usage
- Go to the deployed page and click "Get Started".
- Type in a title by clicking "Note Title" and any accomponying text by clicking "Note Text".
- When you are finished, click the disk icon to save ... |
3c40e779-3383-4546-86fe-fcc89a631bcb | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-05-17 14:10:23", "repo_name": "kbarreto001/Mayo2015", "sub_path": "/RMI Server/src/RMIServer.java", "file_name": "RMIServer.java", "file_ext": "java", "file_size_in_byte": 688, "line_count": 24, "lang": "en", "do... |
import java.net.MalformedURLException;
import java.rmi.Naming;
import java.rmi.Remote;
import java.rmi.RemoteException;
import java.rmi.registry.LocateRegistry;
public class RMIServer {
public static void main(String[] args) throws RemoteException, MalformedURLException {
try {
Remote createR... |
4c7631cc-6f8d-4f86-a2b1-c3e7c1020cd1 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-11-26 18:29:44", "repo_name": "DetaElectPro/Medical-Admin-App", "sub_path": "/app/src/main/java/com/hostpital/hospitaladmin/Models/Category.java", "file_name": "Category.java", "file_ext": "java", "file_size_in_b... | package com.hostpital.hospitaladmin.Models;
import java.util.List;
/**
* Created by Arbab on 8/3/2019.
*/
public class Category {
private String categoty;
private int id;
private List<String> Subcategoty;
public Category() {
}
public Category(String categoty, List<String> Subcategoty, int... |
1fb0a840-021e-4978-afd1-874b7086f844 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2023-02-20 09:58:11", "repo_name": "dsly-android/RxHttp", "sub_path": "/app/src/main/java/com/android/dsly/rxhttp/test/BaseViewModel.java", "file_name": "BaseViewModel.java", "file_ext": "java", "file_size_in_byte": 6... | package com.android.dsly.rxhttp.test;
import android.app.Application;
import androidx.annotation.NonNull;
import androidx.lifecycle.AndroidViewModel;
import androidx.lifecycle.MutableLiveData;
/**
* @author 陈志鹏
* @date 2019-12-27
*/
public class BaseViewModel extends AndroidViewModel {
private MutableLiveDat... |
49a792b6-ca83-4c77-a0ba-dc80dc3ccc1f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2022-11-12 07:40:42", "repo_name": "farzinpashaee/Lasform", "sub_path": "/core/src/main/java/com/lasform/core/model/dto/Response.java", "file_name": "Response.java", "file_ext": "java", "file_size_in_byte": 687, "line... | package com.lasform.core.model.dto;
public class Response {
private boolean state;
private Object payload;
public Response() {
}
public Response(boolean state, Object payload) {
this.state = state;
this.payload = payload;
}
public boolean isState() {
return state... |
b788392b-558d-4932-a7fc-9fdf6d0136de | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-06-04 18:05:57", "repo_name": "Osc4ar/AppNetwork-Communications", "sub_path": "/Shopping Cart/Server/Catalog Products/src/Catalog/Main.java", "file_name": "Main.java", "file_ext": "java", "file_size_in_byte": 687... | package Catalog;
import java.util.Scanner;
public class Main {
private static Scanner sc;
public static void main ( String [ ] args ) {
String answer;
sc = new Scanner ( System.in );
System.out.print ( "\n\tTo add a new product enter <yes>. \n\tOr <no> to read and send the catalog: "... |
a12a5d2d-9247-4f17-bd9f-7823a54fabf9 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-09-02 08:49:52", "repo_name": "robbertvdzon/tntassessment", "sub_path": "/src/main/java/com/vdzon/tntassessment/settings/SettingsLoader.java", "file_name": "SettingsLoader.java", "file_ext": "java", "file_size_in... | package com.vdzon.tntassessment.settings;
import com.typesafe.config.Config;
import com.typesafe.config.ConfigException;
import com.typesafe.config.ConfigFactory;
public class SettingsLoader {
public static Settings loadSettings(){
Config config = ConfigFactory.systemEnvironment();
return Setting... |
f8e75902-0cf9-48f9-9c24-413ac4d2b086 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-06-26 08:34:52", "repo_name": "Bronzza/SpringJDBC", "sub_path": "/src/main/java/application/dao/ProgrammerMapper.java", "file_name": "ProgrammerMapper.java", "file_ext": "java", "file_size_in_byte": 686, "line_co... | package application.dao;
import application.entities.Programmer;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import org.springframework.jdbc.core.RowMapper;
import java.sql.ResultSet;
import java.sql.SQLException;
@RequiredArgsConstructor
@Getter
@Setter
public class Programmer... |
0bfdf6f7-2afa-4a4a-b5b0-08ba9c78c0a4 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-04-11 12:32:06", "repo_name": "mxxk802/light-dream", "sub_path": "/src/main/java/com/mxxk/lightdream/controller/HelloController.java", "file_name": "HelloController.java", "file_ext": "java", "file_size_in_byte":... | package com.mxxk.lightdream.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import java.util.LinkedHashMap;
import java.util.Map;
@Controller
@RequestMapping(value="hello")
public... |
0de69e70-ce3a-4b04-a611-1d890fc0cc69 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-03-04 07:38:30", "repo_name": "swapnanildutta/OOPS-PCC-CS593", "sub_path": "/Day-28-(27.01.2021)/File2.java", "file_name": "File2.java", "file_ext": "java", "file_size_in_byte": 685, "line_count": 20, "lang": "en... | import java.io.File;
public class File2 {
public static void main(String[] args) {
try {
String strDirectoy = "sample";
String strManyDirectories = "dir1/dir2/dir3";
boolean success = (new File(strDirectoy)).mkdir();
if (success) {
System.out.... |
28fcec3a-7368-4160-8981-81507d1678cd | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2014-12-21 11:06:56", "repo_name": "alnero/HF_Design_Patterns", "sub_path": "/src/TemplateMethod/FrameHook/MyFrame.java", "file_name": "MyFrame.java", "file_ext": "java", "file_size_in_byte": 686, "line_count": 30, "l... | package TemplateMethod.FrameHook;
import javax.swing.*;
import java.awt.*;
/**
* Using JFrame to get into its update() method with hook method paint()
*/
public class MyFrame extends JFrame{
public MyFrame(String title) {
super(title);
this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE)... |
22426fdf-1405-42c0-8437-3457d442d6de | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-06-17 07:25:12", "repo_name": "levonchen/javatcp", "sub_path": "/faceApp/app/src/main/java/com/face/mode/cluster/UdpReturnHandler.java", "file_name": "UdpReturnHandler.java", "file_ext": "java", "file_size_in_byt... | package com.face.mode.cluster;
import android.os.Handler;
import android.os.Message;
import com.face.faceobject.FaceInfo;
public class UdpReturnHandler extends Handler {
public static final int Rtn_Query_Result = 1;
//准备接受回调的Activity,比如MainActivity,需要继承自接口IQueryReturnHandler
private IQueryReturnHandler... |
7dfa7ba7-1589-4021-ad3e-be48d049f430 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2021-09-05T05:13:49", "repo_name": "guzishiwo/TFT-Tools-APP", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 1410, "line_count": 25, "lang": "zh", "doc_type": "text", "b... | # [云顶工具箱](https://apps.apple.com/cn/app/%E4%BA%91%E9%A1%B6%E5%B7%A5%E5%85%B7%E7%AE%B1/id1550972092)
熬夜爆肝三天三夜作者把功能界面来了个大换血,为庆祝云顶手游金铲铲之战国服上线,限时**3**元(活动时间随缘),作者也非常讨厌广告,承诺永久无广告!
### 为什么做这款云顶工具箱
先说市面上有的种类:
1. 官方的、以及其他的APP。每进一个页面都需要加载,还时不时跳出广告,我也是醉了;
2. 小程序嵌套在微信里、就体验来说,想在聊天的时候来回切换真的是难上加难,更何况有广告、进页面加载;
-------------------... |
12713794-c824-48ce-82b1-fa7f6c61825a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-10-08 22:06:23", "repo_name": "sebersole/gradle-polymorphic-containers", "sub_path": "/buildSrc/src/main/java/com/github/sebersole/playground/gradle/polymorphic/StandardExtensionSpec.java", "file_name": "Standard... | package com.github.sebersole.playground.gradle.polymorphic;
import javax.inject.Inject;
import org.gradle.api.model.ObjectFactory;
import org.gradle.api.provider.Property;
public abstract class StandardExtensionSpec implements ExtensionSpec {
private final String name;
private final Property<String> runtimeA... |
6c8cc4c5-1413-4ff4-8d07-8011f28ecda7 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-04-05 20:24:30", "repo_name": "czrafal/targetx", "sub_path": "/targetx-ejb/src/main/java/beans/NettyEJB.java", "file_name": "NettyEJB.java", "file_ext": "java", "file_size_in_byte": 687, "line_count": 32, "lang":... | package beans;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import javax.ejb.Singleton;
import javax.ejb.Startup;
import org.traccar.ServerManager;
@Singleton(name = "NettyEJB")
@Startup
public class NettyEJB {
// private NettyServer nettyServer;
private ServerManage... |
af8af436-1d8b-4cc4-a646-134e489fb2fc | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-03-08 13:18:43", "repo_name": "MDWASIMHAIDER/SpringMvc", "sub_path": "/Ntsp711/MVCProj11-AbstractWizardFormController/src/main/java/com/nt/dao/RegistrationDAOImpl.java", "file_name": "RegistrationDAOImpl.java", "... | package com.nt.dao;
import org.springframework.jdbc.core.JdbcTemplate;
import com.nt.bo.RegistrationBO;
public class RegistrationDAOImpl implements RegistrationDAO {
private static final String REGISTER_CUSTOMER="INSERT INTO SHADI_REGISTRATION VALUES(shadi_seq.nextval,?,?,?,?,?,?,?,?,?,?)";
private JdbcTemplate jt... |
ce405102-832f-4807-8410-37c4fc785882 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2023-07-10 07:54:37", "repo_name": "tigerguixh/DailyDemo", "sub_path": "/app/src/main/java/tiger/com/lp/dailydemo/demos/ParseIp.java", "file_name": "ParseIp.java", "file_ext": "java", "file_size_in_byte": 686, "line_c... | package tiger.com.lp.dailydemo.demos;
import android.net.Uri;
import java.net.InetAddress;
import java.util.HashMap;
import java.util.Map;
/**
* @author : Xunhu.gui
* @Email : xunhu.gui@tadu.com
* @date : 2018/8/24
* @Description :
*/
public class ParseIp {
public static void main(String[] args) {
t... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.