blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 332 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2
values | repo_name stringlengths 7 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 557
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 684M ⌀ | star_events_count int64 0 77.7k | fork_events_count int64 0 48k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 82
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 7 5.41M | extension stringclasses 11
values | content stringlengths 7 5.41M | authors listlengths 1 1 | author stringlengths 0 161 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7f0f0035bf4eafa4486f7635b028bf3e1572825b | b10f3dae539074bbd1cb8247aaee493420f85eed | /src/main/java/me/jihyun/jpashop/repository/UserGroupRepository.java | 4a50be55982e8554d5c1b082b073baf1f3ab0eb8 | [] | no_license | bjih1999/JPA_example | 74f3e3de2df9c8e14648ff2447a8e6a55f1db2f3 | 703d184247105fda812376260d61f25e7f593a18 | refs/heads/master | 2023-08-21T03:02:31.069252 | 2021-10-06T08:42:30 | 2021-10-06T08:42:30 | 394,309,958 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 225 | java | package me.jihyun.jpashop.repository;
import me.jihyun.jpashop.domain.UserGroup;
import org.springframework.data.jpa.repository.JpaRepository;
public interface UserGroupRepository extends JpaRepository<UserGroup, Long> {
}
| [
"bjih1999@naver.com"
] | bjih1999@naver.com |
3618cd30968baea9566e82bb2e92faee7ce904ca | 9e81c2325bf443716dbf6297a9d29c72f71e8698 | /src/main/java/com/juncdt/datav/common/ResultModel.java | 50466d48be4517624c08c7e7e3171c1fba3c4e5a | [] | no_license | Eucommiia/datav | 2f1f5ea324367dd08f1125f3677abff9ded1fdaf | 266cc085c3268323beebb69a6788f76030fadb2b | refs/heads/master | 2020-03-16T14:56:29.537213 | 2018-05-18T01:50:11 | 2018-05-18T01:50:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,182 | java | package com.juncdt.datav.common;
import org.springframework.util.StringUtils;
/**
* ResultModel 返回结果类
*
*
* @author
* @date 16/8/31
*/
public class ResultModel<T> {
private int code;
private T data;
private String message;
public static <T> ResultModel<T> success(T data) {
ResultMode... | [
"pumeng104@163.com"
] | pumeng104@163.com |
5a54d81289fdbc398aebab25aef9e6d39b9d002d | 936709c893318aee674bc4035c52868ab4defc19 | /core/src/main/java/pl/mmajcherski/carsearch/domain/car/service/CarFinder.java | 0272276d7987e55dd6ac93affe6301f018380c22 | [] | no_license | majcher/car-search-java | 13a60f7784172a0e7e76a14d133fca3957ce48c1 | 6d2cadb53c3c5b6e4dfe37861c086cc6dd668af1 | refs/heads/master | 2020-05-18T15:24:30.609749 | 2013-11-08T10:49:25 | 2013-11-08T10:49:25 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,753 | java | package pl.mmajcherski.carsearch.domain.car.service;
import pl.mmajcherski.carsearch.domain.car.model.Car;
import pl.mmajcherski.carsearch.domain.common.model.PagedResult;
import static com.google.common.base.Strings.isNullOrEmpty;
public interface CarFinder {
PagedResult<Car> findCars(SearchCriteria criteria);
... | [
"mmajcherski@gmail.com"
] | mmajcherski@gmail.com |
babbd20720f5c3ae55b13b88419ec52d56b10963 | 1bf7287c5aeaf175a84ae677612900ecbade52a1 | /src/main/java/multithread/MyCallable.java | cf7b6547b8c6eeca61ff99de7fcc864fb5a84650 | [] | no_license | EmmaLiangyanqiu/Exercises | 9c7d11e6b8cd90dd04ff5ddde6e4981c6d775fbd | ac224d9a8ff2907f7a5a06b73f4de270ab09e3df | refs/heads/master | 2020-03-25T11:07:46.575946 | 2018-09-28T09:04:09 | 2018-09-28T09:04:09 | 143,719,691 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 824 | java | package multithread;
import java.util.concurrent.Callable;
/**
* Created by Emma on 2018/8/7.
*/
/*
* 1. 创建一个类实现Callable接口,实现call方法。这个接口类似于Runnable接口,但比Runnable接口更加强大,增加了
* 异常和返回值。
*2. 创建一个FutureTask,指定Callable对象,做为线程任务。
*3. 创建线程,指定线程任务。
*4. 启动线程
* */
public class MyCallable implements Callable<String>{
String... | [
"17865197939@163.com"
] | 17865197939@163.com |
7cbf35b8a5e042b91a44ac856f44a99048a33cae | 987195bb06b04eadee89459146344d5ccf26cfce | /src/test/MainDiameter.java | 385658aefc7edbf1c94c31751c38b8465b1a8cb9 | [
"MIT"
] | permissive | PaoloPellizzoni/AdaptiveCoreset | e7e0024c9e63e9129ff46c6a6099cafed720e4a1 | 93842f62e5cdb1fc1b5a0aa50a4f7bab638f5e48 | refs/heads/master | 2023-02-22T02:12:52.790788 | 2021-01-31T11:17:49 | 2021-01-31T11:17:49 | 265,354,548 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,495 | java | package src.test;
import src.core.css.*;
import src.core.coreset.*;
import src.core.utils.*;
import java.util.*;
import java.io.*;
public class MainDiameter
{
static DatasetReader reader;
static double INF = 10e20;
static int wSize = -1;
static int stride = 10000;
static int[] sizesw = new int[]{... | [
"ppellizzoni@gmail.com"
] | ppellizzoni@gmail.com |
aa4d9d6963b67361a7b18d2b519d632cb4fd9350 | c5056128df7f606486a6864a3440cb2d480a1237 | /PageObjectPattern/src/pagefactoryconcept/PageFactoryLoginPageWebElements.java | 2ad45b56cd1884925106698784ce3141145e1165 | [] | no_license | emrebaybas/EntireEclipseProjects | 0131a7b7903d68cdeb17027debf70b8fc1401a04 | c197e274becf6a33691bfd152c19e7e235c6fd3e | refs/heads/master | 2022-10-19T09:26:09.979946 | 2020-04-12T02:53:17 | 2020-04-12T02:53:17 | 245,484,904 | 0 | 0 | null | 2022-10-05T19:45:15 | 2020-03-06T17:55:17 | Java | UTF-8 | Java | false | false | 764 | java | package pagefactoryconcept;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
public class PageFactoryLoginPageWebElements {
WebDriver driver;
public PageFactoryLogi... | [
"palyanco@gmail.com"
] | palyanco@gmail.com |
b3056803f4189af3b62fb713019617d0eb8d292c | 117a24dc265bbc965dc4f8b14ce4399b8e0f8ba6 | /src/main/java/PracticeOneWeek26/WiggleSort.java | 41960c599031e8d8b5dda6670d35d42ba38aaa05 | [] | no_license | sureshrmdec/Preparation26EatSleepDrinkCode | e240393eabdc3343bb1165d5c432217f085aa353 | aa5b81907205f9d435835e2150100e8f53027212 | refs/heads/master | 2021-09-29T14:28:24.691090 | 2018-11-25T13:52:43 | 2018-11-25T13:52:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 574 | java | package PracticeOneWeek26;
/**
* Created by hadoop on 9/12/17.
*/
public class WiggleSort {
public void wiggleSort(int[] nums) {
if (nums == null || nums.length <= 1) {
return;
}
int flag = 1;
for (int i = 1; i < nums.length; i++) {
if (flag * nums[i] < fla... | [
"rahuja@twitter.com"
] | rahuja@twitter.com |
092c953ddb8fd1ef3bd4d1272384757d21c1e24d | 6f8793f1dfa888924f8debdd66d7dd98e046761f | /app/src/androidTest/java/com/example/android/badmintonscorecounter/ExampleInstrumentedTest.java | ae8b90f7ec08de410d9d5d2be3e3632edbee7011 | [] | no_license | audumbarn/badmintonkeeper | d61abae05a6841fc96d62609e12062c0924612f3 | d0b02b5d124009e0cff48d4f81d3189a0940e448 | refs/heads/master | 2021-05-11T12:03:08.406717 | 2018-01-16T07:57:07 | 2018-01-16T07:57:07 | 117,650,301 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 786 | java | package com.example.android.badmintonscorecounter;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumentation test, which will ... | [
"audumbar.raj.nevarekar@dxc.com"
] | audumbar.raj.nevarekar@dxc.com |
d1419be0d8337edf226a752cb8611e9d8e492209 | 27bb1a6d854a8f9de4311df07074c5028d9b1702 | /src/main/java/org/lulz/tiger/common/type/Type.java | 472b45489dc497bff5b50db1f469ababc45b43ba | [] | no_license | plum7ree/tiger_compiler | 02b5a10b45791f06b4c0033790ccf4cb44cb5c62 | 7a7a6667599f9604ffce4b90a4f4df5c87478b89 | refs/heads/master | 2022-03-26T03:40:20.485342 | 2019-12-24T05:17:56 | 2019-12-24T05:17:56 | 229,875,110 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 717 | java | package org.lulz.tiger.common.type;
public class Type implements Cloneable {
private TypeKind kind;
public Type(TypeKind kind) {
this.kind = kind;
}
public TypeKind getKind() {
return kind;
}
@Override
public String toString() {
if (kind == TypeKind.INT) {
... | [
"lomojiki@gmail.com"
] | lomojiki@gmail.com |
4aae59aa960bce9f523db39aab6783529025ae6e | 5aa604082be090ad08c1c1a0728031a6840dc913 | /src/main/java/com/caigicungco/constant/product/ElectronicHighlights.java | b5db928abaadfeba1058b03080159081eaa5d245 | [] | no_license | thanhhung198/H-ngawnlol | c58bdfbb0c884913054bf57ea274e5d6de6d12ae | 106a0c7a8234131854d4f75403a70a11b76346f9 | refs/heads/master | 2023-02-01T17:34:30.382740 | 2020-04-01T16:04:31 | 2020-04-01T16:04:31 | 252,144,407 | 0 | 0 | null | 2023-01-05T10:46:00 | 2020-04-01T10:34:40 | CSS | UTF-8 | Java | false | false | 289 | java | package com.caigicungco.constant.product;
public enum ElectronicHighlights {
HOT("hot"),
TOP("top"),
NEW("new");
private String value;
ElectronicHighlights(String value) {
this.value = value;
}
public String Value() {
return value;
}
}
| [
"thanhhung98hn@gmail.com"
] | thanhhung98hn@gmail.com |
8fe7a255619c616946d6d5b0c126932aa8fff42f | f2570988a9d5fdd445056b59212b5d2aed40cc16 | /Atlantis/src/ca/uvic/chisel/atlantis/functionparsing/Instruction.java | e65f4810c78fc5a35e6c2136f42dec168f016436 | [] | no_license | norahuang/DualTrace | 1cf185be2bdd1ee2c1dc9a58bb838c1272311336 | 3138cb04bf4bf18ce8b25591a85ab5491090ad7a | refs/heads/master | 2021-01-25T10:56:57.835847 | 2018-05-23T22:13:28 | 2018-05-23T22:13:28 | 93,900,589 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,272 | java | package ca.uvic.chisel.atlantis.functionparsing;
import java.util.ArrayList;
import ca.uvic.chisel.atlantis.database.InstructionId;
import ca.uvic.chisel.bfv.dualtrace.InstructionXml;
public class Instruction implements Comparable<Instruction> {
/**
* Only used during processing, to deal with the common situati... | [
"vac48@hotmail.com"
] | vac48@hotmail.com |
b062291424ba0e79faa772f77658e1677d614b9b | 332e7d9dc2cc5d09b35b4ff84c714b53b8d027b6 | /commandpattern/src/main/java/commandpattern/com/commandpattern/remotecontrol.java | f21631e7a2e47d3271d8c08ec93f688947c21e6e | [] | no_license | Krupajessica/krupajessica_anguluri_designpattern | b6f9eb5ea845887461c0d6928a05defdf65bdcaf | 15ca9e05c58993b8b090f25358686d11a07daf71 | refs/heads/master | 2021-03-05T07:56:07.235118 | 2020-03-09T18:06:56 | 2020-03-09T18:06:56 | 246,105,635 | 0 | 0 | null | 2020-10-13T20:13:30 | 2020-03-09T17:56:46 | Java | UTF-8 | Java | false | false | 251 | java | package commandpattern.com.commandpattern;
public class remotecontrol{
private command Command;
public void setCommand(command Command){
this.Command = Command;
}
public void pressButton(){
Command.execute();
}
}
| [
"noreply@github.com"
] | noreply@github.com |
9a2edb31b2d61a72966f5d3f370cf891feeddd93 | ca087a3cccafa5ee3f5c2f182e0ddf55486b3a8a | /Test/demotest1/src/main/java/com/example/demotest1/Demotest1Application.java | d9665e818c1f6bffadd5e675dafe8ad914d66f57 | [] | no_license | khactu214/Group-Test | 4116f9962a963b8dab8eef0ff01cbba6d84be434 | 43a6e028e20d5ca1ae718e9b72281b697bc38374 | refs/heads/master | 2023-05-08T20:14:46.904140 | 2020-07-25T13:07:34 | 2020-07-25T13:07:34 | 282,179,991 | 1 | 0 | null | 2021-06-04T22:12:16 | 2020-07-24T09:37:48 | CSS | UTF-8 | Java | false | false | 332 | java | package com.example.demotest1;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Demotest1Application {
public static void main(String[] args) {
SpringApplication.run(Demotest1Application.class, args... | [
"44285970+khactu214@users.noreply.github.com"
] | 44285970+khactu214@users.noreply.github.com |
81a8bc452260c774cc6680d95fc7d47d9a46bb73 | 40dd2c2ba934bcbc611b366cf57762dcb14c48e3 | /RI_Stack/java/test/base/org/cablelabs/gear/havi/decorator/GraphicLookAdapter.java | e7ddd970c931f4ddae22eed020762c08bccff671 | [] | no_license | amirna2/OCAP-RI | afe0d924dcf057020111406b1d29aa2b3a796e10 | 254f0a8ebaf5b4f09f4a7c8f4961e9596c49ccb7 | refs/heads/master | 2020-03-10T03:22:34.355822 | 2018-04-11T23:08:49 | 2018-04-11T23:08:49 | 129,163,048 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,405 | java | // COPYRIGHT_BEGIN
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
//
// Copyright (C) 2008-2013, Cable Television Laboratories, Inc.
//
// This software is available under multiple licenses:
//
// (1) BSD 2-clause
// Redistribution and use in source and binary forms, with or without modi... | [
"amir.nathoo@ubnt.com"
] | amir.nathoo@ubnt.com |
1a704d88ce6c6c91e4840bf6ffed4f39c95d2b9d | 98f8d43463f6a9e8166c16afdb339f9c62d7be60 | /src/test/java/com/jack/pattern/decorator/Beverage.java | f805017fc28a5cfef0c59408c2270f96f009871e | [] | no_license | StriveStruggle/study | f02a2d5aa3dfbe0177b55e52514aca7e8090a3df | e54af1cafe640123568e6e1f67d953f492c4fae5 | refs/heads/master | 2021-05-13T20:50:53.847583 | 2018-01-18T06:17:55 | 2018-01-18T06:17:55 | 116,916,738 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 262 | java | package com.jack.pattern.decorator;
/**
* 饮料抽象基类
*
* @author geqiang
* @date 2018/1/17
**/
public abstract class Beverage {
//返回描述
public abstract String getDescription();
//返回价格
public abstract double cost();
}
| [
"geqiang@uddtrip.com"
] | geqiang@uddtrip.com |
495b2bd1014e3b081b8413630b28b43c7c867ba7 | 767b929110f7fe56044231eeb018077d4295c484 | /src/main/java/com/asiainfo/appframe/framework/support/MappingFastJsonHttpMessageConverter.java | 3b512081a7927383ea242a32d18dcae8cdeabe9a | [] | no_license | mircle/AppFrame | 49b25e2d4f82d46a7fca92d539a9d04f4c124a9a | 966f44e45cdc83e198950644455c27868488c1fd | refs/heads/master | 2021-01-18T08:09:40.404750 | 2013-06-11T10:13:24 | 2013-06-11T10:13:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,303 | java | package com.asiainfo.appframe.framework.support;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.charset.Charset;
import org.springframework.http.HttpInputMessage;
import org.springframework.http.HttpOutputMessage;
import org.springframework.http... | [
"g.luhaifeng@gmail.com"
] | g.luhaifeng@gmail.com |
d2786ee4f4ebc74271b7d95b3d007b4f767e1daf | e77c4a379ec281da7f3306d341f16a38589eb00c | /xml/src/main/java/com/gecko/unmarshaller/ZooUnmarshaller.java | add6250e4052a21f8bc214953490c9f2fec10c8a | [] | no_license | ha-li/data-model | 08ce7a3d0600b1ee0e2dab075daec6b634b4d912 | bdf2073b6ade2c197f2e591e121f1b96243b277f | refs/heads/master | 2021-01-19T08:45:30.721899 | 2017-05-08T04:07:39 | 2017-05-08T04:07:39 | 87,670,776 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 955 | java | package com.gecko.unmarshaller;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Unmarshaller;
import java.io.File;
import java.io.FileNotFoundException;
/**
* Created by hlieu on 04/18/17.
*/
public class ZooUnmarshaller {
private static final String XML_NS = "com.gecko.schema.zoo.v1";
private stati... | [
"ha-li@gmail.com"
] | ha-li@gmail.com |
4603ed416619410f97ac4c31eec6dfd25e2dc393 | 0abaad8acc933b08769d97661e845b1c339df92c | /LAB1/src/test/java/MapperImplTest.java | f32da217fa1ba2a3d022829598b10074e735d5e7 | [] | no_license | turingmachinerepair/DS_DBA_2020 | 5a4c52867bcbbe0d6955e8de2a702d7c49ce4a5c | 4252d4c7e012033d8cf4fbc5c05cf84624945bfb | refs/heads/master | 2023-02-12T21:17:29.631198 | 2021-01-10T10:22:46 | 2021-01-10T10:22:46 | 328,347,065 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,619 | java |
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mrunit.mapreduce.MapDriver;
import org.junit.Before;
import org.junit.Test;
import java.io.IOException;
import static junit.framework.TestCase.assertFalse;
import static org.j... | [
"turingmachinerepair@yandex.ru"
] | turingmachinerepair@yandex.ru |
81a50138d53ec11fc079be2a4ca56084dea4fa29 | 8651815d220ced94baf6d3b4559b3d8e86931b91 | /PR050-ActionBar/app/src/main/java/es/iessaladillo/pedrojoya/pr050/main/PhotoFragment.java | 1b99479a972684ff7fc797f9603a8442f1a332e8 | [] | no_license | OmarObispoUX/studio | f23ee4a488c3c124afaab6e522d6540e0e89764a | a5fc52f835ee180f7cdec4999fab0eabd0f1f710 | refs/heads/master | 2020-03-17T02:05:05.950065 | 2018-05-08T17:03:28 | 2018-05-08T17:03:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,430 | java | package es.iessaladillo.pedrojoya.pr050.main;
import android.content.Context;
import android.graphics.ColorMatrixColorFilter;
import android.os.Bundle;
import android.support.annotation.IdRes;
import android.support.annotation.NonNull;
import android.support.v4.app.Fragment;
import android.support.v4.view.ViewCompat;
... | [
"pedrojoya@gmail.com"
] | pedrojoya@gmail.com |
3e86311537605f406fccecf9b7c68b8a0fe26b24 | b1c1a118a3d8d20635cae5cb09a33971f2aa3c59 | /assign1_part2/BlackJack_Java/src/model/Player.java | 6675ae4df28e1ecd514d8d52c9fd3682b82affe2 | [] | no_license | sarpreetsingh3131/2dv610 | b57322366d60624f7b8a79d60f29d1ea613b100f | 358fbe4d2e01e9961ada651a89e88635565e5561 | refs/heads/master | 2021-07-02T12:39:16.849778 | 2017-09-23T06:15:57 | 2017-09-23T06:15:57 | 74,205,198 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,175 | java | package model;
import java.util.ArrayList;
import model.Card.Value;
public class Player {
protected ArrayList<Card> m_hand;
protected int g_maxScore = 21;
public Player() {
}
public Player makeNewPalyer(ArrayList<Card> a_hand) {
return new Player(a_hand);
}
private Player(ArrayList<Card> a_hand) {
m_h... | [
"sb223ce@student.lnu.se"
] | sb223ce@student.lnu.se |
2bbfd9ef9a6dfdcddb763a874144aa434f92ef17 | 6b3040734f41809e284655a7dd8746f95050df40 | /src/main/java/reredo/rrrd/P121.java | efa34f7b7cb96f50afcdfdd9c63ec53c8364bae0 | [] | no_license | yu132/leetcode-solution | a451e30f6e34eab93de39f7bb6d1fd135ffd154d | 6a659a4d773f58c2efd585a0b7140ace5f5ea10a | refs/heads/master | 2023-01-28T08:14:03.817652 | 2023-01-14T16:26:59 | 2023-01-14T16:26:59 | 185,592,914 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 514 | java | package reredo.rrrd;
/**
* @ClassName: P121
*
* @Description: TODO(这里用一句话描述这个类的作用)
*
* @author 余定邦
*
* @date 2021年3月25日
*
*/
public class P121 {
class Solution {
public int maxProfit(int[] prices) {
int min = Integer.MAX_VALUE, max = 0;
for (int price : prices)... | [
"876633022@qq.com"
] | 876633022@qq.com |
db50c98774f7ff4a6bd04899e0118e7a1930d9d9 | 0d1ff9f934fb409d4b3066b151a19df7813f7d73 | /day3/IfDemo3.java | 86b54e80961b060197e87d56836bf2c4a130c5b2 | [] | no_license | ldm106/sample | 26f970f894389e5ed8cbc57b18354f6f0e2a0892 | fe418c43733c6bb14bf5bf192704936b99d4fe45 | refs/heads/master | 2020-06-16T06:13:47.325575 | 2016-12-01T01:57:14 | 2016-12-01T01:57:14 | 75,239,695 | 0 | 0 | null | null | null | null | UHC | Java | false | false | 678 | java | import java.util.Scanner;
public class IfDemo3{
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
// sc:참조 자료형
System.out.print("사용 기간을 입력하세요: ");
int year = sc.nextInt();
System.out.print("운행거리를 입력하세요(km):");
int distance = sc.nextInt();
// 사용 기간이 5년 이상이거나 운행 거리가 100000km 이상... | [
"ldm106@nate.com"
] | ldm106@nate.com |
51cfc3803adceae5f84e1c585fb7a95e6cf0951a | 63975c0029a7b7d04c62d2c8ce7af8b5c5b55876 | /src/be/kdg/spel/view/spel/SpelPresenter.java | 5e5ffbad5d0d76f8ce40b40e6a8be7730a86a93d | [
"MIT"
] | permissive | eliassamadi/2048 | 8cd909e1d31b7117ef1d675b1709f990beb92dcb | 7c367667294cd2a84849187811f2f85e98bcf70d | refs/heads/main | 2023-01-08T04:06:48.988611 | 2020-10-30T17:46:09 | 2020-10-30T17:46:09 | 308,695,121 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 26,958 | java | package be.kdg.spel.view.spel;
import be.kdg.spel.model.*;
import be.kdg.spel.view.highscore.HighscorePresenter;
import be.kdg.spel.view.highscore.HighscoreView;
import be.kdg.spel.view.start.StartPresenter;
import be.kdg.spel.view.start.StartView;
import com.sun.org.apache.bcel.internal.generic.GETFIELD;
import javaf... | [
"60688985+eliassamadi@users.noreply.github.com"
] | 60688985+eliassamadi@users.noreply.github.com |
63a24bd705486cd31ebbc50042414f44bbd2e80d | 68538ca7a244ddf6d63371e0c3eabe638fddf620 | /ExerciseProject05/ActionBar/src/test/java/com/exercise04/actionbar/ExampleUnitTest.java | aacaf69f262c06f49c87c1c7b5ba6e2328915207 | [] | no_license | AlanLee97/Study_Android | 5cc9e87a87545bb5c4a8cabf577ccb8f5f72b103 | 75fb2a2d64051bb73759929f3af3202d0b24759b | refs/heads/master | 2021-10-20T05:24:07.144387 | 2019-02-26T03:02:58 | 2019-02-26T03:02:58 | 172,523,775 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 385 | java | package com.exercise04.actionbar;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public vo... | [
"42601044+AlanLee97@users.noreply.github.com"
] | 42601044+AlanLee97@users.noreply.github.com |
4ad6e22fd5ca80c395710113b74844d4fba40ce3 | 021a8a5c1b346ae6ae388d96e940b34fcad8e2f7 | /src/stack/postfixExp.java | 94426ee0d5ac87597e0424b2581643dbb4f9830a | [] | no_license | 478463266/code-for-data-structure-and-algoritms | 02e99baa3e0d1099b3cbfbafcdf27d512b24f423 | f85b931cc90adaa5c900902e378cd03109cdebc6 | refs/heads/master | 2022-07-21T01:52:23.089617 | 2020-05-15T14:17:05 | 2020-05-15T14:17:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,027 | java | package stack;
import java.util.*;
//ref:https://blog.csdn.net/Coder_Dacyuan/article/details/79941743?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none-task
public class postfixExp {
/**
* 中缀转后缀代码码实现
* 1.遇到操作数:添加到后缀表达式中或直接输出
* 2.栈空时:遇到运算符,直接入栈
* 3.遇到左括... | [
"478463266@qq.com"
] | 478463266@qq.com |
4b92e57f2c273ebe8e42075a5a8dbcfde44c3950 | 99a392b5e7fa40cdef5be8a1506d4170d74edf29 | /src/main/java/com/spider/common/utils/RegexFilter.java | bf0b01d908920e9918790feeca6a8045fff5b126 | [] | no_license | gaoinsh/majorSpider | 4fc794f296fe42c509913e2cb69a1bc1aa72149f | d937a9fc13301b306097055ae0a4a1421e4ff1ff | refs/heads/master | 2020-12-30T13:28:34.736505 | 2018-09-04T06:17:12 | 2018-09-04T06:17:12 | 91,220,227 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,720 | java | package com.spider.common.utils;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Created by xiang.gao on 2017/5/17.
* project majorSpider
*/
public class RegexFilter {
public static List<String> regexFilterList(String content, String reg... | [
"121308941@qq.com"
] | 121308941@qq.com |
bb2f499f8a62a7d1a79c6ee31eac5ac63062be9a | fd281f1443fe4afce8b307961fa1368c7ccde96d | /src/test/java/com/utilities/ReadConfig.java | fe99b92da0f157d3264acec64679d23d52fb5129 | [] | no_license | satyendradwivedi/HCM | ec53104395f3327d34829e604fa6c32ca73b8cec | fa437586981a0ad11e3a836deb3680ad16cbb69a | refs/heads/master | 2023-07-29T23:44:38.604745 | 2021-09-15T05:52:16 | 2021-09-15T05:52:16 | 397,144,451 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 893 | java | package com.utilities;
import java.io.File;
import java.io.FileInputStream;
import java.util.Properties;
public class ReadConfig {
private Properties pro;
public ReadConfig() {
File src = new File("./Configuration/config.properties");
try {
FileInputStream fis=new FileInputStream(src);
pro=new Properties();
p... | [
"satyendra.gbpuat@gmail.com"
] | satyendra.gbpuat@gmail.com |
deb28cc73c3b370be2fb63eab3cee39850343a1c | eb9339c97befebab30b334d967e1279afa70a03c | /admin/model/src/main/java/it/geosolutions/nrl/dto/StatsBean.java | 84007dabfaeb82e7e68307defde7ec14e8972dbe | [] | no_license | Gnafu/OpenSDIManager-portal | 4b9ecb7c3604fd7988661b70c7c9988d16aa70d1 | 8f9780252ede220f7b8efa1cf28ff2156520c47d | refs/heads/master | 2020-04-06T04:33:08.711854 | 2013-10-15T16:42:48 | 2013-10-15T16:42:48 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,998 | java | /*
* Copyright (C) 2007 - 2012 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 the GNU General Public License as published by
* the Free Software Foundation, either version ... | [
"lore.gnafu@gmail.com"
] | lore.gnafu@gmail.com |
571d413cfa7d7405efa443263e65d1508b9b45b4 | 4f3e8ff412df9b21d6700b777c010b0ede3291d6 | /src/main/java/com/example/switchyard/handle_bpm_exception/FaultResultProcess.java | 862224ddaa7964565f30a4944cf79ff06b05ce55 | [] | no_license | tangblack/switchyard_handle_bpm_exception | 9a24c2f6e0c678092420ac3ba90dd085f62c4652 | b0983393076d9ee522e4a0e4e51bcc2892abdaf8 | refs/heads/master | 2021-01-22T09:16:48.293911 | 2012-11-13T02:35:07 | 2012-11-13T02:35:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 354 | java | package com.example.switchyard.handle_bpm_exception;
import org.switchyard.component.bpm.StartProcess;
public interface FaultResultProcess
{
@StartProcess
public String start(String data);
// @SignalEvent("myEvent")
// public void signal(String data);
// @AbortProcessInstance
// p... | [
"chief.tang@coretronic.com"
] | chief.tang@coretronic.com |
0af3ec9020de35937aaf765839be188e6547b4c9 | 05aa4f946f0e5e63f2216ed4e354833386db308f | /src/test/java/com/hibernate/testing/TestingApplicationTests.java | efbfe5652fb80983fecea40de132a8ce515ac5ec | [] | no_license | floriangeyer21/security-test | 4bdc5462fd5c65ff608c2c87c87b3028f6e150c1 | 67dd471ca861ea39be9281b116e65bc41f6788f3 | refs/heads/main | 2023-04-24T17:12:32.271100 | 2021-05-05T15:45:52 | 2021-05-05T15:45:52 | 364,628,119 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 223 | java | package com.hibernate.testing;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class TestingApplicationTests {
@Test
void contextLoads() {
}
}
| [
"vladislav.d@air-dr.com"
] | vladislav.d@air-dr.com |
e5dca70898dd2be013b2b53128cebd5eacd0a518 | f45c01e4a7d43a6a0f725c3ccf9a284c26fb2ffa | /src/main/java/org/xander/behavioral/nullobject/AnimalTest.java | 48153ef638bf3bfd72bdc25fcd17400cde20c39c | [
"MIT"
] | permissive | AncientMariner/Patterns | f06ae7c1b2782090f0df235f98ef3d0a723f6a77 | 3f6c99f9d401c4ed8883076b5dd4a55f6cfdaef0 | refs/heads/master | 2023-08-17T04:23:49.219534 | 2023-07-21T12:24:23 | 2023-07-21T12:24:23 | 10,974,543 | 4 | 0 | MIT | 2023-04-12T12:18:27 | 2013-06-26T17:38:12 | Java | UTF-8 | Java | false | false | 413 | java | package org.xander.behavioral.nullobject;
import java.util.ArrayList;
import java.util.List;
public class AnimalTest {
public static void main(String[] args) {
Animal animal = new Dog();
Animal nullAnimal = new NullAnimal();
List<Animal> animals = new ArrayList<>();
animals.add(an... | [
"xander.lysak@gmail.com"
] | xander.lysak@gmail.com |
81670292a1be59f79b1e5f5c2d24518f5201b28e | 2ffbdb7dc8445b6a5f3b9aee91fc087d9360d462 | /src/test/java/Steps/LoginStep.java | 3745cb41d5049cfbac8d227453ef744dcaf3fc77 | [] | no_license | emdadripon/CucucmberBasic | b66250ceac81de05033f8bf6c0c943e774e9d7dd | de67bab0c03206dabd80ffa653a4f8c4f421211f | refs/heads/master | 2020-04-15T09:33:34.438185 | 2019-01-08T21:37:43 | 2019-01-08T21:37:43 | 164,555,376 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,174 | java | package Steps;
import Base.BaseUtil;
import Transformation.EmailTransformation;
import Transformation.SalaryCountTransformer;
import cucumber.api.DataTable;
import cucumber.api.Transform;
import cucumber.api.java.en.And;
import cucumber.api.java.en.Given;
import org.junit.Assert;
import org.openqa.selenium.By;
import ... | [
"eriponctg@gmail.com"
] | eriponctg@gmail.com |
5f88536b902aab97830935a7e893c449a3c8df46 | b85a13e9fc5a0c81472ff6029fa868d8fec350ec | /community/src/main/java/com/xs/bqx/community/utils/ResponseResult.java | bc79323682b3e6c9662e5753f66fa1a73b4a801b | [] | no_license | bqx1026562706/springclud-alibaba | 98180ab242d3835be753fa99527886c9f0d7086a | af8f52ad1c74ed463d4951650a4c69fc1c9cd0be | refs/heads/master | 2022-12-14T08:49:54.494506 | 2020-09-27T09:36:21 | 2020-09-27T09:36:21 | 295,319,336 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,894 | java | package com.xs.bqx.community.utils;
public class ResponseResult<T> {
private Integer status;
private String msg;
/**
* data的总条数,在没有确定data类型时初始化为0显然不太合理。
*/
private Integer total;
private T data;
public static <T> ResponseResult<T> build(Integer status, String msg, Integer total, T d... | [
"qixin.bian@ctgtmo.com"
] | qixin.bian@ctgtmo.com |
e117cb9c3ae28cfaced5fd1696f1b92bf51c32f3 | 821fd6c60ee734d177d77a32aec49cbebfdb63db | /design/src/main/java/xyz/zhangyi/practicejava/design/oo/demeter/Wallet.java | 19af3c72c7f31b16df2eba67099651fe59e86e8d | [] | no_license | agiledon/praticejava | b8a2404b4bb117841c4339a6855c5e2de22db99c | 9a28c9f80a8f222de7130b837c0a8f994978b524 | refs/heads/master | 2022-06-22T15:18:36.428036 | 2021-08-04T13:23:16 | 2021-08-04T13:23:16 | 176,197,807 | 5 | 3 | null | 2022-06-21T00:59:38 | 2019-03-18T03:27:16 | Java | UTF-8 | Java | false | false | 394 | java | package xyz.zhangyi.practicejava.design.oo.demeter;
public class Wallet {
private float value;
public float getTotalMoney() {
return value;
}
public void setTotalMoney(float newValue) {
value = newValue;
}
public void addMoney(float deposit) {
value += deposit;
}
... | [
"15023157626@163.com"
] | 15023157626@163.com |
684a507638a6380f2752ebf64ac9afef50dd4d22 | 537fbcbba54357827599c0bcd4890420af91f49f | /jhome-common/src/main/java/com/shiro/common/session/ClientSessionDAO.java | b9e3e211a8dec71b48da3936a3b6ffdb5f17563b | [] | no_license | leexiao2020/Jhome | f971c94dbb08220de7006d7bbf9a29acca1674a2 | 359383f1b945b32602f3d87cbcceb44125f9d337 | refs/heads/master | 2022-12-28T23:08:18.595153 | 2020-09-30T09:41:33 | 2020-09-30T09:41:33 | 299,874,059 | 0 | 0 | null | 2020-09-30T09:42:19 | 2020-09-30T09:42:19 | null | UTF-8 | Java | false | false | 1,141 | java | package com.shiro.common.session;
import com.bracket.common.Identity.UserUtil;
import com.bracket.common.ToolKit.StringUtil;
import org.apache.shiro.session.Session;
/**
* 关键一步实现调用服务器的RedisSessionDao 实现对统一数据源操作
*
* @author : Daxv
* @date : 11:03 2020/5/12 0012
*/
public class ClientSessionDAO extends ClientToken... | [
"523673705@qq.com"
] | 523673705@qq.com |
0fb94c18e969251bc432178d121037fb863566c2 | 20630ebd3a86a987affc2fe0254a3810a7ad932c | /05_diciembre/henryZerda/playshopserver/src/PlayShopServer.java | f9d23cd5729d8bba938c15f76f170e44ea5fe970 | [] | no_license | henryzrr/backend_playStore | d81a7b82295f26a1cf8c7c360d8448ca136d5050 | a505584fd3747acfe09baeb13fbba7646ef10c6b | refs/heads/master | 2020-08-17T20:38:04.777283 | 2020-01-06T02:01:35 | 2020-01-06T02:01:35 | 215,709,472 | 0 | 0 | null | 2019-12-08T23:13:38 | 2019-10-17T05:23:49 | Java | UTF-8 | Java | false | false | 2,345 | java | import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.StringTokenizer;
public class PlayShopServer {
private RecursosPlayShopManager recursosPlayShopManager;
private ServiciosPlayShopServer serviciosPl... | [
"henry.zrz@gmail.com"
] | henry.zrz@gmail.com |
dec6808090eb443e099deca65b4550219ca7d79c | 93470235bd0d3bf2550ef4d0c6c5cba51d3ae180 | /src/main/java/ar/com/scholarship/Scholarship/model/mapper/SocioEconomicStatusCycleMapper.java | 0b0448153377d6508e4fe4d59d9d9cb6266566e7 | [] | no_license | AndreaLacruz/Scholarship | a958e62a6560a8d93e5115316ab8507fc5dcf4fb | c9854407427b2d239469c1ec901cc8ea533d4048 | refs/heads/master | 2023-04-30T03:20:01.790085 | 2020-06-30T17:54:58 | 2020-06-30T17:54:58 | 269,019,949 | 0 | 0 | null | 2021-05-12T00:26:45 | 2020-06-03T07:30:42 | Java | UTF-8 | Java | false | false | 826 | java | package ar.com.scholarship.Scholarship.model.mapper;
import ar.com.scholarship.Scholarship.model.dto.SocioEconomicStatusDTO;
import ar.com.scholarship.Scholarship.model.entity.SocioEconomicStatus;
import org.mapstruct.Context;
import org.mapstruct.InheritInverseConfiguration;
import org.mapstruct.Mapper;
import org.ma... | [
"andreacristinals9@gmail.com"
] | andreacristinals9@gmail.com |
3df3adb1590c3c2b52ec50ad7dc5ee25b136cce6 | 4c549f76677801b12bfaaf63da567ea88b5833cd | /src/main/java/project/spring_boot_api/Model/User.java | fde4b375d6214c5df21a5ccf1d33d60cb60488e7 | [] | no_license | Smatix/spring_boot_api | a05f57ba33a486616494e85fd109740b0f93a585 | 62601a48dc604699d29bcba80092b41b31da4496 | refs/heads/master | 2020-05-29T17:30:19.009763 | 2019-06-16T14:23:02 | 2019-06-16T14:23:02 | 189,279,620 | 0 | 0 | null | 2019-06-16T17:29:55 | 2019-05-29T18:38:39 | Java | UTF-8 | Java | false | false | 954 | java | package project.spring_boot_api.Model;
import javax.persistence.*;
import java.util.List;
@Entity
@Table(name = "User")
public class User {
@Id
@GeneratedValue(strategy= GenerationType.IDENTITY)
private Integer id;
private String login;
private String password;
@OneToMany(mappedBy = "user")
... | [
"suchenia.mateusz@gmail.com"
] | suchenia.mateusz@gmail.com |
07407cd67365d6cd6ed3607ace21863d16f7e743 | 63bf003aaa4563393383b66f93c29cffbcfbf956 | /codingBatPrograms/Warmup-1/hasTeen.java | f7c20e60f37fdfd03ca0a65aad725b7d6ed30aac | [] | no_license | scareoset/Practice | 3496295e086faab5ce8f37fe4def213984426ca3 | 90b9b4bbb9803a0634bab4fa41e56d6362d83372 | refs/heads/master | 2021-10-26T10:13:58.264637 | 2019-04-12T00:20:35 | 2019-04-12T00:20:35 | 110,037,261 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 363 | java | /*
* We'll say that a number is "teen" if it is in the range 13..19 inclusive.
* Given 3 int values, return true if 1 or more of them are teen.
*
* hasTeen(13, 20, 10) → true
* hasTeen(20, 19, 10) → true
* hasTeen(20, 10, 13) → true
*/
public boolean hasTeen(int a, int b, int c) {
return (12 < a && a < 20) || (12 < ... | [
"daniel.wright.314@gmail.com"
] | daniel.wright.314@gmail.com |
a4d2de9692cff10559e6bb4c948565e7bb99d506 | 2977d049607c093471f48b7089b741590f7a7399 | /LanqiaoOJ/2014lanqiaoOJ/src/Test不连续处断开.java | 4e9a09c0996033c7de882f068943852fb8b2392b | [] | no_license | Silocean/JustForFun | dfc78f815e1ceeef0c2d485bd1718ae9b53c9e2b | 185b6dd815ebeba786c479fd9e40a3c9e5d3ef74 | refs/heads/master | 2021-01-11T06:06:02.830713 | 2019-01-21T13:13:08 | 2019-01-21T13:13:08 | 71,687,465 | 1 | 1 | null | null | null | null | GB18030 | Java | false | false | 479 | java | /*
* 把一个串从数字不连续的位置断开
*/
public class Test不连续处断开 {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String s = "12345234568923456789";
String t = s.charAt(0)+"";
for(int i=1; i<s.length(); i++)
{
if(s.charAt(i)==s.charAt(i-1)+1)
{
t += s.charAt... | [
"silenceocean@live.com"
] | silenceocean@live.com |
0e394e9d57a485a84c539a34f7a49a17ae53d2d3 | 8bc8ea66b23245683b14dc265c6441d0a795c131 | /pmcourse/src/main/java/com/example/pmcourse/model/entities/User.java | a4a1bb3fcb99fa6f03310dcb71018ee833d346cb | [] | no_license | nnugmanovaa/ps-academy | b484c962d9816347ec5739da6b094d3d9a72a02a | 42af4d9d31111951dbbebd278f7e9ea14801e56e | refs/heads/master | 2023-02-01T15:23:50.596686 | 2020-12-19T13:51:37 | 2020-12-19T13:51:37 | 322,557,483 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 429 | java | package com.example.pmcourse.model.entities;
import lombok.*;
import javax.persistence.*;
@Entity
@Table(name = "users")
@Data
@NoArgsConstructor
public class User {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String login;
private String password;
public... | [
"nnugmanovaa@gmail.com"
] | nnugmanovaa@gmail.com |
9bd62c7ed186db1ed24aa48e8bc1a494218da97d | 50ae3b6954345a0688b040b647c4f469e023478d | /SkyLock-Master/src/com/yeagle/sky/lock/widget/NormalLockView.java | 9c01c45dc11e9909813221b036ea3bf262bf508d | [] | no_license | linving/SkyLock | 37827d51881e89c836b7b08f9e85be952c08588c | 524b3ec5843e98a004e456f1dd6033a8afd76327 | refs/heads/master | 2021-01-22T15:42:31.241932 | 2014-12-04T08:07:38 | 2014-12-04T08:07:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,267 | java | package com.yeagle.sky.lock.widget;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Locale;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.database.Conten... | [
"821079007@qq.com"
] | 821079007@qq.com |
da8caf3634c8260e64c06ff75096152b5dae501c | c6ddd36e7fbf9a4fa329d3c1f5c1628e1fd2da96 | /DEMO/springannotationdeployment/src/main/java/com/quan/MainTest.java | b2166902a80da24c79e2de2915137e6ed1e57141 | [] | no_license | ryanquan10/Onjava_practice | 86bf9149336efd8857e8dfb23620e914f5f2904e | 6b827adc28928972dfa833caf42c3c00d2096a68 | refs/heads/master | 2022-12-27T12:20:14.231627 | 2020-04-27T07:36:02 | 2020-04-27T07:36:02 | 259,237,358 | 0 | 0 | null | 2020-10-13T21:32:27 | 2020-04-27T07:22:52 | Java | UTF-8 | Java | false | false | 868 | java | package com.quan;
import com.quan.bean.Person;
import com.quan.config.Config;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import java.util.str... | [
"806698083@qq.com"
] | 806698083@qq.com |
bb9fb45ef47b074d7b18e1a2075c1391a62f5b50 | 1554cdad14b214aa3836bb95e0a08c42e554facf | /src/main/java/com/wku/mandi/dao/impl/SequenceDaoImpl.java | fa8b33d3140683a6839e4585f8725b70572b9540 | [
"MIT"
] | permissive | gsopu8065/Mandi-API | 85e1fc4caba35965858d93f0b232a421d8ed8681 | 9eb58e15e6505d12a3c40a5b162931e4e2d50a39 | refs/heads/master | 2021-01-18T20:49:43.057864 | 2015-07-11T20:00:50 | 2015-07-11T20:00:50 | 38,591,750 | 0 | 0 | null | 2015-07-06T01:48:50 | 2015-07-06T01:48:50 | null | UTF-8 | Java | false | false | 1,234 | java | package com.wku.mandi.dao.impl;
import com.wku.mandi.dao.SequenceDao;
import com.wku.mandi.db.SequenceId;
import com.wku.mandi.exception.SequenceException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.mongodb.core.FindAndModifyOptions;
import org.springframework.data.m... | [
"srujanjack@gmail.com"
] | srujanjack@gmail.com |
dc276f5cd0a56d5fd685e9e43b8e66209fab5f8a | dd66f580d332e4fbfc69f9c828c5dab7ddaa8d63 | /demos/flamingo-demo/src/main/java/org/pushingpixels/demo/flamingo/svg/filetypes/transcoded/ext_mpt.java | 7b02dfa7db1896cfda5ed54f1190e70ed6cec935 | [
"BSD-3-Clause"
] | permissive | spslinger/radiance | 44f06d939afc3e27c0d4997b2fd89a27aff39fdf | 7cf51ee22014df1368c04f5f9f6ecbea93695231 | refs/heads/master | 2020-03-31T18:00:48.170702 | 2018-10-11T12:49:29 | 2018-10-11T12:49:29 | 152,442,895 | 0 | 0 | BSD-3-Clause | 2018-10-11T12:49:31 | 2018-10-10T15:04:46 | Java | UTF-8 | Java | false | false | 19,128 | java | package org.pushingpixels.demo.flamingo.svg.filetypes.transcoded;
import java.awt.*;
import java.awt.geom.*;
import javax.swing.plaf.UIResource;
import org.pushingpixels.neon.icon.IsHiDpiAware;
import org.pushingpixels.neon.icon.ResizableIcon;
import org.pushingpixels.neon.icon.NeonIcon;
import org.pushingpixels.neon... | [
"kirill.grouchnikov@gmail.com"
] | kirill.grouchnikov@gmail.com |
1237b1e7a940b10efd003882e1a6fb64514b5788 | 72b3a18424db33045a281ae1ad7ad691f27d3b3e | /src/main/java/com/xm/shiro/admin/entity/UUser.java | 533c3d4f1f68a8e2ee5263924cc043098be19373 | [] | no_license | charlie-ch/springbootShiro | 53fc46bfd8b5cdf2db799036d5f233270fd7d3a1 | 28f959f0f680c8fad1132990441c6b68be55c0d7 | refs/heads/master | 2021-01-25T13:18:29.520124 | 2018-05-17T01:49:25 | 2018-05-17T01:49:25 | 123,552,935 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,594 | java | package com.xm.shiro.admin.entity;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
/**
* @Title: UUser.java
* @Package com.xm.shiro.admin.entity
* @Description: TODO(用一句话描述该文件做什么)
* @author bamboo <a href=
* "mailto:zjcjava@163.com?subject=hello,bamboo&body=Dear... | [
"434534658@qq.com"
] | 434534658@qq.com |
984ed4c2c988a105e0bf686e514bac6415b2c1b5 | fa30e0f9e4725b3eb5e49926fb2a2f1d2817e45f | /week-01/day-4/src/Cuboid.java | b03edbc911f2a8d8849e4d9797efab3dc140df07 | [] | no_license | green-fox-academy/LRobin92 | 9355d9c43d423ce7633080c241be4d52f6e44ac2 | 035f6850095b0002d89b0b63721abd45e369edb4 | refs/heads/master | 2021-02-15T07:48:41.344761 | 2020-06-02T06:42:56 | 2020-06-02T06:42:56 | 244,878,901 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 578 | java | public class Cuboid {
public static void main(String[] args) {
// Write a program that stores 3 sides of a cuboid as variables (doubles)
// The program should write the surface area and volume of the cuboid like:
double a = 3;
double b = 1.5;
double c = 4.5;
double ar... | [
"laszlorobin@gmail.com"
] | laszlorobin@gmail.com |
21b7b769b50ca22a1c0c0fe79cb69d351c04eaa2 | b5724e6dcaf8b270efe3372ed3f2df573b58cfad | /src/com/codeshane/info/Informant.java | a0c8e2be2b73be535851c2bbf4c4842911aca2e5 | [
"Apache-2.0"
] | permissive | rtk4616/codeshane-android | df53faacfd69c6587cb25eba2e9eacd4178c7c1d | 8f111979d327e6c7c300c1110b9cc33e587702b4 | refs/heads/master | 2020-03-19T20:37:30.276914 | 2013-08-16T18:48:30 | 2013-08-16T18:48:30 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,548 | java | /* Informant is part of a CodeShane™ solution.
* Copyright © 2013 Shane Ian Robinson. All Rights Reserved.
* See LICENSE file or visit codeshane.com for more information. */
package com.codeshane.info;
import android.content.Context;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageInfo;
... | [
"shane@codeshane.com"
] | shane@codeshane.com |
240f6ff8d0d536223f4f4607c3d620eb1dd54210 | 7e80af449982fae1a8fce8f4af084c8fec7cdb24 | /src/main/java/com/learning/dao/ModuleAffectedRepositorySearchCriteria.java | 5e1c2726e426c2160127baa3c3b0e0ed3f81e876 | [] | no_license | soufianenajim/learningP | 271ab2426a312255cb055e468e38286c0a53e9c9 | 311273286fe3a5317c96e9f1742c1064a562e6b6 | refs/heads/master | 2021-02-17T21:30:30.429358 | 2021-01-04T08:54:11 | 2021-01-04T08:54:11 | 245,128,748 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 388 | java | package com.learning.dao;
import java.util.List;
import com.learning.dto.ModuleAffectedDTO;
import com.learning.model.ModuleAffected;
import com.learning.model.base.Demande;
public interface ModuleAffectedRepositorySearchCriteria {
public List<ModuleAffected> findByCriteres(Demande<ModuleAffectedDTO> demande);
... | [
"soufianenajime@gmail.com"
] | soufianenajime@gmail.com |
7ddb75ee30145ff3efbebe421f633ac39c2214be | e2f24db85b57ebce57c44a4caa25226de5187e19 | /app/build/generated/not_namespaced_r_class_sources/release/processReleaseResources/r/android/support/v7/appcompat/R.java | 21ec54f0209d86b479ff70355e62cc5a6ba27a80 | [] | no_license | TsukiNoKnight/StagePositionCalc | 0c75d86f0b8d7e3e6cc425c68b07f778d4fd0fb4 | 991f68d3fb681d8339dece6237d62a959d489055 | refs/heads/master | 2020-05-24T00:16:55.419486 | 2019-05-16T11:09:42 | 2019-05-16T11:09:42 | 187,011,168 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 120,814 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* gradle plugin from the resource data it found. It
* should not be modified by hand.
*/
package android.support.v7.appcompat;
public final class R {
private R() {}
public static final class anim {
private a... | [
"zhaojiaji.xiangyang@gmail.com"
] | zhaojiaji.xiangyang@gmail.com |
aeb20f1718b5c3358b50c1c2f0a1a85638eaf9e3 | 4b49508677c0fde7e981a0b50ea34a8b40b38cea | /src/main/java/org/copy/blog/controller/BlogController.java | 0aa640696d4f90b99165dc63202bfbfc7bab4510 | [] | no_license | Atao980602/bootdo | 4561a2d25929dedcef535186cdb10955239afde1 | 8124ebee98df4f52f2b96de15d5f44cef072ca98 | refs/heads/master | 2021-09-16T21:17:51.841006 | 2018-06-25T07:51:51 | 2018-06-25T07:51:51 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,180 | java | package org.copy.blog.controller;
import org.copy.blog.domain.ContentDO;
import org.copy.blog.service.ContentService;
import org.copy.common.utils.PageUtils;
import org.copy.common.utils.Query;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.s... | [
"zhang_xiaotai@126.com"
] | zhang_xiaotai@126.com |
822409ce39e937894a94fe422f32021c551a992f | f1ceb97c993e006c774c65226f5824942d3b879c | /src/com/rh/core/comm/FileMgr.java | 6261d5a2cb3f20f5ea95175f9db3121f559b9373 | [] | no_license | xmplatform/myframework | 7377851bacf16cb42088a220dc21382dcc802dc7 | b086c77847842be239ef9bccd0075060f7c485f7 | refs/heads/master | 2020-07-29T12:49:22.490134 | 2016-03-09T12:50:43 | 2016-03-09T12:50:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 50,181 | java | /*
* Copyright (c) 2013 Ruaho All rights reserved.
*/
package com.rh.core.comm;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.Unsuppor... | [
"86863016@qq.com"
] | 86863016@qq.com |
78f14211779b6e691a66d086d494cc1c7d3046b8 | 974694a2157c3f6697260bedd46c39fc9beac993 | /src/action/my/MyInfoPassChangeAction.java | d50d7e2bb0a58e1d482eb3a1c47611989c0f98b1 | [] | no_license | malrangmalrang/libraryProject_git | 29221de0982c432a3ffdb30127f1afa5f2f36329 | 959b998be2be83e851632ef6007137220b39eccc | refs/heads/master | 2020-06-12T05:44:36.735642 | 2019-06-28T05:54:42 | 2019-06-28T05:54:42 | 194,211,683 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,429 | java | package action.my;
import java.io.PrintWriter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import action.Action;
import svc.my.MyInfoPassChangeService;
import vo.ActionForward;
public class MyInfoPassChangeAction implements Action {
@Override
public ... | [
"변정훈@DESKTOP-02C048P"
] | 변정훈@DESKTOP-02C048P |
96963c3a9cb9a15cccccf1d92e3b18c5be74f761 | 2ac35f6a5b6d3931d0f843edd7471b3be48e3860 | /lectures/gui/Buttons.java | ea5343809fc844a37bfa495c1e3b488c3d4bebea | [] | no_license | jrrpanix/CMP-129 | 252f775f58aa0644f9813aa9f0db6bb05bc145fa | e881ff84a3d46c175f2dcb1e04c6230fcea1b669 | refs/heads/master | 2020-12-13T18:44:39.795323 | 2019-05-24T11:54:27 | 2019-05-24T11:54:27 | 28,812,911 | 3 | 3 | null | null | null | null | UTF-8 | Java | false | false | 1,416 | java | package gui;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class Buttons extends JFrame{
JButton [] _buttons;
JPanel _panel;
JLabel _label;... | [
"john@Johns-iMac-2.local"
] | john@Johns-iMac-2.local |
cd7b58780986399c4db06af13fb5a41d4921289b | 0d4ec5c6a96be4c18680b90f93a79e3fe0d88650 | /src/main/java/cn/yummy/service/Impl/merchant/MerchantOrdersServiceImpl.java | 309d6398d3649c282880a454f46158d8fbf6cac8 | [] | no_license | 161250092/YUMMY | 0cb0089dfb2d43685382bdad2095a0ed69e0e4c3 | d295c09feb03b5c94c3b16be737815cb9873e055 | refs/heads/master | 2022-07-08T20:05:33.406233 | 2019-06-12T13:41:08 | 2019-06-12T13:41:08 | 169,236,859 | 2 | 0 | null | 2022-06-21T00:55:59 | 2019-02-05T12:23:15 | JavaScript | UTF-8 | Java | false | false | 881 | java | package cn.yummy.service.Impl.merchant;
import cn.yummy.dao.merchantDao.MerchantOrdersDataService;
import cn.yummy.entity.order.MerchantSearchEntity;
import cn.yummy.entity.order.Order;
import cn.yummy.service.merchantService.MerchantOrdersService;
import org.springframework.beans.factory.annotation.Autowired;
import ... | [
"examinee@smail.nju.edu.cn"
] | examinee@smail.nju.edu.cn |
8ee212f41daa34152410ecfc624893d6ae9ea2e7 | 68f83cfad948d1afb1b660188800d41598ad1ad8 | /shenyu-admin/src/main/java/org/apache/shenyu/admin/mapper/PluginHandleMapper.java | 3d13f391893b8c374416ab68d5d6809175243b15 | [
"Apache-2.0"
] | permissive | xiaoxiao-quick/incubator-shenyu | 37da63bafd80410e25bfb3906bebac4a196cf090 | b33bf2be48629859ea7c22770f1510863e817f45 | refs/heads/master | 2023-09-03T05:42:12.899356 | 2021-11-20T23:37:50 | 2021-11-20T23:37:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,011 | 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 ... | [
"noreply@github.com"
] | noreply@github.com |
1f38c79d51be2dcfcc6476e8a1ea3ceaa80f3ac4 | bbfb5877b4f6a034da97b74e31c84054120defc9 | /src/main/java/cn/mcmod_mmf/mmlib/json/AbstractSerializer.java | fb69b8c704b04e6117676f5ffd409ba9244c7950 | [] | permissive | 0999312/MMLib | a91ba30bf2bc2c9b9732da813909ee46f68b4c1a | 3e87210c9305a5724e06c492be503533a1ebcd59 | refs/heads/master | 2023-08-31T21:08:15.890789 | 2023-08-11T17:55:49 | 2023-08-11T17:55:49 | 246,910,638 | 11 | 9 | MIT | 2020-11-10T07:24:14 | 2020-03-12T19:02:54 | Java | UTF-8 | Java | false | false | 5,868 | java | package cn.mcmod_mmf.mmlib.json;
import java.lang.reflect.Type;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.JsonParser;
import com.go... | [
"617510630@qq.com"
] | 617510630@qq.com |
40bac37f1e0b1c9f0e8632929644093157353107 | 3206a093c2a8ffc2abfb1d0bf5a8966da276f589 | /BankOfAvalos/bankofavalos/src/main/java/com/bankofavalos/models/UserTypes.java | a6db19280cb09354abc8033bb0b656d49f2a6efe | [] | no_license | jlavalos73/java_project0 | 8c9e700524649a5d4341f88b3e3e3a216d85995b | 04b830d10e275b88de6897e019fbcc37304bfb13 | refs/heads/master | 2021-03-30T04:21:35.965801 | 2020-03-17T16:14:14 | 2020-03-17T16:14:14 | 243,333,887 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 91 | java | package com.bankofavalos.models;
public enum UserTypes {
Customer, Employee, Admin
}
| [
"52511058+jlavalos73@users.noreply.github.com"
] | 52511058+jlavalos73@users.noreply.github.com |
6a78c0aa8ab6c07b314dc419f6d71260086a970d | b0a59e6e0916495a5a7f3290e8eed8feaa1ef383 | /AlgosNdsJava/AlgosNds/src/googlePrep/onsite/DecodeString.java | 5f1f5190f0d0d4d2588f7b950ce1a9ce5b72efee | [] | no_license | shrshk/Algorithms-and-DataStructures | 65070fcfc2cbac906cea9d9ca1f659d44359b112 | 968494899858e58a247b95dbf00fb735a4b6c269 | refs/heads/master | 2021-01-10T03:22:07.455059 | 2020-11-13T21:55:45 | 2020-11-13T21:55:45 | 49,380,953 | 5 | 0 | null | null | null | null | UTF-8 | Java | false | false | 977 | java | package googlePrep.onsite;
import java.util.Stack;
public class DecodeString {
public String decodeString(String s) {
Stack<Integer> intStack = new Stack<>();
Stack<StringBuilder> strStack = new Stack<>();
StringBuilder cur = new StringBuilder();
int k = 0;
for (char ch : s.to... | [
"sveerabattini@dealersocket.com"
] | sveerabattini@dealersocket.com |
51bcb9cea83dd56634e5810fc277e8356a8795d8 | b75af8cf35e8c3f4c0fda2f731a2d533829be607 | /StudentProjects/2015/Individual/M3113068_Hanif-Widi/tugas 5/src/main/java/com/example/hanifwidia/praktikum5/MenuFragment.java | d92df2d2c92f464a6ecf9129b41d421f1dc335c4 | [] | no_license | hanifwidi/UNS_D3TI_ANDROID_CLASS | 9dafa9ec4e0f98ff9ceb1c93002ddd54036f33c6 | 2c538ec44be9cb54f6e4a2ddca83a66002ccdf22 | refs/heads/master | 2020-12-01T03:01:39.833972 | 2016-01-06T01:58:14 | 2016-01-06T01:58:14 | 42,032,058 | 0 | 0 | null | 2015-09-07T04:56:53 | 2015-09-07T04:56:52 | null | UTF-8 | Java | false | false | 1,410 | java | package com.example.hanifwidia.praktikum5;
import android.app.ListFragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ListView;
public class MenuFragment extends ListFragment {
St... | [
"santosojupri@gmail.com"
] | santosojupri@gmail.com |
34bd5707db503fa0a437fe44738bb3f27ca9334a | aa97d233bd5ed372058985a2ebb9c5e1f674c34d | /repository/src/main/java/com/soonfor/repository/model/RepPageTurn.java | b32ff427dd533340a25fd569cd5c29ebc7e80a59 | [] | no_license | sf2018dyg/MeasureManger | 8e27eef12f2380de6a4fa6f5993fab00024b2e79 | d57265ba9ba0a3db715dc657284b68ea8e27cd63 | refs/heads/master | 2020-04-14T02:09:45.598814 | 2018-12-30T10:00:29 | 2018-12-30T10:00:29 | 163,577,394 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,253 | java | package com.soonfor.repository.model;
import android.os.Parcel;
import android.os.Parcelable;
/**
* 作者:DC-DingYG on 2018-06-21 8:42
* 邮箱:dingyg012655@126.com
*/
public class RepPageTurn implements Parcelable{
private int rowCount;
private int prevPage;//
private int pageNo;
private int pageCount;
... | [
"840390477@qq.com"
] | 840390477@qq.com |
619328250c1a3dcf9042d12d556345ce91441a0f | bbe7a3828e2ea322f6db4a0cc58a808fb8ebcdd9 | /src/main/java/com/apascualco/batch/processing/job/LoadCsvToDatabaseJob.java | 75ff799f75a22e217cd266612fdd241b3d57d7e9 | [] | no_license | apascualco/spring-batch | 44cab01f19fe7be68db0831561289d957be12ce1 | 314a9995cf77555e63ceae7195e091e7f321870d | refs/heads/master | 2021-01-03T14:07:54.945035 | 2020-12-31T20:39:48 | 2020-12-31T20:39:48 | 240,098,465 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,219 | java | package com.apascualco.batch.processing.job;
import com.apascualco.batch.processing.step.CustomStep;
import lombok.extern.slf4j.Slf4j;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.configuration.annotation.JobBuilderFactory;
import org.springframework.batch.core.configuration.annotat... | [
"apascualco@gmail.com"
] | apascualco@gmail.com |
d63de6b7a92adcb3a0b012f91fb5b6777b2fb1ea | 1a4801b7808d7df4856522c7f70619d2f09202c5 | /core/src/kushal/application/flappy/sprites/Animations.java | d53216d2385d3f75a24fa20946902ab7949d4509 | [] | no_license | Kushal-Gera/FlappyBirdsClone | 8083836834b352a3768fd63d856309bc4a214c80 | 378cb3df9b2f480cd0440186036ec9325b9f7103 | refs/heads/master | 2020-09-01T00:33:14.102244 | 2019-11-02T04:03:29 | 2019-11-02T04:03:29 | 218,828,756 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,099 | java | package kushal.application.flappy.sprites;
import com.badlogic.gdx.graphics.g2d.TextureRegion;
import com.badlogic.gdx.utils.Array;
public class Animations {
private Array<TextureRegion> frames;
private float maxFrameTime;
private float currentFrameTime;
private int frame;
private int frameCount;... | [
"kushalgera1212@gmail.com"
] | kushalgera1212@gmail.com |
e886574cb3181d55874622b7b9197efe3a235c3e | 7b09952f089f9dc1127ba59fb5fb2645e567f713 | /ALD-Aufgabenstellungen-Starter/src/A04_TraverseTree/WoerterbuchWordsPrefixTest.java | 24bdb6c0e4b144bb9f7c571e3df6ce61026231f4 | [] | no_license | lansc02/ALDUe | 69128f6c9a8f4e25654a5c0573a047e2ec81509a | 3911bbe084d2bdd894b15e28d9973b76ef8b00d3 | refs/heads/master | 2023-06-01T21:06:36.059286 | 2021-06-18T21:22:13 | 2021-06-18T21:22:13 | 367,446,816 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,600 | java | package A04_TraverseTree;
import static org.junit.Assert.*;
import java.util.Set;
import org.junit.Before;
import org.junit.Test;
public class WoerterbuchWordsPrefixTest {
private Woerterbuch wb;
@Before
public void setUp() throws Exception {
wb = new Woerterbuch();
wb.add("Homer");
wb.... | [
"stephan@lanegger.at"
] | stephan@lanegger.at |
b9f67634ccbe2a03933af85636821da9ccbee705 | fde20bcdf3e363ab472b9e23289a75d356d383f1 | /src/main/java/com/example/jobs/domain/enums/JobApplicationStatus.java | fa63d773b38f1c035cc82ac86b9513cd0842f68e | [] | no_license | CATIGERN/job-applications | 277b7b191a150e78b2b1216aeca626de2d5a6bd2 | bdfa442cd3ea4af18507f060ac9f31c663a916b7 | refs/heads/master | 2020-07-30T10:25:45.046957 | 2019-09-22T18:03:53 | 2019-09-22T18:03:53 | 210,191,693 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 115 | java | package com.example.jobs.domain.enums;
public enum JobApplicationStatus {
APPLIED, INVITED, REJECTED, HIRED
}
| [
"vishal.gupta@paysafe.com"
] | vishal.gupta@paysafe.com |
aa2ef1525da5290230cb53cb282ce04b1aa204c0 | 92225460ebca1bb6a594d77b6559b3629b7a94fa | /src/com/kingdee/eas/fdc/invite/supplier/ISupplierReviewGatherSurvey.java | 0f7dce675ef8b6605d55fe972fa7d6f98cb91cb3 | [] | no_license | yangfan0725/sd | 45182d34575381be3bbdd55f3f68854a6900a362 | 39ebad6e2eb76286d551a9e21967f3f5dc4880da | refs/heads/master | 2023-04-29T01:56:43.770005 | 2023-04-24T05:41:13 | 2023-04-24T05:41:13 | 512,073,641 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 3,103 | java | package com.kingdee.eas.fdc.invite.supplier;
import com.kingdee.bos.BOSException;
//import com.kingdee.bos.metadata.*;
import com.kingdee.bos.framework.*;
import com.kingdee.bos.util.*;
import com.kingdee.bos.Context;
import java.lang.String;
import com.kingdee.eas.fdc.basedata.IFDCDataBase;
import com.kingdee.eas.co... | [
"yfsmile@qq.com"
] | yfsmile@qq.com |
41d93306f9e8a27cf406f88671437365fdf1e623 | 7dad937772dc60e3f0d8a8c92f81ec7dc93a03e7 | /appsnaauthorrank/src/main/java/br/com/ufpb/appsnaauthorrank/util/XMLUtil.java | 8e2e8936cbe35e92cdbd3f1b64252856551a5fae | [] | no_license | moacirlmjr/appsnaauthorrank | 145ae853ebd862d4474fc67f8df0dc18a8a775c4 | 718f799526dc1945978a7a391abd4836904fe636 | refs/heads/master | 2020-12-03T03:01:14.706158 | 2015-02-21T17:10:55 | 2015-02-21T17:10:55 | 33,882,768 | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 9,363 | java | package br.com.ufpb.appsnaauthorrank.util;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
import java.util.List;
import java.util.Set;
import br.com.ufpb.appsnaauthorrank.beans.Autor;
import br.com.ufpb.appsnaauthorrank.beans.to.XmlTO;
public class XMLUtil {
publ... | [
"moacir.lopes.jr@de30e162-be03-8cb1-e19a-53aab67808d2"
] | moacir.lopes.jr@de30e162-be03-8cb1-e19a-53aab67808d2 |
e851679ecb9f351f9f58332c35498d94c046f60b | 4627d514d6664526f58fbe3cac830a54679749cd | /results/randoop5/time-org.joda.time.DateTimeUtils-20/RegressionTest0.java | 6764e9de9246aa393480cd6b5613841cf607b949 | [] | no_license | STAMP-project/Cling-application | c624175a4aa24bb9b29b53f9b84c42a0f18631bd | 0ff4d7652b434cbfd9be8d8bb38cfc8d8eaa51b5 | refs/heads/master | 2022-07-27T09:30:16.423362 | 2022-07-19T12:01:46 | 2022-07-19T12:01:46 | 254,310,667 | 2 | 2 | null | 2021-07-12T12:29:50 | 2020-04-09T08:11:35 | null | UTF-8 | Java | false | false | 731,740 | java | import org.junit.FixMethodOrder;
import org.junit.Test;
import org.junit.runners.MethodSorters;
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class RegressionTest0 {
public static boolean debug = false;
@Test
public void test0001() throws Throwable {
if (debug)
System.out.forma... | [
"P.Derakhshanfar@tudelft.nl"
] | P.Derakhshanfar@tudelft.nl |
de7881d7dcdb2c29956c02453903c01b911f1e57 | 2c8f626b41b3b8ae6de50bd47d3c1f0f779b7a6c | /UF2/JDBC/JDBC_I/JDBC_I_EX3.java | 9e771dda1b961d47fd41b88bbc2cf0d5120452aa | [] | no_license | darkivan/M6 | 2d7bd4c28823f086d78bfc27b512481b706cb0af | 5e129793b753b3e2fb49a3e0e4929367ba4a7bee | refs/heads/master | 2020-04-08T13:12:04.937674 | 2019-05-28T16:14:59 | 2019-05-28T16:14:59 | 159,380,129 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,050 | java | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.sql.*;
public class JDBC_I_EX3 {
public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
System.out.println("localidad: ");
... | [
"noreply@github.com"
] | noreply@github.com |
8cd7cb12ec4b7e6831d893f9a012c6a76e272207 | 098e3316a8a1647015d17b4220d92144e9adf4d3 | /src/com/kevinhsiao/propertymanagement/client/GreetingService.java | 213140df3ebaed7018ee51f7e3a18a9c9dfbf549 | [] | no_license | kevin-hsiao/PropertyManagement | 56087219349f48403b1eb13770fdbf51f3d35dca | 5bd4d51941bb27d861d2cf320054dcba01d186ba | refs/heads/master | 2022-09-08T21:56:01.719827 | 2020-05-25T20:45:41 | 2020-05-25T20:45:41 | 266,876,901 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 384 | java | package com.kevinhsiao.propertymanagement.client;
import com.google.gwt.user.client.rpc.RemoteService;
import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
/**
* The client-side stub for the RPC service.
*/
@RemoteServiceRelativePath("greet")
public interface GreetingService extends RemoteService {
Str... | [
"kevin.hsiao@mail.utoronto.ca"
] | kevin.hsiao@mail.utoronto.ca |
7aecfb852e84adf3b18124c87dac9748ba6f9b49 | 681e9af713eb7e07b3b9d52cb55361aa2a5e1dd5 | /codewars/src/main/java/com/codewars/SequenceSum.java | d94ac14b88f5590d46d50fd8f09fa869dd25bea5 | [] | no_license | jaywalker76/codewars-1 | 8a3374ceb8f06ae18d0a3af8a22671486dea1f58 | ed1f0a558005bc42ffa80d97edb2a2d41b3ba478 | refs/heads/master | 2021-01-20T08:34:47.618268 | 2016-05-17T12:15:53 | 2016-05-17T12:15:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 749 | java | package com.codewars;
import java.util.ArrayList;
import java.util.List;
public class SequenceSum {
public static void main(String[] args) {
sumOfN(3);
}
public static int[] sumOfN(int n) {
List<Integer> numberList = new ArrayList<Integer>();
if (n >= 0) {
for (int i = 0; i <= n; i++) {
numberLis... | [
"dlee0113@gmail.com"
] | dlee0113@gmail.com |
6ddbbb401e5a7d5bfe63d5b0f8d18ce83bc31332 | ebc630442237e87798cd0b31b02a9f6b76a2e589 | /src/main/java/com/pmsj/cinema/common/vo/AutocompleteVo.java | 41c5da18fecbc6057ef734dc64513c5f4e055103 | [] | no_license | bettercallsjh/cinema | 18e4d96818e8d92b4521c06306d5bedc0cf53402 | 20bbbb285b4ead4b7003c83685f3638f29c9b85a | refs/heads/master | 2022-12-02T01:39:36.886508 | 2020-08-19T06:56:07 | 2020-08-19T06:56:07 | 288,438,162 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 307 | java | package com.pmsj.cinema.common.vo;
import lombok.Data;
import lombok.ToString;
import java.util.List;
/*
* @Author 潘升
* @Description //TODO $
* @Date 2020/7/7 13:48
**/
@Data
@ToString
public class AutocompleteVo<T> {
private String msg;
private Integer code;
private List<T> data;
}
| [
"742673570@qq.com"
] | 742673570@qq.com |
c3b8ff9491a07de426662a241f02e51fa1a0336c | a962b552bd7f6ab0bbf7cfb9d3142fd0f86e681e | /Employee.java | 6c48678b59b924962fbb45869faec02bb115d24c | [] | no_license | Davestrings/Practise-Java-codes | 60e590d806fa79a1f8f7c45f90ab6b72c7db2d36 | b2a07aafe1f46262490e484dc7950e0d71c1a23c | refs/heads/master | 2023-02-20T09:16:19.119796 | 2021-01-23T11:06:07 | 2021-01-23T11:06:07 | 332,197,178 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,445 | java | import java.util.Scanner;
public class Employee{
private String lastName;
private String firstName;
private String role;
private double salary;
public Employee(String myLastName, String myFirstName, String myRole, double mySalary){
this.lastName = myLastName;
this.firstName = myFirstName;
this.role = myRole... | [
"fatunbidavidkayode@gmail.com"
] | fatunbidavidkayode@gmail.com |
d38d3f3aabc8ca566b928d746ef4874aefa046d7 | 48f20e9f3bfabef52b4c0031404651425f21eba4 | /app/src/main/java/com/example/android/guardiannewsapp/QueryUtilities.java | 55529d7c7168717ece114775e4f2f28f76f42db4 | [] | no_license | Al3xSav/BookList | 48a7eed855f35960a7c7ea0da73098b39abf5351 | e496096950ef3311d878173fad6485c383f48639 | refs/heads/master | 2020-03-29T01:23:36.213567 | 2017-07-08T17:25:09 | 2017-07-08T17:25:09 | 94,639,210 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,908 | java | package com.example.android.guardiannewsapp;
import android.text.TextUtils;
import android.util.Log;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java... | [
"alex.savtsouk@gmail.com"
] | alex.savtsouk@gmail.com |
763279b8f8a2ea5f12e775de21970adce4992198 | e96f5d6b3bbb4d3a7898e52b775f42f927fc6b36 | /app/src/main/java/com/aspros/selectcity/WheelView.java | 8cb2c2571e757e47883d78dfc974d1ecf706ba7a | [] | no_license | aspros-luo/SelectCity | d760e64ded358ce0bf3160b5ef72e3cabc3959d1 | 425a2a435c3ec50b5e5ffeb089e7e385da99b9fd | refs/heads/master | 2021-01-01T04:19:19.486879 | 2016-04-12T05:45:02 | 2016-04-12T05:45:02 | 56,034,601 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,886 | java | package com.aspros.selectcity;
import android.app.Activity;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.ColorFilter;
import android.graphics.Paint;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.util... | [
"aspros_l@outlook.com"
] | aspros_l@outlook.com |
9d77bf87cf53094b47eed11100dd605a3b9f4563 | bfc08f90092c4981a6e6d23bb62b7963460c3afd | /ch09-21/src/Interfaces/rodent/RandomRodentGenerator2.java | c5606269ecf17065050f99a2659fc968d84836fb | [] | no_license | OneTe/Thinking-in-java-note | 88ca3ac7374f8ffdf0771b0bec2f7c92166434b4 | 35b70ace64e636a6afcdd8f520d44fb08beadb85 | refs/heads/master | 2021-03-24T12:18:32.428829 | 2018-01-31T11:23:36 | 2018-01-31T11:23:36 | 83,625,936 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 399 | java | package Interfaces.rodent;
import java.util.Random;
/**
* Created by wangcheng on 2017/4/21.
*/
public class RandomRodentGenerator2 {
private Random rand = new Random();
public Rodent0 next(){
switch (rand.nextInt(3)){
default:
case 0:return new Mouse0();
case 1:r... | [
"veoxft@hotmail.com"
] | veoxft@hotmail.com |
4dad3505f7552f550f4b2693bf571ca7d2090679 | 7a8ab679666a9f47301996860183b25974ea7305 | /SimpleTicTacToe-Try2/src/player/package-info.java | 31bc165d306641b9bced57937105dbb37911b11e | [] | no_license | cykeltur/TICTAC-MVC | 6568b32cf9aebd48764249ba9b16a6beb9fb8d99 | 29db5be61449bfbb13670d83a0e39828094c8844 | refs/heads/master | 2021-01-09T21:49:21.665050 | 2016-02-26T10:18:33 | 2016-02-26T10:18:33 | 52,448,186 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 133 | java | /**
* @author Niklas Karlsson 0703032191
*
*
* Here is the Player-class and the abstract class : Human...
*
*/
package player; | [
"cykeltur@gmail.com"
] | cykeltur@gmail.com |
ab569715464c5e0b581e4c4d0241227a324f0f2a | 1af6dbc2512b69742db982a69afe7aba2f5a24ec | /src/test/java/gr/example/zografos/vasileios/juniorapp/ExampleUnitTest.java | a2d96692e82d6e449528fafc835a012bbd74c58a | [] | no_license | billz96/JuniorApp | 1e348c2aa3c972a1fbaf9fff010a7d61540675b6 | 3906b83d4e495d708da58cd8fc129e01c6c69f0d | refs/heads/main | 2023-02-24T21:34:37.713613 | 2021-01-27T10:32:11 | 2021-01-27T10:32:11 | 318,162,657 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 400 | java | package gr.example.zografos.vasileios.juniorapp;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Tes... | [
"noreply@github.com"
] | noreply@github.com |
ee3d0e238acb6510b66db369425c66e36dc09168 | 216a62b7d90e40fbfe2497ef6c8e5b548c525a0b | /app/src/main/java/android/rezkyauliapratama/com/unittesttraining/MainActivity.java | 773ac66fa8675fb1fd9c7c800dc5c9d1f79d31df | [] | no_license | rezkyauliapratama/dattel-unittest-training | 8442b1b29e08eadd67e4b986a199720d73048535 | a2d3610922a79ab7ac7b28796172bfcb10726341 | refs/heads/master | 2020-03-30T23:08:04.227755 | 2018-10-08T06:47:08 | 2018-10-08T06:47:08 | 151,691,677 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,838 | java | package android.rezkyauliapratama.com.unittesttraining;
import android.annotation.SuppressLint;
import android.databinding.DataBindingUtil;
import android.rezkyauliapratama.com.unittesttraining.Event.FetchUseCaseEvent;
import android.rezkyauliapratama.com.unittesttraining.databinding.ActivityMainBinding;
import androi... | [
"rezkyauliapratama@gmail.com"
] | rezkyauliapratama@gmail.com |
14acfc78ea64e3ff3049f9ac62f1f5dcb72e6083 | 12ce2213a4ad7263fba385a479aa3bf54802184d | /src/main/java/leetcode/RemoveElement.java | f794be91e7e7a2886619174d4d1eb9a31c6ef909 | [] | no_license | moxiaomo0804/tom | fc7cdd79c1304d4a1c1ae6d48ac768672773a3c4 | b4ad3cf01bc2454aa63e7dd0711cf40ebaf81861 | refs/heads/master | 2023-03-03T14:14:13.406840 | 2021-02-13T11:16:00 | 2021-02-13T11:17:49 | 337,631,373 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 614 | java | package leetcode;
import java.util.HashSet;
import java.util.Set;
public class RemoveElement {
public static void main(String[] args) {
int[] nums = {3,2,2,3};
int[] res = removeElement(nums, 3);
for (int re : res) {
System.out.println(re);
}
}
public static int... | [
"1064352560@qq.com"
] | 1064352560@qq.com |
aa8c0806ed9f66bd70d7c1e0f67dcfd3db7304b5 | 862c46f3ee96c53cbc5b2713b0fd17d54af51f15 | /sharding-jdbc-example/sharding-jdbc-example-jdbc-transaction/src/main/java/com/dangdang/ddframe/rdb/sharding/example/transaction/Main.java | 9a6152ff1838cc9b0e76de93c962bf0b3c5effa9 | [
"Apache-2.0"
] | permissive | xiezequn/sharding-jdbc-test | fea0b4fc4b8c0553a362ad4d8a8d8398268cebab | 15d34eb1ae38c07ab103f28d3bb65f4dbcc43015 | refs/heads/master | 2022-12-26T23:31:04.378254 | 2019-12-26T02:46:53 | 2019-12-26T02:46:53 | 78,508,637 | 1 | 0 | null | 2022-12-16T03:29:27 | 2017-01-10T07:26:36 | Java | UTF-8 | Java | false | false | 6,465 | java | /*
* Copyright 1999-2015 dangdang.com.
* <p>
* 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 applicable law o... | [
"xiezequn@mindai.com"
] | xiezequn@mindai.com |
b23eead698c577421f32faa8382ec04a90677eff | 05961433323670f46d11b3eec0a39554bced559e | /src/main/org/bitj/wire/objects/TxInput.java | c4aeff5f32753382908a1ed10858bb8f3e811548 | [
"BSD-3-Clause"
] | permissive | bitj/bitj | c1d6a35aaaead0efa9bd132846d79cde23f25242 | 2624128741f918d004638619b5523f6868150214 | refs/heads/master | 2016-09-06T13:44:20.215144 | 2014-09-21T17:17:08 | 2014-09-21T17:17:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,524 | java | package org.bitj.wire.objects;
import org.bitj.utils.Utils;
import org.bitj.wire.BitcoinInputStream;
import org.bitj.wire.BitcoinOutputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.util.Objects;
import static com.google.common.base.Objects.toStringHelper;
import static com.goo... | [
"qertoip@gmail.com"
] | qertoip@gmail.com |
a37c967eb8aee64a675bc25d84084d40c08542e2 | 4f392c7d5b2abd864fb6e716f59a23098edd21bf | /e-shop/src/logic.java | b823b64a61c2f723f6996b261db6c3ca375210ae | [] | no_license | saaikrishna/sharing-project | 238f0a4d814fd0cfbb1b26d7c20a098a1c02ba3a | 162df6529386f8d32d418a92ede6888bc6a5f037 | refs/heads/master | 2020-05-18T07:14:07.916898 | 2019-04-30T12:37:03 | 2019-04-30T12:37:03 | 184,258,899 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,116 | java | import java.io.IOException;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import ... | [
"noreply@github.com"
] | noreply@github.com |
803682ece8b26d85420bc1347bfeb4ebb6191da8 | 1bca5b230b5ef5b2b9aab78fe8937b1754a50efd | /APP_ORMLITE/app/src/test/java/br/com/andre/app_ormlite/ExampleUnitTest.java | 851c7926277071d5550af382af48fa9fabf5447e | [] | no_license | andrefellype/ORMLITE | 15e3a5013bea5790d27e7df5251e807f774d7191 | 45c3d100abff8dce77eb5fee8f3ebf1c37a4156f | refs/heads/master | 2020-12-24T19:05:16.958349 | 2016-05-29T14:47:53 | 2016-05-29T14:47:53 | 58,498,319 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 317 | java | package br.com.andre.app_ormlite;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* To work on unit tests, switch the Test Artifact in the Build Variants view.
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
} | [
"andrefellype2@hotmail.com"
] | andrefellype2@hotmail.com |
a1e2136981a56d80ad60ae037b11a8261562a903 | 1bdbaed4f9fecee110ffa57b391616961b80e1d4 | /src/main/java/phex/gui/common/LookAndFeelFailedException.java | b83b32f085bf8421969443f1eca1ae4f5c3bebb4 | [] | no_license | ToSp1987/i2phex | 201abed7fc514a0a2cefe9f800d66176c076e81c | 59b4240b6e68ffb38c9dc701059e231c5e340691 | refs/heads/master | 2022-04-07T17:56:37.009665 | 2014-04-15T13:54:05 | 2014-04-15T13:54:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,319 | java | /*
* PHEX - The pure-java Gnutella-servent.
* Copyright (C) 2001 - 2006 Phex Development Group
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
*... | [
"ampernand@gmail.com"
] | ampernand@gmail.com |
6b045a4429ae705e69da2d0870757172a6a823f3 | b53e52528d207757c65c1f96e8636e7bba8919bf | /app/src/test/java/com/carlos/anguiano/myapplicationwebrtc/ExampleUnitTest.java | 4b2f786969eef21e49a0f3b2f770ea5a31f22ebf | [] | no_license | cjoseanguiano/webrtc | 88431fb30bbe78008a8b8154e0e4a5bc522cad5b | 2f57bbdab2da2cb7158ca6fd3572e50b39806b31 | refs/heads/master | 2020-06-02T06:46:36.218711 | 2019-06-10T01:16:16 | 2019-06-10T01:16:16 | 191,074,063 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 400 | java | package com.carlos.anguiano.myapplicationwebrtc;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Tes... | [
"c.joseanguiano@gmail.com"
] | c.joseanguiano@gmail.com |
e6b78df256061bab9b1732f83d42f3ffc82c6a04 | 0bef202916bb270157764a7904e8fb97018692c1 | /Selenium/src/locators/ClassName_Locator.java | ff0d3c6f02ffd5436e0722f457db83ad0509a847 | [] | no_license | Harshitcpatil/SeleniumExp | afa47f55162cc528b0373f1e7df95d1509421951 | 744f00bd42bead400ca0a50e3aaa2e2c717e1831 | refs/heads/master | 2023-07-27T00:00:51.384004 | 2021-09-01T18:12:08 | 2021-09-01T18:12:08 | 400,769,982 | 0 | 0 | null | 2021-09-01T18:12:09 | 2021-08-28T10:57:29 | Java | UTF-8 | Java | false | false | 813 | java | package locators;
import org.openqa.selenium.By;
import org.openqa.selenium.chrome.ChromeDriver;
public class ClassName_Locator {
public static void main(String[] args) {
ChromeDriver ch = null;
try {
System.setProperty("webdriver.chrome.driver", ".\\Library\\drivers\\chromedriver.exe");
ch = new ChromeDri... | [
"harshitcpatil@gmail.com"
] | harshitcpatil@gmail.com |
a57f20584f0a2762492292fee4090e4375e4b34b | 2dc2ef9abdd0e99c825e1c381651e57e8d122183 | /src/utility/Student/NotificationTableItem.java | aed6552ff620cfaa4a5c303baa24cac39f9deeef | [] | no_license | muktadir-rhmn/tsc | 345e16dcc8428d14b86e32986783229a3e7de78a | 362013e8b4a1ee18a40c79e7c042b85f41747f7b | refs/heads/master | 2020-03-18T12:11:56.848902 | 2018-05-24T12:47:49 | 2018-05-24T12:47:49 | 134,714,220 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 532 | java | package utility.Student;
import utility.notification.NotificationToSend;
/**
* Created by MUKTADIR on 12/3/2015.
*/
public class NotificationTableItem {
public int no;
public String title;
public String from;
public String time;
public String body;
public NotificationToSend notification;
... | [
"muktadir.rhmn@gmail.com"
] | muktadir.rhmn@gmail.com |
b673edf0897e8c7307b6d23f482df2d3002ed490 | c1b7da18807dd4879f46c66041aa3cec6e8821c2 | /coffee-common/src/main/java/com/coffee/httpclientutil/common/HttpResult.java | 6e931c22ef1008e4e58aa976739000b900ddb751 | [] | no_license | CoffeeCooler/coffee-cloud | 521499653434a95176b620ef2916111ecfb40fb8 | 01ddbbbdaf0ac063a12d8b6c8a42e12fb57bb631 | refs/heads/master | 2023-01-05T20:33:31.722640 | 2020-11-09T15:17:10 | 2020-11-09T15:17:10 | 297,544,429 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,469 | java | package com.coffee.httpclientutil.common;
import java.io.Serializable;
import org.apache.http.Header;
import org.apache.http.HttpResponse;
import org.apache.http.ProtocolVersion;
import org.apache.http.StatusLine;
/**
* 请求结果
*
* @author arron
* @version 1.1
*/
public class HttpResult implements Serializable{
... | [
"1015942245@qq.com"
] | 1015942245@qq.com |
7a608346541bbc6be972a53ff13b920a1cf5f2e6 | e44a5e56653133dc615a12eb55abebd4c9816b10 | /common-lib/src/main/java/com/poc/commonlib/service/UserService.java | 65a71d8edb294b9e8c1840ec3e70194468fadc6c | [] | no_license | sachinnagalgawe/microservices | 3ef9d62731f104b0b84783e23fe58a759225034a | 6d61784917ceee47ed3cc3366076bc6bf552d3f3 | refs/heads/main | 2023-03-18T16:28:40.789312 | 2021-03-13T04:03:47 | 2021-03-13T04:03:47 | 346,699,529 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 319 | java | package com.poc.commonlib.service;
import java.util.List;
import com.poc.commonlib.entity.User;
public interface UserService {
public User create(User user);
public List<User> findAll();
public User findById(Integer id);
public User updateById(Integer id, User user);
public void deleteById(Integer id);
}
| [
"sachin.nagalgawe@xebia.com"
] | sachin.nagalgawe@xebia.com |
0c0f7c8edd99c7f99d85eaef89ce4e02d46f9f33 | 1bf88e9017c64db05a0054630aa9f19c1e61a2c9 | /app/src/androidTest/java/com/videostrem/tutorial/ExampleInstrumentedTest.java | 37788d63c8744df1c8b79e6040d0ef7ca1d0d91c | [] | no_license | tapi-y/Androidwebview | 1f24cda9a968bb11ee777936d5da5bb4e52fcd66 | 73bef98c5ef74f4185c3bbd3c71a8290fb389948 | refs/heads/master | 2020-06-20T00:17:09.666568 | 2019-07-15T05:56:00 | 2019-07-15T05:56:00 | 196,925,278 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 730 | java | package com.videostrem.tutorial;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android... | [
"tapi09ucat@gmail.com"
] | tapi09ucat@gmail.com |
9225a35b8c54f2ac9685e01d1dc6fd9267134ef9 | ca3712b864ff53cf0fdf1ebc3bad99dde23bb289 | /Rock.java | 271ddc20e8030c3a60e269799db65c042a87370b | [] | no_license | SmokinClove/kattis_solved_problems | 96b225c1002a4470c244001b5003ad34c5b4ed25 | a0d03fa401e8dcad3c060ca5ad602f5877ae2f69 | refs/heads/master | 2020-04-06T06:54:48.887330 | 2016-08-26T16:11:36 | 2016-08-26T16:11:36 | 65,444,427 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,756 | java | import java.text.DecimalFormat;
import java.io.*;
public class Rock {
private int[] P;
private int[] L;//losses
private int n;
private int k;
private int games;
void run() throws IOException{
BufferedReader sc = new BufferedReader(new InputStreamReader(System.in));
String[]... | [
"van.tuong.nguyen@hotmail.com"
] | van.tuong.nguyen@hotmail.com |
1ecd9aabdb28f7131dd29d97c22564d389445470 | 0e59dd845afd2579eedccad0498120f4d5e3556a | /SystemUI/com/android/systemui/statusbar/policy/BluetoothControllerImpl.java | 3393366e09de3c1f5d3c66fecbc755520e48827f | [] | no_license | Thief007/x9pro | 64cb51e4af78e68495ac87e42d912120109a0855 | 48ef78fcccb5fbab18d296d9c9d857ee499a3ce6 | refs/heads/master | 2021-01-19T23:33:19.317738 | 2017-04-22T08:12:26 | 2017-04-22T08:12:26 | 88,994,456 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,500 | java | package com.android.systemui.statusbar.policy;
import android.content.Context;
import android.os.Handler;
import android.os.Looper;
import android.os.Message;
import android.util.Log;
import com.android.settingslib.bluetooth.BluetoothCallback;
import com.android.settingslib.bluetooth.CachedBluetoothDevice;
import com.... | [
"cat_007@ukr.net"
] | cat_007@ukr.net |
7a049767c724e0dbecc4ca1e950f16b2691d0362 | f843c2ac2e4b884f91b235cf13a800e2bf7b8165 | /src/main/java/CheckPrimes.java | 142814a8a0a8b75b097f54be6b2747c52b51db8c | [] | no_license | TienCGC8JAVA/-CheckPrimes | 508d14fd8c26036445320aea0c007946d92b0d5a | aa11ce555fea80fd02b0947a76c5a57fdc1736e2 | refs/heads/master | 2020-05-30T21:47:50.020220 | 2019-06-03T10:05:19 | 2019-06-03T10:05:19 | 189,980,811 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 772 | java | import java.util.Scanner;
public class CheckPrimes {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.print("Enter a number:");
int number = scanner.nextInt();
if (number < 2)
System.out.println(number + " is not a prime");
... | [
"nguyenmanhtien08081994@gmail.com"
] | nguyenmanhtien08081994@gmail.com |
74f9e283edd337eafcb1afaab6e193638713bd03 | 5eb9432ca916c9c3fe40c27c01ab6f87192bd028 | /src/com/company/备忘录.java | f8d393d70288f25bffdbec66407156900eb25fc7 | [] | no_license | sarleon/timemannger | 2e25d8c0f6b9a7ab63be851553734160d2e7a24d | 4eb5122e69d411113d696bc47c0d1f90e94c3ef5 | refs/heads/master | 2021-01-10T04:01:49.471828 | 2015-11-14T11:10:34 | 2015-11-14T11:10:34 | 46,164,301 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 183 | java | package com.company;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
/**
* Created by sarleon on 15-11-14.
*/
public class 备忘录 {
}
| [
"sarleon56@hotmail.com"
] | sarleon56@hotmail.com |
814062d6c3e25f3675cfa97045fd3266b114b258 | c2d070d7bc569349d9b60ff9ed85da1c9d4a3f1e | /mybatis_study_v1/mybatis-05/src/main/java/com/kuang/pojo/User.java | 94957a0cb9c50d98d2869e6f7bcb4530ecb411ee | [] | no_license | maryhpp/mybatis_study_v1 | da1a5ba08ce9e11b08366393a1d18aec1e97bcbf | a7d328c557e24f60b1b7d7f5be27baacac59d17e | refs/heads/master | 2023-05-13T02:32:33.708228 | 2021-06-07T08:06:15 | 2021-06-07T08:06:15 | 365,987,325 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 256 | java | package com.kuang.pojo;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class User {
private int id;
private String name;
private String password;
}
| [
"790105818@qq.com"
] | 790105818@qq.com |
d5618db2a7bb467e3f24a2a64db4afe0127818ba | b1dcbeb3923071fe194dad74d3087c50790ec124 | /ContaCorrenteComPolimorfismo/src/contacorrentecomheranca/ContaCorrente.java | ebc621c5484ff9771d452ef26f5d80a23f5ae625 | [] | no_license | lucasouza2/exerciciosJAVA | d0f41bf39ee81758168d72e946302627ca79a49c | 4dc0e289e03918d4adfc1def1cba5583859846b0 | refs/heads/master | 2022-12-02T23:52:58.414447 | 2020-08-21T23:32:44 | 2020-08-21T23:32:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,194 | java |
package contacorrentecomheranca;
public class ContaCorrente {
//Atributos
protected String numeroConta;
protected Pessoa titular;
protected double saldo;
public ContaCorrente(String numeroConta, Pessoa titular) {
this.numeroConta = numeroConta;
this.titular = titular;
sald... | [
"lucasrico25@gmail.com"
] | lucasrico25@gmail.com |
3b84d9690f58bb5bd56828c8e17c93e860dbc904 | c37c6a42ef49e8950935b4ca1f707b41f8975251 | /eureka-discovery/src/main/java/com/ylizma/eurekadiscovery/EurekaDiscoveryApplication.java | 3d963d21347a38da7359863b0343d5319ad078ba | [] | no_license | ylizma/examen-micro-service | 3e20511d9ae9849ad5a3819f6207efce42c0515a | aca1287e5712e77a3dcf5cc25912cd08bf37c8eb | refs/heads/main | 2023-03-03T14:06:30.089202 | 2021-02-12T23:09:03 | 2021-02-12T23:09:03 | 338,312,777 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 444 | java | package com.ylizma.eurekadiscovery;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@SpringBootApplication
@EnableEurekaServer
public class EurekaDiscoveryApplication {
... | [
"youssefamzil98@gmail.com"
] | youssefamzil98@gmail.com |
1693e7722c23806da91b5893c4446625b877aa1a | de6523947d6c40d48ec72274f241fc53837f8c4d | /iHealthRecord/src/main/java/edu/tcu/gaduo/springmvc/model/NamedEntity.java | e5725c0c3614116d52943502e37b206c23e63193 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | GuojunSu/IHE-IT-Infrastructure | b686084c066af790e2f7bfbc52f9151925558f41 | 49881293fc39e457651f2b623702b552ed7bf6be | refs/heads/master | 2021-01-17T21:41:34.628658 | 2014-05-23T06:30:14 | 2014-05-23T06:30:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,281 | java | /*
* Copyright 2002-2013 the original author or authors.
*
* 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 ap... | [
"foxb1249"
] | foxb1249 |
14c0405fd33ef1f4ace61cf51e9be7c070ec95bc | 9330d0cd06431657eab25d3ba2aec88bf658aefe | /src/main/java/com/nurfaizin/backend/model/response/UserResponse.java | 20fccfc6863a4bb8cd3ec18733d6b5a459d9bc23 | [] | no_license | basithnurfaizin/simple-crud | 497caa0c337bb0dce86a05d01d166dffce36fefc | 47a7057502165abf1c67053b67f0fd3fc750ff20 | refs/heads/master | 2023-01-01T18:00:31.629540 | 2020-10-21T04:01:33 | 2020-10-21T04:01:33 | 303,662,017 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 499 | java | package com.nurfaizin.backend.model.response;
import com.nurfaizin.backend.entity.Role;
import lombok.Getter;
import lombok.Setter;
import java.io.Serializable;
import java.util.Set;
@Getter
@Setter
public class UserResponse implements Serializable {
private Long id;
private String username;
private S... | [
"basith@millennia-solusi.id"
] | basith@millennia-solusi.id |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.