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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ccb6d0f282ac54e957a5c418ded866235e3840d2 | 435016c5e2d4cfbfe9f939db725aab59dd8b9240 | /java-basic/src/main/java/ch23/e/CalculatorServer.java | f8b5f40ec5818c45dbfd21babde3d647cc3fb147 | [] | no_license | kmincheol/bitcamp-java-2018-12 | 59b3c5709b1aa905035a390d553002547243a13a | 32b2df6e295412207a27bfc57069e9069f85a0a4 | refs/heads/master | 2021-08-06T22:04:08.819338 | 2019-06-12T02:16:22 | 2019-06-12T02:16:22 | 163,650,686 | 1 | 1 | null | 2020-04-30T03:50:33 | 2018-12-31T08:00:45 | Java | UTF-8 | Java | false | false | 3,531 | java | // TCP : connectionful(Stateless) ์์ฉ - ์๋ฒ์์ ๊ณ์ฐ ๊ฒฐ๊ณผ ์ ์งํ๊ธฐ
package ch23.e;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.PrintStream;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.HashMap;
public class CalculatorServer {
public static void main(String[] args) {... | [
"mincheol.kmc@gmail.com"
] | mincheol.kmc@gmail.com |
26c9185dcc9b5c868fd7df4df5571876e8d4ca4e | cfb53d106cef28377aaf5c15a65e2c479fbbb812 | /kodilla-testing/src/test/java/com/kodilla/testing/forum/ForumTestSuite.java | 68fd60ae098b24c97c3a3a986a651a72bf3dea03 | [] | no_license | robertwojtkowski/Robert-Wojtkowski-kodilla-Java | e67c9bffbccd70965bf9489453865e4ec98e99c9 | d749b3795d419820c277e56c008ae747ccd48824 | refs/heads/master | 2022-07-13T01:12:41.429661 | 2020-01-07T11:17:56 | 2020-01-07T11:17:56 | 194,789,833 | 0 | 0 | null | 2022-06-21T02:35:20 | 2019-07-02T04:46:16 | Java | UTF-8 | Java | false | false | 1,221 | java | package com.kodilla.testing.forum;
import com.kodilla.testing.user.SimpleUser;
import org.junit.*;
public class ForumTestSuite {
//wszystko ze strony skopiowane
@Before
public void before(){
System.out.println("Test Case: begin");
}
@After
public void after(){
System.out.print... | [
"m.mrozek2@pwpw.pl"
] | m.mrozek2@pwpw.pl |
613a8ac6c3daec01e5c92cdfac26a489b8c38245 | 01792e9d60f0e492af8604ca198d9d399dbd302c | /valid-perfect-square/Solution.java | 1e03e40e02c0fec13ec9dda0ac15af7ebbd105de | [] | no_license | singh523/leetcode | 5de3bbe101b462a3416dc0cdbd020df055da1a15 | bf286849508d32b35217d5684514d1a61fd1874a | refs/heads/master | 2022-04-18T21:51:59.483153 | 2020-04-19T07:53:14 | 2020-04-19T07:53:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 373 | java | public class Solution {
public boolean isPerfectSquare(int num) {
int lower = 1;
int upper = 1 << 16;
while (lower <= upper) {
int middle = (lower + upper) / 2;
long square = (long) middle * middle;
if (num == square) {
return true;
} else if (num < square) {
upper = middle - 1;
} else {
... | [
"charles.wangkai@gmail.com"
] | charles.wangkai@gmail.com |
a0200931781d47248af27b4535c1b147ba5b9f4b | 5b0b07915b239e13de2aef41c7bad6a7c9b451ac | /spring-boot-note5/src/main/java/me/loveshare/note5/data/util/image/ValidateCodeImgUtils.java | a1b2a108dc38fd01a58ab6d31bf43a31934cdccf | [
"Apache-2.0"
] | permissive | cqcnihao/spring-boot | 60ccdf35e891b797828afa1177705a91fdee5733 | d8af7daeb2bebad048657da63cb310b994b58ae4 | refs/heads/master | 2020-04-03T15:44:50.832028 | 2018-09-20T04:51:31 | 2018-09-20T04:51:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,059 | java | package me.loveshare.note5.data.util.image;
import me.loveshare.note5.data.exception.TSEDictionary;
import me.loveshare.note5.data.exception.TSException;
import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.OutputStream;
import java.util.HashMap;
im... | [
"tianyp@hxwisec.com"
] | tianyp@hxwisec.com |
2008ac4c5319ba058275090f83184afe2ba0b4d1 | fa5d0de6a923e349a77ce38408cbf02154134037 | /ClayUI_android/src/com/netinfocentral/ClayUI/ElementDatabaseHelper.java | e7f79cc3ed630146d89545a9fb9aeb7a658f36ea | [] | no_license | lwllovewf2010/ClayUI_android | 8b2ed7fab052325a8621c00e318a6d4ae51232c2 | d786be564365327c6b891dfe634b83ae63122327 | refs/heads/master | 2020-03-29T20:56:59.006823 | 2012-05-01T20:28:40 | 2012-05-01T20:28:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,956 | java | package com.netinfocentral.ClayUI;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import android.util.Log;
public class ElementDatabaseHelper extends SQLiteOpenHelper {
// define class variables
private static final int DATABASE_VER... | [
"alize@netinfocentral.com"
] | alize@netinfocentral.com |
8973657641d83d3dfba311d4a994e124003e5fc2 | ab5309ffdbe176e2cc2673ea1d773574508008c8 | /src/main/java/ru/balayan/organizationbackend/package-info.java | 0fd59ba27c2f7ebf7bba9a77d73f2b4a6949ed33 | [] | no_license | balavart/OrganizationBackend | b1d539353d95e0249b9d45144c9aa0545a9a15fb | 3302393c6c78e2ce34246da6992e0387da55fcb1 | refs/heads/master | 2022-11-14T20:16:40.727837 | 2020-07-12T17:18:01 | 2020-07-12T17:18:01 | 277,261,537 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 209 | java | /**
* This package is designed to store the starting point of the Spring Boot application launch.
*
* @author Vardan Balaian
* @created 04.07.2020
* @since 1.8
*/
package ru.balayan.organizationbackend;
| [
"tro1t@yandex.ru"
] | tro1t@yandex.ru |
b9d19b679ca66940ab578eb99324fd79c83e1984 | eb200901496d5c14b75100dfa4f4c7c1c037ca2f | /leyou/ly-item/ly-item-service/src/main/java/com/leyou/item/entity/TbCategory.java | 86147fec3b1859d06d3dc68deded5217f165c5e4 | [] | no_license | 13453602837/one | 727f04ba095d1801a0fe09beab09823f409f33ca | f573a148566875c672f9c9c4cfda2181c9a9e37e | refs/heads/master | 2022-11-25T07:10:57.076105 | 2019-08-31T10:02:27 | 2019-08-31T10:02:27 | 205,523,154 | 0 | 0 | null | 2022-11-16T11:54:30 | 2019-08-31T09:21:02 | Java | UTF-8 | Java | false | false | 1,385 | java | package com.leyou.item.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import java.io.Seriali... | [
"1662133192@qq.com"
] | 1662133192@qq.com |
6ae5a07f623ee3a41fa0adfa96398f7da92bc32d | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/16/16_537e7eb4f0c926ceb62b4fb61825dba4f554c514/TestNetCDFProxy/16_537e7eb4f0c926ceb62b4fb61825dba4f554c514_TestNetCDFProxy_t.java | f9ffaac081083f5ac3dee40b4ca1b73d54c2b052 | [] | 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 | 4,964 | java | /*
* Copyright 2008-2010 Microarray Informatics Team, EMBL-European Bioinformatics Institute
*
* 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/... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
e89bc3a098594a339f36f86fb3a33647e4a6c2d4 | 0a0752dd39277c619e8c89823632b0757d5051f3 | /batik/classes/org/apache/batik/extension/svg/RegionInfo.java | 98701b1d35a9b85ed47e7785107423277908997e | [
"Apache-2.0"
] | permissive | anthonycanino1/entbench | fc5386f6806124a13059a1d7f21ba1128af7bb19 | 3c664cc693d4415fd8367c8307212d5aa2f3ae68 | refs/heads/master | 2021-01-10T13:49:12.811846 | 2016-11-14T21:57:38 | 2016-11-14T21:57:38 | 52,231,403 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 13,639 | java | package org.apache.batik.extension.svg;
public class RegionInfo extends java.awt.geom.Rectangle2D.Float {
private float verticalAlignment = 0.0F;
public RegionInfo(float x, float y, float w, float h, float verticalAlignment) {
super(
x,
y,
w,
h);
this.
... | [
"anthony.canino1@gmail.com"
] | anthony.canino1@gmail.com |
aed9e91ba0aeb448f2ba5847caf2a14d5257a526 | 51d9cc076ea22b085f320087fd864722e7139984 | /ssm/src/com/zs/test/dao/inf/AddressDao.java | 88b496802ced8c7f541f1fbdc15b4ee4e4afd3b5 | [] | no_license | lixue59/mygit | 2706102459b240e0c04ca4833c1d6f9128f99046 | b176ac3e6ea4bd3b13eb7f64498005f57863741a | refs/heads/master | 2020-03-10T17:41:10.928673 | 2018-07-24T04:09:15 | 2018-07-24T04:09:15 | 129,505,985 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 460 | java | package com.zs.test.dao.inf;
import java.util.List;
import com.zs.test.entity.Address;
public interface AddressDao {
/**
* ้่ฟid่ทๅaddress
* */
public Address getAddressById(int id);
/**
* ้่ฟuserid่ทๅaddress็list
* */
public List<Address> getAddressListByUserid(int userid);
/**
* ๅ ้คๆไธชๅฐๅ้่ฟid
* */
publi... | [
"420131812@qq.com"
] | 420131812@qq.com |
968dbadae9445de80fb73de889e27b5506e34a82 | b004529299cf2e7c7c4f938de10c5b8d90e535ec | /src/test/java/com/cea/digitalworld/dwmicroservice2/web/rest/LogsResourceIntTest.java | fd4659778ade453b6b7e230374d337d490e39a44 | [
"Apache-2.0"
] | permissive | flefevre/jhipsterangularjsmd5 | 0b43c58c856cded193bc03d931aac7731a98c8d6 | 7920d786874047a3c93d828e53644845968f97e2 | refs/heads/master | 2020-03-28T06:26:21.259214 | 2018-09-17T09:19:26 | 2018-09-17T09:19:26 | 147,834,294 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,529 | java | package com.cea.digitalworld.dwmicroservice2.web.rest;
import com.cea.digitalworld.dwmicroservice2.Jhipsterangularjsmd5App;
import com.cea.digitalworld.dwmicroservice2.web.rest.vm.LoggerVM;
import ch.qos.logback.classic.AsyncAppender;
import ch.qos.logback.classic.LoggerContext;
import org.junit.Before;
import org.jun... | [
"francois.le-fevre@cea.fr"
] | francois.le-fevre@cea.fr |
e55b8ea71658114e754ab5f8be2a3e205c90a887 | f7bfb4002968d980e4f90b97e13fe0b77f58a707 | /ICalculator.java | a796cc479145ea1e46b6c4ef4ac318c3709ab932 | [] | no_license | sunetra-git/Design_Principle | cbb6af2c71848a6b983be4c23491766e14de90a6 | d77e7f76594f06cade96c16426b294353338f891 | refs/heads/master | 2021-01-06T19:29:27.120789 | 2020-02-20T18:33:16 | 2020-02-20T18:33:16 | 241,460,175 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 76 | java | public interface ICalculator {
void calculate(IOperation operation);
} | [
"noreply@github.com"
] | sunetra-git.noreply@github.com |
bb486e7df9a7e7b2dc6eae013ecc52e908737fbf | a00b1800953c6955cae20f61bf57b0de22f60e5b | /src/test/java/com/algotrading/backtesting/pattern/test/ExitSignalTest.java | 2c0012c98631768fa49aab05b540a3db6de2fc78 | [] | no_license | algooproject/Algo-Project | af715e9741b243e183cfe5bd24426c177d47405f | dafad02ccf801f2daa1c5ef14a6299dffab36750 | refs/heads/master | 2022-12-21T07:55:27.914333 | 2021-07-07T01:30:37 | 2021-07-07T01:30:37 | 57,936,593 | 0 | 1 | null | 2022-12-10T03:59:16 | 2016-05-03T02:46:52 | Java | UTF-8 | Java | false | false | 2,817 | java | package com.algotrading.backtesting.pattern.test;
import static org.junit.Assert.assertTrue;
import java.text.ParseException;
import java.util.Date;
import org.junit.Test;
import com.algotrading.backtesting.pattern.ClosingHigherThanSignal;
import com.algotrading.backtesting.pattern.ExitSignal;
import com... | [
"miltonko@gmail.com"
] | miltonko@gmail.com |
8b88aac91acf8bc643df544af974701094fb7552 | 99db7a288dcb2f086514fd96fc366f291ee5d68c | /app/src/main/java/com/example/tjgaming/individualproject3/view/RegisterActivity.java | 3d21e0db2256346366e7d68087bf8b35aeff6322 | [] | no_license | tsparrow7/BCS421Project3 | f8f2aabb2a74c754b42fa1a94db11b63d4cbc832 | fe11034f3925254b56b59bbeb49faf83c573cf9e | refs/heads/master | 2020-04-04T13:25:57.654081 | 2018-11-04T01:24:53 | 2018-11-04T01:24:53 | 155,961,598 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,733 | java | package com.example.tjgaming.individualproject3.view;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import com.example.tjgaming.individualpro... | [
"tsparrow7@yahoo.com"
] | tsparrow7@yahoo.com |
20671b451f41ecf9ce8c48319b2bd64168617145 | 48e34286c9eba466d8d58d22bd586454f9d46ae3 | /mechanicrooms/app/src/main/java/com/developer/mechanicrooms/BrandModel.java | 7945a28c4eb17a71ddbbd56e89bfd5814613131b | [] | no_license | KesarkarMadhuri30/MechanicRoom | 721dfb8f37b66d2288e28a1ef03715f521def1bd | d9c14b5f4c541f87a2c0116b89ae07b525e197f2 | refs/heads/master | 2023-02-22T16:54:14.459265 | 2021-01-31T11:09:51 | 2021-01-31T11:09:51 | 334,632,776 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 553 | java | package com.developer.mechanicrooms;
import com.google.gson.annotations.SerializedName;
import java.util.ArrayList;
public class BrandModel {
@SerializedName("status")
private boolean status;
@SerializedName("base_url")
private String base_url;
@SerializedName("brand")
ArrayList<BrandInfoMo... | [
"kesarkarmadhuri30@gmail.com"
] | kesarkarmadhuri30@gmail.com |
918b2ab70781fee48d1b6ed538cee8a5c1f361ac | dc1dbb7e5a4b95bf44170d2f51fd08b3814f2ac9 | /data_defect4j/preprossed_method_corpus/Math/56/org/apache/commons/math/linear/MatrixUtils_serializeRealMatrix_734.java | 3996ff4b6014dcbb50c63031a0073ed3b7da91c9 | [] | no_license | hvdthong/NetML | dca6cf4d34c5799b400d718e0a6cd2e0b167297d | 9bb103da21327912e5a29cbf9be9ff4d058731a5 | refs/heads/master | 2021-06-30T15:03:52.618255 | 2020-10-07T01:58:48 | 2020-10-07T01:58:48 | 150,383,588 | 1 | 1 | null | 2018-09-26T07:08:45 | 2018-09-26T07:08:44 | null | UTF-8 | Java | false | false | 2,228 | java |
org apach common math linear
collect method oper matric
version revis date
matrix util matrixutil
... | [
"hvdthong@gmail.com"
] | hvdthong@gmail.com |
f244e2ab2a0785e8c4fb8fc44f3ed8baee93fac6 | 4bfc4337e758d99bd3ee87f04af95d91ed8c36be | /src/main/java/com/hellomvp/client/mvp/AppActivityMapper.java | 2ed3ed955eb9cf97464c23ddda9402d1dda620ed | [] | no_license | methylene/gin-maven-hellomvp | 48a32d90da6cda9ae5f02ad0ee45fb8163fdcef6 | e2686f83441e47509d7c9464e7e4d0f641dfb1c5 | refs/heads/master | 2021-01-10T06:30:21.407283 | 2015-12-14T05:55:01 | 2015-12-14T05:55:01 | 47,931,563 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,075 | java | package com.hellomvp.client.mvp;
import com.google.gwt.activity.shared.Activity;
import com.google.gwt.activity.shared.ActivityMapper;
import com.google.gwt.place.shared.Place;
import com.google.gwt.place.shared.PlaceController;
import com.google.gwt.user.client.Window;
import com.google.inject.Inject;
import com.hell... | [
"larsbohl@gmail.com"
] | larsbohl@gmail.com |
e486e1a6fa4103a66428ba4812c30b1570187a4b | 0606f2f1dc5dabcdaa5bb234e5a82640d7de52c3 | /src/main/java/cn/com/rebirth/service/middleware/server/support/ServiceRegisterSupport.java | e7488ad40f95b8c46a46f8f6b40dbd4ad4231c36 | [] | no_license | dowsam/rebirth-service-middleware-server | 2ac64fb1154c2b48df7f5b01c4579be7c78609d0 | 47e800552e5b307d3f41a3cfff81e48649eb998a | refs/heads/master | 2021-01-18T16:32:31.404106 | 2012-09-05T06:01:26 | 2012-09-05T06:01:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,054 | java | /*
* Copyright (c) 2005-2012 www.china-cti.com All rights reserved
* Info:rebirth-service-middleware-server ServiceRegisterSupport.java 2012-7-17 14:42:34 l.xue.nong$$
*/
package cn.com.rebirth.service.middleware.server.support;
import static java.lang.String.format;
import java.util.List;
import java.util.Map;
i... | [
"l.xue.nong@gmail.com"
] | l.xue.nong@gmail.com |
1de269d8cf2733eb8cd71049b221278433cfa3d7 | 23b7de4bdb2848fd40b0231fdb92efe19b20d971 | /src/main/java/Order.java | 940c374c87b8c61dd47753e79204de5ae0988e5e | [] | no_license | micaelps/basic_kafka | d528730727a495add7229d884699d8a8a84c8bd1 | d4efc56cb506d7414370a06a1a327d0a7989efe8 | refs/heads/master | 2023-03-28T19:40:25.909711 | 2021-04-06T15:45:25 | 2021-04-06T15:45:25 | 354,906,167 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 301 | java | import java.math.BigDecimal;
public class Order {
private final String userId, orderId;
private final BigDecimal amount;
public Order(String userId, String orderId, BigDecimal amount) {
this.userId = userId;
this.orderId = orderId;
this.amount = amount;
}
}
| [
"3.1416micael@gmail.com"
] | 3.1416micael@gmail.com |
72347e145280e54e72096b11a641652e0a17bd64 | fd9c5d4ff3c1723fb735132218cedaf0f078cae6 | /blueprint/blueprint-spring/src/main/java/org/apache/aries/blueprint/spring/SpringApplicationContext.java | cc7ecc154ab1d01d56947c2307bfa6326343d496 | [
"Apache-2.0"
] | permissive | gaoliujie2016/aries | 607ffa10a135995fcd7d4d62064b24b81db33f4b | 3cf085c0d411183d6ef65f5a0bc36aae316c480c | refs/heads/trunk | 2021-09-24T02:15:48.282415 | 2021-09-16T02:20:57 | 2021-09-16T02:20:57 | 92,562,434 | 0 | 0 | null | 2017-05-27T01:56:30 | 2017-05-27T01:56:30 | null | UTF-8 | Java | false | false | 3,191 | 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"); yo... | [
"gnodet@apache.org"
] | gnodet@apache.org |
e43f4770c91a12a67bfb789961fd573e7711cd32 | d8d38aa8f46d81a9c7e3399dc44b917efba423ad | /start/src/main/java/wenlong/thread/bounce/BallComponent.java | feb8118216510c2b67b94b41e29a11bca24596d7 | [] | no_license | primarystudent/start | 8fda9afa8c1daa22468bfb85f8b2cc25c14efac7 | e0884d0fc67c9f0250a59f8f8a10544d58913f1e | refs/heads/master | 2021-06-09T19:46:54.959307 | 2019-05-28T10:11:23 | 2019-05-28T10:11:23 | 179,832,715 | 0 | 0 | null | 2021-06-04T01:52:58 | 2019-04-06T12:48:33 | Java | UTF-8 | Java | false | false | 737 | java | package wenlong.thread.bounce;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.util.ArrayList;
import java.util.List;
import javax.swing.JPanel;
public class BallComponent extends JPanel{
private static final int DEFAULT_WIDTH = 450;
private static final ... | [
"wangwenlong305@gmail.com"
] | wangwenlong305@gmail.com |
8a1631b83890a460bc0b8a661d4b19d6d81d35e8 | e7efdd439a50328733b32ccdf427612a12affb87 | /app/src/androidTest/java/com/example/jsonrecyclerview/ExampleInstrumentedTest.java | 781dd43a22923c98bc4dda8ceb3dd9a8a056ce89 | [] | no_license | alexandrers2307/ProjetoJsonRecyclerView | 2863cd17fec385d3005f7598734e54f70746e9a1 | 63eaef119d5c513961ec42f5e7efcdd131af4801 | refs/heads/master | 2023-04-09T00:31:13.345775 | 2021-04-10T14:42:53 | 2021-04-10T14:42:53 | 356,459,538 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 770 | java | package com.example.jsonrecyclerview;
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 execu... | [
"82249597+alexandrers2307@users.noreply.github.com"
] | 82249597+alexandrers2307@users.noreply.github.com |
e50d88f93d0339aa5b79454696c510cddeda1424 | 69a4f2d51ebeea36c4d8192e25cfb5f3f77bef5e | /methods/Method_1019979.java | 4c0ab1dd36076877fd0eddba8261e51d09e58cde | [] | no_license | P79N6A/icse_20_user_study | 5b9c42c6384502fdc9588430899f257761f1f506 | 8a3676bc96059ea2c4f6d209016f5088a5628f3c | refs/heads/master | 2020-06-24T08:25:22.606717 | 2019-07-25T15:31:16 | 2019-07-25T15:31:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 109 | java | @SuppressWarnings("unchecked") public static <A>Magnetize<A> magnetize(){
return (Magnetize<A>)INSTANCE;
}
| [
"sonnguyen@utdallas.edu"
] | sonnguyen@utdallas.edu |
f19469d7a41d2367aecb9407ad2f89b53d209eb2 | c37d0d069fff859767d0f9a5fa9ca860e96d9339 | /src/test/java/com/google/devtools/build/android/desugar/testing/junit/DesugarRuleTest.java | 4e9ba091d5c3745192bb226e187deae4a642f1b6 | [
"Apache-2.0"
] | permissive | Squadrick/bazel | e759241ce3de4038bc42303250237ac4ba8ad9e5 | 5a8219ada648bae84d9d342c3dff67a5b6b14be2 | refs/heads/master | 2020-11-28T12:44:35.135463 | 2019-12-23T19:25:39 | 2019-12-23T19:26:30 | 229,814,062 | 1 | 0 | Apache-2.0 | 2019-12-23T19:50:40 | 2019-12-23T19:50:40 | null | UTF-8 | Java | false | false | 5,652 | java | /*
* Copyright 2019 The Bazel Authors. 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.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | [
"copybara-worker@google.com"
] | copybara-worker@google.com |
864b0133c386ad0bb9c3c0f1c8a84ecf2186c97d | 965bcdf4fd9fd62200adb55639f2b81c751af164 | /src/main/java/org/richardqiao/leetcode/ReverseString.java | 08e6155d7f37dd74905e96665f4bdbddc7a030bf | [] | no_license | richardqiao2000/java-data-structures | 82860c42d9dfb2697dfae509f21b3dd36b2d939e | 952010c68cb449d717e18eeb8d6d3089ccce76d3 | refs/heads/master | 2021-01-13T04:46:47.930053 | 2017-03-29T23:57:06 | 2017-03-29T23:57:06 | 78,958,972 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 892 | java | package org.richardqiao.leetcode;
public class ReverseString {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println(new StringBuilder("asdfj32j42XCV").reverse().toString());
String str = "asdjf;lajsdoprup0234rqwefasdfavj;pjksdk[wqpierurqwyeupo";
str = "aaaASDFE... | [
"richardqiao2000@gmail.com"
] | richardqiao2000@gmail.com |
ce4d955843ca943341ce6f5f29afafd447260f27 | 08501436cc16de8148783bec51f983d295b38df4 | /value-fixture/test/org/immutables/fixture/encoding/EncodingWithDefaultDerived.java | 01a2def2c16a98edbd191bcfbb41c4702a77e855 | [
"Apache-2.0"
] | permissive | immutables/immutables | e00b0d91448e4af4d1fda52be2e8a27201f85aff | c98038e82512ec255a24a0dfd6971eab52bd5b8e | refs/heads/master | 2023-09-01T06:53:49.897708 | 2023-08-27T06:09:46 | 2023-08-27T06:09:46 | 11,233,996 | 3,530 | 344 | Apache-2.0 | 2023-08-30T15:14:06 | 2013-07-07T13:48:23 | Java | UTF-8 | Java | false | false | 2,292 | java | /*
Copyright 2018 Immutables Authors and Contributors
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... | [
"e.lucash@gmail.com"
] | e.lucash@gmail.com |
67feba7433193b30566f0111f8e38c9b9873a74d | ffbc6418993f5ae546ede9bd3e70c6c30d885423 | /plugins/reactor-netty/src/main/java/com/navercorp/pinpoint/plugin/reactor/netty/interceptor/HttpClientHandlerRequestWithBodyInterceptor.java | 550fed03941134ca0f2783bad3a31389d3b8b98b | [
"DOC",
"LicenseRef-scancode-free-unknown",
"CC0-1.0",
"OFL-1.1",
"GPL-1.0-or-later",
"CC-PDDC",
"GPL-2.0-only",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"CC-BY-3.0",
"LicenseRef-scancode-unknown-license-reference",
"MITNFA",
"MIT",
"CC-BY-4.0",
"OFL-1.0"
] | permissive | alynlin/pinpoint | 0dcf3279fc2c0b1944bac5f914b0dc226d4a315f | f7d112ae5611745606065ada22609e926966735a | refs/heads/master | 2021-01-12T05:57:28.470862 | 2020-12-03T09:32:22 | 2020-12-03T09:32:22 | 77,233,247 | 2 | 0 | Apache-2.0 | 2020-12-03T09:32:23 | 2016-12-23T15:16:30 | Java | UTF-8 | Java | false | false | 6,205 | java | /*
* Copyright 2020 NAVER Corp.
*
* 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... | [
"jaehong.kim@navercorp.com"
] | jaehong.kim@navercorp.com |
de717a1e4a8dd1415c2b5ed0accea92bbde08445 | a174987cdb7467e6cbdaa7f49ea0ba958d0bfeb9 | /src/main/java/br/com/agendamento/exception/BussinesException.java | e26397d9fd5f64773114358593b69dc93838ac6c | [] | no_license | csrwk21/agendamento-email | e3d4d0ec01c8b78a11eecaf350ff602269cb796c | 98ff54490262522b9ce9cf31a059615f4af11a42 | refs/heads/master | 2021-12-27T21:44:57.554770 | 2020-04-03T22:07:01 | 2020-04-03T22:07:01 | 252,847,749 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 680 | java | package br.com.agendamento.exception;
import java.util.ArrayList;
import java.util.List;
import javax.ejb.ApplicationException;
@ApplicationException(rollback = true)
public class BussinesException extends Exception {
private static final long serialVersionUID = 1L;
private List<String> mensagens;
public B... | [
"csrwk21@gmail.com"
] | csrwk21@gmail.com |
dbbcce7e7c47d35c02b4c103095b30caa92559a8 | 5b6a6c80d7da8b8210032b27ca1cbbb1b319a594 | /src/main/java/com/admin/security/filter/JWTAuthenticationFilter.java | fa7bdfd6154e54a60cf7656ada9bd582782a802f | [] | no_license | dannyvasquez22/app-ws-exchange-rate | 04c859210732ce72bd536b4a8246de39a751c478 | 12cbd5196f6125c5d9a1401a7345dce28bc757d5 | refs/heads/master | 2023-03-11T16:48:27.552614 | 2021-03-01T02:45:01 | 2021-03-01T02:45:01 | 329,636,932 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,030 | java | package com.admin.security.filter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.FilterChain;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.s... | [
"dani22_vr@hotmail.com"
] | dani22_vr@hotmail.com |
b1f5f5067009249660b55b4b35be4b964480e0bb | 69011b4a6233db48e56db40bc8a140f0dd721d62 | /src/com/jshx/aqglb/service/JshxAqglbService.java | 9bcf5c4be24139a0d66cf68a426cfab6f94ef426 | [] | no_license | gechenrun/scysuper | bc5397e5220ee42dae5012a0efd23397c8c5cda0 | e706d287700ff11d289c16f118ce7e47f7f9b154 | refs/heads/master | 2020-03-23T19:06:43.185061 | 2018-06-10T07:51:18 | 2018-06-10T07:51:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 961 | java | package com.jshx.aqglb.service;
import java.util.Map;
import com.jshx.core.base.service.BaseService;
import com.jshx.core.base.vo.Pagination;
import com.jshx.aqglb.entity.JshxAqglb;
public interface JshxAqglbService extends BaseService
{
/**
* ๅ้กตๆฅ่ฏข
* @param page ๅ้กตไฟกๆฏ
* @param paraMap ๆฅ่ฏขๆกไปถไฟกๆฏ
* @return ๅ้กตไฟกๆฏ
... | [
"shellchange@sina.com"
] | shellchange@sina.com |
54ebc3517d3616d23d2aee7955be84c3231778b7 | 36dabda4d956ed7e7d993a900336126dc8b0a064 | /src/main/java/com/lesliehao/part2_sort/section2/MergeSort.java | 4f6149c4d71ce988dcf9f5db2883ab26f70d3afe | [] | no_license | LeslieHao/algorithm | 8ff3969fee97b073b36de4ef8c5dde336421f2c8 | a3b0959e9b29bd179eac670bcf8e1a88cad125a9 | refs/heads/master | 2020-03-27T04:36:58.730110 | 2019-05-06T06:56:00 | 2019-05-06T06:56:00 | 145,954,839 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,928 | java | package com.lesliehao.part2_sort.section2;
import org.junit.Test;
/**
* DESC: ๅฝๅนถๆๅบ
* O(NlgN)
* Created by Hh on 2018/2/17
*/
public class MergeSort {
private static Comparable[] aux;
public static void sort(Comparable[] arr) {
aux = new Comparable[arr.length];
sort(arr, 0, arr.length - 1... | [
"hh525942@163.com"
] | hh525942@163.com |
434fd3896fbfa0b858bf1f350a1a5bcdb92b315b | d25ccca244347fe01a3c2c43ba609f329ac8a2ba | /src/main/java/com/bing/framework/base/ParamBean.java | 46975313ed903cbf1435606230f140be46861647 | [] | no_license | kevin2234/ssmtest | e5e44cf1c7374f8a4d04540b2a1c683b9567f431 | fc648413fe82e55e70109d1db4505b16e80cbef6 | refs/heads/master | 2021-01-01T06:38:10.073403 | 2017-07-31T15:01:43 | 2017-07-31T15:01:43 | 97,475,689 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 463 | java | package com.bing.framework.base;
import java.util.List;
import java.util.Map;
public class ParamBean {
private Map<String, String> param;
private List<Map<String, String>> list;
public Map<String, String> getParam() {
return param;
}
public void setParam(Map<String, String> param) {
this.param = param;
}
... | [
"455721914@qq.com"
] | 455721914@qq.com |
2f4f1833220f9ec838a4b0fa862ee1e7a270ad64 | 8382e6f4afb59e9f15d045ec0d734a0866f2ea55 | /Java Work/GraphWindow.java | 7e26e1197a6a53d1b1bee6e36850c2f75ce423a2 | [] | no_license | liuhuaijjin/My-College-Work | 16e8e49c09f1fdde269c39c00aee5341ecb5b0bc | 342fcf7d9505780f82809e8493ed2881138616ff | refs/heads/master | 2020-12-03T09:33:39.671415 | 2016-03-18T16:39:08 | 2016-03-18T16:39:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,065 | java | import java.awt.Color;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.geom.Line2D;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class GraphWindow extends JPanel {
public void paintComponent(Graphics g){
super.paintComponent(g);
doub... | [
"nirmal.signhania2008@gmail.com"
] | nirmal.signhania2008@gmail.com |
14a0aeb266c34f486aa6d45637c4299649dc1b06 | c7a070711ce89ab5d1fa9abc2e57a0832239e379 | /src/main/java/com/qinfei/entity/Article.java | e31407c407016a6d645d317f5581fec84c6b47c0 | [] | no_license | qinfei666/cms_zxm | b7fc8096d797b97e605e3e5d75d3f74462d8d9ea | eee1a5d69e7ae7294df3084843fc74527df2a9be | refs/heads/master | 2023-01-09T03:53:33.078705 | 2019-12-24T10:11:31 | 2019-12-24T10:11:31 | 228,766,367 | 0 | 0 | null | 2023-01-04T13:41:24 | 2019-12-18T05:39:31 | JavaScript | UTF-8 | Java | false | false | 4,114 | java | package com.qinfei.entity;
import java.util.Date;
public class Article {
private Integer id ;
private String title ;
private String content ;
private String picture ;
private int channelId ;
private int categoryId ;
private int userId ;
private int hits ... | [
"2232290419@qq.com"
] | 2232290419@qq.com |
c45162e71444722bf80784dc4ed6baa28817e888 | addb33682adc2db79592d52d4c6d503b96d0066a | /src/main/java/com/domain/config/Config.java | 6a00eb12a082942f623740d232325d69eba8875b | [] | no_license | JoelCalebPA/okm-integration | 8daa166df107b91a6f8237b8479d31efe4b9402d | ddb20f306dee606eab3545e64bb9d38705b419ca | refs/heads/master | 2021-03-06T06:12:43.906522 | 2020-03-19T16:11:14 | 2020-03-19T16:11:14 | 246,185,231 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,805 | java | /**
* OpenKM, Open Document Management System (http://www.openkm.com)
* Copyright (c) 2006-2016 Paco Avila & Josep Llort
* <p>
* No bytes were intentionally harmed during the development of this application.
* <p>
* This program is free software; you can redistribute it and/or modify
* it under the terms of the... | [
"joel.caleb.pa@gmail.com"
] | joel.caleb.pa@gmail.com |
50fb6c39f01afa4f0119c55ec7280c12d44131ef | 338f3152aff68412d6288238be0b12d919eb2d2e | /codenser/summarization/FileUtil.java | be38dd4d709ca853f7eb781d4c5717a6a2191e4c | [
"MIT"
] | permissive | meyerhoeferb/sd_final_submission | 0edaae563c903ab29875596e2af9358064962ad9 | 25bb6a2f80f4cbc91cf9d07fcb787338c235cde8 | refs/heads/master | 2022-06-14T05:42:38.275175 | 2020-05-04T13:50:57 | 2020-05-04T13:50:57 | 260,714,380 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,834 | java | package F;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang3.StringUtils;
import java.io.*;
import java.nio.charset.StandardCharsets;
import java.util.List;
public class FileUtil {
FileUtil() {
}
public static String readFile(String filePath) {
... | [
"bredcurve@gmail.com"
] | bredcurve@gmail.com |
226b5ee234210299c0525294abe5a1fba15ab150 | 59bd4e4f50b225352e7e7809de25bd121bd97c66 | /ZooClientV4/src/clientv4/about.java | dbc38a3a2c6a274ce4f76bcd0ae14484e7df3ab7 | [] | no_license | Faewin7/ZooRegister | 94c7ee817042435a2f949107d4013e55178554f7 | 28b5a70f0c78a11d5a6a6180484d1354b0e3fdc8 | refs/heads/master | 2020-05-09T10:32:34.180773 | 2019-04-16T17:48:46 | 2019-04-16T17:48:46 | 181,046,346 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,288 | java | package clientv4;
import javax.swing.JFrame;
/**
* @author James
* 08/04/2019
* A Client-Server application that allows the storage, retrieval, display and manipulation of data
* using a SQL database. Zoo Register.
*/
/*
*This classes purpose is just ro display information about the client application.
*/
publi... | [
"jamesjeftic@gmail.com"
] | jamesjeftic@gmail.com |
66c95e70eb3a106da24566606a1109afa28f8405 | 61b35e22ac5e90a6e6e61abfb3a6b7636a0575c7 | /spring-annotation/src/main/java/com/zh/controller/BookController.java | 31703e23e4ada98f94058f07bb8f13da6d98d3d0 | [] | no_license | zhaohui-zh/learn-spring-old | 73210f80e1cfef5ad18a5e0e46a0f485e4c90775 | 05a6278c51477beac0da98caebd990259cdc9654 | refs/heads/master | 2022-12-27T02:24:41.330830 | 2020-10-12T17:51:52 | 2020-10-12T17:51:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 395 | java | package com.zh.controller;
import com.zh.service.BookService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
/**
* @author Zhaohui
* @date 2020/10/8
*/
// @Scope("prototype")
@Controller
public cl... | [
"zhaohui_zh@foxmail.com"
] | zhaohui_zh@foxmail.com |
2e621d44887a71ad3fbb515c00b478606fab08ef | 3481b7846f9399e9f58a672c89914cefb77a0d54 | /app/src/main/java/com/example/starteck/myapplication/HistoryRepository.java | 1601f269ba7cf4cb171241e6a1e3e3923bc4650a | [] | no_license | MarianaHilo/ProductSearch | 9b5be2287897d12ad8fc665a01f2f8b79fa58991 | b6b78e0673be810b6a99fcc57d99e5c0d1a4208d | refs/heads/master | 2021-05-15T20:43:35.748858 | 2017-11-02T19:13:56 | 2017-11-02T19:13:56 | 107,801,279 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 330 | java | package com.example.starteck.myapplication;
import java.util.Set;
/**
* Created by mhilo on 29/10/2017.
*/
public class HistoryRepository implements IHistoryRepository{
@Override
public void addSearchQuery(String query) {
}
@Override
public Set<String> getSearchHistory() {
return null... | [
"mariana.hilo@gmail.com"
] | mariana.hilo@gmail.com |
bd0cf857b01a13ce2329397a800d46d11b7f9991 | fc875a9fa212764afd6765be32d3a71ed14e3f36 | /app/src/main/java/com/example/flixster/models/Movie.java | 3d52169df7cd9d65cbf513ffade534dcb38131f4 | [] | no_license | KimKevin99/Flixster | 8d0f8f74ede6b2ba42d30e2d1c8271283cc29c9a | 51453941662121ce224b2e34dbc47502b8dbf4fa | refs/heads/master | 2022-12-25T20:00:58.670704 | 2020-10-03T02:37:06 | 2020-10-03T02:37:06 | 298,394,348 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,635 | java | package com.example.flixster.models;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.parceler.Parcel;
import java.util.ArrayList;
import java.util.List;
@Parcel
public class Movie {
int movieId;
String posterPath;
String title;
String overview;
St... | [
"kimkevin99@outlook.com"
] | kimkevin99@outlook.com |
34b7acc8aaa38126f6307ba5314f7c1de4955aaa | 2804d7e4b2d5b6695551d46cd70d19c5c89bd723 | /main/java/app/client/modal/InputHostModalWindow.java | b8e5d0d8960f59890de990d518699ad3527bdeef | [] | no_license | AlexSlow/Gsm_scan_client | d44e695c1eff01edd9c98e885b3f25173dde5513 | 1ca4f829742159cab4d49744a3ee0d926009d37b | refs/heads/main | 2023-03-29T11:04:27.585046 | 2021-04-20T14:07:16 | 2021-04-20T14:07:16 | 353,608,778 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,553 | java | package app.client.modal;
import javafx.geometry.Insets;
import javafx.scene.control.*;
import javafx.scene.layout.GridPane;
import lombok.Data;
import java.util.Optional;
@Data
public class InputHostModalWindow {
private Dialog<String> dialog;
Optional<String> host;
public void open(String ... | [
"salo454790@mail.ru"
] | salo454790@mail.ru |
7e7637251fde9a9b01cd425b109e7b4feb95e70a | 4447e8ea553ba2c6e3cb00071e23c22702db3126 | /src/main/java/com/shade/pyros/ShadesOfNether/Blocks/Asherrack/AsherrackBrickFence.java | 9cd038195d7ee611dd45825687eb232ca78de5ba | [] | no_license | pyrosshade/ShadesOfNether | 78ededa25547c58cc36dbda8072090593e9b9214 | 0a91805216007f5d4313a6b93dd2f6461c566ba3 | refs/heads/master | 2020-06-11T02:25:31.872601 | 2019-08-12T09:28:36 | 2019-08-12T09:28:36 | 193,810,687 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 712 | java | package com.shade.pyros.ShadesOfNether.Blocks.Asherrack;
import com.shade.pyros.ShadesOfNether.Common.Materials;
import net.minecraft.block.BlockState;
import net.minecraft.block.FenceBlock;
import net.minecraft.block.SoundType;
import net.minecraftforge.common.ToolType;
public class AsherrackBrickFence extends Fenc... | [
"willofshadow@gmail.com"
] | willofshadow@gmail.com |
0e1d0f1e79b4c4e339bfbe9f3ec78d235dd120c9 | a40014f0a2d9d17689c53839aa7a2e995ca7b93c | /1.JavaSyntax/src/com/javarush/task/task07/task0706/Solution.java | a323d38650b9ef863c62452910315b3d0846e1ee | [] | no_license | sergeytoropov/JavaRushTasks | f60d1523d124ade94a7ba9b0afd4b6bbf238fdab | 2feed8d53d37c824a5aea35be9af354eac8ae566 | refs/heads/master | 2020-12-02T17:37:36.575023 | 2018-04-02T07:33:01 | 2018-04-02T07:33:01 | 96,403,248 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,392 | java | package com.javarush.task.task07.task0706;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Map;
import java.util.stream.IntStream;
import static java.util.stream.Collectors.*;
/*
ะฃะปะธัั ะธ ะดะพะผะฐ
*/
public class Solution {
public static void main(String[] args) throws Exception {
... | [
"toropov.si@dvfu.ru"
] | toropov.si@dvfu.ru |
27949110e2ad8fbe338cc07bedf21d5759a9fcf7 | 4bb40d8bb5e92cff1b14c756ee47d8ca5923ecdc | /GroupProjectSource/APS/test/test/za/ac/wits/elen7045/group3/billingAccount/test/testBillingAccountCreate.java | 5c04c09e35fb99db52a4a412534a4e68dd584140 | [] | no_license | Group3-ELEN7045/APS | d0237191b06a1e1e922e337e55df8a8a533d5eaa | 55454314e48417714b9403cee62402a4a3176566 | refs/heads/master | 2021-01-01T05:31:59.726653 | 2014-07-04T05:32:07 | 2014-07-04T05:33:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,384 | java | package test.za.ac.wits.elen7045.group3.billingAccount.test;
import static org.junit.Assert.*;
import org.junit.Test;
import za.ac.wits.elen7045.group3.aps.domain.accounts.statement.TelcoStatement;
import za.ac.wits.elen7045.group3.aps.domain.entities.BillingAccount;
import za.ac.wits.elen7045.group3.aps.domain.enti... | [
"livious@schauenburg.co.za"
] | livious@schauenburg.co.za |
bcc565776df2ce14670e4a27585ccc1c580a1121 | dc58cbc395bbbb39398df787d8229b1ec140b20d | /src/HipiImageBundle.java | 32b45529cadb39f987296a629c8f64f406c7aed3 | [] | no_license | dpaustman/hipi-images | 5bf15373116952562827be81b60cb127e1a1f437 | e18ae015766691061cd38d9ea8870e6cbb087284 | refs/heads/master | 2021-09-07T23:32:57.307287 | 2018-03-03T06:37:00 | 2018-03-03T06:37:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 32,400 | java | package org.hipi.imagebundle;
import org.hipi.image.HipiImageHeader;
import org.hipi.image.HipiImageHeader.HipiImageFormat;
import org.hipi.image.HipiImage;
import org.hipi.image.HipiImage.HipiImageType;
import org.hipi.image.HipiImageFactory;
import org.hipi.image.ByteImage;
import org.hipi.image.FloatImage;
import o... | [
"h295203236@163.com"
] | h295203236@163.com |
2fb39b74f7bab07ee9ca2bf475b850823d3ed9f8 | 7acf6b2a24063b1d4162cefd48e49734488b8c9d | /src/test/java/com/neemshade/matri/service/mapper/MalaParamMapperTest.java | a8d4f18e790ba5791812c6f8e1b65fbcc90c59c4 | [] | no_license | cinthiya1234567890/tls | bca9bc8bc2c5c9f3b52677532067ef7b7c6ad49b | 2491879cc4c5d96ee1457158ba4f2989b3d2cce1 | refs/heads/main | 2023-01-06T16:49:45.841892 | 2020-11-11T08:50:31 | 2020-11-11T08:50:31 | 311,899,898 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 570 | java | package com.neemshade.matri.service.mapper;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import static org.assertj.core.api.Assertions.assertThat;
public class MalaParamMapperTest {
private MalaParamMapper malaParamMapper;
@BeforeEach
public void setUp() {
malaPara... | [
"s.cinthiya30@gmail.com"
] | s.cinthiya30@gmail.com |
10cc062e9dcf5185d3ed93f771ab78a59a1f7bcf | 41b62115d11194bb13f8d3c0d424e6046e74de93 | /src/com/company/NearestNeighbor.java | 4e7ace0312508bd8418ef344b118e74ecd4b592a | [] | no_license | arnabs542/IK | c8f032feee5ee3d1e54889278c43d36168d833e9 | 1efd7e84d115d7dfdd84d2727ef3ff81400b194d | refs/heads/master | 2022-01-09T05:43:36.766752 | 2019-05-05T05:18:18 | 2019-05-05T05:18:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,454 | java | package com.company;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.util.Arrays;
import java.util.Collections;
import java.util.PriorityQueue;
import java.util.Scanner;
public class NearestNeighbor {
private static final Scanner scanner = new Scanner(Syste... | [
"agosain@luminanetworks.com"
] | agosain@luminanetworks.com |
dc7c7b05b5fdc583d0e117a802688bb34b9a5079 | 660acd80149796f5af802399ffadb50242dca1a0 | /CodeForces/src/ProblemSet/_A_Hit_the_Lottery_.java | e008b7ff6ba3728f3491254257a27f4a50065caf | [] | no_license | BhavyaaArora-08/Solutions-of-problems-on-different-platforms | db7f17fb9105942616eb075681f79fa4f5c025bf | d96986577bd9addd5ceb2c7430f4791466d0bfff | refs/heads/master | 2022-06-30T03:44:23.934671 | 2020-05-12T05:20:44 | 2020-05-12T05:20:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 496 | java | package ProblemSet;
import java.util.Scanner;
public class _A_Hit_the_Lottery_ {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner obj=new Scanner(System.in);
int n=obj.nextInt();
int c=0;
int x=(n/100);
c+=x;
n=n-(x*100);
x=(n/20);
c+=x... | [
"44175278+Bhavyaa08@users.noreply.github.com"
] | 44175278+Bhavyaa08@users.noreply.github.com |
0002e92443bae6e60f80046bc31ebc7e50cc06cc | 87da5544c2b2dea9d10f398ba0009af960f81a4e | /app/src/main/java/com/pengbo/mhdcx/ui/trade_activity/TradeAccountTypeActivity.java | d470cf9cb8ee02d70ddf370d2cde93bf9f4b44a2 | [] | no_license | alexkame/PbStock | 70bbc780193ed5d70daaa05e545139b8b3d22f3b | 0654a09f0be344d19ad02361be4b51bc715a3674 | refs/heads/master | 2020-05-29T20:52:01.998836 | 2016-08-04T11:35:45 | 2016-08-04T11:35:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,667 | java | package com.pengbo.mhdcx.ui.trade_activity;
import java.util.ArrayList;
import java.util.List;
import com.pengbo.mhdcx.adapter.SetOnLineAdapter;
import com.pengbo.mhdzq.app.MyApp;
import com.pengbo.mhdzq.zq_activity.HdActivity;
import com.pengbo.mhdzq.R;
import com.pengbo.mhdcx.ui.main_activity.TradeLoginActivity;
i... | [
"ecit_eminem@163.com"
] | ecit_eminem@163.com |
b3de2f67726921e34b8085909550762277cb36ca | 6f5779bdbe985c7436632489a3fb6da525b051a3 | /src/main/java/br/com/rodkrtz/projuris/controle/manutencao/controller/v1/impl/EquipamentoControllerImpl.java | 5c0e77a9fa751a65e4f4c2f86665564fd7c31c90 | [] | no_license | rodkrtz/controle-manutencao | ffb810c87ce3569472869d250d2b667cbdf15982 | 4ac822c74583a1410e00f7a4fa9bfeb8486b3360 | refs/heads/main | 2023-03-03T19:40:28.688948 | 2021-02-16T19:30:21 | 2021-02-16T19:30:21 | 338,669,738 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,552 | java | package br.com.rodkrtz.projuris.controle.manutencao.controller.v1.impl;
import br.com.rodkrtz.projuris.controle.manutencao.controller.v1.EquipamentoController;
import br.com.rodkrtz.projuris.controle.manutencao.model.entity.Equipamento;
import br.com.rodkrtz.projuris.controle.manutencao.model.request.AddEquipamentoReq... | [
"rodkrtz@outlook.com"
] | rodkrtz@outlook.com |
16f94e763e409ea64ae07c136ed4226eb83a577e | a654c672727ec1aa8628c8eb077e94b374482fb0 | /app/src/main/java/com/bartronics/ams2/di/DatabaseInfo.java | c87ddd1c67432e578bdd0e0bb364100ac84c9529 | [] | no_license | ChAnandKumar/AMS2 | 910973ea00ecf1ae1ac2b447235d01b0b6a17821 | 6423563cfc52c4728b605befe9cbb4cc756022fe | refs/heads/master | 2021-01-18T08:33:08.333868 | 2017-03-08T12:43:34 | 2017-03-08T12:43:34 | 84,305,823 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 893 | 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... | [
"ch.anandsonu@gmail.com"
] | ch.anandsonu@gmail.com |
066ffd53f9f4b40cbf8699f0393a5cf2c83cca60 | 6378765d496a7b0f9be7224129fc9be877c4ccff | /Java/179.largest-number.java | 6058d994bf86d59f704d283e670f52d2d5efc85d | [] | no_license | Ricccccky/Leetcode | 668bb682d13ebab6cf93a5f5d40d19237f3d5d86 | def1b7d847554016aab4520ef9f8c956976a77a5 | refs/heads/master | 2022-12-22T17:11:31.203262 | 2022-12-09T17:30:34 | 2022-12-09T17:30:34 | 244,829,474 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 658 | java | import java.util.*;
/*
* @lc app=leetcode id=179 lang=java
*
* [179] Largest Number
*/
// @lc code=start
class Solution {
// O(nlogn)
public String largestNumber(int[] nums) {
int n = nums.length;
String[] arr = new String[n];
StringBuilder sb = new StringBuilder();
for (in... | [
"bingchen.wang@nyu.edu"
] | bingchen.wang@nyu.edu |
3fafab62e8df79d8fb09ebd701169b5a416c68cb | dd1bee84c4f9cb80eec121d4761fa7401483445a | /src/main/java/com/neuedu/model/AmericanPizza.java | 0414b18562e736445264ab08bab87cdc7e04d6bf | [] | no_license | ZLX358445547/shoppingForMacbook | cbe65ab741972c08b142604428064ad784c3abb5 | fcc08168d03e5adad1d9f6e3f82a318cb6d602ea | refs/heads/master | 2020-05-04T16:17:02.655449 | 2019-04-03T12:12:58 | 2019-04-03T12:12:58 | 179,274,167 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 72 | java | package com.neuedu.model;
public class AmericanPizza extends Pizza {
}
| [
"358445547@qq.com"
] | 358445547@qq.com |
b01b64f21c25be3b7240f32fab297fe010dbc50e | a6283b9eb3f61e3d569e65e764591cd61a2c123a | /app/src/main/java/com/rab/pab_minggu2/MainActivity.java | 4857ba1f89d022cb3263b7bf63041ae99c1ab658 | [] | no_license | ihsbramn/pab_minggu3 | fe737dad62f3ee2a6f7d59dbce8a3128b16fbea9 | 3ac4a5767a5d88bad3f9bfb09d65739bd347dd97 | refs/heads/master | 2023-08-22T21:05:30.910772 | 2021-10-11T12:38:59 | 2021-10-11T12:38:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 666 | java | package com.rab.pab_minggu2;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedIn... | [
"abdurahmanihsan25@gmail.com"
] | abdurahmanihsan25@gmail.com |
2ff96b27e54ca8944a94a59007dd42bc2eb99ad0 | d384e551f3217df3fc238edcdcdb55c8825c36d0 | /app/src/main/java/com/huanglong/v3/smallvideo/videoeditor/bubble/utils/TCBubbleManager.java | 94ad6b0f55aed7cac9bc062f731ff3c501e45cf2 | [] | no_license | KqSMea8/V3 | b25f5e04b6f54edb5ae7b29167e98a751beea724 | ab223a67080be076d8a66279c994b07cfd07645b | refs/heads/master | 2020-04-07T11:40:32.504003 | 2018-11-20T05:24:40 | 2018-11-20T05:24:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,311 | java | package com.huanglong.v3.smallvideo.videoeditor.bubble.utils;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.io.BufferedInputStream;
import java.io.BufferedReader;... | [
"1191200738@qq.com"
] | 1191200738@qq.com |
021027b12a56a9b4f97f357920ceab4ed3aeac5e | ec51db11bb6d8d82a11bfb29908fbcb576eb6cd5 | /open-log-collection/src/main/java/org/apel/open/LoggerApplication.java | a3e0b1a998701e1a866d86abd40eddcb1c3c2dae | [] | no_license | V060423/open | c01b96c3a7941c3ef21f14e0c9346c7ab1878fac | 05b5167b1e27f4fa1991cd2e77707d050df98388 | refs/heads/master | 2020-03-20T23:57:36.513925 | 2018-06-21T03:34:28 | 2018-06-21T03:34:28 | 137,871,531 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 455 | java | package org.apel.open;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* @author wangbowen
* @Description ๆฅๅฟๆๅก๏ผ็ๅฌๆถๆฏ้ๅไธญ็ๆฅๅฟ,ๅนถๅญๅจๅฐๆฐๆฎๅบ
* @Date 2018/6/19 15:05
*/
@SpringBootApplication
public class LoggerApplication {
public static void m... | [
"xiaowen1314jun../"
] | xiaowen1314jun../ |
8da4395f2436b0a6245cfbd621cdfe651633061b | 35d7dbcc050804485465a3e42722ddd49b9cca97 | /src/main/java/org/khw/book/chap11/servlets/MainServlet.java | a463221f11692709dcc986cb08d41f6d6c1d3120 | [] | no_license | KImHyeongWook1/khw-servlets | 4b2c4e372e4a7050f39d963146e62fde04167fa7 | 76ed59944aaf92326dba8369a2e654d6963af75f | refs/heads/master | 2020-05-07T21:33:50.928081 | 2019-05-03T02:54:16 | 2019-05-03T02:54:16 | 180,909,755 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 574 | java | package org.khw.book.chap11.servlets;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@WebServlet("/main")
public class Ma... | [
"cokecan@daum.net"
] | cokecan@daum.net |
b79bdebfd667f1ae9a3e5620969b7fc7bb788a81 | 6b744b021df945856d14bf01c589e9f0cbb61c2a | /MyNguyen/src/test/java/Railway/ChangePasswordTest.java | 473cbbf879210371862ca14e9c654ecb8a2ebdfb | [] | no_license | mynguyen28/MyNguyenSelenium | 810b490fe80d81165e3b2b2831f34965d02a0b8c | a84e585af6e3d9b707a13cdbd54fbc496233350f | refs/heads/master | 2020-04-07T12:32:27.115876 | 2019-01-17T10:34:26 | 2019-01-17T10:34:26 | 158,371,462 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,626 | java | package Railway;
import static org.testng.Assert.assertEquals;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
import Common.Constant.Message;
import Common.Common.Utilities;
import Common.Constant.Constant;
import Common.Constant.Constant.Pag... | [
"my.nguyen"
] | my.nguyen |
0cc6021531e1a91de19699fecb930ca048ff8aa2 | 7dfb762f01e04fd4e42b4bf705bfc79979d86dbb | /src/main/java/com/amit/kfc/App.java | d286f470bb732d0931a1833c4f69097d592645db | [] | no_license | drag-bck/RestaurantManagementSystem | a54bb40241d27ae91eb75acaf1c8e5d615a40f13 | b061229040ccb874a992a42558cc77eee198c1ac | refs/heads/master | 2020-03-30T07:38:06.151901 | 2018-09-30T09:50:34 | 2018-09-30T09:50:34 | 150,954,354 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 186 | java | package com.amit.kfc;
import com.amit.kfc.controller.Models;
public class App {
public static void main(String args[]) {
Models models = Models.getInstance();
models.init();
}
}
| [
"drag.bck@gamil.com"
] | drag.bck@gamil.com |
a0e1ab19c2f8b3f978456a1ebd4458b563e9eedb | 42976852438d61998f740dce9d36b4fea3c25dff | /src/main/java/com/designpattern/combining/factory/Quackable.java | be7265d2be0cf2a8deb44feb7bf834564f5d0cf0 | [] | no_license | xueshuiyy/designpatterns | e2f125ed549e660d2e86bb15d0303ce5873ddbc8 | 13d703c569fa25c6b61b28c8071e6473aaed62a7 | refs/heads/master | 2020-05-03T20:21:05.559728 | 2019-04-01T07:01:43 | 2019-04-01T07:01:43 | 178,801,032 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 99 | java | package com.designpattern.combining.factory;
public interface Quackable {
public void quack();
}
| [
"xueshuiyy@126.com"
] | xueshuiyy@126.com |
ad6d1fd5493d6c7bde28e89f90bc1f8176c056e4 | 7e93f493b79d1bf2e341cb7fec2f3f54637caad6 | /BOJ/9507_GenerationOfTribbles.java | 0dfdb446c1f81862b5483b6cc573b8178a3e9a24 | [] | no_license | seoheewon/Coding-Test | 08441e5eb0c43ce026c87f72b32c17ed272a8a2a | a1aaa250654009c06275b5dfa14496b64cf3c489 | refs/heads/master | 2023-04-05T00:35:13.895973 | 2021-04-15T07:18:57 | 2021-04-15T07:18:57 | 141,401,012 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 519 | java | import java.io.*;
public class Main {
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int T = Integer.parseInt(br.readLine());
long[] tc = new long[68];
tc[0] = 1; tc[1] = 1; tc[2] = 2; tc[3] = 4;
for(int i=0;i<T;i++)... | [
"noreply@github.com"
] | seoheewon.noreply@github.com |
c1a4f91af6a4b661069ac1dba22c1bd610f9d94a | 30f4cae642142e81a081afd6eaf120966c6c637e | /zeus/src/main/java/com/zeus/core/db/DatabaseManager.java | 16189941de44d04c8dcbe2701725bba84618869e | [
"Apache-2.0"
] | permissive | XDebuff/Zeus | 0212b9981b916b713a2bdd7e3454bdb2a2a4483d | 207290af1c8ecc49b8b15dec8b92f948fa5c61f9 | refs/heads/master | 2020-12-28T05:39:47.615118 | 2020-11-11T14:37:25 | 2020-11-11T14:37:25 | 238,199,715 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,367 | java | package com.zeus.core.db;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.text.TextUtils;
import android.util.Log;
import com.j256.ormlite.support.ConnectionSource;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Arrays;
import java... | [
"458796489@qq.com"
] | 458796489@qq.com |
ef80921dc575b77a508cb123a2b17a8a8d0225b9 | f8cf51eb4f81ed2b40834d73b165c2c8062873cb | /switch-cloud/switch-cloud-manageport/src/main/java/com/windaka/suizhi/manageport/model/TJInfoPub.java | 12012aee45064f53a904b534269fad948212119d | [] | no_license | wujianjun789/oldGongan | 646bd5b22e0d9382cf6ee2a0941035d99f9aa961 | 8d85b827d8829e3923db174a8f3a867d73547db1 | refs/heads/master | 2022-10-24T16:09:01.324790 | 2020-06-09T08:22:45 | 2020-06-09T08:22:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 741 | java | package com.windaka.suizhi.manageport.model;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* ็ป่ฎก๏ผไฟกๆฏๅๅธModel
* @Author pxl
* @create: 2019-05-29 10:28
*/
@Data
public class TJInfoPub implements Serializable {
private static final long serialVersionUID = 1L;
private String id;
... | [
"hanjiangtao"
] | hanjiangtao |
6ac14a03cb00fc8233cb9e305c4c7b3c3ff5bcbb | 38e4e49012ae3ecaaf58a260a7d760d8fad8f66f | /cloud-consumer-feign-order80/src/main/java/com/atguigu/springcloud/controller/OrderFeignController.java | 7a90c7f20cdfec02576895c1bc2ffa038ffba12e | [] | no_license | jwen1994/cloud2020 | 02a888c62eb769d38e2514b17dae3de7359728ae | 614eee6d92f5ed4268856c81504d1080c38c9a54 | refs/heads/master | 2023-03-23T16:57:02.397177 | 2021-03-10T03:19:10 | 2021-03-10T03:19:10 | 341,524,958 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 907 | java | package com.atguigu.springcloud.controller;
import com.atguigu.springcloud.entities.CommonResult;
import com.atguigu.springcloud.entities.Payment;
import com.atguigu.springcloud.service.PaymentFeignService;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVa... | [
"526464869@qq.com"
] | 526464869@qq.com |
1e6073cbb7a908b20863cf1b08245e7750da1f59 | 316098af0f987ea8066028a89d47e80f884dcb41 | /MidTermProjectSem2/src/CLO.java | 0be44c57b4f99cc066c13725818826a856c9470f | [] | no_license | alidotdev/MidTermProjectSem2 | 04231a980370caf04e7b8ac4ed4bb4467cd27ccd | 04ee4b4a6635aa0fc89549542ec18c6659a8599d | refs/heads/main | 2023-04-30T17:58:21.489061 | 2021-04-24T10:26:33 | 2021-04-24T10:26:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 255 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
*
* @author Muhammad Ali Murtaza
*/
public class CLO {
}
| [
"muhammadalimurtaza997@gmail.com"
] | muhammadalimurtaza997@gmail.com |
e1fb89d91ce893035cebf0ce4a8c0632d4af58f7 | 5f86586428ee44cfbe9fb0022ede2082b9981f76 | /example/BPM/HeartController.java | 5b879b22f2372ecae3702203c47b750c14fc511b | [] | no_license | czliyu/head-first | 36dfddf2ef482f76436d3f314f64d03b42305907 | 35aa2c8b1623a1b6617a1c2b722be055b59a1766 | refs/heads/main | 2023-01-28T01:35:16.350530 | 2020-12-11T12:35:42 | 2020-12-11T12:35:42 | 317,217,514 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 583 | java | package example.BPM;
public class HeartController implements ControllerInterface {
HeartModelInterface model;
DJView view;
public HeartController(HeartModelInterface model) {
this.model = model;
view = new DJView(this, new HeartAdapter(model));
view.createView();
view... | [
"476619600@qq.com"
] | 476619600@qq.com |
5307c8f7c7125414f64d3723bd18dc079ada2b79 | d290dfc198c894af23c7fbe91c4a139e2ade4a37 | /src/ProfileMode.java | c3d2a192137f8f257822535cfb8e584ec35dd122 | [] | no_license | ggomes/detectormodel | 16f2a5de1eb898b09ea29f1f2d025fe78c418aa5 | cc454ff4dbc610769f2a77db883ccbcb3a8ebddf | refs/heads/master | 2021-01-21T10:13:17.825752 | 2013-12-27T03:46:08 | 2013-12-27T03:46:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 60 | java |
public enum ProfileMode {
IncreasingEntropy,ShocksOnly;
}
| [
"gomes@path.berkeley.edu"
] | gomes@path.berkeley.edu |
e18614000fe410262acbb1f4c39d5b610c40c307 | 182f99d02a1af4343ca39966514944acdcbf21f6 | /src/test/java/step_definitions/configuration/CreateAlerts_StepDefinition.java | 82edf8aee02ac988a38ed1265d7ae538dda058ae | [] | no_license | Yusufurkan/LastMondayProject | e0f575a926da7a940255cb85b7b636e0798ee670 | 418de3a3b18317755704c00fd035aa58c4f0b7b2 | refs/heads/master | 2020-04-29T04:57:55.854321 | 2019-04-14T23:20:57 | 2019-04-14T23:20:57 | 175,865,220 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,827 | java | package step_definitions.configuration;
import cucumber.api.java.en.Then;
import org.junit.Assert;
import utilities.Pages;
public class CreateAlerts_StepDefinition {
Pages pages = new Pages();
@Then("click on create")
public void click_on_create() {
pages.alertsPage().create.click();
}
... | [
"ozzfrkn@gmail.com"
] | ozzfrkn@gmail.com |
a3fcb65c75394cdfce628306405ddc89c13c6891 | 0d37aa5a843b424cccfc3d5f9ce6547c5b6f2440 | /java/src/ch04/s03/Enumeration.java | 4a95e4779890205a216aca7f58243dd1dc0f25e7 | [
"MIT"
] | permissive | theVelopr/refresh | 4d93bde81b2d1202556496ed72b2f322b1e9a0d7 | cc8f2bbfe30f2b9f6d45fb826526b48d70ae67cf | refs/heads/main | 2023-04-30T06:40:51.094776 | 2021-05-27T01:21:41 | 2021-05-27T01:21:41 | 365,957,802 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,213 | java | package ch04.s03;
/**
* ์ด๊ฑฐํ (Enumeration)
* enum ํค์๋๋ก ํํ
* ๋ด๋ถ์ ์ธ ๊ตฌํ์ enum -> java.lang.Enum ํด๋์ค๋ฅผ ์์๋ฐ์
* enum์ ๋ค๋ฅธ ํด๋์ค๋ฅผ ์์ํ์ง ๋ชปํจ
*
* ์ด๊ฑฐํ์ ๋ค๋ฅธ ํด๋์ค๋ฅผ ์์ํ์ง ๋ชปํ์ง๋ง, ์ธํฐํ์ด์ค ๊ตฌํ์ ๊ฐ๋ฅ
* ์ด๊ฑฐํ ํ์
์๋ ์ด๊ฑฐํ ์์์ null ๊ฐ ํ ๋น ๊ฐ๋ฅ
*/
enum Job { // ๊ฐ ์์๋ 0๋ถํฐ ์ซ์๋ฅผ ๊ฐ์ง์ง๋ง, ์ฌ๋ธ๋ก๋ง ์ฌ์ฉํ๊ณ ์ซ์๋ ์ฌ์ฉํ์ง ์์.
STUDENT, MARKETING, DEVELOPER, CEO;
}
class Fo... | [
"immortaldk@gmail.com"
] | immortaldk@gmail.com |
9be4474e3e39f2728fa85faa623581df55005503 | 72451944f5e57ce17f60442783229f4b05d207d7 | /code/src/com/asiainfo/stopSelling/dao/interfaces/IStopSellMDAO.java | 4516e721437991f31336dc59c28e8ac399be769e | [] | no_license | amosgavin/db2app55 | ab1d29247be16bc9bbafd020e1a234f98bac1a39 | 61be5acb3143f5035f789cd0e0fd4e01238d9d7d | refs/heads/master | 2020-04-07T08:26:20.757572 | 2018-07-13T01:55:47 | 2018-07-13T01:55:47 | null | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 1,410 | java | package com.asiainfo.stopSelling.dao.interfaces;
import com.asiainfo.stopSelling.ivalues.IBOStopSellMValue;
public interface IStopSellMDAO {
public int save(IBOStopSellMValue[] stopSellCharge) throws Exception;
public IBOStopSellMValue getStopSellMInfoById(String mainId)
throws Exception;
public IBOStopSellM... | [
"chendb@asiainfo.com"
] | chendb@asiainfo.com |
a775ff4a26c6962098174796614a5e2ee8b28432 | 8858147b8d4c1c673cb58e9a34994ac726c12a73 | /PatternRecognition/Fast.java | a5b422556bea2e77ab45761edc1c9e570d1cf141 | [] | no_license | Altynai/CourseraAlgorithms | 0ae3dbec8c4fd2cfb89ce4b64576e722caf95ffd | 12dbc117deb03e71a3ba6ca1d36f29305523189d | refs/heads/master | 2020-06-30T00:37:43.684942 | 2013-12-18T13:44:10 | 2013-12-18T13:44:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,416 | java | import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Scanner;
import java.util.TreeMap;
public class Fast {
private static void swap(Point[] points, int i, int j) {
Point swap = points[i];
points[i] = points[j];... | [
"Altynai.me@gmail.com"
] | Altynai.me@gmail.com |
9b0df6c34c3f541a0833da8552808368ba2dad4c | 9ecee81cedaaeee6d0b271fcc9567621a2b57bf3 | /feedReader/src/main/java/com/feedreader/model/FeedSource.java | 7e235723b2471d780e6f262db79b98e8c6878984 | [] | no_license | aschmalz/RestApi | f21d9c4626c4f8b98739fa54fabd60b61bb2c198 | ef2df46f3653884654980d6cfe87349bcaacd2a0 | refs/heads/master | 2016-09-05T21:46:46.150988 | 2015-03-19T00:51:13 | 2015-03-19T00:51:13 | 32,490,208 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,367 | java | package com.feedreader.model;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.Table;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
@Entity
@Table(na... | [
"alexander.schmalz@combase.de"
] | alexander.schmalz@combase.de |
e416dce49542251a4b76e4830fd2a56fd8844d99 | 3e096dc4bd4df011aadaf236831fb2f5ba2f31f9 | /src/com/casic/datadriver/model/file/File.java | 3688089d1d19a535d836b85ddc0f541eb42c5575 | [] | no_license | hollykunge/newnewcosim | 2a42d99e7337263df4d53e0fadf20cb6c6381362 | dc3f86711a003f2608c75761792ea49c3da805d1 | refs/heads/master | 2020-03-29T09:15:05.705190 | 2019-07-22T08:48:09 | 2019-07-22T08:48:09 | 149,748,589 | 1 | 5 | null | 2019-07-22T08:48:10 | 2018-09-21T10:29:04 | JavaScript | UTF-8 | Java | false | false | 1,336 | java | package com.casic.datadriver.model.file;
public class File {
private Integer ddFileId;
private String ddFileName;
private String ddFileSvrname;
private String ddFileDescription;
private Integer ddFileType;
private Integer ddFileKeyword;
public Integer getDdFileId() {
return dd... | [
"hollykunge@163.com"
] | hollykunge@163.com |
15083ea3fa74a7a8a812257a79af85935c2dd865 | e6c6729096b6a5714ed910d26b22a89d5ebf4bfc | /src/org/wangbo/factory/simplefactory/pizzastore/pizza/Pizza.java | e316dbf1bd68f0b0881e7a0cab9b79d4fa773c39 | [] | no_license | jason-wang1/DesignPattern | 7cc68d6b7357276cafde31103e72e07e1e695ec4 | e57188c3f8c48386c3c88ff6def60e384ded1d26 | refs/heads/master | 2022-12-08T15:47:31.820782 | 2020-09-02T14:57:24 | 2020-09-02T14:57:24 | 291,656,787 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 605 | java | package org.wangbo.factory.simplefactory.pizzastore.pizza;
/**
* Descreption: XXXX<br/>
* Date: 2020ๅนด08ๆ22ๆฅ
*
* @author WangBo
* @version 1.0
*/
public abstract class Pizza {
protected String name;
public Pizza() {
}
public abstract void prepare();
public void bake() {
System.out.p... | [
"1016765655@qq.com"
] | 1016765655@qq.com |
55178a5b6952764b3a1b683f3fd757c91f98cc48 | 119f5822841a26a5160c0194aacabb74f496cadb | /d7/wlasna_kolekcja_zadanie_rozwiazanie/src/main/java/Main.java | 53fb9494ec4ca556ddd4a742fdf17ae27a57216a | [] | no_license | LukaszTheProgrammer/javacze | 1d20ad3f0327ac39208e48813def994bdbafff88 | aff6bd7969180936ce849e31412ad2b863c5386a | refs/heads/master | 2020-04-15T00:28:21.181440 | 2019-01-25T18:34:01 | 2019-01-25T18:34:01 | 164,241,357 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,015 | java | class Kolekcja <T> {
Object [] liczby = new Object[100];
int rozmiar = 0;
public Kolekcja(T... liczby) {
for (int i = 0; i < liczby.length; i++) {
this.liczby[i] = liczby[i];
rozmiar++;
}
}
public void dodaj(T element) {
liczby[rozmiar] = element;
... | [
"lukasz@videolicious.com"
] | lukasz@videolicious.com |
d73f97429013520c87154f13eaf9f919a6130f7e | 73b1ccaab212efd5b69bfb3b8fb7492f8882d465 | /src/main/java/su/nikitos/social/engine/Game.java | 45c293f3fc866343f5b1995e4b4d375e91a1b810 | [] | no_license | shimotakatani/social | 22e483f4f5630e1552f6edd6d5d1be39b14e5a70 | 1278915710a3abe9a6da0dfe1ae0d46f1180776c | refs/heads/master | 2021-04-27T15:44:05.919704 | 2018-02-27T09:48:01 | 2018-02-27T09:48:01 | 122,475,818 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,338 | java | package su.nikitos.social.engine;
import su.nikitos.social.engine.objects.GameMap;
import su.nikitos.social.engine.objects.GameOptions;
import su.nikitos.social.engine.objects.GameStats;
import su.nikitos.social.engine.objects.units.Rabbit;
import su.nikitos.social.engine.tactor.Tactor;
import javax.inject.Named;
imp... | [
"nikita.ponosow@gmail.com"
] | nikita.ponosow@gmail.com |
d1bf37edc5ca250fe224563f6ac4f4501f234fd5 | b9c2b60cde96c2e9111cc792a48edb02145b0f57 | /KorimaGIGS/KORIMA_PLAYER/app/src/main/java/com/example/korima_player/MainActivity.java | d9a544c90e4d788b0580c2f25b8c087e222ccab4 | [] | no_license | miwelomali/KorimaGIGS | 08e420a04504f2ab0c3ed31e31e2e921d85432e2 | c4e7f993e579295e19f0a5bf5fa2f8e228a716a9 | refs/heads/master | 2020-09-04T05:21:00.747022 | 2019-12-01T06:51:03 | 2019-12-01T06:51:03 | 219,666,328 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,839 | java | package com.example.korima_player;
import android.content.Intent;
import android.os.Bundle;
import com.google.android.material.floatingactionbutton.FloatingActionButton;
import com.google.android.material.snackbar.Snackbar;
import android.view.View;
import androidx.navigation.NavController;
import androidx.navigati... | [
"pollopower74@gmail.com"
] | pollopower74@gmail.com |
5fe057234b781809af95af24b5e0f208aa761843 | 55154bb7807496e7fc10e508ad6eb1bbc078b0a1 | /lesson_3/src/main/java/model/House.java | cbf734b9a7b3187d1b6d6a930efe2b0ba317dc4b | [] | no_license | Pavelstudent1/TeenageMutantJavaTurtles | f980ad18c9ffdb8f0bee3b9fef2d78a21f6148cd | 7a3208d49ef90ed06ddcec444c48ce39ef357636 | refs/heads/master | 2020-04-05T22:30:59.784093 | 2019-03-29T12:19:33 | 2019-03-29T12:19:33 | 157,258,996 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 739 | java | package model;
import java.util.List;
public class House {
private List<Flat> flats;
private HouseType type;
private String address;
public House(List<Flat> flats, HouseType type, String adress) {
this.flats = flats;
this.type = type;
this.address = adress;
}
public ... | [
"daniil_smirnov@epam.com"
] | daniil_smirnov@epam.com |
40b3f60505b89657cd3e33f4be98e8868430a223 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/9/9_4946815dc0b00ab9806b011c57c955b77dfbde07/CommandLineMessages/9_4946815dc0b00ab9806b011c57c955b77dfbde07_CommandLineMessages_t.java | af640deb937736a1eb704d4992a42f0ac128ee43 | [] | 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 | 571 | java | package aQute.lib.getopt;
import java.util.*;
import aQute.service.reporter.*;
public interface CommandLineMessages extends Messages {
ERROR Option__WithArgumentNotLastInAbbreviation_(String name, char charAt, String typeDescriptor);
ERROR MissingArgument__(String name, char charAt);
ERROR OptionCa... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
1b83869829b29b81b65ae5a8798928cf5f07c806 | f96a0a270346c3c69483fad8769839db8354872b | /app/src/main/java/com/administrator/yaya/bean/my/ranking/TestTodayRanking.java | b4e94e81c43587f6d90113408e019bed033b7bd2 | [] | no_license | sky1234567890sky/YaYa | 307bcf5a3a8c30ca75b18285fdeb40f36454d3b3 | bf74577992413319db294178acc9f1852b5b2d35 | refs/heads/master | 2020-08-30T04:10:44.818476 | 2019-12-05T12:29:39 | 2019-12-05T12:29:39 | 214,408,299 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,571 | java | package com.administrator.yaya.bean.my.ranking;
import java.util.List;
//ไปๆฅๆ่ก
public class TestTodayRanking {
/**
* msg : ๆไฝๆๅ
* code : 0
* data : {"userInfoTop":{"id":1,"uid":1103,"uname":"็ไผ็ง","ucount":4},"list":[{"id":1,"uid":1103,"uname":"็ไผ็ง","ucount":4},{"id":2,"uid":1000,"uname":"ไธซไธซ","ucount":... | [
"sky1234567890sky"
] | sky1234567890sky |
2670fe61ebed34ac077c5663a295912f8c9667aa | b6178780b1897aab7ee6b427020302622afbf7e4 | /src/main/java/pokecube/core/items/loot/functions/MakeMegastone.java | 21606da1e16497671f853edaf00a0509f61afac6 | [
"MIT"
] | permissive | Pokecube-Development/Pokecube-Core | ea9a22599fae9016f8277a30aee67a913b50d790 | 1343c86dcb60b72e369a06dd7f63c05103e2ab53 | refs/heads/master | 2020-03-26T20:59:36.089351 | 2020-01-20T19:00:53 | 2020-01-20T19:00:53 | 145,359,759 | 5 | 0 | MIT | 2019-06-08T22:58:58 | 2018-08-20T03:07:37 | Java | UTF-8 | Java | false | false | 2,887 | java | package pokecube.core.items.loot.functions;
import java.util.Map;
import java.util.Random;
import java.util.logging.Level;
import com.google.common.collect.Maps;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonObject;
import com.google.gson.JsonSerializationContext;
import ne... | [
"elpatricimo@gmail.com"
] | elpatricimo@gmail.com |
2d99990ce0fe2c9d0a07b7949fe8bb5533d70b73 | e4f4e871317190cd9bea1ba071d910b70c82af76 | /src/main/java/com/zwy/ciserver/dao/UserEntityMapper.java | e225d7a933d2b81bf842e8a09717ee0663f11bb9 | [] | no_license | Afauria/CI_Server | 2c49ea1c01fbfc027e6a95dbb0ee54c2552cb392 | 37fdd9aebdb2462e7867d8f41dfeddbed6ff71fb | refs/heads/master | 2022-01-28T23:33:19.039898 | 2019-05-03T12:37:12 | 2019-05-03T12:37:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 253 | java | package com.zwy.ciserver.dao;
import com.zwy.ciserver.entity.UserEntity;
import java.util.List;
public interface UserEntityMapper {
int insert(UserEntity record);
int insertSelective(UserEntity record);
List<UserEntity> selectUsers();
} | [
"410013112@qq.com"
] | 410013112@qq.com |
380f85fc53da62d3d9570a458bbc1a75b6890db5 | ed041e3a37f80b641ab9ef8c37e718368342ce2c | /src/net/phoenix/cache/BytesCache.java | 76b738087ae9cbed2b90c38bf37d35a192b235ff | [
"MIT"
] | permissive | chud04/ImageViewEx | f4869502bc05eb92577ce9d67c020aebb4be00b4 | 090950b2713492ad3b2f492f314452b20b07d6f5 | refs/heads/master | 2021-01-16T18:15:42.575018 | 2013-03-04T00:57:39 | 2013-03-04T00:57:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,814 | java | package net.phoenix.cache;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import com.github.ignition.support.cache.*;
/**
* Implements a cache capable of caching byte arrays.
... | [
"francescopontillo@gmail.com"
] | francescopontillo@gmail.com |
1bd83ba86990f57b3c390466ddacf25fe8359ab0 | 71ee0d41eeda8c8bb24d89490157a9083d8b65fc | /10_AnnotationConfigApplicationContext/src/com/gk/test/Test.java | 191c24fcca5ba9e7e6679ee3ed12dae5d7d528bc | [] | no_license | PranaySingh13/Spring-Core | 2dfdc1af0a494a40f6ec47e4463353a62ba8517e | b5acaa5c1688c12593524fcd2f2a39a47f9eb66b | refs/heads/master | 2022-12-24T07:48:22.111569 | 2020-10-02T19:18:50 | 2020-10-02T19:18:50 | 298,739,619 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,010 | java | package com.gk.test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import com.gk.beans.HelloBean;
import com.gk.beans.WelcomeBean;
import com.gk.config.BeanConfig;
public class Test {
public static void main(Strin... | [
"pranay.singh.1393@gmail.com"
] | pranay.singh.1393@gmail.com |
5a162fb54fa87e51f2cf8cd4427741637671f81c | 33b0888fb7da5bdc22c4e14b1db6bf4aa345146c | /projects/Studentreminder/app/src/main/java/com/example/sanjay/studentreminder/MainActivity.java | bf93065ccb99b66267ae7ab7a318e95e6c012b99 | [] | no_license | sanjaysanju06/Student-Reminder | 1412cabdc39f5141eede079aa6f82a2bb1cb3c4f | 27d5cdc9fb35c8ad6feaa6e18aa8bebdc89110b8 | refs/heads/master | 2020-04-18T20:20:52.185193 | 2019-01-26T20:35:41 | 2019-01-26T20:35:41 | 167,735,592 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,606 | java | package com.example.sanjay.studentreminder;
import android.content.Intent;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.view.View;
import android.support.design.widget.NavigationView;
import android.support.v4.view.Gr... | [
"sanjay.damera56@gmail.com"
] | sanjay.damera56@gmail.com |
48e11d06f37c041b1d28e3f9119817a859c11ff8 | 818d134396f4339664f4db8ce714ee6c2d4ce5be | /src/techquizapp/gui/EditPaper.java | 7efab0722990ba2bd4052c063732daa93d1ab63c | [] | no_license | Harry96444/EasyQuizApplication | ea480882ecd241066cd04a56b01ca565fcfd1cce | 128938d08b100bf5039cb0b2a651901cff73634e | refs/heads/master | 2023-04-03T18:40:17.710162 | 2021-04-18T06:46:57 | 2021-04-18T06:46:57 | 319,972,488 | 7 | 1 | null | 2021-01-24T14:48:48 | 2020-12-09T13:56:26 | Java | UTF-8 | Java | false | false | 26,002 | 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 techquizapp.gui;
import java.util.HashMap;
import javax.swing.JOptionPane;
import techquizapp.Dao.ExamDAO;
import techquizapp.... | [
"vyasharsh70@gmail.com"
] | vyasharsh70@gmail.com |
51b76ebcdc05b573fad9162a979792b29d76d54d | 36a45ad91a2229ee261a02db85b3c197bb1dbb46 | /Lab 5/Scource/lab5/app/build/generated/source/r/debug/com/example/takeimage/R.java | f1920d933ae6df73ba81ad92199bf8efaba71bb8 | [] | no_license | Harshilpatel134/CS55551_Adv_Software_Engineering | 68d45064a6e00aa0edeefcdcc18eea0f62bf2b41 | 9f7e1bf6e462c72b3515df1fa89f503e5f0903bd | refs/heads/master | 2021-01-20T22:09:58.450478 | 2017-11-04T04:04:46 | 2017-11-04T04:04:46 | 101,799,110 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 361,605 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package com.example.takeimage;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x... | [
"Harshilpatel007@live.com"
] | Harshilpatel007@live.com |
ee604aabf42535a71ad4bc2b9d007dafc03212ef | 9b32926df2e61d54bd5939d624ec7708044cb97f | /src/main/java/com/rocket/summer/framework/core/annotation/Qualifier.java | 6983af86e81ead4a398c945ad15fa59ec8ce5917 | [] | no_license | goder037/summer | d521c0b15c55692f9fd8ba2c0079bfb2331ef722 | 6b51014e9a3e3d85fb48899aa3898812826378d5 | refs/heads/master | 2022-10-08T12:23:58.088119 | 2019-11-19T07:58:13 | 2019-11-19T07:58:13 | 89,110,409 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 599 | java | package com.rocket.summer.framework.core.annotation;
import java.lang.annotation.*;
/**
* This annotation may be used on a field or parameter as a qualifier for
* candidate beans when autowiring. It may also be used to annotate other
* custom annotations that can then in turn be used as qualifiers.
*
* @author M... | [
"liujie152@hotmail.com"
] | liujie152@hotmail.com |
4d39743c1f7ffede7bcf40fe28d1ebde913b9b1e | d3d6c0274927c1b8b3de3fc28642a1d0c74465c2 | /OldCode/FTPClient/src/clientui/LoginController.java | efb7ff460876a017ab49d5a9aed92154b7ea7731 | [] | no_license | Snickdx/Group-Project | 527ee3e2c47af29378a9e22fd7a74bbd5617df3f | 7a0854592d27d465ba031770e7ba7ee23989f99f | refs/heads/master | 2016-09-08T01:57:06.794072 | 2014-11-27T13:07:57 | 2014-11-27T13:07:57 | 25,546,461 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,709 | java | /*
* Copyright (c) 2011, 2014 Oracle and/or its affiliates.
* All rights reserved. Use is subject to license terms.
*
* This file is available and licensed under the following license:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following... | [
"snickdx@gmail.com"
] | snickdx@gmail.com |
b1553f02c42a944fbdd2b5f5ac3cbb0ea01ba3a2 | ac62ceafb03308a5a99d5b3339183badb562167c | /app/src/main/java/com/dvt/undertheweather/utilis/JSONWeatherParser.java | 9e9c9e49af39fc7ffb8927871a05a0db0bb588ae | [] | no_license | Mutualewis/dvt_under_the_weather | 238479a32e826786c06c07361141006b2ff268c6 | c76a31bb114e70c4dff705173f51039fa842453f | refs/heads/master | 2021-01-22T06:11:07.257587 | 2017-05-26T16:44:51 | 2017-05-26T16:44:51 | 92,526,317 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,492 | java | /**
* This is a tutorial source code
* provided "as is" and without warranties.
*
* For any question please visit the web site
* http://www.survivingwithandroid.com
*
* or write an email to
* survivingwithandroid@gmail.com
*
*/
package com.dvt.undertheweather.utilis;
import com.dvt.undertheweather.model.Loc... | [
"mutualewis@gmail.com"
] | mutualewis@gmail.com |
ecd1f92c8adb5481d76d6a282409f6c8995fb9c4 | 2f7f96b88fc9619bf02ee2ee01efa98648773ea8 | /src/main/java/com/dascom/cloudprint/test/JWT.java | 5df3a9e1bc1d37d885f102b1e323cd5dc77823c1 | [] | no_license | chenrentong/cloudprint | d642e54f84bd40ecec28cd2496963f8a00a09b78 | efd929aa2c93303b3012d504eb907d55e381dc33 | refs/heads/master | 2021-12-14T06:50:53.239878 | 2021-12-06T12:36:06 | 2021-12-06T12:36:06 | 116,782,883 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,271 | java | package com.dascom.cloudprint.test;
import com.auth0.jwt.JWTSigner;
import com.auth0.jwt.JWTVerifier;
import com.auth0.jwt.internal.com.fasterxml.jackson.databind.ObjectMapper;
import com.dascom.cloudprint.entity.device.CollectionPrinters;
import java.util.HashMap;
import java.util.Map;
public class JWT {
... | [
"DS-035@DS-022"
] | DS-035@DS-022 |
4383a1a594692d52fca7ef09255a864f726432fd | a03b4617d9b0d543d0cb60b5782e2095f0c68623 | /Logistic-Company/LCS/src/test/java/com/logistics/OfficesApplicationTests.java | 1779f35915d0b48ba4b1827e8fb0d82b8dbc8655 | [] | no_license | mrtngv/University | d6c48c2e8f1c2cd78c3517c5cffed5fe8e54c882 | f6e8e16c378ed92ddca3fa3141000a6a70baac59 | refs/heads/master | 2022-11-17T19:59:35.046665 | 2022-06-02T13:13:10 | 2022-06-02T13:13:10 | 261,045,979 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 206 | java | package com.logistics;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class OfficesApplicationTests {
@Test
void contextLoads() {
}
}
| [
"mrtng@abv.bg"
] | mrtng@abv.bg |
688daeb3b1449624de5e1bdef71aed5cf597dc5f | bdd422d2f893fa8e7e2b2469363d4bcc5694fe44 | /L_Java/pattern/builder/SubMealBuilderA.java | e9007003b5b0e82d8a92ca5e1b32c3f98421a33c | [] | no_license | pishuiwei/L_codes | d49a0c8cb3f9c7c3c08827703c941021f1790e8b | b883559d88dc099ae8dd60692b027870432a2b45 | refs/heads/master | 2022-06-23T05:46:58.112752 | 2019-10-15T14:41:27 | 2019-10-15T14:41:27 | 155,565,127 | 0 | 0 | null | 2022-06-21T00:51:23 | 2018-10-31T13:48:59 | Java | UTF-8 | Java | false | false | 224 | java | package builder;
public class SubMealBuilderA extends MealBuilder{
@Override
public void buildFood() {
meal.setFood("ไธไธช้ธก่
ฟๅ ก");
}
@Override
public void buildDrink() {
meal.setDrink("ไธๆฏๅฏไน");
}
}
| [
"823598326@qq.cpm"
] | 823598326@qq.cpm |
f58d8d99aa168207de3f5256c85eee8244fb7c8e | ebb8ccce2aacbde17e1b23ae87dca05564bd3f44 | /app/src/main/java/com/example/liuwen/end_reader/Action/SearchBookAction.java | ebd2588c48ed1c76153710ded888353dafe61c74 | [] | no_license | liuwen370494581/End_Reader | 385d4ddb1489e51afe2c0f2309ea0483448a5232 | 29b8c602978887b6612ccbe26a3d9cb445146f40 | refs/heads/master | 2020-03-25T13:45:19.935788 | 2018-09-30T05:55:02 | 2018-09-30T05:55:02 | 143,835,942 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,297 | java | package com.example.liuwen.end_reader.Action;
import com.example.liuwen.end_reader.Bean.Dish;
import java.util.ArrayList;
import java.util.List;
/**
* author : liuwen
* e-mail : liuwen370494581@163.com
* time : 2018/09/07 14:44
* desc :ๆ็ดขไนฆ็ฑ็ๆฐๆฎ็ฑป ๅ
จ้จๅฐ่ฃ
ๅจๆญค
*/
public class SearchBookAction {
public static Lis... | [
"370494581@qq.com"
] | 370494581@qq.com |
e7624f55c2f6e50cc1db68c42c58f18ecdace9a4 | e7a4cc531fe08448f022fb86de4c8ec738f241d9 | /astronaut-abstract/src/main/java/com/diaimm/astronaut/configurer/annotations/RestAPIRepository.java | 65ba08cdd4a647f319aed3bb740ce65d3b2fbe93 | [
"MIT"
] | permissive | diaimm/astronaut | aa56c227997662d3d5b3b2eb074ac76355d9c16a | 42886351478f349343ced0332cc261337e00bf9d | refs/heads/master | 2020-05-21T23:58:44.013348 | 2016-10-31T14:24:57 | 2016-10-31T14:24:57 | 64,394,839 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 451 | java | package com.diaimm.astronaut.configurer.annotations;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.springframework.stereotype.Component;
@Target({ Elem... | [
"diaimm@coupang.com"
] | diaimm@coupang.com |
3ad3446fa379a02aaaf7f64a2acd196004ffe9ea | 20a378ab710de8753794d318098f7325ccea80d2 | /android/app/src/main/java/com/food/MainApplication.java | 3d6d2a3d9fffecf8a0be31128f04a99f6d4ad2f2 | [] | no_license | amartelai/foodApp | 77d98d4b9b78d08560dc3d7e2ba4798b5f264897 | f32be90ed37ea579f75702dbe8b710bf28ddef12 | refs/heads/main | 2023-04-18T17:15:42.981803 | 2021-04-29T12:52:17 | 2021-04-29T12:52:17 | 362,816,895 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,271 | java | package com.food;
import android.app.Application;
import android.content.Context;
import com.facebook.react.PackageList;
import com.facebook.react.ReactApplication;
import com.facebook.react.ReactNativeHost;
import com.facebook.react.ReactPackage;
import com.facebook.soloader.SoLoader;
import java.lang.reflect.Invocat... | [
"55350885+amartelai@users.noreply.github.com"
] | 55350885+amartelai@users.noreply.github.com |
d5c1fb523effe8360b761c19d8c26b23ddfae0a8 | 433ffad1ed3cdb4be64b9ecc7122504cbfac6482 | /util/src/main/java/org/footoo/common/log/Logger.java | 57660b5c38fd9a7915f53cddee17d8306f75160b | [] | no_license | yuriyao/Razor | ad1189969c3a193178025fb65f37296ad9f82ad2 | 487cf80736df462a053775504e1e98d737fbaedd | refs/heads/master | 2021-01-01T05:32:58.834314 | 2014-06-15T16:34:47 | 2014-06-15T16:34:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,906 | java | /**
* Alipay.com Inc.
* Copyright (c) 2004-2014 All Rights Reserved.
*/
package org.footoo.common.log;
/**
*
* @author jeff
* @version $Id: Logger.java, v 0.1 2014ๅนด2ๆ28ๆฅ ไธๅ7:47:08 jeff Exp $
*/
public interface Logger {
/** debug็บงๅซ */
public static final int DEBUG = 0;
/** info็บงๅซ */
public stat... | [
"heishiyuriyao@gmail.com"
] | heishiyuriyao@gmail.com |
ace1b97442bafb974a10c87c1555f5aa9e86ddd5 | db2c6061b99e501aa9047359607915ca569a1d0d | /ContasBancariasJob/src/main/java/com/springbatch/contasbancarias/dominio/TipoConta.java | 49e7969ee9edcef8bb5f28d7fce756658ba728a1 | [] | no_license | gloriiakang/job-conta-bancaria | c1adab9d1f0e5f91397ec8d51a836159258c79e8 | a7e9950775578d17839f20ccfca0b5f9b5db3f8d | refs/heads/main | 2023-05-07T13:35:55.803437 | 2021-05-28T22:59:44 | 2021-05-28T22:59:44 | 371,834,521 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 465 | java | package com.springbatch.contasbancarias.dominio;
public enum TipoConta {
PRATA, OURO, PLATINA, DIAMANTE, INVALIDA;
public static TipoConta fromFaixaSalarial(Double faixaSalarial) {
if (faixaSalarial == null)
return INVALIDA;
if (faixaSalarial <= 3000)
return PRATA;
else if (faixaSalarial > 3000 && faix... | [
"noreply@github.com"
] | gloriiakang.noreply@github.com |
2c58fffd05e8693dd9ea16af1106a3b10a792034 | 949c9d796c6779418d1b13c730a0acc3c22a7be0 | /src/oasis/names/specification/ubl/schema/xsd/commonbasiccomponents_2/InsuranceValueAmountType.java | 45a3af0f029f45f60cbedc234553241faa7b2e24 | [] | no_license | gvilauy/XpandeDIAN | 2c649a397e7423bffcbe5efc68824a4ee207eb3a | e27966b3b668ba2f3d4b89920e448aeebe3a3dbb | refs/heads/master | 2023-04-02T09:35:04.702985 | 2021-04-06T14:52:52 | 2021-04-06T14:52:52 | 333,752,128 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,253 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.01.... | [
"gabrielvila13@gmail.com"
] | gabrielvila13@gmail.com |
30a1508ebff7a6da6b956bec647a776cddd8a966 | fd0560bd85d5a6c7f4ecee51645ef0f1f7db5779 | /SuperSimpleStock/src/main/java/com/jpmorgan/supersimple/stock/bean/Report.java | c40c7a225c1f4ce4c981b74f8b842b4be60174ba | [] | no_license | GirishRajasekar/TechnicalTest | 712e2eec33eac8e29bbb326563aa3ca039d82795 | d0d72dc7f24aa91e070e74bc793b83029fe3e9b9 | refs/heads/master | 2021-01-19T03:00:58.239182 | 2017-06-11T21:34:23 | 2017-06-11T21:34:23 | 87,301,968 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,114 | java | package com.jpmorgan.supersimple.stock.bean;
import java.util.Map;
public class Report {
private Map<String, Double> buySettlementDateMap;
private Map<String, Double> sellSettlementDateMap;
private Map<String, Double> buyEntityMap;
private Map<String, Double> sellEntityMap
;
public Map<String, Double> getBuySe... | [
"girishgowda.r@gmail.com"
] | girishgowda.r@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.