blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 410 | content_id stringlengths 40 40 | detected_licenses listlengths 0 51 | license_type stringclasses 2
values | repo_name stringlengths 5 132 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 80 | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 131
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 9.45M | extension stringclasses 32
values | content stringlengths 3 9.45M | authors listlengths 1 1 | author_id stringlengths 0 313 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
75b00b128d6033385b59c140cace3ad2bed309b6 | 2df6bdc18fc913bd7dc704f1c1199641e4480cea | /Lavoro/Lavoro.java | c15ecd4220f5412ead585c0e60e7c935b0004e3d | [] | no_license | GianlucaVeschi/Algorithms-in-Java | bb71a50f68d11ae59c62cb7218e528dee1d6007f | dc23f817f293aa3cfcccb8ae33bc54df4805c243 | refs/heads/master | 2020-03-16T18:57:23.859164 | 2018-05-10T12:06:51 | 2018-05-10T12:06:51 | 132,893,994 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 330 | java | public class Lavoro extends Attivita implements Comparable<Attivita>{
// CAMPI
// COSTRUTTORI
public Lavoro(int giorno, int ora_inizio, String nome_progetto){
super(giorno, ora_inizio, nome_progetto);
}
// METODI
public String toString(){
return super.toString() + " lavoro su progetto "+this.getNomeProgett... | [
"noreply@github.com"
] | GianlucaVeschi.noreply@github.com |
b2cabb24b466cfb7ef74d1e7630b3fb370bd04b6 | 7e7af445b226ef0bdc51e1b2d9acaa62143444f2 | /multithreading/src/chapter02/section_2_1/section_2_1_3/Run.java | 4ab8fd24f4e7a0699742daca042ac8a6712a8c1a | [] | no_license | coldcicada/thread | e630bdd664eaee1257ce9d8b77cc616e47bd632d | 12e2b507072bfd29bdb7341011be6cd9d7f20118 | refs/heads/master | 2021-04-17T01:45:53.706142 | 2020-04-04T13:22:58 | 2020-04-04T13:22:58 | 249,401,213 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 386 | java | package chapter02.section_2_1.section_2_1_3;
public class Run {
public static void main(String[] args) {
HasSelfPrivateNum numRef1 = new HasSelfPrivateNum();
HasSelfPrivateNum numRef2 = new HasSelfPrivateNum();
ThreadA threadA = new ThreadA(numRef1);
threadA.start();
ThreadB... | [
"827052896@qq.com"
] | 827052896@qq.com |
f456b583871589cc79590dfd826ae5a37ccc920d | ab21bbc03abcade93ca43c54598bc4ef0c2c8849 | /src/test/java/katas/multicurrency/DollarTest.java | aa5ec1c67b5ef2d0f50d7a3f74319ff691598bcf | [] | no_license | bushi-go/katas-tdd | c5f09f4d05d4de97a0661d8564e61b63456e65e0 | 9f58a9909089f799ecafb59a4971055086e9d786 | refs/heads/master | 2020-04-17T19:26:17.401834 | 2019-01-21T19:05:10 | 2019-01-21T19:05:10 | 166,865,580 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,027 | java | package katas.multicurrency;
import org.junit.Test;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
public class DollarTest
{
@Test
public void testMultiplication(){
Money five = Money.dollar(5);
assertEqual... | [
"rgoussu.develop@gmail.com"
] | rgoussu.develop@gmail.com |
c07c9fd325d1efe410016d675e4ade90eccc3217 | 609c3c2c43c21863fe5319c10a56530fea799a5d | /Chapter 11/Exercise 11-3/SavingsAccount.java | 259ccacc7f3f7853020f37c2d244e9263156a550 | [] | no_license | Joshawott64/CSCI_1111_Object_Oriented_Programming | 357a111bd73c9df099a30f81231366b43d0b7b1c | eb7f5f9d2ea5b514af0a14f6217f402aeee7d850 | refs/heads/master | 2023-07-18T02:51:47.057722 | 2021-08-12T15:20:09 | 2021-08-12T15:20:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 734 | java | import java.util.Date;
public class SavingsAccount extends Account {
// Default constructor
public SavingsAccount() {
}
public SavingsAccount(int id, double balance, double annualInterestRate,
Date dateCreated) {
setId(id);
setBalance(balance);
setAnnualInterestRate(annualInterestRate);
setDateCreated... | [
"noreply@github.com"
] | Joshawott64.noreply@github.com |
c4ec8e0b8440d7ea1cc48ab7c9c501b27fe6b23f | 6ffb6cdff6b40c0893202ddf7dc6210c3b8f0f5d | /loanquery/src/com/mcjs/service/FundStreamSeleService.java | b98dee094d000575f9c94fe981f3de1d5c9bd4ce | [] | no_license | lingxiao123/loanquery | 8335affe340fef9a66519b956d3c24547e5bfddb | a47344ee5cb5600353d03b96591cee4de99551bd | refs/heads/master | 2016-09-14T01:30:57.569799 | 2016-04-21T09:29:34 | 2016-04-21T09:29:34 | 56,758,350 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 527 | java | package com.mcjs.service;
import java.util.List;
import com.mcjs.entity.FundStreamSele;
import com.mcjs.tool.PageTool;
public interface FundStreamSeleService {
public void addFundStreamSele(FundStreamSele fundStreamSele);
public int getFundStreamSele();
public List<FundStreamSele> findFundStreamSeles(Pa... | [
"18694076609@163.com"
] | 18694076609@163.com |
91de96fff3de9440bbbadc15b257b01cadbcd4ca | 8bf7fc828ddc913fc885d8c72585a2e5481d7d88 | /app/src/main/java/zhushen/com/shejimoshi/chapter18/example1/ProxySubject.java | 483c25e8714deef150592b5c4771008651ec398a | [
"MIT"
] | permissive | keeponZhang/android_design_pattern_book_source | eacfb6b6d338e7b2c52042d5a0cdb5c27e1be3ec | 8c8e98c2071546da5fc517f1c937f302d3a5ec52 | refs/heads/master | 2022-12-16T03:43:31.622111 | 2020-09-11T11:43:58 | 2020-09-11T11:43:58 | 293,052,105 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 353 | java | package zhushen.com.shejimoshi.chapter18.example1;
/**
* Created by Zhushen on 2018/5/30.
*/
public class ProxySubject extends Subject {
private RealSubject realSubject;
public ProxySubject(RealSubject realSubject) {
this.realSubject = realSubject;
}
@Override
public void visit() {
... | [
"zhangwengao@yy.com"
] | zhangwengao@yy.com |
c204b09277dbdff888b4998615d498a5c9ee2be9 | aa0c3c4fcf69127dc4d361d7c4f12dc164e3d561 | /java/AULAS/src/lista4Exercicios/CadCliente.java | 24a90586ed0fdd7bbb58897527d550815a370e05 | [] | no_license | rodrigoroseo/turma30java | be16310ed640ff5869fc626cbdf41643f8ceb5ae | 28e3951ca39568ac917369c4f405c194dbb68e56 | refs/heads/main | 2023-08-18T20:00:58.876333 | 2021-10-03T20:14:24 | 2021-10-03T20:14:24 | 388,224,797 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 731 | java | package lista4Exercicios;
public class CadCliente {
public static void main(String[] args) {
Cliente cliente1 = new Cliente();
cliente1.nome = "Rodrigo";
cliente1.cpf = "11122233345";
cliente1.anoNascimento = 1998;
Cliente cliente2 = new Cliente();
cliente2.nome = "Roseo";
cliente2.cpf = "111222333"... | [
"rodrigo.roseo@gmail.com"
] | rodrigo.roseo@gmail.com |
95ff44278375fb08fdabd13800fe99d05d76d0ec | 9289413d3f638ebaf95ddc40540ef8d725f2b9b9 | /java/sakila-business-webapi/src/main/java/isep/web/sakila/webapi/controller/FilmRestController.java | 7e8ee4147930a3cd1647b59404ff855facfc0d89 | [] | no_license | snehnain/WebLAB04 | 3d35c6c1a8005e10239ef777f98cd489ba6b2298 | a0d182fe7eec7f1a04bdae879013ca0889ebc6e9 | refs/heads/master | 2021-04-25T03:31:38.240499 | 2017-12-28T09:32:39 | 2017-12-28T09:32:39 | 115,607,490 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,615 | java | package isep.web.sakila.webapi.controller;
import java.util.List;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.spri... | [
"snehnain1990@gmail.com"
] | snehnain1990@gmail.com |
4d08b75cbab341efdab2f5ffa5385341d6fa9067 | 7e8b691e046c14470f2edf9d646be90432ab0922 | /springmvc/src/test/java/com/apple/springmvc/dao/UserDaoTest.java | f857897764cd847c76b86284a04423a60f9ec3b6 | [] | no_license | Winteren/springmvc | 52379cf219214bba16f78c02b9b7752803d6ae96 | 21809950b6566d1e65f03fae20ecf2313e4d62f4 | refs/heads/master | 2020-04-03T09:54:28.997513 | 2016-07-06T10:12:00 | 2016-07-06T10:12:00 | 62,710,920 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 695 | java | package com.apple.springmvc.dao;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
* UserDaoImpl Tester.
*
* @author renxueni
* @since <pre>七月 4, 2016</pre>
* @version 1... | [
"luckystar0727@163.com"
] | luckystar0727@163.com |
99b61775f10ac51e8e24ba43cc8841b31ae49fe7 | ac257a668fe587822f1151e306583fa9d40f5785 | /oop/src/main/java/com/w1761344/oop/cw/LeagueManager.java | c8146a05f8de468e15ede45129a17014e9b73981 | [] | no_license | ashen99/PremierLeageManager | bd87080be042b79c86520d73575b19819dde454c | 6ed86cecb49c61a5bf5fc15ae67093917cb571e9 | refs/heads/main | 2023-04-29T08:51:21.962864 | 2021-05-22T17:46:47 | 2021-05-22T17:46:47 | 369,856,675 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 594 | java | package com.w1761344.oop.cw;
import java.io.IOException;
import java.util.List;
public interface LeagueManager {
void createClub();
void deleteClub();
void displayStats();
void showTable();
void addMatch();
void saveFile();
void saveFile2();
void loadFile() throws IOExce... | [
"noreply@github.com"
] | ashen99.noreply@github.com |
c31ab271057b49ccbcf8369bd46036abbd2b80a3 | f59b67b7644a810ad4068df001279ea587fe2296 | /spring-cloud/gateway/src/main/java/com/zkdlu/DemoFilter.java | 6c9b50b78a1e165f7cee75ab249d6f46272ccf93 | [] | no_license | saywithu/spring-boot | 1a318631b370549e420a4b6377582701bf72ae0c | 7d14c2ad737490fc97b14c2563422ba5a1611cd3 | refs/heads/main | 2023-06-07T11:13:08.363093 | 2021-06-29T12:54:43 | 2021-06-29T12:54:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,884 | java | package com.zkdlu;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.cloud.gateway.filter.GatewayFilter;
import org.springframework.cloud.gateway.filter.factory.AbstractGatewayFilterFactory;
import org.springframework.stereotype.Component;
import reactor.core.publisher.Mono;
... | [
"zkdlu159951@gmail.com"
] | zkdlu159951@gmail.com |
040dab000941fcc91544ec4ca441c0d8be314a68 | c5f8c4f03d277c640c56925bebb778bf4930b505 | /SeProject/src/day1110/network/gui/EchoServer.java | 69c2cb799f18a7e08c19fc3ca299011bbbf07d09 | [] | no_license | qowoeo948/java_swing_javafx | 67dcd8545182c9d1ab1c6db362075a7cde2a9fcc | cb73a69a8f90629e014597a303fdccc18ee85ee1 | refs/heads/master | 2023-01-22T07:05:23.846706 | 2020-12-01T09:00:40 | 2020-12-01T09:00:40 | 307,729,305 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,610 | java | package day1110.network.gui;
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.ServerSocket... | [
"qowoeo948@gmail.com"
] | qowoeo948@gmail.com |
f251f71e9e41b7feee8af3d32f9437b4e7765c84 | d16c972976f43e0fd3747c6e9c4d5daacaa7fdff | /app/src/main/java/it/gioacchinovaiana/pizzabuona/PizzeriaFragment.java | 8b01f3a013919b8850de9ab0c309db73c4e7cefe | [] | no_license | gioacchinovaiana/PizzaBuona | 82e371589a41c231d43a7f16a4a6230f99ebdffc | 98bcabc4534a01ccf0510e09dd87aa713b54ea48 | refs/heads/master | 2020-05-19T22:27:18.070804 | 2015-05-19T20:03:20 | 2015-05-19T20:03:20 | 35,510,262 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 15,486 | java | package it.gioacchinovaiana.pizzabuona;
import android.content.Context;
import android.content.Intent;
import android.database.Cursor;
import android.graphics.Color;
import android.graphics.PorterDuff;
import android.graphics.drawable.LayerDrawable;
import android.net.Uri;
import android.os.Bundle;
import android.sup... | [
"gioacchino.vaiana@gmail.com"
] | gioacchino.vaiana@gmail.com |
dfd4eacd2cc21be81994a027aab51c54cb04f3a1 | f100931e377c58623d6bd958eafafaf679d54488 | /src/main/ru/konstpavlov/exchangeUtils/Exchange.java | 7c11fc6c52010e5c2e9acb73ede3a6a2f6b14799 | [] | no_license | KonstantinPavlov/SBT-Test | ed6e2438eb25c59904d3361c91ea07bfdd1bf49d | 7d3aa60d77be2bf906f25d71a09c083aa6d5d9a8 | refs/heads/master | 2021-01-13T16:20:00.224293 | 2017-01-25T10:33:20 | 2017-01-25T10:33:20 | 79,887,460 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,774 | java | package main.ru.konstpavlov.exchangeUtils;
import main.ru.konstpavlov.operations.ExchangeOperation;
import main.ru.konstpavlov.operations.OperationFactory;
import main.ru.konstpavlov.utils.SecurityType;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
imp... | [
"konstpavlovsdr@gmail.com"
] | konstpavlovsdr@gmail.com |
132e490d8c120ddfb7a32f08e41c326aebcafe8f | 269ebddaee9fec0a70fdc3b72c0781b0ce6bc74c | /app/src/main/java/com/example/android/sqliteweather/MainActivity.java | c1fab10c9c300cb95d58c6870ff8b0d87c35b3f5 | [] | no_license | ConnerN/weather-mobile-app | 3f5f21876206e52a6fe44eb4d931102265e2cfb6 | 20f538359483047f0dc9224bb4b5c579756a13ae | refs/heads/main | 2023-08-30T02:22:37.451235 | 2021-11-09T08:26:08 | 2021-11-09T08:26:08 | 363,277,418 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,103 | java | package com.example.android.sqliteweather;
import androidx.annotation.NonNull;
import androidx.appcompat.app.ActionBar;
import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.widget.Toolbar;
import androidx.core.view.GravityCompat;
import androidx.drawerlayout.widget.DrawerLayout;
import androidx.l... | [
"noreply@github.com"
] | ConnerN.noreply@github.com |
c9d3c9c3a41031b0f80bd9dd0c60949f8fd869a6 | 8e26c45835806b7c19a27676c163bc95a6255a24 | /src/com/shadowburst/bubblechamber/ColourPair.java | 60421f73fc0e401dcf4c0d205b9985d5233a48e7 | [
"Apache-2.0"
] | permissive | orac/bubblechamber | b3dfc81d24ac181d09df60d13894ce4cb11d589b | 305476d71faf7122258a500353a68fd5fedff81d | refs/heads/master | 2020-05-18T18:21:30.264435 | 2012-08-24T13:34:40 | 2012-08-25T14:50:11 | 2,704,482 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 184 | java | package com.shadowburst.bubblechamber;
public class ColourPair {
public int positive;
public int negative;
public ColourPair(int p, int n) {
positive = p;
negative = n;
}
}
| [
"st@istic.org"
] | st@istic.org |
c2f523caae89ea1844678bde2e9d190fe2c1f52c | b23404e272db01f2bf46320565c11b9e02cf0c61 | /new/pps/src/main/java/ice/cn/joy/ggg/api/model/PageSupport.java | 47ebce3910e38623f22b0be1a961cfd7f4857329 | [] | no_license | brucesq/brucedamon001 | 95ab98798f1c29d722a397681956c24ff4091385 | 92ab181f90005afffb354d10768921545912119c | refs/heads/master | 2021-05-29T09:35:05.115101 | 2011-12-20T05:42:28 | 2011-12-20T05:42:28 | 32,131,555 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 3,962 | java | // **********************************************************************
//
// Copyright (c) 2003-2010 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// ********************************************... | [
"quanzhi@8cf3193c-f4eb-11de-8355-bf90974c4141"
] | quanzhi@8cf3193c-f4eb-11de-8355-bf90974c4141 |
d6a38f26766e1f3b1ed1da9e993326252d1137e3 | e16c386483e203721bf469698e2110fbd2c3033b | /src/main/java/ua/in/dris4ecoder/model/businessServices/ServiceService.java | fa87e021d229b019d466d8a4c5c1253f476fe688 | [] | no_license | alex-korneyko/Restaurant | 1fdf0225d7868d1245f27a263ca6cadf40d425a4 | 60fe3d1afcc28d6396e465789667d84ba21be711 | refs/heads/master | 2020-05-21T20:05:33.236044 | 2016-12-29T16:26:36 | 2016-12-29T16:26:36 | 64,385,747 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,833 | java | package ua.in.dris4ecoder.model.businessServices;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
import ua.in.dris4ecoder.model.businessObjects.*;
import ua.in.dris4ecoder.model.dao.RestaurantDao;
import java.time.LocalDateTime;
import j... | [
"a.korneyko@gmail.com"
] | a.korneyko@gmail.com |
35754ad3dad01b5cfa04c76e2691e6292a820879 | a120e4f6c0d1f60e4bae95f32888f8d5a257a359 | /STUN5389Emu/src/STUN/STUNrfc/Util.java | 1ca45a362682f3344be95e24a5feeda60d6e5aa9 | [] | no_license | zhiji6/basic_STUN_5389_Emulator | a8582c86b9598cf911a892c0bf84de8d0a376426 | 5bc5496960e9d50cc79b9e1e3aaeca76b326022d | refs/heads/master | 2020-04-28T14:36:23.735274 | 2018-03-22T13:31:59 | 2018-03-22T13:31:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 558 | java | package STUN.STUNrfc;
import java.math.BigInteger;
import java.util.Random;
public class Util {
private static Random rnd = new Random();
public static BigInteger generateTrxId() {
return new BigInteger(Constants.TRX_ID_SIZE - 1, rnd);
}
public static String formatIPAddress(b... | [
"Mrhie@DESKTOP-1S23VTE"
] | Mrhie@DESKTOP-1S23VTE |
3bec660aa71550737df61eaab473728013742ccf | 7617a656b6f77dfc60cd405baf87bc7700296092 | /src/konstruktory_metody_dziedziczenie/src/konstruktory_metody_dziedziczenie/Car.java | 8298094500988f85c7faf02d1cf8e5e23a916b5a | [] | no_license | iJaguar/Cwiczenia | 6f38d74c7077b1faaea2b190a3257cbb0c174f09 | 9c200980a9205cec28f7374301a6a555aaabf736 | refs/heads/master | 2021-01-20T17:47:26.197080 | 2017-05-10T18:05:36 | 2017-05-10T18:05:36 | 90,889,595 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,141 | java | package konstruktory_metody_dziedziczenie;
import static java.lang.String.*;
public class Car {
double kilometers;
String nazwa;
int liczba_pasazerow;
double pojemnosc_baku;
Car() { //konstruktoir domyslny
}
Car(double kilometers, String name, int passengers, double capacity) {
t... | [
"gpmstach@gmail.com"
] | gpmstach@gmail.com |
822a1047848a9f4e117e1a87257ddc840f161af8 | 45cbf4213e178994963ec018d3344d11ab7e8d03 | /SkynetBus/src/main/java/com/auxo/cache/AuxoCacheConstant.java | 632a1054eb8d48e813ec844e5a734d876eccd3cb | [] | no_license | skynet-auxo/skynet-auxo | 412f88e65d9f2eb08acfeef3230251f3670de4e8 | cdab50c63b0124f77d777df00677bff49fe54674 | refs/heads/master | 2022-11-01T08:13:47.681341 | 2019-06-17T01:10:21 | 2019-06-17T01:10:21 | 192,259,296 | 0 | 0 | null | 2022-10-12T20:28:02 | 2019-06-17T02:09:26 | JavaScript | UTF-8 | Java | false | false | 677 | java | /**
* Project Name: AuxoBus
* File Name:AuxoCacheConstant.java
* Package Name:com.auxo.cache
* History
* Seq Date Developer Description
* ---------------------------------------------------------------------------
* 1 2019年06月14日 zeroLi Create
*
... | [
"343077359@qq.com"
] | 343077359@qq.com |
77e069d27274d7db84986f4f49b00fcd109a9582 | 5f8620ad72f80d011c0124becea4df74f949bfdd | /src/interfacce/opvaccinale.java | 6e619cfe33a68c1817e55d0731c60c7646a75b37 | [] | no_license | francesco-esposito/Laboratorio-B | 6d5bd6aca2bf1c99ad6c844b6b62a8edd627eb7f | d1282fcc078ac14e18297f80121a8d90ad2b3726 | refs/heads/master | 2023-07-23T15:22:31.719901 | 2021-09-05T09:40:24 | 2021-09-05T09:40:24 | 401,123,199 | 0 | 0 | null | null | null | null | ISO-8859-13 | Java | false | false | 3,662 | java | package interfacce;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import java.awt.BorderLayout;
import java.awt.GridLayout;
import javax.swing.JLabel;
import java.awt.Font;
import javax.swing.SwingConstants;
import backenddb.ServerDBMSInterface;
import javax.swing.JButton;
import... | [
"francesco-esposito"
] | francesco-esposito |
c8c69b959d08553eb725987aea58072b92c78c36 | 92543800c0b9c8978ed327212f0628e442ce7473 | /app/src/main/java/in/savegenie/savegenie/backgroundclasses/BundleItem.java | 5bf7b2b4d463d2fbb79e19ebb436e3e01cd09419 | [] | no_license | gupta-manish/Savegenie | 75766e831ab2a651f14a1b285fa63d4a0a5fd5fa | 6b0728bde14c10f7b6f185a87da50080b3e62230 | refs/heads/master | 2021-01-01T19:29:35.241193 | 2015-04-11T07:00:33 | 2015-04-11T07:00:33 | 23,832,129 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 597 | java | package in.savegenie.savegenie.backgroundclasses;
/**
* Created by manish on 20/3/15.
*/
public class BundleItem
{
public String id,bundle_get_id,store_id,store_sku_id,qty,status;
public StoreSku storeSku;
public BundleItem(String id,String bundle_get_id,String store_id,String store_sku_id,String qty,St... | [
"guptamanish712@gmail.com"
] | guptamanish712@gmail.com |
554f7ef95b7d61d7d5454c5327b16c267debb28b | cb6f5939c9fa12ab07cf71401b977d4fa4c22860 | /week-05/practical-04/.svn/pristine/55/554f7ef95b7d61d7d5454c5327b16c267debb28b.svn-base | 89392044b6aaa3d88b0fa4e562e7cfbccdd90bfc | [] | no_license | arpit2412/Foundation-of-Computer-Science | be6807359f5e8cf93ffbea80b58ab1c458c75d03 | 9008b7482d71410dff4c3449dfa4a32f8ab6e7e3 | refs/heads/master | 2022-12-07T17:55:37.002403 | 2020-09-03T11:01:24 | 2020-09-03T11:01:24 | 292,543,573 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,005 | /*
*
* Foundations of Computer Science
* Semester 02 Year 2019
* id: a1784072 name: Arpit Garg
*
*/
//class human child class of player
import java.util.*;
class Human extends Player{
public String input;
Scanner in = new Scanner(System.in);
//Overriding the performmove and return the string
@Override
public Stri... | [
"arpit.rikki2412@gmail.com"
] | arpit.rikki2412@gmail.com | |
ef464ff9fd36985ae2620315627ac8d13f45819f | 055a93bd6ac2eac503ed21ed24e7ee419759a0e9 | /src/main/java/lsv/core/graphics/Turtle.java | b5dc6f4e3f63d8749c486f6928afcdadd7462606 | [] | no_license | ccieh/LSystemVisualizer | 3be7c8a1d5cbf4c7e84d96d652915b1267853f9d | a9cf72e1b6e2425743022a05965bbaf6b7a4ae1b | refs/heads/master | 2021-01-10T13:33:40.951071 | 2016-03-23T21:10:50 | 2016-03-23T21:13:05 | 54,454,875 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 292 | java | package lsv.core.graphics;
public interface Turtle {
void rotate(double radians);
void push();
void pop();
void move(double distance);
void penUp();
void penDown();
void setWidth(double width);
void setColor(double r, double g, double b);
void reset();
}
| [
"verdigo.private@gmail.com"
] | verdigo.private@gmail.com |
19d2481ce1ad807b2e12ca5ccfddbfe8028084e8 | 3a6c7d7dca31ef6a65d4d893696585d26e6bcfb6 | /src/game/graphics/effects/Updatable.java | 21fb740c598d762a91aa320c61e75f46326ba400 | [] | no_license | Shamzaa/OOP-spillprosjekt | 1918fb74b483fa1c8bc5ae34635c110b2eae24be | 5025ad2907a4ac6de3ab93443d5274da9ad20095 | refs/heads/master | 2016-08-12T12:49:31.180930 | 2016-04-20T11:29:14 | 2016-04-20T11:29:14 | 54,209,028 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 191 | java | package game.graphics.effects;
public interface Updatable {
public void update(long dtime);
public void render();
public void destroy();
public void kill();
public boolean isAlive();
}
| [
"aborysa@gmail.com"
] | aborysa@gmail.com |
47c28f34e55bb76b2af7300f827b536030c18651 | 709d581732f5026d2d637205ea28bad58e9bda7c | /test/src/main/java/fpt/finish/severlet/QuanLyUserController.java | eb34fc8ef5385b445b56fe1c21751ec48a7de7b3 | [] | no_license | quachtan/finish | 614b5053ff45af60285c78392fa6ccc82bec1935 | a88930904634a4ca0b20ce09326aeeedbb00525f | refs/heads/master | 2021-08-26T09:09:44.860955 | 2017-11-22T17:56:29 | 2017-11-22T17:56:29 | 108,884,949 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,976 | java | package fpt.finish.severlet;
import java.io.IOException;
import java.sql.Connection;
import java.util.ArrayList;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletReques... | [
"33230512+trongngoc96@users.noreply.github.com"
] | 33230512+trongngoc96@users.noreply.github.com |
d59401a1593ed1aac6a9e8f8bd19a4b8c61f361b | 6260b4be792a7efc35bb333de9a62ffba23344e3 | /app/src/main/java/com/harunkor/androidgifviewsample/GifImageView.java | a0c54c00db73b6b5c7ace9d48480c99141031594 | [] | no_license | harunkor/AndroidGifViewSample | cfc58d666ba4c51aa504ee6c2f5e09f8adecb0c5 | 98a8568932130053dfff967c79b58d3959f9cd89 | refs/heads/master | 2021-01-20T00:06:17.381656 | 2017-04-22T15:30:09 | 2017-04-22T15:30:09 | 89,079,834 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,444 | java | package com.harunkor.androidgifviewsample;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Movie;
import android.net.Uri;
import android.os.SystemClock;
import android.util.AttributeSet;
import android.view.View;
import java.io.FileNotFoundException;
import java.io.InputStream;... | [
"harunkor@HARUN-MacBook-Pro.local"
] | harunkor@HARUN-MacBook-Pro.local |
637bc289f2e064b959aa1bd303fbe7f7899d3cfb | 0c8db90e2cd0d1a91d9e384d54c31b1ad881aa7d | /Exercicio27.java | 62c2301e1fa5ab53f747ca207b8381832f70ad8d | [] | no_license | ViniciusAlmeidaIFC/Lista-Repeticao-POOI-2019 | 6083018b9ca9117efb29201ee3eabcdf149f2cbd | 0f792f58bd23917f6423309d3dcd3c13a7ed797c | refs/heads/master | 2020-07-04T08:50:16.026536 | 2019-08-13T21:57:40 | 2019-08-13T21:57:40 | 202,228,532 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 607 | java | package com;
import java.util.Scanner;
public class Exercicio27 {
public static void main(String[] args) {
Scanner entrada = new Scanner(System.in);
System.out.println("Lojas Tabajara");
int cont = 1;
float soma = 0;
float num, pagamento;
do {
System.out.print("Produto "+cont+" R$");
... | [
"noreply@github.com"
] | ViniciusAlmeidaIFC.noreply@github.com |
ed47755df55c29c8052e342877c2104b238179b2 | 48d8ce3ba08e482a2253f7982a01998518a91517 | /src/main/java/com/zte/model/UserInfo.java | e030b2d179779d9ba472a773b6d20e3885ab4dde | [] | no_license | daviddai429/springboot | b7ba3d4653269062da97db2c2e06928932f9dd7a | 340d294baa6c51194d3eb3e25dcfe171f3a30135 | refs/heads/master | 2021-06-27T05:08:13.618945 | 2017-09-17T13:50:11 | 2017-09-17T13:50:11 | 103,832,461 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,759 | java | package com.zte.model;
import java.util.List;
/**
* 用戶信息表
* @author david
*
*/
public class UserInfo extends BaseModel {
private String username;
private String password;
private String usertype;
private Integer enabled;
private String realname;
private String qq;
private String email;
... | [
"18766253119@163.com"
] | 18766253119@163.com |
26e5388aa5f07d057581693156a259e15ca120b5 | eda23998e87ee63e25ea7587bc232c3ff36fb6ac | /geobatch/webapp/src/test/java/it/geosolutions/geobatch/jetty/StartDESTINATION.java | d51fbb20b38de8397b3787a3ed62b2673ff37fb7 | [] | no_license | geosolutions-it/destination | ad260ae0f34140f77210ab347c5f91086b32dcc2 | f9d65cc2f30e6cb14590539ea2d6fa8c296af133 | refs/heads/master | 2023-07-19T08:58:10.249183 | 2015-09-24T15:19:20 | 2015-09-24T15:19:20 | 7,544,277 | 0 | 4 | null | 2015-12-17T14:01:00 | 2013-01-10T16:22:05 | Java | UTF-8 | Java | false | false | 3,673 | java | /*
* GeoBatch - Open Source geospatial batch processing system
* http://geobatch.codehaus.org/
* Copyright (C) 2007-2008-2009 GeoSolutions S.A.S.
* http://www.geo-solutions.it
*
* GPLv3 + Classpath exception
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of... | [
"damianofds@gmail.com"
] | damianofds@gmail.com |
163d3c44c99c64cc294c55a82ddd0b9b9d1b0fff | c9edd21bdf3e643fe182c5b0f480d7deb218737c | /dy-agent-log4j/dy-agent-log4j-core/src/main/java/com/hust/foolwc/dy/agent/log4j/core/util/datetime/DateParser.java | 730fc21b42aa69c14b15b3856b85e500bf7b0f3c | [] | no_license | foolwc/dy-agent | f302d2966cf3ab9fe8ce6872963828a66ca8a34e | d7eca9df2fd8c4c4595a7cdc770d6330e7ab241c | refs/heads/master | 2022-11-22T00:13:52.434723 | 2022-02-18T09:39:15 | 2022-02-18T09:39:15 | 201,186,332 | 10 | 4 | null | 2022-11-16T02:45:38 | 2019-08-08T05:44:02 | Java | UTF-8 | Java | false | false | 5,132 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache license, Version 2.0
* (the "License"); you may n... | [
"liwencheng@douyu.tv"
] | liwencheng@douyu.tv |
3d4824d6de4dfbec228671e330cdcace61954c81 | 57607404d2006cfd6ce5098b73d4ab2a5015c702 | /src/grades.java | 835ca99f6d0d2ac09866cfa232483fa5cf6c4954 | [] | no_license | agregforrester/pset-3 | e5939a0f346f318767e3db18f4349262a9022bb9 | ca76eb15f9703434390d5fb0e470b74bea3da3c9 | refs/heads/master | 2022-12-24T12:44:52.988341 | 2020-09-28T20:59:31 | 2020-09-28T20:59:31 | 296,691,240 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,239 | java | import java.util.Scanner;
public class grades {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Homework 1 : ");
double homework1 = in.nextDouble();
in.nextLine();
Sys... | [
"agregforrester@gmail.com"
] | agregforrester@gmail.com |
fdee542756ade2163164947d6f0ee035419563e3 | d99b5c846628cba29622048454cba3546c305e3c | /datacenterframework/src/main/java/br/framework/domain/mission/SpaceMission.java | f4b1d1cfab74bdf1469f40593fb1520f3237ab59 | [] | no_license | anovais/famtee | 14ae0eaf3bb128d0cddbf077cb4e2a2c8b92d155 | 48c32f5a47696b1d61345be367d2a2fca510da36 | refs/heads/master | 2021-01-13T11:58:32.047812 | 2017-02-07T00:44:00 | 2017-02-07T00:44:00 | 81,148,333 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,617 | java | package br.framework.domain.mission;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;
import javax.persistence.CascadeType;
import javax.persistence.ElementCollection;
import javax.persistence.Embedded;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.pers... | [
"Andre Novais"
] | Andre Novais |
da4b18118a2abe7b1e3075ebaad53adff53ff8ae | fe83cee7e251f2085bd1516ec36711a3ec044251 | /forum/forum-web/target/tmp/jsp/org/apache/jsp/WEB_002dINF/jsp/role/list_jsp.java | e98690f649931bf8e1cbc796239bbfe2f88174e1 | [] | no_license | aymwxbb2012/forum | f983e99938a694ed22775933ed7f80241c19879a | cc3697746d0cc60c6ceda6b6dac8298b4f7c35d0 | refs/heads/master | 2021-01-02T09:35:36.285152 | 2018-09-27T06:42:24 | 2018-09-27T06:42:24 | 99,254,600 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,263 | java | package org.apache.jsp.WEB_002dINF.jsp.role;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
public final class list_jsp extends org.apache.jasper.runtime.HttpJspBase
implements org.apache.jasper.runtime.JspSourceDependent {
private static final JspFactory _jspxFactory = JspFac... | [
"liangchaotech@gmail.com"
] | liangchaotech@gmail.com |
f43a109e10421f61f42afef4e8b4a1efab2b729d | b96387cf04a4a82754762f87294564d2b2ffcd71 | /src/main/java/com/gishere/aicamera/config/http/domain/push/SmartData.java | ba7bfa0da2ba7aa1af3b8133ab4ec78485feac4d | [] | no_license | nixuechao/ai-camera | 91dc80786e4b414609709b943d0f6786e3b0cab3 | ffba0cd4e19b39d1d5d47df2598def53f302367d | refs/heads/main | 2023-03-20T00:16:34.460759 | 2021-03-08T14:02:24 | 2021-03-08T14:02:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 589 | java | package com.gishere.aicamera.config.http.domain.push;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import lombok.Data;
import com.gishere.aicamera.config.http.domain.push.smart.*;
/**
* @author niXueChao
* @date 2021/2/4.
*/
@JsonAutoDetect(getterVisibility=JsonAutoDetect.Visibility.NONE)
@Data
public c... | [
"nixuechao@live.com"
] | nixuechao@live.com |
8fbb4a44d4b00f0b3a4bd1019038941735094859 | 34fa725679633f757a2b758f6eebb699d72488e8 | /task-manager/src/main/java/com/colpatria/taskmanager/commons/domains/generic/UserDTO.java | 2e7754814e5970cafc5a898c5131d88a044f4849 | [] | no_license | jsquimbayo/Colpatria-Task-manager | 88f2b6510a34fd5dd6fb1b3b1aae3c416571a2b0 | ec74d74d65bebb6f81812de6023ee0213e7940fe | refs/heads/main | 2023-09-05T23:17:53.125096 | 2021-11-18T18:43:50 | 2021-11-18T18:43:50 | 429,539,907 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 384 | java | package com.colpatria.taskmanager.commons.domains.generic;
import lombok.*;
@Data
@AllArgsConstructor
@NoArgsConstructor
@ToString
@Builder
public class UserDTO {
private String idUser;
private String nameUser;
private String lastNameUser;
private String identUser;
private String mailUser;
p... | [
"jsquimbayo@soaint.com"
] | jsquimbayo@soaint.com |
d1af8f9ef0cfd6714965446280218178bf561718 | 90ccb066437d0323009c32c3cec1592e10a7e0b9 | /SGame/app/src/main/java/kr/ac/kpu/game/s2016180003/sgame/framework/GameBitmap.java | 966d17756827daa006c7c5a7db93f5b171da3740 | [] | no_license | hd3379/SGPProjects | 7bdcb905a7b0f712c5802058bf0fdb6cae8e6968 | 28d86491504990cd8194a344129e3f57425c77a0 | refs/heads/main | 2023-05-22T08:24:00.083249 | 2021-06-10T19:33:43 | 2021-06-10T19:33:43 | 350,710,057 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 784 | java | package kr.ac.kpu.game.s2016180003.sgame.framework;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import java.util.HashMap;
import kr.ac.kpu.game.s2016180003.sgame.view.GameView;
public class GameBitmap {
private static HashMap<Integer, Bitmap> bitm... | [
"hd3379@naver.com"
] | hd3379@naver.com |
9955c982a7694f9863b90ee54fd3df16748ae233 | 42aaa68a848c0f5cbedf265567e2466e4b1d6757 | /src/main/java/jxl/biff/drawing/Dgg.java | f19b2c31abb42219861e42b6939c6df4108eacd0 | [] | no_license | qinglinyi/jexcelapi-gradle | c6abd8ada1a75a06b1ed8d102c983ae203eba46a | d50a877597c54f578855b315902e18f149fc3503 | refs/heads/master | 2021-01-16T15:49:02.486798 | 2017-02-01T09:47:27 | 2017-02-01T15:22:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,213 | java | /*********************************************************************
*
* Copyright (C) 2003 Andrew Khan
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.... | [
"mtrakal@gmail.com"
] | mtrakal@gmail.com |
46b97f43aca46ae6e21cb3f2448e6ce9ec72a9ba | 3cc4d5e841e30b5717a6fb2fdb05b12405b2d3ce | /RobotOnTiles/src/main/java/assignment/home/tina/Translator.java | 071bb45e49eaa9292158d419220c1a2c6823911a | [] | no_license | stortina/AuditionStortina | 1ff198974281f0261ad5a28a6111bc3676fb9039 | 3cbf50cbace9d08545aa0c412dcd6633a7192e92 | refs/heads/master | 2020-12-25T19:26:21.957482 | 2012-03-26T19:33:55 | 2012-03-26T19:33:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,482 | java | package assignment.home.tina;
//import java.util.regex.Matcher;
//import java.util.regex.Pattern;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class Translator {
private final static Logger LOG = LoggerFactory.getLogger(Translator.class .getSimpleName());
public static String ... | [
"stortina@gmail.com"
] | stortina@gmail.com |
2ee09bb86bee13e8ebebf267d16d55aa90313e54 | eace8b32a87489266bec9f2a867f89e6b9caa5e7 | /GingerUI/gingerui/src/main/java/com/spicerack/framework/frameworkutilities/LogUtil.java | 72a68f794e6887fee2e02342367343d04c92a6cd | [] | no_license | nageshphaniraj81/SpiceRack | d3e161918b9f4a7c40b23f9762f991df98d13699 | 4a3078f426f46d3d8c9cb491bf2ce65e0c9b5cdd | refs/heads/master | 2021-01-20T02:42:30.159445 | 2019-03-14T10:40:31 | 2019-03-14T10:40:31 | 89,444,622 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,040 | java | /*
*
*/
package com.spicerack.framework.frameworkutilities;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.time.ZonedDateTime;
import java.time.format.DateTimeFormatter;
import com.spicerack.framework.configuration.ConfigReader;
import com.spi... | [
"nageshphaniraj81@gmail.com"
] | nageshphaniraj81@gmail.com |
0c31eafa2e7409fa0ef80c628bd673be38ea370c | 0c13449e14bb50987b2a16a8f8798daaae5c44c9 | /hotel/common/jpacommonsecurity/com/jython/serversecurity/jpa/OObjectAdminJpa.java | 438711862d3b604c57111f84d9dca10b458083f4 | [] | no_license | digideskio/javahotel | 68929601930ef6cbee2e6d06fc8b92a764e5663e | 169d131f9e515fa3032fe061e3bcb0512950ffbc | refs/heads/master | 2021-01-13T03:39:34.874305 | 2016-12-06T22:42:42 | 2016-12-06T22:42:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 13,629 | java | package com.jython.serversecurity.jpa;
/*
* Copyright 2016 stanislawbartkowski@gmail.com
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
... | [
"stanislawbartkowski@gmail.com"
] | stanislawbartkowski@gmail.com |
64fe5dcb7859611e3f1ded36e5a1d50d13318ea0 | 66e307e4a2ed39ae7de82759d6c6f8b1eb278484 | /src/main/java/br/ifpe/pp2/controller/VideoAulaController.java | 8928c7e4a27b66dfc66b476e646fad9aeee76923 | [] | no_license | TaisSantana/Projeto-2-IFPE | 445d73fad8ef054c954d2c4cc96544cffb0477c3 | 334bd2bbffc03bf673c37ebd6fea22b43d3d2a38 | refs/heads/master | 2023-08-14T22:56:05.731634 | 2021-08-17T03:02:08 | 2021-08-17T03:02:08 | 368,006,597 | 0 | 1 | null | 2021-08-17T03:02:09 | 2021-05-16T23:35:38 | CSS | UTF-8 | Java | false | false | 71 | java | package br.ifpe.pp2.controller;
public class VideoAulaController {
}
| [
"54585626+TaisSantana@users.noreply.github.com"
] | 54585626+TaisSantana@users.noreply.github.com |
4bdf2f8539e1863729244f523c8469a49e46e5c9 | 89dc8e394218cb49b4d3d46f0bbd1db4b010fed7 | /idea2/ProjectSpringmvc/src/com/systop/controller/ProController.java | 90c7b81917fd048047399a045cc349b2e7a0530e | [] | no_license | cloud-star-player/java-test | 90ee45a78a3a6a69d5e588cad5e2360fd59e7ffc | dbad0c81a291a7b9c2cf324cf8fd0e83da451b93 | refs/heads/master | 2022-12-04T16:20:29.788999 | 2020-08-15T11:17:35 | 2020-08-15T11:17:35 | 287,731,861 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,671 | java | package com.systop.controller;
import java.util.List;
import java.util.UUID;
import java.io.File;
import java.net.URLEncoder;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Contr... | [
"2906801776@qq.com"
] | 2906801776@qq.com |
1358652d078a2969bdb44b99acf190a75c4d63a5 | f4fec896b47fd72f9fb81b5fef037bda86d035f7 | /app/src/main/java/com/example/videoplayer/view/MyViedeoPlayer.java | 5c707a313049a867875ea5092d58cf31467ea351 | [] | no_license | zhuandian/videoplayer | e313a3cbf73c3317103b6118aa761da6f5d034b0 | 03eccd17d3271905e09448eb8037c0d7baf278a9 | refs/heads/master | 2021-01-04T06:47:08.902324 | 2020-02-22T10:54:24 | 2020-02-22T10:54:24 | 240,435,893 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 945 | java | package com.example.videoplayer.view;
import android.content.Context;
import android.util.AttributeSet;
import cn.jzvd.JZVideoPlayer;
import cn.jzvd.JZVideoPlayerStandard;
/**
* desc :
* author:xiedong
* date:2020/02/07
*/
public class MyViedeoPlayer extends JZVideoPlayerStandard {
private OnVideoPlayingList... | [
"xiedong11@aliyun.com"
] | xiedong11@aliyun.com |
86ff2840b9e7be8b517357fc984bf05aa69e5017 | 4d0c8db0342cdc1ba109ffcfda77fda9514b77a7 | /src/hawox/uquest/PluginListener.java | daabdab1f725ab730cc913d22c1ed5f22dd04427 | [] | no_license | Elephunk/uQuest | cc72560bc2afb4592f73545e7a8d4e813053f151 | 44b79f81853f32d117b189cff0e8abd41a17668a | refs/heads/master | 2021-01-18T05:50:53.711877 | 2011-05-05T03:57:13 | 2011-05-05T03:57:13 | 1,689,984 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,221 | java | package hawox.uquest;
import org.bukkit.event.server.PluginEnableEvent;
import org.bukkit.event.server.ServerListener;
import org.bukkit.plugin.Plugin;
import com.earth2me.essentials.Essentials;
import com.nijiko.coelho.iConomy.iConomy;
import com.nijikokun.bukkit.Permissions.Permissions;
import cosine.bos... | [
"thehawox@gmail.com"
] | thehawox@gmail.com |
52c0853825c8ddebd6c6ec7a1c509e207eb8aa37 | fec4a09f54f4a1e60e565ff833523efc4cc6765a | /Dependencies/work/decompile-00fabbe5/net/minecraft/world/level/levelgen/feature/WorldGenDungeons.java | b200edc481ef21c92009fdd6bdc8d453560ef46e | [] | no_license | DefiantBurger/SkyblockItems | 012d2082ae3ea43b104ac4f5bf9eeb509889ec47 | b849b99bd4dc52ae2f7144ddee9cbe2fd1e6bf03 | refs/heads/master | 2023-06-23T17:08:45.610270 | 2021-07-27T03:27:28 | 2021-07-27T03:27:28 | 389,780,883 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,443 | java | package net.minecraft.world.level.levelgen.feature;
import com.mojang.serialization.Codec;
import java.util.Iterator;
import java.util.Random;
import java.util.function.Predicate;
import net.minecraft.SystemUtils;
import net.minecraft.core.BlockPosition;
import net.minecraft.core.EnumDirection;
import net.minecraft.ta... | [
"joseph.cicalese@gmail.com"
] | joseph.cicalese@gmail.com |
73b11f24de4827e09e7acff07e9531775161af9c | af6cb688760ffd70603efffa285e8469ecaf7834 | /springbootfirst/src/test/java/com/faramarz/spring/springbootfirst/SpringbootfirstApplicationTests.java | 5457ece98b999c9aa0a72d67dd3119d82c92154d | [] | no_license | faramarzaf/SpringReference | fcf84de7399e14d986c51136aa18a6206d7d282b | e953e341c9d43fa04afe850ad2f83876127f0d6a | refs/heads/main | 2023-06-20T18:44:23.564653 | 2021-07-30T08:03:35 | 2021-07-30T08:05:21 | 376,356,228 | 0 | 0 | null | 2021-07-29T20:52:40 | 2021-06-12T18:10:56 | Java | UTF-8 | Java | false | false | 236 | java | package com.faramarz.spring.springbootfirst;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class SpringbootfirstApplicationTests {
@Test
void contextLoads() {
}
}
| [
"faramarzafzali@gmail.com"
] | faramarzafzali@gmail.com |
f6485390e234eb9a07aa14682e41a055f3e115c1 | 681e97a53c76afc2ffdfceeb2bfecdb3ffd9aeff | /app/src/main/java/com/ihm/myapp/entity/DurationObject.java | 883fe82cbdbbcb2c3d65228f92d2777fb96cc9e3 | [] | no_license | madforfame/jogging | 3b936f387552917eae47026820c71dbeeb036c85 | 3110f91cada5e0663590d2f11fdce9a58da71020 | refs/heads/master | 2020-08-26T11:36:26.371885 | 2019-11-06T09:29:30 | 2019-11-06T09:29:30 | 217,005,124 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 324 | java | package com.ihm.myapp.entity;
public class DurationObject {
private String text;
public DurationObject(){}
public DurationObject(String text) {
this.text = text;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
... | [
"liveforlove123123+"
] | liveforlove123123+ |
4e7956a478c7b71287a114c4fd1d915e44b288b2 | 8f7d1e218613839fc5bf1daec09aa1a80bdc29da | /src/main/java/com/orange/entity/ListSortUtil.java | 0130997db9f77ba3d967d3cabf170cce5b9a8f87 | [] | no_license | Alex429/gittest | 320fd096a9b15e6211f37f949261be1fb639cc92 | 25d4f2cdcfa3a2090ef1d71d976e42c1992e4ac5 | refs/heads/master | 2020-03-22T09:26:35.039120 | 2018-07-05T11:42:44 | 2018-07-05T11:42:44 | 139,837,607 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,798 | java | package com.orange.entity;
import java.lang.reflect.Method;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
public class ListSortUtil<T> {
/**
* @param targetList 要排序的集合(使用泛型)
* @param sortField 要排序的集合中的实体类的某个字段
* @param sortMode 排序的方式(升序asc/降序desc)
*/
... | [
"1007098107@qq.com"
] | 1007098107@qq.com |
fde6b5781035dd1c33d30dfbfd0df4f88a784392 | 720ba343ce147af5b3881679e3b2aebd21d62910 | /multi-language/src/main/java/com/greentea/multilang/controller/FileController.java | 65333afcdfa7117f3746a16a30243b7156ad1de5 | [] | no_license | tomlxq/ShowCase | 698ffdaf16979c8197cba5a1f97c179b25617281 | 17717c3411c98ede281c75a747ff3583b82e5997 | refs/heads/master | 2021-01-20T10:10:49.638899 | 2018-11-22T16:31:56 | 2018-11-22T16:31:56 | 28,090,123 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,678 | java | package com.greentea.multilang.controller;
import org.apache.commons.io.FileUtils;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
... | [
"21429503@qq.com"
] | 21429503@qq.com |
877b733ebe6e04ec3f08fa127f065004bb9f2651 | 246cb32999128007fda169aa1c6070bdce3e4464 | /GamoManosALaObra2019/src/Utility/Utilities.java | 76b5fa6ff62f80d40b70d44700c792bf1c9d9ff9 | [] | no_license | stevenmr98/Gamos-ManosALaObra | ad20dafadfec981f80ed4cd7e337cb1b274d5b84 | ea5492b2246818c4a26419319becff09f82b959c | refs/heads/master | 2020-05-01T14:20:41.131528 | 2019-04-05T05:55:50 | 2019-04-05T05:55:50 | 177,517,201 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 159 | java |
package Utility;
/**
*
* @author Steven
*/
public class Utilities {
public static String PATHTOSAVEADMINISTRATORS="Administrator.dat";
}
| [
"noreply@github.com"
] | stevenmr98.noreply@github.com |
f5f51c8e23a377d9cee6ece1d118ea9cbbf9a6f2 | 763b71c5c56bedee02e29fed6bb206556a30a45e | /app/src/main/java/com/xyd/red_wine/balance/BalanceActivity.java | 74bdf713c08cc1a20a004c345dee0bfa7591fe53 | [] | no_license | zhengyiheng123/Red_wine | 8d39bacd4e18642d4179cf436b037055cf1d98a6 | 3173de942c29f864ada6d1a70e7033bc28487597 | refs/heads/master | 2021-08-28T21:35:18.089452 | 2017-12-13T06:30:35 | 2017-12-13T06:30:35 | 100,663,653 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,355 | java | package com.xyd.red_wine.balance;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.text.TextUtils;
import android.view.View;
import android.widget.ImageView;
import android.widget.RelativeLayout;
i... | [
"15621599930@163.com"
] | 15621599930@163.com |
8110b1bcb4cf740ed30a65adbe71ddf639462cd9 | d3d4bf071cef3df0735dde43ec800c80cad28922 | /services/gamemgmt-service/src/main/java/com/trdsimul/gamemgmt/model/entity/Roles.java | 0159f2ec5185c948e766ea28768daea8fbc16f3f | [] | no_license | Damini25/TradeDashboard | 0df566365a2c066ab65135b299df09215f45a4a2 | 7686cf94410860be07a9313a7d8ba12882d75783 | refs/heads/master | 2022-07-14T18:44:32.922095 | 2021-01-02T05:45:01 | 2021-01-02T05:45:01 | 200,001,631 | 0 | 0 | null | 2022-06-29T18:28:01 | 2019-08-01T07:37:02 | JavaScript | UTF-8 | Java | false | false | 872 | java | package com.trdsimul.gamemgmt.model.entity;
import java.util.Date;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table
public class Roles {
@Id
private Integer roleId;
private String roleName;
private Date lastUpdate;
public Roles() {
super();
}
pu... | [
"damgarg@publicisgroupe.net"
] | damgarg@publicisgroupe.net |
1d96e099a9719ce339867eacd32fa21c7618e92a | 3ad3b08bd84691cb40de4c3835218a39556852d6 | /Java prototype/src/SettingsPage.java | 85365ef5c0ea345fd86c94cf426ee0226cea18f1 | [] | no_license | SomeBeavers/StyleClassification | fe3cea483eab35153445bdaf8320f6a0852beee2 | 7b8634b7736cee8533fd611bc98679855ac6290e | refs/heads/master | 2021-06-16T19:44:09.682056 | 2017-04-18T15:41:38 | 2017-04-18T15:41:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,054 | java | import BayesClassifier.DBHelper;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.MultipartConfig;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.Htt... | [
"Lilija146@yandex.ru"
] | Lilija146@yandex.ru |
ba7f6e70923ad8687244457a90402d6a6c744b91 | 1c28979765ab5020071da0333afc851d92e44218 | /Servidor/src/servidor/Server.java | 6a1bc9c525074ddc0062ca95d8efa9f80ddda59b | [] | no_license | planthree1/SI | 4ea63f27281a9c63a7ec7f94f3c814ccb9346ec8 | b74eb9ddd2273f8d13906c47d8cf2493733ae7d8 | refs/heads/master | 2020-04-03T19:40:05.449224 | 2019-01-09T10:37:25 | 2019-01-09T10:37:25 | 155,530,829 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,154 | java | package servidor;
import java.net.Socket;
import java.net.ServerSocket;
import java.net.InetAddress;
class Server {
static public void
waitForClients ( ServerSocket s ) {
ServerControl registry = new ServerControl();
try {
while (true) {
Socket c = s.accep... | [
"joaoprm@ua.pt"
] | joaoprm@ua.pt |
437f99fd942a339c4147036f97cff3ca6e012a15 | 8af1164bac943cef64e41bae312223c3c0e38114 | /results-java/alibaba--druid/78488b0b1ab0fb312cd0c0ec4c591ed68362f91d/after/Oracle_pl_if_2.java | 3e76b3edc53a51f2f2b6a3a80096917465ea9270 | [] | no_license | fracz/refactor-extractor | 3ae45c97cc63f26d5cb8b92003b12f74cc9973a9 | dd5e82bfcc376e74a99e18c2bf54c95676914272 | refs/heads/master | 2021-01-19T06:50:08.211003 | 2018-11-30T13:00:57 | 2018-11-30T13:00:57 | 87,353,478 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,033 | java | /*
* Copyright 1999-2017 Alibaba Group Holding Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... | [
"fraczwojciech@gmail.com"
] | fraczwojciech@gmail.com |
67195c493ed03a483a0894d1a0c34f258ae4831a | b84ecda4559551a58658945b78505d0da96f8bc5 | /develop/source-code/framework/msg-framework/src/com/zte/mos/msg/framework/CommServiceFactory.java | 34328b564a740dae2b696cc50f3806b51b166619 | [] | no_license | qingw/mos | bb114f0d1fafea4d19ec839309900473075541cb | dff2428487293a7cb1ae5f98718f985a6f7362bc | refs/heads/master | 2023-03-16T07:54:18.515765 | 2018-10-18T10:45:01 | 2018-10-18T10:45:01 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,423 | java | package com.zte.mos.msg.framework;
import com.zte.mos.msg.framework.session.ISessionConfigBuilder;
import com.zte.mos.msg.framework.session.ISessionService;
import com.zte.mos.util.Scan;
import java.lang.reflect.Constructor;
import java.util.Set;
public class CommServiceFactory
{
private static ISouthService se... | [
"liu.wei91@zte.com.cn"
] | liu.wei91@zte.com.cn |
56508249c564041e64655dcdfeb3349dbf71118c | abb505b77b09acf19c1a19000c6332e41eba14bd | /Conticious.HlokkPlugin/src/main/java/no/kodegenet/conticious/plugin/hlokk/HlokkAuthService.java | c30dcf4bee0b332a92ef2c27c57a5c6dda1326af | [
"Apache-2.0"
] | permissive | oddbjornkvalsund/Conticious | 2fcac3462334acb55981d8449299cdb9d51160c5 | 33557d3197127984a8f9683f2f4a2365e65861c2 | refs/heads/master | 2021-01-26T06:59:46.308832 | 2020-02-27T07:42:05 | 2020-02-27T07:42:05 | 243,356,369 | 0 | 0 | Apache-2.0 | 2020-02-26T20:14:28 | 2020-02-26T20:14:27 | null | UTF-8 | Java | false | false | 2,053 | java | package no.kodegenet.conticious.plugin.hlokk;
import no.haagensoftware.contentice.util.RandomString;
import no.kodegenet.conticious.plugin.hlokk.data.HlokkUser;
import java.util.*;
/**
* Created by joachimhaagenskeie on 16/08/2017.
*/
public class HlokkAuthService {
private static HlokkAuthService instance = n... | [
"joachim@haagen.name"
] | joachim@haagen.name |
b9cb9725b139bfceee1a9a6fd805eff8fcf9cbcd | 908975042ea662f775192d22927d5485368668dc | /app/src/main/java/kamrulhasan3288/weatherapp/component/WeatherApiComponent.java | 5b6a2d6372b120accfe27b70039a631d1e88303c | [] | no_license | kamrul3288/WeatherApp | ef89191920eef546811029db4a132b1aa5468035 | 96536174202d5f641d46897bd22ab37222306188 | refs/heads/master | 2020-03-18T21:53:04.372030 | 2018-05-29T14:59:12 | 2018-05-29T14:59:12 | 135,310,552 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 399 | java | package kamrulhasan3288.weatherapp.component;
import dagger.Component;
import kamrulhasan3288.weatherapp.interfaces.WeatherApi;
import kamrulhasan3288.weatherapp.module.WeatherApiModule;
import kamrulhasan3288.weatherapp.scope.WeatherApplicationScope;
@Component(modules = WeatherApiModule.class)
@WeatherApplication... | [
"kamrulhasan3288@gmail.com"
] | kamrulhasan3288@gmail.com |
f416145d344577aae47ecfbd9d301b4a096c4eae | 4a886eb79b50f6b6e93c360e7ee085569bcaedd9 | /ProtocolBuffer/src/ProtoWrite.java | 1dcea283f77fd4dda3927560e45727b8c7525d5a | [] | no_license | dandujaipalreddy/DataSerialization | cc28e7d24307112ddc48955763b9d4879aa4082f | 47154be223309fa77ed0468a00e22532f7d078f5 | refs/heads/master | 2021-01-10T12:42:53.699725 | 2015-11-09T16:25:06 | 2015-11-09T16:25:06 | 45,820,729 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,746 | java | import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintStream;
import com.example.tutorial.AddressBookProtos.AddressBook;
import com.example.tutorial.AddressB... | [
"dandujaipalreddy@hotmail.com"
] | dandujaipalreddy@hotmail.com |
0b087e6b48c76b4f564ec3d9ba1b6693d3e94e1f | 61b010b34e3a5e01b75b6496e14f288391c33ab3 | /hondayesway-hu-service/src/main/java/cn/yesway/common/soap/userextrainfoservice/UserExtraInfoService_Service.java | ebcdfca1346766271f72857ce3a9d5e091f779c7 | [] | no_license | respectOrg/hondayesway | 2d7cab76e96a95653c44dcdc4ac7ac8ed4b7162c | b68635ed40fc6136ed650538d3421775eff4a0ab | refs/heads/master | 2021-07-14T21:16:14.043261 | 2017-10-20T03:32:01 | 2017-10-20T03:32:01 | 107,385,500 | 1 | 2 | null | null | null | null | UTF-8 | Java | false | false | 734 | java | /**
* UserExtraInfoService_Service.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
*/
package cn.yesway.common.soap.userextrainfoservice;
public interface UserExtraInfoService_Service extends javax.xml.rpc.Service {
public java.lang.Stri... | [
"bksqmy@163.com"
] | bksqmy@163.com |
3164ccd1c0982382859d12a5ab235346b2a5ea7f | e8685ddbe3d5a281ee0f8e9853415a7fa23d764f | /src/main/java/mcgill/fiveCardStud/GameTest.java | f5ecde82e194918662f71ea84060fe033f077b7d | [] | no_license | angelini/ECSE_321-Game | 2b6a75c151b4d2c86389db7ef6e61fff7e6913d3 | a28d0be0031bcc37713bf8f145ec2fd94a76f7ab | refs/heads/master | 2021-01-22T22:45:51.119891 | 2012-04-15T18:24:46 | 2012-04-15T18:24:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,084 | java | /*
package mcgill.fiveCardStud;
import java.util.ArrayList;
import java.util.Scanner;
import mcgill.poker.OutOfMoneyException;
import mcgill.poker.Player;
import mcgill.poker.Hand;
import mcgill.poker.Card;
import mcgill.poker.TooFewCardsException;
import mcgill.poker.TooManyCardsException;
public class GameTest {
... | [
"alex.louis.angelini@gmail.com"
] | alex.louis.angelini@gmail.com |
f4eeaee1ca3e292f65bfec2f9bc17b283dfcb1ec | 15cab14e7bf380b825acd18c2fed4a7c59f00170 | /ReverseString.java | 393871176e1bed9efc0e494fcc4ad84bb809728b | [] | no_license | fenil9/utils | 3cfcefe6208be4699d992bb680123fda71cd4286 | 01be318d6ab00e6affd28d698af562f88ff34df9 | refs/heads/master | 2020-05-16T05:51:50.768197 | 2019-04-22T16:52:54 | 2019-04-22T16:52:54 | 182,829,094 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 669 | java | import java.lang.*;
import java.io.*;
import java.util.*;
class ReverseString
{
public static void main(String[] args)
{
String input = "fedcba";
// getBytes() method to convert string
// into bytes[].
byte [] strAsByteArray = input.getBytes();
byte [] re... | [
"noreply@github.com"
] | fenil9.noreply@github.com |
8d8782d98aca5fc34e181ad63bd56dcdd94740c5 | d8e924ef91475ee893b7d550b78dc97fdd321a49 | /apidiff-lib/src/main/java/net/ninjacat/brking/api/ApiObjectPool.java | 1d0040954a9a08cfc9e6281955228078c8f01094 | [
"MIT"
] | permissive | uaraven/brkng-change | d0fb9853d00ae661d701685168caa59d27e3626e | 0e48ffa93721c123c03a1394feabc76c6439c3b7 | refs/heads/master | 2023-06-23T22:54:58.701028 | 2023-06-16T13:34:07 | 2023-06-16T13:34:07 | 246,708,592 | 0 | 0 | MIT | 2023-06-16T13:34:09 | 2020-03-12T00:31:14 | Java | UTF-8 | Java | false | false | 821 | java | package net.ninjacat.brking.api;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.function.Function;
import java.util.stream.Collectors;
public class ApiObjectPool<T> {
private final Map<String, T> objects;
protected ApiObjectPool(final List<T> objects, final Function... | [
"ovoronin@gmail.com"
] | ovoronin@gmail.com |
6e53010da1f7ddbe6bb170a2e36f86e31ac49ebb | be8005660700eb1785c91f9c5ac263c8d13ebfd4 | /javasrc/edu/brown/cs/fait/testgen/TestgenReferenceValue.java | 88eeddf4d1503c957182ccf16b998968f7986a1c | [] | no_license | StevenReiss/fait | e1403ae4a2509d92f83e64ebea5e240c58719f51 | af54cd525ac86ccc07850832eacb99dc3845dfde | refs/heads/master | 2023-08-17T08:00:02.711001 | 2023-08-16T15:30:41 | 2023-08-16T15:30:41 | 183,441,883 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,824 | java | /********************************************************************************/
/* */
/* TestgenReferenceValue.java */
/* ... | [
"spr@cs.brown.edu"
] | spr@cs.brown.edu |
2cf6f463d01ce2b84d7268d9120593186bcfcf2f | e184db02f3b9051f78184cebbc0a0f66cf5cc48f | /src/main/java/com/coller/clibrary/service/UserService.java | 487aff9d3f83ec45558226697d112ea57a2088e2 | [] | no_license | npmcdn-to-unpkg-bot/clibrary | e6e5e0406d719a88fc3aa4b55e6b677f958f5e1a | ac1de95e844b00730a7c958cd32657e728d43c8d | refs/heads/master | 2021-01-24T23:50:36.780291 | 2016-08-23T17:49:52 | 2016-08-23T17:50:08 | 67,340,698 | 0 | 0 | null | 2016-09-04T11:20:43 | 2016-09-04T11:20:43 | null | UTF-8 | Java | false | false | 397 | java | package com.coller.clibrary.service;
import com.coller.clibrary.entity.Authority;
import com.coller.clibrary.entity.User;
import com.coller.clibrary.exception.UserExistsException;
import org.springframework.security.core.userdetails.UserDetails;
import java.util.List;
public interface UserService {
UserDetails a... | [
"drummerc25@gmail.com"
] | drummerc25@gmail.com |
76fc422e44179fee7e8e5de0e6ea4761fd3591fa | 58f9ed107e610a612af459d8231fbe97dd0c814f | /src/main/java/com/ht/extra/pojo/outpbill/ChargeReduceMaster.java | afc85cc8e3ace4cac1c48c96ecc8bcc417f25edb | [] | no_license | tangguoqiang/htwebExtra | 3bee6434a87e9333d80eeb391f80dfb72178675d | ca9d50a66586905d5164f6087b7778f233a1fd13 | refs/heads/master | 2020-03-15T13:13:57.645083 | 2018-08-22T12:54:44 | 2018-08-22T12:54:44 | 132,161,700 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,519 | java | package com.ht.extra.pojo.outpbill;
import java.math.BigDecimal;
import java.util.Date;
public class ChargeReduceMaster {
private Integer serialNo;
private String rcptNo;
private String patientId;
private Short visitId;
private String name;
private String chargeType;
private String u... | [
"ttang11@its.jnj.com"
] | ttang11@its.jnj.com |
3479acc5eb511fee5e7dedf38f42fe9e6f2eb93f | a6a1516fd45ef009fbf50581293ce001c19dab67 | /src/com/sujan/lms/entity/author/Author.java | e039efe4ccf77fe2a7c3d2ddf24da93aa40cc22b | [
"Apache-2.0"
] | permissive | suzan-1515/Library-Management-System | c2eeea0ea24d99e14cfcf84696fd3026aba69560 | c9ef0089d080fcdc7ea03724e295bcabdeeff751 | refs/heads/master | 2021-08-29T10:46:03.630383 | 2017-12-13T19:05:02 | 2017-12-13T19:05:02 | 106,183,660 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,387 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.sujan.lms.entity.author;
import java.io.Serializable;
/**
*
* @author Suzn
*/
public class Author impleme... | [
"Suzn@DESKTOP-0ISHRHQ"
] | Suzn@DESKTOP-0ISHRHQ |
d4807df369c466f01e9e0cdd961ef147b90c1edd | dc0790c71fb8a2eac4d541b236081c233f27d633 | /src/main/java/com/example/kkcbackend/service/DataService.java | 8e51298ecb489d00614c163caa761bc1af02d2b7 | [] | no_license | D3V41/kkc-backend | df417420d5734ffdbee07c8b7b009c8ba98f6bf5 | 2f3fd45f27be678ea51f4c659bbede9b6dacb56a | refs/heads/master | 2023-06-21T00:03:23.297683 | 2021-07-15T15:34:39 | 2021-07-15T15:34:39 | 379,503,900 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,619 | java | package com.example.kkcbackend.service;
import com.example.kkcbackend.dao.DataDao;
import com.example.kkcbackend.model.Data;
import com.example.kkcbackend.payload.responce.StatusResponce;
import com.example.kkcbackend.payload.responce.UnitListResponce;
import org.springframework.beans.factory.annotation.Autowired;
imp... | [
"deval.italiya@gmail.com"
] | deval.italiya@gmail.com |
88c494abcbbfc1d5dd598116725f149eea65ee53 | 27a1accb04033c111ed32ca9539798687a01e1a0 | /Stacks-On/src/com/stacks_on/accounts/GenericAccountService.java | 629bd8908d1a11aec7fc886fe6808c5993917d5f | [] | no_license | kaputnikGo/Stacks-On | fff3d28d7254b9c8bc2e0fcad3ee476591b7c908 | 0907b87aafd79d9124d6875d0c8d723e8bc58caa | refs/heads/master | 2021-01-10T08:46:42.206395 | 2015-11-15T22:21:46 | 2015-11-15T22:21:46 | 44,781,907 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,640 | java | package com.stacks_on.accounts;
import android.accounts.AbstractAccountAuthenticator;
import android.accounts.Account;
import android.accounts.AccountAuthenticatorResponse;
import android.accounts.NetworkErrorException;
import android.app.Service;
import android.content.Context;
import android.content.Intent... | [
"kaputnikGo@gmail.com"
] | kaputnikGo@gmail.com |
514c5a9c4c74e3d26999d82084c0e560803cc70e | b31b2ab93994b59330005d24d2d788e80c4db9dc | /PaintDemo/src/com/example/paintdemo/mywidget/TuYaView.java | 5d194d8ce55ae90b5080d0aca87cb10337de55f7 | [] | no_license | crazysniper/MyDemoTest | 31d04f209a1b546fa32f6dfedb678701377512a1 | a75876319949ab8977d56e5059ee3206e7e61457 | refs/heads/master | 2021-01-21T12:43:43.075653 | 2015-08-06T15:20:48 | 2015-08-06T15:20:48 | 33,294,572 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,624 | java | package com.example.paintdemo.mywidget;
import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Paint.Style;
impor... | [
"1163432768@qq.com"
] | 1163432768@qq.com |
dd01de254e44faa4a724168b4f37ff388634e8a1 | 92ba03db38f54a5c30fad23fe620f9ef5c1a8654 | /src/main/java/org/apache/xmlrpc/server/XmlRpcServerConfig.java | 85806e3f6938a68bf18f6f2fb773baf63cfa7734 | [
"Apache-2.0"
] | permissive | mrccao/xmlrpc-server | 082587f09c16aa56a34f34bf47ad257eb0ac9a6c | 2a7588b02e120e580f2c9b0cb3b89214870599f2 | refs/heads/master | 2020-09-27T22:31:07.459894 | 2019-12-08T04:40:40 | 2019-12-08T04:40:40 | 226,614,391 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,009 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | [
"caochunhb@163.com"
] | caochunhb@163.com |
ec34e7e48e9e89d43af47becf64d419adeccc0f7 | 720340dad26787a400b222740dc813b2e7de40c0 | /tags/yc-2.0.0/domain-api/src/main/java/org/yes/cart/domain/entity/CustomerWishList.java | a6286a59e0ed4d61bd33d890eaab9ce4d4f383db | [] | no_license | svn2github/yes-cart | 2062601f03c433cbfb8cb9aee8bbb82de9d1e0d5 | 0687d3b91d687de46369058d37ef54998deae171 | refs/heads/master | 2021-01-21T11:46:10.756615 | 2015-01-09T23:25:13 | 2015-01-09T23:25:13 | 27,273,015 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,242 | java | /*
* Copyright 2009 Igor Azarnyi, Denys Pavlov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless r... | [
"denis.v.pavlov@gmail.com@b5e963ab-246d-477c-a38c-82af0a68ca80"
] | denis.v.pavlov@gmail.com@b5e963ab-246d-477c-a38c-82af0a68ca80 |
1804c5709465951c9b7c1454c29cac744b03f0c5 | fefe984a326e87f67605f2e9cbb1490d82f101af | /app/templates/src/main/java/package/domain/_Authority.java | f37195d79664f184f5b895f24ed9d34c4ce32075 | [
"MIT"
] | permissive | alanma/generator-jhipster | f0a12248600856f33f4e3879a47c716267c5295d | 935d80541650a36817d0384f9bef3f8fb6a8a2c1 | refs/heads/master | 2021-01-15T11:02:20.434083 | 2013-10-30T16:08:04 | 2013-10-30T16:08:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,351 | java | package <%=packageName%>.domain;
import org.hibernate.annotations.Cache;
import org.hibernate.annotations.CacheConcurrencyStrategy;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;
impor... | [
"jdubois@ippon.fr"
] | jdubois@ippon.fr |
ad59700a8107b5ba92c5194fbdda6073b2f19705 | 1e518c5592b6aa7d9dc60fe50591abad77b8deeb | /HelloWorld/app/src/main/java/com/example/davidkezi/helloworld/MainActivity.java | d85b6fd3e0d78895aa8c7980cb692e2cea542715 | [] | no_license | Mrkezii/Hello_World_andriod | 50693eb121d251fc3b3e4f87005102add71d230f | 9ecaef4f616a359afd98cbe8fb1de78dff40bf3d | refs/heads/master | 2021-01-10T16:24:45.920363 | 2016-03-09T15:34:27 | 2016-03-09T15:34:27 | 52,697,761 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,119 | java | package com.example.davidkezi.helloworld;
import android.content.Context;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.util.Lo... | [
"david.kezi@yahoo.com"
] | david.kezi@yahoo.com |
89b0a7bfda4ef55d9a042ffd5fbe9c1c16e50cb5 | 763402baa75acab62b021275da8e8d5df6294f69 | /src/main/java/com/uta/stcok/ServerGestionStockProduitsApplication.java | 21dcb355a6109bf219f1ec0d51fc58e05ade4196 | [] | no_license | diakitela/ServerGestionStockProduits | 147505e18b0d53a747e593927f2a772252abadc1 | d663a2fdca4edf05c6bd4e4e679c2979b2b1ece2 | refs/heads/main | 2023-03-31T05:21:43.069314 | 2021-04-08T08:16:02 | 2021-04-08T08:16:02 | 355,832,619 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 346 | java | package com.uta.stcok;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class ServerGestionStockProduitsApplication {
public static void main(String[] args) {
SpringApplication.run(ServerGestionStockProduitsApplic... | [
"lassacom@gmail.com"
] | lassacom@gmail.com |
463e2326edbb2046162ca05979f2f2a1043a7ee8 | 39f2037f209a0f267019d4ea7cb7739c9334324f | /src/test/java/org/neo4j/ogm/domain/entityMapping/UserV13.java | 81c25fcfa30ab3984874425716079e8b8d7ff47d | [] | no_license | odd/neo4j-ogm | 9d097435271684444503a6967e89d6ed56417659 | b26d1c3f6248c3763f8d3baa869eeb0ea6047463 | refs/heads/master | 2021-01-16T21:26:38.086441 | 2015-11-12T06:29:20 | 2015-11-12T06:29:20 | 46,112,325 | 1 | 0 | null | 2015-11-13T09:22:06 | 2015-11-13T09:22:06 | null | UTF-8 | Java | false | false | 874 | java | /*
* Copyright (c) 2002-2015 "Neo Technology,"
* Network Engine for Objects in Lund AB [http://neotechnology.com]
*
* This product is licensed to you under the Apache License, Version 2.0 (the "License").
* You may not use this product except in compliance with the License.
*
* This product may include a number ... | [
"luanne.coutinho@gmail.com"
] | luanne.coutinho@gmail.com |
3a30ad5f32d70f58eef91c6a9a0f9f725fc40083 | 341b135bb224b0988a52f9d443e9ef356e00f2e5 | /app/src/main/java/com/usinformatics/nytrip/models/ChatModel.java | 889c65d3cb04ba16a5b3406438a7312987c0d8bb | [] | no_license | lg-studio/NTA-android | 6805e6fc813bc3c51cb09523863ed5695b059f0c | 8a89390bd95ce6e758b8eeed23934f31200687a9 | refs/heads/master | 2021-01-09T06:47:31.397114 | 2016-01-15T21:03:56 | 2016-01-15T21:03:56 | 49,743,246 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,590 | java | package com.usinformatics.nytrip.models;
import java.util.Arrays;
/**
* Created by D1m11n on 14.07.2015.
*/
public class ChatModel/* implements Parcelable*/ {
public QuestionModel [] questions;
public long chatDuration;
public long chatTimeEnded;
public float mark;
@Override
public S... | [
"jan+lg@zl.vc"
] | jan+lg@zl.vc |
bfad8cee3fa1a37ed68743f32c801fef9ff2c1b4 | 46315fd1be3db3433ebfc608caecdf634bc8e1ba | /InformationBook/app/src/main/java/com/ongel/informationbook/adapters/ViewPagerAdapterCountries.java | 2699359965cd023ce782c1d8b2aa4b698b3f03e9 | [] | no_license | xavierjr85/Android-Applications | 67d45bc4c3ff796c0c85bf702c59d191a4f6127c | 68976b6d7601c4e351365f9050548d3071ae4958 | refs/heads/main | 2023-01-23T15:36:10.421850 | 2020-11-23T10:47:35 | 2020-11-23T10:47:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,291 | java | package com.ongel.informationbook.adapters;
import androidx.annotation.NonNull;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentManager;
import androidx.lifecycle.Lifecycle;
import androidx.viewpager2.adapter.FragmentStateAdapter;
import com.ongel.informationbook.fragments.FragmentFrance;
... | [
"mehmetong45@gmail.com"
] | mehmetong45@gmail.com |
35de50a7f2863b2587e060cf28d7131abe0ec8c1 | 45dd3fd97707638c0e1ee04c04d6f0ccfac92de6 | /1.10.2/src/compat111/java/com/rwtema/extrautils2/compatibility/CraftingHelper112.java | f20fb35678e65f1fdb9d0c9e6a8258a3f77c3a94 | [] | no_license | Zarkov2/Extra-Utilities-2-Source | 3f754127e838c3dba88de8f4f6c1ac9e01a6b7b5 | bcdbc91a79a0ea1690b512889a6f45be4319a33d | refs/heads/master | 2020-03-22T15:46:48.376696 | 2018-07-09T11:54:16 | 2018-07-09T11:55:54 | 140,277,754 | 0 | 0 | null | 2018-07-09T11:46:45 | 2018-07-09T11:46:45 | null | UTF-8 | Java | false | false | 4,839 | java | package com.rwtema.extrautils2.compatibility;
import com.rwtema.extrautils2.gui.backend.WidgetCraftingMatrix;
import com.rwtema.extrautils2.itemhandler.XUCrafter;
import com.rwtema.extrautils2.tile.TileCrafter;
import com.rwtema.extrautils2.utils.datastructures.ConcatList;
import net.minecraft.entity.player.EntityPla... | [
"rwtema@gmail.com"
] | rwtema@gmail.com |
c2efe789bc952dd004cd4d418b4585f9c111c92e | 1dafbb12aeb8967ca43f5223c0ed649629cd8df2 | /BasicComponentsApp/app/src/main/java/com/example/basiccomponentsapp/demo.java | cccaeb80a0ee0fd1c375d4ebfd06377933430b41 | [] | no_license | nehamarne2700/Android_Studio_Projects | 9a4efeb56c5d55755968ee0e1d4ed5599b5eb983 | 59cdcb767537947cb512917d9cd8d57815f0c99d | refs/heads/master | 2023-06-11T23:13:53.849319 | 2021-07-04T06:53:07 | 2021-07-04T06:53:07 | 382,783,623 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 219 | java | package com.example.basiccomponentsapp;
public class demo {
public static String name;
public static String state;
public static String city;
public static String gen;
public static String year;
}
| [
"27nehamarne00@gmail.com"
] | 27nehamarne00@gmail.com |
2b553132dba62641447f3ac498fca3d7320f7953 | cf60bcdd191dd256d86cc99e96a0b940ee0a475f | /src/practice/inputstream/InputSystem.java | f62b422cd30fe7ef31c2ed931e5885acd647bd2a | [] | no_license | hhxx1994/c-compiler | 89e305465065ab3f28d7d2d095871dc4dbd074e0 | e0c064743cfe37531f363304f0ba7deb192686f2 | refs/heads/master | 2022-12-12T19:43:43.614177 | 2020-09-11T00:00:01 | 2020-09-11T00:00:01 | 292,978,858 | 0 | 0 | null | 2020-09-05T01:26:44 | 2020-09-05T01:26:43 | null | UTF-8 | Java | false | false | 2,805 | java | package practice.inputstream;
import java.io.UnsupportedEncodingException;
public class InputSystem {
private Input input = new Input();
public void runStdinExampe() {
input.ii_newFile(null); //控制台输入
input.ii_mark_start();
printWord();
input.ii_mark_end();
input.ii_mark_prev();
/... | [
"fhb@example.com"
] | fhb@example.com |
499c9602247a8c7951b7bd55f47552a479aeb4a7 | 8fff35de65d4d4ecf67bebcc27b92b1fff320dc6 | /TeamCode/src/main/java/org/firstinspires/ftc/teamcode/Demo.java | b634667df7f1d6e57550235a90f4050b17be22b5 | [
"BSD-3-Clause"
] | permissive | 7959/2016-Season | c9c962c2e51ae15e50cb91d7f7b53e0d49a7991d | cdc9649906498049ceeba6c7081068748e107373 | refs/heads/master | 2020-12-25T10:23:51.229581 | 2017-02-26T01:00:20 | 2017-02-26T01:00:20 | 62,473,465 | 4 | 0 | null | 2016-11-30T13:51:11 | 2016-07-02T23:24:23 | Java | UTF-8 | Java | false | false | 968 | java | package org.firstinspires.ftc.teamcode;
import com.qualcomm.robotcore.eventloop.opmode.TeleOp;
/**
* Created by Robi on 2/23/2017.
*/
@TeleOp(name = "Judging")
public class Demo extends functionlist {
double speed = 0;
double angle = 0;
public void runOpMode() {
Map();
MotorSet();
... | [
"robihuq3@gmail.com"
] | robihuq3@gmail.com |
ed38bf7100ac3dd5046f1e62733a503f5cb61f02 | 43707ab8fdd019026ee34c36cd89adfe8c3889f1 | /app/src/main/java/linc/com/alarmclockforprogrammers/entity/Question.java | a8b567746bfab078fdccb6e29a55cd85cc25167f | [] | no_license | aloon8/AlarmClock-for-programmers | 57518afafba8f56644935553cda8caa63647a537 | f9dc0e36c71a7b5ea5661edf817d664fb3abafa1 | refs/heads/master | 2020-07-06T19:54:45.808412 | 2019-08-13T18:05:14 | 2019-08-13T18:05:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,676 | java | package linc.com.alarmclockforprogrammers.entity;
import android.arch.persistence.room.ColumnInfo;
import android.arch.persistence.room.Entity;
import android.arch.persistence.room.Ignore;
import android.arch.persistence.room.PrimaryKey;
import java.util.List;
import static android.arch.persistence.room.ColumnInfo.I... | [
"andriy.serb1@gmail.com"
] | andriy.serb1@gmail.com |
b8054e9adbe0006dc50ed1c79c278e573c2ba24f | 83d45b0794c83f79efe99f1396395794a1b2efe1 | /src/main/java/com/course/project/hibernateAndJpa/DAO/ICityDal.java | 29fe96d7f1584c134f15a4faeafbdfd70a00025a | [] | no_license | fatihkrks/Adding-Restful-Deletion-Update-Writing-Operations | 1f2e14233868881e386b23ab5fdbe02100967c70 | e9dbf8e349dd691575c8d59607921da8cf1f2c12 | refs/heads/master | 2022-07-06T06:51:44.544168 | 2020-04-16T08:54:01 | 2020-04-16T08:54:01 | 256,160,821 | 0 | 0 | null | 2022-06-21T03:13:42 | 2020-04-16T08:53:11 | Java | UTF-8 | Java | false | false | 279 | java | package com.course.project.hibernateAndJpa.DAO;
import java.util.List;
import com.course.project.hibernateAndJpa.Entities.City;
public interface ICityDal {
List<City> getAll();
void add(City city);
void update(City city);
void delete(City city);
City getById(int id );
}
| [
"fatihkrks95@gmail.com"
] | fatihkrks95@gmail.com |
e986603d1e67411ba1ef974ec739a7e3fa21a23f | a502c3f96c8020c9812991e3a7e0f462670bd856 | /设计模式/code/shangguigu/JDKSRC/src/com/atguigu/jdk/FlyWeight.java | c49e1b7a2f1d093b567268592ad2390d75d03707 | [] | no_license | La2ck/learn | 9ef2a24e4482256cdf2f89dc345651578c71c1ec | 65f451672c7484484b625a4e31c2adb0959dbcb6 | refs/heads/master | 2023-04-16T23:05:17.685513 | 2020-02-04T12:36:56 | 2020-02-04T12:36:56 | null | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 1,155 | java | package com.atguigu.jdk;
public class FlyWeight {
public static void main(String[] args) {
//如果 Integer.valueOf(x) x 在 -128 --- 127 直接,就是使用享元模式返回,如果不在
//范围类,则仍然 new
//小结:
//1. 在valueOf 方法中,先判断值是否在 IntegerCache 中,如果不在,就创建新的Integer(new), 否则,就直接从 缓存池返回
//2. valueOf 方法,就使用到享元模式
//3. 如果使用value... | [
"dll_glb@123.com"
] | dll_glb@123.com |
572c9ba3ae3bb2c3be88a29a8b5dc39da58df559 | 93c32a8726768c5932f612064e30bbb930e46f45 | /app/src/main/java/com/lhc/android/gz_guide/activity/GeneralSettingActivity.java | 9529647cf6e8e6ef772276c24327a9cd0e64dd07 | [] | no_license | Great001/GZ_Guide | 077fb1712c6453fdba4952f736e5b763eb059840 | a245f20bd0985613ef7377e8a074b0e03afe19bd | refs/heads/master | 2021-01-23T04:33:45.643397 | 2017-04-24T05:41:59 | 2017-04-24T05:41:59 | 86,208,674 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,812 | java | package com.lhc.android.gz_guide.activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.SharedPreferences;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.os.Bundle;
import android.util.DisplayMetrics;
import android.view.... | [
"515838965@qq.com"
] | 515838965@qq.com |
c2ca5eb9888d1a02e3fe675d360768f707fb1edc | f1ea1b815bafc86fc4dadc42f2f32721b103c6f4 | /RPCSD/src/ServidorPedidos/PedidoPaqueteEscucha.java | e2922a85563da3176bd35264ad71efed36ab438f | [] | no_license | PaulGiancarlo/RPC-Java | 0d5cba8c88ea063c880a9e0e719fa266c3207bf1 | f3b5a2a11ee18e5c236f5d7347e0cd7a6df3c6a9 | refs/heads/master | 2016-09-05T12:34:03.815588 | 2014-10-19T18:02:31 | 2014-10-19T18:02:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 253 | java | package ServidorPedidos;
import GlobalPedidos.PedidoPaquete;
import GlobalPedidos.RespuestaPaquete;
/**
* @author fabian
*/
public interface PedidoPaqueteEscucha {
RespuestaPaquete pedidoPaqueteEscucha(PedidoPaquete pedidoPaquete);
}
| [
"paulgiancarlod@gmail.com"
] | paulgiancarlod@gmail.com |
057bc6277574f501d5a45462167543810c8de63c | 601582228575ca0d5f61b4c211fd37f9e4e2564c | /logisoft_revision1/src/com/gp/cong/logisoft/struts/form/VendorForm.java | 9a829fdfd663406bfe3d1c3b978c64c66742d338 | [] | no_license | omkarziletech/StrutsCode | 3ce7c36877f5934168b0b4830cf0bb25aac6bb3d | c9745c81f4ec0169bf7ca455b8854b162d6eea5b | refs/heads/master | 2021-01-11T08:48:58.174554 | 2016-12-17T10:45:19 | 2016-12-17T10:45:19 | 76,713,903 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,542 | java | /*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.gp.cong.logisoft.struts.form;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
/**
... | [
"omkar@ziletech.com"
] | omkar@ziletech.com |
2ed17bae9f0c8c572200ba172fd4417926ca6e66 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/2/2_45d7524cf40770f04a5a8753395f5a2e8ae8ef3f/GameMenuPopup/2_45d7524cf40770f04a5a8753395f5a2e8ae8ef3f_GameMenuPopup_s.java | e290952b51b2533f3ea0b252cb9f9531938432d0 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 7,485 | java | /*
##################################################################
# GNU BACKGAMMON MOBILE #
##################################################################
# #
# Authors: Domenico Martella - Davide... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
7758807facff64868ec4b8a75c9845ae1bf6bfbf | 2435ef886043efcaa18eb92e84f9bb8477fb6307 | /workspace/EjercicioCompra_Notificaciones/src/main/java/com/example/notificaciones/ConfiguracionJms.java | 73d9e6ad0f75e3a646785780f07b0b09c9260944 | [] | no_license | victorherrerocazurro/MicroserviciosAccentureOctubre2017 | ae6c98ac472814e9b25bee0fb7b4b9a98dcfbce4 | 98bceb105d7e692c0614dd53a956f2f110ac5d5d | refs/heads/master | 2021-05-08T01:57:32.454573 | 2017-10-25T15:40:41 | 2017-10-25T15:40:41 | 107,946,621 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,541 | java | package com.example.notificaciones;
import javax.jms.ConnectionFactory;
import org.springframework.boot.autoconfigure.jms.DefaultJmsListenerContainerFactoryConfigurer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.jms.annota... | [
"victorherrerocazurro@gmail.com"
] | victorherrerocazurro@gmail.com |
4ecf879cc3b2c37a509dc67b2b42bf719926718c | b0b08d185f11bee8b11f6524583f992079ea0879 | /core/src/com/snake/entity/EntityBase.java | 6006e3f3e079adb9015a8093c14412e08dbbf363 | [] | no_license | Hennrie/simpleSnakeGame | 27e0dcaefc6c15d9b21a899821b3a612172e52cb | f05230fdf950af865813bde99860bda0915e61e1 | refs/heads/master | 2021-02-05T03:05:18.373802 | 2020-02-28T10:45:19 | 2020-02-28T10:45:19 | 243,737,515 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,295 | java | package com.snake.entity;
import com.badlogic.gdx.math.Rectangle;
/**
* Created by goran on 26/09/2016.
*/
@Deprecated
public abstract class EntityBase {
// == attributes ==
protected float x;
protected float y;
protected float width = 1;
protected float height = 1;
protected Rectangle bo... | [
"horst91@gmx.net"
] | horst91@gmx.net |
31b2676378a39945db6dcf248ce764ff265c7f2f | fdaa8c6a1bcf9df60a0a08f2472bd4858854f701 | /src/main/java/com/example/yachting/domain/yacht/YachtRepository.java | 660601933f82ad1316074917f4d82fa54c508725 | [] | no_license | dpcode123/yachting-backend | be61820db2ef8411326442647d8b977835eadc5e | ae2109b981b8ff782d6aee54de5baf6eee830a50 | refs/heads/main | 2023-08-08T08:26:19.886783 | 2021-09-15T18:54:45 | 2021-09-15T18:54:45 | 390,289,460 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 706 | java | package com.example.yachting.domain.yacht;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.Optional;
/**
* Yacht repository.
* @author dp
*/
@Repository
public interface YachtRepository extends JpaRepository<Yacht, Long> {
/**
... | [
"dp@example.com"
] | dp@example.com |
33cb42f3a9ce8a8a87b568cb98041dd8bd2690a7 | 610abbcf9f08c4fb6cb0afc75027eee4ffdce50f | /src/thread/threadPool3/Task.java | 87db4acc74bfb525405cce75155d9f0531131b79 | [] | no_license | warrenrui/RunRun | d7fa5c5430e5ee220193212e06c3f0a07e6a5ff4 | 494bdf841670aa962df46f8ac8ec5aca224f544a | refs/heads/master | 2022-11-19T15:57:24.799698 | 2021-12-29T16:12:14 | 2021-12-29T16:12:14 | 137,385,293 | 0 | 0 | null | 2022-11-16T09:28:28 | 2018-06-14T16:52:06 | JavaScript | UTF-8 | Java | false | false | 347 | java | package thread.threadPool3;
public abstract class Task {
public enum State {
NEW, RUNNING, FINISHED
}
// 任务状态
private State state = State.NEW;
public void setState(State state) {
this.state = state;
}
public State getState() {
return state;
}
public abstr... | [
"crazymalao@163.com"
] | crazymalao@163.com |
74307b49a5099633867521038f07918290422cd7 | 27511a2f9b0abe76e3fcef6d70e66647dd15da96 | /src/com/instagram/android/business/b/a.java | 882b88c2d30caee0fe670a48d5410367bcd6d720 | [] | no_license | biaolv/com.instagram.android | 7edde43d5a909ae2563cf104acfc6891f2a39ebe | 3fcd3db2c3823a6d29a31ec0f6abcf5ceca995de | refs/heads/master | 2022-05-09T15:05:05.412227 | 2016-07-21T03:48:36 | 2016-07-21T03:48:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,715 | java | package com.instagram.android.business.b;
import android.content.Context;
import android.content.res.Resources;
import android.util.DisplayMetrics;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.facebook.s;
import com.facebook.u;
import com.facebook.w;
import co... | [
"reverseengineeringer@hackeradmin.com"
] | reverseengineeringer@hackeradmin.com |
ce74bd7b294c3c4bbc650ccc55161a984348d8a7 | c885ef92397be9d54b87741f01557f61d3f794f3 | /tests-without-trycatch/Closure-176/com.google.javascript.jscomp.TypeInference/BBC-F0-opt-20/7/com/google/javascript/jscomp/TypeInference_ESTest.java | 111f11d1249eed5f5eca1066f981a87b4369a900 | [
"CC-BY-4.0",
"MIT"
] | permissive | pderakhshanfar/EMSE-BBC-experiment | f60ac5f7664dd9a85f755a00a57ec12c7551e8c6 | fea1a92c2e7ba7080b8529e2052259c9b697bbda | refs/heads/main | 2022-11-25T00:39:58.983828 | 2022-04-12T16:04:26 | 2022-04-12T16:04:26 | 309,335,889 | 0 | 1 | null | 2021-11-05T11:18:43 | 2020-11-02T10:30:38 | null | UTF-8 | Java | false | false | 198,360 | java | /*
* This file was automatically generated by EvoSuite
* Wed Oct 13 16:10:17 GMT 2021
*/
package com.google.javascript.jscomp;
import org.junit.Test;
import static org.junit.Assert.*;
import static org.evosuite.runtime.EvoAssertions.*;
import com.google.common.collect.ImmutableList;
import com.google.common.collec... | [
"pouria.derakhshanfar@gmail.com"
] | pouria.derakhshanfar@gmail.com |
10fa5a73b35acfbe080150ace42f1f71a52560f9 | 2b9e332e6c0d2fc1dd321d1995b00e67cd60d103 | /android/src/ru/geekbrains/zsa/game/AndroidLauncher.java | 4cd7acf08eba9fe4b6cee8507881e813bd6196c4 | [] | no_license | PaulFrere/SpaceBattle | 1ac4e74c62850caa80e9cb0864a3f4deb09582b4 | 87f88f6d9c381da7bb95bdb463a6ce177bcb26b3 | refs/heads/master | 2023-03-30T22:54:20.359465 | 2021-04-02T06:58:37 | 2021-04-02T06:58:37 | 304,032,720 | 0 | 0 | null | 2021-04-02T06:58:38 | 2020-10-14T13:59:43 | Java | UTF-8 | Java | false | false | 524 | java | package ru.geekbrains.zsa.game;
import android.os.Bundle;
import com.badlogic.gdx.backends.android.AndroidApplication;
import com.badlogic.gdx.backends.android.AndroidApplicationConfiguration;
import ru.geekbrains.zsa.SpaceBattle;
public class AndroidLauncher extends AndroidApplication {
@Override
protected void o... | [
"paulfrere91@gmail.ru"
] | paulfrere91@gmail.ru |
d30190b96c83a6f4069260f8ede5d5a5ce1ee704 | dd17fef23d94f0eb52dcdb53c7805b5d712d2ff1 | /Properties.java | 2b300ada6d2dacbb735fe0f2af0cf91de318be2a | [] | no_license | gsfk/Analogy_java | 457982874319d8f5846111694eff2ae46530498c | 7c922022944bdebf41332126d43e3c214e021aa4 | refs/heads/master | 2021-01-10T23:48:45.382960 | 2016-10-17T01:14:26 | 2016-10-17T01:14:26 | 70,094,405 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 211 | java |
public enum Properties {
ASSOCIATIVITY,
COMMUTATIVITY,
CLOSURE,
LEFT_IDENTITY_LEFT_INVERSE,
RIGHT_IDENTITY_LEFT_INVERSE,
LEFT_IDENTITY_RIGHT_INVERSE,
RIGHT_IDENTITY_RIGHT_INVERSE,
}
| [
"G2@Gordons-MacBook-Pro.local"
] | G2@Gordons-MacBook-Pro.local |
ec8b5f9d8de4e72a09cf9796dfccb84573a5cf65 | f46c3c059d274f9125b5ddf706e050f25f8fcc6d | /cmfz_fjq/src/main/java/com/baizhi/controller/MenuController.java | f5090536c807e758cbfcb0cb2c2bf9426170bdc1 | [] | no_license | gitissosogood/cmfz | bcdd12cab2807acc81671ad3d125136e06537d7a | 4304b90924c5ef9610187a3daa3ecab31741f51c | refs/heads/master | 2020-05-16T18:27:51.741811 | 2019-04-24T12:34:43 | 2019-04-24T12:34:43 | 183,225,487 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 645 | java | package com.baizhi.controller;
import com.baizhi.entity.Menu;
import com.baizhi.service.MenuService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import java.util.List;
import java.util.M... | [
"931625521@qq.com"
] | 931625521@qq.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.