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
f9834c8cd10d9588f87ba8a3c50593051ca5c2b7
67366a353a13c25d47bbc598d8b55419f5234355
/TP07/src/exercicio01/Armazem.java
ae7e20f93ebfde0153d3d212e92a3b70b6551dbb
[]
no_license
SamiraFreitas/Java-Course
e0f8fd7fede81c314f00cd2878dc26810e84649a
080556d3cd3d0bb5947c5734f3ca9e8a5ccce376
refs/heads/main
2023-01-10T07:48:46.428999
2020-11-06T20:16:06
2020-11-06T20:16:06
310,683,291
1
1
null
null
null
null
UTF-8
Java
false
false
1,194
java
package exercicio01; import java.util.HashSet; import java.util.Iterator; import java.util.Scanner; import java.util.Set; public class Armazem { Set<Produto> produtos = new HashSet<Produto>(); public void adiciona() { Scanner entrada = new Scanner (System.in); System.out.println("Digite o nome ...
[ "noreply@github.com" ]
SamiraFreitas.noreply@github.com
889adac5cd00e18c5185b2c6b3fe02d8bca67bc3
65766c174a06ea7fa6608b2e471b01dcda8d6a46
/Week_07/GenerateParenthesis.java
cc4577519c839be11257047cd1cabec637cc53d1
[]
no_license
cjjcoolboy/algorithm012
956b712f6e3f5e41ff076f85a48c0c84ab7cb962
81d26413508a8cd3fd1d5ed5b5abbaa504ca88d0
refs/heads/master
2022-12-19T10:18:42.145556
2020-09-20T15:09:23
2020-09-20T15:09:23
277,554,982
0
0
null
2020-07-06T13:51:29
2020-07-06T13:51:28
null
UTF-8
Java
false
false
1,271
java
import java.util.ArrayList; import java.util.List; /** * @Deseription 括号生成 * leetcode--22 **/ public class GenerateParenthesis { /** * 剪枝方法 * @param n * @return */ public static List<String> generateParenthesis(int n) { List<String> result = new ArrayList<>(); helper(res...
[ "455984146@qq.com" ]
455984146@qq.com
133a45c6971eb003af02c1404fda5b459b973a73
897b88f1095154a668cd1e06e230c19f34fdea7e
/src/main/java/xyz/imostro/c04factory/pizza/pizza/ingredient/clams/FreshClams.java
d811febfeb49441c02ef103c90d2bfc35c461447
[]
no_license
imostro/design-pattern
835e10db2dcf593c1ad9962e1d2ea3fa3094fddb
20bab222cddb84dc99145ace646a722851bd35c9
refs/heads/master
2022-12-29T22:13:26.622658
2020-10-04T06:55:40
2020-10-04T06:55:40
301,060,711
0
0
null
null
null
null
UTF-8
Java
false
false
104
java
package xyz.imostro.c04factory.pizza.pizza.ingredient.clams; public class FreshClams extends Clams { }
[ "386344008@qq.com" ]
386344008@qq.com
43df30dbcaa4aec10f1473e6f939b5b57468eb4e
0627168396bcd034c7a818eb98e1161cfcd25f62
/Softuni Advanced 26.01.2021/src/AddVAT.java
6b570f8162d4946f1ecc96ebeea71e9eda44480d
[]
no_license
ivandanin/Softuni-Advanced
4f1565e2d9a03eb12eae55049171a7a5ae24562b
a20e2eb65ae85206fcff219507cd02d1d91ae945
refs/heads/main
2023-03-05T00:37:19.391790
2021-02-20T09:22:54
2021-02-20T09:22:54
329,394,290
0
1
null
null
null
null
UTF-8
Java
false
false
559
java
import java.util.Arrays; import java.util.Scanner; import java.util.function.UnaryOperator; public class AddVAT { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); UnaryOperator<Double> vatAdder = priceWithoutVat -> priceWithoutVat * 1.2; System....
[ "noreply@github.com" ]
ivandanin.noreply@github.com
713c3247e6c98b95222a3e80a3af4ce4f420247f
1932efbc90243a528380eee5393a26f253120d26
/src/main/java/ru/home/jspr/task2/App.java
0e3f51057b24ae323dcfd084e3c5d5ca65f8e328
[]
no_license
nikolaydmukha/netology-jspr
ef14884257259038d6ddbbce12e5fe4f986d8c32
877edd429b5ff54c9fb2c923149381adf49eaa13
refs/heads/master
2023-03-25T01:53:02.588083
2021-03-25T10:48:25
2021-03-25T10:48:25
345,029,752
0
0
null
null
null
null
UTF-8
Java
false
false
2,635
java
package ru.home.jspr.task2; import ru.home.jspr.task2.http.Request; import java.io.BufferedOutputStream; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; public class App { public static void main(String[] args) { AppConfig appConfig = AppConfig.getInstance(); ...
[ "dmukha@mail.ru" ]
dmukha@mail.ru
12b1e5a41834f81a8cb925f3ba347652c663a551
35cb46718c9f829a3654dc20a2ff0b04a21a681d
/src/gramatica/FableGrammarBaseVisitor.java
b6ddbd89fc862659616efcf205fdec13fbbcb0a6
[]
no_license
danielhensilva/compiler-agents
9ba0c471c368835b92ab8ce415722a089bc51026
c19032bed38bd74a140de5810bb835d9943e6e81
refs/heads/master
2021-01-19T22:33:36.234868
2015-10-18T03:45:17
2015-10-18T03:45:17
34,574,241
0
0
null
null
null
null
UTF-8
Java
false
false
3,083
java
// Generated from FableGrammar.g4 by ANTLR 4.5.1 package gramatica; import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor; /** * This class provides an empty implementation of {@link FableGrammarVisitor}, * which can be extended to create a visitor which only needs to handle a subset * of the available methods....
[ "danielhensilva@gmail.com" ]
danielhensilva@gmail.com
3e218efc5e9190f49a703ca961cf26d708c570da
39af2276d4ca86caf710fa06953160900b3a234a
/D1/spring-aop1/src/main/java/com/demo/spring/Singer.java
92a05e60f6b60e9eb800bbd1d734c10f5851be16
[]
no_license
o2nitin/Spring-T
c50d4473cde1305edb2995e45a9219bc4b4e970f
da2e00d9ca46c0593d5c70d74dfd35585ee56a49
refs/heads/master
2020-03-31T08:40:35.910649
2018-10-12T12:40:55
2018-10-12T12:40:55
152,067,789
0
0
null
null
null
null
UTF-8
Java
false
false
294
java
package com.demo.spring; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @Service public class Singer implements Performer { @Autowired Audiance audiance; public void perform() { System.out.println("Performing Singnig"); } }
[ "nitinksingh11@gmail.com" ]
nitinksingh11@gmail.com
42eb874c5b0b504197a2cf0650c558a3e8b11b39
0d7bb74c8c5a6b9ad143640a2263a455c2a98e58
/service/domain/src/main/java/cn/fintecher/pangolin/service/domain/service/CaseFollowService.java
8c99901cd23a2a55c5e37fdb0b8343bd7f32f476
[]
no_license
yixinsiyu/pangolin-credit-card-server-fz
c39905846caa2d8db940d6af7d46c95ad324ff2b
6ad85e6b2aedbd2e5a686d6f1fb4de24e25760b8
refs/heads/master
2021-09-25T00:25:07.644474
2018-10-16T05:52:41
2018-10-16T05:52:41
null
0
0
null
null
null
null
UTF-8
Java
false
false
18,584
java
package cn.fintecher.pangolin.service.domain.service; import cn.fintecher.pangolin.common.enums.ApplyType; import cn.fintecher.pangolin.common.enums.ManagementType; import cn.fintecher.pangolin.common.enums.PaymentStatus; import cn.fintecher.pangolin.common.enums.AssistApprovedResult; import cn.fintecher.pangolin.comm...
[ "rbt021@163.com" ]
rbt021@163.com
c88d738dd8938fb2887c6cf13397e6c53a8147a0
1a29514927d5ba0295c49dd4e7a4249f066fbb17
/app/src/main/java/com/jugal/udacity/connection/API.java
87e7e34945cf24526a270b54e18dd1df2dfdcee5
[]
no_license
jugalkishorerawat/PopularMovies_stage1
92f2141c2d2044753c95f7c102c35ebfbb1a689b
f5797e3b7c918a3b7b9d5e8773092f3815c51cdb
refs/heads/master
2021-01-10T09:24:59.957657
2016-04-04T15:46:45
2016-04-04T15:46:45
55,424,033
0
0
null
null
null
null
UTF-8
Java
false
false
388
java
package com.jugal.udacity.connection; public class API { static public String API_URL = "http://api.themoviedb.org/3/discover/movie"; static public String API_KEY = "YOUR_API_KEY"; static public String IMAGE_URL = "http://image.tmdb.org/t/p/"; static public String IMAGE_SIZE_185 = "w185"; static p...
[ "jugalrawat@gmail.com" ]
jugalrawat@gmail.com
e46c4e258726e2d6ab529581e43a3054af61cc84
e7e276ece390306ac721b0603a080cf842aa8f90
/app/src/main/java/com/sss/car/dao/SearchHistoryMessageOperationCallBack.java
ab7cd62eaf881e7b6e5766b02f5f8eed20f83808
[]
no_license
michael007js/JuXiangChe
9b1b872063fcb5cdf00f22386b8ec4111bd53d90
9cca55b533d65d1e7c68e3ebbd46a3146545bb20
refs/heads/master
2020-03-08T08:11:04.352956
2018-04-27T05:24:44
2018-04-27T05:24:44
128,015,077
1
0
null
null
null
null
UTF-8
Java
false
false
291
java
package com.sss.car.dao; import com.sss.car.model.SearchHistoryMessageModel; import java.util.List; /** * Created by leilei on 2017/8/30. */ public interface SearchHistoryMessageOperationCallBack { void onClickHistroyMessage(int position, List<SearchHistoryMessageModel> list); }
[ "616425434@qq.com" ]
616425434@qq.com
02a5714cff4a7816fc0199703cc817fa093597cc
a4a4cd0a346bf1597aa393dff64a2e04db9fca4f
/app/src/main/java/com/example/routebuilder/Map.java
bd219f7ee32067974de728d586db64f3f3786830
[]
no_license
alexandmattias/AndroidRoutePlanning
2365d5dc3382ff897a60b2916300cf019e6ecf3a
50a7118ce4983222292f24ce765c825e091ce95f
refs/heads/master
2020-05-02T19:32:00.803010
2019-04-04T15:43:28
2019-04-04T15:43:28
178,161,268
0
0
null
null
null
null
UTF-8
Java
false
false
15,298
java
package com.example.routebuilder; import android.content.Intent; import android.graphics.Color; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.view.View; import android.widget...
[ "alex-maja@hotmail.com" ]
alex-maja@hotmail.com
4a3f22a66f1feaaa6c26c5fc41045bd1440efffd
8ea3a63539792dfdf10fe5c5d4b2ecb74a9cf26b
/Proyecto Final (Juego)/Entrega 3 Aplicación-Persistencia/Arkapoob/src/aplicacion/BloqueNegro.java
71d2d07632f18581630d6d4b7ed8234dc58e45df
[]
no_license
NicolasAguilera9906/POOB
9371e4a34724d56c3be163b7a9ad3d08b3ad93a3
fa563f72efc8db086d5d0c006c46d64bbc47f02d
refs/heads/master
2022-12-26T01:32:28.376628
2020-10-09T17:43:17
2020-10-09T17:43:17
207,452,858
0
0
null
null
null
null
UTF-8
Java
false
false
1,122
java
package aplicacion; import java.awt.Color; public class BloqueNegro extends Bloque { /** * Clase que ejecuta el bloque negro del juego arkapoob * @author: Nicolas Aguilera y Daniel Walteros * @version: 12/05/2019 */ /** * Constructor para la clase bloque * @param x La coordenada horizontal del bloque....
[ "nicolasaguileracontreras@gmail.com" ]
nicolasaguileracontreras@gmail.com
dcc576eaa8ae65aeee8c810fd9fb3136bbd9464e
80c66cca63cebffdd1f397d79bfc040ed188c1c8
/gomint-server/src/main/java/io/gomint/server/util/LongList.java
e90f49ef869375afa0b4ccf2bd82b1aec0e5eb6b
[ "BSD-3-Clause" ]
permissive
severinkehding/GoMint
0902df4f3612cd9dd3d1b01a2e80636449e712fa
a70aeae53dc03803fb37241123b602da027844d5
refs/heads/master
2021-07-02T08:45:25.673228
2017-06-09T12:22:18
2017-06-09T12:22:18
104,562,044
0
0
null
2017-09-23T11:17:00
2017-09-23T11:17:00
null
UTF-8
Java
false
false
2,750
java
package io.gomint.server.util; import java.util.Arrays; /** * @author geNAZt * @version 1.0 */ public class LongList { /** * Default initial capacity. */ private static final int DEFAULT_CAPACITY = 10; /** * Shared empty array instance used for default sized empty instances. We * ...
[ "fabian.fassbender42@googlemail.com" ]
fabian.fassbender42@googlemail.com
890c5f37a599c3f32718c90cd3aa0bddac0e2e32
2e28641b0e145d3d2c35ca51ff0a8253cb46d9cd
/Lab-3/Lab3-Kulkarni/Lab3_server/src/server/jms/consumer/addCategory.java
8fb7800161344533df9cb3baca7e61ae5cb91c54
[]
no_license
kaustubhkulkarni05/Projects_Completed
d423bfbd6f03d9a2c726fe4bbe16601abc271ff9
59354fc4164e59664e73237b2359d9d47895ecc0
refs/heads/master
2020-05-29T18:58:21.676912
2015-01-13T03:29:03
2015-01-13T03:29:03
null
0
0
null
null
null
null
UTF-8
Java
false
false
980
java
package server.jms.consumer; import javax.jms.JMSException; import javax.jms.Message; import javax.jms.TextMessage; import server.jms.dao.CategoryDisplay; import server.jms.entity.User; public class addCategory extends MarketPlaceConsumer { public addCategory(String queueName){ super(queueName); } public v...
[ "kaustubh.kulkarni05@gmail.com" ]
kaustubh.kulkarni05@gmail.com
e9ada204cee70f461f3099b22601306e8e31579a
1ce042755212c498391ee8f88eb6e5755e40049f
/src/ghozkiu/minefectedutil/utilities/metadata/WhisperersMetaData.java
f9ea64acefa3f3306fe1970c266bcab2e8d02f86
[]
no_license
Ghozkiu/MineFectedUtil
505bb168c32b13f349ba62f10553d6ffd7a60142
aeb17097e28337222e9490cd4ef7fe7411ef4f88
refs/heads/main
2023-08-16T15:05:27.286124
2021-10-08T22:20:07
2021-10-08T22:20:07
330,297,934
0
0
null
null
null
null
UTF-8
Java
false
false
1,053
java
package ghozkiu.minefectedutil.utilities.metadata; import org.bukkit.entity.PigZombie; import org.bukkit.entity.Zombie; import org.bukkit.event.Listener; import org.bukkit.metadata.FixedMetadataValue; import org.bukkit.plugin.Plugin; import java.util.UUID; public class WhisperersMetaData implements Listene...
[ "noreply@github.com" ]
Ghozkiu.noreply@github.com
2a1e8cc75b847ca84b90109ad7f4592392ef08a7
b647fa78fd6c4e46bcaf11ab21d9b880e0c83f24
/src/designPatterns/command/classic/Main.java
c74c86d502060636f715249c59b256c37a435be7
[]
no_license
Garazd/DesignPatterns
88b8f15816dec1346122fe267ba28ceddadda9f8
0df55b69e5791e4a4b45f7b8cec7c0702b40da75
refs/heads/master
2021-01-17T13:43:07.664499
2016-06-24T19:36:34
2016-06-24T19:36:34
36,253,867
2
0
null
null
null
null
UTF-8
Java
false
false
2,199
java
package designPatterns.command.classic; // наш конфиг public class Main { public static void main(String[] args) { // эти алгоритмы мы хотим как-то run'ать из Invoker // но при этом мы не хотим, чтобы Invoker про них знал лично ReceiverA receiverA = new ReceiverA(); ReceiverB receiv...
[ "GarazdVZ@gmail.com" ]
GarazdVZ@gmail.com
426d5443a89224ec4d6532135565b83b34685117
225011bbc304c541f0170ef5b7ba09b967885e95
/mf/org/apache/html/dom/HTMLOptGroupElementImpl.java
8be62bfe965fe7d34a8695513b7af4a7ee2b552b
[]
no_license
sebaudracco/bubble
66536da5367f945ca3318fecc4a5f2e68c1df7ee
e282cda009dfc9422594b05c63e15f443ef093dc
refs/heads/master
2023-08-25T09:32:04.599322
2018-08-14T15:27:23
2018-08-14T15:27:23
140,444,001
1
1
null
null
null
null
UTF-8
Java
false
false
812
java
package mf.org.apache.html.dom; import com.google.android.gms.plus.PlusShare; import mf.org.w3c.dom.html.HTMLOptGroupElement; public class HTMLOptGroupElementImpl extends HTMLElementImpl implements HTMLOptGroupElement { private static final long serialVersionUID = -8807098641226171501L; public boolean getDis...
[ "sebaudracco@gmail.com" ]
sebaudracco@gmail.com
169611ee43ef91d4965e37ed46acaece22f94c34
22f15292c5e65b6c2f2353deb8785178c5fdfda7
/src/main/java/com/gms/web/complex/CommandFactory.java
e12a2cc1e45b92dd86a0a83768449a8a91e76377
[]
no_license
Okkaring/gms_spring
4daa9cf5dda9d6bd22fcad458db5d380a5a367d1
bba1243d253abd77c095df69b2043c09afc994d1
refs/heads/master
2021-01-23T14:15:40.794969
2017-09-07T02:27:40
2017-09-07T02:27:40
102,681,278
2
0
null
null
null
null
UTF-8
Java
false
false
910
java
package com.gms.web.complex; import com.gms.web.constant.Action; import org.springframework.stereotype.Component; import com.gms.web.command.*; @Component public class CommandFactory{ public static CommandDTO createCommand(String dir,String action,String page, String pageNumber, String column, String search){ Co...
[ "okkaring@gmail.com" ]
okkaring@gmail.com
d0b09bbb2a11ff0760832437cd42ba3531597532
57e57f2634944d0595258a14af5e20b6df59185d
/bitcamp-java-application2-client/v33_2/src/main/java/com/eomcs/lms/handler/Command.java
ce944a20c41e447506947ab9a3feac91fb28f7c3
[]
no_license
Soo77/bitcamp-java-20190527
f169431aafde5bf97c69484694560af14c246b97
655fc4fb5aedcac805da715def70bab1ed616d96
refs/heads/master
2020-06-13T20:16:02.844148
2019-10-02T11:29:06
2019-10-02T11:29:06
194,775,332
1
0
null
2020-04-30T11:49:50
2019-07-02T02:41:01
Java
UTF-8
Java
false
false
84
java
package com.eomcs.lms.handler; public interface Command { void execute(); }
[ "shimsh3@naver.com" ]
shimsh3@naver.com
72c97ec69faad4c9345729d98b8bab03019ce8d1
95e944448000c08dd3d6915abb468767c9f29d3c
/sources/com/p280ss/android/ugc/aweme/metrics/C33263e.java
7ebd9a81b9fb03b362bbe1da34677ce861bdf6bb
[]
no_license
xrealm/tiktok-src
261b1faaf7b39d64bb7cb4106dc1a35963bd6868
90f305b5f981d39cfb313d75ab231326c9fca597
refs/heads/master
2022-11-12T06:43:07.401661
2020-07-04T20:21:12
2020-07-04T20:21:12
null
0
0
null
null
null
null
UTF-8
Java
false
false
358
java
package com.p280ss.android.ugc.aweme.metrics; /* renamed from: com.ss.android.ugc.aweme.metrics.e */ final /* synthetic */ class C33263e implements Runnable { /* renamed from: a */ private final C33259d f86772a; C33263e(C33259d dVar) { this.f86772a = dVar; } public final void run() { ...
[ "65450641+Xyzdesk@users.noreply.github.com" ]
65450641+Xyzdesk@users.noreply.github.com
bf5e8ff53df9eb24108f38839cf7ad92b2097f77
9ee94b72a31ed0b865d4facfba279990452af5ca
/src/server/game/players/packets/impl/ItemClick3.java
9f02bf71daa55a8fa3ecd036482f49f3b0c7dc2d
[]
no_license
Strucky/Euthymia
4b244067c80715eadd56caa0d9523df68136fc11
41696345bdb1241727bb730c7df58b786be7e6af
refs/heads/master
2023-02-03T03:57:02.321129
2020-12-23T19:57:57
2020-12-23T19:57:57
322,168,160
0
0
null
null
null
null
UTF-8
Java
false
false
2,434
java
package server.game.players.packets.impl; import server.Server; import server.game.players.Client; import server.game.players.packets.PacketType; import server.game.players.content.HandleEmpty; import server.util.Misc; import server.game.players.content.Teles; /** * Item Click 3 Or Alternative Item Option 1 * * @...
[ "artrune7@gmail.com" ]
artrune7@gmail.com
6f7aa6b4e072b59d91559eac45f83ca9af3428f6
61d31471742fce0fe73fa2ada64469194d6580c7
/src/main/java/com/compilerexplorer/common/TaskRunner.java
c04ba97f4b250a50bf244f27503abc107e45a0bc
[]
no_license
ogrebenyuk/compilerexplorer
69c1ff0d052dd789ad523f76a67faf03d1cdc004
ae759f78d7b2bd8869333eb718c0d50fd1e2c404
refs/heads/master
2023-07-25T07:23:25.200127
2023-07-15T23:50:36
2023-07-15T23:50:48
146,115,792
37
5
null
2023-03-13T17:11:47
2018-08-25T17:30:01
Java
UTF-8
Java
false
false
814
java
package com.compilerexplorer.common; import com.intellij.openapi.progress.ProgressManager; import com.intellij.openapi.progress.Task; import com.intellij.openapi.progress.impl.BackgroundableProcessIndicator; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; public class TaskRunner {...
[ "grebenyukoleksandr@gmail.com" ]
grebenyukoleksandr@gmail.com
7e98611ff69a4603e4f020eab45ff49810ab80dd
b7d0289761e58ba60b2ee41ec15a782a12ff49b5
/demo-std-mall/src/main/java/com/xnjr/mall/dto/req/XN808312Req.java
fcae7c1aa8d0a0800acb02c33e6228ea08196237
[]
no_license
yiwocao/demo-mall-public
07a8142db08037c1ebec862dc2c48a6c5ba0360b
df602a8fe2a6c73f57d1bfb0c42641f7aaf1a1e7
refs/heads/master
2021-01-01T18:39:05.964543
2017-08-10T04:23:15
2017-08-10T04:23:15
98,390,377
0
0
null
2017-08-10T04:23:16
2017-07-26T06:58:09
JavaScript
UTF-8
Java
false
false
335
java
package com.xnjr.mall.dto.req; /** * 宝贝查询详情 * @author: asus * @since: 2016年12月21日 下午4:47:30 * @history: */ public class XN808312Req { // 编号 public String code; public String getCode() { return code; } public void setCode(String code) { this.code = code; } }
[ "819037796@qq.com" ]
819037796@qq.com
2f49047a7a9289e026680776958abab3d1efbd68
f128b15dab76d82625501d5ae49a4ff9eab00fae
/Util/src/vib/core/util/environment/Environment.java
a946e91654ee94c34f0a8fbe660f4f6cf740f63d
[ "MIT" ]
permissive
billhj/Etoile-java
02931fbe66ce1ff92237ea3214ccb7acf86218ec
1b231a7bb25d5707381667e73a15863244f847a7
refs/heads/master
2021-01-19T19:30:54.753823
2014-12-12T16:22:36
2014-12-12T16:22:36
27,172,863
0
1
null
null
null
null
UTF-8
Java
false
false
15,026
java
/* * This file is part of VIB (Virtual Interactive Behaviour). */ package vib.core.util.environment; import java.util.ArrayList; import java.util.List; import vib.core.util.IniManager; import vib.core.util.log.Logs; import vib.core.util.math.Quaternion; import vib.core.util.math.Vec3d; import vib.core.util.xml.XML; ...
[ "gabriel.jing.huang@gmail.com" ]
gabriel.jing.huang@gmail.com
d7e5f3b42152bdd3307fe35d0410564f8a11e889
0493ffe947dad031c7b19145523eb39209e8059a
/OpenJdk8uTest/src/test/sun/nio/cs/OLD/IBM1383_OLD.java
62925d9184eb69043a7d2496487d771e5fba907d
[]
no_license
thelinh95/Open_Jdk8u_Test
7612f1b63b5001d1df85c1df0d70627b123de80f
4df362a71e680dbd7dfbb28c8922e8f20373757a
refs/heads/master
2021-01-16T19:27:30.506632
2017-08-13T23:26:05
2017-08-13T23:26:05
100,169,775
0
1
null
null
null
null
UTF-8
Java
false
false
299,870
java
package test.sun.nio.cs.OLD; /* * Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only,...
[ "truongthelinh95@gmail.com" ]
truongthelinh95@gmail.com
eb6bb541a4c19669309cac02641677a72fc15983
bff7caef94b3283bb4b15f6e1d50cddd70e4dc8c
/src/main/java/com/swistak/CookBook/model/Security/UserRole.java
fda7cb4cb9e8fc51758bf43812cfd148cf1bfa65
[]
no_license
Swistak06/CookBook
22c015f238231eeeefd6afa6823baf375e1b798f
7c3968ff4d1db1bc1af6254a9b8cda45182ad44b
refs/heads/master
2020-03-25T00:13:46.253629
2019-02-25T10:19:19
2019-02-25T10:19:19
143,174,937
0
0
null
2019-02-25T10:19:22
2018-08-01T15:30:08
Java
UTF-8
Java
false
false
910
java
package com.swistak.CookBook.model.Security; import com.swistak.CookBook.model.User; import javax.persistence.*; @Entity @Table(name = "user_roles") public class UserRole { @Id @GeneratedValue @Column(name = "user_role_id") private long id; @ManyToOne @JoinColumn(name = "user_id") priva...
[ "lukasz.matysik6@gmail.com" ]
lukasz.matysik6@gmail.com
c9eb4e7b110d52805693a28c53f3dcd19a61d210
73d2a88310ada9bdb2a0b1fbf17bbc40d7d8eaff
/Task(2)/GeneralizedAnxiety.java
00c2db11782eb29a97bcaf5ea8c1a289ec30d8d7
[]
no_license
YasmeenMedhat/Android-Development-Booster
9694d30a8a32e6405f829edb313892953d3c4492
43264ea3e8fc99b189080cf2c2e9adb510639f9a
refs/heads/main
2023-07-16T21:16:20.258801
2021-09-06T15:23:14
2021-09-06T15:23:14
402,402,244
0
0
null
null
null
null
UTF-8
Java
false
false
838
java
package anxietyawareness; public class GeneralizedAnxiety extends Anxiety { String definition="This is when someone feels anxious and worried most of the time, over lots of different things."; String symptoms= "-Heart beating faster\n" + "-Chest tightness\n" + "-Stomach problems\n" + "-Sweaty palms\n" +...
[ "noreply@github.com" ]
YasmeenMedhat.noreply@github.com
f521f8aad17dd111988c87aa22cd53f12b0d9e0d
581de6e4378c6c2e65ddf69355e1a35b23cb7578
/app/models/api/responses/cluster/RadioSummaryResponse.java
a37aecb5370f17c9d2d8cd7b82c85d60684ba167
[]
no_license
gwyden/graylog2-web-interface
a7f03bff1dbbe739f641dc325f7370f7a8befdee
68c7219c41bcf75acc7c88430cdce4e5535624ce
refs/heads/master
2021-01-21T09:52:47.616259
2014-04-25T15:54:23
2014-04-25T15:54:23
null
0
0
null
null
null
null
UTF-8
Java
false
false
961
java
/** * Copyright 2013 Lennart Koopmann <lennart@torch.sh> * * This file is part of Graylog2. * * Graylog2 is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your o...
[ "lennart@socketfeed.com" ]
lennart@socketfeed.com
5009edc8ae88713c77648dd898cb290b5b356f37
69de9958cbb9cd072eb837169d4d51afbfc84b0d
/cs/src/main/java/com/bsd/cse/model/input/PeriodTeamValue.java
ac0094b9a973e09fea6f4ab4592bda61a4cd41a9
[]
no_license
bento0013/BB
2bc7db95285eeba32669116cc3c27ece058d795a
caf52e18d3975818a40fafe6881d64b5ee2813be
refs/heads/master
2016-09-05T13:46:07.169658
2014-11-22T17:49:32
2014-11-22T17:49:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
694
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.bsd.cse.model.input; import com.bsd.cse.model.AbstractPojo; /** * * @author bento */ public class PeriodTeamValue extends AbstractPojo{ private static final long serialVersionUID = 58632284276408975...
[ "bento0013@gmail.com" ]
bento0013@gmail.com
6342f701ed7bcc6c1d2808075fafedd0302a308f
eab06b48df2b63005150c10f1afc4d8bec9a3543
/src/test/java/code/code150/question149/SolutionTest.java
7acbfdf06339d23b7aadfc6952d152baf4c4a7e3
[]
no_license
AziCat/leetcode-java
a0ca9db9663e1a86d82ffaa5fe34326ff1a0b441
0263ac668717a07ad4245edbb6d34db24b63b343
refs/heads/master
2023-04-30T18:19:13.100433
2023-04-19T08:04:14
2023-04-19T08:04:14
217,955,860
0
0
null
2020-10-14T02:48:50
2019-10-28T03:04:58
Java
UTF-8
Java
false
false
1,118
java
package code.code150.question149; import org.junit.Assert; import org.junit.Test; import static org.junit.Assert.*; public class SolutionTest { @Test public void maxPoints() throws Exception { Solution solution = new Solution(); int[][] points = {}; Assert.assertEquals(0, solution.max...
[ "1003980136@qq.com" ]
1003980136@qq.com
8e4ecd8b025892b82ea91bad2a2016f91a9fdc15
c0b312c7418f22ccbe1b1b3358667838e00b6243
/src/com/gridscape/sep/org/zigbee/sep/TargetReduction.java
cef44704529d021fb59c4484a63358a5c09f5da4
[]
no_license
rahul-me/e-ope
cb8005ad93dfe9b5b2f792379f33b678c1bc76a3
3b2e76c3c0109ab10eb2caf013ed541ed54fb260
refs/heads/master
2022-04-16T18:17:45.953574
2020-04-10T17:44:41
2020-04-10T17:44:41
254,696,703
0
0
null
null
null
null
UTF-8
Java
false
false
2,180
java
package com.gridscape.sep.org.zigbee.sep; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * The TargetReduction object is used by a Demand Response service provider to provid...
[ "crahul10101991@gmail.com" ]
crahul10101991@gmail.com
c64c232947f77a96f49e2bdcc583e5476906b018
9a545ee087d5691640a1aada93d2d23013f08fe7
/Football_Scores-master/app/src/main/java/com/thirdarm/footballscores/provider/bteam/BteamContentValues.java
df53a4e856181de6e88419f1f6982140c10afce1
[]
no_license
rdayala/SuperDuo
c54e242e155e0da1cad22d772f96206b4b3494a9
24f495e3404085785c8e0148325622d73bb028d0
refs/heads/master
2021-01-10T05:03:26.088955
2016-02-10T05:56:02
2016-02-10T05:56:02
51,304,193
0
0
null
null
null
null
UTF-8
Java
false
false
3,339
java
/* * Created by rdayala * * Content provider files generated using Benoit Lubek's (BoD) * Android ContentProvider Generator. * (url: https://github.com/BoD/android-contentprovider-generator) */ package com.thirdarm.footballscores.provider.bteam; import android.content.ContentResolver; import android.cont...
[ "raghunath.dayala@gmail.com" ]
raghunath.dayala@gmail.com
36add849b22d9024038601791dd48121ac29a667
1b0c578992559628dc9b5f7c3abaf0d467a23899
/src/chapter08/FindNearestPoints.java
ad93625f329ab8feb951c50cb86680964ee6ad4a
[]
no_license
RomaniEzzatYoussef/Exercises
c9897b92507abf2d7ddc79f7e05b8b3d208f1dad
396900c05dac95954f7ddbc424c5023deb562242
refs/heads/master
2020-09-25T05:52:16.701228
2019-12-13T19:26:12
2019-12-13T19:26:12
225,932,027
1
1
null
null
null
null
UTF-8
Java
false
false
1,378
java
package chapter08; import java.util.Scanner; /** * * 07/12/2017 11:45:10 PM * * @author roman * * * FindNearestPoints * */ public class FindNearestPoints { /** * @param args */ public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print("Enter the number...
[ "romaniezzat@hotmail.com" ]
romaniezzat@hotmail.com
8c887295a0e97e2421bdc58d8d76c7e542a9a087
219eec8263776f759d315eb44204e85ac78be117
/orderitem-2/src/main/java/com/zkdj/orderitem/util/EmailUtil.java
39e648c107d1c1df09ea0ea61fe48a9639c848ad
[]
no_license
GoGoGoljc/tesco
cb4bebae6f962bf4b0d936765353074a75d24f0f
3da2c14216529501130a70144bbea3d19be520e8
refs/heads/master
2022-11-14T11:19:05.382728
2020-07-02T15:53:40
2020-07-02T15:53:40
276,685,995
0
0
null
null
null
null
UTF-8
Java
false
false
752
java
package com.zkdj.orderitem.util;//package com.zkdj.orderitem.util; // //import org.springframework.mail.SimpleMailMessage; //import org.springframework.mail.javamail.JavaMailSender; // ///** // * @author SJXY // */ //public class EmailUtil { // public static void sendMessage(String title, String content, String to,...
[ "1316886226qq.com" ]
1316886226qq.com
117bc6b09959ac5eacbdccfb73d4a5e952af89ab
d68b140f12c13f726e60fc4de48216c994ec0113
/Maven/test/ua/testApp/testApps/CalculateTest.java
5def612a7688a879df51c00af03948c3a29e8389
[]
no_license
diego140584/My_Project
da31f643527d1d4ec93cb0ca4b10d4de28d54cd5
955bea5d3155312aac2ebc70013eb21f44277694
refs/heads/master
2020-04-30T15:09:00.359500
2016-06-07T22:33:32
2016-06-07T22:33:32
46,345,686
0
0
null
null
null
null
UTF-8
Java
false
false
512
java
package ua.testApp.testApps; import org.junit.Test; import static org.junit.Assert.*; /** * Created by Stas on 11.03.2016. */ public class CalculateTest { @Test public void testAddresult() throws Exception { Calculate calculate = new Calculate(); assertEquals(55, calculate.addresult(3...
[ "Stanislav Derkach" ]
Stanislav Derkach
8d11df8431d82b8a2b24338821736eec0623ae65
09a1d457ece3f37cd15dcaa4ff72a50436d44572
/src/com/Students/DB/DAO/LessonDAO.java
9622dd3e0dc3996b24a5f5df0579546a3ca44958
[]
no_license
goldim81/Students
aef37dc43ec3b86f66e57f1388e14f89fb1629ae
8cd7c7cbc593c3fe94946cf53c44625726a7a917
refs/heads/master
2021-07-08T00:57:32.945741
2017-10-05T20:12:54
2017-10-05T20:12:54
105,935,531
0
0
null
null
null
null
UTF-8
Java
false
false
5,274
java
package com.Students.DB.DAO; import com.Students.DB.ConnectionManagerPostgreSQL; import com.Students.DB.IConnectionManager; import com.Students.Object.Lesson; import java.sql.*; import java.util.ArrayList; import java.util.List; public class LessonDAO implements IDAO<Lesson> { public static class LessonDAOExce...
[ "Programm81" ]
Programm81
1c9258a995087ad3ea4649aeb62bd67c5406b89b
5912994e1f07cd27e36af732bd970ef3b6b7de42
/src/main/java/com/qhit/baseDevice/dao/IBaseDeviceDao.java
50d8e1dc78d7e278527a05b620ba54a2817c9882
[]
no_license
himotutu/java-
5f68f275b9e454f74f25fd54e45a341231031cff
d41718962b451ab83df4b2423ee9371c312e92e6
refs/heads/master
2020-05-19T12:05:23.720085
2019-05-05T09:02:21
2019-05-05T09:02:21
185,006,699
0
0
null
null
null
null
UTF-8
Java
false
false
937
java
package com.qhit.baseDevice.dao; import org.apache.ibatis.annotations.Mapper; import com.qhit.baseDevice.pojo.BaseDevice; import java.util.List; /** * Created by GeneratorCode on 2019/04/08 */ @Mapper public interface IBaseDeviceDao { boolean insert(Object object); boolean update(Object object); b...
[ "lll2523439201@163.com" ]
lll2523439201@163.com
0dc8b87210ba05586ec178a4a7d2578f7755c1e1
69a4f2d51ebeea36c4d8192e25cfb5f3f77bef5e
/methods/Method_7740.java
86ddc4cd1e27ed69092584661dc6c8b2e35197c1
[]
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
1,224
java
@Override public int getItemViewType(int section,int position){ HashMap<String,ArrayList<TLRPC.TL_contact>> usersSectionsDict=onlyUsers == 2 ? ContactsController.getInstance(currentAccount).usersMutualSectionsDict : ContactsController.getInstance(currentAccount).usersSectionsDict; ArrayList<String> sortedUsersSecti...
[ "sonnguyen@utdallas.edu" ]
sonnguyen@utdallas.edu
7c7bbb5452c371d83933d4f03f978243579ef2d8
f10c4e9e878776fa611185fbc8ac536f5a27c539
/src/test/Balok.java
ed2560c7f1e1e0eb3d87238da6fe7230d7df59dd
[]
no_license
farkhan777/Modul3Proglan
6a910a8fd8ce724583c0d151e596596f1bdf8c47
74601c09d61a0a658c3bd5c71589cbbbe70e9459
refs/heads/master
2022-09-26T17:43:04.423836
2020-06-04T07:23:49
2020-06-04T07:23:49
269,289,013
0
0
null
null
null
null
UTF-8
Java
false
false
704
java
package test; public class Balok { int panjang; int lebar; int tinggi; public int getPanjang() { return panjang; } public void setPanjang(int panjang) { this.panjang = panjang; } public int getLebar() { return lebar; } public void setLebar(int lebar) ...
[ "farhanhamzah91@gmail.com" ]
farhanhamzah91@gmail.com
17ec0fb534e2f58512e23e9c77c7fca6f6a0db74
9ff3c37df165c2e387e4c28fba5216e334225c27
/SpringMVCComponentAnket/src/com/merve/AnketController.java
c76817e63a23fa4c8d538595f85b344761abc539
[]
no_license
mervenurgulbagci/SpringMVC-Anket
1a8b14dea200e2adf2f48360f0ae065ff8eda44c
032c233aa69ad5fff097587131ea3b2b1830f5e2
refs/heads/master
2022-10-24T20:46:32.120036
2020-06-17T19:44:11
2020-06-17T19:44:11
273,063,926
0
0
null
null
null
null
UTF-8
Java
false
false
1,279
java
package com.merve; import javax.servlet.http.HttpServletRequest; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class AnketController { static Anket ank= new Anket(); @RequestMapp...
[ "noreply@github.com" ]
mervenurgulbagci.noreply@github.com
949831657df0af84a0f63d16b314acc7de50a441
29634d0ae04bbe65403c90002465481147f75a08
/app/src/main/java/razerdp/com/zoomviewactivity/BaseScaleElementAnimaActivity.java
c7092302a333b714b446dc1ebdc435ce367fbf56
[ "MIT" ]
permissive
razerdp/ZoomViewActivity
b57327ce0b15109cd583ebd00af1d519cd2630f9
95fe213216548ccfe501920042870f30a28bd7d1
refs/heads/master
2023-08-29T07:46:40.625085
2016-09-02T09:50:33
2016-09-02T09:50:33
67,190,616
14
1
null
null
null
null
UTF-8
Java
false
false
8,387
java
package razerdp.com.zoomviewactivity; import android.animation.Animator; import android.animation.AnimatorSet; import android.animation.ObjectAnimator; import android.app.Activity; import android.content.Intent; import android.graphics.Point; import android.graphics.Rect; import android.graphics.RectF; import android....
[ "164701463@qq.com" ]
164701463@qq.com
f768386b2a73eb1f8e772590ebae4c8789eeed86
2980d9d1511bab70707baab31431a1161b2ef043
/src/main/java/leader/LeaderSelectorExample.java
b2823fe55faa2dc667e2c88c7292fdeecbb11a50
[]
no_license
twangjie/CuratorExamples
0e316afe1664bf9cc2225042218bc1737b315065
931317da8f7818d0ace63dd15242d89cb74b358c
refs/heads/master
2021-01-01T04:48:08.744030
2017-07-14T15:50:41
2017-07-14T15:50:41
97,249,372
1
0
null
null
null
null
UTF-8
Java
false
false
3,071
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"...
[ "twangjie@qq.com" ]
twangjie@qq.com
f813354a6ed4350e30d61c6d7fa0116a05e76500
f3145a9a62942cf757a9536c41275701717d3e69
/target/tomcat/work/Tomcat/localhost/_/org/apache/jsp/WEB_002dINF/pages/userInfo_jsp.java
d2e09a4a9c82f01caeda4fba3ecbb455a5f20dad
[]
no_license
Kamatchidevinaveen/login
967aaa73403da27e6e556702e7794032de338f40
5ac149b01a1a2786e58e515116387eb2f1ec9bcc
refs/heads/master
2020-03-31T07:28:27.793543
2018-10-08T05:49:18
2018-10-08T05:49:18
152,022,516
0
0
null
null
null
null
UTF-8
Java
false
false
3,748
java
/* * Generated by the Jasper component of Apache Tomcat * Version: Apache Tomcat/7.0.47 * Generated at: 2018-09-20 10:11:42 UTC * Note: The last modified time of this file was set to * the last modified time of the source file after * generation to assist with modification tracking. */ package org.ap...
[ "kamatchidevi@bdcvit.com@16.04.4" ]
kamatchidevi@bdcvit.com@16.04.4
b95be278d0aad185c14661eab6b2d8fdff35ffbd
9b5c30d61b553b0e3474ca80ca968557dd1fa558
/app/src/main/java/com/umpay/payplugindemo/IdCardActivity.java
382185b92bf37561565be50dc6ebdfff991a102e
[]
no_license
huishangplus/PayPluginDemo
81f9d1a857d1a95a68e981742bb22bc198c17443
59dc968d53367fbd7467a20425388f7002987039
refs/heads/master
2020-09-08T11:28:42.532747
2019-11-12T03:21:19
2019-11-12T03:21:19
221,116,083
0
0
null
null
null
null
UTF-8
Java
false
false
5,423
java
package com.umpay.payplugindemo; import android.os.Bundle; import android.os.Handler; import android.view.View; import android.widget.Button; import android.widget.ScrollView; import android.widget.TextView; import com.umpay.payplugin.UMPay; import com.umpay.payplugin.bean.IdCardRequest; import com.umpay.payplugin.be...
[ "85249304@qq.com" ]
85249304@qq.com
b56df9ab5113183df889cd39d90bad6e9a3103ef
07dae024f13792c420bf365e7d3e309e02e9a9f4
/src/main/java/br/org/isac/portaltransparencia/portal/entity/TipoDocumento.java
96efe794da2e7930f5b15aff550772bb9826c3fc
[]
no_license
helipe09/portal-spring
11e7432a89fea9b2f1d139c6a3a2ef457cede28d
5d62aa80657ff8ae2bcb203d03142e85cc6dae88
refs/heads/main
2023-03-12T14:44:27.678694
2021-02-17T18:43:24
2021-02-17T18:43:24
343,540,778
0
0
null
2021-03-01T20:00:50
2021-03-01T20:00:49
null
UTF-8
Java
false
false
2,265
java
package br.org.isac.portaltransparencia.portal.entity; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; import javax.persistence.Transient; @Entity ...
[ "contato@isac.org.br" ]
contato@isac.org.br
22fd25e40e3a51bef57d8e278050211880c2d1af
3a7fe3e6f2454135072c128074b1f1c74f20cd24
/custom/amway/amwaynotificationengine/web/src/org/amway/notification/engine/validator/RegexpValidator.java
06a63b9235e603cb4d95494ca6cb79bf100acc29
[]
no_license
nitin201187/amway
74a2d4f4efcb55048eaca892c8bbe007c2fb6d65
a26f2f0a3381ea31be1ca568545ff8c576cb4262
refs/heads/master
2021-01-10T06:23:13.084177
2017-07-20T04:56:55
2017-07-20T04:56:55
54,173,575
0
0
null
null
null
null
UTF-8
Java
false
false
2,240
java
/* * [y] hybris Platform * * Copyright (c) 2000-2015 hybris AG * All rights reserved. * * This software is the confidential and proprietary information of hybris * ("Confidential Information"). You shall not disclose such Confidential * Information and shall use it only in accordance with the terms of the * li...
[ "nitin201187@gmail.com" ]
nitin201187@gmail.com
cf3775262fd7d2848d6a944cd35c76fc43ad308c
5dcd24a01ddc5b68492d30f70d7df1ae193bd8f2
/WebServiceActorApi.Android/obj/Debug/110/android/src/androidx/cardview/R.java
f8fcef9d7a7e5b3cdde229252dffb56e17416be5
[]
no_license
anagparedes/ActorAPICommunication
e1c9b5ec988317c127d33b59db4f244455db3651
7c5e0db5f862c262c60d0e6ee5ac3f5348df2d75
refs/heads/main
2023-08-02T06:54:24.260113
2021-09-25T14:14:14
2021-09-25T14:14:14
409,776,874
0
0
null
null
null
null
UTF-8
Java
false
false
2,779
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by * Xamarin.Android from the resource data it found. * It should not be modified by hand. */ package androidx.cardview; public final class R { public static final class attr { public static final int cardBackgroundColor = 0x7f03...
[ "anagparedesg@gmail.com" ]
anagparedesg@gmail.com
4cee6d9d537c27ccfdea976f1301552ce737f64e
246b56e778306b502cd29504ae715d24b2cb04d0
/service/src/main/java/com/dem/entity/Order.java
866f6140fa11a50df1fbbd69d61808e8cdc851d4
[]
no_license
huang-demo/fescardubbo
8ea37c9ff23903255adc454baf37c1b686074976
8225a77d76a56e35adcede7b5b84d6245d98aae7
refs/heads/master
2021-10-23T01:56:17.944364
2019-03-14T07:48:01
2019-03-14T07:48:01
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,343
java
/* * Copyright 1999-2018 Alibaba Group Holding Ltd. * * 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...
[ "huang354079281" ]
huang354079281
8c6e5f67b0c7eb7a73ccd7a0065c48c715c8e35b
599473a0352501548ba0d9089a730ceea7e0e1c1
/src/test/java/support/Results.java
9884627ce54b5b1aba58b2ba3f29f6ff07e551fe
[]
no_license
raminder/QE_Engineer
7deb143d651f204249029b1559ab61f92a85acdf
35a6f06c59b3353cd70464765c25d5a4ae1a3153
refs/heads/master
2023-03-25T02:01:07.290784
2021-03-08T17:24:44
2021-03-08T17:24:44
344,562,309
0
0
null
2021-03-08T17:24:45
2021-03-04T17:54:55
Java
UTF-8
Java
false
false
4,537
java
package support ; import java.util.List; public class Results { private String name; private String height; private String mass; private String hair_color; private String skin_color; private String eye_color; private String birth_year; private String gender; private String h...
[ "kaur.raminder811@gmail.com" ]
kaur.raminder811@gmail.com
5fbb60b6a70d80a02ebc1874b6bd7c287784f4fd
ea11080a72772415150160bc0755fde5f4c8e367
/dbflute-runtime/src/main/java/org/seasar/dbflute/helper/token/file/exception/FileMakingRequiredOptionNotFoundException.java
9455e5524ef84cd6ee4578d2c83357db7c6b1522
[ "Apache-2.0" ]
permissive
seasarorg/dbflute
d68ce1dacecfe98610a48de218596544cb0b5327
9cb32db332d7c73208abf1aa102997cfcb021209
refs/heads/master
2020-04-06T07:02:01.733311
2019-01-01T05:45:41
2019-01-01T05:45:41
13,241,864
14
9
null
2016-08-08T09:57:28
2013-10-01T11:27:10
Java
UTF-8
Java
false
false
1,331
java
/* * Copyright 2004-2014 the Seasar Foundation and the Others. * * 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 ...
[ "dbflute@gmail.com" ]
dbflute@gmail.com
8599977e9b65eb4024fb375be0350f0087922dd4
a87484a5b081a2a3b5635d8583b0e5e80adf1995
/gmall-api/src/main/java/com/atguigu/gmall/entity/PmsSkuInfo.java
6116cbabbb2383071419e95e47899d6cdd48de4d
[]
no_license
yuan-fen/shop
0f59b92563f7331d2e44de1a22416279e699307e
61b8acc6cb516e57ceead07100e019cdce50afe7
refs/heads/master
2020-05-25T20:07:32.806690
2020-05-13T09:26:25
2020-05-13T09:26:25
187,967,474
0
0
null
null
null
null
UTF-8
Java
false
false
2,900
java
package com.atguigu.gmall.entity; import javax.persistence.GeneratedValue; import java.io.Serializable; import javax.persistence.*; import java.io.Serializable; import java.math.BigDecimal; import java.util.List; /** * @param * @return */ public class PmsSkuInfo implements Serializable { @GeneratedValue(stra...
[ "yuanfen@qq.com" ]
yuanfen@qq.com
bd10bc782b6d7c94249c7e303e197db93b498595
4fffc29a38c84e6ed733017149c8c86a9ad60abd
/src/LearnMain.java
556aa5e07188b20e5dbe52dfc0ad34e8bceea79c
[]
no_license
SvetlakovMaks/LearnMain
d60da3642e8547f1bede43df72da3123453e96ec
aaf782dbcd5c4fc4c8fb5d44e3af6018226735ef
refs/heads/master
2023-01-06T14:07:27.776269
2020-10-21T14:34:30
2020-10-21T14:34:30
306,051,553
0
0
null
null
null
null
UTF-8
Java
false
false
199
java
public class LearnMain { public static void main(String[] args) { System.out.println("Hello, Java"); System.out.println(42); System.out.println("\n\tJava " + 11); } }
[ "j-smy18@mail.ru" ]
j-smy18@mail.ru
3ccf432e0b28a84eaaae2f9a62cc9d6a3880f5e4
772cdc3cfcca859fa45853b48f5874cd82ca3952
/src/main/java/com/tianmu/openplatform/common/utils/DateUtil.java
bc3c718b9e5d1e7003bb95c233fb3187dc32c03a
[]
no_license
gitzqs/skyeye
5fb712bb7de02b1792ae561e6b134bb5e3e6a555
fcfa5a7768517c30934d3d5ff9a996e20117e5f5
refs/heads/master
2020-03-20T03:40:39.366242
2018-06-13T03:04:12
2018-06-13T03:04:12
137,155,127
0
0
null
null
null
null
UTF-8
Java
false
false
667
java
package com.tianmu.openplatform.common.utils; import java.text.SimpleDateFormat; import java.util.Date; public class DateUtil { private static final String F1 = "yyMMddHHmmss"; private static final String F2 = "yyyy-MM-dd HH:mm:ss"; private static final SimpleDateFormat sdf = new SimpleDateFormat(F1); private...
[ "823969832@qq.com" ]
823969832@qq.com
ee8c5b2666ed3de8d03209730532077c58641da8
87f433834cf4e0049b79e530c2926e68954d1c00
/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/network/generated/VirtualHubsGetInboundRoutesSamples.java
c5220051fa0767b77fed2e29a862e0430af1a250
[ "MIT", "LicenseRef-scancode-generic-cla", "LGPL-2.1-or-later", "BSD-3-Clause", "Apache-2.0", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference", "CC0-1.0" ]
permissive
kurtzeborn/azure-sdk-for-java
f1451d3b38247acb84cbb150bdd36587d244820e
6ea9b5842e042e4bbf75d926444528a9a9355506
refs/heads/main
2023-03-18T15:21:21.534700
2023-02-13T22:23:26
2023-02-13T22:23:26
255,533,567
0
0
MIT
2020-04-14T06:55:32
2020-04-14T06:55:31
null
UTF-8
Java
false
false
1,463
java
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. // Code generated by Microsoft (R) AutoRest Code Generator. package com.azure.resourcemanager.network.generated; import com.azure.core.util.Context; import com.azure.resourcemanager.network.models.GetInboundRoutesParameter...
[ "noreply@github.com" ]
kurtzeborn.noreply@github.com
a093dbcb91494bfe821f0e1f390f8d040a171f8a
23234350b657019c4882428d4d70569ccbaa4252
/src/AST/VarDeclList.java
9e18d560baaddb66d67c5c8173c914e3132c2192
[]
no_license
dgkimura/MiniJava
b90497c77916d236f3d2e0a3d012aa332005f37e
59073b64490b47cd2037121166351345c04a7555
refs/heads/master
2020-04-11T04:23:59.886037
2012-07-22T06:23:40
2012-07-22T06:23:40
5,139,594
6
6
null
null
null
null
UTF-8
Java
false
false
406
java
package AST; import java.util.Vector; public class VarDeclList extends ASTNode { private Vector list; public VarDeclList(int ln) { super(ln); list = new Vector(); } public void addElement(VarDecl n) { list.addElement(n); } public VarDecl elementAt(int i) { return (VarDec...
[ "dgkimura@aol.com" ]
dgkimura@aol.com
a0441633ec568d272b156334ba8593b68613624e
9b94b7681453167fe427ba866d9f38c367ab209f
/HelloWorld/src/Additon.java
583a2ef318fa42fb58681acc049af296093d64e9
[]
no_license
pigunther/java
6ad70565b586a84af6c55db946811fa10ae92729
816e2f8eafb7f5c53337a77b6e6cc984715408c8
refs/heads/master
2021-01-18T23:43:33.170028
2017-04-03T22:01:22
2017-04-03T22:01:22
87,124,904
0
0
null
null
null
null
UTF-8
Java
false
false
239
java
//import java.HelloWorld; public class Additon{ public static void main(String[] args) { System.out.println("Bye"); } } /* class HelloWorld { public static void main(String[] args) { System.out.println("Bye\n"); } } */
[ "pigunther16@gmail.com" ]
pigunther16@gmail.com
006094d309e6ed23da95f1c0f1a75f0ca7255cef
ec834894667ca6072d2aea31062025550d42bec8
/excelColumn.java
4aa3665161bae78858ed59cb92926718ba61494e
[]
no_license
sanwong15/LeetCodePrep
dc04808347563d6b00c99ba92b2ef8204d66a523
b864fe9dab76362f6dbbb999f7b3cf951e1273c3
refs/heads/master
2021-01-17T12:57:57.558115
2016-07-08T23:53:19
2016-07-08T23:53:19
58,775,387
0
0
null
null
null
null
UTF-8
Java
false
false
1,021
java
/* * San Wong * hswong1@uci.edu * * LeetCode 171: Excel Sheet Column Number * A -> 1 * B -> 2 * C -> 3 * ... * Z -> 26 * AA -> 27 * AB -> 28 * */ public class excelColumn { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("A converts to: " + tit...
[ "sanwong15@gmail.com" ]
sanwong15@gmail.com
f2ecd3eaba8dde40a69a2fc85e998ad49a2fab3f
e6a86c40fc298cb9a56a815b12cf38ef8e26b625
/src/com/hlresidential/aceyourexam/TestFragment.java
e3c76aaf051a08a552f21b8fa428a9949921f0fe
[]
no_license
onlymytho/highline
cad873f5a39c1a9c4ab9934ac71b6e0f7d9019e3
281c91fd0385d47c1715858b1d0d8dbcb7d3d59b
refs/heads/master
2021-01-19T18:51:24.861258
2014-05-09T19:42:11
2014-05-09T19:42:11
null
0
0
null
null
null
null
UTF-8
Java
false
false
13,627
java
package com.hlresidential.aceyourexam; import java.util.ArrayList; import java.util.List; import com.hlresidential.aceyourexam.VerticalViewPager.OnPageChangeListener; import android.app.Activity; import android.app.ActivityOptions; import android.content.ContentResolver; import android.content.ContentValues;...
[ "pjbirdsall@gmail.com" ]
pjbirdsall@gmail.com
e43f9ae5af8e58174ee065d7151ea6c7b8810ccc
83893946a9daaa90d1a06f5e1398e1490eefd92b
/app/src/main/java/appdebugdemo/lyb/com/appdebugdemo/util/BitmapCache.java
7af3ec0240a9afa3b7dec11277ba617d0d9200bf
[]
no_license
jiafenggit/APPDebugDemo
54ccc5004e2349f50465046c4e9f427f4c5614f9
89d627e52ffd129cbf6181f45aa8ff341d469200
refs/heads/master
2021-01-15T10:41:51.115529
2015-05-06T09:39:03
2015-05-06T09:39:03
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,629
java
/* * Copyright 2011 - AndroidQuery.com (tinyeeliu@gmail.com) * * 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 ...
[ "342161360@qq.com" ]
342161360@qq.com
e689bf4f34bb664ac3ee763f8eac98005ba75a5b
1f6c2c7a4ee64f569201cb9bc4393170be5e7ffc
/OOP/collections-app/src/com/techlab/test/list/TestSetList.java
8f470053b9b70fee05419827f55cb4d879c0408d
[]
no_license
devang123sak/swabhav-tech
822dd00000a0c2b3eafd947012d6ae8c6f7b7ece
d2fc5378e0c534625216d8f5905d09e443d7ce47
refs/heads/master
2020-03-08T14:34:41.311953
2019-04-19T18:18:15
2019-04-19T18:18:15
128,189,710
0
0
null
null
null
null
UTF-8
Java
false
false
1,016
java
package com.techlab.test.list; import java.util.HashSet; import java.util.LinkedHashMap; import java.util.LinkedHashSet; import java.util.List; import java.util.Set; import java.util.TreeSet; public class TestSetList { public static void main(String[] args) { Set<Integer> nos; nos = new HashSet<Integer>(); ...
[ "devangsakpal@gmail.com" ]
devangsakpal@gmail.com
1c65dc273db199660322b59aba936c81e7d09627
4fab44e9f3205863c0c4e888c9de1801919dc605
/AL-Game/src/com/aionemu/gameserver/dataholders/TeleLocationData.java
303e5809936798404a00d7ed226e2bf0f310657b
[]
no_license
YggDrazil/AionLight9
fce24670dcc222adb888f4a5d2177f8f069fd37a
81f470775c8a0581034ed8c10d5462f85bef289a
refs/heads/master
2021-01-11T00:33:15.835333
2016-07-29T19:20:11
2016-07-29T19:20:11
70,515,345
2
0
null
null
null
null
UTF-8
Java
false
false
1,922
java
/** * This file is part of Aion-Lightning <aion-lightning.org>. * * Aion-Lightning is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later ver...
[ "michelgorter@outlook.com" ]
michelgorter@outlook.com
99eedefda2b9dfe2be692e1e8c58ce9ba5ed0a4d
f91cbac1aed9a75c142f00d339584b1185011961
/app/src/androidTest/java/com/community/tsinghua/ApplicationTest.java
387676971f95f9e61463e8c53519746b65dc04bb
[]
no_license
cjkim118/THUKSA
952f6a59bfd68d53646b5ab44cfd11f3697a9c6b
c7a375b8944cb881f166ff9e789346c82bb81858
refs/heads/master
2021-01-10T13:41:30.469860
2016-01-21T08:36:01
2016-01-21T08:36:01
48,266,227
0
1
null
null
null
null
UTF-8
Java
false
false
341
java
package com.community.tsinghua; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public ApplicationTest() { super(App...
[ "vndpfm2002@naver.com" ]
vndpfm2002@naver.com
39f8e49ad952b85ce4da25f31c3a97d31b58f2d3
d61377e105ac205512aefad24bd37f750d58dbba
/Floodlight/src/main/java/net/floodlightcontroller/loadbalancer/LBPool.java
07961150e0feb8e7c6f6910c1d8bcc8233a9ff31
[ "Apache-2.0" ]
permissive
RotemNe/SDN-Based-Private-Interconnection
f5bbe60c6e873a4267aead8c790fd89659d5a995
a12664285db66c819a2697acb799a992945aa307
refs/heads/master
2020-04-15T15:21:51.468622
2016-06-25T13:48:24
2016-06-25T13:48:24
46,444,885
1
0
null
null
null
null
UTF-8
Java
false
false
2,181
java
/** * Copyright 2013, Big Switch Networks, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. You may obtain * a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requi...
[ "rotemmm0@gmail.com" ]
rotemmm0@gmail.com
0ba8bee520abaa33d3df2c5b91cb177266eb9dd3
05f4b6da3c9d2c869f44b12fc10deadbed059e3a
/src/main/Font.java
bc0d0a1f7a13005ea37dffe6654a4311024bb1d1
[]
no_license
SolomonBaarda/PlatformerGame
108175d07ed164decb04f4e290a1bf32294aaf21
9f5205188200c42d47e9d7be3c36859c2c7faf23
refs/heads/master
2020-05-20T04:54:07.499985
2019-06-21T10:59:29
2019-06-21T10:59:29
185,392,622
1
0
null
2019-05-21T09:53:10
2019-05-07T11:59:57
Java
UTF-8
Java
false
false
1,044
java
package main; import java.io.File; import java.io.FileNotFoundException; import java.util.HashMap; import java.util.Scanner; public class Font { private File fontFile; private SpriteSheet fontSheet; private HashMap<String, Sprite> letters; public Font(File fontFile, SpriteSheet fontSheet) { this.fontFile = ...
[ "50365603+SolomonBaarda@users.noreply.github.com" ]
50365603+SolomonBaarda@users.noreply.github.com
b5f3a104c57fcd15f15967cf3f6562c51fae8aa8
6177b74ef1ff7545171ee3ac30d57e0d2c60a952
/[Study] Concurrency/src/b/threadsafety/B_Atomicity.java
e9c960ab19a1a731777addf27353b5ab9b0552c3
[]
no_license
alexandru-manea/study-concurrency
23ab245b666833f547c159abd3ad8ce08eabd8d8
5ee66457bebc83992b894d69b8719ef5cbc2abb3
refs/heads/master
2020-12-24T16:34:13.542560
2016-04-27T13:42:34
2016-04-27T13:42:34
16,943,435
0
0
null
null
null
null
UTF-8
Java
false
false
5,690
java
package b.threadsafety; import java.math.BigInteger; import java.util.concurrent.atomic.AtomicLong; import javax.servlet.*; import $annotations.*; public class B_Atomicity { /** * ATOMIC OPERATIONS * ----------------- * * ***********************************************************************************...
[ "alexandru.m.manea@gmail.com" ]
alexandru.m.manea@gmail.com
208f8701aaf9ed225b7dffb2a3b8365b4920427b
073a2f879f526ebc0ffad9d06b86cc0d5d75e2c5
/service/service_ucenter/src/main/java/com/mengyi/service/UserAddressService.java
05bdcc5517de14261c9bbf4e3057bb2c1b9db2a6
[]
no_license
mengyiyouth/mall_book
999cc89ee11cf52ea6f845ada2355acd1c881cf6
cd9a4ab05b5885e24a0b202d4ab50148a6e71eb5
refs/heads/master
2023-06-21T12:43:14.447032
2021-08-01T05:25:48
2021-08-01T05:25:48
391,533,748
0
0
null
null
null
null
UTF-8
Java
false
false
361
java
package com.mengyi.service; import com.mengyi.entity.UserAddress; import com.baomidou.mybatisplus.extension.service.IService; import java.util.List; /** * <p> * 服务类 * </p> * * @author mengyiyouth * @since 2021-05-13 */ public interface UserAddressService extends IService<UserAddress> { List<UserAddress>...
[ "mengyiyouth@163.com" ]
mengyiyouth@163.com
5bcd7df83b29096df57e48c49531a81075219e1f
c26c95eb674379a37dde987fa2b1feac01d0074e
/java/exception/JavaApplication17.java
991d4c2f9bfdcddd582bdba1174b4d985ead77c8
[]
no_license
rednoax/preparation
8fb403a3a6e1aef23a21bdcab1054ff8cea85dc9
c717e1920e68e5db5cce0c779a63f88b62996eb3
refs/heads/master
2022-01-31T16:28:05.187870
2022-01-21T14:06:33
2022-01-21T14:10:29
14,033,695
0
0
null
null
null
null
UTF-8
Java
false
false
4,245
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 javaapplication17; import static java.lang.System.*; import java.io.*; import java.util.*; class Resource implements...
[ "sz_liusha@spectratech.com" ]
sz_liusha@spectratech.com
f5bef561f058e9a1a4369dce7f31d79016216276
61e922ae813217bd933a9f380d4a330e72fcb5e1
/src/main/java/com/adisava/panache/Status.java
678397c8b694f3b4290e2a6e13a996ef6fdd16b9
[]
no_license
omeryounus/code-with-quarkus
1f1c89295186fc068cac7799d85aca70ec101b62
29188ac3f29c127737ddcde949bf2ef22980c95d
refs/heads/main
2023-04-07T19:54:33.256333
2021-04-10T13:53:45
2021-04-10T13:53:45
348,196,760
0
0
null
null
null
null
UTF-8
Java
false
false
99
java
package com.adisava.panache; public enum Status { CHECKED_OUT, CHECKED_IN, ORDERED }
[ "50299766+SavaAdi@users.noreply.github.com" ]
50299766+SavaAdi@users.noreply.github.com
342be8db902893b2f97f893d27ef26fe92a672c1
d5bdc5090de108867ae10edee48c88885463ae63
/app/src/main/java/com/example/claudio/qradmin/Alumno.java
4876d2f53cf26d553de9c90fd96a1bd1dcbcea69
[]
no_license
Claudio72/QrAdmin
909f0c8fbe2516ad9b1480196e70fcccbf1cd93c
86814170f09d46eb71cedce0ec44c0ae85e2edd1
refs/heads/master
2021-01-17T11:23:20.419843
2017-03-06T05:29:40
2017-03-06T05:29:40
84,033,520
0
0
null
null
null
null
UTF-8
Java
false
false
2,898
java
package com.example.claudio.qradmin; import android.graphics.Bitmap; import java.lang.ref.SoftReference; import java.text.DateFormat; import java.util.Date; import static android.R.attr.bitmap; /** * Created by Claudio on 02/03/2017. */ public class Alumno { private String nombre, apellido; private Strin...
[ "claudio.rodriguez.smr@gmail.com" ]
claudio.rodriguez.smr@gmail.com
c97fa66404d4f1cae7723924d4d4d48d4e051049
d8a1d154337db56a0d199b99e0a68c27619bf9a5
/mas/src/main/java/com/biziitech/mlfm/dao/DaoOrder.java
1766dde069ff3c6fde4dbe1ea0feee0b357ef4c6
[]
no_license
ToufiqAmin/project1
bf0ec3eb2fbf50994a37cfb2689f81cb99c7985a
c79af6e22dd1e881e5eb367d5d9875384bfcde80
refs/heads/master
2020-07-07T10:26:29.473959
2019-08-20T08:15:58
2019-08-20T08:15:58
203,323,794
0
0
null
null
null
null
UTF-8
Java
false
false
2,486
java
package com.biziitech.mlfm.dao; import java.util.Date; import java.util.List; import java.util.Map; import java.util.Optional; import org.springframework.web.bind.annotation.RequestParam; import com.biziitech.mlfm.custom.model.ModelInquiryList; import com.biziitech.mlfm.model.ModelOrder; import com.biziit...
[ "Toufiq Amin@DESKTOP-7I4I04B" ]
Toufiq Amin@DESKTOP-7I4I04B
c15a124ccee998d6b6827ba95835094489ba8840
89d1a909467989ba1ef6369b319a6c4a3ed332b7
/Walker.java
85c8901ee671959db42f85cb24e1fa68429f5f38
[]
no_license
phungngo1020/Walker
e4637815a343ecb639da8e7c3c5551e2a08b9349
1a8c69d2d334e402b67f7e8ed5f6271a6c690c59
refs/heads/master
2020-06-05T08:37:05.817676
2019-06-17T16:06:36
2019-06-17T16:06:36
192,378,936
0
0
null
null
null
null
UTF-8
Java
false
false
3,816
java
import javafx.application.Application; import javafx.event.ActionEvent; import javafx.event.EventHandler; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.layout.BorderPane; import javafx.scene.layout.HBox; import javafx.stage.Stage; import javafx.scene.canvas.Canvas; import javafx.sce...
[ "phungngo1020@gmail.com" ]
phungngo1020@gmail.com
60ce9098420e282b823a18202d4a71c97f53e894
2b59ca34e01dca5cfbc92055203f724ebc0a1ce6
/RSAChatClient.java
cf8777127adb021462d67245ec6f7f6128a15b8b
[]
no_license
urjeet/RSA-Chat
407015296d7884a91d54e301306b8f2ddc48d414
64d7b550f895a669915ad895e8a6f2bc6bdac12f
refs/heads/master
2023-01-29T22:52:29.071291
2020-12-15T00:18:55
2020-12-15T00:18:55
320,160,076
0
0
null
null
null
null
UTF-8
Java
false
false
7,706
java
/** Primitive chat client. * This client connects to a server so that messages can be typed and forwarded * to all other clients. * Adapted from Dr. John Ramirez's CS1501 *@author Urjeet Deshmukh, November 18th 2020 */ import java.util.*; import java.io.*; import java.net.*; import javax.swing.*; import java.awt....
[ "urjeetdeshmukh@gmail.com" ]
urjeetdeshmukh@gmail.com
2fbd1eb52e93c51a9e32d2531d8508338682e18e
6bbdd7815987c802e78389e3da867e84135c3eb0
/other fun stuff by programming language/java/rebound puck game/gui/GameScores.java
a6e791178a07a2f1a88997d44e19a793d166bcef
[]
no_license
stillsw/playzone
4cabc3fbcb6984353bfe9ca39a4f2d64ddf1602d
0ede5c4549d729eab1fa4308f6cf15782c1bb551
refs/heads/master
2021-02-19T00:36:33.147285
2020-10-31T18:59:58
2020-10-31T18:59:58
245,257,844
0
0
null
null
null
null
UTF-8
Java
false
false
1,960
java
package firstReboundGame.gui; import firstReboundGame.*; import firstReboundGame.gameplay.*; import java.awt.*; import java.awt.geom.*; public class GameScores extends GuiComponentAdapter { private ScoringManager scoringManager; private int scoreForPlay; private int totalScore; public GameScores(...
[ "tomas.stubbs@gmail.com" ]
tomas.stubbs@gmail.com
9cf7d54799b869b4c28d6a8dd30390dfb5ff4281
8494b62d1bb28955c4081f808460f6788f16e129
/src/main/java/by/epam/hr/connection/ConnectionPool.java
10bd230779a662ab3bab25f0db4a264d821eb8cc
[]
no_license
Qtexl2/ProjectHR
9838602065a319173f985b50319fbe714215c32e
017a051e20b7b7e7a3aba61e6c75ce2ca15c57eb
refs/heads/master
2021-05-11T23:39:44.427815
2018-05-01T15:35:39
2018-05-01T15:35:39
117,460,185
0
0
null
null
null
null
UTF-8
Java
false
false
11,613
java
package by.epam.hr.connection; import by.epam.hr.exception.ConnectionPoolException; import org.apache.logging.log4j.Level; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.util.Itera...
[ "gleb.zhukel@gmail.com" ]
gleb.zhukel@gmail.com
e8f75544c5a2d46e2d57442114f66d9a715291ef
58dfbbda07c97dde38d784d5ab1ffd116943517f
/HealthyPets/src/Hund.java
df32c53938f843b0fafe19cfae45c6bbf5b77d1f
[]
no_license
ValleTSF/ValleJava19
6257b15928554f3e63269f3184eb01fc3a61b84b
0002704e166540e7463f5d33fa3ad1d5d6333f33
refs/heads/master
2020-08-05T05:54:18.613958
2020-01-29T11:30:05
2020-01-29T11:30:05
212,421,059
0
0
null
null
null
null
UTF-8
Java
false
false
407
java
public class Hund extends Djur { // Inkapsling private String foder = foderTyp.HUNDFODER.toString().toLowerCase() + "."; public Hund(String namn, int vikt) { super(namn, vikt); } @Override public int foder() { int måltid = Math.round(getVikt() / 100); retur...
[ "noreply@github.com" ]
ValleTSF.noreply@github.com
274e14c7de68166d67740f87215c15c62642a86c
6e1a69243cd2101bd736a46d36fea709f1855a60
/src/main/java/com/sky/springboot_api_encryption/service/DistributedLocker.java
dc73bd6c0f9c8dee06cf75b8ef1251cefdf2cfa7
[]
no_license
skyunique/springboot_api_encryptionq
97bd702cf69a0fad470b8a89a76ee2b47ac5c25d
0a4ddaca5958aaab7cb5158d1fe45b9df1fb0d95
refs/heads/master
2022-11-05T13:38:13.822230
2020-06-22T09:35:56
2020-06-22T09:35:56
274,096,517
0
0
null
null
null
null
UTF-8
Java
false
false
447
java
package com.sky.springboot_api_encryption.service; import org.redisson.api.RLock; import java.util.concurrent.TimeUnit; public interface DistributedLocker { RLock lock(String lockKey); RLock lock(String lockKey, int timeout); RLock lock(String lockKey, TimeUnit unit ,int timeout); boolean tryLock...
[ "a-1@@SUNQIQI" ]
a-1@@SUNQIQI
c034b26eb2d9d39a1766c635a89bcdf4e6653157
8e00ca5ba1d43e82b0489aeb93b260677acb3379
/src/main/java/com/devstackio/maven/loaders/PropertyLoader.java
8338cf0e03dd707a0631ae17c0e86653f68e0586
[ "MIT" ]
permissive
marwensaid/devstack-cb-io
3d3811f73f119731c04d946d9b88464655b76dce
baafbd5b2c22981d75647e49fe51fa3b408ebb1f
refs/heads/master
2023-02-18T23:39:32.730609
2016-02-04T23:53:31
2016-02-04T23:53:31
51,517,022
1
1
MIT
2022-04-08T15:48:46
2016-02-11T13:39:21
Java
UTF-8
Java
false
false
1,498
java
package com.devstackio.maven.loaders; import java.io.IOException; import java.io.InputStream; import java.util.Properties; import javax.enterprise.context.ApplicationScoped; /** * * @author devstackio */ @ApplicationScoped public class PropertyLoader { /** * load property from META-INF/filePath * @param fil...
[ "blitzkriegdevelopment@gmail.com" ]
blitzkriegdevelopment@gmail.com
23d48b4014f5357bb073dc578fc02c212b0aa25b
675cbffa1d3e6716f0f89db8ac0ca637105967cf
/RtmpResourceLib/src/main/java/net/lucode/hackware/magicindicator/FragmentContainerHelper.java
7640841cdc26e33ddf63f4a503263506fdc3a803
[]
no_license
led-os/HTWorks
d5bd33e7fddf99930c318ced94869c17f7a97836
ee94e8a2678b8a2ea79e73026d665d57f312f7e2
refs/heads/master
2022-04-05T02:56:14.051111
2020-01-21T07:38:25
2020-01-21T07:38:25
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,298
java
package net.lucode.hackware.magicindicator; import android.animation.Animator; import android.animation.AnimatorListenerAdapter; import android.animation.ValueAnimator; import android.annotation.TargetApi; import android.os.Build; import android.view.animation.AccelerateDecelerateInterpolator; import android.view.anim...
[ "yaohu2011@163.com" ]
yaohu2011@163.com
407551f2cc42c1aa3674a2cb79c46301455eb6f7
cd3e8ade406faa3ced4c2c303761fdd56f367473
/kodilla-patterns2/src/main/java/com/kodilla/patterns2/decorator/taxiportal/TaxiNetworkOrderDecorator.java
506f9f03abe8cefa7c46144df30f8dbceae890bb
[]
no_license
krzysieksad/krzysiek-sadlak-kodilla-java
45bd75d83296e707507f95606570444c4f352639
2e19350ad6d7cd38ed6e3f5ef1f60193fcfacb8f
refs/heads/master
2018-09-17T21:00:56.508069
2018-06-05T21:41:35
2018-06-05T21:41:35
115,633,946
0
0
null
null
null
null
UTF-8
Java
false
false
523
java
package com.kodilla.patterns2.decorator.taxiportal; import java.math.BigDecimal; public class TaxiNetworkOrderDecorator extends AbstractTaxiOrderDecorator { public TaxiNetworkOrderDecorator(final TaxiOrder taxiOrder) { super(taxiOrder); } @Override public BigDecimal getCost() { //hard...
[ "krzysiek.sadlak@gmail.com" ]
krzysiek.sadlak@gmail.com
7830925a56296ecafedf069288c7b409400f6dbc
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/31/31_8237e9894b3075c80a8dea4a3d2225bc34e0ebf2/ProviderConfig/31_8237e9894b3075c80a8dea4a3d2225bc34e0ebf2_ProviderConfig_s.java
6403240cc7cf029374afe4aea9b771b2f68e90dd
[]
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
35,474
java
/** * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2007 Sun Microsystems Inc. All Rights Reserved * * The contents of this file are subject to the terms * of the Common Development and Distribution License * (the License). You may not use this file except in * compliance w...
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
059e7b24878ece548c2d248392756b2081402fb7
6161f430cbdea1fbe757c6dd73640d34eddb77e1
/gulimall-ware/src/main/java/com/liuscoding/gulimall/ware/service/impl/PurchaseDetailServiceImpl.java
111e46bad04ccb4cfc54df060b089b1360c3e5b2
[]
no_license
hahagioi998/gulimall-1
a482b5411ce96048c2aa690d816610dcce951896
9d573a79ce63ace6bc35aafd785bc1ac39db20f5
refs/heads/master
2023-03-23T00:12:59.329634
2021-03-14T12:24:06
2021-03-14T12:24:06
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,138
java
package com.liuscoding.gulimall.ware.service.impl; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.core.toolkit.StringUtils; import com.baomidou.mybatisplus.core.toolkit.Wrappers; import org.springframework.stereotype.Service; import java.util.List; import jav...
[ "liushuai1@ysstech.com" ]
liushuai1@ysstech.com
b1c991b62a7937b94dcc3b604f55ae55301cb1a5
fa1408365e2e3f372aa61e7d1e5ea5afcd652199
/src/testcases/CWE566_Authorization_Bypass_Through_SQL_Primary/CWE566_Authorization_Bypass_Through_SQL_Primary__Servlet_54e.java
0d3c9a5491d28b674c33846b03aff1f05308425b
[]
no_license
bqcuong/Juliet-Test-Case
31e9c89c27bf54a07b7ba547eddd029287b2e191
e770f1c3969be76fdba5d7760e036f9ba060957d
refs/heads/master
2020-07-17T14:51:49.610703
2019-09-03T16:22:58
2019-09-03T16:22:58
206,039,578
1
2
null
null
null
null
UTF-8
Java
false
false
5,226
java
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE566_Authorization_Bypass_Through_SQL_Primary__Servlet_54e.java Label Definition File: CWE566_Authorization_Bypass_Through_SQL_Primary__Servlet.label.xml Template File: sources-sink-54e.tmpl.java */ /* * @description * CWE: 566 Authorization Bypass through SQL pr...
[ "bqcuong2212@gmail.com" ]
bqcuong2212@gmail.com
d5f5ee4afc456a314ccc69fcd3becc4844603c0c
48e835e6f176a8ac9ae3ca718e8922891f1e5a18
/benchmark/training/org/apache/ignite/spi/discovery/tcp/ipfinder/s3/encrypt/SymmetricKeyEncryptionServiceTest.java
e162044c1624a230a3fad9c45cb7f3eea490cb8d
[]
no_license
STAMP-project/dspot-experiments
f2c7a639d6616ae0adfc491b4cb4eefcb83d04e5
121487e65cdce6988081b67f21bbc6731354a47f
refs/heads/master
2023-02-07T14:40:12.919811
2019-11-06T07:17:09
2019-11-06T07:17:09
75,710,758
14
19
null
2023-01-26T23:57:41
2016-12-06T08:27:42
null
UTF-8
Java
false
false
1,662
java
/** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may...
[ "benjamin.danglot@inria.fr" ]
benjamin.danglot@inria.fr
757d1e8f534976393390a2a349a259fe051ebab1
43b415ef149f9ca933e2dea419ba1fea202bb90e
/src/org/netbeans/modules/corba/idl/editor/coloring/IDLSyntax.java
ce8e54deafb1041c0eb77c0e3714e3fe3c463821
[]
no_license
wardat/Netbeans-v1.0.x
9aa632eae36572510dbb2eb892b2b9f394ce32cf
3f4f5dfb465504c6a233eb5c26c649bef351e751
refs/heads/master
2020-03-30T17:47:47.696568
2018-10-03T19:44:35
2018-10-03T19:44:35
151,470,593
0
0
null
null
null
null
UTF-8
Java
false
false
43,673
java
/* * Sun Public License Notice * * The contents of this file are subject to the Sun Public License * Version 1.0 (the "License"). You may not use this file except in * compliance with the License. A copy of the License is available at * http://www.sun.com/ * * The Original Code is NetBeans. Th...
[ "mawardat12@gmail.com" ]
mawardat12@gmail.com
34603d72e0694e813dd5391a045c9d8e9287a373
35a5c0bc2868b87922ba9003ab50823643a038d9
/src/main/java/org/openjfx/Line.java
ecc91ec237e8f9330e51730bc4af6a8f3524b34d
[]
no_license
mmuellersoppart/MathematicianInTime
4b4d38870abe3f7bf651e7c10f636b50fb537be7
4cb9017f6b851699df2bf05484ff2f96bb390d40
refs/heads/master
2023-05-25T02:19:07.638807
2020-05-16T01:16:52
2020-05-16T01:16:52
264,333,279
0
0
null
2023-05-23T20:13:01
2020-05-16T01:14:56
Java
UTF-8
Java
false
false
2,515
java
//Marlon Mueller-Soppart // //Updated: 20200306 package org.openjfx; import java.nio.channels.NonReadableChannelException; import java.util.Arrays; import java.util.Vector; import java.util.ArrayList; public abstract class Line implements ILine { public LineTypes type; public int id; public ArrayList<I...
[ "mmuellersoppart@gmail.com" ]
mmuellersoppart@gmail.com
6c8531a0b1b202b44e64ca3e834ca07e07dd5670
09b76d18f5ef854f36fe2aed25abf032344c8a71
/app/src/main/java/com/example/nevertry/auto_register/NameAdapter.java
0a7e0f20f32357376e16778f867b1b02d9715640
[]
no_license
nevertry070688/auto-post
1c9d02d48fb67f4b95383097f67aa6f4f727dfd4
d713a6588405c3bf8eadfa5fe2033cf670fd237f
refs/heads/master
2020-06-05T11:37:02.599557
2015-06-12T09:33:59
2015-06-12T09:33:59
35,935,280
0
0
null
null
null
null
UTF-8
Java
false
false
1,869
java
package com.example.nevertry.auto_register; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Adapter; import android.widget.AdapterView; import android.widget.BaseAdapter; import android.widget.TextView; import java.util...
[ "nevertry@localhost.localdomain" ]
nevertry@localhost.localdomain
803bd3c989cb689a135a62e464d8954430aa4d48
8353dce09cfab302a1d56370ac46db11f4991407
/OnlineTestMgtSystem/src/main/java/com/capg/onlinetest/service/AdminService.java
a54341c64e364ea0c369f88abd52a409f3fd75de
[]
no_license
PiyushSinghThakur/OnlineTestSprint2
a92685844d980588f3e85e297e65ffcf7a9a659f
2b0dfb4c82ec17b062402bcb580443664eb45617
refs/heads/master
2022-05-28T12:32:35.854993
2020-04-29T19:43:17
2020-04-29T19:43:17
260,025,062
0
0
null
null
null
null
UTF-8
Java
false
false
639
java
package com.capg.onlinetest.service; import java.util.List; import com.capg.onlinetest.model.Question; import com.capg.onlinetest.model.Test; import com.capg.onlinetest.model.User; public interface AdminService { public List<User> getAllUsers(); public String addTest(Test test); public String updateTest(Test tes...
[ "piyushsngh636@gmail.com" ]
piyushsngh636@gmail.com
7ad039116b6304d047e87ca982e0b086dfeebfde
66adce417daf0ca1c03cdb28b552d5ff80026585
/my-project-web/my-project-cart-web/src/main/java/com/qf/controller/CartController.java
71f698c20f9f1c8896128dd71ffcf3dac924eaae
[ "Apache-2.0" ]
permissive
w13839659048/myteam-shop
36dcb68fcccc6a2b9a11e103efbcb95736766eb9
4326b8f5df7b03a02a4661c86d8ddede09f3829f
refs/heads/master
2022-07-08T07:55:37.467672
2020-03-14T15:48:50
2020-03-14T15:48:50
246,045,061
0
0
Apache-2.0
2022-06-17T02:57:35
2020-03-09T13:37:17
CSS
UTF-8
Java
false
false
4,795
java
package com.qf.controller; import com.qf.constant.CookieConstant; import com.qf.dto.ResultBean; import com.qf.entity.TUser; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.CookieValue; import org.springfram...
[ "1554909254@qq.com" ]
1554909254@qq.com
2830d97a673485900a8d85916edc0d16555e48ee
d015ccd17f917fbb2446f211977fd78a96ec0591
/cp-book/ch3/dp/_836_LargestSubmatrix.java
2b99c4304f5bcfa6ad2a8ea5474568794a32a2fd
[ "MIT" ]
permissive
andrey-yemelyanov/competitive-programming
f74d4f35c527b80f4ef0b5fc17d1a4aedbc36ff3
f5c5fc9a5951a81dbae1250e17cd3d51a96b7a47
refs/heads/master
2021-01-12T17:29:32.384671
2018-08-03T08:57:00
2018-08-03T08:57:00
71,582,272
1
0
null
null
null
null
UTF-8
Java
false
false
2,695
java
import java.util.*; import static java.lang.Math.*; import java.util.stream.*; /* Problem name: 836 Largest Submatrix Problem url: https://uva.onlinejudge.org/external/8/836.pdf Author: Andrey Yemelyanov */ public class _836_LargestSubmatrix { public static void main(String[] args){ Scanner s = new Scanner(Syste...
[ "andrey.yemelyanov@gmail.com" ]
andrey.yemelyanov@gmail.com
ec7fc3073e44c98a48ce31040d8ba2768f0848e8
ec3314ae1b981c1a53e48510605d8fdf8b110625
/DogWalkingServiceProject-master/src/main/java/com/sorokin/dogWalkingService/myPlugin/entities/ILog.java
bb37a3b8e7850083e6ad34ed339655068571d0cb
[]
no_license
trinityyyY/DogWalkingService
1a13b83ba79835d91e7328691907b1a80137f1ca
cecebeddd47a42f9844ea298604f4e42eeb997c8
refs/heads/master
2023-07-03T13:32:09.744438
2021-08-05T11:15:43
2021-08-05T11:15:57
374,379,300
0
1
null
null
null
null
UTF-8
Java
false
false
316
java
package com.sorokin.dogWalkingService.myPlugin.entities; import net.java.ao.Entity; import net.java.ao.schema.StringLength; public interface ILog extends Entity { @StringLength(value=StringLength.UNLIMITED) String getLog(); @StringLength(value=StringLength.UNLIMITED) void setLog(String log); }
[ "sorokinevgenij.a@gmail.com" ]
sorokinevgenij.a@gmail.com
26fa690a31d74294531fd46da73e432e3427800e
baa69a3133222ec2cef8de5b4f4ca662012e2fd8
/mern/src/main/java/com/datos/mern/exception/ServiceException.java
e3123bf5199a1ffb6109934d32445ab3b587f132
[]
no_license
labt1/DPBPfinalBackEnd
04225bfa0386462b6f231c21ea098af5d13e2550
9a28c3658a59199db6db8fccfb773217cb22cff0
refs/heads/master
2022-11-29T19:34:56.427603
2020-08-17T14:22:42
2020-08-17T14:22:42
288,105,368
0
0
null
null
null
null
UTF-8
Java
false
false
445
java
package com.datos.mern.exception; public class ServiceException extends Exception{ private static final long serialVersionUID = 453115711084080405L; public ServiceException() { super(); } public ServiceException(String message, Throwable cause) { super(message, cause); } public ServiceEx...
[ "USUARIO@192.168.1.6" ]
USUARIO@192.168.1.6
dfb83f9b5ebb69c607b859a1cb3c3273ce2ebaf1
6063b28a3cc691b4c8a05c7364a8729ea9759f49
/src/main/java/com/alipay/api/domain/MybankCreditSceneprodPaymentQueryModel.java
477c5aaecbb865bc202bcfb84d9ea68a6d62cc5c
[]
no_license
citi123/test-obj
f68b69c5bbf0dad4dcbfc4ff078645caa98e9084
83ee779f010fd1f3f42436d073c6a602407a0222
refs/heads/master
2022-10-29T14:02:02.200643
2019-07-01T07:20:05
2019-07-01T07:20:05
127,399,103
0
0
null
2022-10-12T19:51:52
2018-03-30T07:52:54
Java
UTF-8
Java
false
false
667
java
package com.alipay.api.domain; import com.alipay.api.AlipayObject; import com.alipay.api.internal.mapping.ApiField; /** * 场景金融代收付结果查询 * * @author auto create * @since 1.0, 2018-01-23 11:37:34 */ public class MybankCreditSceneprodPaymentQueryModel extends AlipayObject { private static final long serialVersionUI...
[ "tao.chen@guanaitong.com" ]
tao.chen@guanaitong.com
0fe47dec5b926fb5a4fc9c6837e2620ffd093f06
eecfbdd0f1a59a91eb5642c158349fe6501ffd36
/app/src/main/java/com/satcatche/btserver/PinyinIME.java
a258b0f2b6dbca1a0b8bb9ae127469be29058249
[]
no_license
vving1009/BluetoothRemoteControl
f4ad97cef467e31693e8d5d9a4509cd0e10caf23
14bd0d5156464da65540348b18758b36a86ca8ab
refs/heads/master
2020-03-21T07:32:10.272998
2018-06-29T08:51:31
2018-06-29T08:51:31
138,285,663
0
0
null
null
null
null
UTF-8
Java
false
false
6,519
java
package com.satcatche.btserver; import android.app.Activity; import android.bluetooth.BluetoothAdapter; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.inputmethodservice.InputMethodService; import android.util...
[ "vving5525@hotmail.com" ]
vving5525@hotmail.com
48fc8959592604977df7f17793a2d7742ac15e4a
26817a3e664d3eae4bab60f867fc049dbffe15e8
/free/src/main/java/com/sunshine/free/dao/MdLoanMapper.java
fd5078bf67a9ef400c9a9912f0ea6310d9f457a6
[]
no_license
rookieteam2l/springBoot
7c9b234225864e4c9e9f09ca8c3ea0a471d76fcd
7f562e400bb6f380f8df216920133eb0da9cf1f4
refs/heads/master
2021-07-04T18:54:20.223753
2020-10-20T10:46:35
2020-10-20T10:46:35
190,550,357
4
0
null
2019-07-15T02:14:33
2019-06-06T09:04:25
CSS
UTF-8
Java
false
false
925
java
package com.sunshine.free.dao; import com.sunshine.free.vo.MdLoanVO; import com.sunshine.free.entity.MdLoan; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; /** * @Description MdLoanMapper * @author Free * @date 2019-07-01 */ @Mapper public interfa...
[ "178003026@qq.com" ]
178003026@qq.com
9bee1e4d04aa0380aa99a15276e58083651a452b
dd2880e3559a7e7ee75bfb97b9f3f7db89bd1b95
/app/src/main/java/com/poxo/librarymanager/MainActivity.java
21cbe2486f5cb947adf88ca0e8067370d2b55fff
[]
no_license
enigma-beep/LibraryManager
72addf881d59e5addb0adbb0ee90debb86f98782
8a384405925abf020787ae9dba270bc9a0209bd0
refs/heads/master
2023-03-19T09:06:14.320826
2021-03-13T11:57:07
2021-03-13T11:57:07
347,357,659
0
0
null
null
null
null
UTF-8
Java
false
false
336
java
package com.poxo.librarymanager; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activit...
[ "55652687+enigma-beep@users.noreply.github.com" ]
55652687+enigma-beep@users.noreply.github.com
20562c0ca250c30391769fca2f956b4b8b0a2aa1
d00b91a2cab2bab55f7a5ef8a6fc965ae336e43c
/src/test/java/com/bgasparotto/springboot/veggieburger/persistence/CustomerRepositoryTest.java
2c0263e4dffbe9f2ec75cf9263d258d62f3de6f9
[]
no_license
bgasparotto/springboot-veggieburger
6a1aeef85ccbc3d99260f41438dcc5461409e09e
8607ba1dbecbea77385240734bff9a63407d8d80
refs/heads/master
2021-09-06T14:39:05.929555
2018-02-07T17:53:58
2018-02-07T17:53:58
113,491,314
0
0
null
null
null
null
UTF-8
Java
false
false
1,096
java
package com.bgasparotto.springboot.veggieburger.persistence; import com.bgasparotto.springboot.veggieburger.model.Address; import com.bgasparotto.springboot.veggieburger.model.Country; import com.bgasparotto.springboot.veggieburger.model.Customer; import com.bgasparotto.springboot.veggieburger.model.Name; public clas...
[ "bruno.m.gasparotto@gmail.com" ]
bruno.m.gasparotto@gmail.com
e8e563ae839357f3a675b401369959502f013b8e
e030348e2500b9aee8c5261953b07f0f1114415d
/app/src/main/java/br/com/alura/leilao/ui/activity/ListaLeilaoActivity.java
0a83e441596a88371cac4f834a9a25842cc6dca8
[]
no_license
leandroprogramador/android-tdd
ec87d9f2878a0538a13baa9366e50ddb77792b60
ccc9251f20fd867396a84413c09af7478a970a7c
refs/heads/master
2023-06-16T21:38:59.491277
2021-07-14T15:36:44
2021-07-14T15:36:44
385,984,053
0
0
null
null
null
null
UTF-8
Java
false
false
2,233
java
package br.com.alura.leilao.ui.activity; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.RecyclerView; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import br.com.alura.leilao.R; import br.com.alu...
[ "lean.ib@hotmail.com" ]
lean.ib@hotmail.com
e1e63744369839ad7d6dbd7412e44a9018fc0191
ec3dcc9915916eb6b9369469f73ce33afd20f5a9
/Java_Basics_5/src/com/janbask/parameters/String_Methods.java
74d1b31ecbcbe28e0ef30c21415e29276ee4ce0b
[]
no_license
sagarsomaiah98/SEP-WEEKEND-BATCH
af5ef672bfbd2c2be3c7a335c7fe6792c9a02583
a2525c073187dff54d5681909035b0469d7c33c9
refs/heads/main
2023-08-24T11:44:41.004397
2021-11-04T02:02:36
2021-11-04T02:02:36
403,043,398
0
0
null
null
null
null
UTF-8
Java
false
false
382
java
package com.janbask.parameters; public class String_Methods { public void length(String input) { System.out.println("Length of "+input + " is "+input.length()); } public static void main(String[] args) { // TODO Auto-generated method stub String_Methods s= new String_Methods(); s.leng...
[ "somaiah1988@gmail.com" ]
somaiah1988@gmail.com
61622dbe9959d4f9cc3b1c3e330424b3edbdac59
6492d2c4887e29c6d433956b1c5e1216b7b59823
/AddressbookSpringApp/src/main/java/com/org/AddressbookSpringApp/repository/IStateRepository.java
742d53543352ad7798b02cc24968ac2619620b43
[]
no_license
pooja14206/AdressbookSpringApp
21dec970c3f6ac0cb34b5406c8b149d59aded2ba
8ad28419c1747a1df1851e22ef01e34f115b6f79
refs/heads/master
2023-08-21T17:14:37.957523
2021-10-06T20:06:05
2021-10-06T20:06:05
395,503,918
0
0
null
null
null
null
UTF-8
Java
false
false
309
java
package com.org.AddressbookSpringApp.repository; import com.org.AddressbookSpringApp.model.StateData; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository public interface IStateRepository extends JpaRepository<StateData, Integer > { }
[ "pooja.14206@gmail.com" ]
pooja.14206@gmail.com
c893d2cb0940feb0eb41437b028909598c087e4b
b785e54ae09effa31c34e94e18fa838b6d96ab32
/softuni_game_store/src/main/java/game_store/utils/DataValidator.java
6314f678762a773867627d741ba9cac1730e7f8f
[ "MIT" ]
permissive
komitoff/Java-DB-Fundamentals
41918695a39cd67fb1c332b573b5034c51ce679c
0615d4e21cd8f9a30544c1de42421ea9fc2ca4e5
refs/heads/master
2021-01-21T19:54:18.692996
2018-06-18T18:18:37
2018-06-18T18:18:37
92,173,895
0
0
null
null
null
null
UTF-8
Java
false
false
1,022
java
package game_store.utils; import game_store.model.bindingModel.user.RegisterUser; import javax.validation.ConstraintViolation; import javax.validation.Validation; import javax.validation.ValidatorFactory; import java.util.Set; public class DataValidator { public static <T> String getInvalidParameterMessage(T tar...
[ "tobo_91@abv.bg" ]
tobo_91@abv.bg