id stringlengths 36 36 | meta stringlengths 429 697 | code_content large_stringlengths 612 1.26k |
|---|---|---|
1cbae1a6-eb58-4036-8c8f-7918037ac7ed | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-08-28 12:23:17", "repo_name": "muziyao/CarFlatForm", "sub_path": "/CarFlatForm/src/main/java/com/common/cfg/FileConfig.java", "file_name": "FileConfig.java", "file_ext": "java", "file_size_in_byte": 999, "line_co... | package com.common.cfg;
import java.io.File;
import org.springframework.context.ApplicationListener;
import org.springframework.context.event.ContextRefreshedEvent;
import org.springframework.stereotype.Component;
import com.common.utils.FileUtils;
import com.smokeroom.entity.GlobalParam;
@Component
public class Fi... |
72723024-3e55-4472-87d8-fc3953dd6b2a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2023-03-31T22:01:02", "repo_name": "Bayard75/Projet-7---GrandPy", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 880, "line_count": 20, "lang": "en", "doc_type": "text",... | ## This application is developped for the 7th project in the developper path for Openclassrooms.
The app will be using the following stack :
- Python
- Flask
- HTML/CSS
- Javascript
- Bootstrap
This application goal is to take in a user input as a question for example : "Hi GrandPy can you give me the adress of the L... |
ddfd376d-b706-40c7-acc4-02f90137eb8e | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-01-22 10:47:15", "repo_name": "Vignesh224/Projects", "sub_path": "/Project1/src/fb_login/fb_login.java", "file_name": "fb_login.java", "file_ext": "java", "file_size_in_byte": 880, "line_count": 28, "lang": "en",... | package fb_login;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class fb_login {
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver", "D:\\Workspace\\eclipse-wor... |
4e8baee9-a8c3-4faa-942c-3e14536a77c9 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-11-28 18:00:54", "repo_name": "Blinky0815/Java-Media-Framework-Extension-Layer", "sub_path": "/JMFEL/src/adracer/painter/ChannelNumberPainter.java", "file_name": "ChannelNumberPainter.java", "file_ext": "java", "... | /*
* ChannelNumberPainter.java
*
* Created on 23. August 2007, 14:50
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package adracer.painter;
import panel.eeg.ChannelNumberPanel;
import utilities.graphics.AbstractPainter;
/**
*
* @author A... |
9e7aa40f-5dc1-4ced-a5b9-b658aab6cb52 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-09-23 21:20:05", "repo_name": "VSEdwardCarter/Spaceship", "sub_path": "/src/main/java/com/Federation/Controller/PersonnelController.java", "file_name": "PersonnelController.java", "file_ext": "java", "file_size_i... | package com.Federation.Controller;
import com.Federation.Model.Personnel.CrewMember;
import com.Federation.Repository.PersonnelRepository;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
... |
9f3f8073-e919-4b42-b628-5fe30628e877 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2017-10-03T03:35:26", "repo_name": "Shensd/wine-or-cheese", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 880, "line_count": 17, "lang": "en", "doc_type": "text", "blob... | # wine-or-cheese
A very early version of a game engine written with [allegro](http://liballeg.org/)
## What is it?
This is an example game written in C++ with [allegro](http://liballeg.org/) in an expandable game engine style. Right now it only consists on a menu screen, but it will be expanded upon in the future.
... |
762b34b7-fdab-459e-a47c-15ac2d56b9d4 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-09-20 14:18:45", "repo_name": "java24july-ank-meh/batch-src", "sub_path": "/LemurDemo/Lemur.java", "file_name": "Lemur.java", "file_ext": "java", "file_size_in_byte": 879, "line_count": 49, "lang": "en", "doc_typ... | class Primate {
private String name = "OliverLouisJulien";
public Primate() {
}
public Primate(String name) {
this.name = name;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public void screech... |
ac5ea55a-1760-4297-bd70-61cbc8f85c17 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-11-16 15:41:28", "repo_name": "styleboycn/alexhuang-test", "sub_path": "/src/test/java/com/alexhuang/java8/FilesUtilsTest.java", "file_name": "FilesUtilsTest.java", "file_ext": "java", "file_size_in_byte": 880, "... | package com.alexhuang.java8;
import java.nio.file.Files;
import java.nio.file.Paths;
import com.alexhuang.utils.dto.PvsProductConfig;
//origin file : TestProductConfigConvert.java
public class FilesUtilsTest {
private static PvsProductConfig pvsconfig;
static {
try {
pvsconfig = new PvsProductConfig(new Stri... |
b0630557-39a4-4ba0-a73e-20c28e3a77ae | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2015-12-24T23:41:25", "repo_name": "sean3z/simple-express-lesson", "sub_path": "/INSTRUCTIONS.md", "file_name": "INSTRUCTIONS.md", "file_ext": "md", "file_size_in_byte": 879, "line_count": 15, "lang": "en", "doc_t... | #### Homework
* Create a REST API that stores, displays and manages information about various Avengers
* `npm install` and `require()` needed modules `express` and `body-parser`
* Initalize an object to store Avengers data
* Initalize express `app` and `listen` to port `8080`
* Expose a `PUT` endpoint that inje... |
88eceea9-7fe9-4df6-b48a-758c4079833d | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-01-04 14:00:09", "repo_name": "wyrlemon/JavaData", "sub_path": "/src/main/java/com/wyr/controller/UserController.java", "file_name": "UserController.java", "file_ext": "java", "file_size_in_byte": 982, "line_coun... | /**
* FileName: UserController
* Author: wyr
* Date: 2019/1/4 11:19
* Description: 模拟接口
*/
package com.wyr.controller;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import org.springframework.web.bind.annotation.GetMapping;
import org... |
dc039ef2-aafd-47c5-9a67-16273e453e89 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-06-06 12:23:41", "repo_name": "omkolte17/diploma_projects", "sub_path": "/tic-tac-toe/app/src/main/java/com/osk/tictactoe/HomeActivity.java", "file_name": "HomeActivity.java", "file_ext": "java", "file_size_in_by... | package com.osk.tictactoe;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class HomeActivity extends AppCompatActivity {
Button play_btn;
@Override
protected void onCreate(Bundle sa... |
f00c675b-699b-4989-871f-ab7b2c6e7cf8 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-11-25 17:53:43", "repo_name": "maxamillion32/blink", "sub_path": "/app/src/main/java/com/example/voldemarius/hereandnow/tools/ViewPagerAdapter.java", "file_name": "ViewPagerAdapter.java", "file_ext": "java", "fil... | package com.example.voldemarius.hereandnow.tools;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import com.example.voldemarius.hereandnow.fragments.FriendsFragment;
import com.example.voldemarius.hereandnow.fragments.TrendsFr... |
cc28c6ee-462b-44ad-ae55-f73579e5b11d | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-04-04 17:43:28", "repo_name": "WippingPost/grupparbete_tdd_spel", "sub_path": "/src/Test/InputTest.java", "file_name": "InputTest.java", "file_ext": "java", "file_size_in_byte": 882, "line_count": 49, "lang": "en... | package Test;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import java.awt.Component;
import java.awt.Point;
import java.awt.event.KeyEvent;
import org.junit.Before;
import org.junit.Test;
import game.Direction;
import game.InputManager;
import game.Player;
public class I... |
de53d429-3de1-4b1c-9938-7171ab3d3529 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-01-23 11:24:45", "repo_name": "ajitkanse/infosysDemo", "sub_path": "/app/src/androidTest/java/com/storiyoh/demoproj/UnitTestUtils.java", "file_name": "UnitTestUtils.java", "file_ext": "java", "file_size_in_byte":... | package com.storiyoh.demoproj;
import androidx.arch.core.executor.ArchTaskExecutor;
import androidx.lifecycle.LiveData;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.FutureTask;
public class UnitTestUtils {
static <T> FutureTask observeForever(final LiveData<T> liveData, TestLifec... |
89126590-498f-4ea1-b9de-721a03bf2779 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-07-25 20:13:08", "repo_name": "klauskie/jkHazard-mobile", "sub_path": "/app/src/main/java/com/klaus/jkhazard/activity/HomeActivity.java", "file_name": "HomeActivity.java", "file_ext": "java", "file_size_in_byte":... | package com.klaus.jkhazard.activity;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import com.klaus.jkhazard.R;
import com.klaus.jkhazard.model.ApiMock;
public class HomeActivity extends AppCompatActi... |
0aa1b179-e92d-42ea-bbc2-8140b2d9b7d7 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2022-08-14 18:33:46", "repo_name": "MrGraversen/request-bin", "sub_path": "/archive/src/main/java/io/graversen/requestbin/models/service/HttpRequest.java", "file_name": "HttpRequest.java", "file_ext": "java", "file_si... | package io.graversen.requestbin.models.service;
import java.time.LocalDateTime;
import java.util.Map;
public class HttpRequest
{
private String requestBody;
private Map<String, String> queryParameters;
private Map<String, String> httpHeaders;
private String ipAddress;
private String httpVerb;
... |
40b8c84d-0e84-446c-8bc1-ac503c0e94c0 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-10-27 15:25:58", "repo_name": "Ilya56/MultiClient", "sub_path": "/app/src/main/java/com/dia/multiclient/activities/MainActivity.java", "file_name": "MainActivity.java", "file_ext": "java", "file_size_in_byte": 87... | package com.dia.multiclient.activities;
import android.os.Bundle;
import com.dia.multiclient.R;
import com.dia.multiclient.cores.CoreActivity;
import com.dia.multiclient.G;
import com.dia.multiclient.fragments.MainFragment;
public class MainActivity extends CoreActivity {
private static MainFragment mainFragment... |
ed326759-eff8-4f2e-beab-758e192d6d1f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-07-23 00:12:33", "repo_name": "lenik/stack", "sub_path": "/sem/base/sem-frame/src/test/java/com/bee32/sem/frame/web/SEMVersionBeanTest.java", "file_name": "SEMVersionBeanTest.java", "file_ext": "java", "file_size... | package com.bee32.sem.frame.web;
import java.util.Arrays;
import org.junit.Assert;
import org.junit.Test;
public class SEMVersionBeanTest
extends Assert {
@Test
public void testTwo() {
SEMVersionBean version = new SEMVersionBean("1.1 234");
assertEquals("dev", version.getTag());
... |
4d24a531-e229-4334-ae77-82ace995d30c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-10-04 08:34:54", "repo_name": "zourzouvillys/hairt", "sub_path": "/src/main/java/io/zrz/hai/runtime/compile/parse/impl/TypeExtractor.java", "file_name": "TypeExtractor.java", "file_ext": "java", "file_size_in_byt... | package io.zrz.hai.runtime.compile.parse.impl;
import io.zrz.graphql.core.lang.GQLTypeVisitor;
import io.zrz.graphql.core.types.GQLDeclarationRef;
import io.zrz.graphql.core.types.GQLListType;
import io.zrz.graphql.core.types.GQLNonNullType;
import io.zrz.hai.runtime.compile.facade.MInputType;
import io.zrz.hai.runtim... |
7c9892a1-009c-4a5e-ae7e-ecc18017d2c7 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-03-25 02:36:51", "repo_name": "dingpeng1993/lottery", "sub_path": "/lottery-api/src/main/java/com/dingpeng/java/exercise/lottery/api/web/config/AsyncConfig.java", "file_name": "AsyncConfig.java", "file_ext": "jav... | package com.dingpeng.java.exercise.lottery.api.web.config;
import org.springframework.context.annotation.Bean;
import java.util.concurrent.Executor;
import java.util.concurrent.LinkedBlockingDeque;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
/**
* @author dp
* Date: 2019/3... |
8a718ea1-da82-454f-be18-9679f033483f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-07-12 02:54:37", "repo_name": "duantonghai1984/Research", "sub_path": "/src/main/java/com/hp/hpl/spring/test/UserPostProcessor.java", "file_name": "UserPostProcessor.java", "file_ext": "java", "file_size_in_byte"... | package com.hp.hpl.spring.test;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.config.BeanPostProcessor;
import org.springframework.core.Ordered;
import com.hp.hpl.spring.beans.User;
public class UserPostProcessor implements BeanPostProcessor,Ordered {
@Override
... |
f44cb225-7bff-4ba1-bbc0-4b6a19e0feb5 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-05-26 15:56:01", "repo_name": "ZMarouani/JavaServer", "sub_path": "/src/test/java/com/File/cs/ClientServerConnectionTest.java", "file_name": "ClientServerConnectionTest.java", "file_ext": "java", "file_size_in_by... | package com.File.cs;
import org.junit.jupiter.api.Test;
import java.io.File;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
import static org.junit.jupiter.api.Assertions.assertEquals;
class ClientServerConnectionTest {
@Test
void clientServerTest() throws IOException {
... |
1a3ea879-b9e8-4c5d-b405-ac089b92f120 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2021-04-29T11:02:24", "repo_name": "GSG-G9/ow-todo-app-sondos", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 879, "line_count": 32, "lang": "en", "doc_type": "text", "... | # Todo App
A simple todo app that allows users to add, sort, and delete their todos, and move between dark or light mode.
## Technologies
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app), using the [Redux](https://redux.js.org/) and [Redux Toolkit](https://redux-toolki... |
40313429-9352-4993-a7fd-1726c70a328f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-06-21 10:20:27", "repo_name": "copley/KPSmart-System", "sub_path": "/view/LogOutPanel.java", "file_name": "LogOutPanel.java", "file_ext": "java", "file_size_in_byte": 879, "line_count": 43, "lang": "en", "doc_typ... | package view;
import java.awt.Color;
import javax.swing.JButton;
import controller.KPSmartController.KeyAction;
import controller.KPSmartController.MouseAction;
import controller.KPSmartController.ViewActionListener;
/**
* A panel that contains the logout button.
*
* @author Shenbo Xuan
*
*/
@SuppressWarnings... |
a93a9022-503d-406d-8dac-edb2cd99b177 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-09-23 20:12:53", "repo_name": "ldcorentin/Shell-simulation", "sub_path": "/Key.java", "file_name": "Key.java", "file_ext": "java", "file_size_in_byte": 879, "line_count": 48, "lang": "en", "doc_type": "code", "bl... | import java.util.*;
public class Key {
protected char[] value;
protected int id;
protected boolean bool=true;
public Key(int size, int id) {
value = new char[size];
this.id=id;
randomKey();
}
public Key(int size, int id, boolean bool) {
value = new char[size];
this.id=id;
this.b... |
f32c6e5c-d4e9-46ef-99b6-9b56abaf5b56 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-07-27 14:18:13", "repo_name": "shevchenkovlad7/SpringMvcProject", "sub_path": "/src/main/java/com/Shevchenko/interceptors/CheckUserInterceptor.java", "file_name": "CheckUserInterceptor.java", "file_ext": "java", ... | package com.Shevchenko.interceptors;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import com.Shevchenko.model.User;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;
import java.io.IOException... |
ab253b19-dbb4-44aa-b022-d7281a955132 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-01-14 03:56:19", "repo_name": "lynings/tdd-rtw", "sub_path": "/ioc/src/main/java/pers/lyning/tddrtw/ioc/Instances.java", "file_name": "Instances.java", "file_ext": "java", "file_size_in_byte": 879, "line_count": ... | package pers.lyning.tddrtw.ioc;
import pers.lyning.tddrtw.ioc.exception.InstanceNotFountException;
import java.util.List;
import java.util.Vector;
/**
* @author lyning
*/
public class Instances {
private static final List<Instance> INSTANCES = new Vector<>();
public static void clear() {
INSTANCE... |
1bdad1d9-3ec5-4155-85d6-36663fc2e607 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-05-26 00:57:14", "repo_name": "zhanght86/plm-hmcf", "sub_path": "/trunk/src/plm-hmcf/src/main/java/com/sinitek/sirm/web/plm/wf/ProductAgreeAction.java", "file_name": "ProductAgreeAction.java", "file_ext": "java",... | package com.sinitek.sirm.web.plm.wf;
import com.sinitek.sirm.busin.workflow.support.IWorkflowConditionAndResult;
import java.util.Map;
/**
* Created by Administrator on 2015/6/11.
*/
public class ProductAgreeAction implements IWorkflowConditionAndResult {
@Override
public boolean condition(Map map, Map ret... |
b4e190c4-7126-472f-bfea-99de685f6c6a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-04-10 09:11:08", "repo_name": "filimonraluca/Laborator8", "sub_path": "/src/main/java/dataInOopFormat/Chart.java", "file_name": "Chart.java", "file_ext": "java", "file_size_in_byte": 879, "line_count": 37, "lang"... | package dataInOopFormat;
import java.util.ArrayList;
import java.util.List;
/**
* Clasa chart contine o lista de albume intr-o anumita ordine.
*/
public class Chart {
List<Album> albums = new ArrayList<>();
public void addToChart(Album album) {
albums.add(album);
}
public List<Album> getAl... |
e8f5fc64-8a29-445a-9a82-946dd3771845 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-05-05 10:53:34", "repo_name": "acadet/lyft-city-guide", "sub_path": "/bll/src/main/java/com/lyft/cityguide/bll/UpdateSearchRangeSettingJob.java", "file_name": "UpdateSearchRangeSettingJob.java", "file_ext": "java... | package com.lyft.cityguide.bll;
import com.lyft.cityguide.dao.ISettingsDAO;
import com.lyft.cityguide.domain.SearchRangeSetting;
import rx.Observable;
import rx.Subscriber;
import rx.schedulers.Schedulers;
/**
* UpdateSearchRangeSettingJob
* <p>
*/
class UpdateSearchRangeSettingJob {
private final ISettingsDA... |
5724b1e7-8ddb-474c-8494-d7683bb5ae5f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2015-08-31 19:33:48", "repo_name": "chris78rey/he1_sgh", "sub_path": "/HE1-ServicioGeneral/src/main/java/ec/mil/he1/he1/serviciogeneral/CggDatoContactoFacade.java", "file_name": "CggDatoContactoFacade.java", "file_ext... | /*
* 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 ec.mil.he1.he1.serviciogeneral;
import ec.mil.he1.he1.modelo.general.CggDatoContacto;
import javax.ejb.Stateless;
imp... |
ca9b0b2a-18d8-434b-8ccf-4c2af98ab132 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2019-08-19T12:45:24", "repo_name": "charleswilmot/toy_environment", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 879, "line_count": 31, "lang": "en", "doc_type": "text... | # toy_environment
Toy 2D environment for Julius
# Quick start:
```
cd ./src
mkdir ../environments
python3 env_conf_maker.py
python3 test_env.py
```
# Explanations:
`src` contains the source code
`models` contains json files describing the robots
`environments` contains pickle files, associating json files with env... |
3ca3b819-9d4b-4931-bfbd-8f3fde4f4958 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-03-26 06:38:23", "repo_name": "zhangmy6666/test", "sub_path": "/ProSystem/src/main/java/cn/zmy/nio/util/MessageBodyDecoder.java", "file_name": "MessageBodyDecoder.java", "file_ext": "java", "file_size_in_byte": 8... | package cn.zmy.nio.util;
import java.util.List;
import cn.zmy.nio.util.ByteHelp;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelHandlerContext;
import io.netty.handler.codec.ByteToMessageDecoder;
public class MessageBodyDecoder extends ByteToMessageDecoder {
@Override
public void decod... |
a3b6252b-770d-4ee6-9ea7-f359bea0cfa5 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-10-23 14:08:44", "repo_name": "whadmin/spring4.0", "sub_path": "/src/main/java/com/j2se/reflect/model/Person.java", "file_name": "Person.java", "file_ext": "java", "file_size_in_byte": 888, "line_count": 53, "lan... | package com.j2se.reflect.model;
import java.util.Date;
import java.util.List;
import java.util.Map;
@MyClass
public class Person extends Father implements InterFace{
private String name;
private int age;
private String msg = "hello wrold";
public String getName() {
return name;
}
public void setName(Strin... |
ee338a83-5ff6-40f2-8a22-8ba127f41200 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-12-05 09:48:25", "repo_name": "Shamsunnaharafifa/Notify-Task-List", "sub_path": "/NotifyTaskList/app/src/main/java/com/example/user/notifytasklist/App.java", "file_name": "App.java", "file_ext": "java", "file_siz... | package com.example.user.notifytasklist;
import android.app.Application;
import android.app.NotificationChannel;
import android.app.NotificationManager;
import android.os.Build;
public class App extends Application {
public static final String ADD_ID = "Add";
@Override
public void onCreate() {
s... |
cec77688-8720-46db-8101-5aef2abe1124 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-11-05 19:27:58", "repo_name": "jojjesv/fuzz-android", "sub_path": "/app/src/main/java/com/fuzz/android/util/StringUtils.java", "file_name": "StringUtils.java", "file_ext": "java", "file_size_in_byte": 879, "line_... | package com.fuzz.android.util;
import android.content.Context;
import com.fuzz.android.R;
/**
* String utilities.
*/
public abstract class StringUtils {
private StringUtils() {
}
/**
* Glues items to a comma-delimited list.
*
* @param items
* @return
*/
public static Stri... |
e71b305d-2d2c-4ad4-9749-cdc6cc4b83a4 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-10-18 11:58:40", "repo_name": "juliocesarsantos1020/example-joinfaces", "sub_path": "/src/main/java/com/joinfaces/project/example/service/StateService.java", "file_name": "StateService.java", "file_ext": "java", ... | package com.joinfaces.project.example.service;
import com.joinfaces.project.example.model.State;
import com.joinfaces.project.example.repository.StateRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
import java.util.Option... |
54bbb785-d340-4347-a9c3-ef8238f7650c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2015-08-18 05:54:11", "repo_name": "sdgdsffdsfff/mango", "sub_path": "/src/main/java/com/kinglong/mango/node/AppNode.java", "file_name": "AppNode.java", "file_ext": "java", "file_size_in_byte": 879, "line_count": 28, ... | package com.kinglong.mango.node;
import com.kinglong.mango.common.node.Node;
import com.kinglong.mango.common.node.ZKNode;
import com.kinglong.mango.zkclient.ZkConfigClient;
/**
* Created by chenjinlong on 15/7/13.
*/
public class AppNode extends ZKNode {
private static AppNode appNode = null;
private AppN... |
4e7b994a-050d-41b3-9d8e-f4c2430397d5 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-02-22 12:28:50", "repo_name": "Nagarjuna1233/DataExtensions", "sub_path": "/avalon-anuta-inbound-adapter/src/main/java/com/sap/tcl/avalon/anuta/inbound/dtos/QosClassMaps.java", "file_name": "QosClassMaps.java", "... | package com.sap.tcl.avalon.anuta.inbound.dtos;
import java.io.Serializable;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonProper... |
36e2932f-fca9-4687-9cd6-1b3d104a828f | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-04-25 01:19:53", "repo_name": "silvazaki/Katalog-Film", "sub_path": "/app/src/main/java/com/example/katalogfilm/App.java", "file_name": "App.java", "file_ext": "java", "file_size_in_byte": 879, "line_count": 31, ... | package com.example.katalogfilm;
import android.app.Application;
import com.example.katalogfilm.alarm.AlarmHelper;
import com.example.katalogfilm.data.local.SharedPrefHelper;
/**
* Created by User on 2/5/2019.
*/
public class App extends Application {
private SharedPrefHelper prefHelper;
@Override
p... |
7dc9a8c3-096a-41c6-b717-d8f7ca432344 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-12-06 04:17:23", "repo_name": "laurogama/udacity_capstone_anime_companion", "sub_path": "/app/src/main/java/com/android/example/animecompanion/data/api/IJikan.java", "file_name": "IJikan.java", "file_ext": "java"... | package com.android.example.animecompanion.data.api;
import com.android.example.animecompanion.data.models.Anime;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.Path;
import retrofit2.http.Query;
public interface IJikan {
String API_BASE_URL = "https://api.jikan.moe/v3/";
@GET(API_B... |
ee5dee1a-0d97-471f-b823-930f09a54881 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-11-04 10:54:12", "repo_name": "pch01/spring-webflux-quickstart", "sub_path": "/src/main/java/com/reactive/nano/train/demo/service/EmployeeService.java", "file_name": "EmployeeService.java", "file_ext": "java", "f... | package com.reactive.nano.train.demo.service;
import com.reactive.nano.train.demo.model.Employee;
import com.reactive.nano.train.demo.repository.EmployeeRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import reactor.core.publisher.Flux;
import r... |
135797c9-0e71-40ce-af3a-92c2e9920477 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-04-14 20:12:35", "repo_name": "goturak/LaboSMTP", "sub_path": "/src/com/company/model/Prank.java", "file_name": "Prank.java", "file_ext": "java", "file_size_in_byte": 879, "line_count": 33, "lang": "en", "doc_typ... | package com.company.model;
import java.util.ArrayList;
import java.util.List;
/**
* Class containing all the necessary informatrions for the prank(a group and a message)
* @author Luca Reis de Carvalho -Guillaume Vetter
*/
public class Prank {
private Group victims;
private String subject;
private Stri... |
6a8433bb-d36a-42fe-85b0-5836656e4f7b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-07-04 22:51:43", "repo_name": "Agc96/rebaja-tus-cuentas", "sub_path": "/app/src/main/java/pe/edu/pucp/a20190000/rebajatuscuentas/data/db/entities/InmovableMainData.java", "file_name": "InmovableMainData.java", "f... | package pe.edu.pucp.a20190000.rebajatuscuentas.data.db.entities;
import androidx.room.ColumnInfo;
import androidx.room.PrimaryKey;
public class InmovableMainData {
@PrimaryKey
@ColumnInfo(name = "INMOVABLE_ID")
private Integer id;
@ColumnInfo(name = "NAME")
private String name;
@ColumnInfo(n... |
c7cc48ca-b30c-447b-9562-5018511e0ccf | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2020-07-18T22:47:30", "repo_name": "kezakez/invite", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 879, "line_count": 23, "lang": "en", "doc_type": "text", "blob_id": "... | An invite site that uses google sheets to store the responses.
Modify files in views and public to change the invite details.
Example config/config.json
```
{
"spreadsheetId": "googlespreadsheetId"
}
```
Read https://developers.google.com/sheets/api/quickstart/nodejs for information about getting a spreadsheetId c... |
e90737ca-e339-4a20-80c1-1372c6280664 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-12-17 04:52:53", "repo_name": "velenryy/PBO", "sub_path": "/PLNpembayaran/src/plnpembayaran/info.java", "file_name": "info.java", "file_ext": "java", "file_size_in_byte": 880, "line_count": 38, "lang": "en", "doc... | /*
* 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 plnpembayaran;
/**
*
* @author ASUS
*/
public class info extends harga{
static void harga(double bayar) {
thro... |
ea0d9d60-288e-4b37-a6f1-1b70366b76a3 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-05-06 05:24:55", "repo_name": "pankajsa/solace-spark", "sub_path": "/src/main/java/com/solace/spark/streaming/basic/BasicMicroBatchInputPartitionReaderFactory.java", "file_name": "BasicMicroBatchInputPartitionRea... | package com.solace.spark.streaming.basic;
import org.apache.spark.sql.catalyst.InternalRow;
import org.apache.spark.sql.sources.v2.reader.ContinuousInputPartition;
import org.apache.spark.sql.sources.v2.reader.InputPartition;
import org.apache.spark.sql.sources.v2.reader.InputPartitionReader;
import org.apache.spark.s... |
20680a46-1b9f-4640-a59b-d44151028575 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-02-06 16:11:11", "repo_name": "JulienSouny/Android", "sub_path": "/photoexpresso/app/src/main/java/com/example/barloufcorporation/photoexpresso/FilterActivity.java", "file_name": "FilterActivity.java", "file_ext"... | package com.example.barloufcorporation.photoexpresso;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class FilterActivity extends AppCompatActivity {
@Override
protected void o... |
8d8cc69a-c773-4fb1-9e2b-8a63a11f1018 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-02-20 08:57:57", "repo_name": "pauljoyce/Scratch", "sub_path": "/src/main/java/Spring/TestMain.java", "file_name": "TestMain.java", "file_ext": "java", "file_size_in_byte": 909, "line_count": 29, "lang": "en", "d... | package Spring;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import Spring.bean.TestBean;
import Spring.bean.TestObjectVo;
/**
* @Author: mengchao
* @Date: 2020... |
9eacc231-8224-4202-a53e-21adf10eaacc | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-04-07 13:05:51", "repo_name": "st49617/INPIA_CV1", "sub_path": "/cv2/cv2_spring/src/test/java/cz/branda/npia/cv2/ApplicationTest.java", "file_name": "ApplicationTest.java", "file_ext": "java", "file_size_in_byte"... | package cz.branda.npia.cv2;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
public class ApplicationTest {
Application app;
@Before
public void init() {
app = new Application();
}
@Test(expected = IllegalArgumentException.class)
public void procces... |
36c73a89-a077-4556-b8f7-38e8a64dd2cd | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-05-23 03:00:34", "repo_name": "dream-room/bill-server", "sub_path": "/src/main/java/com/dream/room/bill/common/model/BaseEntity.java", "file_name": "BaseEntity.java", "file_ext": "java", "file_size_in_byte": 895,... | package com.dream.room.bill.common.model;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.hibernate.annotations.CreationTimestamp;
import org.hibernate.annotations.UpdateTimestamp;
import javax.persistence.*;
import java.io.Serializable;
import java.time.Instant;
/**
* Created by MrTT... |
d0a7d100-b8d6-401f-95b8-9288c9eb10ab | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-07-02 11:13:31", "repo_name": "RanjanM9097/Project-Student_registration", "sub_path": "/src/main/java/org/mishra/app/controller/RegistrationController.java", "file_name": "RegistrationController.java", "file_ext"... | package org.mishra.app.controller;
import org.mishra.app.model.Registration;
import org.mishra.app.service.RegistrationService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import o... |
4ae18394-c985-4346-8086-5fae06c4d297 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-06-30 14:51:45", "repo_name": "JokerCN/Gaia", "sub_path": "/springdemo/src/main/java/com/winchampion/property/ChartBeanBeanInfo.java", "file_name": "ChartBeanBeanInfo.java", "file_ext": "java", "file_size_in_byte... | package com.winchampion.property;
import java.beans.BeanDescriptor;
import java.beans.IntrospectionException;
import java.beans.PropertyDescriptor;
import java.beans.SimpleBeanInfo;
/**
* Project-name: Gaia
* Description: ${DESCRIPTION}
* Created by David Yang on 2016/6/18.
*/
public class ChartBeanBeanInfo exten... |
f0922076-c1c8-4b75-ac40-48309afcc197 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-10-30 13:40:00", "repo_name": "HouGall/java_job", "sub_path": "/code/bishi/baidu_main1.java", "file_name": "baidu_main1.java", "file_ext": "java", "file_size_in_byte": 879, "line_count": 33, "lang": "en", "doc_ty... | package bishi;
import java.util.Scanner;
public class baidu_main1 {
public static String solution(String str){
StringBuffer res1 = new StringBuffer();
int i = 0;
while (i<str.length()){
char temp = str.charAt(i);
if (res1.indexOf(String.valueOf(temp)) == -1){
... |
1c80453c-1d16-4c03-b20b-46c5f565838c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-09-03 19:06:54", "repo_name": "therold/C482", "sub_path": "/src/Model/Inhouse.java", "file_name": "Inhouse.java", "file_ext": "java", "file_size_in_byte": 879, "line_count": 32, "lang": "en", "doc_type": "code", ... | package Model;
import javafx.beans.property.SimpleIntegerProperty;
public class Inhouse extends Part {
private final SimpleIntegerProperty machineID;
public Inhouse(int partID, String name, double price, int inStock,
int min, int max, int machineID) {
super(partID, name, price, inStoc... |
ffa66647-c118-4186-aa09-08f0e673acab | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2022-09-22 07:37:05", "repo_name": "KingsleyYau/LiveClient", "sub_path": "/android/QNLiveShow/liveshowApp/src/main/java/com/qpidnetwork/livemodule/httprequest/item/SayHiThemeItem.java", "file_name": "SayHiThemeItem.ja... | package com.qpidnetwork.livemodule.httprequest.item;
/**
* SayHi主题信息Item
* @author Alex
*
*/
public class SayHiThemeItem {
public SayHiThemeItem(){
}
/**
* SayHi主题信息Item
* @param themeId 主题ID
* @param themeName 主题名称
* @param smallImg 小图
* @param bigImg 大图
*/
public SayHiT... |
53f028d2-ea01-4da7-b03c-a86752158bcf | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-03-26 15:50:30", "repo_name": "Piedriz/TrabajoAndroid1", "sub_path": "/app/src/main/java/com/example/juegoandroid/MainActivity.java", "file_name": "MainActivity.java", "file_ext": "java", "file_size_in_byte": 878... | package com.example.juegoandroid;
import androidx.appcompat.app.AppCompatActivity;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
B... |
b29aaa75-e307-4a8e-ba72-833b4dd53ac6 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2014-03-28 14:00:06", "repo_name": "crianzy/study-demo", "sub_path": "/ssm-demo/src/com/app/utils/tool/ResourceReader.java", "file_name": "ResourceReader.java", "file_ext": "java", "file_size_in_byte": 943, "line_coun... | package com.app.utils.tool;
import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.Properties;
/**
* 工具类_读取配置文件属性值
*
* @author chenhong 2012.06.25
* @version 1.0
*/
public class ResourceReader {
// 资源文件路径
private static String SYSTEM_PROPERTIES_PATH = ... |
93b03ef7-7d36-4f8d-8a9c-0e6ebc67640a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-11-09 20:13:11", "repo_name": "strgreen/predict.fball.outcome", "sub_path": "/FBP/src/fbp/FBPmain.java", "file_name": "FBPmain.java", "file_ext": "java", "file_size_in_byte": 880, "line_count": 34, "lang": "en", ... | package fbp;
import java.io.IOException;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import play.Play;
public class FBPmain {
public static void main(String[] args) throws IOException {
Play play = new Play();
... |
671401a7-119d-462c-9713-f98129b56207 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-08-23 08:25:26", "repo_name": "shenxing118/Dribbble", "sub_path": "/app/src/main/java/com/shen/dribbble/utils/BaseViewHolder.java", "file_name": "BaseViewHolder.java", "file_ext": "java", "file_size_in_byte": 879... | package com.shen.dribbble.utils;
import android.databinding.ViewDataBinding;
import android.support.v7.widget.RecyclerView;
import android.view.View;
/**
* Created by shen on 2016/8/7.
*/
public class BaseViewHolder extends RecyclerView.ViewHolder {
public final ViewDataBinding binding;
private View.OnClic... |
69b956aa-84ac-46af-a594-e62640cdb782 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2023-08-25 18:44:23", "repo_name": "alexpdp7/zqxjkcrud", "sub_path": "/src/main/java/net/pdp7/zqxjkcrud/security/UserDetailsServiceImpl.java", "file_name": "UserDetailsServiceImpl.java", "file_ext": "java", "file_size... | package net.pdp7.zqxjkcrud.security;
import static org.jooq.impl.DSL.field;
import java.util.Collections;
import org.jooq.DSLContext;
import org.springframework.security.core.userdetails.User;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDe... |
453a11ff-88ea-4bd8-8217-78cee55a3685 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-04-24 14:26:54", "repo_name": "dashe02/Algorithm", "sub_path": "/src/com/example/loadbalance/LoadBalance.java", "file_name": "LoadBalance.java", "file_ext": "java", "file_size_in_byte": 878, "line_count": 38, "la... | package com.example.loadbalance;
import java.util.*;
/**
* Created by wecash on 19/2/27.
*/
public class LoadBalance {
private Integer pos = 0;
private String testRoundRobin() {
Map<String, Integer> serverMap = new HashMap<>();
serverMap.putAll(ServerConfig.getServerMap());
Set<Str... |
82060bd3-8005-4fee-a3c4-0b9528a775a2 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-09-10 07:03:06", "repo_name": "moriswala/mvp-sample", "sub_path": "/app/src/main/java/com/moriswala/mvp/api/model/Meta.java", "file_name": "Meta.java", "file_ext": "java", "file_size_in_byte": 877, "line_count": ... | package com.moriswala.mvp.api.model;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.io.Serializable;
public class Meta implements Serializable {
@SerializedName("limit")
@Expose
private Integer limit;
@SerializedName("offset")
@Expose
... |
764b4c4d-f1e8-4d91-a14c-122145b83ec6 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-02-17 19:02:45", "repo_name": "tiakoe/android_project", "sub_path": "/myapplication/app/src/main/java/com/a/myapplication/detail/DetailActivity.java", "file_name": "DetailActivity.java", "file_ext": "java", "file... | package com.a.myapplication.detail;
import android.os.Bundle;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;
import com.a.myapplication.R;
public class DetailActivity extends AppCompatActivity {
@Override... |
21c54b80-55ea-4c48-83c1-e1888246ec17 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-04-22 11:19:37", "repo_name": "yanhu32/xpath-kit", "sub_path": "/src/main/java/io/github/yanhu32/xpathkit/converter/DateTextConverter.java", "file_name": "DateTextConverter.java", "file_ext": "java", "file_size_i... | package io.github.yanhu32.xpathkit.converter;
import io.github.yanhu32.xpathkit.utils.Strings;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;
import java.util.Date;
/**
* @author yh
* @since 2021/4/22
*/
public class DateTextConverter extends AbstractDateTimeTe... |
0453acd7-800d-4f03-89b3-d437f70d5f03 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-12-03 09:34:33", "repo_name": "nothings00/myproject", "sub_path": "/demo/src/main/java/core2/security/permission/PermissionTest.java", "file_name": "PermissionTest.java", "file_ext": "java", "file_size_in_byte": ... | package core2.security.permission;
import java.security.Policy;
/**
* 权限测试
* @author zenghh
* @date 2020/11/3 5:47 PM
* @version 1.0
*/
public class PermissionTest {
public static void main(String[] args) {
String text = "";
String policy = " grant { permission core2.security.permission.WordC... |
f0ca5d4b-5ba3-4120-aaa8-fb4c59aed5f4 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-02-09 03:40:19", "repo_name": "mattruddy/Web3-BE", "sub_path": "/src/main/java/com/metamask/auth/security/UserIdentity.java", "file_name": "UserIdentity.java", "file_ext": "java", "file_size_in_byte": 878, "line_... | package com.metamask.auth.security;
import com.metamask.auth.model.EndUser;
import com.metamask.auth.exception.ServiceException;
import com.metamask.auth.repository.EndUserRepo;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.tr... |
acd305f8-87c3-4cc0-a4b3-22c640015154 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-12-21 00:43:10", "repo_name": "DixitPatel/cBioPortal-GSoC", "sub_path": "/sampleBatchDemo/src/main/java/io/spring/batch/processor/SegmentedDataProcessor.java", "file_name": "SegmentedDataProcessor.java", "file_ex... | package io.spring.batch.processor;
import io.spring.batch.cBioPortal.CBioSegmentedData;
import io.spring.batch.gdc.GDCSegmentedData;
import org.springframework.batch.item.ItemProcessor;
/**
* Created by Dixit on 13/04/17.
*/
public class SegmentedDataProcessor implements ItemProcessor<GDCSegmentedData, CBioSegmente... |
b4ed1bc6-156c-47dc-ae9a-8ec84a2f0cf0 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-12-31 15:40:55", "repo_name": "aviv-israel/spl-ass2", "sub_path": "/src/main/java/bgu/spl/a2/sim/actions/VerifyParticipateInCourse.java", "file_name": "VerifyParticipateInCourse.java", "file_ext": "java", "file_s... | package bgu.spl.a2.sim.actions;
import bgu.spl.a2.Action;
import bgu.spl.a2.sim.privateStates.StudentPrivateState;
/**
* Action belong to student actor
*/
public class VerifyParticipateInCourse extends Action<Boolean> {
private String studentId;
private String courseName;
private int grade;
private... |
016951d7-da08-4374-af36-7a9a175e2e5c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2018-12-27 10:26:25", "repo_name": "lxncolours/FirstRepo", "sub_path": "/Basic_code/Test_code/src/Day_09/Phone.java", "file_name": "Phone.java", "file_ext": "java", "file_size_in_byte": 896, "line_count": 54, "lang": ... | package Day_09;
public class Phone {
private String brand;
private double price;
private String type;
public Phone() {
}
public Phone(String brand, double price, String type) {
this.brand = brand;
this.price = price;
this.type = type;
}
public String getBrand... |
59964e50-57c2-4cda-a0bd-16662e82746e | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2012-04-01 07:03:37", "repo_name": "SomMeri/org.meri.eclipse.tutorial.defensiveapitools", "sub_path": "/src/org/meri/eclipse/defensiveapitools/srot/AdapterDemo.java", "file_name": "AdapterDemo.java", "file_ext": "java... | package org.meri.eclipse.defensiveapitools.srot;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.Platform;
public class AdapterDemo {
public Plus adapterFactoryDemo(Minus minus) {
return (Plus) Platform.getAdapterManager().getAdapter(minus, Plus.class);
}
@SuppressWarnings("raw... |
3be6a910-448c-46b5-bda7-3ba80ddff46a | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-09-13 16:35:12", "repo_name": "vimalmehta/spring_shopping", "sub_path": "/onlineshopping/src/main/java/com/vimal/onlineshopping/controller/PageController.java", "file_name": "PageController.java", "file_ext": "ja... | package com.vimal.onlineshopping.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class PageController {
@RequestMapping(value = { "/", "/home", "/index" })
... |
8e63e711-ab29-43b5-aca4-deafa973cc3b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-05-05 11:43:07", "repo_name": "qingwengang/DoctorSpider", "sub_path": "/DoctorSpider/src/main/java/Spider/Bll/Thread/School/BaseSchoolSpider.java", "file_name": "BaseSchoolSpider.java", "file_ext": "java", "file_... | package Spider.Bll.Thread.School;
import Spider.DO.School.SchoolElement;
import Util.JsoupUtil;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
/**
* Created by Administrator on 2017/2/15.
*/
public abstract class BaseSchoolSpider {
private SchoolElement sElement;
public void Spider(String ... |
0e9f2dba-ccda-4dbc-ac86-c7aa7eebe6c9 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-03-30 22:32:51", "repo_name": "ondianeveah/currency-converter", "sub_path": "/src/main/java/IteratingThroughArray/PersonHandler.java", "file_name": "PersonHandler.java", "file_ext": "java", "file_size_in_byte": 8... | package IteratingThroughArray;
public class PersonHandler {
private Person[] personArray;
// constructor
public PersonHandler(Person[] personArray) {
this.personArray = personArray;
}
public String whileLoop() {
int x = 0;
String result = ""; //initialize "result"
... |
f3e57461-402e-4a9a-9938-b37eaf977051 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-07-25 09:47:28", "repo_name": "StecLukasz/SteDziPanki", "sub_path": "/src/main/java/com/example/SteDziPanki/service/AirportService.java", "file_name": "AirportService.java", "file_ext": "java", "file_size_in_byte... | package com.example.SteDziPanki.service;
import com.example.SteDziPanki.model.Airport;
import com.example.SteDziPanki.repository.AirportRepository;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class AirportService {
private final AirportRepository airportRepository;
... |
d2f240eb-7325-4483-9be5-93fa2f7e34b4 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2014-10-11 03:15:46", "repo_name": "mol13480/HojaDeTrabajo8", "sub_path": "/HojaDeTrabajo8/src/hojadetrabajo8/HashMapImp.java", "file_name": "HashMapImp.java", "file_ext": "java", "file_size_in_byte": 879, "line_count... | /*
Universidad del Valle de Guatemala
Hoja de Trabajo 8
Irene Molina 13480
Jorge Garcia 13175
Moises Urias 13015
*/
package hojadetrabajo8;
import java.util.*;
/**
*
* @author Irene
*/
public class HashMapImp implements WordSet{
//Hashtable tree = new Hashtable();
HashMap tree=new HashMap(... |
1670fc09-15d6-4ce9-97cc-ca850e6f802b | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "markdown", "committer_date": "2015-05-24T03:46:03", "repo_name": "NCCUCS-PLSM/scratch-mqtt", "sub_path": "/README.md", "file_name": "README.md", "file_ext": "md", "file_size_in_byte": 878, "line_count": 28, "lang": "en", "doc_type": "text", "b... | #Usage
* Step1: Scratch Extension
1. Launch your Scratch Offline Editor.
2. Click `File` with pressing shift, there will be an additional option `import experimental HTTP extension`.

3. Choose `S4A.s2e` and import it, then you will see some new blocks in `More Blocks`.
 {
mStaggerDelayMs = staggerDelayMs;
}
@Override
... |
a87e6ffb-7ca0-498b-966d-07bcb9cc178c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-04-18 09:22:19", "repo_name": "ouDongSheng/fixBackground", "sub_path": "/src/main/java/com/logicalthining/endeshop/common/pojo/voucher/DiscountCoupon.java", "file_name": "DiscountCoupon.java", "file_ext": "java",... | package com.logicalthining.endeshop.common.pojo.voucher;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;
/**
* 折扣券
*
* @author chenlijia
* @version 1.0
* @since 2019/11/5 0005 下午 6:06
**/
@Setter
@Getter
@Accessors(chain = true)
public class DiscountCoupon {
/**
* 优惠券... |
d2fcdd86-c1ee-4875-ad21-f9f746c0e96c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2014-12-15 11:35:37", "repo_name": "Lafrojg/db.mapping", "sub_path": "/src/pl/isoft/db/data/dao/flat/ShotFlatMapper.java", "file_name": "ShotFlatMapper.java", "file_ext": "java", "file_size_in_byte": 878, "line_count"... | package pl.isoft.db.data.dao.flat;
import java.sql.ResultSet;
import java.sql.SQLException;
import org.springframework.jdbc.core.RowMapper;
import pl.isoft.db.data.Shot;
import pl.isoft.db.data.ShotRF;
import pl.isoft.db.data.ShotRM;
public class ShotFlatMapper implements RowMapper<Shot>
{
public Shot mapRow(Resul... |
62c667bd-45e6-44d5-b7ff-fe4361b8ccad | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-10-23 13:36:40", "repo_name": "tsotoul/Get-out-of-my-swamp", "sub_path": "/src/getoutofmyswamp/Row.java", "file_name": "Row.java", "file_ext": "java", "file_size_in_byte": 878, "line_count": 44, "lang": "en", "do... | package getoutofmyswamp;
import java.io.Serializable;
import java.util.ArrayList;
public class Row implements Serializable {
//Variables and collections
private int number;
private int size;
ArrayList <Square> theRow = new ArrayList <Square> ();
//Constructor (create a collection of 'size' Squares for a ro... |
83fce769-a9de-4626-b613-55e24df6931c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-11-30 17:53:36", "repo_name": "madhuri-210/new-fw", "sub_path": "/src/test/java/com/visionit/automation/pageobjects/ProductDescriptionPageObjects.java", "file_name": "ProductDescriptionPageObjects.java", "file_ex... | package com.visionit.automation.pageobjects;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.junit.Assert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
public class ProductDescriptionPageObjects {
private static final Logger logger = LogManager.g... |
917a4d91-2a1f-400e-8b4e-b1ff24d62317 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-11-03 14:24:20", "repo_name": "comru/navigation-editor", "sub_path": "/modules/global/src/com/company/navigationeditor/entity/Address.java", "file_name": "Address.java", "file_ext": "java", "file_size_in_byte": 8... | package com.company.navigationeditor.entity;
import javax.persistence.Embeddable;
import com.haulmont.chile.core.annotations.MetaClass;
import javax.persistence.Column;
import com.haulmont.cuba.core.entity.EmbeddableEntity;
import com.haulmont.chile.core.annotations.NamePattern;
@NamePattern("%s %s|city,country")
@Me... |
826b197d-c3b1-424d-b7bc-8514af444549 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2016-05-17 15:38:18", "repo_name": "noakcn/rep4jj", "sub_path": "/src/main/java/com/jj/service/GetZhuanyeListService.java", "file_name": "GetZhuanyeListService.java", "file_ext": "java", "file_size_in_byte": 888, "lin... | package com.jj.service;
import com.jj.dao.IXueyuanDao;
import com.jj.dao.IZhuanyeDao;
import com.jj.pojo.Xueyuan;
import com.jj.pojo.Zhuanye;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.servlet.http.HttpServletRequest;
import java.util.Lis... |
5d68d863-0351-41ad-8118-861e68d587f0 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2017-06-28 05:13:54", "repo_name": "magichill/sdk", "sub_path": "/projects/bingdou-cdn-server/src/main/java/com/bingdou/cdn/request/ViewerCountRequest.java", "file_name": "ViewerCountRequest.java", "file_ext": "java",... | package com.bingdou.cdn.request;
import com.bingdou.core.helper.BaseRequest;
import com.bingdou.tools.JsonUtil;
import com.google.gson.annotations.SerializedName;
/**
* Created by gaoshan on 16/12/13.
*/
public class ViewerCountRequest extends BaseRequest {
/**
* 流名称
*/
@SerializedName("stream_na... |
ac2aeb00-41a7-469c-8d0c-3a15f552632c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-08-19 05:05:47", "repo_name": "Rendxn/BD2-T3-2021", "sub_path": "/src/main/java/org/unalmed/config/OracleClientInstance.java", "file_name": "OracleClientInstance.java", "file_ext": "java", "file_size_in_byte": 87... | package org.unalmed.config;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;
import java.sql.SQLException;
import oracle.jdbc.pool.OracleDataSource;
public class OracleClientInstance {
/**
* @return Connection
*/
public static Connection oracleClient() throws SQLE... |
6f0e4f3d-88c2-4428-8e72-9618fdf7f6bd | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2014-12-08 17:57:47", "repo_name": "StevenWeng/ShinLongWeb", "sub_path": "/src/main/java/com/wengs/web/model/service/PageService.java", "file_name": "PageService.java", "file_ext": "java", "file_size_in_byte": 878, "l... | package com.wengs.web.model.service;
import java.util.Date;
import org.hibernate.criterion.DetachedCriteria;
import org.hibernate.criterion.Restrictions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.wengs.web.model.dao.PageDao;
import com.we... |
b3a2a9b7-5c54-43af-87ae-7c9a644c93ea | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-11-30 21:16:05", "repo_name": "tdotdm/timesheet", "sub_path": "/library/src/main/java/com/github/tdotdm/timesheet/library/BinLocationService.java", "file_name": "BinLocationService.java", "file_ext": "java", "fil... | package com.github.tdotdm.timesheet.library;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.stereotype.Component;
import java.util.Optional;
@Component
@ConditionalOnProperty(value = "com.github.tdotdm.timesheet.classpath-context", havingValue = "false")
fin... |
56fbeb41-92df-466b-96cd-f9aef995203d | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-01-22 03:40:14", "repo_name": "ryyanj/servletPractice", "sub_path": "/src/main/java/com/ryyanj/servlets/GoodByeServlet.java", "file_name": "GoodByeServlet.java", "file_ext": "java", "file_size_in_byte": 877, "lin... | package com.ryyanj.servlets;
import java.io.IOException;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@WebSe... |
c346f89d-7af3-4a9b-9d70-a49a65c01c0c | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-09-22 07:28:31", "repo_name": "madskolsen/7.4", "sub_path": "/src/com/company/Main.java", "file_name": "Main.java", "file_ext": "java", "file_size_in_byte": 878, "line_count": 37, "lang": "en", "doc_type": "code"... | package com.company;
public class Main {
public static boolean[] sieve (int [] primeArray){
boolean [] c = new boolean[primeArray.length];
for (int i = 0; i < primeArray.length; i++) {
for (int j = 0; j < primeArray.length; j++) {
int divide = prime... |
82807c80-00d4-481d-8e98-76b6b6bf616d | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-09-11 15:26:15", "repo_name": "Adronik/Book", "sub_path": "/src/main/java/Pages/ChapterOnePage.java", "file_name": "ChapterOnePage.java", "file_ext": "java", "file_size_in_byte": 877, "line_count": 32, "lang": "e... | package Pages;
import Utils.BasePage;
import Utils.WebdriverControl;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.testng.Assert;
public class ChapterOnePage ex... |
39e05130-00b7-4342-87d8-7e8fe9524810 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-12-26 05:23:56", "repo_name": "Aartiproject/OtpService", "sub_path": "/src/main/java/com/vnc/otp/eum/OtpScenario.java", "file_name": "OtpScenario.java", "file_ext": "java", "file_size_in_byte": 877, "line_count":... | package com.vnc.otp.eum;
import java.util.Arrays;
import java.util.Map;
import java.util.function.Function;
import java.util.stream.Collectors;
public enum OtpScenario {
SIGNUP(1,"SIGNUP"),
LOGIN(2,"LOGIN"),
SOCIAL_SIGNUP(3,"SOCIAL_SIGNUP" ),
CHANGE_PASSWORD(4," CHANGE_PASSWORD" ),
FORGET_PASSWORD(5,"FORGET_PA... |
d0c01a14-479d-4455-a01c-4d192f22ac37 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2020-05-07 02:28:14", "repo_name": "bilgekara/RastgeleKutuphane-java", "sub_path": "/Kutuphane/RASTGELEKISIURET/src/randomLibary/Kisi.java", "file_name": "Kisi.java", "file_ext": "java", "file_size_in_byte": 878, "lin... | package randomLibary;
/**
* @author Bilgenur
*/
public class Kisi {
private final RastgeleKisi YeniKisi = new RastgeleKisi();
private final Yas YeniYas = new Yas();
private final Telefon YeniTelefon = new Telefon();
private final ImeiNo YeniImei = new ImeiNo();
private final KimlikNo YeniKimlik = ... |
3aa4434f-0f2f-4246-ad85-731562cdd087 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-05-30 18:47:46", "repo_name": "SauloViana/AppMonitoraGravacao", "sub_path": "/app/src/main/java/br/com/monitoragravacaoradio/Task/StatusCurrentRecTimerTask.java", "file_name": "StatusCurrentRecTimerTask.java", "f... | package br.com.monitoragravacaoradio.Task;
import android.os.AsyncTask;
import java.util.TimerTask;
import br.com.monitoragravacaoradio.GravacaoActivity;
import br.com.monitoragravacaoradio.modelo.Gravacao;
/**
* Created by Saulo on 13/12/2016.
*/
public class StatusCurrentRecTimerTask extends Timer... |
b2cf6a9a-10dc-4ea3-b14e-cf65b5983012 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-06-09 17:55:41", "repo_name": "MarekOleksik/PRK", "sub_path": "/checkers/application/Main.java", "file_name": "Main.java", "file_ext": "java", "file_size_in_byte": 877, "line_count": 42, "lang": "en", "doc_type":... | package application;
import Controllers.FXMLCheckersBoardController;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
/**
*
* @author Marek Oleksik
*/
//Main z checkers
public class Main extends Application {
... |
2714a46a-5a45-4b23-88b6-fe0a15876909 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-03-10 11:24:14", "repo_name": "Hikaru199981/JSD2010WEB", "sub_path": "/09jdbc03/src/main/java/cn/tedu/Demo06.java", "file_name": "Demo06.java", "file_ext": "java", "file_size_in_byte": 932, "line_count": 31, "lan... | package cn.tedu;
import java.sql.Connection;
import java.sql.Statement;
/**
* 批量执行sql语句的操作
*/
public class Demo06 {
public static void main(String[] args) {
//获取连接
try(Connection conn=DBUtils.getConn()){
String sql1="insert into user values(null,'aaa','123456');";
String ... |
58e2cbc3-ff0f-4217-b13c-7ddb8f435dc6 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-04-09 07:09:54", "repo_name": "Rollines/spring-annotation", "sub_path": "/src/test/java/com/spring/annotaion/IOCTest_Aop.java", "file_name": "IOCTest_Aop.java", "file_ext": "java", "file_size_in_byte": 892, "line... | package com.spring.annotaion;
import com.spring.aop.MathCalculator;
import com.spring.config.MainConfigOfAOP;
import com.spring.config.MainConifgOfAutowired;
import com.spring.service.BookService;
import org.junit.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
/**
* @author c... |
3d55efd4-bce7-4d3d-932d-041a45bd1aba | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2019-04-30 09:49:01", "repo_name": "eddynaivo/GetRestaurant", "sub_path": "/app/src/main/java/com/example/getrestaurant/MainActivity.java", "file_name": "MainActivity.java", "file_ext": "java", "file_size_in_byte": 87... | package com.example.getrestaurant;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(save... |
eb9e9731-3552-4a79-bc0e-279ff4c27912 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2014-07-28 17:12:27", "repo_name": "mihristov/HackBulgaria-assingments", "sub_path": "/Collections1/BoundedQueue/BoundedQueue.java", "file_name": "BoundedQueue.java", "file_ext": "java", "file_size_in_byte": 878, "lin... | import java.util.LinkedList;
public class BoundedQueue<T> extends LinkedList<T> {
/**
*
*/
private static final long serialVersionUID = 1L;
public static void main(String[] args) {
BoundedQueue<Integer> boundedQueue = new BoundedQueue<>(3);
boundedQueue.offer(1);
bounde... |
ad11c39b-db40-441e-a107-458531335e51 | {"source": "refinecode", "ori_score": "", "domain": "code", "program_lang": "java", "committer_date": "2021-03-25 14:29:29", "repo_name": "wangjin123456/2021", "sub_path": "/myk-mq/src/main/java/com/taotao/mykmq/RabbitMQConnection.java", "file_name": "RabbitMQConnection.java", "file_ext": "java", "file_size_in_byte": 9... |
package com.taotao.mykmq;
import com.rabbitmq.client.Connection;
import com.rabbitmq.client.ConnectionFactory;
import java.io.IOException;
import java.util.concurrent.TimeoutException;
/**
*@title: RabbitMQConnection
*@description; 项目
*@author taotao
*@date 2021/1/25 10:08
*/
public class RabbitMQConnection {
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.