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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
330e974a8cdc35146e7337637d298961a969ac72 | cfd19cdabb61608bdb5e9b872e840305084aec07 | /SmartUniversity/node_modules/react-native/ReactAndroid/src/main/java/com/facebook/fbreact/specs/NativeStatusBarManagerIOSSpec.java | d6391740bbd55aef381ef3a15947555716c3b35d | [
"MIT"
] | permissive | Roshmar/React-Native | bab2661e6a419083bdfb2a44af26d40e0b67786c | 177d8e47731f3a0b82ba7802752976df1ceb78aa | refs/heads/main | 2023-06-24T17:33:00.264894 | 2021-07-19T23:01:12 | 2021-07-19T23:01:12 | 387,580,266 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 129 | java | version https://git-lfs.github.com/spec/v1
oid sha256:53673bd91fdc335373e3225efa841ea3c341ec5b57d4e486051325d79dcc18b5
size 2764
| [
"martin.roshko@student.tuke.sk"
] | martin.roshko@student.tuke.sk |
f81b82d2723dcaf77e247bf90e7cb1a22e5cb12a | 824ec8193c9048f71a99fe8a6b5af8a967f51e0b | /app/src/main/java/com/qupp/client/ui/view/activity/mine/setting/ChangePhoneActivity.java | da2ae6b2560e7af01be5150aad02eb8902ceaf7d | [] | no_license | wllysx/qupaipai | 4469d8a89d106a78220a7498e9c4cdf20f901ad6 | 8ee0605af6f29b9f63026acf244c3ecc16bfc801 | refs/heads/master | 2022-11-19T06:16:06.444214 | 2020-07-20T06:49:57 | 2020-07-20T06:49:57 | 281,039,124 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,793 | java | package com.qupp.client.ui.view.activity.mine.setting;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextUtils;
import android.text.TextWatcher;
import android.view.View;
import android.widget.EditText;
import android.widget.Imag... | [
"230869192@qq.com"
] | 230869192@qq.com |
46c6cfdbce5762b18b024112beb2149ecb2ed3bb | 59c2be2000ebffc1dffd517a01a2cac84b6ec16d | /src/com/bluemobi/dao/ams/AmsArchivesAllDao.java | 8da73f6232e314d6b536e2c262d7b940443a95da | [] | no_license | wuxinda/bis_app | 7f67f65d725dada1134bee5003315da7396cdf32 | a115a6caa7d19f0bd320bb514192f0cedf691b57 | refs/heads/master | 2020-03-28T01:05:44.033131 | 2018-09-10T06:08:04 | 2018-09-10T06:08:04 | 147,476,565 | 2 | 0 | null | 2018-09-10T06:08:05 | 2018-09-05T07:19:12 | JavaScript | UTF-8 | Java | false | false | 4,017 | java | package com.bluemobi.dao.ams;
import java.util.List;
import java.util.Map;
import com.appcore.dao.MyBatisBaseDao;
/**
* 【档案详情表】 数据访问对象 接口
*
* @author AutoCode 309444359@qq.com
* @date 2016-11
*
*/
public interface AmsArchivesAllDao extends MyBatisBaseDao {
/**
* 获取档案操作统计数据
* @param map
... | [
"826054177@qq.com"
] | 826054177@qq.com |
f3e3a304b2fd2f35dcd653b5af2edfaf2ddfbf28 | 0e1780ddc894314dd19b3c90294057a402c4de52 | /Dynamic Programming/MaxSubarray.java | 340e5c0adf32c84a1f858c4904554f66a14d2c79 | [] | no_license | gaggudeep/codes | 397cc746dbf884d1ef81ccded13ec85e2c0a1400 | fcff9d61413ce302acc599321668c4f7e571307b | refs/heads/master | 2023-04-09T19:26:22.319158 | 2021-04-13T07:07:05 | 2021-04-13T07:07:05 | 286,741,921 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 358 | java | class MaxSubarray {
public static int maxSubArray(int[] A) {
int maxSumSoFar = A[0], maxEndingHere = A[0];
for(int i = 1 ; i < A.length ; i++)
{
maxEndingHere = Math.max(A[i], maxEndingHere + A[i]);
maxSumSoFar = Math.max(maxSumSoFar, maxEndingHere);
}
... | [
"gagandeepsinghjubbal@gmail.com"
] | gagandeepsinghjubbal@gmail.com |
8af8d79a82e4c866fa49aa0f29a4898566b57a23 | 1944dfba95ced46450e7024efcb193b67df26510 | /src/main/java/com/enginemobi/bssuite/domain/QuoteLineItem.java | f9cedf6cf1d953c0199c7fd0474949cad35b0d02 | [
"Apache-2.0"
] | permissive | gitter-badger/bssuite | d13ee568ac2a44f6080c4e4406001ff8941ce152 | c1bbd09b116eba54ee85c699538eeb8fe66b5fb9 | refs/heads/develop-0.3.x | 2021-01-19T19:22:44.549072 | 2015-11-06T08:59:50 | 2015-11-06T08:59:50 | 45,677,252 | 0 | 0 | null | 2015-11-06T11:06:21 | 2015-11-06T11:06:21 | null | UTF-8 | Java | false | false | 6,229 | java | package com.enginemobi.bssuite.domain;
import org.hibernate.annotations.Cache;
import org.hibernate.annotations.CacheConcurrencyStrategy;
import org.springframework.data.elasticsearch.annotations.Document;
import javax.persistence.*;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.HashSet;
... | [
"smaxllimit@gmail.com"
] | smaxllimit@gmail.com |
87a31cb82a12399a5ae383efcda288bdb37431d5 | e43828e54aa956f918156d2379f5bc4a0d1509c4 | /lib/common/src/main/java/study/daydayup/wolf/common/io/enums/JoinEnum.java | 5bf30eb6354d4d3c4f3db561e59e69e77d25a7e8 | [
"MIT"
] | permissive | soon14/wolf | 0d4b93e211caae72379c2cf03a0f86ab45b2f17f | 0ed026c500bc76db074bc8938b00416597d0ce3d | refs/heads/master | 2020-12-10T22:14:08.387738 | 2020-01-11T07:35:33 | 2020-01-11T07:35:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 480 | java | package study.daydayup.wolf.common.io.enums;
import lombok.Getter;
import study.daydayup.wolf.common.lang.enums.CodeBasedEnum;
/**
* study.daydayup.wolf.common.io.db
*
* @author Wingle
* @since 2019/11/25 9:10 下午
**/
@Getter
public enum JoinEnum implements CodeBasedEnum {
LEFT(2, "left"),
RIGHT(1, "right... | [
"winglechen@gmail.com"
] | winglechen@gmail.com |
8d51b870e77d52180707dfa135516484e1f0b90b | 506a4656e73e77b7774248799fa508af9a23fa8a | /Android/app/src/main/java/com/oort/bunny/demoyu/view/particle/ShapeColor.java | 4f97d14aef476d07e3072600498552ea11bed0c5 | [
"Apache-2.0"
] | permissive | RockySteveJobs/ParticleView | 134dbff34ae3d06b5292c74b7d037f181c59709c | 7bb9f7e7b9be3cd7a90650759d583db7098a0f5c | refs/heads/master | 2021-01-02T08:22:47.026317 | 2017-05-08T04:34:19 | 2017-05-08T04:34:19 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,147 | java | package com.oort.bunny.demoyu.view.particle;
import android.graphics.LinearGradient;
import android.graphics.PointF;
import android.graphics.Shader;
/**
* Created by bunny on 2017/4/18.
* 颜色和形状
*/
public class ShapeColor {
private Shader shader;//渐变色
private SHAPE shape;
public void setShader(Shade... | [
"nokia.yao@qq.com"
] | nokia.yao@qq.com |
0b7973329840d6a6c591c3ced3dd39f5b5c0486c | cf63f0d3e6c239c48175cf343c2ad6527ad10eeb | /MillionSongAnalysis/FirstMapper.java | 10ce8fe0c0b50971b347d148ec01ac79da338c30 | [] | no_license | skmishra5/Analyzing-The-Million-Song-Dataset-Using-MapReduce | fea325feb6bb1696b0f7a23bb827ac97123dd112 | e9bc476c880b88739390cc3052578651ec81d9b1 | refs/heads/master | 2021-08-30T12:49:00.258560 | 2017-12-18T02:00:58 | 2017-12-18T02:00:58 | 114,498,938 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,508 | java | package MillionSongAnalysis;
import java.io.IOException;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.Mapper.Context;
// The most commonly tagged genre for each artist
... | [
"sitakanta.mishra@gmail.com"
] | sitakanta.mishra@gmail.com |
f5e2f1427f0b4204230765272808e2441109d55b | 967984ad8996ca5690e11e8a1d1f15a843e735e8 | /app/src/main/java/com/jsti/pile/collector/widgets/NavigationBar.java | 93e9f122b205a6ba2a8e568c10fc38ee72afbb8c | [] | no_license | liang979zhang/PileCollectorNew | d74ff69fd4767986f35f804b77de8912f5d308de | 381ab4f7a0c4f217bd776388f6f45a1fd53932ad | refs/heads/master | 2020-04-11T10:28:42.869838 | 2018-12-14T01:36:41 | 2018-12-14T01:36:41 | 161,716,088 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,761 | java | package com.jsti.pile.collector.widgets;
import com.jsti.pile.collector.R;
import android.content.Context;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;... | [
"zhangdl@yemast.com"
] | zhangdl@yemast.com |
d5634dedd267d25f41cc912a90c6fb96138d275f | cfaa57238cbfe4c58bbdc44028ca4399ca55fc85 | /src/main/java/controllers/player/PlayerPlayerController.java | 37ee7aa5199c1aeea9aa791e8ffb06ef26427917 | [] | no_license | GeekCriiz/Nonsense | e37f6126c504b1268b4bf0ea3422c6d6395adf32 | 19db65d15477334da0defb6d8188518cb2c92f92 | refs/heads/master | 2021-01-23T12:27:15.115355 | 2016-07-13T17:13:47 | 2016-07-13T17:13:47 | 63,265,856 | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 3,727 | java | package controllers.player;
import java.util.ArrayList;
import java.util.Collection;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.MediaType;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
import org.spring... | [
"geekcriiz@gmail.com"
] | geekcriiz@gmail.com |
608046ffa8f20f1c8c7880f51f6237bebb04650f | 13c502784d3520fe1205389487f6ff7c91732846 | /open-feign/src/main/java/com/yunhui/openfeign/interfaces/OpenFeignService.java | b762288f9533402beb525d7cecd834d2c59be977 | [] | no_license | kingrocy/javaer | d5c6fc4de124c8a2a4c9a3b6267a83e7e7e7d66a | 3e3f79a59a80096d1676857f628e1826952342bc | refs/heads/master | 2022-10-07T09:30:36.490423 | 2021-03-04T08:11:30 | 2021-03-04T08:11:30 | 251,542,808 | 0 | 0 | null | 2022-10-04T23:57:21 | 2020-03-31T08:26:42 | Java | UTF-8 | Java | false | false | 570 | java | package com.yunhui.openfeign.interfaces;
import com.yunhui.openfeign.bean.User;
import feign.Body;
import feign.Headers;
import feign.Param;
import feign.RequestLine;
/**
* @Date : 2019-07-10 15:14
* @Desc :
*/
public interface OpenFeignService {
@RequestLine("GET /user/{id}")
User getUser(@Param("id") L... | [
"dushaoyun@souche.com"
] | dushaoyun@souche.com |
b5a96167d1aa16eed26ed9cc5b134579fd9255a8 | 788e4590594da9ffd52f10a77e372ac3b6bf0610 | /src/main/java/net/beaconpe/jraklib/protocol/EncapsulatedPacket.java | 74966a85891d1b7de51f5df6c9614c72ee8b983b | [] | no_license | yungtechboy1/DiamondCore | 8a65c7eb737133d866b55aeaa8191574819716b7 | 8dc0d69c9271b5ee59dfb74c1a7e566f34c6fe41 | refs/heads/master | 2021-08-08T03:09:15.520099 | 2015-07-07T23:00:09 | 2015-07-07T23:00:09 | 38,969,643 | 4 | 8 | null | 2021-06-14T02:27:46 | 2015-07-12T16:52:33 | Java | UTF-8 | Java | false | false | 5,271 | java | /*
JRakLib networking library.
This software is not affiliated with RakNet or Jenkins Software LLC.
This software is a port of PocketMine/RakLib <https://github.com/PocketMine/RakLib>.
All credit goes to the PocketMine Project (http://pocketmine.net)
Copyright (C) 2015 BlockServerProject & PocketMine t... | [
"trent0308@live.com"
] | trent0308@live.com |
8402fc9a87cc2c238679ab16a18490c17fce320f | bc278325e139829c62e6b0940126141384a02d67 | /src/OOP/Them2_11/ExceptionDemo/InvalidAgeException.java | f0c27292b07934a2365ef0e377f829b86b006d86 | [] | no_license | yuriy-vin/lesson1 | e77f07427bc955c66bbcb9e128c40c09d1d29c54 | 7d2377f279ec8ffd91405c0348130d93c7c47351 | refs/heads/master | 2020-12-30T12:00:04.991925 | 2017-05-16T17:35:56 | 2017-05-16T17:36:17 | 91,482,422 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 212 | java | package OOP.Them2_11.ExceptionDemo;
/**
* Created by Yuriy on 12.03.2017.
*/
public class InvalidAgeException extends RuntimeException {
public String getMessage() {
return "Invalid Age!";
}
}
| [
"smashnjuk@ukr.net"
] | smashnjuk@ukr.net |
64e1e124631af093caad73a1ce3f11e224265de5 | 3fc908e4b99cb8bb23ce78cdd69ecee37c3cfadb | /diorite-core/src/main/java/org/diorite/impl/entity/IGuardian.java | 08a2e17f469130254931025bd75eb4540b884e07 | [
"MIT"
] | permissive | XakepSDK/Diorite | 2bb97fb3f8f70e44dad4a4e1c67bd4c66802f9e7 | d69adecfbe8da9c1d492e29349f7b43e0e0c4b29 | refs/heads/master | 2021-01-20T05:41:29.584156 | 2016-05-28T19:45:51 | 2016-05-28T19:45:51 | 59,948,440 | 0 | 1 | null | 2016-05-29T14:52:57 | 2016-05-29T14:52:54 | null | UTF-8 | Java | false | false | 1,930 | java | /*
* The MIT License (MIT)
*
* Copyright (c) 2016. Diorite (by Bartłomiej Mazur (aka GotoFinal))
*
* 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 withou... | [
"bartlomiejkmazur@gmail.com"
] | bartlomiejkmazur@gmail.com |
302240542e10c31de3fcac0410878f03bb29fe01 | c419943d727e3b812cbaaef4b81767d45a400b79 | /Mobile platform development/learnAndroid/FirstLineCode2/MediaPlay/app/src/androidTest/java/com/example/he/mediaplay/ApplicationTest.java | 9f2e90970f6f912e95246d2ad515db043e402a52 | [] | no_license | HeziLiu/Little-rookie | cf27e0168a8e9e025c858244d78be8b24f2fa27a | 964bd6b191a3864a4c6c4430a85d17bb16920581 | refs/heads/master | 2022-01-17T03:48:12.194375 | 2019-06-02T07:47:10 | 2019-06-02T07:47:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 355 | java | package com.example.he.mediaplay;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
... | [
"7891444@qq.com"
] | 7891444@qq.com |
22c708586ae6b0bcaacd80738342ef6f1645ff2f | f646f688f02f676dcc5c70df3f33da99ad61171c | /Wizard Game/src/Handler.java | cfbe88f44e99915222a4ae0787100c156c5c11bf | [] | no_license | RegJoshua/Wizard-Game | ba5d35bf799cfbd00058c29cd11bead1e6bd06ef | c62a9b7d48093e14b541c737b0b6ebb27222b7ce | refs/heads/master | 2021-04-30T06:42:19.256523 | 2018-02-14T00:00:46 | 2018-02-14T00:00:46 | 121,451,302 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,165 | java | import java.awt.Graphics;
import java.util.LinkedList;
public class Handler {
LinkedList<GameObject> object = new LinkedList<GameObject>();
private boolean up = false, down = false, right = false, left = false;
public void tick(){
for(int i = 0; i < object.size(); i++){
GameObject tempObject = ... | [
"noreply@github.com"
] | RegJoshua.noreply@github.com |
d57ac1e3477597f31d7a17b6be47cb08e5a40737 | 759515839162ba7d28bd4b12abdedd388210f860 | /app/src/androidTest/java/com/example/a41615045/simulacro/ApplicationTest.java | 3f5785a81058ae76feaae79de02d363f9724a9bd | [] | no_license | julian98/LOOOOOOOOL | f9b4ebf795ce0c6cf22a9e16ff54bbcd656337af | 2f0cd2741b6499cb7b3c04d65098eab743919d1e | refs/heads/master | 2021-01-13T13:40:17.890175 | 2016-12-13T15:21:08 | 2016-12-13T15:21:08 | 76,370,752 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 362 | java | package com.example.a41615045.simulacro;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {... | [
"41615045@ort"
] | 41615045@ort |
f4386bdab9fcfd38dbb2f569e3dac989d775e21c | 1cc3205fd7bcc83be408eab2eed4b87a1a0ad115 | /src/trees/TestIfABinaryTreeIsHeightBalanced.java | 77d4f91f9ff030961d2e2199cd61e1906b8e2018 | [] | no_license | sunny-sunwoo/b2b-algo | 1c7787173941a8202139b63b54a75ad874e090d3 | 7b0367cc8687185f0ec1601b3ccd3bb55c143053 | refs/heads/master | 2023-01-10T18:51:53.092653 | 2020-11-16T15:53:44 | 2020-11-16T15:53:44 | 301,651,176 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,505 | java | package trees;
public class TestIfABinaryTreeIsHeightBalanced {
public static boolean isBalanced(TreeNode root) {
return getData(root).balance;
}
private static Data getData(TreeNode node) {
if (node == null) {
return new Data(true, -1);
}
Data leftData = getData(node.left);
if (leftData.balance == ... | [
"jeesub.brad.lee@gmail.com"
] | jeesub.brad.lee@gmail.com |
a821ba9ff8d42d4e91032fd17f9dc6b17ffa5534 | ab0199fcef3c065d4fe66624d6b26d4df50efc43 | /src/TYUT/network/LoginAgain.java | f44598835193064020b823bd229fd657ba58d580 | [
"Apache-2.0"
] | permissive | sunduan/TYUTApp | 28c5940c63bda075de24234c5fb453027184550f | 44e9837389d8308154519e335524314facf4b98b | refs/heads/master | 2021-01-21T04:48:28.634403 | 2016-06-05T18:01:16 | 2016-06-05T18:01:16 | 54,626,287 | 1 | 1 | null | null | null | null | GB18030 | Java | false | false | 1,653 | java | package TYUT.network;
import java.util.ArrayList;
import org.apache.http.message.BasicNameValuePair;
import org.json.JSONException;
import org.json.JSONObject;
import TYUT.database.Dbconnetc;
import TYUT.tmp.Tmp;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDat... | [
"2435703066@qq.com"
] | 2435703066@qq.com |
6b4d62de5a094b6a41a218c0eeabf56d2df4bf3e | bb207653f41bbcc92a8b7ebb4f4ea86908f59b86 | /Nowhere/src/model/AI/Core.java | 6cd3d2b4dcc0961b58f5949398bbb86966c3f0c7 | [] | no_license | Thundurus/Nowhere | 1f3b5abbbba4c1557b7de19dcd716ea60efb7267 | 2f280e971e8be41dfe6d02eef42806ebf2a5058d | refs/heads/master | 2020-03-16T16:25:40.312733 | 2019-03-05T22:25:08 | 2019-03-05T22:25:08 | 132,786,950 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 453 | java | package model.AI;
import java.util.ArrayList;
import java.util.Map;
import model.Character;
import model.NPC;
import model.Skill;
import model.SkillFlags;
import model.Skills.*;
public class Core
{
public static Map.Entry<Skill, ArrayList<Object>> decideAction(NPC npc)
{
ArrayList<Object> target = new Arra... | [
"marcus.moss@live.com"
] | marcus.moss@live.com |
6eaecbbe294223b80a0bf48b6019326773240990 | 14881c059dd7163c9788d9fbdfd0f87f451895c1 | /dropwizard/tasklist-service/src/main/java/com/bjedrzejewski/tasklistservice/TaskListPost.java | d608c68214459dd691bf33ab5b8047af49942231 | [] | no_license | bsdshell/java | 74cd6c74024e81c04885b70578a5640580a50de2 | a8749fc12f3dee96da7d79c89ea8aae7a063c575 | refs/heads/master | 2021-01-23T13:54:21.033184 | 2017-08-31T17:51:24 | 2017-08-31T17:51:24 | 7,270,545 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 621 | java | package com.bjedrzejewski.tasklistservice;
import com.google.common.base.Optional;
import com.codahale.metrics.annotation.Timed;
import com.google.common.io.CharStreams;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.... | [
"monosurface@gmail.com"
] | monosurface@gmail.com |
643b84a732dd361ff83d8b8993bdd1aab6b33e61 | 23574e36203a1ad85029c59079ec0f24666d41d7 | /src/main/java/br/com/felippeneves/abstract_factory/car_service/services/CarService.java | 75b160db0b5fa65029666ad7715641f51496f67d | [] | no_license | felippeneves/creational-patterns | 9a7246a7d85e27d132122f08641c44ef25185aa8 | 2e9c13f0ff1cfc21d74e105220e1a8f16206f6d1 | refs/heads/master | 2023-08-14T12:41:53.664128 | 2021-10-17T17:13:51 | 2021-10-17T17:13:51 | 417,646,544 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 176 | java | package br.com.felippeneves.abstract_factory.car_service.services;
public interface CarService extends Service {
void save(String model);
void update(String newModel);
}
| [
"felippenevesmonteiro@gmail.com"
] | felippenevesmonteiro@gmail.com |
990e215f861ea6bafa78f676235e0b8be883a273 | 45c8f4785305127c9e3b350291c800d5e30f24d5 | /app/src/main/java/com/example/jacob/android_sprint1_challenge/EditActivity.java | 74306dd77778466edb9e34efef3710fd27d13704 | [] | no_license | jbseppanen/Android_Sprint1_Challenge | 973a55b0594e4b9cd7a2ce4b26bd06056dfe5e40 | cfc19cf8ffcc7b0b508499dc48f72ca093f24768 | refs/heads/master | 2020-04-05T13:11:07.338045 | 2018-11-10T01:12:10 | 2018-11-10T01:12:10 | 156,887,117 | 0 | 0 | null | 2018-11-09T16:15:30 | 2018-11-09T16:15:29 | null | UTF-8 | Java | false | false | 2,540 | java | package com.example.jacob.android_sprint1_challenge;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
import android.widget... | [
"jbseppanen@gmail.com"
] | jbseppanen@gmail.com |
908ae5f69aa16545a17313056850fba3888ceee6 | e631409fc701bc3966a51868ce859cb0b590cac9 | /app/src/main/java/com/android/cameraclone/stats/Camera2FaceProxy.java | d7335aaf048aa172e505f34219104def9b135c2f | [] | no_license | abhinay100/cameraApp | de22d6df9636baf76851220fe1168ddc236a784c | f03c2b51e52aa1c8a552a0b1315951fbf37b939b | refs/heads/master | 2021-01-23T19:25:45.232844 | 2017-09-22T06:52:46 | 2017-09-22T06:52:46 | 102,819,753 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,370 | java | /*
* Copyright (C) 2015 The Android Open Source Project
*
* 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 app... | [
"abhinay212@gmail.com"
] | abhinay212@gmail.com |
2a733d3c4a58f36b128287a999f9c8e206055536 | 536c6ae32642863b5d8e695d963ee52bcabe1942 | /AndroidShaders/src/graphics/shaders/Object3D.java | 0c5c9c04ddeab1b50e76f09aaeba03e298510fb2 | [] | no_license | campeloal/monografia_opengles | 532ef14f8ba892cdb2802d6ad6b55975d402ec85 | b7ecf4ec959854d16fb5bd0cd3530373f0e761dc | refs/heads/master | 2020-05-18T09:19:04.504959 | 2014-04-29T04:29:00 | 2014-04-29T04:29:00 | 16,750,957 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,420 | java | package graphics.shaders;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.FloatBuffer;
import java.nio.ShortBuffer;
import java.util.ArrayList;
import java.util.StringTokenizer;
import android.content.C... | [
"chevalier.beaumont@gmail.com"
] | chevalier.beaumont@gmail.com |
4203a1c4dc97851f03bdf80b8121a68a623a3136 | 050c1e416d93dcd0d7dff0ad29c699824b5a427b | /android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/bumptech/glide/R.java | b5399a608fa27bc516c757e0368286af0b1bbde5 | [] | no_license | redwin-0007/BMI | 0f56e374e4bf6f35b0afe4d0aa153587638e7df2 | bb9cf6a8e97a82e9015ea2981009797ab74c4d83 | refs/heads/master | 2022-12-21T06:38:46.176935 | 2020-10-03T05:28:05 | 2020-10-03T05:28:05 | 300,801,410 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,595 | 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 com.bumptech.glide;
public final class R {
private R() {}
public static final class attr {
private attr() {}
... | [
"redwin0007@gmail.com"
] | redwin0007@gmail.com |
ea807525ad453efab0ee4017e56747fe85c7635d | e33a14ea3bfc98e4d362a7b6ae2e2f0850834f06 | /app/src/main/java/tech/linjiang/android/pandora/db/KeyDatabase.java | 85665e2b12af2dd46bd6301f5fd8d6816a3b85c1 | [
"Apache-2.0"
] | permissive | morristech/pandora | 139c2d80386285b9203b141aa926cd78a91f9d4d | f85fbbe67b555d531b37c86da9c7513624eda60a | refs/heads/master | 2020-04-04T08:33:07.715399 | 2018-10-31T02:23:40 | 2018-10-31T02:23:40 | 155,785,557 | 1 | 0 | Apache-2.0 | 2018-11-01T22:53:43 | 2018-11-01T22:53:42 | null | UTF-8 | Java | false | false | 1,409 | java | package tech.linjiang.android.pandora.db;
import android.arch.persistence.db.SupportSQLiteDatabase;
import android.arch.persistence.room.Database;
import android.arch.persistence.room.Room;
import android.arch.persistence.room.RoomDatabase;
import android.arch.persistence.room.migration.Migration;
import android.suppo... | [
"y837979117@gmail.com"
] | y837979117@gmail.com |
2bb6f8b0a89c71656e688a95bc01c792183031ca | d37351bd644f7fa08e51bfd1d7fe08dbee55c591 | /echo-model/src/main/java/com/netflix/spinnaker/echo/model/trigger/ArtifactoryEvent.java | 10eeb3f40f2b47628cf49b8e7deab6ef447e3c54 | [
"Apache-2.0"
] | permissive | spinnaker/echo | cca4f2493498ed37016f8b826f4816d69b272ed9 | c24b570673fc0f441a65fb69f6936027905c686d | refs/heads/master | 2023-08-31T02:10:15.238645 | 2023-08-29T18:12:32 | 2023-08-29T18:12:32 | 21,145,185 | 74 | 849 | Apache-2.0 | 2023-09-07T17:49:14 | 2014-06-23T22:59:57 | Java | UTF-8 | Java | false | false | 1,192 | java | /*
* Copyright 2019 Pivotal, Inc.
*
* 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 or agreed to... | [
"jkschneider@gmail.com"
] | jkschneider@gmail.com |
294b0d6e29f2c5f56f5c3b2d8328cad3e2734d65 | c890655375bdfdaa52773405886e0673759b74bb | /Examples/Test_Q3.java | c137d434ec919fbee644130a269b3c0145792237 | [] | no_license | LeviScott13/CS-1301 | 0113a418f347fc21ca3c90e0f711c9b1bc8ac8bd | 9df84014f3134bcb794f0e64749324c10f9c585d | refs/heads/master | 2020-08-02T00:41:29.781455 | 2019-09-28T03:39:09 | 2019-09-28T03:39:09 | 211,180,075 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 437 | java | public class Test_Q3
{
public static void main (String [] args)
{
Object [] objects = {new Tiger(), new Chicken(), new Apple()};
for (int i = i; i < objects.length; i++)
{
if (objects[i] instanceof Edible)
System.out.println (((Edible)objects[i]).howToEat());
... | [
"levi.sutton2013@gmail.com"
] | levi.sutton2013@gmail.com |
f32ca8126269751d07d0c1b4916c1ab63a054e3e | 1db13a2d49f08042e6c9a649da35222a0561d64e | /alogic-dbcp/src/main/java/com/logicbus/dbcp/sql/RowListener.java | a92bf1fa6daa6e846e5855c83dfcabcde0eee0ae | [] | no_license | ungfeng/alogic | 50ac39cbe0272f72bb598b71b0b26c9110064ded | 3db38a3e6a426072a93e402832abf5cde7e37102 | refs/heads/master | 2021-01-23T04:53:04.228241 | 2014-11-11T08:45:12 | 2014-11-11T08:45:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 673 | java | package com.logicbus.dbcp.sql;
/**
* 数据记录监听器
*
* @author duanyy
* @since 1.2.5
*
*/
public interface RowListener {
/**
* 数据行开始
* @param column 列数
* @return 数据行对象(由具体实现去定)
*/
public Object rowStart(int column);
/**
* 发现数据列
* @param cookies 数据行对象
* @param columnIndex 列索引(以0开始)
* @param name ... | [
"hmyyduan@gmail.com"
] | hmyyduan@gmail.com |
1a2227589f5687596167ad9a553ec1fd87d3998e | 17dc1db25e28195c1ee40f2972f562b68845f1b1 | /quicktfs.apiclients.restapi/src/main/java/quicktfs/apiclients/restapi/RestClient.java | 5125bbc55c4cee04b48ad9a692c3fe8a7d7123eb | [] | no_license | Chips100/QuickTFS | a3eb2d126e06b5eb7e725e9b309e1cd8fbac3ff0 | 72d8131a932fb3e9579ede9b4c73fe58b860dc2d | refs/heads/master | 2020-03-08T11:06:30.496106 | 2018-06-16T07:13:29 | 2018-06-16T07:13:29 | 128,088,972 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,271 | java | package quicktfs.apiclients.restapi;
import quicktfs.apiclients.contracts.exceptions.ApiAccessException;
import quicktfs.apiclients.restapi.authentication.AuthenticatedIdentity;
/**
* Client for accessing a REST interface.
*/
public interface RestClient {
/**
* Executes a GET call to the REST interface.
... | [
"dennis.janiak@googlemail.com"
] | dennis.janiak@googlemail.com |
e9de14223197d64c081676c734da83b260dc5b7f | ff041d34bffa97c29defa4c8e241694f36a6111b | /src/test/java/ChatServerTest.java | c7a2af32f2b1593c657bf8548936389074d8de7e | [] | no_license | dev-null-org/ChatServerAPI | 375177949ff462501c9109e9945b00110e1d943b | 5dca9579feed7416c6006d6c7fb297627db6475b | refs/heads/master | 2023-03-21T20:55:13.832613 | 2021-03-09T08:48:24 | 2021-03-09T08:48:24 | 341,219,285 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,434 | java | import main.Main;
import main.chat.service.ChatRoomService;
import main.chat.service.MessageService;
import main.chat.service.UserService;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoc... | [
"martinkos007@gmail.com"
] | martinkos007@gmail.com |
ab4d3d64ed365825d922d1fab298235d4300b86f | de27d94d512fc07d404f682468bbcfab4bbe516a | /Chapter3/Chapter3-ExternalValues/src/main/java/com/chohee/ExpressiveConfig.java | 602d68c658769344101f356274b7729d6bf7cfe1 | [] | no_license | choheekim/SpringInAction-Examples | 02826c0030edabd50c055a6329c1628581219d44 | bc20d51a0eeeb13475dff25b4925dad088cbdc5d | refs/heads/master | 2021-01-17T20:12:35.521485 | 2016-09-12T21:27:17 | 2016-09-12T21:27:17 | 66,697,710 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 968 | java | package com.chohee;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.context.support.PropertySourcesPla... | [
"kch5559@gmail.com"
] | kch5559@gmail.com |
3780c008a62183f571b4eb7d8824d81dc7d11cd0 | edae9bb9980176d85e4f0943896a995547b00dfe | /src/main/java/com/covid/relief/ui/CityAndResource.java | 298739c4ab41583555f9fdd6d2189de31a508a51 | [] | no_license | neeraj7/covid-relief-resources | ecb9ac8bc6dc634fd70bc8bc025e3a71d13e2f82 | 5966023ff2c792c5de5f1541f1efc22a4f2d891e | refs/heads/master | 2023-05-12T04:04:14.348525 | 2023-04-30T09:18:06 | 2023-04-30T09:18:06 | 362,869,001 | 0 | 0 | null | 2023-04-30T08:45:25 | 2021-04-29T15:48:06 | Java | UTF-8 | Java | false | false | 1,023 | java | //package com.covid.relief.ui;
//
//import java.util.stream.Collectors;
//
//import com.covid.relief.init.AppInitializer;
//import com.vaadin.flow.component.button.Button;
//import com.vaadin.flow.component.button.ButtonVariant;
//import com.vaadin.flow.component.combobox.ComboBox;
//import com.vaadin.flow.component.fo... | [
"kneeraj508@gmail.com"
] | kneeraj508@gmail.com |
8b2843c44af37f5297422d0103a2a6e9957d528b | 8f1f90adfdc6dbc9f09544097a197d3e69f98ae1 | /src/main/java/com/protest/protesting/config/SecurityConfigV2.java | c4ea0aa175009e874ac233f7e557377006a55813 | [] | no_license | fantman12/protesting-production | 66581ce31ca1f00de23bbeb6218c7e1bfe181223 | adb2350b3590d920d876b24767a4d76951dfbec7 | refs/heads/master | 2023-07-22T09:37:53.455028 | 2020-09-03T07:16:20 | 2020-09-03T07:16:20 | 292,184,050 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,950 | java | package com.protest.protesting.config;
import com.protest.protesting.filter.JwtAuthenticationFilter;
//import com.protest.protesting.filter.JwtAuthenticationFilterV2;
import com.protest.protesting.service.UserService;
import com.protest.protesting.utils.JwtUtils;
import lombok.RequiredArgsConstructor;
import org.spri... | [
"fantman12@gmail.com"
] | fantman12@gmail.com |
3a78ba76773418676881828805d957f6d1a38db2 | dd871c4a556245cc18125bdd52b3d360068a9add | /src/main/java/ir/ac/aut/hesabgar_group/request/CreatingGroupRequest.java | c03f83bd3884e5dc554146d167e6f91ac9214de6 | [] | no_license | hesamrezaeii/Hesabgar_group | 4ecc8f7e23135db56e3de139bfb05b32a8e42b99 | ac65065d5a9c2fe95a3239b7cda718e1aa121d80 | refs/heads/main | 2023-07-24T23:47:36.618326 | 2021-09-08T17:44:38 | 2021-09-08T17:44:38 | 386,555,524 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 440 | java | package ir.ac.aut.hesabgar_group.request;
public class CreatingGroupRequest {
private String userId;
private String groupName;
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getGroupName() {
... | [
"hesamrezaei77@gmail.com"
] | hesamrezaei77@gmail.com |
f5c1fdc28959b4e1ffbad96b6c67894d2908f405 | 48e575a39a9dfd52ce395e599010d1a5ee052c80 | /chapter12/src/pk13/Dog.java | 1c99c06ac69206ae71af4d4f3cd660650344724f | [] | no_license | ksw1212/ksw12 | 08bddd3a69e66d66e83e7f5189a26d75eed9f1e1 | 44f5f6e5d58a72d5be7503f20d249a45462542b4 | refs/heads/master | 2023-06-10T17:57:48.060086 | 2021-07-06T00:32:25 | 2021-07-06T00:32:25 | 379,836,093 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 194 | java | package pk13;
public class Dog extends Animal{
public Dog() {
this.kind="포유류";
System.out.println(kind);
}
@Override
public void sound() {
System.out.println("멍멍");
}
}
| [
"rlatn@DESKTOP-KMHIAH6"
] | rlatn@DESKTOP-KMHIAH6 |
6af0716fa61240da21322215cb7dd9583454b6e3 | 148eac61bddad397e68a2ea893ab58baee8eccb5 | /app/src/androidTest/java/com/brendler/joe/sensortesting/ExampleInstrumentedTest.java | 29c27a0f23a8275b2e3c36a0bf2a37bff6e2ac7d | [] | no_license | JosephBrendler/MultiSensor | 493ea5d2cdcd0518054c4874a265d51559f48d5c | 0a8443278514a2f861fd37ea93992d9af84125b6 | refs/heads/master | 2022-12-21T07:07:08.450398 | 2022-12-16T21:09:16 | 2022-12-16T21:09:16 | 165,321,929 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 761 | java | package com.brendler.joe.sensortesting;
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 ... | [
"joseph.brendler@googlemail.com"
] | joseph.brendler@googlemail.com |
ddf68ad31abd38a6b23ba6d93b2a4ffb89b96ccc | 90ea0162027a292b3477bee5827e00ebbf363ed0 | /ultimateandroidui/src/main/java/com/marshalchen/common/uimodule/niftymodaldialogeffects/NiftyDialogBuilder.java | 8e993946d52cb7c377ca21d3e0fed358f3c3c8dc | [] | no_license | caoxiaoliang/Yhb-2.0 | 120567ff7b33774b5dfdc765decdfbf09144fef9 | f36e894392e838f0d8a2b60de369b9ad50c2efdd | refs/heads/master | 2021-01-18T00:10:46.274969 | 2015-06-22T00:33:58 | 2015-06-22T00:33:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,386 | java | package com.marshalchen.common.uimodule.niftymodaldialogeffects;
import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.graphics.Color;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup... | [
"871999566@qq.com"
] | 871999566@qq.com |
02f8f33c557d191a4e014e48279e0f43dfefd1c9 | 2f3c7964db7a15e62cdf7c25e5694567e5190da0 | /src/data_structure/dynamic_array/ArrayList_Generic.java | 80d6210a7a3e9d6223d5201fe17d002809078df4 | [] | no_license | HunLv/DataStructure_Mj | b9bcccf46f4529fb1eb17e15e7bd84b8201aa7c9 | bfb4c00708bf3ebb7c788415990406c9e6330974 | refs/heads/master | 2022-12-27T18:10:33.544170 | 2020-10-17T08:39:09 | 2020-10-17T08:39:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,564 | java | package data_structure.dynamic_array;
/**
* @program: DataStructure_Mj
* @description: 动态数组
* @author: MH
* @create: 2020-06-20 20:43
**/
public class ArrayList_Generic<E> {
private int size; // 当前数目
private E[] elements; // 所有元素
private static final int DEFAULT_CAPCITY = 2; // 默认容量
p... | [
"2651016635@qq.com"
] | 2651016635@qq.com |
6809037faf98ef7be3939f4f2f15589586ed4463 | 710a35b74c464fb0545c7b61b4cecf4b838b28d1 | /app/src/main/java/com/example/yandre/biontest/ui/calculator/CalculatorFragment.java | cc17399ad476bd1e488fc628e69021c320f2ff1d | [] | no_license | YandreNagorniy/Biontest | e31656937d82fb5f443cab6bac1f9d702aec7496 | 01ab7df05d1c47975e746614b4a7d0f248a8c163 | refs/heads/master | 2020-04-16T20:54:37.825499 | 2018-12-31T11:39:23 | 2018-12-31T11:39:23 | 165,909,658 | 2 | 0 | null | 2019-01-20T19:02:21 | 2019-01-15T19:21:29 | Java | UTF-8 | Java | false | false | 953 | java | package com.example.yandre.biontest.ui.calculator;
import android.databinding.DataBindingUtil;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.support.v7.widget.LinearLayoutManager;
import android.vi... | [
"yandre00111@gmail.com"
] | yandre00111@gmail.com |
3e9ca5a25cd712e236847a9c636428b13536519c | 8589b88c863933d24039f21e644576f793f76115 | /org.blackbox.execution.parent/org.blackbox.execution.routing/src/main/java/org/blackbox/execution/routing/c3/model/Output.java | 050702841a120f066c7856e7d05eae11d1f34620 | [] | no_license | Falzi/Blackbox-Execution | 07e79f2b641b28cbb11948a50e6293104079951c | 13bc3d76d471c45551eb974e8edc3237617f4b9a | refs/heads/master | 2016-09-05T10:06:05.866892 | 2014-01-24T22:24:29 | 2014-01-24T22:25:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 111 | java | package org.blackbox.execution.routing.c3.model;
public class Output {
public double[] array;
}
| [
"elise.falzi@wanadoo.fr"
] | elise.falzi@wanadoo.fr |
7811ac8492342c46397a3ca80921c96513ae3e09 | 3464004c6217bb20907a3ab1372c22635809b011 | /jms-webservice/jms-webservice-store/src/main/java/com/jms/service/store/CostCenterService.java | 61b5e9a5d4deb70361be67a163c079a5fad06c20 | [] | no_license | jmsCompany/jms-server1 | d675385c22566f6c3b2108aef36d44508924fe95 | 50bef61d1a8929e5d5e71ec4994b23eef9c241ef | refs/heads/master | 2021-01-19T09:29:30.420778 | 2017-08-29T07:03:21 | 2017-08-29T07:03:21 | 87,761,894 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,222 | java | package com.jms.service.store;
import java.util.ArrayList;
import java.util.List;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.anno... | [
"h-t-ren@icloud.com"
] | h-t-ren@icloud.com |
d4551e580c2a5306096d485c0a118ee6321a8768 | f2572433519cf82e981adf972a5b0d93aaa9bf5a | /src/main/java/com/albion/core/ListNode.java | 77d625e8454baf3a6acd78da26dcf1d7bbda6376 | [] | no_license | KyleLearnedThis/CodingChallenges | eda0639387c20ecbe4a1328fb64b45a8d3863721 | 3933ab1c1e1445d1c78e77818cbc60d696c68f6b | refs/heads/master | 2021-09-14T07:02:49.683825 | 2017-10-11T03:55:24 | 2017-10-11T03:55:24 | 77,719,000 | 0 | 0 | null | 2017-10-11T03:55:25 | 2016-12-31T01:16:50 | Java | UTF-8 | Java | false | false | 177 | java | package com.albion.core;
public class ListNode {
public int val;
public ListNode next;
public ListNode(int x) {
val = x;
next = null;
}
} | [
"kyle.learned.this@gmail.com"
] | kyle.learned.this@gmail.com |
bf1d8561669f7eaf69b7f807dc92615dd308fd69 | c1d6a9ec1e6fc769faf61f5970d181e9aa98a0ac | /app/src/main/java/com/winklix/indu/gooni/imageslider/FlipperAdapter.java | 70369b7dbb139b878acfb108a3a946bc5ed02376 | [] | no_license | funnynikit/Ecommerce-App | a2394d38ad0fc13e907f05b04602ce249b4405f5 | fa5e884304457cf0afde2ffef8797871286849be | refs/heads/master | 2020-04-01T21:22:34.635536 | 2018-10-18T16:15:36 | 2018-10-18T16:15:36 | 153,652,282 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,589 | java | package com.winklix.indu.gooni.imageslider;
import android.content.Context;
import android.support.v4.view.PagerAdapter;
import android.view.View;
import android.view.ViewGroup;
import java.util.ArrayList;
class FlipperAdapter extends PagerAdapter {
private Context context;
private ArrayList<FlipperView> f... | [
"kumar.nikit1@gmail.com"
] | kumar.nikit1@gmail.com |
f1d0b81a9a563def188705c43cd6846184a3c5d3 | 24d8cf871b092b2d60fc85d5320e1bc761a7cbe2 | /iText/rev2818-4022/left-trunk-4022/core/com/lowagie/text/pdf/fonts/cmaps/CMap.java | a3b87084df79c54c4388a3cb49f47ee2cf1475aa | [] | no_license | joliebig/featurehouse_fstmerge_examples | af1b963537839d13e834f829cf51f8ad5e6ffe76 | 1a99c1788f0eb9f1e5d8c2ced3892d00cd9449ad | refs/heads/master | 2016-09-05T10:24:50.974902 | 2013-03-28T16:28:47 | 2013-03-28T16:28:47 | 9,080,611 | 3 | 2 | null | null | null | null | UTF-8 | Java | false | false | 1,993 | java |
package com.lowagie.text.pdf.fonts.cmaps;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class CMap
{
private List codeSpaceRanges = new ArrayList();
private Map singleByteMappings = new HashMap();
private Map double... | [
"joliebig@fim.uni-passau.de"
] | joliebig@fim.uni-passau.de |
e86a0248bd9ba67f911bfb8eb3bb1c959d663e8c | f5ce1cc9e0f18c15ba37b497ce7ab0e5e4746682 | /app/src/main/java/com/example/admin/exercise/data/local/db/DbHelper.java | b075ba0c2a62c153d43ab422aa43a5d67579cb75 | [] | no_license | davran312/mvvmTestingProjetc | a22ab6c7a2d71c397a76463aefc41b88a7619c3b | 5b30b8aa1503c712091ff4b4ee3ebffe1bec8c76 | refs/heads/master | 2020-03-30T15:58:53.556866 | 2018-10-03T09:25:02 | 2018-10-03T09:25:02 | 151,388,146 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,266 | java | package com.example.admin.exercise.data.local.db;
import android.content.ContentValues;
import android.content.Context;
import android.content.res.Resources;
import android.database.Cursor;
import android.database.SQLException;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHel... | [
"shohkarim7@gmail.com"
] | shohkarim7@gmail.com |
2d287dffe71cafdede32dccda67b09ddcd552b9c | 7a2e4d5ebda46c70054aeae83dd80ca74d9838d5 | /src/main/java/org/glsid/metier/CompteMetierImpl.java | c504756d37121b040c5a4d8714b3563b1fbc78cc | [] | no_license | mahugnon/BanqueSI | adf4a9b8a49afa4cc9cfefafcc644ada021675bc | e2e5ea885ae647b14bc566b7e679c58899e6d065 | refs/heads/master | 2020-05-29T19:17:00.928515 | 2017-02-20T23:02:25 | 2017-02-20T23:02:25 | 82,611,504 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 787 | java | package org.glsid.metier;
import java.util.Date;
import java.util.List;
import org.glsid.dao.JpaRepository.CompteRepository;
import org.glsid.dao.entities.Compte;
import org.glsid.dao.entities.Employe;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Servic... | [
"TECHNOPC@TECHNOPC-PC"
] | TECHNOPC@TECHNOPC-PC |
205b714eb7fd2fcb8eadffca54c1f2b08bc1c331 | de6182d88d83298af7d8a700f3cf250893982cf0 | /src/main/java/com/plantserver/entity/TTTT.java | 2884dfe6e013529c4a79b776e6ae3a9b3fbbba24 | [
"Apache-2.0"
] | permissive | Brand960/Akyc_PlantServer | 854645a9b79fd5cbdf961b7db6f1040b1724e1ea | b3da8dddf9530816c7967f395f156bc968048736 | refs/heads/master | 2022-07-05T14:21:29.439659 | 2020-05-21T07:21:59 | 2020-05-21T07:21:59 | 198,189,912 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,404 | java | package com.plantserver.entity;
import lombok.Getter;
import lombok.Setter;
import java.math.BigDecimal;
import java.math.RoundingMode;
// 1219温度温度温度温度
@Getter
@Setter
public class TTTT extends BytePayload {
public long timestamp;
public float t1; //the data of current value the unit is (A)
public float ... | [
"brand960@foxmail.com"
] | brand960@foxmail.com |
8e20fad7b6597408d7c8abd8da433a5287689a46 | 10c3b1b5a26c1ea1282f8e0b4f3a889d46f85d0b | /Collectionss/src/com/techno/collectionmain/Demo.java | 474636ec7b441d15a96c9614f0c6e69b53687640 | [] | no_license | manoj238/Noddy_Mj | 8c7f75c63ff17940fb1fb18c0e9919f8d316b757 | 72e295f23862a2f8ac614c6e1e31525439eb73fb | refs/heads/master | 2023-08-14T02:01:44.328116 | 2021-09-27T08:04:13 | 2021-09-27T08:04:13 | 410,796,852 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 820 | java | package com.techno.collectionmain;
import java.util.ArrayList;
public class Demo {
public static void main(String[] args) {
ArrayList<Integer> arrayList = new ArrayList<>();
arrayList.add(10);
arrayList.add(20);
arrayList.add(30);
arrayList.add(40);
System.out.println(arrayList.toString());
ArrayList<... | [
"manoj_vivek23@yahoo.com"
] | manoj_vivek23@yahoo.com |
8a2deee6f0428d1b5216cd44884c99d1bf7b215c | d7d59eaa717ad38c8bb9d11385a5632d64ccbd5a | /src/main/java/org/hibernate/main/TestEmployeeConcreate.java | 1dca4f801d4cd5b28fa4654f35003470be83fb2f | [] | no_license | amiransarii/HibernateDemos | 3acf629a1a12865fde139f97f83583d8e9e983b2 | 030eb13be639d0bb2ba6fc446f2166e0318cfe5f | refs/heads/master | 2022-07-04T15:43:18.554330 | 2019-12-27T11:18:25 | 2019-12-27T11:18:25 | 229,360,349 | 0 | 0 | null | 2022-06-21T02:31:41 | 2019-12-21T01:25:25 | Java | UTF-8 | Java | false | false | 1,985 | java | package org.hibernate.main;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.boot.Metadata;
import org.hibernate.boot.MetadataSources;
import org.hibernate.boot.registry.StandardServiceRegistry;
import org.hibernate.boot.registry.Stan... | [
"amiransari.my@gmail.com"
] | amiransari.my@gmail.com |
6a73a1a4f0b4d8705f998a87d3d30d632f77db86 | 44c5dc8af1a14532c9e9513f8d48a54841aa38ce | /src/main/java/com/duprasville/limiters/util/AtomicTableWithCustomIndexes.java | 291d5a6028caf946479c4afee682c78c327244e7 | [
"MIT"
] | permissive | SeokhyunKim/limiters | 771c9f11e823fd3e6be37e3cc88efbc3d8516841 | 23945dd0bf76c21b45fa06460741c910b2063f26 | refs/heads/master | 2020-03-07T14:58:47.639329 | 2018-03-10T13:13:49 | 2018-03-10T13:18:05 | 127,541,430 | 0 | 0 | MIT | 2018-03-31T14:52:09 | 2018-03-31T14:52:08 | null | UTF-8 | Java | false | false | 2,877 | java | package com.duprasville.limiters.util;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import static java.util.stream.Collectors.toList;
import static java.util.stream.Collectors.toMap;
public class AtomicTableWithCustomIndexes<V> extends AtomicTable<V> {
private fi... | [
"bdupras@twitter.com"
] | bdupras@twitter.com |
2fd8cbbe17179f53e235dc64e30077391944b20d | a91d6cb132fd1ef9a6a3c316aa72eac8af13cd61 | /AracTakipSistemi-NDAT/src/com/aractakip/arackiralama/domain/Sistem.java | 4f1a3c7f23593b47a3204617b712489d22c9d6bb | [] | no_license | HeydarBinaliyev/Object-Oriented-Analysis-and-Design | 235b33d1e6ff2a53e4b8c73d2c023d9b43f72cbe | 1ccbc473fb56c9317747072c3e47a461ed11f4da | refs/heads/master | 2021-01-01T03:36:11.904482 | 2016-05-25T19:35:47 | 2016-05-25T19:35:47 | 59,380,359 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 393 | java | package com.aractakip.arackiralama.domain;
import java.util.LinkedList;
import java.util.List;
import com.aractakip.arackiralama.facade.Facade;
public class Sistem {
List<AracKiralama>list=new LinkedList<AracKiralama>();
private Facade facade=new Facade();
private Register register=new Register(... | [
"haydabinali@hotmail.com"
] | haydabinali@hotmail.com |
9f3527b63565b21fce07bf556b583b43a41f2aa6 | ad3c4b0fdc1e22b66ab61ceffe322bedb87dd37c | /Myjdbc/src/com/my/helper/StudentHelper.java | 90302445138ea37d64f79af7bf0f53c30003445b | [] | no_license | Zafarimam7032/Core_Java | 5b24a0a9edb2e1739eb3c94b0d8e1e99317827c4 | 6c48c2edf3ee3fb0ce614ffa938db5a13bb278d0 | refs/heads/master | 2023-04-02T13:20:15.967957 | 2021-04-02T05:10:13 | 2021-04-02T05:10:13 | 353,907,985 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 537 | java | package com.my.helper;
import java.sql.ResultSet;
import com.my.info.StudentVo;
public class StudentHelper {
public StudentVo takeDatafromResultsetAndPutStudentVo(ResultSet result)
{
StudentVo stud=null;
try
{
if(result!=null)
{
stud=new StudentVo();
stud.setSno(result.getInt("sno"));
stu... | [
"Zafar.imam@greatWits.com"
] | Zafar.imam@greatWits.com |
9954f19ad2371d91745205d38f757774e86074d4 | 7cff3f3b7f59882473c0abd107151cd4792953fe | /calendarview/src/main/java/com/offcn/calendarview/CalendarUtil.java | 8b5cb1053f4ba12a176ac52711442eb5f7805e48 | [] | no_license | jasonMouse/ConstraintLayoutDemo | 864f7627f08221d1e2006717ec1535de0c454038 | 18894256fa7b72b7d10c019ee14e1c14ace3ded2 | refs/heads/master | 2020-07-26T20:25:05.720528 | 2019-09-16T09:14:41 | 2019-09-16T09:14:41 | 208,756,936 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 30,096 | java | /*
* Copyright (C) 2016 huanghaibin_dev <huanghaibin_dev@163.com>
* WebSite https://github.com/MiracleTimes-Dev
* 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.apa... | [
"jasonMouse@163.com"
] | jasonMouse@163.com |
98f9da8d3a71c17912142a63f3744a48315d72c2 | 8afdb7c62eb74ffcaded52090055be1180114214 | /city-common/src/main/java/util/FileHelper.java | 157ee9d0a122c894f38136fcb64f7faa70a653d7 | [] | no_license | tickluo/rebate | fb0eb0c8cccfd9735a3d198a08c08e161acf8e82 | 1c6c35f301ab1ab78a90aa673f8bbf1d949c1cec | refs/heads/master | 2021-01-20T08:06:47.237251 | 2017-06-08T07:03:27 | 2017-06-08T07:03:27 | 90,097,765 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,902 | java | package util;
import org.apache.commons.io.FileUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.BufferedOutputStream;
import java.io.CharArrayWriter;
import java.io.Closeable;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOu... | [
"tickluo@sina.com"
] | tickluo@sina.com |
c26184c316a53665a06953cab2ed1dd40d5a8f7b | f58dc56b30e51535ea0d37d2a9b79a0f8689518b | /moho-remote/src/test/java/com/voxeo/rayo/client/test/AskTest.java | 7bcb0c636a78c1b5100c48ceb287117466da0f5b | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | voxeolabs/moho | 748abfcd6503fa98b9d4be7b91d90a3062f93ab1 | 3f455d4cf895571208d2cc8114f201bc5c26bad8 | refs/heads/master | 2021-01-17T13:37:03.565820 | 2016-06-21T09:44:05 | 2016-06-21T09:44:05 | 590,532 | 4 | 9 | null | null | null | null | UTF-8 | Java | false | false | 1,004 | java | package com.voxeo.rayo.client.test;
import org.junit.Test;
import com.voxeo.rayo.client.DefaultXmppConnectionFactory;
import com.voxeo.rayo.client.XmppConnection;
import com.voxeo.rayo.client.internal.XmppIntegrationTest;
public class AskTest extends XmppIntegrationTest {
@Test
public void testAsk() throws Excep... | [
"wzhu@voxeo.com"
] | wzhu@voxeo.com |
1c269f101116fc879b532908a00a994726702bb9 | eb89e756b26a7a685cd9713142a346888ef34f37 | /src/main/java/com/reminder/application/repository/RoleRepository.java | 4dbac6e4e310b2ba3780175fe8c669c6972add7f | [] | no_license | vikash0439/ReminderSotware | ba7ed9d89a5c922410f7525f70dd31dede1df6fa | f6669fa363e85cc21c9572444b1b192be1323a09 | refs/heads/master | 2020-04-21T12:02:25.283399 | 2019-02-21T11:36:31 | 2019-02-21T11:36:31 | 169,549,216 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 231 | java | package com.reminder.application.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import com.reminder.application.model.Role;
public interface RoleRepository extends JpaRepository<Role, Long>{
} | [
"vikash.k@dcmtech.com"
] | vikash.k@dcmtech.com |
f666a4fcaa7640b383d8027dd1a77520bb7044d2 | 1f6ada7c423e815c063e223ed849c51013dad787 | /cipango-dar/src/main/java/org/cipango/dar/DefaultApplicationRouter.java | ec38a3eeb847f3a0fd500b9cd54f570aba3a82c8 | [
"Apache-2.0"
] | permissive | leoleegit/cipango | 6e4b1086370cf96bb7199c4e8177b20c2cb9d316 | c4212d03cb1ab9edd60d4e5e6520c682dfd85b80 | refs/heads/master | 2020-05-03T21:39:25.572378 | 2014-08-30T16:36:44 | 2014-08-30T16:36:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,446 | java | // ========================================================================
// Copyright 2008-2009 NEXCOM Systems
// ------------------------------------------------------------------------
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the Lice... | [
"workspaceleo@gmail.com"
] | workspaceleo@gmail.com |
aa3805deac2baff7f677a503c923cead221d328b | dc41f78ed6d3b11d76b431768cf815b94ddfb655 | /cjlibrary/src/main/java/com/carljay/cjlibrary/annotations/CJNetInterface.java | f352c78b9a9a703312caaaee17b72ca867ce2591 | [] | no_license | 683280/BookReader | 2cf2c98645a68eed2d47604f37046be442fc3887 | 3316f8c031814d999a7d9e07ad0e857a8358f84c | refs/heads/master | 2021-04-18T20:35:16.035484 | 2018-03-26T11:27:43 | 2018-03-26T11:27:43 | 126,769,670 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 504 | java | package com.carljay.cjlibrary.annotations;
import com.carljay.cjlibrary.enums.NetType;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Created by carljay on 2017/3/1.
*/
@Target({ElementType.METHO... | [
"683280love"
] | 683280love |
44ef0b21ee5325ae3888c9453780c6674184f0a8 | 94ea494456c4d3edc313de151f003719ca260fa9 | /Webservice-From-WSDL/src/main/java/servicemix/example/PersonImpl.java | 7aa516f04ea9d08afff816e5574b837bed30ecb4 | [] | no_license | onjsdnjs/servicemix-example | 8f23550d1441c4ec9dd10d0f8cb045b164f155c8 | b96629c33e9b1e17f7b1191ed307331a7c3162d9 | refs/heads/master | 2021-01-17T22:51:56.145570 | 2013-03-14T11:15:59 | 2013-03-14T11:15:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,795 | 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 ... | [
"north.alex@gmail.com"
] | north.alex@gmail.com |
7b2fd0311b65357bf572794f59f798641d6cfa23 | a239ce8bc5b897987e3acb0515fdd34e35272eee | /src/HW3/Calculator.java | 60302830ba27174a0859dc2afd6cde7b3fcf792a | [] | no_license | DimaBah/HomeWorkStorm | f1980a914a5c0abd9bf7b6113fc38ba3f59c723b | 9174a5e738bd37be2b17be1c32d201eb83df0eb0 | refs/heads/master | 2022-10-07T02:15:50.176432 | 2020-05-31T11:23:59 | 2020-05-31T11:23:59 | 256,505,836 | 0 | 0 | null | 2020-05-31T11:29:14 | 2020-04-17T13:08:43 | Java | UTF-8 | Java | false | false | 1,590 | java | package HW3;
import java.util.Random;
public class Calculator{
int operand1;
int operand2;
Calculator(){
operand1 = 1;
operand2 = 2;
}
public int getOperand1() {
return operand1;
}
public void setOperand1(int operand1) {
this.operand1 = operand1;
}
p... | [
"bahdiman@mail.ru"
] | bahdiman@mail.ru |
ea2474edd47806c5e8b6844a5dcfe012d70d236f | e2a9f609c360fa8ad42855c9bea6d4b91ee7770a | /SystemWeb/src/java/com/selectcar/DAO/clientDAO.java | 424db95869e9435d4c7151a80d3137935fc5f130 | [] | no_license | Suspir0n/SelectCar | 46161a54846e1ecae08ea4d134e63e1b7c320572 | 60ed9cfc8e3c18b0bf55915bff3f48241894f4ee | refs/heads/main | 2023-01-19T15:24:43.177575 | 2020-11-24T23:24:19 | 2020-11-24T23:24:19 | 302,162,130 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,775 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.selectcar.DAO;
import com.selectcar.entitys.clientEntitys;
import java.sql.Connection;
import java.sql.PreparedStatement;
... | [
"evandrojunior1615@gmail.com"
] | evandrojunior1615@gmail.com |
972af40f81e5f64b679648e05a3d5f3db1b23c48 | 2a28a49afc228e6c29f6ab4587199ec950b457a7 | /src/main/java/core/Util/ScatterType.java | 9061b47feb54f2bad985bf78d13d64fbedc94284 | [] | no_license | 0-3/CrispCore | 6d1abad19ad1e0dc00d7fb961ed6c3a622c84220 | 7a58a15b8a7080e8a729ca5c6af9b15d97dcc15e | refs/heads/master | 2021-09-16T20:58:39.738662 | 2018-06-25T03:14:42 | 2018-06-25T03:14:42 | 138,538,097 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 87 | java | package network.reborn.core.Util;
public enum ScatterType {
GAME, MEETUP, OTHER
}
| [
"ethan.t.ford@gmail.com"
] | ethan.t.ford@gmail.com |
a2315104aac9be6cb4209c6354e8f0857242ca34 | 3745b4157eb72f6975448d6601730a4c96c5369f | /src/card/CardNFC.java | 3e3ac284e39a863cd8e4a2805171c7b6a41c9824 | [] | no_license | JuliaDobrovolska/javaCourse | d2afcb7294f8a607c6258b01e1c5f6a33085db8a | eff58542ee1b3e927d3f532cd62dfcb93da5d956 | refs/heads/master | 2020-07-13T13:58:48.403809 | 2019-09-02T18:07:01 | 2019-09-02T18:07:01 | 205,096,740 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 302 | java | package card;
public abstract class CardNFC extends CardChip {
private String nfc;
public String getNfc(String nfc) {
return nfc;
};
public abstract boolean checkNfc(String nfc);
public String setNfc(String nfc){
this.nfc = nfc;
return this.nfc;
};
}
| [
"dobrovolskajulia@gmail.com"
] | dobrovolskajulia@gmail.com |
39e8db88da63a069a0a1a0354b7f7f37d812879b | 0529524c95045b3232f6553d18a7fef5a059545e | /app/src/androidTest/java/TestCase_com_acs_beautifulautumnlwp_free__409751865.java | 98780e74f0c8273c8658bb4c4c7ac259e2519adf | [] | no_license | sunxiaobiu/BasicUnitAndroidTest | 432aa3e10f6a1ef5d674f269db50e2f1faad2096 | fed24f163d21408ef88588b8eaf7ce60d1809931 | refs/heads/main | 2023-02-11T21:02:03.784493 | 2021-01-03T10:07:07 | 2021-01-03T10:07:07 | 322,577,379 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 445 | java | import android.opengl.GLES20;
import androidx.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
@RunWith(AndroidJUnit4.class)
public class TestCase_com_acs_beautifulautumnlwp_free__409751865 {
public static void testCase() throws Exception {
byte var0 = 1;
GLES20.glBindA... | [
"sunxiaobiu@gmail.com"
] | sunxiaobiu@gmail.com |
29c9e6034597fcb7e57b7cac5f622ecd3bb163b6 | 558ec2d7d4b43e03f6fcf06c05ad86e526e18a0a | /src/Encryption.java | 99992c7856bc3203a1417353b26cc9de58881a4a | [] | no_license | freakybaba/Digital-Diary | 106e092da7e8b43c30df221107168909e049470b | 9d75137116484fafa48276ce0eaa86f8ee032675 | refs/heads/master | 2021-09-23T12:00:50.068267 | 2018-09-22T11:18:29 | 2018-09-22T11:18:29 | 113,662,090 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 873 | java |
public class Encryption {
public String encrypt(String s)
{
String str=new String(s);
char ch[]=str.toCharArray();
int l=str.length();
int count=1;
for(int i=0;i<l;i++)
{
if(count>26)
count=1;
ch[i]=(char)((int)ch[i]+coun... | [
"noreply@github.com"
] | freakybaba.noreply@github.com |
467770483670aa3a126851c93c0dcea07bf683c0 | 0b117d2e9efa2ea7dc2ac9fe3ee31e88659d4823 | /.svn/pristine/cc/cc67a29665961ca9b29bc0d3486bbe4aae944736.svn-base | 2e94066e79eed1268172cb54cf35b8806e60f268 | [] | no_license | 123qweqwe123/PEACE3 | e8ab475f4281b3b4c1d6198b0c0f46c00d5ad2a6 | f99b013225308177f15f43bd0acbdcf08445a9e4 | refs/heads/master | 2020-03-09T22:08:26.151165 | 2018-04-11T03:16:48 | 2018-04-11T03:16:48 | 129,027,333 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 451 | package com.bdcor.pip.web.common.service;
import java.util.List;
import java.util.Map;
import com.bdcor.pip.web.common.domain.PipCommRemark;
public interface RemarkService {
/**
* 由主键查询主键下不同类别对应的备注
* @param remark
* @return
*/
Map<Short,List<PipCommRemark>> getRemakListByPk(PipCommRemark remark... | [
"1074673969@qq.com"
] | 1074673969@qq.com | |
76b56950cefb01652599874dbaff3efb7eb57af9 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/10/10_a9a5683f21de68de496de82918f80aec6a6878e9/JDBCMetadata/10_a9a5683f21de68de496de82918f80aec6a6878e9_JDBCMetadata_t.java | 568a6b1bdfad257c0fcd8e101f9dabc4960eb4a7 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 6,595 | java | /*
* JDBCMetadata.java
*
* Created on June 6, 2007, 10:47 AM
*
* CodaServer and related original technologies are copyright 2008, 18th Street Software, LLC.
*
* Permission to use them is granted under the terms of the GNU GPLv2.
*/
package org.codalang.codaserver.database;
import java.sql.*;
i... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
d7186508b0443a3496b36ea4ea1a2a2dd08792ad | c5b360cad01ba71d04ffcb49dbae491b15c420d5 | /src/Document.java | c3c5e962da801737ead62f2106a83a5cf42784e6 | [] | no_license | MarcoZaror/reader_app | e2ed324e9b439f4bf9a6dcced6ae53b995d0156e | 93ba6594c6f0d0c846a8a9982a8374746db0fa4b | refs/heads/master | 2022-11-08T04:56:05.974170 | 2020-06-26T13:19:08 | 2020-06-26T13:19:08 | 275,158,644 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,624 | java | /**
* Document.java
*
* Document parent class representing all three types of documents.
* Provides methods to obtain stats of the document, to count its words and to acces its instance fields.
*
* @version 1.1 December 2019
*
*/
import java.util.*;
public class Document {
// Declare instance fields
private S... | [
"mazarorpolenta1@sheffield.ac.uk"
] | mazarorpolenta1@sheffield.ac.uk |
2057f69af727449f22d6c63e5d435888e5189808 | b73dd534ef88d92e55466cf43f06ca67d1621544 | /JAVA I - Grundlagen der Programmierung/Quellcode zu den Folien/com/leycarno/javacourse/java_05_collections/Arrays.java | 4620c41178fce7c44c9c2fe8854f471509f81312 | [] | no_license | Leycarno/javacourse | d24356ca3a638ff0b91ac4c92a6569c77c2f37d8 | 4bec279d9517bde75d2f8d092f4dc962471d32c1 | refs/heads/master | 2021-01-17T22:31:17.853167 | 2017-05-16T14:24:36 | 2017-05-16T14:24:36 | 84,198,073 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 5,016 | java | package com.leycarno.javacourse.java_05_collections;
public class Arrays {
public void run() {
this.integerArrayDemo();
this.integerArrayResizeDemo();
this.carArrayDemo();
this.useArraysClass();
}
/** ************************************************************
* simp... | [
"leycarno.com@gmail.com"
] | leycarno.com@gmail.com |
7d46fb991360bbd5c0f3d7f32be321c164e03b0f | 218b6afdf7d69b9285a45bc42d0f24c1df7979ea | /src/main/java/com/briup/sb/web/controller/ResponseController.java | 65d3a8b643e29239006511efaf5a75f1f6a3afe9 | [] | no_license | XT594684736/firstday | 67f47c8163d0a0da8bbb8b470f6670a65a3adab5 | 46a491bfb9014cd8268acc9b4629a8517d86a0a0 | refs/heads/master | 2020-11-28T18:07:53.337897 | 2019-12-24T06:58:40 | 2019-12-24T06:58:40 | 229,888,808 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,540 | java | package com.briup.sb.web.controller;
import com.briup.sb.bean.Message;
import com.briup.sb.bean.Person;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.uti... | [
"594684736@qq.com"
] | 594684736@qq.com |
aa25336a2c004cc2e7a0808161ed4fd264306f9f | b0877c20057369667effd49122099ea99fe0d6f5 | /StringProcessing_V.java | 1ce721769adf01f3f21a8280dad7779593393841 | [] | no_license | karthikeyanr97/Programs | 15632b2587403d42645d5247593d787cdf8df14b | 9383c40447cbd295af3be509c29793ea60b3273d | refs/heads/main | 2023-04-13T01:47:49.157832 | 2021-04-23T14:14:01 | 2021-04-23T14:14:01 | 348,395,834 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 747 | java | import java.util.Scanner;
public class StringProcessing_V extends UserMainCode {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
System.out.println("Enter the string:");
String string = scanner.nextLine();
System.out.println("Enter the number:");
int number... | [
"noreply@github.com"
] | karthikeyanr97.noreply@github.com |
246600923bbe289c9304c3f6a495b2fc9afbde5d | b7397158f531848da076278b7bb7a8b48e10c6e5 | /chapter01_Maven/src/sample03/HelloSpring.java | f97cfcf0c32c0586505fd29bed33f262ffa95795 | [] | no_license | hyunEuiAhn/workspace | 926997374bd3de2119e8411ab92aad7763646651 | 3ada720b888e3847172c619d4bc4d6935f969566 | refs/heads/master | 2022-12-09T09:58:00.239197 | 2020-08-19T13:04:16 | 2020-08-19T13:04:16 | 288,733,239 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,586 | java | package sample03;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.contex... | [
"heahn153@gmail.com"
] | heahn153@gmail.com |
32b1627ea5bc7ff7ad226fa2f55ea7a364438af0 | 5c4974942b58342fd85cd3d8b2e17741e6f31abe | /xiyan-parent/cms-service/src/main/java/com/xiyan/vo/UserVO.java | 61893f4869d289b582ea6c859781fc7fb7b9da50 | [
"Apache-2.0"
] | permissive | BestJex/xiyan-blog | 6ea0cacb8b15fd8e35cebd5886d957e64fae7570 | 84a0cb9e0e7c91755c508a1209e375f32a195326 | refs/heads/master | 2023-02-07T14:48:17.180073 | 2020-12-31T06:39:03 | 2020-12-31T06:39:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 804 | java | package com.xiyan.vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
/**
* @author: bright
* @date:Created in 2020/11/8 14:33
* @describe :
*/
@Data
public class UserVO implements Serializable {
private static final long serialVersionUID = 1L;
@ApiModelP... | [
"694475668@qq.com"
] | 694475668@qq.com |
59cfebf8135b0537e33893d89c844fa32aa04511 | 4492154a3acc13860c653c98ee9d49d31bb55bac | /src/main/java/Monsters/Monster.java | 9bb34556f5350418d22c690e1323ad00a659d9d7 | [] | no_license | DavidDuveau/projetRpg | 42d0bae584423b4dbba7467bbef3556819ec602f | 9f7f43e600b96368a8c015711a8816969033e9c5 | refs/heads/master | 2021-07-18T11:54:00.899400 | 2019-11-08T19:58:27 | 2019-11-08T19:58:27 | 220,489,066 | 0 | 0 | null | 2020-10-13T17:19:21 | 2019-11-08T14:57:55 | Java | UTF-8 | Java | false | false | 1,052 | java | package Monsters;
public class Monster {
private int health_pt;
private int level = 1;
private int strengh;
private int agility;
private int intelligence;
public Monster() {
}
public Monster(int health_pt, int level, int strengh, int agility, int intelligence) {
super();
this.health_pt = health_pt;
th... | [
"david.duveau@hotmail.fr"
] | david.duveau@hotmail.fr |
7d6b52341374d5f9cac3018b750e80a7bdb1a191 | 8fdb5d05bbab81f7742cb8fe2d7b23fa129b1e49 | /springcloud-service-api/src/main/java/com/jk/model/UserBean.java | b5d1051f8776c79223795750831ea9259a96f3f8 | [] | no_license | 1441022584/springcloud_mfw | 533261c667a9cdadf20b990f3b91f5c89fea7e12 | 2615509877554a6d8afb56ac8239d4c8e95a4860 | refs/heads/master | 2020-04-18T11:50:27.662015 | 2019-01-27T05:46:55 | 2019-01-27T05:46:55 | 167,508,258 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,337 | java | package com.jk.model;
import java.io.Serializable;
public class UserBean implements Serializable {
private Integer id; //主键id
private String name; //用户名称
private String userImg; //头像
private Integer sex; //性别 (1 男 , 2女)
private String userSignature; //签名
private Integer user... | [
"1441022584@qq.com"
] | 1441022584@qq.com |
71e979362b22187997e8195a9dd5513dd8fae195 | 84874504beb75cf9ca6fe022b5fbc9873477ba81 | /app/src/main/java/com/example/mp2projectmadraman/Plants.java | 3d2eb533a0fee0b2677f01dae0c104156f3ff623 | [] | no_license | ramandeepsuri/MP2projectsMADraman | eaa674afef2ccaf827b7fc70650e5d72c9565999 | 53309d7662253e2e19962bd1c3a65eb6c75114d0 | refs/heads/master | 2023-08-22T12:19:02.561823 | 2021-10-12T07:10:43 | 2021-10-12T07:10:43 | 416,172,382 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 424 | java | package com.example.mp2projectmadraman;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class Plants {
@SerializedName("Plants")
@Expose
private List<Plants_> plants = null;
public List<Plants_> getPlants() {
return ... | [
"Kunalskw143@gmail.com"
] | Kunalskw143@gmail.com |
808fc65873d9b3b3537bb815f6e5514d77cf767c | 6a89a3211fc2023ea08d16c08896a48ce1f19b16 | /base/src/main/java/com/spldeolin/allison1875/base/exception/ConfigInvalidException.java | 68f87f23f1896c5b0a534a6b2215a73d97d79497 | [] | no_license | leeshinx/allison-1875 | 78e74c4a4058556ce1065857cf285e5cae39da0f | a317ec9a97bb96de17717bc8ee7b05ffb0f01882 | refs/heads/master | 2022-12-18T08:23:33.782751 | 2020-09-17T14:09:42 | 2020-09-17T14:09:42 | 294,668,225 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 225 | java | package com.spldeolin.allison1875.base.exception;
/**
* @author Deolin 2020-08-21
*/
public class ConfigInvalidException extends RuntimeException {
private static final long serialVersionUID = 747426296944731969L;
} | [
"lix6406@joyowo.com"
] | lix6406@joyowo.com |
4234497a476fb71ea1f2c11bc850ec68f2adae70 | bf0a24f50c0026629fe0cd462dceecb145dcd606 | /beauty/src/main/java/com/cntend/beauty/controller/user/PlanController.java | 7c210bacc315ca3c7fa567489e1ef6d6ab839798 | [] | no_license | moncat/mpackage | d21af9c1a208b3847cfae482408f6ebbdf28088b | 4347f18cb7a8317be7461c493167594f529120d5 | refs/heads/master | 2022-12-10T09:59:21.590725 | 2020-03-09T01:15:00 | 2020-03-09T01:15:00 | 94,493,254 | 3 | 2 | null | 2022-12-06T00:40:56 | 2017-06-16T01:35:25 | Roff | UTF-8 | Java | false | false | 5,661 | java | package com.cntend.beauty.controller.user;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpSession;
import org.assertj.core.util.Lists;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.M... | [
"moncat@126.com"
] | moncat@126.com |
41338c82396ee0fee1f56d23ccefb55fa99abaf0 | cdd3273f4dff2285959cb4109ac8b13341099bc6 | /game/src/main/java/com/leader/game/util/ExcelUtils.java | c8ebae30ddfd587a558de6bf2e87156fa6352e5b | [] | no_license | Whale-Island/leader | 2b5d14f5e895791be9f30d6264110ec5defb52d4 | b9532891466adb0b8ef36f8f1d97a93aeb411f78 | refs/heads/master | 2021-05-11T10:50:06.572027 | 2018-10-17T01:33:37 | 2018-10-17T01:33:37 | 118,114,281 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,715 | java | package com.leader.game.util;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Lis... | [
"1109968833@qq.com"
] | 1109968833@qq.com |
360022ebe514c061c71983ce66663879a1aec8ea | 77904c75de32939b97a00b10691bfb5fc6c49c72 | /Backend/src/main/java/com/unep/wcmc/biodiversity/model/ForgetPasswordToken.java | 9670ab25b7652a4747891e5063bcd8e6d19d6435 | [] | no_license | unepwcmc/Biodiversity-Collections | 1367b7a67721f516f8c11b941dd786f27f65a195 | 74d552f57f46abdf3d7d4f0591233e2fb406b780 | refs/heads/master | 2020-07-09T03:12:25.060350 | 2016-03-23T15:28:54 | 2016-03-23T15:28:54 | 45,797,599 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,769 | java | package com.unep.wcmc.biodiversity.model;
import com.unep.wcmc.biodiversity.support.BaseEntity;
import javax.persistence.*;
import java.util.Calendar;
import java.util.Date;
@Entity
public class ForgetPasswordToken implements BaseEntity {
private static final int TIMEOUT = 60 * 24; // one day
@Id
@Generate... | [
"rcandidosilva@gmail.com"
] | rcandidosilva@gmail.com |
69b73b3ebef993657202deee20d193abb2e4cfb1 | a35f22b16d423fd7e310848430e325176edcbcf9 | /src/main/java/edu/internet2/middleware/shibboleth/idp/authn/ShibbolethSSOLoginContext.java | 98b2ca248c393c3db69281286b2f2a93664e9f82 | [
"Apache-2.0"
] | permissive | brainysmith/shibboleth-idp | 83dad2c43eeb624276a03cdb58ab5cea82341e64 | f40788be35a9d9ff66f62e845a749d81052cc441 | refs/heads/master | 2021-01-17T17:07:26.838947 | 2014-09-08T06:59:57 | 2014-09-08T06:59:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,411 | java | /*
* Licensed to the University Corporation for Advanced Internet Development,
* Inc. (UCAID) under one or more contributor license agreements. See the
* NOTICE file distributed with this work for additional information regarding
* copyright ownership. The UCAID licenses this file to You under the Apache
* Lic... | [
"tadpoletad@gmail.com"
] | tadpoletad@gmail.com |
fa9aab4f1db696bbe28c5ae5cb608db3d206b9dd | d8498747af7400591d9078e214282411b1b5c8b5 | /topic0/ProxyPattern/src/com/company/IDataBase.java | f2b5aab83fc63c30a286f80b79436278f07852ab | [] | no_license | daveramiel/BootCamp2018 | 7aaef85cf40ec09e53a4cd0dd5a5c7939bd4326a | db75ad7ea211324f60fc348982485c4dcdb0d530 | refs/heads/master | 2020-03-15T14:12:44.175841 | 2018-05-30T16:23:04 | 2018-05-30T16:23:04 | 132,185,628 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 82 | java | package com.company;
public interface IDataBase {
public void Connect();
}
| [
"davidjupg@gmail.com"
] | davidjupg@gmail.com |
d1cec251e1f642e3892c7617d820341ccd515a0d | 20ef0eaaa77093335a0ea254e5e9cf9cffcf4f0c | /jingpeng/001_油厂项目/oilfactory/src/com/oil/interceptor/SessionListener.java | 08782d2dbabb40a2161ae90dbd17fcdadf0251d3 | [] | no_license | elaine140626/jingpeng | 1749830a96352b0c853f148c4808dd67650df8a0 | 2329eb463b4d36bdb4dedf451702b4c73ef87982 | refs/heads/master | 2021-03-15T00:29:17.637034 | 2019-08-15T01:35:49 | 2019-08-15T01:35:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,179 | java | package com.oil.interceptor;
import javax.servlet.annotation.WebListener;
/**
* session监听
*/
import javax.servlet.http.HttpSessionEvent;
import javax.servlet.http.HttpSessionListener;
import org.springframework.context.ApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;
i... | [
"474296307@qq.com"
] | 474296307@qq.com |
fc92f18d39fbd7590988c8370730f9583f7ff9c2 | c5a6a7957587c283308cafa6489cb1b9d0523a8a | /src/main/java/org/adrianwalker/startstopcontinue/websocket/EventSocketConfigurator.java | 41240a65df473cd7c6f3d71613487557ee389494 | [] | no_license | adrianwalker/start-stop-continue | bba52425200c7368cb2bb1579fde974ea2928906 | 436fbb21cbf951575873bc4acca4daf0074a5935 | refs/heads/master | 2023-06-22T05:53:14.812250 | 2022-02-25T19:59:03 | 2022-02-25T19:59:03 | 217,923,217 | 2 | 0 | null | 2023-06-13T23:12:22 | 2019-10-27T22:09:43 | Java | UTF-8 | Java | false | false | 575 | java | package org.adrianwalker.startstopcontinue.websocket;
import org.adrianwalker.startstopcontinue.pubsub.EventPubSub;
import javax.websocket.server.ServerEndpointConfig;
public final class EventSocketConfigurator extends ServerEndpointConfig.Configurator {
private final EventPubSub eventPubSub;
public EventSocket... | [
"adrian.walker@bcs.org"
] | adrian.walker@bcs.org |
661688c307c44cfdc18140f215306d7a379d6c11 | 8720d43acbe619b3fde75cffc51f0116b7ad8857 | /Board/src/main/java/com/spring/board/model/InterBoardDAO.java | 3a88341883ef176617cd3c75587f7e1911b802f3 | [] | no_license | fine2656/Board | cce19e67b6fed205504a6f9964745be0737a8523 | d5a1323eb49bd53427bdd0496c2d5524472cb4af | refs/heads/master | 2020-04-18T10:34:30.879158 | 2019-02-01T02:07:49 | 2019-02-01T02:07:49 | 167,471,571 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,687 | java | package com.spring.board.model;
import java.util.HashMap;
import java.util.List;
import org.springframework.stereotype.Repository;
import com.spring.member.model.MemberVO;
// model단 (DA0)의 인터페이스 선언
@Repository
public interface InterBoardDAO {
//이미지 파일명 가져오기
List<String> getImgfilenameList();
/... | [
"user1@Suwook"
] | user1@Suwook |
8032f24491f08df43e5abb689cd6e034ba37d6b3 | 9521f1c652b06fa0f2c47f3205b0e41dee6e85b3 | /Directory Service - Ripple - Mongo - Sub/src/ds/ripple/mongo/DBoperations.java | 6ee81f8b74df6caf5391fb03e85b3c038eec8a9c | [] | no_license | sanyaade-robotic/Ripple-Cloud | 9153bd44d0a61efc9dc4331c14d49551b9949c66 | 121f99214b8f71f8386d456a5748ed891f6f4375 | refs/heads/master | 2021-01-14T13:47:23.154866 | 2014-08-13T17:56:47 | 2014-08-13T17:56:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,085 | java | package ds.ripple.mongo;
import java.util.Set;
import com.mongodb.BasicDBObject;
import com.mongodb.DB;
import com.mongodb.DBCollection;
import com.mongodb.DBCursor;
public final class DBoperations {
private DB db;
private Set<String> collection;
public DBoperations(DB connection){
db=connection;
}
publi... | [
"rahulbodduluri@gmail.com"
] | rahulbodduluri@gmail.com |
1bff0ebbbcf6b7bb6e827734e5d5232610116b2f | 0af8b92686a58eb0b64e319b22411432aca7a8f3 | /api-vs-impl-small/utils/src/main/java/org/gradle/testutils/performancenull_17/Productionnull_1692.java | 7f85df0de5c8eca4a8686c45b2bf807d0d70c773 | [] | no_license | gradle/performance-comparisons | b0d38db37c326e0ce271abebdb3c91769b860799 | e53dc7182fafcf9fedf07920cbbea8b40ee4eef4 | refs/heads/master | 2023-08-14T19:24:39.164276 | 2022-11-24T05:18:33 | 2022-11-24T05:18:33 | 80,121,268 | 17 | 15 | null | 2022-09-30T08:04:35 | 2017-01-26T14:25:33 | null | UTF-8 | Java | false | false | 590 | java | package org.gradle.testutils.performancenull_17;
public class Productionnull_1692 {
private final String property;
public Productionnull_1692(String param) {
this.property = param;
}
public String getProperty() {
return property;
}
private String prop0;
public String get... | [
"cedric.champeau@gmail.com"
] | cedric.champeau@gmail.com |
72f7508a3a972b2798a727b20a64ee40adfe9dfe | 065c1f648e8dd061a20147ff9c0dbb6b5bc8b9be | /eclipseswt_cluster/25258/src_0.java | ee01e7d1f5d5aacfe9cb8f950a8506611961749a | [] | no_license | martinezmatias/GenPat-data-C3 | 63cfe27efee2946831139747e6c20cf952f1d6f6 | b360265a6aa3bb21bd1d64f1fc43c3b37d0da2a4 | refs/heads/master | 2022-04-25T17:59:03.905613 | 2020-04-15T14:41:34 | 2020-04-15T14:41:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 56,845 | java | /*******************************************************************************
* Copyright (c) 2000, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, an... | [
"375833274@qq.com"
] | 375833274@qq.com |
bb23bfa513782b9ec8fb4cf11c7e69817bb9d3ab | c7caae2f14d6d11980aaa286784c5a591f7b7592 | /lcms-common/src/main/java/com/ljb/utils/SizeUtils.java | 05b15cd143a30e20a848d6a6435bf6e46ff50f4c | [] | no_license | longjinbing/lcms | aabeb6e399ff48f2bdd34780e5b53a59a8454954 | 0a8784016f498a42dff211f81cafceb26b0d0310 | refs/heads/master | 2022-07-12T06:09:07.901339 | 2019-09-15T10:50:01 | 2019-09-15T10:50:01 | 159,462,412 | 0 | 0 | null | 2022-06-29T17:05:01 | 2018-11-28T07:35:54 | JavaScript | UTF-8 | Java | false | false | 1,035 | java | package com.ljb.utils;
import java.text.DecimalFormat;
/**
* 作者: @author longjinbin <br>
* 时间: 2018/11/23<br>
* 描述: <br>
*/
public class SizeUtils {
public static String convertSize(Long size){
int GB = 1024 * 1024 * 1024;//定义GB的计算常量
int MB = 1024 * 1024;//定义MB的计算常量
int KB = 1024;//定义... | [
"longjinbin@yeah.net"
] | longjinbin@yeah.net |
da1647ffc2da4d05449ceac1bdc35e19659bd64f | c25ac84e50998723b03a7e8808a77fea897ebc2e | /src/main/java/edu/iit/sat/itmd4515/wgu10/web/CustomerController.java | f9290bbead7ca0350cf3ec6c388c376dfb41ae43 | [] | no_license | wgu10/wgu10-lab4 | 80f1eba8032124bcbefaf84d7b9e02bd7a95f60c | 29cfcfde1aba62d12832ded59e66e62cdb8f7f15 | refs/heads/master | 2023-03-08T15:00:10.955081 | 2021-02-21T16:03:58 | 2021-02-21T16:03:58 | 340,933,337 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,802 | 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 edu.iit.sat.itmd4515.wgu10.web;
import edu.iit.sat.itmd4515.wgu10.domain.Customer;
import java.io.IOException;
import java.sql... | [
"ext.yuchangcheng3@jd.com"
] | ext.yuchangcheng3@jd.com |
0b58e8e774aa0acbd521fe2c2ee19dd4cdb87f0b | cb568a0f9afd60d7dca004e48e5092315e35cdad | /source/model/src/test/java/au/model/repository/CardParameterCRUDTestCase.java | 0b8fec74af64df3f981c2c133dfb75f471b0efcb | [] | no_license | nicbotha/Cardies | 276d77b90904c98cb3131eb270cf3165d8bb043e | 41a9fa406089dd29f31aa1c73bb4e5496584beaf | refs/heads/master | 2020-06-29T09:23:19.350083 | 2016-11-22T05:01:53 | 2016-11-22T05:01:53 | 74,435,025 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,608 | java | package au.model.repository;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.equalTo;
import org.apache.commons.lang3.StringUtils;
import org.junit.Test;
import au.model.entity.Card;
import au.model.entity.CardParameter;
import au.model.entity.Template;
public class CardPara... | [
"nic.botha@gmail.com"
] | nic.botha@gmail.com |
797d7d733911a1f8f6f659535347a88445a295ee | be22e3938e01d2fce7071003467ee4924c200e19 | /navigational_access/src/main/java/travel/impl/DefaultBudgetHotelDestination.java | 6439a1acdc19b3098d7fe2778e73d5d3efb9eeac | [] | no_license | ayushyadav99/rdf-oo-store | 8defcec3c8a092b587521b22b76cbca9561d5770 | 77b4a0033eb7a1da8ddc4b9cb2be52efdd93fa0b | refs/heads/master | 2023-04-22T16:36:04.459300 | 2021-05-17T09:23:44 | 2021-05-17T09:23:44 | 360,221,589 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,730 | java | package travel.impl;
import travel.*;
import java.net.URI;
import java.io.Serializable;
import javax.jdo.annotations.Embedded;
import javax.persistence.Basic;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import java.util.Collection;
import javax.xml.datatype... | [
"ayushyadav.ay42@gmail.com"
] | ayushyadav.ay42@gmail.com |
27a9a549336f9e21ce1ef9079b94db215e97fbfa | b59f850f6456427be1877d44e76385ed7e39328f | /src/Sabrina07239_Entity/Sabrina07239_CameraEntity.java | b01576d7df6ef2519c4d6ff921c0f134648c7c7b | [] | no_license | sabrinawp/Praktikum_Modul2 | 93de498859ab09f863f4fea90c18d4dd66173ca7 | 776523f62a7955196223e29d8c83c9543fcee248 | refs/heads/master | 2023-01-31T14:11:42.061139 | 2020-12-15T02:24:30 | 2020-12-15T02:24:30 | 321,529,169 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 197 | java | package Sabrina07239_Entity;
public class Sabrina07239_CameraEntity {
public static String merk [] = {"Canon 600D", "CANON 1000D", "CANON 1200D"};
public static String periode;
}
| [
"sabrina@192.168.0.2"
] | sabrina@192.168.0.2 |
6d87ed1f86a2e6ab14fa61ef29e3f0b2b38e0943 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/18/18_4d3726cd52c72b80b5f298989d6637c4e87e4756/Zed/18_4d3726cd52c72b80b5f298989d6637c4e87e4756_Zed_s.java | 797e0164feced60633ba0220a16ff2cb81bb6435 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 8,807 | java | /*----------------------------------------------------------------------------*/
/* Copyright (c) FIRST 2008. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root director... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
986d7719e5a1bf6d9c7c16af1921ae20d5645e87 | 84cfff0639c808af4921865243bd09fee5ffd4e3 | /modules/front-service-user/src/main/java/com/zgljl2012/modules/front/user/query/T20Query.java | 2b31ed1135a5e66bd092b0a83407657a14390d5b | [] | no_license | zgljl2012/DataAnalystIntermediaryPlatform | 1479a0134721e7ab4cb86f9b2b3cc0b7e2dabc30 | f6f2fb58fd26e42308a2db29e44d5a7fec7b9864 | refs/heads/master | 2021-01-21T12:58:10.181022 | 2016-05-24T04:52:25 | 2016-05-24T04:52:25 | 48,831,286 | 2 | 0 | null | 2016-03-09T09:13:06 | 2015-12-31T03:28:00 | Java | UTF-8 | Java | false | false | 990 | java | package com.zgljl2012.modules.front.user.query;
import java.util.Date;
import com.zgljl2012.common.database.enums.Degree;
import com.zgljl2012.common.database.enums.Gender;
/**
*@author 廖金龙
*@version 2016年2月29日上午12:36:09
*T20分析师表插入情况
*/
public interface T20Query {
/**
* 获取真实姓名
* @return
*/
public Strin... | [
"2693491512@qq.com"
] | 2693491512@qq.com |
f218c962f7228634597663ded7d064c53427fd2e | 875fbb6435dc066e74a2d21c367396703ff871b0 | /src/main/java/com/squarepolka/readyci/taskrunner/TaskRunnerFactory.java | 0d20690701376b2067e417f53b6dbc3175658bda | [
"BSD-3-Clause"
] | permissive | plummer/readyci | 4fb52b3a5ce2ad95cf2fe14ae2e401870f70264b | 4dcea7f8c52feb690712dd563dfc7d05f79ebd49 | refs/heads/master | 2020-03-23T11:26:49.662352 | 2018-07-19T00:30:36 | 2018-07-19T00:30:36 | 141,504,195 | 0 | 0 | null | 2018-07-19T00:29:27 | 2018-07-19T00:29:27 | null | UTF-8 | Java | false | false | 2,243 | java | package com.squarepolka.readyci.taskrunner;
import com.squarepolka.readyci.configuration.PipelineConfiguration;
import com.squarepolka.readyci.configuration.TaskConfiguration;
import com.squarepolka.readyci.tasks.Task;
import com.squarepolka.readyci.tasks.code.GitCheckout;
import com.squarepolka.readyci.tasks.realci.C... | [
"bclayton@deloitte.com.au"
] | bclayton@deloitte.com.au |
3d570cf8ec8a880b2b0357c9b79ff11edbd6bfb1 | 4e4c86144891ffb18d04c41189574a60a2dcbf7b | /src/main/java/Ej15/Main.java | b7d9ef000fdadd4e549e2f84d4872ef32a2c9438 | [] | no_license | enriquejdd/T6 | b74623ca0eb697867731b24c7cc895dc97db6a0e | 2158454ae29f9949225da610ec403de8fe641549 | refs/heads/master | 2023-03-19T20:53:42.157363 | 2021-03-17T13:46:48 | 2021-03-17T13:46:48 | 340,021,905 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,454 | 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 Ej15;
import java.util.ArrayList;
/**
*
* @author enrique
*/
public class Main {
public static void main(String[] arg... | [
"enriquejdd1999@gmail.com"
] | enriquejdd1999@gmail.com |
0990d14d05fa7eb41acf0cf2036cfc224dfe79a4 | 1dc89d4c7adfd035db89b7267365fc834f325adf | /src/main/java/com/mola/OnlineCatalogProject/service/SendGridEmailService.java | e0294542727d6341c8143bbd99a4090f1fe8fd46 | [] | no_license | M-Laura/OnlineCatalogProject | c096f1745e65637effe9ad9cebe88fa0b675f61a | 7f1ffe85c8d3918194e4fd652b5a7686cddd05a5 | refs/heads/master | 2022-12-30T04:23:48.547495 | 2020-10-15T23:59:28 | 2020-10-15T23:59:28 | 294,438,076 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,317 | java | package com.mola.OnlineCatalogProject.service;
import com.sendgrid.Method;
import com.sendgrid.Request;
import com.sendgrid.Response;
import com.sendgrid.SendGrid;
import com.sendgrid.helpers.mail.Mail;
import com.sendgrid.helpers.mail.objects.Content;
import com.sendgrid.helpers.mail.objects.Email;
import com.sendgri... | [
"M-Laura@users.noreply.github.com"
] | M-Laura@users.noreply.github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.