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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7ceed76b2aa0a9892e0805142c48bab57533fa77 | 0c5ab09485e221a53b3cdf10639d4146bebb3054 | /src/main/java/com/nirrattner/splittimer/SplitTimerLauncher.java | 2a5f182d7ad02074aa2efc06e584b19360ceffc3 | [] | no_license | nirrattner/SplitTimer | 166043983ee48e55a94a3db2da2b29f83eadbf8c | 5dd66f39dc5cf167e6c1db65979de92d55415ca5 | refs/heads/main | 2023-01-03T11:35:11.811548 | 2020-10-31T20:48:22 | 2020-10-31T20:48:22 | 307,821,019 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 157 | java | package com.nirrattner.splittimer;
public class SplitTimerLauncher {
public static void main(String[] args) {
SplitTimerApplication.main(args);
}
}
| [
"nirrattner@gmail.com"
] | nirrattner@gmail.com |
2e5f795c6f7887350fc3119c8251e301641c060a | b798729ad4c4b74b152d0fb7c3b251363350c23d | /src/test/java/com/test/LoginTest.java | b2a93f41b9c880cfa9420d4786f48dd7db62e3a5 | [] | no_license | saffins/LogsProject | 9cf7e725bb574a8993a3a4cc9d5c3da92cf5c912 | 515fea2e759f4165dba28812c72a7420325afb6f | refs/heads/master | 2023-08-09T11:01:17.467342 | 2019-05-27T07:08:20 | 2019-05-27T07:08:20 | 188,789,931 | 0 | 0 | null | 2023-07-22T06:48:02 | 2019-05-27T07:07:58 | HTML | UTF-8 | Java | false | false | 1,375 | java | package com.test;
import java.io.IOException;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.Assert;
import org.testng.annotations.AfterTest;
import org.testng.annotations.Test;
import org.testng.l... | [
"saffin7867@gmail.com"
] | saffin7867@gmail.com |
87f2bd2339130ee5a3f2b2a26099cf3c2af6163c | 4673dce7b4ac50ba2801faacfc1a9fe046e4895c | /library_common/src/main/java/others/core/utils/CleanUtils.java | 7bf719ec20d13657ea870648e639a945eb5a2fa0 | [] | no_license | Too-Stubborn/android-exercises | 532da8d9d37cdd8fe0e7022f612b62f922b431f5 | da84a825fda8fd3d65c9e04c2f77304219b38a26 | refs/heads/master | 2020-03-22T05:39:46.092599 | 2018-03-21T02:22:59 | 2018-03-21T02:22:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,898 | java | package others.core.utils;
import java.io.File;
/**
* <pre>
* author: Blankj
* blog : http://blankj.com
* time : 2016/9/27
* desc : 清除相关工具类
* </pre>
*/
public class CleanUtils {
private CleanUtils() {
throw new UnsupportedOperationException("u can't instantiate me...");
}
... | [
"1604983712@qq.com"
] | 1604983712@qq.com |
ba44e3e2bdc7a3b72fa243584b9b32e4564c85c8 | f45392ab7bddae26837cf3235a5fcce3c1b16a18 | /src/basics/FactorialUsingRecursion.java | df19960441508cc3a63526f34a2504b909296472 | [] | no_license | aina-shukla/CoreJavaCodes | 2a2575c142f00e4b9faad706b4534c22e7a827ba | b9428847ec032e9d82de56d383c5d6a4751da8df | refs/heads/main | 2023-08-14T07:04:31.517331 | 2021-09-30T11:13:59 | 2021-09-30T11:13:59 | 378,431,289 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 455 | java | package basics;
import java.util.Scanner;
public class FactorialUsingRecursion {
static int factorial(int num) {
if (num == 0)
return 1;
else
return (num * factorial(num - 1));
}
public static void main(String[] args) {
int fact = 1;
Scanner in = new Scanner(System.in);
System.out.println("Enter... | [
"shuklaaina@gmail.com"
] | shuklaaina@gmail.com |
f16a360647524e989e75f7b0e7c9d697cb77ed8f | eeaeddeab4775a1742dba5c8898686fd38caf669 | /base/base-kafka/src/test/java/com/zsw/kafka/ConsumerTests.java | e385d08a645e663f698f17e36ad1a148607046a4 | [
"Apache-2.0"
] | permissive | MasterOogwayis/spring | 8250dddd5d6ee9730c8aec4a7aeab1b80c3bf750 | c9210e8d3533982faa3e7b89885fd4c54f27318e | refs/heads/master | 2023-07-23T09:49:37.930908 | 2023-07-21T03:04:27 | 2023-07-21T03:04:27 | 89,329,352 | 0 | 0 | Apache-2.0 | 2023-06-14T22:51:13 | 2017-04-25T07:13:03 | Java | UTF-8 | Java | false | false | 1,426 | java | package com.zsw.kafka;
import lombok.extern.slf4j.Slf4j;
import org.apache.kafka.clients.consumer.ConsumerConfig;
import org.apache.kafka.clients.consumer.ConsumerRecords;
import org.apache.kafka.clients.consumer.KafkaConsumer;
import org.apache.kafka.common.serialization.StringDeserializer;
import org.apache.kafka.co... | [
"499504777@qq.com"
] | 499504777@qq.com |
cf0be42352c8a4cc5526ed8a3d9d7f49319960b5 | 86810fbecd548d9480419c632a8ae6f0472cdaf4 | /app/src/main/java/com/atguigu/mobileplayer2/service/MusicPlayService.java | cd76c8a16c98d3527fba6c36b214e026cbd26e18 | [] | no_license | rx1996/MobilePlayer | 3515b975bc3684fa235f8b15a2d670b36c4e9535 | 9bacc78cb1d33b8c82475cc5d3bb5248e8c0f131 | refs/heads/master | 2021-01-21T12:43:27.078219 | 2017-06-01T07:32:16 | 2017-06-01T07:32:16 | 91,758,447 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 13,064 | java | package com.atguigu.mobileplayer2.service;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.ContentResolver;
import android.content.Intent;
import android.content.SharedPreferences;
import android.database.Curs... | [
"3343108599@qq.com"
] | 3343108599@qq.com |
822a24248575cb92bf2694a9b3feee4d691e401c | 00b7151e31bcdbff191a0fd1b16992e7cfad03b2 | /app/src/main/java/com/vnetoo/speex/echo/dsp/AndroidHardwareDsp.java | 31c9f0e63afa70232f3029c949015a1f427a8473 | [] | no_license | q384264619/speex_echo | 9fad9e78c9868bb4445cb29d9d59eea9af437246 | 84fc29d6115a445ff7f0ada49ea24b35abc22370 | refs/heads/master | 2022-09-07T22:02:13.222161 | 2020-06-02T07:32:43 | 2020-06-02T07:32:43 | 268,724,297 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 3,905 | java | package com.vnetoo.speex.echo.dsp;
import android.media.audiofx.AcousticEchoCanceler;
import android.media.audiofx.AutomaticGainControl;
import android.media.audiofx.NoiseSuppressor;
import android.util.Log;
import com.vnetoo.speex.echo.AudioGlobal;
public class AndroidHardwareDsp implements AudioDsp{
private s... | [
"hedong@vnetoo.com"
] | hedong@vnetoo.com |
70384c552a3850edea53b345e6d1e5875536651d | e5912ef6d79aa5aa05563133d46b9a719c78c9dd | /Gomoku/src/inteligenca/AlfaBeta.java | 4d1c660417f50885bd66f3fe59c26edb60883a4f | [] | no_license | BlackPhoenixSlo/Gomoku | ca245d88f24a6af11f26027c57056dd6641d3895 | 3b5225548668f95c077b4ea8b2ca534c349fd545 | refs/heads/main | 2023-05-09T19:55:25.715701 | 2021-05-26T12:11:00 | 2021-05-26T12:11:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,076 | java | package inteligenca;
import java.util.List;
import logika.Igra;
import logika.Igralec;
import splosno.Koordinati;
public class AlfaBeta extends Inteligenca {
private static final int ZMAGA = 100; // vrednost zmage
private static final int PORAZ = -ZMAGA; // vrednost izgube
private static final int NEODLOC = 0;... | [
"gaja.jamnik@gmail.com"
] | gaja.jamnik@gmail.com |
6d096e02cb1cc4bf3e69bcc488e86cf2ed7fe0e9 | 0cadf674993a12766cfc02f6dd8f9b88f39a04ae | /app/src/test/java/pavel/bogrecov/example/ExampleUnitTest.java | 5c93065e96eb4f9263fca41376b5b982a5f8b611 | [] | no_license | pavelupward/MVP-RXjava2-Dagger2-CleanArchitecture | 38e364650fc285e1843b24a28bddc838f3d9bf73 | f5b99d3df15f98bf4f819009c2925673749fe0ac | refs/heads/master | 2021-09-06T22:42:07.041237 | 2018-02-12T19:19:49 | 2018-02-12T19:19:49 | 107,898,346 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 400 | java | package pavel.bogrecov.example;
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 void... | [
"381PAVELm"
] | 381PAVELm |
01a9974c6380645e82f87567e4bd1fad9771222c | 2aafcd01b7d6f8b73c6841dde245f3fdd4060b5d | /code-bbo/code-bbo-usercenter/code-bbo-usercenter-provider/src/main/java/com/qooence/code/usercenter/entity/UserDetail.java | 3ef896df64623b2d5eeb81416bbad7c6f4533f6e | [] | no_license | Qooence/qooence-code | 1938eb053c62043acfce258f2cda67800d18ccb3 | 67a37a55b13afcfe8f195c0f81901bacde1bab7a | refs/heads/master | 2022-09-12T14:41:31.256790 | 2019-10-07T04:53:14 | 2019-10-07T04:53:14 | 199,962,781 | 0 | 0 | null | 2022-09-01T23:12:40 | 2019-08-01T02:37:29 | Java | UTF-8 | Java | false | false | 2,902 | java | package com.qooence.code.usercenter.entity;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.authority.SimpleGrantedAuthority;
import org.springframework.security.core.userdetails.UserDetails;
import java.util.ArrayList;
import java.util.Collection;
import java.util.... | [
"1044212759@qq.com"
] | 1044212759@qq.com |
3f3165b55c55069fdb0191aa9159732ddaadfed6 | 30c2f8483fb32da38f265a40cdea3b0ba743fb07 | /WechatParent/src/test/java/com/tuners/mobile/BasePages/Teacher/AddLinkPage.java | 6141ada449b645a006f213f2981393811a9a3623 | [] | no_license | ShaineGu-666/AutoTest | 1aba7edec2ffbe61ec86041a205acd8cbff9cc90 | 2ccf23ca7b088da44409f8de7406c0d3b198be01 | refs/heads/master | 2022-07-01T04:12:31.808292 | 2020-07-09T09:33:49 | 2020-07-09T09:33:49 | 242,301,075 | 0 | 0 | null | 2022-06-29T18:14:18 | 2020-02-22T07:43:09 | Roff | UTF-8 | Java | false | false | 1,976 | java | package com.tuners.mobile.BasePages.Teacher;
import com.tuners.mobile.util.Functions.FunctionUtil;
import com.tuners.mobile.util.PageObject;
import io.appium.java_client.android.AndroidDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.testng.Assert;
/**
* @Author Ma... | [
"guofei_wu@163.com"
] | guofei_wu@163.com |
e90ef27c4ab74f226743ce889fdb8f16fecf38ec | 77487662362182621ccad7b4a8095e553fa1e94e | /src/main/java/com/sisuz/cloud/admclinica/controller/IgvController.java | 0910ff8e7c80df3c8c21f2c72b09a9ee5106f9a2 | [] | no_license | aiturrizaga/SISUZ_WEB_BACKEND | 3e0438501f607ae05a60a3ae21646851d0367ca0 | 1befc82cf15ebed1142d8b14abcdd0f512926de0 | refs/heads/master | 2022-11-20T13:14:03.534255 | 2020-03-29T17:24:07 | 2020-03-29T17:24:07 | 251,089,481 | 0 | 0 | null | 2022-11-16T12:42:29 | 2020-03-29T17:21:48 | Java | UTF-8 | Java | false | false | 902 | java | package com.sisuz.cloud.admclinica.controller;
import com.sisuz.cloud.admclinica.entity.Igv;
import com.sisuz.cloud.admclinica.service.jpa.IgvService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@CrossOrigin
@RestController
@... | [
"aiturrizaga.vargas@gmail.com"
] | aiturrizaga.vargas@gmail.com |
438c12e073961a22ad78501b5815ebc66649bffc | 4eca12201d2628c2d0e5ccc007cb212531f4ba0d | /src/main/java/com/aaluni/spring5recipeapp/converters/NotesCommandToNotes.java | 98ebaaed7fb0de3d82bd2075042bb1a8d7d6cd77 | [] | no_license | arindamaluni/spring5-recipe-app-aaluni | f6785013a47d6b026abfeb86d263e3eed601a011 | 204851a5b14ff8ca2258cd4002a6a0e83f1133b0 | refs/heads/master | 2022-06-02T18:24:42.259248 | 2020-05-08T17:57:52 | 2020-05-08T17:57:52 | 256,959,599 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 786 | java | package com.aaluni.spring5recipeapp.converters;
import lombok.Synchronized;
import org.springframework.core.convert.converter.Converter;
import org.springframework.lang.Nullable;
import org.springframework.stereotype.Component;
import com.aaluni.spring5recipeapp.commands.NotesCommand;
import com.aaluni.spring5recipea... | [
"aaluni@gmail.com"
] | aaluni@gmail.com |
d56356c7449220c397d267e57a76bb1f18b52d19 | 3697b3d8c598a75da5f5b64852d470de9d28aec3 | /akl-service/src/main/java/fi/tite/akl/config/WebConfigurer.java | a32414e3ac0d19b0b4ff429591a1828200f13377 | [] | no_license | Akzuu/akl-1 | 831e68acfde6da0fd14cb4fa506803a77159a11e | 172921606ddbdbc87852d670bd313a93d2ce1f25 | refs/heads/master | 2020-06-03T02:47:31.500070 | 2019-09-20T06:21:44 | 2019-09-20T06:21:44 | 191,400,388 | 0 | 0 | null | 2019-06-11T15:29:36 | 2019-06-11T15:29:35 | null | UTF-8 | Java | false | false | 3,437 | java | package fi.tite.akl.config;
import com.codahale.metrics.MetricRegistry;
import fi.tite.akl.web.filter.gzip.GZipServletFilter;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.AutoConfigureAfter;
import org.springframework.boo... | [
"sauli.anto@gmail.com"
] | sauli.anto@gmail.com |
cb2d6532d68309f4b1e22b38839b8bc7b827225b | 36e845ee34d6026627c2da9b0f28d3568f33b161 | /mysnippet-io-server/src/main/java/io/mysnippet/server/service/AppUserService.java | 4b18c8800e0b84ff4f04e2e36183a734549cd98c | [] | no_license | wyt/mysnippet-io | 78e918286bfc6d04835f261c20c3bc2cbce4cacb | 03904084a62288db333264c4d2fbce203478ad05 | refs/heads/master | 2022-07-05T18:47:07.544448 | 2020-08-21T03:38:28 | 2020-08-21T03:38:28 | 200,636,578 | 2 | 0 | null | 2022-06-17T02:34:13 | 2019-08-05T10:46:36 | Java | UTF-8 | Java | false | false | 156 | java | package io.mysnippet.server.service;
import io.mysnippet.server.domain.AppUser;
public interface AppUserService {
AppUser getAppUserInfo(long id);
}
| [
"wangyt4dev@gmail.com"
] | wangyt4dev@gmail.com |
dfc703585526140adce4ab8298675b62c565a73b | edb75c78456cf0ad0a1f7dd41e25f6c380c6b5d9 | /app/src/main/java/com/example/admin/mypplication/BaseVo.java | 874501caefb1c17a1a7d7ecf407685723f2fa98b | [] | no_license | zq12138/Mypplication | 5bc09df953494453c6c3e0fdb7e6311fb08f32aa | 91ff304242385a0387c5defda5523208e65664fd | refs/heads/master | 2021-01-23T18:51:57.094993 | 2017-02-24T05:19:57 | 2017-02-24T05:19:57 | 82,997,576 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 901 | java | package com.example.admin.mypplication;
import java.io.Serializable;
/**
* Created by zq on 2017/1/16.
*/
public class BaseVo implements Serializable {
private String reason;
private ResultVo result;
private String error_code;
public ResultVo getResult() {
return result;
}
public... | [
"1453759654@qq.com"
] | 1453759654@qq.com |
bfac7772a5bbe17463556b3de8e56c10a1c7dd9d | 791a003d2a9a6568c4304f302256d1118a23330c | /src/main/java/br/com/dccom/tissV3/SignedInfoType.java | 05d97b40a01907b12e5ed7306700987bc7e8c9b8 | [] | no_license | ferreiramarcelo/tissV3 | 8b82f292319a7cd13644d0fff26dd32aded93322 | 40897e1b8090bc56f6d625867ceea4a20f139867 | refs/heads/master | 2021-01-09T05:56:57.802459 | 2014-10-21T01:31:56 | 2014-10-21T01:31:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,841 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2014.10.20 at 06:45... | [
"drsantos@gmail.com"
] | drsantos@gmail.com |
2cdc5521f4bc1fccecdd303b350e9d223c64b569 | 1fc89c80068348031fdd012453d081bac68c85b0 | /Descompilando o apk do revival 2/src/revivaljarfiilecomum/Download_For_Motorola_128x160.jar.src/glomoRegForms/Resources.java | 1f1808fcc494b12fd6242c779d1df4785a5c76e0 | [] | no_license | Jose-R-Vieira/WorkspaceEstudosJava | e81858e295972928d3463f23390d5d5ee67966c9 | 7ba374eef760ba2c3ee3e8a69657a96f9adec5c1 | refs/heads/master | 2020-03-26T16:47:26.846023 | 2018-08-17T14:06:57 | 2018-08-17T14:06:57 | 145,123,028 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,528 | java | package glomoRegForms;
import GlomoReg.GlomoUtil;
import java.io.DataInputStream;
import java.io.EOFException;
import java.util.Hashtable;
public final class Resources
{
private static Hashtable a = new Hashtable();
public static String WND_TITLE_START_ALERT;
public static String WND_TITLE_ACTIVATE;
public st... | [
"jose.rodrigues@rsinet.com.br"
] | jose.rodrigues@rsinet.com.br |
b051a09d3e1f92db83c31eea4618e1be17643702 | 19547797399ffc94f4749e89414557f731ce230b | /src/main/java/lk/recruitment/management/asset/commonAsset/model/Enum/BloodGroup.java | 96807831905491ae401209aeae82192b5b11ae6d | [] | no_license | PrasadAASL/management | 64e80b2960005dee1793f826f71fef0f35d243e8 | 1bd032a93b933d55d09947242bc86d47a19fbe77 | refs/heads/master | 2022-08-25T19:42:16.477879 | 2020-05-25T11:45:25 | 2020-05-25T11:45:25 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 427 | java | package lk.recruitment.management.asset.commonAsset.model.Enum;
import lombok.AllArgsConstructor;
import lombok.Getter;
@Getter
@AllArgsConstructor
public enum BloodGroup {
AP("A RhD positive"),
AN("A RhD negative"),
BP("B RhD positive"),
BN("B RhD negative"),
OP("O RhD positive"),
ON("O RhD n... | [
"asakahatapitiya@gmail.com"
] | asakahatapitiya@gmail.com |
f3f71d9460e66675def1b62520b0640aad7db9f3 | f2d594a1f3f8c5146f7356e4e1b553f5103db08f | /twgitter-gui/src/twgitter/croudia/Streaming.java | 18f9c8f2b45433139ad293181431732b95235157 | [] | no_license | S--Minecraft/twgitter | dd5050197803526a02ddcf2374e2563a4d7aec71 | 38cecffd5d92ff685667317b01fb16be9921cf71 | refs/heads/master | 2021-01-22T07:32:49.128139 | 2015-05-22T13:16:16 | 2015-05-22T13:16:16 | 23,569,892 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,349 | java | package twgitter.croudia;
import java.lang.reflect.Type;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
import java.util.List;
import java.util.Locale;
import twgitter.TestThread;
import twgitter.croudia.json.CroudiaS... | [
"dainihon.koukoku@gmail.com"
] | dainihon.koukoku@gmail.com |
b428a6bc0642f5cf203aa473475ea5a42ddac5b7 | 4f62149c1f754761ef291ddeb382935af8519662 | /app/src/androidTest/java/com/dji/importsdkdemo/ExampleInstrumentedTest.java | 2c13ea6da5db0581ae581dd148be0d956dca95d2 | [] | no_license | shohei/phantom3-control | a8380defc23d55e11fd6c0cbe139c892122e3141 | 53e70515fb1799c4d76caabf9c6c373fe17e8fa8 | refs/heads/main | 2023-07-02T19:25:18.950562 | 2021-08-09T07:51:12 | 2021-08-09T07:51:12 | 393,903,342 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 756 | java | package com.dji.importsdkdemo;
import android.content.Context;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.ext.junit.runners.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on a... | [
"shoaok@gmail.com"
] | shoaok@gmail.com |
6cbe325b4fad46231064f749b9c95daeb05f7486 | a5847e042ec33acaef8366eba1d54c0a1177a214 | /SeleniumProject01/src/com/ebfs/util/SummaryReport.java | 82a6a07fcf453ef0c821125bd75cb407dfc4ae56 | [] | no_license | TanvirRabbani/selenium01 | 18460ff9dfe217b0f864723f5c45c7044c5488ac | 4cbbfd30640c07ad2742fdf7368380fec976fdd9 | refs/heads/master | 2022-09-20T14:43:30.020712 | 2022-08-31T02:26:35 | 2022-08-31T02:26:35 | 46,285,366 | 1 | 2 | null | null | null | null | UTF-8 | Java | false | false | 12,071 | java | package com.ebfs.util;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.lang.reflect.Field;
import javax.imageio.ImageIO;
import jxl.Wo... | [
"rabbani@bruteforcesolution.com"
] | rabbani@bruteforcesolution.com |
9a617a003b9e5b6ec0d85048781a60a9aaf5dd7e | 4312a71c36d8a233de2741f51a2a9d28443cd95b | /RawExperiments/TB/Math280/AstorMain-Math280/src/variant-518/org/apache/commons/math/distribution/AbstractContinuousDistribution.java | 80b3e3f29df92d01b6f9c9b4b2cea2e2a4eddd64 | [] | no_license | SajjadZaidi/AutoRepair | 5c7aa7a689747c143cafd267db64f1e365de4d98 | e21eb9384197bae4d9b23af93df73b6e46bb749a | refs/heads/master | 2021-05-07T00:07:06.345617 | 2017-12-02T18:48:14 | 2017-12-02T18:48:14 | 112,858,432 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,423 | java | package org.apache.commons.math.distribution;
public abstract class AbstractContinuousDistribution extends org.apache.commons.math.distribution.AbstractDistribution implements java.io.Serializable , org.apache.commons.math.distribution.ContinuousDistribution {
private static final long serialVersionUID = -3803805... | [
"sajjad.syed@ucalgary.ca"
] | sajjad.syed@ucalgary.ca |
5fcc35425126c16e631abedb162211920257c94f | d0d920be4d499325f8c968da63a56e8c52190167 | /rr-exercise/src/main/java/com/rr/pricer/models/RateWithDurationDiscounts.java | b09a54fa376ee71d949b72bc5d3cb70d91e658c7 | [] | no_license | VijayEluri/javarepo | 559bf3840bb0ecfbaf03b769e7cd3b657931f0d9 | 8126828992fa063c95edfac05b30cda310a5edd2 | refs/heads/master | 2020-05-20T11:03:45.984284 | 2016-03-08T18:52:23 | 2016-03-08T18:52:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 627 | java | package com.rr.pricer.models;
import java.math.BigDecimal;
public class RateWithDurationDiscounts {
public BigDecimal daily;
// Percentage discount for a weekly rental, expressed as a decimal between 0 and 1
public BigDecimal weeklyDiscount;
// Percentage discount for a monthly rental, expressed as a... | [
"miguel.reyes@millicom.com"
] | miguel.reyes@millicom.com |
95f28a7974e9565030aab04f8a61c4737e25a1d3 | 490d5eb7e7af881a8d6a118b65408a372410fe05 | /app/src/main/java/sapphyx/gsd/com/drywall/fragments/Wallpapers.java | 21cd86776876907e2fed6d530b09f7815728c1a8 | [] | no_license | yassane/Drywall | 589e675d352cc5872ea85fac53e59f9a2e988249 | c23418dbc4585443b040bc02b7a77030d524fb26 | refs/heads/master | 2020-03-07T09:53:38.112575 | 2017-10-21T20:42:34 | 2017-10-21T20:42:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,158 | java | package sapphyx.gsd.com.drywall.fragments;
import android.content.ComponentName;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.os.Bundle;
import android.preference.Preference;
import android.preference.PreferenceFragment;
import android.p... | [
"rgocal09@gmail.com"
] | rgocal09@gmail.com |
ba4e6ae635fbb413a0c654b5eb372c9e8e765afc | 71e640ac44a47e88a813b0019f1ce3031edaad3a | /ctci/Q1.java | ce6708b075de4f05c33790d11740e73ffeb55c8e | [] | no_license | PyRPy/algorithms_books | ef19b45f24c08a189cb9914f8423f28d609700e2 | 1804863ca931abedbbb8053bcc771115d0c23a2d | refs/heads/master | 2022-05-25T20:22:03.776125 | 2022-05-10T13:47:33 | 2022-05-10T13:47:33 | 167,270,558 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 633 | java | package ctci;
// example code from CtCI
// https://github.com/careercup/CtCI-6th-Edition
public class Q1 {
public static boolean isUniqueChars(String str) {
if (str.length() > 128) {
return false;
}
boolean[] char_set = new boolean[128];
for (int i = 0; i < str.length(); i++) {
int val = str.ch... | [
"noreply@github.com"
] | PyRPy.noreply@github.com |
4201118080473bbb5f4c07c28eb323da54ebeb57 | 2fabc48642b99cd24460b181a7ead0be8ea59ab8 | /AI_ProjectF/src/local_searches/queueState.java | c4600a989075d682b75fdf4aef199428a9806417 | [] | no_license | mpouyakh9/AI | 9f54cefe8aa8bd796df69f5aee12bf7d6a0f2ecf | 1edcb1c2c64300adff59245ad94cedc41314ef49 | refs/heads/master | 2022-04-08T18:16:45.683551 | 2019-12-23T09:04:40 | 2019-12-23T09:04:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 618 | java | package local_searches;
public class queueState implements Cloneable{
public int[] queue;
public int value;
public queueState(int[] queue,int value){
this.queue = queue;
this.value = value;
}
public String toString(){
String res = "queue :";
for(int i = 0; i < this.queue.length; i++){
res += " " + que... | [
"mpouya.kh@aut.ac.ir"
] | mpouya.kh@aut.ac.ir |
e43476f4db1afebe47b5c3db4b60656c1914e1c2 | 737edc40f2866868111927916ab8aa88b0c3a222 | /app/src/test/java/br/com/ecarrara/yabaking/ExampleUnitTest.java | c72b1b6d0e4afd81575059de58538c4dd3e9c5ee | [
"Apache-2.0"
] | permissive | ecarrara-araujo/yabaking | 98acbe2c2f9a8a39199ec8f3271fa89bf4ca9632 | 6438ab4ee16a63ef8cedda12475b145deb0e649a | refs/heads/master | 2021-07-12T07:28:01.067766 | 2017-10-15T20:12:16 | 2017-10-15T20:12:16 | 106,834,763 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 402 | java | package br.com.ecarrara.yabaking;
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... | [
"ecarrara.araujo@gmail.com"
] | ecarrara.araujo@gmail.com |
20f146d06ab0035afe62dee55151d0e470623d50 | 45758c55216ca6ae6afc1f7a3ba11dd6a33903e5 | /Project_188_Online/src/ui_verifactioncommands/getText/Get_Page_Visible_Text.java | 1c60599820fb38cf4d07ed4dba228e576965a3ff | [] | no_license | sunilreddyg/15th_feb_12PM-2021 | cbefa2de795c12c905c47ac1d68d28e54c9c8733 | 5ee77bd133622aafeed90df9a05e24a64d3bc08d | refs/heads/master | 2023-06-12T14:33:06.301890 | 2021-07-10T07:18:50 | 2021-07-10T07:18:50 | 340,297,792 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,780 | java | package ui_verifactioncommands.getText;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
public class Get_Page_Visible_Text {
public static void main(String[] args) throws Exception
{
/*
* S... | [
"sunny.user2@rediffmail.com"
] | sunny.user2@rediffmail.com |
4a95a1a80afe21830163e26b9249574d5a9b772f | 13289be26a855a9cf30cf6eebea53776a8675ebf | /app/src/main/java/com/ycsx/www/wms/activity/OrderQueryActivity.java | 3c87f7298f560203525987c167d9527c1e412395 | [] | no_license | zhangzs1994/WMS | ba577fd863a250c93ee97dab0e65f152c171c19f | bae4e0ce6504b6ee73e328750db4668d2a8797cb | refs/heads/master | 2020-12-07T00:32:34.097597 | 2017-07-31T05:47:33 | 2017-07-31T05:47:33 | 95,504,195 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,435 | java | package com.ycsx.www.wms.activity;
import android.app.DatePickerDialog;
import android.content.Intent;
import android.text.format.DateFormat;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.DatePicker;
import android.w... | [
"1392842928@qq.com"
] | 1392842928@qq.com |
59382760dbf7dcb1b89a0d1a9a24e81fea2b0bd3 | c11f14cb1f869db946d1c0391002359cf59125a5 | /spboot-jta-automatic/src/main/java/com/wangye/spbootjtaautomatic/config/DB2Properties.java | e18849f4d3b65db0e17f9d3c9e7bc7ea88bf296e | [
"MIT"
] | permissive | wangyeIsClever/myProject | 46110749949178e172404e7409c4eea09f744d7d | 3b9d686db6929142ec4dc1bbc306b2e846f38d69 | refs/heads/master | 2023-08-08T21:10:50.647380 | 2021-06-03T06:27:06 | 2021-06-03T06:27:06 | 171,386,019 | 1 | 0 | MIT | 2023-07-21T09:26:59 | 2019-02-19T01:53:07 | Java | UTF-8 | Java | false | false | 3,090 | java | package com.wangye.spbootjtaautomatic.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
@Configuration
@ConfigurationProperties(prefix = "mysql.datasource.test2")
public class DB2Properties {
private String url;
p... | [
"wangye20yujing@163.com"
] | wangye20yujing@163.com |
1bef987f4cc7ccfdc780f35b6085e194b49258c3 | b133407921519f6745a9058bcdc1f5f64cad136c | /mileem-app/src/com/mileem/FileCache.java | 9ea5d53acb4faf64b92ce13b39a18179189d3232 | [] | no_license | ma-alvarez/mileem-grupo5-mobile | fa79d53da9778451141567af8b29a15053dce450 | 2ed8f3fe483f20170c8011c198ddd3ad5ca458cd | refs/heads/master | 2021-01-01T15:41:29.051490 | 2014-11-17T03:33:52 | 2014-11-17T03:33:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 618 | java | package com.mileem;
import java.io.File;
import android.content.Context;
public class FileCache {
private File cacheDir;
public FileCache(Context context) {
//Find the dir to save cached images
cacheDir = context.getCacheDir();
if (!cacheDir.exists())
cacheDir.mkdirs();
... | [
"al.barrios88@gmail.com"
] | al.barrios88@gmail.com |
42dc12bd19e834a72bf491af17a9c74eeaf46a2d | 13ea5da0b7b8d4ba87d622a5f733dcf6b4c5f1e3 | /crash-reproduction-new-fitness/results/MATH-78b-2-4-Single_Objective_GGA-WeightedSum-BasicBlockCoverage/org/apache/commons/math/analysis/solvers/BrentSolver_ESTest_scaffolding.java | 26c67d275154b4d982a378ab4e07b44a709b54e4 | [
"MIT",
"CC-BY-4.0"
] | permissive | STAMP-project/Botsing-basic-block-coverage-application | 6c1095c6be945adc0be2b63bbec44f0014972793 | 80ea9e7a740bf4b1f9d2d06fe3dcc72323b848da | refs/heads/master | 2022-07-28T23:05:55.253779 | 2022-04-20T13:54:11 | 2022-04-20T13:54:11 | 285,771,370 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,938 | java | /**
* Scaffolding file used to store all the setups needed to run
* tests automatically generated by EvoSuite
* Thu May 14 22:13:58 UTC 2020
*/
package org.apache.commons.math.analysis.solvers;
import org.evosuite.runtime.annotation.EvoSuiteClassExclude;
import org.junit.BeforeClass;
import org.junit.Before;
imp... | [
"pouria.derakhshanfar@gmail.com"
] | pouria.derakhshanfar@gmail.com |
814ece8bf3f8d39f2d7198554b7fd830891305f4 | 16518e03a6049c34a84a2c905119c61d9b2e7af4 | /alt-web/src/main/java/by/kes/altReality/data/dao/RealityElementsDao.java | 18c1d478dde463cad2c5a7cf780eca08fb7b5c0f | [] | no_license | Kesstyle/AltReality | 3773155ccc4b3c5823bc72bea8d187de2d05cfd2 | 4fee97bdafe73d9a26219b8ba7f7444461007ea4 | refs/heads/master | 2023-02-19T06:48:37.013517 | 2021-01-20T08:12:28 | 2021-01-20T08:12:28 | 281,085,239 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 178 | java | package by.kes.altReality.data.dao;
import by.kes.altReality.data.domain.DateBreakdown;
public interface RealityElementsDao extends GenericDao<DateBreakdown, String> {
}
| [
"Siarhei_Kavalchuk@epam.com"
] | Siarhei_Kavalchuk@epam.com |
fd003d06917a42a034c36624ae2d82cffe118822 | 9254e7279570ac8ef687c416a79bb472146e9b35 | /sofa-20190815/src/main/java/com/aliyun/sofa20190815/models/GetLinkeBahamutIterationsgetlterationsRequest.java | a8149ce608c24376b5e5d2d23e32dc01a8dad22d | [
"Apache-2.0"
] | permissive | lquterqtd/alibabacloud-java-sdk | 3eaa17276dd28004dae6f87e763e13eb90c30032 | 3e5dca8c36398469e10cdaaa34c314ae0bb640b4 | refs/heads/master | 2023-08-12T13:56:26.379027 | 2021-10-19T07:22:15 | 2021-10-19T07:22:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,392 | java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sofa20190815.models;
import com.aliyun.tea.*;
public class GetLinkeBahamutIterationsgetlterationsRequest extends TeaModel {
@NameInMap("AppName")
public String appName;
@NameInMap("IsDeleted")
public String isDeleted;
@Nam... | [
"sdk-team@alibabacloud.com"
] | sdk-team@alibabacloud.com |
7820e584d86ea88826ddb0504bf82cea69987cfe | 57b0444885d39252a7faa22f99848b51a19e2e13 | /lab00/src/main/java/lab00_elio/model/Instrutor.java | 17f932722328301e2d847215966bd4f5a8396b0a | [] | no_license | viniciusdenovaes/Unip202ALPOONoturno | fdf56631437585a20f1570bf13684afba762c043 | 37c9b33e3bd8ce91d3d433bae59927e2e2129bc1 | refs/heads/master | 2022-12-28T19:00:17.541881 | 2020-10-09T23:16:09 | 2020-10-09T23:16:09 | 289,386,194 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,505 | java | package lab00_elio.model;
public class Instrutor {
private String nome;
private Integer codigo;
private Double cargaHoraria;
private Double salario;
public Instrutor() {
}
/**
* @return the nome
*/
public String getNome() {
return nome;
}
... | [
"viniciusdenovaes@gmail.com"
] | viniciusdenovaes@gmail.com |
abf2470df3848814f32e10cb7b425f464722e30b | 94693278dd25dc0504dedd2b1e5f57b4a2bb75c3 | /Switch_Debug/app/src/main/java/jtp/c/dendai/ac/jp/switch_test/Drawlist.java | 067efc73d2c97c96d5a5a0f119d2ccddcc85bd3c | [] | no_license | suke123/Android_Games | 876ed5e2ed8053bd87909a0d2485737c87ce6f1d | afc2a20ec572c9b64db5794190ec758574ce384e | refs/heads/master | 2021-01-19T23:05:28.267832 | 2018-12-25T21:37:50 | 2018-12-25T21:37:50 | 88,918,980 | 2 | 3 | null | null | null | null | UTF-8 | Java | false | false | 118 | java | package jtp.c.dendai.ac.jp.switch_test;
/**
* Created by DE on 2017/10/23.
*/
public class Drawlist {
}
| [
"14ec066@ms.dendai.ac.jp"
] | 14ec066@ms.dendai.ac.jp |
7538a96e2faa206d7bfba6ddfcd6842fe8c68d5c | 952ef99fcd7540e70c3c7749209d7aa5a418e3b3 | /app/src/main/java/com/hedyhidoury/githubprofile/di/qualifiers/RetrofitType.java | f899c4795f7f1ec23d6b5831352ab58d42e2761c | [] | no_license | HedyHidouRy/GithubProfile | ba59bcad5e6df2aea1dfbd00a6d5e07198eb0917 | 5b21edfc71008f64cc079aa9a3b7aeee4f261eaf | refs/heads/master | 2021-05-11T07:46:45.947626 | 2018-01-18T20:49:35 | 2018-01-18T20:49:35 | 118,030,000 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 156 | java | package com.hedyhidoury.githubprofile.di.qualifiers;
/**
* Created by Hedy HidouRy on 1/7/2018.
*/
public enum RetrofitType {
AUTH, HOME
}
| [
"hhidouri@bulldozerinc.com"
] | hhidouri@bulldozerinc.com |
e47f22008da6c241899b53425bfeea01997696ca | bb00da7c8569cad8ffb5ca81301b3d89ae2a9b5b | /src/main/java/com/tegik/api/lambda/annotations/Query.java | a0c3f5b608454886369506dd6bd1ae5875e5f121 | [] | no_license | cesarcastmore/api-lambda | 20680c4adb2cd3c8bc2980fd4269c158aaf8b6e0 | b4eae24b2640620d1fa3eb4d4e4f840a91228af6 | refs/heads/master | 2021-01-09T20:09:05.044827 | 2016-07-03T22:37:31 | 2016-07-03T22:37:31 | 62,517,787 | 0 | 0 | null | 2016-07-07T03:39:46 | 2016-07-03T22:36:10 | Java | UTF-8 | Java | false | false | 318 | java | package com.tegik.api.lambda.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.PARAMETER)
public @interface Query {
String value();
}
| [
"ccastillo@tegik.com"
] | ccastillo@tegik.com |
61e0e4dd24932e6d3effb9592e4ed274b0dcaa9f | 709a1b7c9de4802aa3a5c4817dae8d14ede74939 | /src/main/java/com/woozet/findspot/domain/model/entity/KeywordTrend.java | e04b233cd439fc697fb58b236e620ed7622a2358 | [] | no_license | tezoow/find-spot | adf586da75f19ac212eee3d250210d3c9e4dc00b | 04173bb83e9262988dd5e498ebd50b7bbd4cc8d2 | refs/heads/master | 2020-05-02T01:19:32.309755 | 2019-03-26T09:42:10 | 2019-03-26T09:42:10 | 177,684,817 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 416 | java | package com.woozet.findspot.domain.model.entity;
import lombok.Builder;
import lombok.Data;
import javax.persistence.*;
import java.time.LocalDateTime;
@Entity
@Table(name = "keyword_trend")
@Data
@Builder
public class KeywordTrend {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
... | [
"dyoona@gmail.com"
] | dyoona@gmail.com |
13a4f523d3dc78e5483e03f6744ce7499118af7a | afe55a9f17ce5395b92202d77635200f30160b88 | /src/upload/Uuid.java | 2de0f265eb02fc5d3c00d68a1d7ec768aca89ba3 | [] | no_license | MichaelHauss/v7-upload-sample | eb1c12dcdb7fddb27f7f3c92ddfefe9ab50584e0 | 432181de370b011f89f928966378468651791cff | refs/heads/master | 2020-03-14T19:25:26.306583 | 2018-05-01T20:46:29 | 2018-05-01T20:46:29 | 131,760,958 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 730 | java | package upload;
import java.nio.ByteBuffer;
import java.util.Base64;
import java.util.Base64.Encoder;
import java.util.UUID;
public class Uuid {
private final Encoder encoder;
public Uuid() {
this.encoder = Base64.getEncoder();
}
public String randomId() {
// Create random... | [
"mihauss@microsoft.com"
] | mihauss@microsoft.com |
41bc1867015a204feadaf6c17ec274179090a280 | 422a4034650045f503221f46caba71571fe83394 | /app/src/main/java/org/botparty/annabelle/AppModule.java | da50efc492b9c7f1516486eb620a86a5fd55bfaf | [] | no_license | BotParty/AnnabelleFace | 5c4911ccaa6d1f7c01e8252df64afa00cd0e8203 | df145791aecce2b9d2d6eda0cd01f2f76a0dd669 | refs/heads/master | 2021-01-11T19:04:00.350013 | 2018-09-26T03:31:26 | 2018-09-26T03:31:26 | 79,305,672 | 0 | 2 | null | 2018-09-26T03:31:28 | 2017-01-18T05:11:12 | JavaScript | UTF-8 | Java | false | false | 1,049 | java | package org.botparty.annabelle;
import android.app.Application;
import android.content.Context;
import android.location.LocationManager;
import dagger.Module;
import dagger.Provides;
import javax.inject.Singleton;
import static android.content.Context.LOCATION_SERVICE;
/**
* A module for Android-specific dependenci... | [
"brandonalessi@gmail.com"
] | brandonalessi@gmail.com |
8ae234fb67de3b69d8b34fdf649593c18864a295 | 7fb036676ad8e6c2cdac11f6123d35fc3c741081 | /app/src/main/java/com/example/bluetooth/view/interfaces/IBaseView.java | e3dffd458f57636d8e29a232ccbcf14ac845a877 | [] | no_license | Xxxseventea/Bluetooth | 3a06c25f4aa6b145289130b2b5892de378306fe2 | 27e1500edd70ca80917d6a89fdd2187649fdc4ca | refs/heads/master | 2020-12-28T13:47:27.959825 | 2020-05-26T05:48:08 | 2020-05-26T05:48:08 | 238,355,128 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 79 | java | package com.example.bluetooth.view.interfaces;
public interface IBaseView {
}
| [
"695488704@qq.com"
] | 695488704@qq.com |
33f15f85bfc8e1a635b798dcee81c0640e4159c9 | 5aa45ca78ddb5b93c9dad8fe39600cc764f2c4b2 | /testweb/src/main/java/com/hdsx/testweb/controller/HelloWorldController.java | 41d92f5cf6ab4a5eef8432a84dbef738ffb49e6f | [] | no_license | cuixingchen/springmvc-mongodb | c10ceaef6ce1549f04c7c447479b03e15f97aab2 | 2dde2fd9aab478e789cd59204098f7cbac0e6770 | refs/heads/master | 2021-01-02T09:15:01.692168 | 2017-09-08T06:18:14 | 2017-09-08T06:18:14 | 33,076,189 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 903 | java | package com.hdsx.testweb.controller;
import javax.annotation.Resource;
import org.springframework.context.annotation.Scope;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import o... | [
"936558952@qq.com"
] | 936558952@qq.com |
1da521a32a8cba2627abb77733435218001b4c48 | 56980be4e6fa61738f2b792139ebeead1ded0b5a | /JUnitInAction/src/test/java/org/junit/inaction/ii/MasterTestSuite.java | 6bbf4dfead0167f7b7158c051eff23a97f280762 | [] | no_license | lmendonca/RandomCode | 913b67ef9967bab4bdd30b8f0bb02addf1482e6a | 47b76b2e4afd724dec871fdd6c72ac244cbad2fc | refs/heads/master | 2016-09-15T14:24:13.067657 | 2012-02-11T02:32:07 | 2012-02-11T02:32:07 | 3,356,066 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 312 | java | /**
*
*/
package org.junit.inaction.ii;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
/**
* @author leonardo
*
*/
@RunWith(value = Suite.class)
@SuiteClasses(value = {TestSuiteA.class, TestSuiteB.class })
public class MasterTestSuite {
}
| [
"leonardo.nvm@gmail.com"
] | leonardo.nvm@gmail.com |
4f4a07498b5a2a8ba25359a73e23e16d00da2a6c | 180e78725121de49801e34de358c32cf7148b0a2 | /dataset/protocol1/java-design-patterns/learning/2855/ConsumerTest.java | edabd6d2d1a77e3b271906a0231347ede5cdcaaf | [] | no_license | ASSERT-KTH/synthetic-checkstyle-error-dataset | 40e8d1e0a7ebe7f7711def96a390891a6922f7bd | 40c057e1669584bfc6fecf789b5b2854660222f3 | refs/heads/master | 2023-03-18T12:50:55.410343 | 2019-01-25T09:54:39 | 2019-01-25T09:54:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,662 | java | /**
* The MIT License
* Copyright (c) 2014-2016 Ilkka Seppälä
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, c... | [
"bloriot97@gmail.com"
] | bloriot97@gmail.com |
f08965b76256834e5221e0055c9d33893ef20ab1 | a5c8d31a78032e6a22a27c3558fe1f6c75bd67ce | /src/algorithms/Recursion.java | 55d9e20a6f3039abbfb5726702ae57bef92414a0 | [] | no_license | premagopu/DataStructures | 7ab7fcc12313e2a20e4514842d517daf5406bcbe | ce9c8711b5b90fb313c5b91c7c11816faf2d639c | refs/heads/master | 2022-04-20T19:57:59.921832 | 2020-04-22T01:56:02 | 2020-04-22T01:56:02 | 120,560,389 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,379 | java | package algorithms;
public class Recursion {
public static void main(String[] args) {
reduceByOne(10);
System.out.println( recursiveLinearSearch(new int[]{1,2,3,4,6,7},2,7));
System.out.println( recursiveBinarySearch(new int[]{1,2,3,4,7,9, 16,19},0,8,8));
}
//Sample recu... | [
"premagopu7@gmail.com"
] | premagopu7@gmail.com |
cc7f8604be20480a94402c1e60e54854e5be4f5e | d743888c3f214c9e7954db39b171dec346ead657 | /Spring Data Intro - Lab/shampoo_company/src/main/java/app/domain/impl/Lavender.java | 22f15b1f173a3d972a4c446485abffc880349533 | [] | no_license | GeorgeK95/DatabasesAdvanced | 6683000266d922e7855cca4e55b246d8a97d0b49 | cb2ed0fcaff163617460d860af70f2105471a7e1 | refs/heads/master | 2020-12-03T07:58:46.414568 | 2017-08-31T11:10:10 | 2017-08-31T11:10:10 | 95,643,423 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 592 | java | package app.domain.impl;
import app.service.impl.BasicIngredient;
import app.service.impl.BasicShampoo;
import javax.persistence.Entity;
import java.math.BigDecimal;
import java.util.Set;
/**
* Created by George-Lenovo on 7/18/2017.
*/
@Entity
//@Table(name = "lavender")
public class Lavender extends BasicIngredie... | [
"george_it@abv.bg"
] | george_it@abv.bg |
3527d9182059a78d8744096cf89ef63d15450d2b | beb5d30aac533a04b62c9c18109a0b02f6be7eca | /src/cool/structures/FindTypesVisitor.java | d86ad96f4f6f5c16d46e5cff29d6c2a9641311e5 | [] | no_license | florinrm/Tema3-CPL | 743d2fe3e9bbbab2fc29ddb6d5303f4f1605a855 | bfa51d76a73c9c9802df03d788b863fd0e50a392 | refs/heads/master | 2022-03-28T22:52:47.410396 | 2020-01-10T22:35:37 | 2020-01-10T22:35:37 | 230,462,536 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,677 | java | package cool.structures;
import cool.compiler.*;
import java.util.ArrayList;
public class FindTypesVisitor implements Visitor<Void> {
private Scope currentScope = null;
@Override
public Void visit(Id id) {
return null;
}
@Override
public Void visit(Int intt) {
return null;
... | [
"florinrmfm3@gmail.com"
] | florinrmfm3@gmail.com |
5aa1deb05c5053fa474d438396e923733c1d0abc | 3bbd1585d938bf1694a6e0948a2c724590cf8dce | /src/main/java/ro/ubb/dp1819/lab4/exercises/strategy/NotificationType.java | 53ec8225474d0273d2501ba2e504a6087d4f928a | [
"GPL-1.0-only",
"MIT"
] | permissive | lzrmihnea/ubb.dp.1819 | 0e6df29a11d07aba58549ef8bb453cbeb704be5e | 4fff0194cea401bf5c4c141e68fe6e0b81eea715 | refs/heads/master | 2020-04-25T06:25:32.797607 | 2019-05-18T20:57:57 | 2019-05-18T20:57:57 | 172,580,827 | 2 | 49 | MIT | 2019-05-27T10:52:45 | 2019-02-25T20:37:59 | Java | UTF-8 | Java | false | false | 123 | java | package ro.ubb.dp1819.lab4.exercises.strategy;
public enum NotificationType {
SMS,
PUSH_NOTIFICATION,
EMAIL
}
| [
"bogdan.mariesan@accesa.eu"
] | bogdan.mariesan@accesa.eu |
3eab465d25e5a4e0b9ce544d7161443f002a78b4 | 6fefdd0b7ca0115c40ca717b253c9dc873755ef6 | /src/com/springboot/controller/Example.java | 46fcf03282e19afd2a027acd5fe7fa1b8f06bc8d | [] | no_license | jiger25783/MyfirstSpringBoot | 2e9870a9a94499c4d342db7a722b356e60d0f48c | c45a20df170670c5375d758a362f641649df8fd4 | refs/heads/master | 2020-06-12T22:29:42.733542 | 2016-12-03T21:53:37 | 2016-12-03T21:53:37 | 75,497,736 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 843 | java | package com.springboot.controller;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bin... | [
"patejiga@Jigar-Patels-MacBook-Air.local"
] | patejiga@Jigar-Patels-MacBook-Air.local |
72f910a4dc3ac1e364ac186e47638d95c366d366 | cfc7bdfcd61367b727c62da124a2bfeb390d1578 | /apps/bankingwarehouse/android/native/src/com/ibm/cio/be/android/banking/RetailBank/GCMIntentService.java | 1070a1e03d9fa2cb546202c34a6cb095a3b3773f | [] | no_license | bhudith/IBM_Mobile_Contest_Competition | e6e7cf37a7a91107e5345694bc71b2efec4ed71f | 1c1d3b73078a5d6dffd607a59036fe04c81f8d27 | refs/heads/master | 2020-03-23T23:43:38.359753 | 2018-07-25T05:35:27 | 2018-07-25T05:35:27 | 142,251,826 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 165 | java | package com.ibm.cio.be.android.banking.RetailBank;
public class GCMIntentService extends com.worklight.androidgap.push.GCMIntentService{
//Nothing to do here...
}
| [
"bhudith.toon@gmail.com"
] | bhudith.toon@gmail.com |
65fdc690c19a0216fd7ad51a3575473f250bafac | ca15c84686592d2efabcc55e25e6ff750031dd8f | /javarush/test/level14/lesson08/bonus03/Solution.java | 3334b9602d325859838c15ab1c628282eb7bd4cb | [] | no_license | Kutsanin/JavaRush | 2b6ded854d11d9543d105ce5c00c942daefa81ec | f32ad2d848d9ec4cefec914a17aca6f1102acc9a | refs/heads/master | 2021-01-20T08:49:07.195215 | 2015-12-22T11:26:24 | 2015-12-22T11:26:24 | 34,452,354 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,311 | java | package com.javarush.test.level14.lesson08.bonus03;
/* Singleton
Класс является синглтоном (реализует паттерн(шаблон) Singleton), если позволяет создать всего один объект своего типа.
Реализовать Singleton pattern:
1. Создай класс Singleton в отдельном файле.
2. Добавь в него статический метод getInstance().
3. Метод... | [
"Snik91@live.ru"
] | Snik91@live.ru |
1a80a0db8ec67b954a993f2c3e5860d0e4ccec19 | 1d0eee6701aba76ae09609caf91f3303b7bf7b90 | /VideoShop/src/by/epam/vshop/service/validation/FilmValidator.java | 3af4867aa01836018e8f7365ccfbff85bfaff6d7 | [] | no_license | n1k1taM/JWD_Final_project | f42197d8a3aa0dd6a07e93fcb1bce5f0ebbf1a89 | 7f5ff56a4f449c7c2243542310e1213392590ef5 | refs/heads/master | 2020-03-18T01:48:24.503428 | 2018-06-21T06:50:43 | 2018-06-21T06:50:43 | 134,160,555 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,779 | java | package by.epam.vshop.service.validation;
import java.util.regex.Pattern;
public final class FilmValidator {
private FilmValidator() {
}
public static boolean validFilm(String title, String cover, String url, String trailerUrl, String year,
String price, String shortDescription, String longDescription... | [
"minichna.bsaa@gmail.com"
] | minichna.bsaa@gmail.com |
9767bec60d1c2fe6a5f277b0fbc80045e022c455 | 3723957f0279f7ef4b5724db59135b0e1d0d3a57 | /src/model/CharacterPicker.java | 9d50ab1e6d58c2096c36e0b9d4843a8a98e1ce54 | [] | no_license | Nichapanit/ProgMeth-Project-2020 | 95346c4bb3aeab354f210ace7e3dce353fb972c2 | 6df2dbb918ec9be1e222ecb180803696d52d0261 | refs/heads/main | 2023-05-09T07:38:54.385404 | 2021-05-16T04:04:31 | 2021-05-16T04:04:31 | 360,530,419 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,799 | java | package model;
import javafx.geometry.Pos;import javafx.geometry.Rectangle2D;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.VBox;
public class CharacterPicker extends VBox{
private ImageView circleImage;
private ImageView characterImage;
private static final int O... | [
"nichapanit555@gmail.com"
] | nichapanit555@gmail.com |
995360da5eef7ab55f3a72477542a427e790674e | 17ac58f7cebc83bca2c24d6d53142298793479eb | /src/main/java/edu/uchicago/lowasser/fingertree/DeepContainer.java | 5786e6e4c690f68cfdedc0e1fa0ebfea6a25a133 | [] | no_license | renesugar/JFingerTree | 3ff3f15badc509c9d1d74c0d97220806a1532fdc | ef05e675bd0d4f2bdf6ac460f0a6a43340e6769a | refs/heads/master | 2021-05-27T09:04:23.563743 | 2011-12-01T20:11:54 | 2011-12-01T20:11:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 150 | java | package edu.uchicago.lowasser.fingertree;
interface DeepContainer<E, T extends Container<E>> extends Container<E> {
T get(int i);
int size();
}
| [
"wasserman.louis@gmail.com"
] | wasserman.louis@gmail.com |
3798b6034f5b8b95f1734d7a989cc32215d57cfb | be4a8376b4e8c994a79d117d9fe5ee5508a50fcc | /2.1 (2017-2018)/lostshard/src/main/java/com/lostshard/lostshard/DamageBalance/Enchantments/Armor/FireProtection.java | 578e6daf08e095fb0eab9793042924ae5b75d1fc | [
"MIT"
] | permissive | BuntsFidleyBits/Lostshard-ARCHIVE | 5b140d36c058421ce02ff12eaee143850a274db1 | 6094e3c12b181e86c313edc7ec2f13fd0907f716 | refs/heads/master | 2021-09-28T13:44:52.398297 | 2018-11-17T14:52:51 | 2018-11-17T14:52:51 | 157,993,584 | 0 | 2 | MIT | 2018-11-17T14:42:58 | 2018-11-17T14:42:58 | null | UTF-8 | Java | false | false | 842 | java | package com.lostshard.lostshard.DamageBalance.Enchantments.Armor;
import org.bukkit.enchantments.Enchantment;
public enum FireProtection {
LEVEL1(Enchantment.DAMAGE_ALL, 1, 0),
LEVEL2(Enchantment.DAMAGE_ALL, 2, 0),
LEVEL3(Enchantment.DAMAGE_ALL, 3, 0),
LEVEL4(Enchantment.DAMAGE_ALL, 4, 0),
;
private final En... | [
"mu@imi.co"
] | mu@imi.co |
aff63098844bcdcb979ca563ff684935a5a19329 | 622053c570d178ea9f9a68784822cfa829e4ac63 | /jetrix/tags/0.2.1/src/java/net/jetrix/messages/OneLineAddedMessage.java | b152d523b1f04efe2eedee16b13a7ca957d01ae7 | [] | no_license | ebourg/jetrix-full | 41acb3f2aa19155dd39071fea038625a4ba022f4 | 10fb59ee2d8b46f3553978f46726fd4ee6c90058 | refs/heads/master | 2023-07-31T21:36:12.712631 | 2014-03-17T21:40:47 | 2014-03-17T21:40:47 | 179,978,734 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 981 | java | /**
* Jetrix TetriNET Server
* Copyright (C) 2001-2003 Emmanuel Bourg
*
* 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 (at your option) any later v... | [
"ebourg@apache.org"
] | ebourg@apache.org |
13b923c31d109233d8bfbe628ba62758efe1c17b | f0a6dc554ad160e55a3c27ea53067bb7ce4dcbb1 | /machineModel.java | 646369a0eae668af2484bd392619c01493daed47 | [] | no_license | KevinPrianka/UAS-PBO | 4dd717f86483db635675077474a2a806ee49c18e | 2fc2c3479e0e5dbbecb3d877dad182a886526661 | refs/heads/main | 2023-02-17T02:18:28.196577 | 2021-01-20T15:18:09 | 2021-01-20T15:18:09 | 329,475,630 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,980 | 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.
*/
/**
*
* @author baros
*/
public class machineModel {
private String Vehicles;
private String Passanger;
private int Cod... | [
"barosalex595@gmail.com"
] | barosalex595@gmail.com |
05af805777634b2dd43f4e4db24c96a0f20886be | d97af3db60df4fd365fefb9f761aea98441a87fa | /app/src/main/java/com/ximai/savingsmore/save/modle/SubmitOrderResult.java | 38d85f2f2c00e697492c04b4f38bd54e6d6ef0af | [] | no_license | liufanglin/jianjian_shengyousheng | efd1eb3f070ff6ad1f206a7d1d90a0306ec6c353 | 763b1d45157e9c1011e92fd39e49471a7c91b3df | refs/heads/master | 2020-04-08T18:19:44.545286 | 2019-03-24T07:11:58 | 2019-03-24T07:11:58 | 159,603,685 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,170 | java | package com.ximai.savingsmore.save.modle;
import java.io.Serializable;
import java.util.List;
/**
* Created by caojian on 17/1/4.
*/
public class SubmitOrderResult implements Serializable{
public boolean IsSuccess;
public String Message;
public String Id;
public List<MainData> MainData;
public S... | [
"fanglin.liu@24tidy.com"
] | fanglin.liu@24tidy.com |
ff28367709c258c010b062adf4e8dd25e9578ecd | 5c277b0cb7d68a31248a9aa0358c5787b7953924 | /app/src/main/java/com/nfcencrypter/Fragments/TagRegistryAdapter.java | 39612af3377cc8ff05c0dc985deda2671db2709e | [] | no_license | mcpecommander/NfcEncrypter | 222a613970d54669cf0f3065e080f6f79a54f2c2 | 39ecb65df71f9b13220d7400fe765ec49f8715a7 | refs/heads/master | 2020-06-08T22:44:08.377443 | 2019-07-05T20:26:30 | 2019-07-05T20:26:30 | 193,320,246 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,175 | java | package com.nfcencrypter.Fragments;
import android.view.LayoutInflater;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.const... | [
"hosam201520152015@gmail.com"
] | hosam201520152015@gmail.com |
006c7dba561a44e0a3fd61c5f9ffb646c6d71af0 | eb01c17cee324cc1441aa6e872da946dc074eb11 | /src/main/java/Trama.java | 6ef024881ef1b8c1215e754942cb537035ad6223 | [] | no_license | gonzamandarino/QMP_02 | e730460f89c0b879e8e8ee1383ebd188b95d0674 | e339727c5a33313cef2b1ec18195dbea669d2dc3 | refs/heads/main | 2023-05-06T04:28:32.201667 | 2021-05-28T02:52:55 | 2021-05-28T02:52:55 | 362,199,532 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 53 | java | enum Trama {
LISA, RAYADA, CUADROS, ESTAMPADO
}
| [
"gonzamandarino@gmail.com"
] | gonzamandarino@gmail.com |
808b20be2fe8215366dd82bbdb9ecb75f9053a67 | c7f6170689c11bd1daa1b038a32b1c84f4cc1785 | /module-simple/src/main/java/domainapp/modules/project/fixture/ProjectBuilder.java | df6b2aa305b298ef12b44c9db14cb5288a009a68 | [
"Apache-2.0"
] | permissive | johandoornenbal/proplannio | 35582434f1b85d18e04e5278b035ce7471000aa7 | 2afb78af9e7c1651eeee961cc8b2d64b78c75cf7 | refs/heads/master | 2020-09-16T22:33:03.490299 | 2020-04-09T10:54:25 | 2020-04-09T10:54:25 | 223,905,947 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,935 | java | package domainapp.modules.project.fixture;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import javax.inject.Inject;
import org.apache.isis.applib.services.factory.FactoryService;
import org.apache.isis.testing.fixtures.applib.fixturescripts.BuilderScriptWithResult;
import domaina... | [
"johan@yodo.nl"
] | johan@yodo.nl |
ffee5f1cbbc46cc3e06ac242d0941a22927a24b6 | 21dbe9f22562e91f717582fc9e95112e75ab003f | /app/src/main/java/it/tiwiz/whatsong/intents/EmptyIntent.java | bbaa2cdf7782559ce22919b8955c47119626fc82 | [
"MIT"
] | permissive | tiwiz/WhatSong | 97012c69472160b53f650888d01bcb79cfed83e7 | 8c295e1d49a1f595567aa14956ca8cdd64a40f5e | refs/heads/master | 2020-05-16T22:24:25.910457 | 2015-06-11T15:38:28 | 2015-06-11T15:38:28 | 37,154,952 | 18 | 1 | null | null | null | null | UTF-8 | Java | false | false | 342 | java | package it.tiwiz.whatsong.intents;
import android.content.Intent;
import android.support.annotation.Nullable;
/**
* This is the default implementation of the {@link MusicAppIntent} Interface
*/
public class EmptyIntent implements MusicAppIntent {
@Override
@Nullable
public Intent getInstance() {
... | [
"roberto.orgiu@gmail.com"
] | roberto.orgiu@gmail.com |
bb37a5bd222f56b8e6f8752efe88d66648147486 | 019d4238d5571ecd66668e3e3ab8ed2220d9c0a5 | /app/src/main/java/rs/pedjaapps/moviewallpapers/fragment/PopularFragment.java | 79cb92ac55fb2bdc028c65734f076fa56ea1ecad | [] | no_license | duchien85/TV-Wallpapers | e85edaa25b6e8c3aafd6dfc3a8a474c3405ad792 | fc89977244b7a93072faafcb9dd81168d7a1b46c | refs/heads/master | 2020-05-17T16:25:53.909501 | 2017-10-05T15:00:38 | 2017-10-05T15:00:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,702 | java | package rs.pedjaapps.moviewallpapers.fragment;
import org.skynetsoftware.dataloader.DataProvider;
import org.skynetsoftware.snet.Request;
import java.util.List;
import rs.pedjaapps.moviewallpapers.model.Page;
import rs.pedjaapps.moviewallpapers.model.ShowPhoto;
import rs.pedjaapps.moviewallpapers.network.NetworkDat... | [
"predragcokulov@gmail.com"
] | predragcokulov@gmail.com |
e9658e32bc95e73f94af221ee07c4819d5ffe8a3 | e2da0a2ad716cb7747d15467e52c1959d505c457 | /jeesite-data/jeesite-data-provider/src/main/java/com/fsnip/jg/modules/cms/utils/CmsUtils.java | ae5fff3457935c5be44444eb5df9ed5df03d41d7 | [
"Apache-2.0"
] | permissive | waile23/jeesite-parent | 5b217ec545075adc9c4a315fa563d50fc0437e99 | 2bb2be6f00c0a24d38415c234392d93399a5b181 | refs/heads/master | 2020-12-03T03:52:04.689602 | 2017-06-29T18:40:42 | 2017-06-29T18:40:42 | 95,783,760 | 0 | 0 | null | 2017-06-29T14:02:39 | 2017-06-29T14:02:39 | null | UTF-8 | Java | false | false | 10,618 | java | ///**
// * Copyright © 2012-2016 <a href="https://github.com/thinkgem/jeesite">JeeSite</a> All rights reserved.
// */
//package com.fsnip.jg.modules.cms.utils;
//
//import com.fsnip.jg.common.config.Global;
//import com.fsnip.jg.common.mapper.JsonMapper;
//import com.fsnip.jg.common.persistence.Page;
//import com.... | [
"tfy1332@163.com"
] | tfy1332@163.com |
e96426d20971ddabe098f9a7ebe63fe6d59ce487 | 7d5e557ce546b92ea9d1943f920edb5150578bb5 | /src/pk2Variables/Ex1FirstExample.java | 900b6895a2ec15c8a2a222eb92201efeb18a9207 | [] | no_license | tejaswidurga/JavaPractiseExamples | c1bd1e9a68289a177a8dc09cd0bd5baef26c6e4c | b51f88cc604c45e9653169ae6f661edce592e586 | refs/heads/master | 2021-01-06T16:38:57.800987 | 2020-02-25T09:53:41 | 2020-02-25T09:53:41 | 241,401,156 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 321 | java | package pk2Variables;
public class Ex1FirstExample {
public static void main(String[] args) {
int a = 10;
int b = 20;
char c1 = 'j';
System.out.println("a value is "+a);
System.out.println("b value is "+b);
System.out.println("C1 is "+c1);
int c = a * b;
System.out.println("c value is "+c);
}
}
... | [
"tejaswidurga4@gmail.com"
] | tejaswidurga4@gmail.com |
cd94f6434f9ccd8ef4cd972bcd37ffbd27d5b639 | ab5250b122e57bacb0f58422b38b8e73ef265c5c | /src/main/java/com/luanvan/dto/request/RegisterDTO.java | 42cd565045026fb13877cf8b65255c78165f7a70 | [] | no_license | nmikz1997/luanvan_banhang | c8eb3916196931ea1e33359396dded45c23a1f66 | 5902140e0d2f9ae7ea30e17ab098cea6b516f6b7 | refs/heads/master | 2020-07-05T20:03:00.599993 | 2019-12-06T10:22:15 | 2019-12-06T10:22:15 | 202,758,118 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 349 | java | package com.luanvan.dto.request;
import javax.validation.Valid;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
@Setter
@Getter
@NoArgsConstructor
@AllArgsConstructor
public class RegisterDTO {
@Valid
private CreateUserDTO user;
@Valid
private C... | [
"trinhthenguyen123@gmail.com"
] | trinhthenguyen123@gmail.com |
6959a5f85ffc16d8eb6916da54d853f1685c6da0 | 4d34aa8c67a265b3e644101ea126eaed57835053 | /src/main/java/com/service/BaseService.java | b342ce2565c6854f176e86143c171ecc9f3822b5 | [] | no_license | 1026957152/coalpit-server | 354eda1d72a3cb6b801b718493bc7b3ee989e92e | 99f1654308daf94bcd5817719325a3dfff5853ee | refs/heads/master | 2021-05-09T06:35:23.853649 | 2018-01-29T05:09:20 | 2018-01-29T05:09:20 | 119,334,608 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 101 | java | package com.service;
/**
* Created by Peter Xu on 01/05/2015.
*/
public interface BaseService {
}
| [
"1026957152@qq.com"
] | 1026957152@qq.com |
4fe4fea8d7901e333d7fe05b2a7ca81856a24ad5 | d9e2f80bd3f5bd80bfcc6a8fce0c51ec2d90c31d | /src/test/java/org/loadtest4j/factory/DriverFactorySupplierTest.java | cbfd587e2d94552e66e877e342572c14bc4d508b | [
"MIT"
] | permissive | loadtest4j/loadtest4j | a8347c868cd051c8caeda18d460ff2d46e5f5cca | 699d9fce7c639fbbac8510738e4e13fff09b0b03 | refs/heads/master | 2022-10-20T03:59:05.953800 | 2022-10-10T19:47:09 | 2022-10-10T19:47:09 | 128,529,526 | 11 | 2 | MIT | 2022-10-10T19:47:10 | 2018-04-07T13:12:24 | Java | UTF-8 | Java | false | false | 1,898 | java | package org.loadtest4j.factory;
import org.loadtest4j.LoadTesterException;
import org.loadtest4j.driver.DriverFactory;
import org.loadtest4j.junit.UnitTest;
import org.loadtest4j.test_utils.NopDriverFactory;
import org.junit.Rule;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.jun... | [
"noreply@github.com"
] | loadtest4j.noreply@github.com |
eb8a4edb4ed540e570cc3a1d2bdef56284f5d969 | a84913743e8605b98a9f8590771a4d4582a76924 | /app/src/main/java/com/example/nctai_trading/bithumb/bithumbConfigResponse.java | b51c52d2696f9501b74555d2d0c4c8db0125910f | [
"Apache-2.0"
] | permissive | marcellinamichie291/NCT-AndroidGUI | 467f5ab22ad618e9f7c907d86312b6b12b0e368f | 6466ccd9bf24697f24ea5652eeb4de83cc4b9191 | refs/heads/master | 2023-05-14T11:19:45.201708 | 2021-06-09T11:32:22 | 2021-06-09T11:32:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,220 | java | package com.example.nctai_trading.bithumb;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class bithumbConfigResponse {
@SerializedName("coinConfig")
@Expose
private List<bithumbConfigCoinConfig> coinConfig = null;
@Seriali... | [
"cthacker@udel.edu"
] | cthacker@udel.edu |
5d01ac728cc37daa580801a0a0585d02d4ee020d | 7d5941960eef64d2b69e8b26d783b295835d9568 | /Ultima_Versão_Trabalho_Java/src/caixaDeTexto/somenteLetra.java | 2dda6bd66ad91d0f92468314025df49d74bd65e5 | [] | no_license | ItaloGus/Java | ae46cbeb5e09d91ef5ca3b686d30442f9db507bc | 2caf40dc99d4449e327912688a09ac4530eca17e | refs/heads/master | 2021-07-03T13:50:23.593191 | 2019-12-10T20:56:26 | 2019-12-10T20:56:26 | 187,312,050 | 0 | 0 | null | 2020-10-13T18:07:35 | 2019-05-18T04:00:15 | Java | UTF-8 | Java | false | false | 773 | 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 caixaDeTexto;
import javax.swing.text.AttributeSet;
import javax.swing.text.BadLocationException;
import javax.swing.text.Plai... | [
"italogustavo207@gmail.com"
] | italogustavo207@gmail.com |
e7090abffb32ed6cf853f666f3e8b487a36b2137 | 60568c532630f3aafe779b687a2b75bc95902deb | /app/src/main/java/com/muhammad_adi_yusuf/projeksubmission2/adapter/AdapterRview.java | fc27d8f62cbadd7ece41cc88320ed84a0bb16929 | [] | no_license | kazuiains/ProjekSubmission2-Movie_Catalogue | 14ad56d5c57ee8649bfb70f0066f6ba55c6c3188 | 8a06c50c7e82779147edea8d2fd897f713c3cfbf | refs/heads/master | 2020-07-03T10:09:58.102146 | 2019-08-12T06:57:21 | 2019-08-12T06:57:21 | 201,875,248 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,047 | java | package com.muhammad_adi_yusuf.projeksubmission2.adapter;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.recyclerview.widge... | [
"kaisaryusuf@gmail.com"
] | kaisaryusuf@gmail.com |
fae4153bcb414cd6538b05b84d28f2c39d19c088 | 6400224b2ff4797f0ad7283685056ff5e50004d4 | /erwin-cloud-business/erwin-cloud-storage/src/main/java/com/fengwenyi/example/erwincloudstorage/config/MyBatisPlusConfiguration.java | 9b416d9ddb482cb88245edfdb523a072caddd88a | [] | no_license | fengwenyi/erwin-cloud-example | c8d34ee36c9bede4cca8ebc598b2a401dc738307 | bed01693c67174642b52a37b51c9e6a014a21b60 | refs/heads/master | 2023-03-19T18:09:16.672238 | 2021-03-10T06:25:22 | 2021-03-10T06:25:22 | 336,506,391 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,081 | java | package com.fengwenyi.example.erwincloudstorage.config;
import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
import org.mybatis.spring.annotation.MapperScan;
impor... | [
"xfsy_2015@163.com"
] | xfsy_2015@163.com |
db00d5c25dd5611044e566ab81ceb6cc5235179a | 3d7435ac8c62281c8fc902192917a8de4ad7a4b5 | /backend/src/main/java/com/example/demo/security/oauth2/user/OAuth2UserInfoFactory.java | d839f3ba800aea073cd06e0c549fd565eb7578de | [] | no_license | nicolebradleey/Auctionista | 81ec173e1e7307777464f4daea33378792b19865 | f8c5820174ce0ecd40c2a43b33dec99099368707 | refs/heads/main | 2023-09-04T20:17:55.173834 | 2021-11-17T08:46:04 | 2021-11-17T08:46:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 785 | java | package com.example.demo.security.oauth2.user;
import com.example.demo.entities.AuthProvider;
import com.example.demo.exception.OAuth2AuthenticationProcessingException;
import java.util.Map;
public class OAuth2UserInfoFactory {
public static OAuth2UserInfo getOAuth2UserInfo(String registrationId, Map<String, Ob... | [
"72065138+anna636@users.noreply.github.com"
] | 72065138+anna636@users.noreply.github.com |
34a4449bd6a2aef0e5e8224ab2e63457d0368cee | 614030ce632f662bd3b055063bba9ec90fe7c6ac | /app/src/main/java/com/mycampusdock/dock/utils/GlideHelperUpscale.java | 5d88b72a334b2435aa1f92729f6cfb89e9cc909d | [] | no_license | ogil7190/android-LookOut | 2a5afa3a6114e96a2dda06c5a5c8f10b8daa1994 | a956db499f1320f3236723b56fcadd87b3b6086a | refs/heads/master | 2021-09-16T07:00:51.679921 | 2018-06-18T07:06:23 | 2018-06-18T07:06:23 | 137,719,833 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 745 | java | package com.mycampusdock.dock.utils;
import android.content.Context;
import android.graphics.Bitmap;
import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool;
import com.bumptech.glide.load.resource.bitmap.CenterCrop;
public class GlideHelperUpscale extends CenterCrop {
public GlideHelperUpscale(BitmapPo... | [
"androidrajpoot@gmail.com"
] | androidrajpoot@gmail.com |
78c20fa474c406ff8f816e746f225c98f83c28da | 61602d4b976db2084059453edeafe63865f96ec5 | /org/greenrobot/greendao/rx/RxDao$7.java | fcbdb8d49f3c618dc4e0061e9f527d084ddf5382 | [] | no_license | ZoranLi/thunder | 9d18fd0a0ec0a5bb3b3f920f9413c1ace2beb4d0 | 0778679ef03ba1103b1d9d9a626c8449b19be14b | refs/heads/master | 2020-03-20T23:29:27.131636 | 2018-06-19T06:43:26 | 2018-06-19T06:43:26 | 137,848,886 | 12 | 1 | null | null | null | null | UTF-8 | Java | false | false | 458 | java | package org.greenrobot.greendao.rx;
import java.util.concurrent.Callable;
class RxDao$7 implements Callable<T> {
final /* synthetic */ RxDao this$0;
final /* synthetic */ Object val$entity;
RxDao$7(RxDao rxDao, Object obj) {
this.this$0 = rxDao;
this.val$entity = obj;
}
public T ... | [
"lizhangliao@xiaohongchun.com"
] | lizhangliao@xiaohongchun.com |
8b1b5d23d6f259fed83a226245159a79cbcefef2 | 9b19b02129c18c946295e897bc99dd4b8778638f | /app/src/main/java/com/yjhh/ppwbusiness/views/cui/AlertDialogFactory.java | 6055d2d08d901207c8b6fe5660f59557e738077d | [] | no_license | majian1234554321/ppwbusiness | 253982cff2ecf1c0e98a51d9748de1040fbe2e32 | 3a93167bdcb0813a7db0f8e74bfbad1d7b4a6f37 | refs/heads/master | 2020-04-06T18:18:23.309190 | 2019-02-15T02:54:53 | 2019-02-15T02:54:53 | 157,693,463 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,135 | java | package com.yjhh.ppwbusiness.views.cui;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.text.TextUtils;
import android.view.ContextThemeWrapper;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import com.yjhh.ppwbusines... | [
"99571202@qq.com"
] | 99571202@qq.com |
7ca80273708802d0a78ba448437dad30793d4799 | d00be105055225808a242cd6bd8411b376c4f4e1 | /src/net/java/sip/communicator/util/launchutils/SipCommunicatorLock.java | ea8a6d4780073d6f68905aa838c9b5934222a7b8 | [] | no_license | zhiji6/sip-comm-jn | bae7d463353de91a5e95bfb4ea5bb85e42c7609c | 8259cf641bd4d868481c0ef4785a5ce75aac098d | refs/heads/master | 2020-04-29T02:52:02.743960 | 2010-11-08T19:48:29 | 2010-11-08T19:48:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 26,402 | java | /*
* SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.util.launchutils;
import java.io.*;
import java.net.*;
import java.util.*;
import net.java.sip.communicator.launcher.*;
impor... | [
"barata7@gmail.com"
] | barata7@gmail.com |
8124c9ed5587a93bda716aaab7ec236feb8b2c36 | 9c4f824a2aa803fd957e64c9de42529e5e729dc5 | /src/main/java/com/easou/untils/ConfigLoader.java | 3837d32b6374f9ae17440aae026e4c30e5cdcc47 | [] | no_license | yangweifeng2017/YWF_SparkJobs2Java | d8d8b66f488ce68fc83159f96f25dc2282d8c452 | cccd8b26e24b2805b513a195d09af4795d9f2ea5 | refs/heads/master | 2022-01-21T19:25:47.330984 | 2019-05-08T12:02:50 | 2019-05-08T12:02:50 | 185,597,746 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,596 | java | package com.easou.untils;
import com.easou.Constants.UserConstants;
import java.util.Properties;
/**
* ClassName ConfigLoader
* 功能: 配置文件加载类
* Author yangweifeng
* Date 2018/9/13 16:48
* Version 1.0
**/
public final class ConfigLoader {
private static Properties props = new Properties();
// 独立配置文件
static {
... | [
"1146948344@qq.com"
] | 1146948344@qq.com |
90dcfa80e2bfaab329a6070a52f950c4361014bd | a8b2472fbd4419e93c96b24a3029b65e91422989 | /src/main/java/com/xiaoyu/common/EventLogConstants.java | dc445bfa5aaa845ef998de567e2a6b5991fbb9a5 | [] | no_license | yudajun002/MRLogAnalyse | b2c18ad9ec4b318c8ee47dc50281441aa01f424d | 1002091e942097b76fe0775404ddaf65659520c8 | refs/heads/master | 2022-06-26T04:39:29.403034 | 2019-08-25T09:27:42 | 2019-08-25T09:27:42 | 204,276,687 | 0 | 0 | null | 2022-06-21T01:44:20 | 2019-08-25T10:04:20 | Java | UTF-8 | Java | false | false | 4,729 | java | package com.xiaoyu.common;
/**
* 定义日志收集客户端收集得到的用户数据参数的name名称<br/>
* 以及event_logs这张hbase表的结构信息<br/>
* 用户数据参数的name名称就是event_logs的列名
*
*
*/
public class EventLogConstants {
/**
* 事件枚举类。指定事件的名称
*
* @author root
*
*/
public static enum EventEnum {
LAUNCH(1, "launch event", "e_l"), // launch事件,表示第一次访... | [
"yudajun02@sina.com"
] | yudajun02@sina.com |
2b88b18d5bf33be16fe0eef7770c4e4f0c5f4cdb | 2f0436c72eb19d6c069b9b78288536aae09c6c25 | /app/src/main/java/com/example/gamerapp/Modal/GameList.java | 59792e753438fe971510364a140af3ddb63ac713 | [] | no_license | samirthaker2020/GamerApp1.0 | be608d1a4ea45db76c3e88c2a4d2eff3ff0414f1 | 1a89159800072aad0c06bf38f9b054d104b22b37 | refs/heads/master | 2022-12-06T14:43:53.071350 | 2020-08-25T01:41:34 | 2020-08-25T01:41:34 | 268,860,502 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,390 | java | package com.example.gamerapp.Modal;
import java.io.Serializable;
public class GameList implements Serializable {
public String gamename,gameimage,gametrailer;
public int gameid;
public float lstgame_rating;
public float getLstgame_rating() {
return lstgame_rating;
}
@Override
pu... | [
"samir2009thaker@gmail.com"
] | samir2009thaker@gmail.com |
bd45b6e3122cc4f62dffb288c648936bc878ebe0 | 2aa2c0eeedfa0459725e249794e904528c5f1d0c | /trees/src/com/datastructures/list/MergeTwoSortedLinkedLists_Set1.java | c340576e9e0f6b0ee1752d6174faa77ce88e1890 | [] | no_license | mygitsource/data-structures | d911d0d19395adbc518a511be831c6d3426b315e | 7e58417f4a064766058cf5a8f8ebe79d7787ecd8 | refs/heads/master | 2021-01-22T05:38:30.112566 | 2014-04-27T10:20:18 | 2014-04-27T10:20:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,545 | java | package com.datastructures.list;
public class MergeTwoSortedLinkedLists_Set1 {
static ListNode mergeSortedLinkedLists(ListNode head1, ListNode head2){
if(head1 == null) return head2;
if(head2 == null) return head1;
LinkedList nList = new LinkedList();
ListNode temp = head1;
ListNode current = head2;
... | [
"raviaz@aol.com"
] | raviaz@aol.com |
169f3c918ce93331f53bd165e45deb6c7c4ea10e | 555b52c2787ca6022553d43a1094bcd5acd1d63d | /sdk/appservice/mgmt/src/main/java/com/azure/resourcemanager/appservice/models/StaticSiteFunctionOverviewArmResourceInner.java | e9c6364a3c1de328a6b933f70e8affd12b58b74f | [
"MIT",
"LicenseRef-scancode-generic-cla",
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-or-later",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | openapi-env-ppe/azure-sdk-for-java | c1abfe15e61bdb857dfb8c0821ea86ea2b297c6a | a4f6f4da8187c22db021421b331fe3bba019880f | refs/heads/master | 2020-09-12T10:05:08.376052 | 2020-06-08T07:44:30 | 2020-06-08T07:44:30 | 222,384,930 | 0 | 0 | MIT | 2019-11-18T07:09:37 | 2019-11-18T07:09:36 | null | UTF-8 | Java | false | false | 1,849 | java | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.appservice.models;
import com.azure.core.annotation.Immutable;
import com.azure.core.annotation.JsonFlatten;
import com.azure.co... | [
"noreply@github.com"
] | openapi-env-ppe.noreply@github.com |
0b43890ebe3f5149d59540e819a8f0469aaa1910 | 33d997398460f0742b0a89ff9f298625965132ba | /core-recipes/src/main/java/com/java/se7/data/structures/list/ArrayList.java | 52e164e2b492a3b101347306773d6f4fe95afa4d | [] | no_license | sumit-srivastava/Recipes | 07a49999d31fc90b952b7c7edaa59fe7b2e2ff4b | 9ca9ffbb13c8b4d3613cc19cc4bb11f4251be276 | refs/heads/master | 2021-01-10T03:30:20.363913 | 2017-08-02T19:36:05 | 2017-08-02T19:36:05 | 48,569,637 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,713 | java | package com.java.se7.data.structures.list;
import java.util.Iterator;
import java.util.NoSuchElementException;
/**
* Realization of a list by means of a dynamic array. This is a simplified version
* of the java.util.ArrayList class.
*
* @author Michael T. Goodrich
* @author Roberto Tamassia
* @author Michael H.... | [
"java.sumit1@gmail.com"
] | java.sumit1@gmail.com |
8e57b696bab433611e40900d071279d4d1e8b453 | 9c65284a0069cf6d0e3bf19919fc229fd74789ba | /gt_front_api/src/main/java/com/gt/util/GoogleAuth.java | f1f75a3f47f9570542fa4b04483f9df47a25a2db | [] | no_license | moguli/powex | 95aa2699b6fbf92aef6ab7b5203864148af29467 | 56348db54db9456234010e5a20f9f8a09d234c64 | refs/heads/master | 2022-12-28T03:52:59.442332 | 2019-09-08T10:04:25 | 2019-09-08T10:04:25 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,282 | java | package com.gt.util;
import java.util.HashMap;
import java.util.Map;
/*
* Not really a unit test- but it shows usage
*/
public class GoogleAuth {
//网站名称,可自定义
private static String webName = Constant.GoogleAuthName;
/**
* 注册GOOGLE认证,先传入用户登陆名,返回一个MAP,里面有两个KEY,一个是url(value为二维码地址),一个是secret(为此用户的地址,此地址用于校验)
... | [
"185428479@qq.com"
] | 185428479@qq.com |
792f0279613ac4d8be96c00608930f665ae9dedf | 6bf22f8f46b8df21571f84cabc6337bf84f3246b | /Client/src/net/etfbl/controller/CommentController.java | 2f9f11b3522a66639d69fa172e639b85c52d153d | [] | no_license | ChaosNik/EmergencyInformationSharing | 4322c4a0fff55cf9c873ca6656ddbbcedf06279a | 73594090c7bad4c13132d223fb7a9df1524ce70e | refs/heads/main | 2022-12-27T20:55:34.661157 | 2020-10-06T14:23:33 | 2020-10-06T14:23:33 | 301,747,941 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,127 | java | package net.etfbl.controller;
import java.io.IOException;
import java.util.stream.Collectors;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
... | [
"noreply@github.com"
] | ChaosNik.noreply@github.com |
9f6eb0ebd707e2869971cc454f10a72a3c8882ea | 0f79f1649fedd19f86c382c28464e77aa54a0a37 | /app/src/main/java/com/zubisoft/campushelpdeskstudent/SplashActivity.java | f0ab5e94131c4168a6019e677b211c58fa8dd517 | [] | no_license | Dominic-32/Campus-Help-Desk-Student | edc16e6a92f26aee5479a97a1099e1d1be518dde | 7c30a95724185e3c8a2d9146fea996d204e81c4d | refs/heads/master | 2023-04-10T01:47:01.048763 | 2021-04-12T17:58:53 | 2021-04-12T17:58:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 767 | java | package com.zubisoft.campushelpdeskstudent;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.os.CountDownTimer;
public class SplashActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
... | [
"abraham.nnu@gmail.com"
] | abraham.nnu@gmail.com |
5d9c78c15f0c46a1f4077870bcc47caf927caa15 | d632a8d467b1caecc38f61f8845c5e8e088f85c6 | /src/first/Test12.java | 864aec85e7604d604c4cd53b80b1d92ded8900b0 | [] | no_license | YuFei-Soft/Project-Manage | 1e5520484ddcf4b825272e939d7e2c4b6fa39fb9 | d4d741de3fe949f42b676fd5b24108f90ad1014b | refs/heads/master | 2020-03-29T06:26:41.761128 | 2018-10-26T15:01:38 | 2018-10-26T15:01:38 | 149,624,972 | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 621 | java | package first;
import java.util.Scanner;
public class Test12 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.println("STB的成绩是:");
int STB = input.nextInt();
System.out.println("JAVA的成绩是:");
int JAVA = input.nextInt();
System.out.println("SQL的成绩是:... | [
"214681827@qq.com"
] | 214681827@qq.com |
5264ad910182ad516258df90ddcb0f36cb1f10da | 44e8ebe55f9b3e58521183d16355b4691d02e213 | /qintaiframework/src/main/java/com/kasao/qintaiframework/bottomnavigation/behaviour/VerticalScrollingBehavior.java | 9618449aad6fdad33bf6aa1493fe5cda4f53f4dd | [] | no_license | chunhejingming123/KaSaoProject | 1289d4901804c625b0cc565d43c06d0d9f7d2a70 | 4606bbea35eacd4a9ba1f4aab62ff9abd2dd6dd2 | refs/heads/master | 2020-03-26T20:55:24.902019 | 2018-09-26T00:57:36 | 2018-09-26T00:58:06 | 145,355,319 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,720 | java | package com.kasao.qintaiframework.bottomnavigation.behaviour;
import android.content.Context;
import android.support.annotation.IntDef;
import android.support.design.widget.CoordinatorLayout;
import android.util.AttributeSet;
import android.view.View;
import java.lang.annotation.Retention;
import java.lang.annotatio... | [
"893540213@qq.om"
] | 893540213@qq.om |
de4fdb3afe123badf47a5ec0d82c62d3fc5e4235 | 50ffe07742393048fe26984c5a5ab895c5ea4790 | /wshop-rest/src/main/java/com/wshop/rest/controller/ItemController.java | 710c79f625d238d640834a5eac37895712b033e8 | [] | no_license | xiaobaiyibu/Shop | 6d5f58ccb407fd8c6eace7c414c1143db142d4b6 | cebbadd6df217af750bf12d599ed0543c3136698 | refs/heads/master | 2022-01-02T22:35:43.548237 | 2018-03-10T06:31:26 | 2018-03-10T06:31:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,188 | java | package com.wshop.rest.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.... | [
"2402873932@qq.com"
] | 2402873932@qq.com |
f1f58f9fdb5fce6506e10ec21dd3714e1ced211c | 9821de953fc8607b7900b64e51aa78f11387a3ed | /app/src/main/java/com/daleelpackage/myapp/packages/WorldPay/AlternativePaymentMethod.java | d6eacba1b1461d239bac41954068d3a38caa306c | [] | no_license | Suryabeam/Daleel_Al_Jahra | 6c94ebb290796d3d2874f20fd44717275fbdfc8e | 5a7c50bb17250ef6cd55d8da4d2400b537f819b1 | refs/heads/master | 2023-01-24T01:59:43.338792 | 2020-11-24T16:06:46 | 2020-11-24T16:06:46 | 315,617,324 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,539 | java | package com.daleelpackage.myapp.packages.WorldPay;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.Serializable;
/**
* Alternative Payment Method.
*/
public class AlternativePaymentMethod implements Serializable {
private static final String COUNTRY_CODE_PATTERN = "^[A-Z]{2}$";
... | [
"moh.esmail@gmail.com"
] | moh.esmail@gmail.com |
a6a3bb0f2c7731ae3427f4ca30d83c4323119edb | dbf32df5ae0985ceb5c97e6ac9f9956659573be6 | /app/src/main/java/edu/handong/design/knockknock/fragment/HomeFragment.java | 75c99ff206d7bb89346bda31ec6543d3fd4b9982 | [] | no_license | hongkunyoo/knockknock | f90fa23f1ed4da2dad85af6e1c313bf3a981e5b2 | 914eb05b7ec7a6a7cb0c9f7840c15b21a9527ff7 | refs/heads/master | 2021-01-22T05:20:42.588335 | 2015-09-18T11:01:44 | 2015-09-18T11:01:44 | 40,882,286 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,964 | java | package edu.handong.design.knockknock.fragment;
import android.app.Dialog;
import android.app.DialogFragment;
import android.app.FragmentManager;
import android.app.ProgressDialog;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.graphics.drawable.Drawable;
import android.o... | [
"hongkunyoo@gmail.com"
] | hongkunyoo@gmail.com |
f19125eeeac6528cb3814389e792ff86d1048e92 | 30fbdd508031271b2b85c7710b171c14f0c7b0d2 | /CSIS1410code/PersonDemo/src/Person.java | 648fe01b0ae2adb1e098a4644f7f0e67ab973f27 | [] | no_license | srollmanSLCC/csis1410 | 834523234f7c866d4b2e7669d4df4c3d8e41b07c | f5b4c5edbe2fde118491d62197316143394844f7 | refs/heads/master | 2020-04-09T14:47:48.193998 | 2018-12-12T19:40:55 | 2018-12-12T19:40:55 | 160,407,229 | 1 | 0 | null | 2018-12-11T08:05:12 | 2018-12-04T19:19:27 | Java | UTF-8 | Java | false | false | 1,857 | java | import java.util.Objects;
public class Person
{
private int age;
private String name;
/**
* Getter method for Age property.
*
* @return an int representing the age of this Person
*/
public int getAge()
{
return age;
}
/**
* Setter method for the Age proper... | [
"paintballduke22@hotmail.com"
] | paintballduke22@hotmail.com |
198c4bfd8ab03b961f2aa49f64295498d4e4e9b5 | 001088a896664b82944a45f32b6146d2445631af | /01-simple-app/src/main/java/ali/vertx/hello/s02/App.java | 6db4800d23b84607d0d71ce65e6adb2fd9bb3b28 | [] | no_license | alibenmessaoud/vertx | bfdab5764af230a11eb860ced35d88384c1cf758 | 5a2b48b56c14b506489247ca0d4a0c2b42b634dd | refs/heads/master | 2022-07-03T22:35:33.561859 | 2020-11-17T16:23:48 | 2020-11-17T16:24:07 | 167,631,607 | 0 | 0 | null | 2022-05-20T20:56:02 | 2019-01-26T00:19:37 | Java | UTF-8 | Java | false | false | 748 | java | package ali.vertx.hello.s02;
import io.vertx.core.Vertx;
import io.vertx.core.VertxOptions;
/**
* Without future.complete() in the verticle, the deployer will not show the id;
* > Deployment id is: 73378d39-339b-4e81-88a7-ed452d0cf4e7
*/
public class App {
public static void main(String[] args) {
Ve... | [
"mail2alibm@gmail.com"
] | mail2alibm@gmail.com |
50ba8a3b09bf7b802e5eb889277752ccb59374c2 | ffef94bd92a3e44c423104a2b186241e5ee9fd15 | /src/main/java/com/jansmerecki/domain/Notes.java | 061b4202bb757b2b0fef7ba29f9f14b8da7a61f1 | [] | no_license | JSmerec98/spring-recipe-app | 7f40157b9e6b0f75153dfdb3bab6d7cc0033f27e | 2418bb3920f6c6fb3d624dbfe5505f653bd9d016 | refs/heads/master | 2023-02-17T09:38:15.664024 | 2021-01-16T13:59:54 | 2021-01-16T13:59:54 | 286,211,104 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 398 | java | package com.jansmerecki.domain;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import javax.persistence.*;
@Getter
@Setter
@EqualsAndHashCode(exclude = {"recipe"})
@Entity
public class Notes {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@On... | [
"jasiek.smerecki@gmail.com"
] | jasiek.smerecki@gmail.com |
67315bd7ea84a21d47330eb613215002507d3838 | bd94a511f5c5a997d8672a196d08bed01fd2c943 | /Programming/src/com/danielchan/Dec2012UTMQuestion6/Counter.java | 0b1b67f375b427a4d7f3020df4431d9d11fcf517 | [] | no_license | DanielChanJA/CSC207Final | 06fcb6511db131b3df926a406445dac2768b2180 | 2368dc0e5d4a42b85d7ab6823ddd01c55ec6ae03 | refs/heads/master | 2021-05-01T04:57:17.864185 | 2016-04-25T21:23:38 | 2016-04-25T21:23:38 | 56,996,461 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 658 | java | package com.danielchan.Dec2012UTMQuestion6;
/**
* Created by chanj on 4/25/2016.
*/
public class Counter {
private int count;
public Counter() {
this.count = 0;
}
public int increment() throws OverLimitException {
if (count > 2) {
throw new OverLimitExcep... | [
"iam@danielchan.me"
] | iam@danielchan.me |
06e38f388d541d29a1d1d6af875ccbf42371c6a0 | 82fd989f92810b1d33d87fecb73f719acdfcf36c | /src/main/java/translate/commerce/CommerceRules.java | a9409e3b4c21d7ce8952c424893f50fe9d35bbdc | [] | no_license | anilkothari10/translate | 45e934ff94354aee199e06c933c29a1aad9ee573 | 2c8e2d2954e2fe54f943050e2cf58d312d807666 | refs/heads/master | 2022-07-07T02:34:08.327794 | 2019-09-12T17:10:59 | 2019-09-12T17:10:59 | 146,479,825 | 0 | 1 | null | 2022-06-29T16:57:00 | 2018-08-28T17:03:19 | Java | UTF-8 | Java | false | false | 886 | java | package translate.commerce;
public class CommerceRules {
private String name;
private String variableName;
private String description;
private String ruleType;
public String getRuleType() {
return ruleType;
}
public void setRuleType(String ruleType) {
this.ruleType = ruleType;
}
public String getName() {
... | [
"sshirore@USMUMSSHIRORE2.us.deloitte.com"
] | sshirore@USMUMSSHIRORE2.us.deloitte.com |
1f0c12972153e78727dbb419768c05ce99fb4ffb | aaf1c59952a3428f0084d99f5b91d5684d6ae6a1 | /app/src/main/java/com/example/mechrevo/myapplication/annotation/BindView.java | db52da04fa244826193552a8a6836c543945de62 | [] | no_license | zb666/jetpack | 995f17b67563464da6e831c9d4ee045108600f58 | 649109e1cdd5b7c1c63be01a8b846bc72aec1caf | refs/heads/master | 2020-04-20T20:40:58.802942 | 2019-03-09T08:54:13 | 2019-03-09T08:54:13 | 169,084,057 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 310 | java | package com.example.mechrevo.myapplication.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.CLASS)
public @interface BindView {
}
| [
"1360799362@qq.com"
] | 1360799362@qq.com |
8afb2972ed090254397f16bcd4684af063401c20 | 662429775d1be51c7df07a0dbb7d9d7cc1aae877 | /src/main/java/wind/yang/security/service/RoleService.java | 9c4a3e137ef14c2f1b77057ba5395109449b31ae | [] | no_license | swampwar/springsecurity-inflearnlecture-project | a13f3225e3b2b5679110f3a8caf21a99ecfb5800 | d0be2a44113faa0e92111cc93776799b8f15188b | refs/heads/master | 2022-12-02T10:56:31.054686 | 2020-08-03T12:45:01 | 2020-08-03T12:45:01 | 277,491,241 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 260 | java | package wind.yang.security.service;
import wind.yang.security.domain.entity.Role;
import java.util.List;
public interface RoleService {
Role getRole(long id);
List<Role> getRoles();
void createRole(Role role);
void deleteRole(long id);
}
| [
"dkdfl88@gmail.com"
] | dkdfl88@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.