blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 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 684M ⌀ | 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 132
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 28
values | content stringlengths 3 9.45M | authors listlengths 1 1 | author_id stringlengths 0 352 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5455e976eaf1e6375c5592fbea1e80fc06176fbc | c8462064c2b4165d67e07ed297e16e1aab53dce5 | /data-structure/Linked-Lists/delete-a-node/Solution.java | a6490c95ad0c8daf4197c6df21b72ae4b1ccdec9 | [] | no_license | yvesmendes/hackerrank-solutions | dbb61a01eb27ec82f361890f822b537bbdee27ba | 160e72e6e30d49a8c3e27c01b1f22eb23af888cf | refs/heads/master | 2022-12-12T13:10:26.882092 | 2020-08-26T13:01:53 | 2020-08-26T13:01:53 | 283,165,189 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,927 | java | import java.io.*;
import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.regex.*;
public class Solution {
static class SinglyLinkedListNode {
public int data;
public SinglyLinkedListNode next;
public SinglyLinked... | [
"yvesgalvao@gmail.com"
] | yvesgalvao@gmail.com |
e43bf6fa4a5b92bbc473ecf634d1cbd604ca638f | 2d0af5cdc6634ac7747afe4ef59f0e86cd356d97 | /app/src/main/java/com/marmikbq/charlie/charlieproject271218/map_grg.java | af788ed7a991dc37add2d0a37ff150de97aaede8 | [] | no_license | marmikp/Book-My-Garage | 9107c40a243d67c1f0f8c95a4979b48a6a202793 | 490d720521657a6a848b8dffb55b375fff176789 | refs/heads/master | 2020-05-30T11:26:54.774326 | 2019-06-30T05:09:32 | 2019-06-30T05:09:32 | 189,702,155 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,812 | java | package com.marmikbq.charlie.charlieproject271218;
import android.Manifest;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageManager;
import android.location.Location;
import android.support.v4.app.ActivityCompat;
import android.support.v7.app.AppCompatActivity;... | [
"marmikp5897@gmail.com"
] | marmikp5897@gmail.com |
ab2009c245c9308088a65c5dacc1fdf111c26496 | 31d2308e5940248111cda7990c3f3143640b4457 | /ruoyi-common/src/main/java/com/ruoyi/common/exception/file/InvalidExtensionException.java | 8954bbb109371fface4e161f8f10bf570aac2d20 | [
"MIT"
] | permissive | hunterllb/RuoYi | 39f22fe44f93752ad891d0b8cf074302e846a52e | 28387c46e2d9d7a5172f312a953f7b4d1b9a60c6 | refs/heads/master | 2022-04-28T08:24:40.750871 | 2022-03-09T02:01:11 | 2022-03-09T02:01:11 | 220,368,095 | 0 | 0 | MIT | 2019-11-08T02:12:20 | 2019-11-08T02:12:18 | null | UTF-8 | Java | false | false | 2,484 | java | package com.ruoyi.common.exception.file;
import java.util.Arrays;
import org.apache.commons.fileupload.FileUploadException;
/**
* 文件上传 误异常类
*
* @author ruoyi
*/
public class InvalidExtensionException extends FileUploadException
{
private static final long serialVersionUID = 1L;
private Str... | [
"yzz_ivy@163.com"
] | yzz_ivy@163.com |
ed3536559ed46f630e55f14a21c43688e5784bb5 | 271f1e8ae17b8ea10721f04125440a229633954a | /Mini_pro/src/unittests/Point3D_Test.java | 31b73728eaff63730219359cad83001f9c01cb9c | [] | no_license | weinbergA/miniProjectJava | 30e2217dcfda2fc056dae56f2c4fa5920784328c | 7d96065faf20e1e8b85585975cf3298e567b8c6e | refs/heads/master | 2020-03-15T18:21:36.824281 | 2018-05-06T19:31:57 | 2018-05-06T19:31:57 | 125,711,337 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 329 | java | package unittests;
import static org.junit.Assert.assertTrue;
import org.junit.Test;
import primitives.Point3D;
public class Point3D_Test {
Point3D p1 = new Point3D(1, 2, 3);
Point3D p2 = new Point3D(-4, -3, -2);
@Test
public void distanceTest() {
assertTrue(p1.distance(p2) == Math.sqrt(75));
... | [
"you@example.com"
] | you@example.com |
5ec048f15c5a2f4d5776810bf77c5e943f6b413b | 4a01b592169c2ce7ec1b6676873e3a295a4cd892 | /TheNameStat/app/src/test/java/com/example/lakshaysharma/thenamestat/ExampleUnitTest.java | 8eb8520b0fa7a7c7df60ff0dbdbc2a53c6134a78 | [] | no_license | lakshay994/Android_HandsOn_Stanford | abec257cc2580a9bda000fe1146e0a5a4593af79 | 63ae4b26b9ecd8e44d3e1884e6168e9f658ef8e2 | refs/heads/master | 2020-03-21T14:24:39.476382 | 2018-06-25T22:16:19 | 2018-06-25T22:16:19 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 398 | java | package com.example.lakshaysharma.thenamestat;
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
... | [
"lakshay.sharma994@gmail.com"
] | lakshay.sharma994@gmail.com |
7fd676254297551fcefd49e2c25f2ae4d595fe6d | 887d6d71bb86493181bd2032081a03dfde4cbae1 | /src/codeexam/passed/tecent/Main2.java | 28be09fd4816ca9a6dfa262a5a230d7f4048c6e0 | [] | no_license | zzaoen/code4master | b8ec02b4697b89f1b451f15f760e0768e7733854 | 4a0d789fb20b72dce947175cf8a408853cfa02b7 | refs/heads/master | 2020-03-15T16:52:41.965595 | 2018-10-19T12:23:21 | 2018-10-19T12:23:21 | 132,245,146 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,217 | java | package codeexam.passed.tecent;
import java.util.*;
/*
* author: Bruce Zhao
* email : zhzh402@163.com
* date : 9/16/2018 9:59 AM
* desc :
*/
/*
4 3
2 1
3 2
4 3
*/
public class Main2 {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int n, m;
n = ... | [
"zhzh402@163.com"
] | zhzh402@163.com |
1c4bc98db821998d5476f5b5aa33fe812fe131ee | dfb658178b17e922cf4995bce4d4b8b094dac816 | /ggsm-api/src/main/java/net/dgg/cloud/entity/baiduhawkeye/EntityResult.java | 3a3b89bb9896d18d06d9f019b18dac4f1e0884be | [] | no_license | Mrtianzhao/first-0730 | 27b4f17919d89a64add4058abceeb85bc707b2c4 | aef4458cc9cca0cfa8f44287f5fafcd5b594090b | refs/heads/master | 2020-03-24T16:54:50.369406 | 2018-07-30T08:03:04 | 2018-07-30T08:03:04 | 142,842,738 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,909 | java | package net.dgg.cloud.entity.baiduhawkeye;
/**
* @author ytz
* @date 2018/5/18.
* @desc 实体
*/
public class EntityResult {
/**
* entity名称,其唯一标识 string
*/
private String entity_name;
/**
* entity 可读性描述 string
*/
private String entity_desc;
/**
* entity属性修改时间 格式化时间 该时间为... | [
"mrtianzhao@163.com"
] | mrtianzhao@163.com |
c35f337c3c72dd12f506dda1f3beb65ea4b1e2df | 7af29653da33ae838a080fd28c29b28d5eb5f846 | /Hibernate/T5/12库悦凯/上机作业/hibernateT05/Test/com/qhit/lh/gr3/kyk/t4/EmpTest.java | 3c7e2706526687e739ba25a35bf3702a4ea27b09 | [] | no_license | kyk927/16GR3 | b1c964d6c8d786634069613cac36663cf69897b8 | 21b27ce204bca89e0324dca687e2d53e1e8bb5af | refs/heads/master | 2021-09-08T20:44:25.558879 | 2018-03-12T04:50:58 | 2018-03-12T04:50:58 | 111,626,875 | 0 | 0 | null | 2017-11-22T02:33:07 | 2017-11-22T02:33:06 | null | GB18030 | Java | false | false | 2,048 | java | /**
*
*/
package com.qhit.lh.gr3.kyk.t4;
import java.util.List;
import org.junit.Test;
import com.qhit.lh.gr3.kyk.t4.bean.Dept;
import com.qhit.lh.gr3.kyk.t4.bean.Emp;
import com.qhit.lh.gr3.kyk.t4.bean.User;
import com.qhit.lh.gr3.kyk.t4.service.BaseService;
import com.qhit.lh.gr3.kyk.t4.service.impl.BaseService... | [
"kyk927@foxmail.com"
] | kyk927@foxmail.com |
1753538fd4ab3e3bab2e841dfb7c1d6edb5c2c90 | 092c6abac15b8de82cd854791f7f92efda5a898d | /imood-judy-ad-register/src/main/java/com/dexlace/register/RegisterApplication.java | a77432959fcc7783eea1c5385530906b2fc9b648 | [] | no_license | dexlace/imood-judy-ad | cfdb3a0591e09e595f7c13ed25c86190c72b7f98 | bfbd9753ca17450cc0c02006c320897e4f2bd0f6 | refs/heads/master | 2023-06-10T08:40:14.748841 | 2021-06-30T04:06:37 | 2021-06-30T04:06:37 | 381,570,150 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 491 | java | package com.dexlace.register;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
/**
* @Author: xiaogongbing
* @Description:
* @Date: 2021/5/18
*/
@EnableEurekaServer
@Sp... | [
"13265317096@163.com"
] | 13265317096@163.com |
50f1461fc0c3fe4b3d7efd54f27e263023831088 | d60e287543a95a20350c2caeabafbec517cabe75 | /LACCPlus/HBase/2520_2.java | 29ad7d8df0a6f262e3ed53f8ad8a467906acfdc8 | [
"MIT"
] | permissive | sgholamian/log-aware-clone-detection | 242067df2db6fd056f8d917cfbc143615c558b2c | 9993cb081c420413c231d1807bfff342c39aa69a | refs/heads/main | 2023-07-20T09:32:19.757643 | 2021-08-27T15:02:50 | 2021-08-27T15:02:50 | 337,837,827 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 688 | java | //,temp,THBaseService.java,7537,7548,temp,THBaseService.java,6633,6644
//,2
public class xxx {
public void onComplete(Void o) {
deleteTable_result result = new deleteTable_result();
try {
fcall.sendResponse(fb, result, org.apache.thrift.protocol.TMessageType.REPLY,seqid);... | [
"sgholami@uwaterloo.ca"
] | sgholami@uwaterloo.ca |
cc89682b99f201851950dab61ac9d1ea1d901a86 | 9e1b3d87a41f662dda21d21fdaadc68651967e21 | /crash_collect/src/main/java/com/emporia/common/util/crash/AlarmSenderService.java | 04671186db5934cc4e33ea8ae0e6c6f385ce5495 | [] | no_license | nzsdyun/CrashCollect | 27dc823f14af72ec1b9623448d44a2ce4df9d05c | c89b93927a3f383ea6ee7b90fe7bdbf38eb5a86b | refs/heads/master | 2021-01-13T08:00:21.282395 | 2016-10-21T01:45:55 | 2016-10-21T01:45:55 | 71,519,450 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,324 | java | package com.emporia.common.util.crash;
import android.app.AlarmManager;
import android.app.IntentService;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.os.IBinder;
import android.os.SystemClock;
import com.emporia.common.util.NetworkUtils;
/**
* use ... | [
"1799058367@qq.com"
] | 1799058367@qq.com |
bea0ccf3b12591b74d50af596905386252401a80 | c4b77a336b7eed3501fc67adbe2e3804414af6e2 | /src/com/zhanglong/sg/service/PayService.java | 417e791cd7c3a67393c9e2550679784eab55b5f2 | [] | no_license | joshua86z/java-jsonrpc-game1 | 0fdd87a24f14e899aa15ec3cb62775ef1a5bced0 | ae6bc13e790168613aa7f10ac08e088e46d794e3 | refs/heads/master | 2021-08-27T15:37:19.281990 | 2015-10-21T02:18:54 | 2015-10-21T02:18:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,749 | java | package com.zhanglong.sg.service;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
import com.zhanglong.sg.dao.BasePayShopDao;
import com.zhanglong.sg.dao.OrderDao;
import com.zhanglong.sg.entity.BasePayShop;
import com.zhanglong.sg.... | [
"fhbzyc@gmail.com"
] | fhbzyc@gmail.com |
ded5ffb3bdf76b6b602698e56ddf9f920f62b690 | 9417528f9ac863334a2d0c9a93b93ca8b95e5b3a | /app/src/main/java/id/ac/polinema/notesapp/fragments/NoteFragment.java | 8727c87477fc35e5934cba534a21b692ed9c8b27 | [] | no_license | syahrinka/SQLite | f29f5739a61d01ea130218b80064df309f2f218f | a7761d9b91c85344eed90fa0de5f83e35bc58df5 | refs/heads/master | 2020-05-09T12:45:13.045704 | 2019-04-13T04:41:28 | 2019-04-13T04:41:28 | 181,118,591 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,396 | java | package id.ac.polinema.notesapp.fragments;
import android.content.Context;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.support.v7.widget.GridLayoutManager;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.w... | [
"syahrinkusuma30@gmail.com"
] | syahrinkusuma30@gmail.com |
27af586b9bf087ce2e5030adb72c26fb0bd3f09e | 5fea7aa14b5db9be014439121ee7404b61c004aa | /src/com/tms/collab/messaging/ui/Line.java | 947b7406135886c6003a026c62f81b6a63453358 | [] | no_license | fairul7/eamms | d7ae6c841e9732e4e401280de7e7d33fba379835 | a4ed0495c0d183f109be20e04adbf53e19925a8c | refs/heads/master | 2020-07-06T06:14:46.330124 | 2013-05-31T04:18:19 | 2013-05-31T04:18:19 | 28,168,318 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 3,371 | java | package com.tms.collab.messaging.ui;
import kacang.ui.Event;
import kacang.ui.Forward;
import kacang.ui.Widget;
/**
* A Line widget, representing the <hr> in html tag.
*/
public class Line extends Widget {
private String align;
private String clazz;
private Boolean noShade = Boolean.... | [
"fairul@a9c4ac11-bb59-4888-a949-8c1c6fc09797"
] | fairul@a9c4ac11-bb59-4888-a949-8c1c6fc09797 |
dc40eef30fcd64f49b02200916456b3997c1a1ad | 4a62df68473121be04215d3daad6d56ad07bb076 | /app/src/main/java/com/example/buiderdream/apehire/utils/JudgeUtils.java | 8d0b9490d07b3744602ec26dca5fa4381a263316 | [] | no_license | yuzelli/ApeHire | 5e01196438b0b02af46dc56a8974ab3d0d23bcd1 | 45d02d13e0d6d4138b1bf95aba4f2dbe5446f983 | refs/heads/master | 2020-06-14T00:13:11.096278 | 2017-03-11T13:36:41 | 2017-03-11T13:36:41 | 75,541,436 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,451 | java | package com.example.buiderdream.apehire.utils;
import android.content.Context;
import android.content.SharedPreferences;
import com.example.buiderdream.apehire.constants.ConstantUtils;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import static android.content.Context.MODE_PRIVATE;
/**
* Created... | [
"516440912@qq.com"
] | 516440912@qq.com |
d147ab648d762dd9c8232a1cbeacf4dbb23fe6c2 | 66af07a10a9c66b68411934a269e966901217d31 | /gulimall-coupon/src/main/java/com/icon/gulimall/coupon/service/impl/SeckillSessionServiceImpl.java | 093e28f389be07935d3656542d96d4f3e0b98c2a | [
"Apache-2.0"
] | permissive | yanking99/gulimall | a6a3b38dcec23a54b95e840c669071a40bb5acd7 | cc080292cba3762633d76b259a622f8237789410 | refs/heads/main | 2023-03-02T13:02:15.333153 | 2021-01-31T15:02:56 | 2021-01-31T15:02:56 | 334,425,941 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,043 | java | package com.icon.gulimall.coupon.service.impl;
import org.springframework.stereotype.Service;
import java.util.Map;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ico... | [
"13250226651@163.com"
] | 13250226651@163.com |
fab34bcb3f5f8332d8db7aeba7563dcd931d8ec1 | 5ac79770afb69a0c8c48d1b92adfd58a90063855 | /src/com/example/algo/twopointer/TwoSum.java | ee4fa8e802444fd545a6215794bcc030af91b1aa | [] | no_license | ashishlahoti/java-interview-programs | 83dac7f567551dcbfb2159602dbf0b7c32302bb2 | e49c009e44f81b56bbebc60da597de2134783c23 | refs/heads/master | 2022-10-14T23:58:20.749880 | 2022-09-23T05:29:35 | 2022-09-23T05:29:35 | 195,247,706 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,394 | java | package com.example.algo.twopointer;
import java.util.*;
public class TwoSum {
public static void main(String[] args) {
int[] numbers = new int[] { -3, 2, 3, 3, 6, 8, 15 };
System.out.println(twoSum_getElements(numbers, 6));
System.out.println(twoSum_getIndex(numbers, 6));
}
publi... | [
"lahoti.ashish20@gmail.com"
] | lahoti.ashish20@gmail.com |
d220daed5538ce40bb04d3801bede08958913310 | 105ff2705396d603b30760cb6e393e2e80e30793 | /internet_Architec/templates/thymeleaf-gtvt/src/main/java/com/asynclife/clonegod/App.java | 3e2c202368112728d8627f7ab970ad55ebd84064 | [] | no_license | clonegod/x01-lang-java | cfa878ccc0e86cace906d47b9c2a3085732fc835 | 640bdd04a47abf97189e761acd020f7d5a0f55e6 | refs/heads/master | 2020-03-13T15:00:36.761781 | 2018-06-06T16:03:32 | 2018-06-06T16:03:32 | 131,169,227 | 2 | 2 | null | null | null | null | UTF-8 | Java | false | false | 591 | java | package com.asynclife.clonegod;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@EnableAutoConfiguration
@C... | [
"asynclife@163.com"
] | asynclife@163.com |
ba6de151979517bf83fc3dcfb5adecb94a9f245b | ef49b2bf76afcd2da90562249dc6f536fb9b5ec6 | /src/com/company/leetcode/before/_6.java | fc3d2ceac08534d2e1f9acf46823bc89bffa87a3 | [] | no_license | rjpacket/JavaAlgorithm | 5f675b7041a8e7e1b51eb1096269cd0a9cd53ef1 | e9cd152c0ef9e326d0b1eb1adba9e1d1ed6c480e | refs/heads/master | 2020-03-11T14:29:27.509536 | 2019-04-10T11:54:10 | 2019-04-10T11:54:10 | 130,056,194 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,851 | java | package com.company.leetcode.before;
/**
* 将字符串 "PAYPALISHIRING" 以Z字形排列成给定的行数:
* <p>
* P A H N
* A P L S I I G
* Y I R
* 之后从左往右,逐行读取字符:"PAHNAPLSIIGYIR"
* <p>
* 实现一个将字符串进行指定行数变换的函数:
* <p>
* string convert(string s, int numRows);
* 示例 1:
* <p>
* 输入: s = "PAYPALISHIRING", numRows = 3
* 输出: "PAHNAP... | [
"jimbo922@163.com"
] | jimbo922@163.com |
7ea7d4f8c8032dc9e70024002f3828efb7054e71 | 06bdaca2b038e0178e6170271905e219dca35206 | /src/additionTask/Teacher.java | d47e8daedcfc4086d432d1c47936734b60d8f53e | [] | no_license | SerhiiDanmark/JavaEssentialLess6_HW | 54cf5019fc9a15cccac32293cf71cf4b5c42da48 | 96d9f7b01c6061b9768a3b9c39a4ad2da70708fa | refs/heads/master | 2023-02-22T20:39:56.196423 | 2021-01-29T17:08:58 | 2021-01-29T17:08:58 | 334,210,937 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 335 | java | package additionTask;
public class Teacher {
String name;
String patronimic;
Teacher (String name, String patronimic){
this.name = name;
this.patronimic = patronimic;
}
public String getName() {
return name;
}
public String getPatronimic() {
return patro... | [
"sergiitrus@gmail.com"
] | sergiitrus@gmail.com |
e480dfe88a7845de18ce2fbca334420ae9e661bf | 170ddb887157313f192ac3459eb0861ddbd36e42 | /app/src/main/java/com/hammersmith/cammembercard/model/MemberCard.java | bed33dd679f8e8ece9a5a9720c3bd8d53ccce54a | [] | no_license | Chanthuon168/CamMemberCard | 224a0b77d69d96454e9f2e9c20739dabedfa59a7 | e020632444ff64795a078277506ebbb6c105c204 | refs/heads/master | 2021-01-18T22:39:45.447043 | 2017-12-05T04:09:22 | 2017-12-05T04:09:23 | 72,593,839 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,031 | java | package com.hammersmith.cammembercard.model;
import android.icu.text.SymbolTable;
import com.google.gson.annotations.SerializedName;
import java.io.Serializable;
/**
* Created by Chan Thuon on 11/22/2016.
*/
public class MemberCard implements Serializable{
@SerializedName("id")
private int id;
@Serial... | [
"chanthuonsreng@gmail.com"
] | chanthuonsreng@gmail.com |
bdb8c109f6fd316084e086f775b8537fcc56b3d3 | f28c2f844467f02ce500f4ff84febcfe94667f2c | /src/test/java/TwitterCollectorTest.java | f3913c74139d4c421f25e1f293c2e31ed8ccaa85 | [] | no_license | MichaelFouche/LetsMine | f7394a7724e3b63d7b937b3f44fb727527ffe943 | aa6ae49b3443f3c94ad5bbba6c5d66bd9ad90f2b | refs/heads/master | 2020-04-10T21:48:22.853074 | 2016-12-31T13:56:23 | 2016-12-31T13:56:23 | 64,610,561 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,359 | 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.
*/
import com.mycompany.letsmine.TwitterCollector;
import com.mycompany.letsmine.controller.DataController;
import com.mycompany.letsmine... | [
"mfouche@impactradius.com"
] | mfouche@impactradius.com |
1c5c4bab3db30c578cd9355d241b3413ac74411b | 794453a0e134c3dab3f21aebd72b98c0c013dd54 | /자바스크립트/TestTV/src/RandomWalk_201712111.java | feb41afd899ed1fc0fe476268c495cdaedeb56a5 | [] | no_license | ccho11/201712111-cho | 411826e5b6e9d9741b861148b4a0427146d05b68 | a1f3549773d191e313fd4c8aef6c2f98388839e3 | refs/heads/master | 2023-02-19T05:17:59.246916 | 2020-12-16T08:53:31 | 2020-12-16T08:53:31 | 321,921,378 | 0 | 0 | null | null | null | null | WINDOWS-1252 | Java | false | false | 688 | java |
public class RandomWalk_201712111 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int dir;
boolean[][] tile = new boolean[10][10];
int x=5,y=5;
for(int step=0; step<20; step++) {
dir=(int)(Math.random()*4);
if(dir==0 && x<9)
x++;
else if(dir==1 && x>0)
x--... | [
"roakd3973@naver.com"
] | roakd3973@naver.com |
4fca1ca5b55e9bdb5197f02ffa1818532cbfc9ad | 4a20de1d81a38a4dd647a58edc4e4345c610ae04 | /app/src/main/java/com/yiqu/iyijiayi/StubActivityNoSoft.java | db7c42adbf9d9856799ebc2b9cc408b28f0b49b2 | [] | no_license | 1227228155/yiqu | 02d840ba1f97f596a8400098903580ee543b27a0 | 9690486db2f5b8f6d94fada01eb1b2081fa4cfee | refs/heads/master | 2020-06-28T03:04:57.119313 | 2017-05-13T09:24:19 | 2017-05-13T09:24:19 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 368 | java | package com.yiqu.iyijiayi;
import android.os.Bundle;
import android.view.WindowManager;
public class StubActivityNoSoft extends StubActivity {
@Override
protected void init(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.init(savedInstanceState);
getWindow().setSoftInputMode(WindowManag... | [
"414119510@qq.com"
] | 414119510@qq.com |
d82c38973e1a5a562fbb6c7efe01758a4b00932c | 6e20485b4932c52bf464248d2cc5568aa3e48f5e | /day32/src/gui/Test35.java | ae6dc2b05bb9c171ef906516b5fdb8d4af2e3696 | [] | no_license | dpfla8628/kh_test | 17716c2f9c9a0e97d1cf5c0f319e570d38d9db96 | f60edebffe7c30e6a088b8c636259fb3552e0975 | refs/heads/master | 2023-03-23T10:18:48.863533 | 2021-03-22T15:07:02 | 2021-03-22T15:07:02 | 301,330,034 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,250 | java |
//카드 뒤집기 정답 만들어보기
package gui;
import java.awt.Color;
import java.awt.Font;
import java.awt.GridLayout;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing... | [
"YR@DESKTOP-HIAR6MN"
] | YR@DESKTOP-HIAR6MN |
0ae82c14e4446f815201d9df1e59b6e9fb99410a | ae7aa2dcd4644b04f6fa93d42c8d41526eb8a05e | /webservice/src/main/java/com/excilys/computerdatabase/webservice/ComputerResource.java | dee4c6acc593fa3c11541487eaa06d6a93552ac8 | [] | no_license | vgalloy/computer-database | 03bf3b2337dab5507e3f9880b552bae3df0ab9c8 | 47d7a2b1150d83e81f3f3549d7f8f2cd1b8ddbe9 | refs/heads/master | 2021-01-21T12:49:43.764243 | 2016-05-27T19:10:39 | 2016-05-27T19:10:39 | 32,086,663 | 0 | 3 | null | null | null | null | UTF-8 | Java | false | false | 262 | java | package com.excilys.computerdatabase.webservice;
import com.excilys.computerdatabase.dto.model.ComputerDto;
/**
* @author Vincent Galloy
* The Interface ComputerResource.
*/
public interface ComputerResource extends CommonResource<ComputerDto> {
}
| [
"vgalloy@excilys.com"
] | vgalloy@excilys.com |
988dec17334a29237fe51b6ef0cdf0f89f17376d | 7a9f4f67610d14532895312750626641ff753e06 | /bbmap/current/structures/ListNum.java | 444ad80b6d909e99065379c76e46c61e1354d2d6 | [
"BSD-3-Clause-LBNL"
] | permissive | IanGBrennan/mitoGenome_Assembly | 8f716cc8ec3ab05c84593e20c5d762aba4021200 | ab056905b8c639af403a6915902ddd70a3bede45 | refs/heads/master | 2022-05-15T04:13:54.579254 | 2022-05-04T06:47:11 | 2022-05-04T06:47:11 | 130,643,442 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,706 | java | package structures;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.Random;
import shared.Shared;
import stream.Read;
public final class ListNum<K extends Serializable> implements Serializable, Iterable<K> {
/**
*
*/
private static final long serialVersion... | [
"ian.brennan@anu.edu.au"
] | ian.brennan@anu.edu.au |
f32b5b4bcaad890495d64b75c8a8bacd53933d4e | e36b75567821bf1b6bf88b2494b53e71e66e09bb | /app/src/main/java/com/example/lab3/InfoPageActivity.java | e11f327e71ec80b464acc4f08a55a618cfabcd96 | [] | no_license | FruteL/Android_lab3_ListView | fafe7fe589fb3d8f7d9ea929c2d3435f7782d325 | 45571bdd1f745fad37f972669566842f8383db59 | refs/heads/master | 2021-04-18T14:41:35.643094 | 2020-03-24T20:05:25 | 2020-03-24T20:05:25 | 249,554,521 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,216 | java | package com.example.lab3;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.TextView;
import butterknife.BindView;
import butterknife.ButterKnife;
public class InfoPageActivity extends AppCompatActivity {
//Привязка элементов ЮИ
... | [
"50375650+FruteL@users.noreply.github.com"
] | 50375650+FruteL@users.noreply.github.com |
355c295d34a932a5399cb11494800487c8809159 | f5f05d8fb678cb48cf7560d462012345cf184fea | /android/app/src/main/java/com/mvp/MainApplication.java | d35b1f4a577b899a16717a15a28e0d83eabd5e56 | [
"MIT"
] | permissive | heiseish/MVP | 054f196750678ba259d1e3e6d6baec77fac4d1c5 | 46c92788fe158550576dbedca199b1a9b1c78bfe | refs/heads/master | 2021-10-27T04:31:30.531696 | 2017-05-15T02:19:13 | 2017-05-15T02:19:13 | 90,938,130 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,040 | java | package com.mvp;
import android.app.Application;
import com.facebook.react.ReactApplication;
import com.oblador.vectoricons.VectorIconsPackage;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.react.shell.MainReactPackage;
import com.facebook.soloader.SoLoader;
i... | [
"dtrnggiang@gmail.com"
] | dtrnggiang@gmail.com |
00e13881e6949e1727b809a9284892c9fdf93e33 | 12bd98d34991e5525d302365a556a58ef3701d0f | /HeuristicPlayer.java | 3eceeb95bfdc8a377154dec990f21270e123a615 | [] | no_license | giannishorgos/University-Project | 4de7c6d11c7e97df1f277a7fdef7985649349a80 | 1d2f0f15b3d891cc475e52757f05db00b1cde03a | refs/heads/master | 2023-02-04T21:00:30.264462 | 2020-12-20T20:14:15 | 2020-12-20T20:14:15 | 310,521,260 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 13,252 | java | //import Player;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
public class HeuristicPlayer extends Player {
private ArrayList<Integer[]> path;
private double movepoints; // the points he collects
private int[] supplydistance; // is an array of 4 integers because hold... | [
"giannis.21.osfp@gmail.com"
] | giannis.21.osfp@gmail.com |
1d5c72896b3d26208796d94ad2d8a4fd08d38381 | 05f93af3af103472b2b54b5b1031787dbde3ce7c | /src/xiang_music_player/NeuQuant.java | ee801728abe313b8b7aa7cad8f78ab398c4ff68f | [] | no_license | Feynman1999/xiang_music_player | 212f9902feed57ead89648e1687755a9759826ac | b0a135b2e97ca661aa77907858368118c6a20980 | refs/heads/master | 2020-04-04T22:49:47.005974 | 2018-11-06T07:17:42 | 2018-11-06T07:17:42 | 156,337,366 | 7 | 3 | null | null | null | null | UTF-8 | Java | false | false | 12,690 | java | package xiang_music_player;
/* NeuQuant Neural-Net Quantization Algorithm
* ------------------------------------------
*
* Copyright (c) 1994 Anthony Dekker
*
* NEUQUANT Neural-Net quantization algorithm by Anthony Dekker, 1994.
* See "Kohonen neural networks for optimal colour quantization"
* in "Network: Comp... | [
"chenyx.cs@gmail.com"
] | chenyx.cs@gmail.com |
895846b132c4f458b9f0f30e50797fd9c765b0d5 | 1b607ec3c4dc0bd5ff6130f441d0045f173fc2cb | /src/main/java/test/java/TestMyBatis.java | 60e55ec397f5a6f64cfdf63eb75399cae0aaec62 | [] | no_license | jjxxff20000/wangmd | cbbbe5ff0622e82c27fb0bb02595ce92bbbba851 | 058bc5aa2c3295ff48243150c0f018d4c3e4f890 | refs/heads/master | 2021-01-18T08:33:07.356166 | 2017-03-08T09:44:49 | 2017-03-08T09:44:49 | 84,305,776 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 798 | java | package test.java;
import javax.annotation.Resource;
import com.wangjie.spring.model.User;
import com.wangjie.spring.service.UserService;
import org.apache.log4j.Logger;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test... | [
"15810415279@163.com"
] | 15810415279@163.com |
af026ac0d3ea7fe053b1cb3dd96b51f573601cc7 | f3cb06dbe4e38081b3d183854904fdbcb46a6612 | /Code/Framework/org.deltaecore.feature.configuration.resource.deconfiguration/src/org/deltaecore/feature/configuration/resource/deconfiguration/analysis/DEVersionSelectionFeatureReferenceResolver.java | 9b7736e9829c5b5b40d0b4e65a14d4e62284c3cd | [
"Apache-2.0"
] | permissive | chseidl/deltaecore | 0e042d575f02de3f87e7c153a6710efb0c23870c | d1dee57f60a7e5be823c83a934c7736da1ac2c48 | refs/heads/main | 2023-06-17T07:23:41.572338 | 2021-07-08T16:04:32 | 2021-07-08T16:04:32 | 331,638,072 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,460 | java | /**
* <copyright>
* </copyright>
*
*
*/
package org.deltaecore.feature.configuration.resource.deconfiguration.analysis;
import java.util.Map;
import org.deltaecore.feature.DEFeature;
import org.deltaecore.feature.configuration.DEVersionSelection;
import org.deltaecore.feature.configuration.resource.deconfigurat... | [
"chse@itu.dk"
] | chse@itu.dk |
60a598cd626e95987b282d5e94c0d2ab06b0377c | 8d1bfea7c95e7ded4052d39b779f2f40deca38ac | /src/main/java/com/jaeksoft/opensearchserver/GraphQLSchemaBuilder.java | 2782e5c5d41870ee0cca4b3f5145c1c538d83da9 | [
"Apache-2.0"
] | permissive | naveenann/opensearchserver | 96d7ab2098dbbbac0b7011c056a1662a0f4317c6 | 8f381680fabc11a838c0afd54b74d401ec04434c | refs/heads/master | 2022-09-17T17:59:03.772289 | 2022-06-03T02:55:21 | 2022-06-03T02:55:21 | 20,827,329 | 0 | 0 | Apache-2.0 | 2022-09-16T21:08:30 | 2014-06-14T07:21:53 | Java | UTF-8 | Java | false | false | 27,454 | java | /*
* Copyright 2017-2021 Emmanuel Keller / Jaeksoft
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless requ... | [
"ekeller@open-search-server.com"
] | ekeller@open-search-server.com |
35547d4b6288b8f090d31f9d82d0fd1a16e6889d | c73de4360b45a7b3cd6de5bcaa771f4e161106e6 | /src/main/java/tasks/Task.java | c4c662f286747be90ca717f779f526e23b5361db | [] | no_license | loycatherine/duke | 564ff4eaabc4214040550a172c8070408b893014 | c4e61cff09c1522fa579b429564b80d99e056b06 | refs/heads/master | 2020-12-13T16:51:29.725209 | 2020-02-20T04:51:42 | 2020-02-20T04:51:42 | 234,476,583 | 0 | 0 | null | 2020-02-24T14:51:09 | 2020-01-17T05:22:34 | Java | UTF-8 | Java | false | false | 1,379 | java | package tasks;
/**
* Represents a task that needs to be completed.
* It contains a description of the task,
* and a boolean isDone that states if the task is completed or not.
*/
public class Task {
protected String description;
protected boolean isDone;
protected String note;
public Task(String ... | [
"catherineloy99@gmail.com"
] | catherineloy99@gmail.com |
931bbdd2b011dbfda28efa7be66be77950a1afc5 | ca19e1bd4de0f58166bcbb2920fd05affa753814 | /src/xyz/hui_yi/keywords/servlet/CompanyInfoServlet.java | 740ef6c7299a50b88a98cff4d5007b6bf876cff7 | [] | no_license | li-fengjie/keyword | be501e6497f65dd51c7301f8ce1b2203ffd6edc1 | bea6986469c79b2d6030e4bc07facacc728c92f4 | refs/heads/master | 2020-12-11T10:22:18.772474 | 2020-01-26T05:07:35 | 2020-01-26T05:07:35 | 233,821,179 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,649 | java | package xyz.hui_yi.keywords.servlet;
import net.sf.json.JSONObject;
import xyz.hui_yi.keywords.bean.CompanyPageBean;
import xyz.hui_yi.keywords.dao.CompanyDao;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServle... | [
"li-fengjie@qq.com"
] | li-fengjie@qq.com |
e40a28710e7f36e881294d6866f0c3d8fa410fcd | dc4afb311cdf3550c4429617cbbd92402d92f3f0 | /Qa14HomeWork_005/HomeWork005.java | 1306fa9ce436c74c86eb1af002920a23fdc31f72 | [] | no_license | 61swan/Qa14HomeWorkJava | 39486dce9368b408fa7f8aae6377ff4a9115d659 | c219a7816bd0754ec2db0ec47d05098df0efdc74 | refs/heads/master | 2020-08-16T12:37:53.025546 | 2019-11-30T18:43:48 | 2019-11-30T18:43:48 | 215,502,538 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,616 | java | package Qa14HomeWork_005;
import java.util.Scanner;
public class HomeWork005 {
public static void main(String[] args) {
// Первое задание
//1. Ввести число, и определить – чётное оно, или нет.
System.out.println("\nПервое задание");
System.out.println("Введите число: ");
Scanner scanner =... | [
"61swan@gmail.com"
] | 61swan@gmail.com |
f1807489b0fe096a4bfdfe695f4fd500d50e5107 | f08256664e46e5ac1466f5c67dadce9e19b4e173 | /sources/org/joda/time/p699tz/ZoneInfoProvider.java | a2670fa446338be62d0f684e3b92b85bb7b228a6 | [] | no_license | IOIIIO/DisneyPlusSource | 5f981420df36bfbc3313756ffc7872d84246488d | 658947960bd71c0582324f045a400ae6c3147cc3 | refs/heads/master | 2020-09-30T22:33:43.011489 | 2019-12-11T22:27:58 | 2019-12-11T22:27:58 | 227,382,471 | 6 | 3 | null | null | null | null | UTF-8 | Java | false | false | 8,605 | java | package org.joda.time.p699tz;
import java.io.DataInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.lang.ref.SoftReference;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.Collections;
impo... | [
"101110@vivaldi.net"
] | 101110@vivaldi.net |
75498d056bc2173c66070d6eec23f4d17c749b22 | 6fd6e28aa2975e9bc5b1d086525d314c8d139402 | /src/test/java/com/teedjay/rest/resources/UsersResourceIT.java | 69d5fc9facf3b74f4c658c4b41cfabb0bc47bbd1 | [] | no_license | teedjay/playground-rest | 345c10813c91e968d1e4134be5ce0f894c1f1e59 | 2e9cffc8c8ebe5ecc7faeb2e5c99e4b781f95d92 | refs/heads/master | 2021-05-16T11:29:40.399352 | 2017-11-08T09:08:13 | 2017-11-08T09:08:13 | 105,017,481 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,605 | java | package com.teedjay.rest.resources;
import com.teedjay.rest.JAXRSConfig;
import com.teedjay.rest.factories.CrazyServiceFactory;
import com.teedjay.rest.factories.CrazyServiceMockFactory;
import com.teedjay.rest.services.TextService;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian... | [
"thore.johnsen@evry.com"
] | thore.johnsen@evry.com |
6cb8a0c069044ce959ed626955638456e2ce9856 | bbe10639bb9c8f32422122c993530959534560e1 | /delivery/app-release_source_from_JADX/com/google/android/gms/common/internal/zzaa.java | e07b9dca1e507f413c78e4192c450b8da84a58e3 | [
"Apache-2.0"
] | permissive | ANDROFAST/delivery_articulos | dae74482e41b459963186b6e7e3d6553999c5706 | ddcc8b06d7ea2895ccda2e13c179c658703fec96 | refs/heads/master | 2020-04-07T15:13:18.470392 | 2018-11-21T02:15:19 | 2018-11-21T02:15:19 | 158,476,390 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,068 | java | package com.google.android.gms.common.internal;
import android.os.Parcel;
import android.os.Parcelable.Creator;
import com.google.android.gms.common.api.Scope;
import com.google.android.gms.common.internal.safeparcel.zza;
import com.google.android.gms.common.internal.safeparcel.zzb;
public class zzaa implements Creat... | [
"cespedessanchezalex@gmail.com"
] | cespedessanchezalex@gmail.com |
80ce799ba1b2fb9de0f433c2aa1f38a2daaa8a5c | 0c0ee31254469fdc4643c807b12b05ee1aa28f34 | /src/org/sc205/view/GameRenderer.java | 5e8f21419e351c83794eb93b353422a35ebab21d | [] | no_license | hbrednek/islsScore | cc7dbec4f58999bf16794e364eeec5730cf5d880 | 7f64140981c25f3d0d2d2a645023af63dc33a982 | refs/heads/master | 2021-06-06T17:59:01.087203 | 2020-05-26T00:09:00 | 2020-05-26T00:09:00 | 1,565,462 | 0 | 0 | null | 2020-05-26T00:03:44 | 2011-04-04T03:52:59 | Java | UTF-8 | Java | false | false | 5,319 | java | /*
* Copyright 2011 Michael R. Elliott <mre@m79.net>.
*
* 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... | [
"mre@m79.net"
] | mre@m79.net |
25dbd0a8a752c75d72a33a3c8d65dc307564a09c | eb7ad66a86eb1600910e9a5bee0303a405536ae7 | /app/src/androidTest/java/com/turath/masael/ExampleInstrumentedTest.java | dcb6e8a3ee60dcc4409ac425251e25a6123c070b | [] | no_license | FatimaAli-k/Masael | ab0e6b5a823aa7434d159fea87a0ed4dc6d92cdb | f4f009e86deca5ae9c8ca519390e893614ee3f46 | refs/heads/master | 2022-10-02T18:34:32.907967 | 2020-06-09T08:54:00 | 2020-06-09T08:54:00 | 270,968,127 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 750 | java | package com.turath.masael;
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 an An... | [
"capt.fatimaali@gmail.com"
] | capt.fatimaali@gmail.com |
2d20123dfb4c8feb4cfed270954ebe1dc364490b | 40eeda945764a0f061188d90e3c84e82693b9e12 | /src/com/sunsheen/jfids/studio/wther/diagram/compiler/util/TransactionCodeUtil.java | be444000d5dc45f7fa1f5fa53f797256880231e3 | [] | no_license | zhouf/wther.diagram | f004ca8ace45cceb65345d568b1b9711bc14c935 | 6508d0a63c79f48b1543f191fef5a48c8d4b28b7 | refs/heads/master | 2021-01-20T18:53:05.000033 | 2016-07-23T15:08:07 | 2016-07-23T15:08:07 | 63,996,960 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,234 | java | package com.sunsheen.jfids.studio.wther.diagram.compiler.util;
/**
* 这是生成JAVA事务相关代码的一个类
* @author zhoufeng
* Date:2013-12-18
*/
public class TransactionCodeUtil {
private static String varPrefix = "idsSession";
private static String sessionVarName = "";
public static void setSessionVarName(String varName) {
... | [
"zhouf_t@sohu.com"
] | zhouf_t@sohu.com |
48a16937826ae4f8797445ba925b0cd8a1b1563f | f319ca2889a00a8e01b6a0d48e86d012115c85f5 | /src/test/java/com/wang/jmonkey/test/modules/ieg/ImportSchoolParam.java | 9002871b2858b38dce8c2a3c72128b7405895903 | [] | no_license | hejiawang/ieg | 016fa29b7559971cbc87bf78bb9063869082d8e8 | 9f48ee0f1ca61dc09d1ea6432a8372751957a75b | refs/heads/master | 2022-07-06T20:54:50.481108 | 2019-12-18T11:47:24 | 2019-12-18T11:47:24 | 182,397,642 | 0 | 1 | null | 2022-06-17T02:07:18 | 2019-04-20T11:29:38 | Java | UTF-8 | Java | false | false | 1,193 | java | package com.wang.jmonkey.test.modules.ieg;
import com.wang.jmonkey.common.utils.poi.annotation.ExcelField;
import lombok.Data;
import lombok.experimental.Accessors;
@Data
@Accessors(chain = true)
public class ImportSchoolParam {
/**
* 批次代码 专科批7 本科批3
*/
@ExcelField(title="pcdm", align=2)
private... | [
"952327407@qq.com"
] | 952327407@qq.com |
ced9efb35d0fb40fea227c12f92a355dd36ff5cc | 14f5bd82e986793cb4d455af7d2cc4751afc5608 | /src/main/java/com/arbade/gjc/service/LeaderboardService.java | bbee469a63658fb15cf7ba2e03ab1f1f8b0989d5 | [] | no_license | yurtseveronr/case | 6caea26f30ed3ce768b2eee7c80577d1627d1472 | 79070e018927398a167904620c282dccdad9ea89 | refs/heads/master | 2023-09-03T15:53:54.863595 | 2021-11-03T12:52:20 | 2021-11-03T12:52:20 | 423,768,884 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,177 | java | package com.arbade.gjc.service;
import com.arbade.gjc.mapper.LeaderboardMapper;
import com.arbade.gjc.model.entity.Leaderboard;
import com.arbade.gjc.repository.LeaderboardRepository;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
import java.util.List;
@Slf4j
@Service
public clas... | [
"yurtseveronr@gmail.comgit config --global user.email yurtseveronr@gmail.com"
] | yurtseveronr@gmail.comgit config --global user.email yurtseveronr@gmail.com |
72227690f4c0da289991da7e313764d93a58da96 | a00326c0e2fc8944112589cd2ad638b278f058b9 | /src/main/java/000/136/434/CWE369_Divide_by_Zero__int_database_modulo_01.java | ecd9ba4ce04be46152455dedf1c7d588e423ccad | [] | no_license | Lanhbao/Static-Testing-for-Juliet-Test-Suite | 6fd3f62713be7a084260eafa9ab221b1b9833be6 | b095b11c7cb6d4a5bb2b76181e35d6ee00e96e68 | refs/heads/master | 2020-08-24T13:34:04.004149 | 2019-10-25T09:26:00 | 2019-10-25T09:26:00 | 216,822,684 | 0 | 1 | null | 2019-11-08T09:51:54 | 2019-10-22T13:37:13 | Java | UTF-8 | Java | false | false | 7,643 | java | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE369_Divide_by_Zero__int_database_modulo_01.java
Label Definition File: CWE369_Divide_by_Zero__int.label.xml
Template File: sources-sinks-01.tmpl.java
*/
/*
* @description
* CWE: 369 Divide by zero
* BadSource: database Read data from a database
* GoodSource: A hardcoded ... | [
"anhtluet12@gmail.com"
] | anhtluet12@gmail.com |
c4fb8cf1b4b141aa5de69315f6cab163561c346b | 3d191f403e8439c36b3184413064b9e59463fbcc | /test/level18/lesson10/home10/Solution.java | bdb4ac0041a9b0f78df457fe24d4bc86f94b5055 | [] | no_license | baltber/Javarush | 5e5a8a477da0110771feca3b9f0a39d5e8f6cb46 | 76c3368b656eeeb13d0b111b7060fb491adb1b9a | refs/heads/master | 2021-01-12T10:21:55.012051 | 2016-12-26T06:32:00 | 2016-12-26T06:32:00 | 76,435,446 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,309 | java | package com.javarush.test.level18.lesson10.home10;
/* Собираем файл
Собираем файл из кусочков
Считывать с консоли имена файлов
Каждый файл имеет имя: [someName].partN. Например, Lion.avi.part1, Lion.avi.part2, ..., Lion.avi.part37.
Имена файлов подаются в произвольном порядке. Ввод заканчивается словом "end"
В папке, ... | [
"D:\\MAIL"
] | D:\MAIL |
bca9df12fafee6ccc423041baf8d8847a0362977 | 1278ad27f89b31b085a74bb0add38bbea59ed10c | /src/main/java/com/example/serverdemo/config/RabbitMQConfig.java | 3b1ea94330bc3f32568252597930083d0e25041e | [] | no_license | zhengxiaomao/server-demo | c12a7209f85718cbe127ada32d5ef372e67f05cc | 5165361e764e80a968dcc66c5b0e5066938196b6 | refs/heads/master | 2023-02-17T09:16:45.953835 | 2021-01-18T13:56:22 | 2021-01-18T13:56:22 | 330,398,977 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,409 | java | package com.example.serverdemo.config;
import org.springframework.amqp.core.*;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class RabbitMQConfig {
//交换机名称
p... | [
"976132880@qq.com"
] | 976132880@qq.com |
b9000f794dfed0cd60d6f066c699a7647603a8d5 | 90df191343d4b33a0627c71cbf717535f68627eb | /src/main/java/com/lx/weixin/httpClient/FileUploadUtil.java | 65d9d0d3955958a992a4b8deb6ae7f268e3d29c1 | [] | no_license | zhangguangyong/weixin_demo | 9b1c28bcea9ac06c063d5a4971b93f5f28ce7315 | 4040b375d736cad2065db1610ad73f8d93a143e4 | refs/heads/master | 2021-01-12T08:14:52.485098 | 2016-03-08T14:55:40 | 2016-03-08T14:55:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,068 | java | package com.lx.weixin.httpClient;
import java.io.File;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.Iterator;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
impor... | [
"412506897@qq.com"
] | 412506897@qq.com |
cb489abe12888f72cefb5474c8497e8d1c4f698a | 69345eb30548dca0901d35314830c6239488ee74 | /bizleap-ds/bizleap-ds-loader/src/main/java/com/bizleap/training/ds/loader/impl/CompanySaverImpl.java | 75484eddf6c728267677791c07107a73ee969f05 | [] | no_license | BizleapIntern/ayeayekhaingds | bad786a50721d64b819057f81bd8614752fb0c4f | 1e98c73b782518af89f574ab0cfde73df6b9bca7 | refs/heads/master | 2020-03-18T05:54:36.342220 | 2018-05-23T10:41:10 | 2018-05-23T10:41:10 | 134,367,267 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,431 | java | package com.bizleap.training.ds.loader.impl;
import java.io.IOException;
import java.util.List;
import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.bizleap.common.domain.utils.Printer;
import com.bizleap.co... | [
"bizleapinternship@gmail.com"
] | bizleapinternship@gmail.com |
7517d85b0767b848f32be001204a80198d9d8337 | 75562394b7bd8e99db61378bdab63e680abf9774 | /app/src/mock/java/com/khangtoh/android/testing/notes/util/FakeImageFileImpl.java | b4d39e3c4a7f81c233bb402a4261654ce9137839 | [
"Apache-2.0"
] | permissive | khangtoh/gdgdevfest-demo | e1777b90f04e0b8aab75f0e290d8ba821869a406 | b94dc593f36f3b5544a89d216c56a868eeaaae6b | refs/heads/master | 2021-01-13T14:19:28.133277 | 2016-11-05T02:59:40 | 2016-11-05T02:59:40 | 72,811,749 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,144 | java | /*
* Copyright 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 applic... | [
"khang@picocandy.com"
] | khang@picocandy.com |
ddecbf1203fce55b02ab9951c1837c455a92f613 | b4605cb18467c3cd0665e5e732d76fd11da07805 | /src/main/java/org/ozoneplatform/service/ListingService.java | c0acc826926954f606f8ea0bee586879f85d5c53 | [] | no_license | rpokorny/jaxrs-dtos-test | baf1ce2bb03e82ee66353f761f20549c1527e39a | ab019eb5808666aea98ccae8998f7113fed41ad9 | refs/heads/master | 2016-09-08T05:04:03.207265 | 2014-07-23T15:10:27 | 2014-07-23T15:10:27 | 22,084,734 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 265 | java | package org.ozoneplatform.service;
import org.springframework.stereotype.Service;
import org.ozoneplatform.entity.Listing;
@Service
public class ListingService extends AbstractEntityService<Listing> {
ListingService() {
super(Listing.class);
}
}
| [
"ross.pokorny@nextcentury.com"
] | ross.pokorny@nextcentury.com |
258f5b8cf44df239a8a4a7a9aa5b1adef7c01dc0 | 69ec2ce61fdb31b5f084bfbb13e378734c14c686 | /org.osgi.test.cases.framework.secure/src/org/osgi/test/cases/framework/secure/classloading/tb6c/Activator.java | 2cc737ec457d9353a375802c99abceb23189757b | [
"Apache-2.0"
] | permissive | henrykuijpers/osgi | f23750269f2817cb60e797bbafc29183e1bae272 | 063c29cb12eadaab59df75dfa967978c8052c4da | refs/heads/main | 2023-02-02T08:51:39.266433 | 2020-12-23T12:57:12 | 2020-12-23T12:57:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,673 | java | /*
* Copyright (c) OSGi Alliance (2004, 2016). All Rights Reserved.
*
* Implementation of certain elements of the OSGi Specification may be subject
* to third party intellectual property rights, including without limitation,
* patent rights (such a third party may or may not be a member of the OSGi
* Alliance). ... | [
"hargrave@us.ibm.com"
] | hargrave@us.ibm.com |
0af587d1b9c288765dd932482ab3ba2738557ade | e52d4743824df64085fa782b7fc2245e9ee564b0 | /core-persistence/src/main/java/com/red/persistence/service/LoginAttemptBlocker.java | 4ff7654640fb22b7b37960f939a585b71968684f | [] | no_license | redzi/engineerTh | 6de854d8c494293023d07a832d4c0456af05ef18 | 100b45a5ee502250d44ee22a7fb576893f12a26c | refs/heads/master | 2020-12-24T16:24:04.540495 | 2016-05-14T16:01:28 | 2016-05-14T16:01:28 | 33,371,578 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 244 | java | package com.red.persistence.service;
/**
* Created by tom on 2015-05-02.
*/
public interface LoginAttemptBlocker
{
void loginSuccessful(String key);
public void loginFailed(String key);
public boolean isBlocked(String key);
}
| [
"redzi44@gmail.com"
] | redzi44@gmail.com |
c678a543680b7a04e54f140baac953a16d78f1e3 | 64db7bdca1ba3d7478a747944a82e53b55407338 | /In_The_Dark/core/src/com/mygdx/spaceshooter/models/Grass.java | 97487c4d8b9bcf4e68a25e080bc16599facee9db | [] | no_license | ahlebnikov1995/Project-X | 4519d2f89e93421cc502c41a48295ef444b2eb7f | adc5fa1f2413437b4dacc92e6794ea2039d91f4b | refs/heads/main | 2023-06-27T14:44:47.318995 | 2021-07-30T09:18:44 | 2021-07-30T09:18:44 | 347,471,896 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,120 | java | package com.mygdx.spaceshooter.models;
import com.badlogic.gdx.graphics.Texture;
import com.mygdx.spaceshooter.screens.GameScreen;
public class Grass extends GameObject {
Texture v1;
Texture v2;
Texture v3;
Texture curTexture;
public Grass(float y, float x, Texture v1, Texture v2, Texture v3){
... | [
"72694799+ahlebnikov1995@users.noreply.github.com"
] | 72694799+ahlebnikov1995@users.noreply.github.com |
60d358b91d46b06ff88b4e0887a6f120613b97bf | 0d02b41e08b9d2a04507633a950999fccd270714 | /src/ood/practices/package-info.java | 3bcad4b53324409f705b617bb6a79665f7111d60 | [] | no_license | macchicken/designpatterns | 8ce5c33453ee2a61953b59521331ced2c14191b2 | 7e7dd1e57aeaa372c689a5ba2a9634d1614a9b52 | refs/heads/master | 2021-01-10T07:44:59.810574 | 2015-12-01T01:40:01 | 2015-12-01T01:40:01 | 47,156,914 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 62 | java | /**
*
*/
/**
* @author Barry
*
*/
package ood.practices; | [
"log525lg100@gmail.com"
] | log525lg100@gmail.com |
9b919e72d638404c75d5526146a5d01afa9907c9 | 04cd093ef7d26b67dc9fe2b9981caeb4ec238bce | /src/main/java/com/github/tj123/jhi1/repository/package-info.java | 5159cf7a6c6e1427044be47c4f1af095b8eccbb7 | [] | no_license | tj123/jhi1 | d52e0069a1d78d02134875879c3c411310279896 | 6e754e0255893cd32ebffebe0061a0a22f841c69 | refs/heads/master | 2021-01-20T04:12:24.850578 | 2017-04-28T02:43:20 | 2017-04-28T02:43:20 | 89,657,374 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 83 | java | /**
* Spring Data JPA repositories.
*/
package com.github.tj123.jhi1.repository;
| [
"tang123jian@126.com"
] | tang123jian@126.com |
4b9e566756e747bbceead55d1b58dc972c2bdd29 | 6c66b93a9a031e6af6bb50efcb8057dabd067d07 | /FirebaseIntegration/backend/build/tmp/appengineEndpointsExpandClientLibs/myApi-v1-java.zip-unzipped/myApi/src/main/java/com/example/jaibock/myapplication/backend/myApi/model/MyBean.java | b9be498101e2936fd5bb5bb2aee0341d4ceb0b06 | [
"Apache-2.0"
] | permissive | jpolarinakis/group-task-app | c2921ff6d574e3343ac04d9f44b20f8aa5adf85b | c391c7567072d73ac57357436655f54ccf349f4e | refs/heads/master | 2021-01-12T13:40:26.634282 | 2016-12-01T02:08:49 | 2016-12-01T02:08:49 | 69,217,309 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,938 | java | /*
* 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 in writing, software distributed under t... | [
"jaibock@hotmail.com"
] | jaibock@hotmail.com |
6717fa4e83b2f4ea75508e6b0d5d14fa15f1ca8d | 942ba333d8909d52929c62568b4b8b3a2f8d4977 | /app/src/main/java/in/paraman/restsample/model/Sample.java | f3d44ed56dd2b0b9d62bbcc8fea52d1ab3e2f84a | [] | no_license | paramitapal/RecyclerViewSample | d3e14c923214f2e7325dca5bd9cfaf27b0e9dd0b | 36fc9e56de86fa329de37bd5ff24759a5aa76aa0 | refs/heads/master | 2020-03-26T04:41:34.748470 | 2018-08-13T01:59:43 | 2018-08-13T01:59:43 | 144,516,968 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 401 | java | package in.paraman.restsample.model;
public class Sample {
private String text;
private String imageUrl;
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public String getImageUrl() {
return imageUrl;
}
publ... | [
"pal.paramita91@gmail.com"
] | pal.paramita91@gmail.com |
c170d900161cf087d545172a6f7cfc85b729b105 | 5505488ccb3109ce0c4cb2d673cd1d4099114582 | /Ch01/src/ch02/service/UserNotFoundException.java | cfea2231a1c1199d228189aecf1e9d795a7ab49f | [] | no_license | BangJinHyeok/Test0 | 9b2081314ab3a3443a458a1e98755e95eda91d56 | e7b61e98cbd1cd10a697b5d635b971509a65958e | refs/heads/master | 2023-01-13T21:33:28.818724 | 2020-10-05T02:17:03 | 2020-10-05T02:17:03 | 301,167,171 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 116 | java | package ch02.service;
@SuppressWarnings("serial")
public class UserNotFoundException extends RuntimeException {
}
| [
"bang1541sky@gmail.com"
] | bang1541sky@gmail.com |
9bff82969ec6a2555cba0bef7bca17597518163a | 643412c979e3d93a94d40469490da6ff27a8039d | /app/src/main/java/com/abantaoj/tweeter/ui/login/LoginActivity.java | da28db13f7b6247abe2568d5d8d4b487887baaba | [
"Apache-2.0"
] | permissive | jonabantao/tweeter | 8b75a6f4f4bd1c23afd15f0894fd3a702e47411e | 95d2a6a5f6dd4f42ed2e8471469ccd8faae02522 | refs/heads/main | 2022-12-30T12:33:46.129033 | 2020-10-17T01:32:49 | 2020-10-17T01:32:49 | 301,030,360 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,168 | java | package com.abantaoj.tweeter.ui.login;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.widget.Toast;
import com.abantaoj.tweeter.R;
import com.abantaoj.tweeter.services.TwitterClient;
import com.abantaoj.tweeter.ui.timeline.TimelineActivity;
import com.codepa... | [
"jonabantao@gmail.com"
] | jonabantao@gmail.com |
24450f685b40d56d8a79b8975449b5c689c00c49 | 6a7d06b6b9093e0ac936f52861ebfc436c725d05 | /clase7/Veterinaria.java | b59116ff79177df22ac20330e7108d33c86c0518 | [] | no_license | locchiato/clases-poo | 5dc03bc0587422486560417d84603e9738d938e7 | 796a0b7fb7fc6dd1ce3dcaeb0fc0c03fde1140e3 | refs/heads/master | 2023-06-24T16:05:21.696598 | 2021-08-01T02:32:59 | 2021-08-01T02:32:59 | 372,693,375 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 949 | java | package clase7;
public class Veterinaria {
public static void main(String[] args) {
String arrayNombres[] = {"Manchitas", "Nemo", "Silvestre", "Manuelita", "Gardel"};
int arrayEdades[] = {2, 1, 3, 12, 1};
String arrayCantidadAlimento[] = {"2 kilos y medio", "140 gramos", "medio kilo", "300... | [
"leandro.occhiato@gmail.com"
] | leandro.occhiato@gmail.com |
58a85e9898dd7a866915cf81f4eb72b4aa7092e5 | 5fdd9cf2d33fee48d343cf0d2fa37f2a40c0b372 | /online_edu_service/src/main/java/com/atguigu/edu/controller/EduTeacherController.java | a32d8b557b925cb5bbe3c567c59be9b08784fad3 | [] | no_license | hahagioi998/online_edu_parent | 4c88d6eab54388e2c602dc620c69a3984a4fe798 | 51e9bab41404aa273450cc989cb03cb70200921b | refs/heads/master | 2023-05-12T23:59:07.369124 | 2020-05-11T11:18:57 | 2020-05-11T11:18:57 | 485,859,282 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,243 | java | package com.atguigu.edu.controller;
import com.atguigu.edu.entity.EduTeacher;
import com.atguigu.edu.service.EduTeacherService;
import com.atguigu.request.TeacherConditon;
import com.atguigu.response.RetVal;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.springframework.beans.factory.an... | [
"18235757166@163.com"
] | 18235757166@163.com |
c762958a6b55c8405ed814814caff8fece32fd35 | 1ce518b09521578e26e79a1beef350e7485ced8c | /source/app/src/main/java/com/google/gson/internal/p.java | 3cd1d7bce74ecbcf9374f32d079cf7d105b8e9ce | [] | no_license | yash2710/AndroidStudioProjects | 7180eb25e0f83d3f14db2713cd46cd89e927db20 | e8ba4f5c00664f9084f6154f69f314c374551e51 | refs/heads/master | 2021-01-10T01:15:07.615329 | 2016-04-03T09:19:01 | 2016-04-03T09:19:01 | 55,338,306 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,679 | java | // Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/kpdus/jad.html
// Decompiler options: braces fieldsfirst space lnc
package com.google.gson.internal;
import com.google.gson.Gson;
import com.google.gson.TypeAdapter;
import com.google.gson.reflect.TypeToken;
imp... | [
"13bce123@nirmauni.ac.in"
] | 13bce123@nirmauni.ac.in |
0c7e57b819c13d244df56fbdde7ab63a1dc14067 | 261354cfb9111edd9a78b5cabaca64af9687628c | /src/main/java/com/megacrit/cardcrawl/mod/replay/modifiers/ChaoticModifier.java | 8d33f2ff7fe1333fe7bfa8fe2167b585fba05aa2 | [] | no_license | The-Evil-Pickle/Replay-the-Spire | 1c9258bd664ba0ff41f79d57180a090c502cdca3 | 1fcb4cedafa61f32b3d9c3bab2d6a687f9cbe718 | refs/heads/master | 2022-11-14T15:56:19.255784 | 2022-11-01T13:30:14 | 2022-11-01T13:30:14 | 122,853,479 | 39 | 19 | null | 2022-11-01T13:30:15 | 2018-02-25T16:26:38 | Java | UTF-8 | Java | false | false | 757 | java | package com.megacrit.cardcrawl.mod.replay.modifiers;
import com.megacrit.cardcrawl.core.CardCrawlGame;
import com.megacrit.cardcrawl.daily.mods.AbstractDailyMod;
import com.megacrit.cardcrawl.helpers.ImageMaster;
import com.megacrit.cardcrawl.localization.RunModStrings;
public class ChaoticModifier extends AbstractDa... | [
"tobiaskipps@gmail.com"
] | tobiaskipps@gmail.com |
8ab5b70a6124315ccacf61ae03afe7e478633f82 | 21e4610f13e51f27f4fa2968927ad9532884852a | /src/main/java/model/Pawn.java | f1f1692af3e10b152d91e1256e37af8a77db6999 | [] | no_license | mbogaz/chess_ai | 542eed8dd74c1b5bceae751c60e0f6c31321b43e | c81f7fe042268e3ce64aeb652235ac1169c1050e | refs/heads/master | 2022-11-18T11:01:04.469456 | 2020-07-20T10:50:04 | 2020-07-20T10:50:04 | 281,060,771 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 192 | java | package model;
import type.Side;
public class Pawn extends Piece {
public Pawn(Side side) {
super(side);
}
public String getDisplayName() {
return "P";
}
}
| [
"mbogaz93@gmail.com"
] | mbogaz93@gmail.com |
1a79c84416c9592a05ffa2672cf3757e6762c19d | d32ee6461c5e726ee0c0b1ef48c89076fbb28650 | /src/_09_obedient_robot/obidient_robot.java | d7bf2352691676966b3804831bb8634e1a091825 | [] | no_license | League-Level0-Student/level-0-module-5-DerekHSA | 5821283525b9798a1e678c298a4b5905e0c424fb | fb3bb7586070ac5a9a207addf18d2b630690434f | refs/heads/master | 2021-01-26T10:43:51.773650 | 2020-03-19T21:10:05 | 2020-03-19T21:10:05 | 243,409,023 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,785 | java | package _09_obedient_robot;
import javax.swing.JOptionPane;
import org.jointheleague.graphical.robot.Robot;
public class obidient_robot {
static Robot Jojo = new Robot("batman");
public static void main(String[] args) {
Jojo.setSpeed(1000);
Jojo.setPenWidth(1000);
String Shape=JOptionPane.showInputDia... | [
"55466846+DerekHSA@users.noreply.github.com"
] | 55466846+DerekHSA@users.noreply.github.com |
340d4800500cd728a703f5f5ae88db6a46abd1f7 | f7c967d88838c4b79b679165d17ef59ffe1c02ba | /DichFighter/core/src/com/mygdx/game/Enemy.java | 9e26418f6d1d14af0c5de6b81f483ab426317cf6 | [] | no_license | IlyaSolodilov/Projects | 8c20a42f0d34b70e11f8b1dafd421bbf9d22155a | 78d262018f943dfcf0310f8610812e627955e154 | refs/heads/main | 2023-07-19T06:55:23.722200 | 2021-09-13T17:53:35 | 2021-09-13T17:53:35 | 400,252,494 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,773 | java | package com.mygdx.game;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.Input;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.BitmapFont;
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
import com.badlogic.gdx.math.MathUtils;
import com.badlogic.gdx.math.Rectangle;
import com.bad... | [
"ilyas.solodilov@gmail.com"
] | ilyas.solodilov@gmail.com |
ace9e2b9c717d42617a50ec0dc535c7eae219b97 | 48bdafdce36e8acbce3c7ded63c680038f96e2aa | /optimalpay-lib/java-common-src/com/optimalpayments/customervault/Status.java | 11099e15011c0b38eae22a3589f2529844448091 | [] | no_license | OptimalPayments/Android_SDK | d12f172ce8679b269f2136cd5f1d557dded7b275 | 6b6b69b7c30141faf264d1f9b4d15d558eb56480 | refs/heads/master | 2020-12-03T01:55:10.170317 | 2015-10-07T05:18:25 | 2015-10-07T05:18:25 | 43,756,423 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 167 | java | package com.optimalpayments.customervault;
/**
* Created by Asawari.Vaidya on 26-06-2015.
*/
public enum Status {
INITIAL,
ACTIVE
} // end of enum Status
| [
"asawari.vaidya@PD390-6FGSWQ1.OPUSCORP.COM"
] | asawari.vaidya@PD390-6FGSWQ1.OPUSCORP.COM |
9775a9feb8a48372eaed64945c6fe00958256480 | fd0ce1e4ff1994326438f9092bfbafdc077ed488 | /src/main/java/com/tati/tata/model/entities/Menu.java | e031a74e42ccf0dfc24099cb59b6349c47904811 | [] | no_license | lpath78/tata | 127ef31e291fdb66d4e348d9fae855ffa81b0e6e | fa6809062272b705d68d4914632daa884e888ba3 | refs/heads/master | 2022-12-16T09:29:50.565813 | 2020-09-16T11:20:41 | 2020-09-16T11:20:41 | 295,969,743 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 797 | java | package com.tati.tata.model.entities;
import com.tati.tata.model.references.TypeMenu;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import javax.persistence.*;
@Entity
@NoArgsConstructor
@Table(name = "MENU")
@SuppressWarnings("serial")
public class Menu extends AbstractEntityGeneral{
... | [
"valgames@icloud.com"
] | valgames@icloud.com |
38eb7fc3e99cc02e44c618233a1757dfbcd63c96 | f7a40de5e51ecb60a273e19f939a41d00ff7df45 | /android/app/src/main/java/com/inso/plugin/manager/AppController.java | 75bdd5cf7c1b3a2d5ef4ce334825611659ea561f | [] | no_license | ftc300/inso | 50d35294990945916a9733a76a0847fc96fc183d | b08071da4de3068bec2289df11c34fe35d855447 | refs/heads/master | 2022-01-05T01:32:23.982350 | 2019-06-05T03:19:08 | 2019-06-05T03:19:08 | 164,582,442 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,353 | java | package com.inso.plugin.manager;
import android.app.Application;
import com.google.gson.Gson;
import com.inso.plugin.basic.BasicAct;
import java.util.LinkedList;
import java.util.List;
/**
* Created by chendong on 2017/3/30.
*/
public class AppController extends Application {
private List<BasicAct> mList = new... | [
"cd@inshowlife.com"
] | cd@inshowlife.com |
7a3ab25cfac675f4b18ccbc439f8ba8e848c371f | c35a2d055117ae1ff9b50b047dda78bb4c17a6a7 | /optimus-ai-image-analyzer/src/test/java/org/optimus/image/analyzer/ImageFileAnalyzerTest.java | 69d2e1e752aa02340443ff37ef2263bb92b9be86 | [] | no_license | blogbees/optimus-ai | 1056f6e225f6c3290f1b99d27bb34f8d0243eaef | b7a42515eaf17ba44236c65c062dc9112ac657ba | refs/heads/master | 2020-03-17T22:31:39.460643 | 2018-06-01T20:48:51 | 2018-06-01T20:48:51 | 134,007,324 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 723 | java | package org.optimus.image.analyzer;
import java.io.File;
import java.util.Map;
import org.junit.Test;
import org.optimus.ai.system.analyzers.Analyzer;
import junit.framework.TestCase;
/**
* Unit test for simple App.
*/
public class ImageFileAnalyzerTest
extends TestCase
{
@Test
public void testImageFil... | [
"satishraj.j@gmail.com"
] | satishraj.j@gmail.com |
9744cb158b8251993942ac5ff9d0e9a3b50394da | 6986a02e6ce7ca0ee2ad7889bf403df6ced957d6 | /src/main/java/jkumensa/parser/ex/MensaDateParsingException.java | d6e71f303d81465e00ae27421f216d989f708ab2 | [
"Apache-2.0"
] | permissive | Nithanim/mensaparser | 4fd5528eae074e1a76e3be61e1de28fc7a8f46d5 | c9ef3890ca7beefe23806561389b553c7807c50c | refs/heads/master | 2021-05-01T20:04:02.409891 | 2019-02-25T02:21:12 | 2019-02-25T02:23:35 | 120,959,054 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 382 | java | package jkumensa.parser.ex;
public class MensaDateParsingException extends MensaParsingException {
public MensaDateParsingException(String message) {
super(message);
}
public MensaDateParsingException(String message, Throwable cause) {
super(message, cause);
}
public MensaDatePars... | [
"git@nithanim.me"
] | git@nithanim.me |
577286f64ce3741e94ed5adf9625f28dc242c960 | 551c91da88580f7eda0e55bad619bef8c5caa596 | /app/src/main/java/global/kz/test/di/PerActivity.java | b6b18086fd540721308c75270484b499d7897d9b | [] | no_license | Tomas13/TestGlobalInnovations | 7680a788201aeb9ee3f751c83bfe110ca6231f08 | ea5d3661991270494352e14b8cf3c09e8257c3d2 | refs/heads/master | 2021-01-23T10:20:34.652392 | 2020-01-26T07:42:08 | 2020-01-26T07:42:08 | 93,052,928 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 880 | java | /*
* Copyright (C) 2017 MINDORKS NEXTGEN PRIVATE LIMITED
* 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
*
* https://mindorks.com/license/apache-v2
*
* Unless required by applicable... | [
"tomas.mapoter@gmail.com"
] | tomas.mapoter@gmail.com |
4a250796876e91e345ac7a70dc7fd1b0933cf410 | df1891d0475af6386c6e177b564fb22826d0d6e2 | /M9N3/src/com/rocket/domain/Propulsor.java | dd260fa976355fa39538f61bbe7532f758310793 | [] | no_license | pperezcode/ITA_M9 | 2279756de6f65b180695ff62553467e265f8fa42 | 4d831722d3a484de65aba4910505fe5687ee410e | refs/heads/master | 2023-08-18T11:27:56.140356 | 2021-10-03T16:42:37 | 2021-10-03T16:42:37 | 413,093,259 | 0 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 1,634 | java | package com.rocket.domain;
import com.rocket.application.ExcedintPotenciaMaxException;
public class Propulsor {
protected String codiCoet;
protected int idPropulsor;
protected int potenciaAct;
protected int potenciaObj;
protected int potenciaMax;
public Propulsor(String codiCoet, int idPropulsor, int potM... | [
"patri@DESKTOP-SCNG0T2"
] | patri@DESKTOP-SCNG0T2 |
198f43c89fbbe4919f10d5038cf35adb65ec46ed | ceaead2b65fc96deb7417eeb934721a68c24a648 | /src/main/java/com/design/factory/AppleFactory.java | 1cc350b287e1f21e120609c3dc68c333ec88fdbf | [] | no_license | Polarisys/DesignMode | 9dfbd5d5983a8e6a7363e706b9fce6b9987de4ce | 83dc90cf810452110d8fc01bb205c72a90b1ab12 | refs/heads/master | 2022-12-04T17:57:14.467947 | 2020-08-22T08:02:16 | 2020-08-22T08:02:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 220 | java | package com.design.factory;
/**
* @anthor Tolaris
* @date 2020/4/14 - 17:25
*/
public class AppleFactory implements PhoneFactory {
@Override
public Phone getPhone() {
return new ApplePhone();
}
}
| [
"mjhzxy@outlook.com"
] | mjhzxy@outlook.com |
eb3a8d598a6856d1324a688e05b382dbcc0e8926 | 948c1e7945cd30314dd00d7962d8e3786b83432d | /src/main/java/com/rmb/test/TestApi/configs/LdapConfiguration.java | b1aa739c344bd79b3b817871a1e4493d9d517df8 | [] | no_license | gaffy94/RMBTEST | 49b20e75de6c2072e4a5930d1a6588253496d928 | ec281b4ce4ff97be3effbd8fbc3e92f04af0294b | refs/heads/dev | 2023-07-08T09:53:43.984513 | 2019-12-03T13:33:03 | 2019-12-03T13:33:03 | 225,596,566 | 0 | 0 | null | 2023-06-20T18:32:05 | 2019-12-03T10:49:30 | Java | UTF-8 | Java | false | false | 1,023 | java | package com.rmb.test.TestApi.configs;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.env.Environment;
import org.springframework.ldap.core.LdapTemplate;
impor... | [
"gkasumu@ecobank.com"
] | gkasumu@ecobank.com |
835dbd0e2ca1f9c33b999cd1446e4a2172707566 | 047dd7e2b2171e81edd5fad6e98ce5d852a54ad6 | /JavaTheHardWay/RudeQuestions.java | 0ca45b3d9a4624006cc6e370a4579cc817fa30be | [] | no_license | RyanH5/SDPre | a707eedd9063dc75fbd143fc3d1a8d5d08ae5fbb | 7b8423c2e5a419a30cbb16a8034db2612e96a2c1 | refs/heads/master | 2020-05-16T21:47:24.879156 | 2019-05-08T04:18:55 | 2019-05-08T04:18:55 | 183,317,044 | 0 | 0 | null | 2019-05-08T04:18:56 | 2019-04-24T22:45:22 | HTML | UTF-8 | Java | false | false | 966 | java | import java.util.Scanner;
public class RudeQuestions {
public static void main(String[] args) {
String name;
int age;
double weight, income;
Scanner keyboard = new Scanner(System.in);
System.out.println("Hello. What is your name?");
name = keyboard.next();
System.out.println("Hi, " + ... | [
"harrington.ryana@gmail.com"
] | harrington.ryana@gmail.com |
562adbeda0c3222eb4e82643d270a1966de61616 | 022742f0db39af1fc607f01b053b3d98366d5ad0 | /CommerceReferenceStore/Store/EStore/src/Java/atg/projects/store/droplet/EscapeJS.java | 5c7489c488f49b2708ad89f3de0f36c24906f979 | [] | no_license | bigdatashrikant/CRSRepository | 368d3fc3d412545f2fc23459c3b06039c9439fbe | d76833d1f9ece936bcc33800ad61ecdcc781bbde | refs/heads/master | 2020-04-27T17:00:07.221216 | 2019-03-08T09:09:21 | 2019-03-08T09:09:21 | 174,500,753 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,781 | java | /*<ORACLECOPYRIGHT>
* Copyright (C) 1994-2014 Oracle and/or its affiliates. All rights reserved.
* Oracle and Java are registered trademarks of Oracle and/or its affiliates.
* Other names may be trademarks of their respective owners.
* UNIX is a registered trademark of The Open Group.
*
* This software and relat... | [
"bigdata.shrikant@gmail.com"
] | bigdata.shrikant@gmail.com |
9fac1354046d04739dc552192d2532be6efb6427 | efaab7bbdf9d7eb591d0f8c125865f2d35d7b385 | /src/com/algha/boshuk/adapter/CricleAdapter.java | aecff06a2c82ed68720f6e254e2b0483a1014d08 | [] | no_license | algha/Boshuk-Android | 1880a6c7b1a4e1bcf8fc3eb4af822fd20c5d7540 | 38209c694a651520a277d9f4dc70f6053404a4e9 | refs/heads/master | 2021-08-28T03:34:25.911700 | 2017-12-11T06:05:10 | 2017-12-11T06:05:10 | 113,758,992 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,113 | java | package com.algha.boshuk.adapter;
import java.util.ArrayList;
import com.algha.boshuk.R;
import com.algha.boshuk.widget.MyTextView;
import android.app.Activity;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewGroup.Layout... | [
"algha@outlook.com"
] | algha@outlook.com |
8b111f26b48061629fb2b3f18f3808e83df5b29f | 1fc6412873e6b7f6df6c9333276cd4aa729c259f | /CoreJava/src/com/corejava7/awt/GBC.java | 56c1c52290ee98f0e3c507a6a7ed1c70f388124e | [] | no_license | youzhibicheng/ThinkingJava | dbe9bec5b17e46c5c781a98f90e883078ebbd996 | 5390a57100ae210dc57bea445750c50b0bfa8fc4 | refs/heads/master | 2021-01-01T05:29:01.183768 | 2016-05-10T01:07:58 | 2016-05-10T01:07:58 | 58,379,014 | 1 | 2 | null | null | null | null | UTF-8 | Java | false | false | 3,698 | java | package com.corejava7.awt;
/*
GBC - A convenience class to tame the GridBagLayout
Copyright (C) 2002 Cay S. Horstmann (http://horstmann.com)
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 v... | [
"youzhibicheng@163.com"
] | youzhibicheng@163.com |
aa2adc0789f3869ef31b07c09a600ebbbde18382 | 6a89281347e99d3a2ddc157b9bcfed2ca542f2a0 | /src/chapter2/test8/test3/ThreadB.java | be9b9dd28c55f073e48ad665ecfff5a3f5a79510 | [] | no_license | QingboTian/Java-Muliti-thread-Programming-Learning | 4a7ba4a98f090e1cbd5e67d7ba89edcbf3af6952 | e49ab57bd65a76488b45caef82feaf69e593fbb5 | refs/heads/master | 2020-06-01T22:56:38.065691 | 2019-06-23T03:10:34 | 2019-06-23T03:10:34 | 190,958,072 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 259 | java | package chapter2.test8.test3;
public class ThreadB extends Thread{
private MyObject object;
public ThreadB(MyObject object) {
super();
this.object = object;
}
@Override
public void run() {
super.run();
object.objMethod();
}
}
| [
"tqb82965236@163.com"
] | tqb82965236@163.com |
aba75de9f583713953aa4ea8c7c633180803082d | d54cc14cd058d20f27c56107b88d76cc27d4fd29 | /leopard-boot-data-parent/leopard-boot-redis/src/main/java/io/leopard/redis/autoconfigure/RedisAutoConfiguration.java | ab6559f25f4877198c68e5ae24667ff874628591 | [
"Apache-2.0"
] | permissive | ailu5949/leopard-boot | a59cea1a03b1b41712d29cf4091be76dca8316a7 | 33201a2962821475772a53ddce64f7f823f62242 | refs/heads/master | 2020-04-02T09:28:01.286249 | 2018-10-23T08:46:00 | 2018-10-23T08:46:00 | 154,294,038 | 1 | 0 | Apache-2.0 | 2018-10-23T08:46:20 | 2018-10-23T08:46:20 | null | UTF-8 | Java | false | false | 1,187 | java | package io.leopard.redis.autoconfigure;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
impo... | [
"tanhaichao@gmail.com"
] | tanhaichao@gmail.com |
e061347b8f40af21b3e4bf3918393c48590438be | 596fbc6482d14af5e98f8e04fc9db47a24a49916 | /LoginService/src/main/java/com/drumbeat/service/login/drumsdk/kalle/DrumInterceptor.java | d471c1b709b7cd33f3fedb4ef5457864573115a7 | [] | no_license | githubAtom/LoginServiceP | 7879508e733a9bbb36ced9c1a19379c9dea4df3a | ec8c0e0bcddc3cf39a184da256f581483982c08b | refs/heads/master | 2020-12-05T21:07:58.917266 | 2020-01-07T05:14:52 | 2020-01-07T05:14:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,831 | java | package com.drumbeat.service.login.drumsdk.kalle;
import com.blankj.utilcode.util.LogUtils;
import com.yanzhenjie.kalle.Request;
import com.yanzhenjie.kalle.RequestBody;
import com.yanzhenjie.kalle.Response;
import com.yanzhenjie.kalle.StringBody;
import com.yanzhenjie.kalle.UrlBody;
import com.yanzhenjie.kalle.connec... | [
"124937028@qq.com"
] | 124937028@qq.com |
2c0b0c7ca9bea16555dfd164607034d0e3643e69 | 69eeebde7b774a7236e4715207739dcb83300cb4 | /hu.bme.mit.mealymodel.xtext.parent/hu.bme.mit.mealymodel.xtext/src-gen/hu/bme/mit/mealymodel/parser/antlr/internal/InternalMealyDslParser.java | 4411ac38bd1e7abf17f8e23a4531000863202b84 | [] | no_license | aronbsz/automatalearning | c4cefd57d2f692eb9ef738ecb562b3de2087c760 | 9b15ceb492c6ab36fd545b71a3d453e1a907b5b5 | refs/heads/master | 2021-07-24T09:43:49.116170 | 2020-07-16T09:28:39 | 2020-07-16T09:28:39 | 180,773,156 | 0 | 0 | null | 2020-10-13T21:42:05 | 2019-04-11T10:56:21 | Java | UTF-8 | Java | false | false | 43,160 | java | package hu.bme.mit.mealymodel.parser.antlr.internal;
import org.eclipse.xtext.*;
import org.eclipse.xtext.parser.*;
import org.eclipse.xtext.parser.impl.*;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.xtext.parser.antlr.AbstractInternalAntlrParser;
import org.ec... | [
"abarcsa@gmail.com"
] | abarcsa@gmail.com |
faab375f9d78529417f0d6a34603e875905df471 | 0e16abe4ce7331fdfc927c9713bdd58d9b9d8025 | /company/src/main/java/com/codejoys/company/entity/Titles.java | cad5fa17c7438731356542c81628d3b08faed19b | [] | no_license | RchengANDLengwen/SsmFrame | 9e431de25afa90559fbd42d23b34b49dbb1d587d | 95f49a7c2b6e07c4e1880e2a4158974a2f861ec9 | refs/heads/master | 2022-06-22T06:14:41.241489 | 2019-08-24T12:27:15 | 2019-08-24T12:27:15 | 204,153,778 | 0 | 0 | null | 2022-06-21T01:44:19 | 2019-08-24T12:23:27 | Java | UTF-8 | Java | false | false | 4,333 | java | package com.codejoys.company.entity;
import java.io.Serializable;
import java.util.Date;
/**
*
* This class was generated by MyBatis Generator.
* This class corresponds to the database table titles
*/
public class Titles implements Serializable {
/**
*
* This field was generated by MyBatis Generator... | [
"1023172029@qq.com"
] | 1023172029@qq.com |
633ffe91fc929e20280bfc031005cc1040168493 | 03f1e8e3fcc7737d16a8b5925b141e4b4e432cfb | /BankAppSpringMVC_51830046/src/com/bankapp/web/forms/TransferBean.java | 1e9df4e999174006ee839f9aed282787848938a9 | [] | no_license | AlnaJoshi/Projects_Mode1and2_51830046 | eb1fa1adce62cba3d23b4b5eaf6f6e5732af38ab | e84cd757a4734b6f0c05327e5c8e194ed4f29ddf | refs/heads/master | 2020-09-21T11:20:57.005508 | 2019-11-29T05:16:57 | 2019-11-29T05:16:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 962 | java | package com.bankapp.web.forms;
import javax.validation.constraints.Max;
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
public class TransferBean {
@NotNull(message="from account can not be lelf blank")
private Integer fromAccount;
@NotNull(message="to account not be lelf bl... | [
"alnajoshy5@gmail.com"
] | alnajoshy5@gmail.com |
8fa318b04fb48bb001a4bc7a9e53ad4c34013632 | 90d483216b2988b365c7d1af226e1ce36d3fbfef | /app/src/main/java/com/sdiablofix/dt/sdiablofix/fragment/BatchSaleIn.java | 65300739866811b7d84fb253db82127f9116b9a5 | [] | no_license | LonelyPriest/SDiabloFix | 73a3b772f196ba539f4940c4fdf3c6679974bdb8 | 202b01fa8b1323d62cbba4c1c8f77fa641ca3fb6 | refs/heads/master | 2021-11-26T00:21:36.057201 | 2021-11-16T04:49:35 | 2021-11-16T04:49:35 | 105,298,517 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,084 | java | package com.sdiablofix.dt.sdiablofix.fragment;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.sdiablofix.dt.sdiablofix.R;
/**
* A simple {@link Fragment} subclass.
* Use the {@link BatchSaleI... | [
"buxianhui@buxianhuideiMac.local"
] | buxianhui@buxianhuideiMac.local |
45f405af6130fb2744be54967c02f511b5ecbb9c | 6c324818f5bdd47465f7531c30af698f3e6e87f0 | /src/main/java/com/sample/soap/xml/dm/ServiceFault.java | d42e5a84bdea0b5bbc01434f6242edf75f77a8c6 | [] | no_license | nandpoot23/SpringBootMapStructSoapService | 7ff00efbd25a20a50df5b278ac9262f61017451b | 1f82cbaebbae5eda8a2a9d61fb34c25ba782eb80 | refs/heads/master | 2021-01-01T20:32:48.865380 | 2017-07-31T12:13:13 | 2017-07-31T12:13:13 | 98,884,743 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 507 | java | package com.sample.soap.xml.dm;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ServiceFault", propOrder = { "messages" })
public class ServiceFault {
protected Messa... | [
"mlahariya@xavient.com"
] | mlahariya@xavient.com |
b85784f49382e021e7d123baf273ce944bfe3fe1 | 78a19c0ed7bf9a3e71d99b1ac8a91963f0223c90 | /dac/backend/src/main/java/com/dremio/dac/server/tokens/TokenManagerImpl.java | 6720b74f88b856110964e104b38c2ea42316fd00 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | kstirman/dremio-oss | de46edac556628c83ee719990705cd60e9060be6 | 57889fbaab05512b62dc2a305fd5524693fb29a2 | refs/heads/master | 2021-06-26T15:04:19.182039 | 2017-08-14T23:44:41 | 2017-08-15T21:38:45 | 103,543,189 | 0 | 0 | null | 2017-09-14T14:33:41 | 2017-09-14T14:33:41 | null | UTF-8 | Java | false | false | 7,686 | java | /*
* Copyright (C) 2017 Dremio Corporation
*
* 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... | [
"jacques@dremio.com"
] | jacques@dremio.com |
42e44a28fc093adcd0331889fd11830e67c4c93c | cbea23d5e087a862edcf2383678d5df7b0caab67 | /aws-java-sdk-devopsguru/src/main/java/com/amazonaws/services/devopsguru/model/UpdateTagCollectionFilter.java | 8ce7523b4802ae064c15d7365dbd96922083944d | [
"Apache-2.0"
] | permissive | phambryan/aws-sdk-for-java | 66a614a8bfe4176bf57e2bd69f898eee5222bb59 | 0f75a8096efdb4831da8c6793390759d97a25019 | refs/heads/master | 2021-12-14T21:26:52.580137 | 2021-12-03T22:50:27 | 2021-12-03T22:50:27 | 4,263,342 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,995 | java | /*
* Copyright 2016-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "licen... | [
""
] | |
a00bf61d37cb62e7a1ef8026e7c0d17954e5aa6f | 81425c163a4d70c0420cc3897757ec21369ed7bb | /src/algo/MaxCircle.java | 2910b08b264905185b453b2a32bfdaadbb7a1f76 | [] | no_license | hustxq/leetcode | caede1cabb05423cfe68bd8996775c594890001f | f717474168fa705f0cdbb162bdf4d4d060d93ab4 | refs/heads/master | 2021-06-19T09:36:07.855866 | 2021-01-14T09:28:24 | 2021-01-14T09:28:24 | 142,976,442 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,116 | java | package algo;
import java.util.Stack;
/**
* Created by sse on 2017/9/15.
*/
public class MaxCircle {
static int num;
static int[] ids;
public static void main(String[] args) {
// input
num = 6;
ids = new int[] {0,2,3,2,};
// 每个编号为起点
for (int i = 1; i < num; i++) {
... | [
"26315874@qq.com"
] | 26315874@qq.com |
27a1ab43721e129ca2292a9cea82be6d798ce1e8 | e2bc4687fbf3acb373c7a7980869d730f65352e3 | /src/com/company/BankAccount.java | 1757cd8718c76fa665806fb783661fc188735257 | [] | no_license | AndrewJBateman/java-section15-challenge1 | 8affcfcdb1fae99179a89d0e99767b8b16ec0ed8 | b2fa0ba8f9f2c1b7e29dd8debd1d417968555bb3 | refs/heads/main | 2023-06-27T23:46:31.784650 | 2021-07-28T06:59:51 | 2021-07-28T06:59:51 | 383,378,023 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,061 | java | package com.company;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
public class BankAccount {
private double balance;
private String accountNumber;
private Lock lock;
public BankAccount(String accountNumber, double ini... | [
"gomezbateman@yahoo.com"
] | gomezbateman@yahoo.com |
d831c4aa0c5fee3eb20078672d7ed20abda33ce4 | dcf364388de89d752b353a5a11917709a5f2ddb0 | /app/src/main/java/ashiqur/goriberfitbit/rest_api/service/ApiInterface.java | 3b61b34028b4fe46c75f93da6d98c091e62cc094 | [] | no_license | ashiqursuperfly/FitnessTracker-CSEHackathon2019 | bbe2192a4564351f2303ebb8c30298902f43a655 | 2310b09cb194d2cdd25acd73cadf60b741e34786 | refs/heads/master | 2020-04-18T11:51:12.920172 | 2019-01-26T12:24:42 | 2019-01-26T12:24:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 893 | java | package ashiqur.goriberfitbit.rest_api.service;
import ashiqur.goriberfitbit.rest_api.api_models.CustomResponse;
import ashiqur.goriberfitbit.rest_api.api_models.Leaderboard;
import okhttp3.RequestBody;
import retrofit2.Call;
import retrofit2.http.Body;
import retrofit2.http.GET;
import retrofit2.http.POST;
public in... | [
"33751187+ashiqursuperfly@users.noreply.github.com"
] | 33751187+ashiqursuperfly@users.noreply.github.com |
6357466556c294b6972e7a0961549a5736124022 | 8ad91bde8b4b8c3f76e555119cafecd942549933 | /schlep-core/src/main/java/com/netflix/schlep/mapper/DefaultSerializerProvider.java | bd4943ad64f700bc84753bf02d8a96672e292ac2 | [
"Apache-2.0"
] | permissive | DoctoralDisaster/schlep | c2d1635501fc50e23fa783e6476feadc3b567e59 | f51ecec1ca5769850871b8aa4f23e025c347f669 | refs/heads/master | 2021-01-22T03:25:40.094569 | 2013-10-09T18:04:40 | 2013-10-09T18:04:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 302 | java | package com.netflix.schlep.mapper;
import com.netflix.schlep.mapper.jackson.JacksonSerializerProvider;
public class DefaultSerializerProvider extends BaseSerializerProvider {
public DefaultSerializerProvider() {
this.setDefaultSerializerProvider(new JacksonSerializerProvider());
}
}
| [
"elandau@yahoo.com"
] | elandau@yahoo.com |
785c4fa15cd8b1daaeae626a458900eab576dbb9 | f7420c9afb04573b1272a48faae6cec7939c3302 | /hds-framework-model/src/main/java/com/zhishulian/framework/domain/ucenter/XcTeacher.java | 54dc3c17ad981d68812089a03326a4b5fe947e37 | [] | no_license | yangyang8/HybridDistributedSystem | d6119b8142abc727994fe498b1783e6cee72d327 | d9f3f454389d82c103a6a9874f7570d93166658a | refs/heads/master | 2022-12-14T01:15:36.444754 | 2019-06-17T03:22:31 | 2019-06-17T03:23:07 | 192,268,081 | 1 | 0 | null | 2022-11-24T06:26:41 | 2019-06-17T03:21:19 | Java | UTF-8 | Java | false | false | 744 | java | package com.zhishulian.framework.domain.ucenter;
import lombok.Data;
import lombok.ToString;
import org.hibernate.annotations.GenericGenerator;
import javax.persistence.*;
import java.io.Serializable;
/**
* Created by admin on 2018/2/10.
*/
@Data
@ToString
@Entity
@Table(name="xc_teacher")
@GenericGenerator(name =... | [
"3123199442@qq.com"
] | 3123199442@qq.com |
b6598e206f120771413d23215ad65a49567fd66b | 9c9c0a6cd542d5b1c2329209abf144249e275609 | /src/java/com/zimbra/qa/selenium/projects/ajax/tests/calendar/mountpoints/viewer/actions/ShowOriginal.java | 3045a1f791c936924d4ccaad25263be409a45235 | [] | no_license | jiteshsojitra/zm-selenium | 8e55ed108d08784485d22e03884f3d63571b44e2 | 4ed342c33433907a49d698c967a4eb24b435eb80 | refs/heads/develop | 2019-07-11T14:28:27.951485 | 2018-04-13T10:05:02 | 2018-04-13T10:05:02 | 91,348,171 | 0 | 0 | null | 2017-05-15T14:35:48 | 2017-05-15T14:35:48 | null | UTF-8 | Java | false | false | 5,638 | java | /*
* ***** BEGIN LICENSE BLOCK *****
* Zimbra Collaboration Suite Server
* Copyright (C) 2013, 2014, 2015, 2016 Synacor, Inc.
*
* 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,
* version 2 o... | [
"jitesh.sojitra@synacor.com"
] | jitesh.sojitra@synacor.com |
6b6d80a53a7b57a975ec1f3e4df282bfc5926920 | 99b4a46e54bf9013bb833fd6a63eadf7b6cba1c9 | /app/src/main/java/mobo/andro/apps/ohmagiccamera/CollageMaker/fragments/CollageFifteen.java | a763a2cf6431393894327ba3d8a249f50b31690b | [] | no_license | esaman1/ohmagiccamera | 910186858acf9e10a408861b50bfb1ed93adcc01 | 973c7696cb852a5c0c7b3a15d35e7294dcaf059e | refs/heads/master | 2022-03-18T08:27:42.399050 | 2019-11-12T03:43:46 | 2019-11-12T03:43:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 27,514 | java | package mobo.andro.apps.ohmagiccamera.CollageMaker.fragments;
import android.app.Fragment;
import android.content.Intent;
import android.graphics.Bitmap;
import android.os.Build.VERSION;
import android.os.Bundle;
import androidx.annotation.Nullable;
import androidx.core.content.ContextCompat;
import android.util.Log;
... | [
"wangjie970912@163.com"
] | wangjie970912@163.com |
9422290416b7189d45d95bb88a564fca37b84521 | f003322c7d2bc743975918fbd4607ad49469f6e9 | /src/main/java/com/zjhs/hstx/biz/business/controller/UserInfoController.java | 74b7860668efc7a230c641170bd93e1b79b08eb8 | [] | no_license | qcm89757/hstx | baa0b43bd30a61ac5e2c0eef5a5acfa3e6a79f0a | f6aa36c13fa1d8c3e3f97b0a8cde1095b30da6b3 | refs/heads/master | 2022-07-02T21:09:56.218463 | 2019-10-05T04:37:56 | 2019-10-05T04:37:56 | 211,829,150 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,347 | java | package com.zjhs.hstx.biz.business.controller;
import com.zjhs.hstx.base.Result;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.anno... | [
"qcm89757@163.com"
] | qcm89757@163.com |
be340ca901ddc3054af2b4cc93d98563b4459142 | 131ec771ff471de138f72e0ea5c069caee0e9c8c | /src/main/java/top/fanfpy/app/mapper/BaizhuAdminMapper.java | e9826b985dad78375e7dbf98a28bcf63d0d44258 | [] | no_license | xiatian98/AppForfanfpy | bd364bfc3045e32acbb4cdfef8fad8c3183c42a4 | 23dd20502615379210e8cd244f5e78b9fcb2c6c4 | refs/heads/master | 2023-04-17T02:51:30.588526 | 2021-05-08T07:45:30 | 2021-05-08T07:45:30 | 365,450,533 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 283 | java | package top.fanfpy.app.mapper;
import top.fanfpy.app.entity.BaizhuAdmin;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* Mapper 接口
* </p>
*
* @author znn
* @since 2021-04-26
*/
public interface BaizhuAdminMapper extends BaseMapper<BaizhuAdmin> {
}
| [
"522516416@qq.com"
] | 522516416@qq.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.