blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
332
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
7
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
557 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
684M
star_events_count
int64
0
77.7k
fork_events_count
int64
0
48k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
82 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
5.41M
extension
stringclasses
11 values
content
stringlengths
7
5.41M
authors
listlengths
1
1
author
stringlengths
0
161
cfba7f89761ab513c412c1e7cc61d049ec062803
32bf257d6ec328d301aee9d91c26c4d0074ca124
/belajar-java-dasar/src/SwapVariable.java
04432297517a5ea223a68fe4db1fd1d96f9fa8a8
[]
no_license
MatchaBear/JavaNeighborhood
82a5735f035643a01aa56341ba54ce513bf98583
6e5e1505e8a49ebd59f117a3dbeb6036a052a49c
refs/heads/main
2023-03-30T02:11:18.326977
2021-03-19T06:41:59
2021-03-19T06:41:59
335,013,582
0
0
null
null
null
null
UTF-8
Java
false
false
782
java
public class SwapVariable { public static void main(String[] args) { int a, b, f; a = 1; f = a; var c = "Hello World"; var g = c; System.out.println("c = " + c); System.out.println("f = " + f); a = 2; System.out.println("a = " + a); S...
[ "matchabear@users.noreply.github.com" ]
matchabear@users.noreply.github.com
720c736198745c69252e1f34fe380773590d31db
410335c5c9a60a2376fda10cce0e13b1a9eb3404
/src/main/java/com/opensource/productservice/dto/Coupon.java
c419e92cd2ab85df00c3da54f4cdd3a94f77a66b
[]
no_license
open-source-hub-ak/productservice
189b150352bc36c71d061ed37f3d04352e57695e
8662e7c90ed75cc02115f92b4d220056b69a77fa
refs/heads/main
2023-02-27T09:49:03.943781
2021-01-31T18:19:04
2021-01-31T18:19:04
334,663,025
0
0
null
null
null
null
UTF-8
Java
false
false
801
java
package com.opensource.productservice.dto; import java.math.BigDecimal; public class Coupon { private Long id; private String code; private BigDecimal discount; private String expDate; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getCode() { return co...
[ "aakash" ]
aakash
920dffe9bd837771cd09fda4078f33dec2b91110
64d3f86f759281241ec1dbecb20b56341a306243
/src/test/GameManager.java
573ba9c419fe439a754d78bfd4593792e9f03821
[]
no_license
hgn1027/server
1d11db911e4bb2d559ba018e8a67b28e5d9503ef
7bffcf664ab2168f79a8792910156fa173e512aa
refs/heads/master
2020-05-05T06:28:56.925231
2019-04-06T05:27:23
2019-04-06T05:27:23
179,789,870
0
1
null
null
null
null
UTF-8
Java
false
false
620
java
package test; import java.util.ArrayList; public class GameManager { private ArrayList<Game> gameList = new ArrayList<Game> (); public void addGame (Game game) { gameList.add(game); } public Game findGame (String roomName) { for (Game game : gameList) { if (game.getRoomName().compareTo(...
[ "hgn1027@naver.com" ]
hgn1027@naver.com
16edb5e5c19b4e5813d5f5d3cef0acdf6e5b1edc
fec2ff45e8a30d6e5a777d83d2348087e4d0cc42
/tasks/calculate_Levenshtein_Distance/Solution.java
ac7cbd9863a747e1f7a681b2baefc16a2ab4c45a
[]
no_license
YuryMazniou/JavaHomeWork
6f912610345b03a9efec3b2df22a9947b684d2f6
0873060a15dfb47a21bddb304eb9af2e70701024
refs/heads/master
2020-05-02T05:25:22.170273
2019-05-18T12:37:15
2019-05-18T12:37:15
177,771,328
0
0
null
null
null
null
UTF-8
Java
false
false
1,409
java
package by.it.mazniou.tasks.calculate_Levenshtein_Distance; import java.util.Arrays; /* будет возвращать true, если возможно изменить/добавить/удалить один символ в одной из строк и получить другую. */ public class Solution { public static void main(String[] args) { System.out.println(isOneEditAway("qwert...
[ "tantr@tut.by" ]
tantr@tut.by
65804d32cf38afc0a32bff7ae06369d3f53316a2
d57f02a4904b1ed349eb5f7f1276dd2bd5e92aef
/src/main/java/Model/ChangedColorType.java
61aa697a532d456d65fb6905e25fae6af9c2bc2a
[]
no_license
MyLovePoppet/Tetris
710e1accf04ced9a2ba51c01e3c9ceeeec79ef5c
114bf03d802d0f8647e7395d488656dbb7360485
refs/heads/master
2022-11-11T20:34:25.392896
2020-06-24T07:19:47
2020-06-24T07:19:47
264,567,891
1
0
null
null
null
null
UTF-8
Java
false
false
1,760
java
package Model; import java.util.ArrayList; import java.util.List; /** * 位置i,j变化前后的颜色数据 */ public class ChangedColorType { //在位置i,j处 public final int i, j; //前后的颜色变化 public final TetrisColorType oldColor; public final TetrisColorType newColor; public ChangedColorType(int i, int j, TetrisColo...
[ "2393800169@qq.com" ]
2393800169@qq.com
400a0d779ed50fd08781bf81daab8bfee9ffc8fc
0e027b4fa1e77adb25aef60c0a3e9cf4bb4e49c7
/src/main/java/com/hsy/mybatis/controller/ExamineController.java
e73da3b46988b7ffcae09d6a2ccfde7bb023192a
[]
no_license
krispyhan/modleWorkChecker
13ad0d6759c1de93e50e28fee84372de846fc0df
1e69e970b0838d293d9b3c34b6702393e8922cfc
refs/heads/master
2023-05-11T14:16:34.417170
2021-06-03T14:54:55
2021-06-03T14:54:55
334,601,237
0
0
null
null
null
null
UTF-8
Java
false
false
1,106
java
package com.hsy.mybatis.controller; import com.hsy.mybatis.service.IExamineService; import com.hsy.mybatis.util.WebJsonResult; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; impor...
[ "krispyhan@163.com" ]
krispyhan@163.com
8e941ee3a3453a3fee93260d84274e4d014a4baa
7b5b5d311f5609356aa47a8fe31d5e95dee6f42c
/commons/src/main/java/org/archive/util/ms/DefaultBlockFileSystem.java
3c70021ba8f3c905aaaa77321044d51905e62ccc
[]
no_license
BertrandDechoux/Heritrix-3
26307664a76e692d17c16fac5a4f2909cfeb32c8
ea49e55c892a888ef9a601ec0ead1dabdb154e40
refs/heads/master
2016-09-11T01:20:35.460985
2010-12-09T22:28:20
2010-12-09T22:28:20
1,179,450
2
0
null
null
null
null
UTF-8
Java
false
false
9,950
java
/* * This file is part of the Heritrix web crawler (crawler.archive.org). * * Licensed to the Internet Archive (IA) by one or more individual * contributors. * * The IA licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with *...
[ "gojomo@daa5b2f2-a927-0410-8b2d-f5f262fa301a" ]
gojomo@daa5b2f2-a927-0410-8b2d-f5f262fa301a
ce552b5a1899a5a3221cfff75e313f984e3cdb44
69506591d5a83c88a0ea993072b7415cd58caa61
/src/main/java/com/thunisoft/service/impl/MasterDataServiceImpl.java
6d2ca30a91fcfe18565aba203b4954c26a8d44b7
[]
no_license
majiajue/masterdata
3bb80ae1dbe59cafd055e8b4d87c82c7363fdc23
4c2cdd002c55eb100b61769462912b7956283e23
refs/heads/master
2020-12-10T23:47:20.092854
2019-11-04T07:49:49
2019-11-04T07:49:49
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,347
java
package com.thunisoft.service.impl; import com.thunisoft.dao.ApplicationReiewMapper; import com.thunisoft.dao.MasterContentMapper; import com.thunisoft.dao.MenuMapper; import com.thunisoft.pojo.ApplicationReiew; import com.thunisoft.pojo.MasterContent; import com.thunisoft.pojo.Menu; import com.thunisoft.service.Maste...
[ "zhangweijun_sh@thunisoft.com" ]
zhangweijun_sh@thunisoft.com
424732a20fecb03a2056b449b846b85c0c34ff42
ed77cac4e30a7222ba7037ddbf664e7059a210bf
/presto-hive/src/test/java/io/prestosql/plugin/hive/metastore/alluxio/TestAlluxioHiveMetastoreConfig.java
3b6673e371832285a277d409e97770957b0e5e12
[ "Apache-2.0" ]
permissive
treasure-data/presto
ff85ed1056c307ec8aef055f8db8f6224ef7c269
3d4749994847e75059923436e6d3ce6914babf2b
refs/heads/master
2023-07-24T15:50:57.665143
2023-02-21T14:29:12
2023-02-21T14:29:12
14,758,597
11
2
Apache-2.0
2019-02-07T05:34:45
2013-11-27T20:44:49
Java
UTF-8
Java
false
false
1,641
java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distribut...
[ "david@acz.org" ]
david@acz.org
12cac55fd4473f49f82ded87c9714874d6985835
3244b6517b44be887bf2e74e248db269bdbee2ef
/android/Virgilio_Guida_Tv/src/com/mscg/virgilio/adapters/DBAnalyzeListItemAdapter.java
ec70ebcc6e22809afd8672983d7071f27a01e01e
[]
no_license
mscg82/opencms-backoffice
fb7a6a20150b78f24f32bb9980ecd8e3258d8119
9392cd02e4a969899755a7ba29f171c68685d136
refs/heads/master
2021-01-19T06:59:20.023026
2012-06-17T14:08:31
2012-06-17T14:08:31
32,315,793
0
0
null
null
null
null
UTF-8
Java
false
false
2,532
java
package com.mscg.virgilio.adapters; import java.text.SimpleDateFormat; import java.util.Date; import android.content.Context; import android.database.Cursor; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.CheckBox; import android.widget.Resource...
[ "giuseppemiscione@gmail.com@47385934-2c28-11de-874f-bb9810f3bc79" ]
giuseppemiscione@gmail.com@47385934-2c28-11de-874f-bb9810f3bc79
7b96f6f854eb84ad45780da2a6ebfe1c47bc0465
1bddd4ad0757362409c24e5a56d5b4ae5fb7f998
/src/java/main/org/apache/zookeeper/server/ZooKeeperServer.java
22ff875b4c15c8307f98747275f4deda3af9f6e0
[ "Apache-2.0" ]
permissive
leonardo-DG/CatKeeper
0e498e4549d0083f3efaeb33950b40154bf59cdb
11a5f15b9eae6ec893892e9895ba44784528e533
refs/heads/master
2016-09-08T00:24:02.346352
2014-11-29T06:38:02
2014-11-29T06:38:02
null
0
0
null
null
null
null
UTF-8
Java
false
false
37,045
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...
[ "li.deguo2008@gmail.com" ]
li.deguo2008@gmail.com
2246f2220e7b1bf6034a7c20dc01daf673b8c8a8
3182dd5e2cb4c93c562293816203038d5e4c9708
/src/java/j$/util/function/A.java
2f889805302402f252befac1bf00577fa2c46c1d
[]
no_license
mrauer/TAC-Verif
46f1fdc06475fef6d217f48a2ee6a6ffc8ec3e4f
5231854f94008729fb1be67992ffafd2ae8908a3
refs/heads/master
2023-07-16T22:25:33.181442
2021-08-29T16:00:37
2021-08-29T16:00:37
401,082,799
3
0
null
null
null
null
UTF-8
Java
false
false
914
java
/* * Decompiled with CFR 0.0. * * Could not load the following classes: * java.lang.Object * java.util.Objects */ package j$.util.function; import j$.util.function.BiConsumer; import java.util.Objects; public final class a implements BiConsumer { public final /* synthetic */ BiConsumer a; public fina...
[ "maxime.rauer@gmail.com" ]
maxime.rauer@gmail.com
6b5434b0f73ab1a009e8f279e2b04b1ebeb1f289
cbd635964da310cf1018766a6b0a3a88fd945a22
/dayily-test/src/main/java/com/jy/leetcode/LeetCode165.java
0d79f8f8c29afc64569a9f2d6312b8fb3f384700
[]
no_license
WangJunT/test
0053d773a8f76039aa1468b876dd6bdb778555d4
65270f78b3c8f8110a96da9fdf26b6ef51e768bf
refs/heads/master
2023-08-22T18:32:03.596157
2021-10-13T07:18:46
2021-10-13T07:18:46
71,882,345
0
0
null
null
null
null
UTF-8
Java
false
false
739
java
package com.jy.leetcode; public class LeetCode165 { public static int compareVersion(String version1, String version2) { String ver1[] = version1.split("\\."); String ver2[] = version2.split("\\."); int i = 0, j = 0; for (; i < ver1.length || j < ver2.length; i++, j++) ...
[ "1365644603@qq.com" ]
1365644603@qq.com
82329f0e4cb70bc61a96d978e9f632fec790cc13
6411078f1b3e33a76beced33169f1c9e1893c69c
/src/main/java/com/codeoftheweb/salvo/Player.java
484587ce1b40b02c9c7e96bda4176a2b66b53f63
[]
no_license
roxmely/Salvo-Back-end-JAVA
d470116f26b77e27cc99edbee020f8a02ef9d542
549761f383662bce83ffcd8a5aa69f696b7139a6
refs/heads/master
2022-09-07T08:15:27.081993
2020-06-01T23:30:20
2020-06-01T23:30:20
267,366,466
0
0
null
null
null
null
UTF-8
Java
false
false
2,037
java
package com.codeoftheweb.salvo; import org.hibernate.annotations.GenericGenerator; import javax.persistence.*; import java.util.*; @Entity public class Player { @Id @GeneratedValue(strategy = GenerationType.AUTO, generator = "native") @GenericGenerator(name = "native", strategy = "native") private Lo...
[ "r.melgarejo.ubiqum@gmail.com" ]
r.melgarejo.ubiqum@gmail.com
a53275c3894694c17c4a176f38ad132977446676
07b44fa4d779677243409a99fbe9ae3d87876f7a
/gulimall-coupon/src/main/java/com/chen/gulimall/coupon/entity/SeckillSkuNoticeEntity.java
84d64637a1512832eb21999d7772b151734c34b4
[ "Apache-2.0" ]
permissive
Randycout/gulimall
1db58d87bae788b37b46aec5ab5f69e4d783b2af
4bee32230ebf54137b1ac05192bb27268ef82844
refs/heads/master
2023-07-11T05:33:02.490624
2021-08-22T14:30:46
2021-08-22T14:30:46
398,820,850
1
0
null
null
null
null
UTF-8
Java
false
false
872
java
package com.chen.gulimall.coupon.entity; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; import java.util.Date; import lombok.Data; /** * 秒杀商品通知订阅 * * @author chenZhibin * @email 2891651056@qq.com * @date 2021-06-21 21:16:51...
[ "2891651056@qq.com" ]
2891651056@qq.com
997d6dcfa599df0ee59e84d75f95be7618e45552
b89c6c05c32a0de4c2958e0674bf9a402907db08
/src/main/java/com/moma/framework/extra/taobao/api/internal/parser/json/ObjectJsonParser.java
ebd0aab34d5da884dab60177b274dabd5e073790
[]
no_license
simusco/tour-guide
d11aa384528c6ee0379f99b4ce4b3500b951beee
0d02ca51f2e7f4d2707aa57cb14dcae06ef46c6e
refs/heads/master
2021-01-17T11:11:53.279834
2016-03-25T07:28:22
2016-03-25T07:28:22
42,908,609
0
0
null
null
null
null
UTF-8
Java
false
false
1,068
java
package com.moma.framework.extra.taobao.api.internal.parser.json; import com.moma.framework.extra.taobao.api.ApiException; import com.moma.framework.extra.taobao.api.TaobaoParser; import com.moma.framework.extra.taobao.api.TaobaoResponse; import com.moma.framework.extra.taobao.api.internal.mapping.Converter; /...
[ "simusco@163.com" ]
simusco@163.com
82bdf5ddfc4d300e4be9ec57830191e381b6d8bc
34a5be962e2fd7855ee5f78cd2ffe40a0e47c115
/springtest/src/main/java/com/lishiwei/springtest/FalseSharing.java
754a8a9b3a7ac3e90039cae0572021ef1101e68a
[]
no_license
vividl/daytest
494a9e7e8bdb4d128b12f6f6bd88cddcc1c9b148
d10e1e105c228766833272f041e19f9db7d6bb3f
refs/heads/master
2022-12-20T20:14:48.426218
2019-10-08T06:49:32
2019-10-08T06:49:32
84,549,185
0
0
null
2022-12-15T23:40:20
2017-03-10T10:37:14
Java
UTF-8
Java
false
false
1,843
java
package com.lishiwei.springtest; public class FalseSharing implements Runnable { public final static long ITERATIONS = 500L * 1000L * 100L; private int arrayIndex = 0; private static ValueNoPadding[] longs; public FalseSharing(final int arrayIndex) { this.arrayIndex = arrayIndex;...
[ "lishiwei@oneapm.com" ]
lishiwei@oneapm.com
4c8491ca80bba4ebb105e6bbc6f5a0e12b075694
3277069ad7b426f18dc4769a281d7d5b84f48131
/reports/src/test/java/jonas/emile/reports/ExampleUnitTest.java
f5991bb2ad0c58d4fd92eeffd52945f403c53814
[]
no_license
mugbubule/citizen_android
2b3452776d456f1b59727eb0f8770322d14f1cd1
1b237ac5ba06c7e1fbb34c0de24df36d30e47205
refs/heads/master
2021-04-03T01:56:30.644043
2018-11-20T16:19:29
2018-11-20T16:19:29
124,834,857
0
0
null
2018-11-20T16:19:31
2018-03-12T04:46:52
Java
UTF-8
Java
false
false
397
java
package jonas.emile.reports; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void ad...
[ "emile.jonas@epitech.eu" ]
emile.jonas@epitech.eu
5cd645f6c8b61f789397fc6163d7445937691e0f
7adb3ea11858c7bea5d6dbd89d1577fa2c39c88e
/hgshop-user-service/src/main/java/com/zhanglei/hgshop/service/impl/WebUserServiceImpl.java
c59d23b5e6d8f7cd8b55988e8785a48755dc9b61
[]
no_license
zhanglei-warehouse/hgshop-parent
85060140611283aa4574592e3d31fe3df2c51312
2d1e9e6d5a1ab44491febab100b43dbfc64e7470
refs/heads/master
2022-12-23T07:28:58.501007
2020-03-12T06:53:21
2020-03-12T06:53:21
244,566,743
0
0
null
2022-12-15T23:58:04
2020-03-03T07:12:45
CSS
UTF-8
Java
false
false
1,010
java
package com.zhanglei.hgshop.service.impl; import org.apache.commons.codec.digest.DigestUtils; import org.apache.dubbo.config.annotation.Service; import org.springframework.beans.factory.annotation.Autowired; import com.zhanglei.hgshop.dao.UserDao; import com.zhanglei.hgshop.pojo.User; import com.zhanglei.hgsh...
[ "zhanglei@DESKTOP-7TTO9GJ" ]
zhanglei@DESKTOP-7TTO9GJ
b60010e7eecc658c7c2b23b8c71dacc7b1523cfc
ebf931509bd13289484cf8f7b2ae35fdf65cdf82
/HW2/src/main/java/cs455/scaling/client/ClientStatistics.java
f59b52a145944a9bf3c681fdef06becf6784dc52
[]
no_license
avrezzon/cs455
3d3cc628588baf555addd143f205bb0fb624816a
aeb1dac989eec41b3652d40c14379bb45e209c1f
refs/heads/master
2020-04-18T09:19:00.083949
2019-05-24T20:28:12
2019-05-24T20:28:12
167,429,844
0
0
null
null
null
null
UTF-8
Java
false
false
1,072
java
package cs455.scaling.client; import java.util.concurrent.atomic.AtomicInteger; public class ClientStatistics { private AtomicInteger msgSent; private AtomicInteger msgReceived; private AtomicInteger mismatch; public ClientStatistics() { this.msgSent = new AtomicInteger(0); this.msgReceive...
[ "anthonyrezz@gmail.com" ]
anthonyrezz@gmail.com
717da56daaddaf1f21a3dae39490a289232148cf
c6ea4e7b1bd16c738be449273bc3d8d786b9215c
/Study_Web/workspace/09.Member_Board/src/com/commons/action/ActionForward.java
ca06d1b8aa2b3fb89bf37848056531b5e8c78ad4
[]
no_license
vesteira2018/hanul_study
d1891b3db5c5dadcff05791f83d5af351818beaf
bf133d0e9b82a80232e62855add5073cde0a4660
refs/heads/master
2023-04-08T20:19:18.676178
2021-03-26T01:22:16
2021-03-26T01:22:16
351,620,703
0
0
null
null
null
null
UTF-8
Java
false
false
483
java
package com.commons.action; public class ActionForward { private String path = null; //jsp 파일의 위치(경로)와 파일명 //true : sendRedirect(), false : forward() private boolean isRedirect = false; //페이지 전환 방식 public String getPath() { return path; } public void setPath(String path) { this.path = path; } public boolea...
[ "vesteira2018@gmail.com" ]
vesteira2018@gmail.com
3e8dbcca58b250d6fe3d313d70d3b1ff7364baf0
b1d9bd5268c826e93dcd9fb9b140e7e0c09bac8a
/src/fr/ascadis/model/Utilisateur.java
8147778d03f6f7f671d02bd879802ba7fd075362
[]
no_license
t-camille/BACA-tetris2
35e6c1dadd3fcee45422e3f9084d88ef1914fd56
c112f7a648ab6fd91c16cec636db7462878b6ab9
refs/heads/master
2021-06-17T23:30:26.947286
2017-06-06T14:31:19
2017-06-06T14:31:19
93,521,830
0
0
null
null
null
null
UTF-8
Java
false
false
2,182
java
package fr.ascadis.model; import java.io.Serializable; import javax.persistence.Column; import javax.persistence.DiscriminatorColumn; import javax.persistence.DiscriminatorType; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence....
[ "tal.adoum@gmail.com" ]
tal.adoum@gmail.com
d1dc3b79770c70244ce724d50fd77fee8845acff
8ea8da1300c0e5a420c0526197d574b288ffcb0c
/src/main/java/org/yuesi/databridge/entity/CodeDateKey.java
82de84896862308e16793a568d9bdce6cece20c8
[]
no_license
YUESI/yuesi.DataBridge
ed5915094e5ff971710107ae2d61bb27cc7ff776
82cea621edd412ec621e6e10f5277d4012c8ccde
refs/heads/master
2021-01-12T17:00:45.961585
2020-04-12T07:43:15
2020-04-12T07:43:15
71,474,601
2
2
null
null
null
null
UTF-8
Java
false
false
616
java
package org.yuesi.databridge.entity; import java.io.Serializable; import java.util.Date; import javax.persistence.Column; import javax.persistence.Embeddable; @Embeddable public class CodeDateKey implements Serializable { /** * */ private static final long serialVersionUID = -3011087291369227690L; @Column(n...
[ "qiuwenhu@foxmail.com" ]
qiuwenhu@foxmail.com
4fbf70831ec60dd231b85e1a899a370d0ce35a5f
ab6788fafd20909db806ffa2f2b3f5d811037594
/youshoes/src/shoes/dto/pmDTO.java
b5e434fac15666e23a8a76c78b8446e02ce63c32
[]
no_license
GyodongGu/youshoes2
d171f6362ecea72f66e9ca721013fcdf93f635eb
eb99a937a92c64049aab66f892ee115659a769da
refs/heads/master
2022-12-09T07:00:39.167893
2020-04-02T08:13:05
2020-04-02T08:13:05
252,393,977
0
0
null
2022-12-05T17:49:48
2020-04-02T08:09:45
JavaScript
UTF-8
Java
false
false
2,462
java
package shoes.dto; import java.sql.Date; public class pmDTO { private int pm_no; private String pm_id; private String pm_pw; private String pm_name; private String pm_stat_cd; private Date pm_birth; private String pm_email; private Date pm_date; private String pm_tell; private String pm_post; private Strin...
[ "user@YD03-16" ]
user@YD03-16
bd875fc1651cbf03bf9e9e354388c4fef6daca1d
6e3ab0d677d0c60351780b67936cabecd882f4ff
/src/main/java/com/kripesh/cms/model/Person.java
3ad38d32c4c26081cdf6cccce7c2ed029ef4c3eb
[]
no_license
kripesh123/spring-boot-application
184e3812e3f6fa95f915151031713deefad5c4a7
d530c3cfe75103daee9d434bae90b8be6bef8c78
refs/heads/master
2023-01-06T21:59:30.491455
2020-10-15T03:15:25
2020-10-15T03:15:25
303,034,424
0
0
null
null
null
null
UTF-8
Java
false
false
322
java
package com.kripesh.cms.model; public class Person { private final long id; private final String name; public Person(long id, String name){ this.id = id; this.name = name; } public long getId(){ return id; } public String getName(){ return name; } ...
[ "kripeshbista3@gmail.com" ]
kripeshbista3@gmail.com
016a62e622b59387d53f566e7c90cc107d7e671a
8c2ee81fc94f17f1d1ab888a82253a0275dd3ca2
/movies-api/src/main/java/com/mycompany/moviesapi/rest/dto/MovieResponse.java
bbdd8f069f00052482817032b4e04b41915dda4d
[]
no_license
AlexRogalskiy/springboot-elk-prometheus-grafana
8da0b90ce17e2b80809ddf03397b7ed01d54979d
f6ae18cf6f3c488d7a775588b2581818ee2e7125
refs/heads/master
2023-08-30T21:19:18.077796
2021-09-14T13:25:31
2021-09-14T13:25:31
415,878,653
0
0
null
2021-10-11T10:30:33
2021-10-11T10:30:17
null
UTF-8
Java
false
false
193
java
package com.mycompany.moviesapi.rest.dto; import lombok.Value; @Value public class MovieResponse { String imdb; String title; Short year; String genre; String country; }
[ "ivan.franchin@takeaway.com" ]
ivan.franchin@takeaway.com
bc6cdd63eb0c683c0ee2655d0f0ace1f96754597
981f4a83129eb571d1b727714cad11e761b0153c
/es-helper-base/src/main/java/com/zheng/es/model/EsSearchResponse.java
a6c4ef139b984a35200c983d5258a520da032189
[]
no_license
zl736732419/es-helper
d842d1ce4d6f9793a7595bd1124b3a997815a994
9c3ca4844a68bc0d4dd086ebe63dc2446bcb8c0d
refs/heads/master
2020-04-29T06:58:10.962562
2019-04-30T10:22:29
2019-04-30T10:22:29
175,936,745
0
0
null
null
null
null
UTF-8
Java
false
false
2,801
java
package com.zheng.es.model; import org.elasticsearch.common.unit.TimeValue; import org.elasticsearch.rest.RestStatus; import org.elasticsearch.search.SearchHits; import org.elasticsearch.search.aggregations.Aggregations; import java.util.Objects; /** * <pre> * * File: * * Copyright (c) 2016, globalegrow.com A...
[ "zhenglian@globalegrow.com" ]
zhenglian@globalegrow.com
8c4ba6090bd91a20ad085f95760f76187f9631ee
5bd2833cb603ae6d714adc0a8521e6c755b0f8e5
/Exercicio02-Design Patterns/src/br/com/fiap/jpa/entity/Corrida.java
4bf9f80a60ddbd6d584d41606500fc7cbc44b205
[]
no_license
viniciusnicolaus/Enterprise-Application-Development
3a80a85e1f05cd01a488861d7e1be03c2c1157d3
30b356e8492bca6bdbd370d88251eeda886078d8
refs/heads/master
2020-03-25T16:33:58.961281
2018-08-07T23:37:26
2018-08-07T23:37:26
122,187,432
0
0
null
null
null
null
UTF-8
Java
false
false
1,835
java
package br.com.fiap.jpa.entity; import java.util.Calendar; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import...
[ "vininicolaufs@gmail.com" ]
vininicolaufs@gmail.com
74869f12afd49b1f5bb96084e66e6f529f450024
48cc0591cbe8fd5003b76d9722b7d987f4287cf5
/git@github.com:topdeveloperRay/gamehome.git/gamehome/src/main/java/com/dr/galaxy/gamehome/service/CircleService.java
6e6639f6f99d44f4d20f7118a546de9edd7f4014
[]
no_license
taofuyu/gamehome
a9910f0702f71f52eef4995a494a6afeb4d17a8e
435d69561d7b9b7055a2c11d937f8aafa0437fa9
refs/heads/master
2020-05-05T02:08:59.264071
2017-07-30T14:55:48
2017-07-30T14:55:48
null
0
0
null
null
null
null
UTF-8
Java
false
false
882
java
package com.dr.galaxy.gamehome.service; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.dr.galaxy.gamehome.model.Circle; import com.dr.galaxy.gamehome.repository.CircleRepository; @Service public class CircleService { @Autowired private Cir...
[ "drstime@163.com" ]
drstime@163.com
f2bb4a3f7c68b0fbca73289d149b6f4eedd5323d
7b0521dfb4ec76ee1632b614f32ee532f4626ea2
/src/main/java/alcoholmod/Mathioks/CommandChangeStats.java
dea888a6c52eb429cf4a5db387adc972470cb08d
[]
no_license
M9wo/NarutoUnderworld
6c5be180ab3a00b4664fd74f6305e7a1b50fe9fc
948065d8d43b0020443c0020775991b91f01dd50
refs/heads/master
2023-06-29T09:27:24.629868
2021-07-27T03:18:08
2021-07-27T03:18:08
389,832,397
0
0
null
null
null
null
UTF-8
Java
false
false
9,935
java
package alcoholmod.Mathioks; import alcoholmod.Mathioks.ExtraFunctions.SyncKinjutsuMessage; import alcoholmod.Mathioks.ExtraFunctions.SyncSenjutsuMessage; import alcoholmod.Mathioks.ExtraFunctions.SyncSkillPointsMessage; import alcoholmod.Mathioks.TransformationsRealPackage.SyncHealthMessage; import cpw.mods.fml.commo...
[ "mrkrank2023@gmail.com" ]
mrkrank2023@gmail.com
1470302f6b1db5ad39459494ef1e9dc4a9d743d3
b5fd02e73ec021e564e5278acb944631528de1eb
/IRCTCMadeEasy/app/src/main/java/irctc/factor/app/irctcmadeeasy/Utils/StationDetails.java
78605a598bef68c540ca71f5a60b5e1bf1ea9808
[]
no_license
hsadhamh/irctc_app
83abcd418bf440d406e4e80daf949d2d73226a6b
8856b1ff042f6622571f3fa6b92f8ebdd99b6f6d
refs/heads/master
2020-07-09T00:34:43.627454
2016-10-02T15:43:57
2016-10-02T15:43:57
203,822,925
1
0
null
null
null
null
UTF-8
Java
false
false
458
java
package irctc.factor.app.irctcmadeeasy.Utils; /** * Created by hassanhussain on 8/23/2016. */ public class StationDetails implements Comparable<StationDetails>{ public String StationCode, StationName, StationFullName; @Override public int compareTo(StationDetails another) { return this.StationCo...
[ "hsadhamhussain91@gmail.com" ]
hsadhamhussain91@gmail.com
b9196ee4411376664390437b4a06c3a03bf61569
2f0841b6ee1498af0f88dad3d9279b1b53a47d25
/MovieReviewsRestService/src/main/java/open/source/moviereviews/service/MovieReviewServiceImpl.java
35d613a71e34e9d036355a48a623ee800ba36636
[]
no_license
shahzebK/Spring-Samples
7114b47a4107667bcde014d100cf35258ce41018
3d9e713d39776af21926ee2a9187849732a0c24e
refs/heads/master
2021-01-18T04:25:50.053907
2015-04-16T23:26:47
2015-04-16T23:26:47
37,445,877
1
0
null
2015-06-15T05:43:28
2015-06-15T05:43:27
null
UTF-8
Java
false
false
2,747
java
package open.source.moviereviews.service; import open.source.moviereviews.domain.MovieDTO; import open.source.moviereviews.domain.ReviewDTO; import open.source.moviereviews.persistence.model.Movie; import open.source.moviereviews.persistence.model.Review; import open.source.moviereviews.persistence.model.User; import...
[ "Gurlal.Brar@vu.edu.au" ]
Gurlal.Brar@vu.edu.au
2c45ad5624dc0f032fd6dacec4eef7613606c146
430f0f6fcd13a1c2e63857f095900e4b10a654a2
/TimeReport/src/org/qris/timereport/ActivityEditor.java
9067a883364aa5105cbf8a61d039661799623f05
[]
no_license
mvturnho/TimeReport
5027dba9aede4028aba7f1e12d9b0ad9031265ed
df908302095058b7250c99b80022f381d9941874
refs/heads/master
2021-03-12T22:18:33.673283
2012-08-01T08:30:39
2012-08-01T08:30:39
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,801
java
/** * */ package org.qris.timereport; import org.qris.timereport.R; import android.app.Activity; import android.content.ContentValues; import android.content.Intent; import android.database.Cursor; import android.net.Uri; import android.os.Bundle; import android.provider.MediaStore; import andr...
[ "qris.android@gmail.com" ]
qris.android@gmail.com
ea79c444b347eb54b87b70dd006fc8dbff3072ca
b78646cbf7a7f58918d4486ec805e2b04f6cc602
/app/src/main/java/com/eex/mvp/assrtsjava/activity/TransferActivity.java
d7fd06039cd48083c9670559e3d007b8a088c83c
[]
no_license
qingyuyefeng/eex
3944df80bd7b22e3891fc0d7669ed0a473df55d9
3b1df7705b6e35d1ee62d4801d38fdc83d3e970d
refs/heads/master
2020-12-15T07:52:33.399946
2020-01-20T09:23:36
2020-01-20T09:23:36
235,034,114
0
0
null
null
null
null
UTF-8
Java
false
false
7,951
java
package com.eex.mvp.assrtsjava.activity; import android.annotation.SuppressLint; import android.app.ProgressDialog; import android.os.Bundle; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.text.Editable; import android.text.TextWatcher; import androi...
[ "97667024@qq.com" ]
97667024@qq.com
7d258a33c67f75c2cc50aad7ebaf76c66de2f0a6
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/20/20_51f6d0b34b9752eba0754155050ac4945f80cc3d/GroupAssertionsTest/20_51f6d0b34b9752eba0754155050ac4945f80cc3d_GroupAssertionsTest_s.java
41a1ce48973a57b5432421d50c522e2822d54fed
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
6,476
java
/* * Copyright (c) 2007-2010 Concurrent, Inc. All Rights Reserved. * * Project and contact information: http://www.cascading.org/ * * This file is part of the Cascading project. * * Cascading is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License ...
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
de86422056a918db2e658eacacf265da27c4b072
0ca9a0873d99f0d69b78ed20292180f513a20d22
/saved/sources/android/support/p001v4/widget/TintableImageSourceView.java
928a5f83cf667e04280ed91be75231c94e545630
[]
no_license
Eliminater74/com.google.android.tvlauncher
44361fbbba097777b99d7eddd6e03d4bbe5f4d60
e8284f9970d77a05042a57e9c2173856af7c4246
refs/heads/master
2021-01-14T23:34:04.338366
2020-02-24T16:39:53
2020-02-24T16:39:53
242,788,539
1
0
null
null
null
null
UTF-8
Java
false
false
643
java
package android.support.p001v4.widget; import android.content.res.ColorStateList; import android.graphics.PorterDuff; import android.support.annotation.Nullable; import android.support.annotation.RestrictTo; @RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX}) /* renamed from: android.support.v4.widget.TintableImageS...
[ "eliminater74@gmail.com" ]
eliminater74@gmail.com
52fc1fb7bca6108165de4d0bb631840603cbf462
22c46d23fc671fe721178cdecffbce444ee947ff
/src/main/java/com/sample/test/api/request/TransactionsByUserIdRequest.java
d2d0ea44e6376d8937afb1e792b7f70ec65d19be
[]
no_license
andresIngSof/andres-prado-sample-java-test
8e93cf21b2bb9795622fff4bf595c8635997e364
28f79b1281754de9ba73bb0b240b3a3a75dfc341
refs/heads/master
2020-11-27T14:02:47.544498
2019-12-24T03:11:14
2019-12-24T03:11:14
229,475,309
0
0
null
null
null
null
UTF-8
Java
false
false
970
java
package com.sample.test.api.request; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import com.sample.test.api.exception.APIException; import com.sample.test.api.utils.Constants; import java.util.Objects; /** * * @author : Andrés Prado Cruz * @email : andresss32157@gmail.com * @class : Transaction...
[ "andresss32157@gmail.com" ]
andresss32157@gmail.com
8a5f4fb38d2a52fbdced68f720e0df54ff282f5f
cf1e88f3048633c5251de87595de1a825b7064d8
/src/main/java/com/fenghua/auto/order/service/OrderHeaderService.java
cf988e7b430dc1b37439323fd9e2f0b8ab117799
[]
no_license
fightingBilling/skeleton-spring-web
64b77e2dc15849dbeecf48809e538e1b5e734721
f0c23867a7df6a6ab6239f747a66f6714800d793
refs/heads/master
2021-01-19T11:46:21.927365
2015-12-02T01:56:23
2015-12-02T01:56:23
null
0
0
null
null
null
null
UTF-8
Java
false
false
340
java
/** * */ package com.fenghua.auto.order.service; import com.fenghua.auto.backend.service.BaseService; import com.fenghua.auto.order.domain.OrderHeader; /** * Service接口类 * * @author 王直元 * @createTime 2015-11-25 11:11:35 * */ public interface OrderHeaderService extends BaseService<OrderHeader> {...
[ "sullivanwzy@aliyun.com" ]
sullivanwzy@aliyun.com
d9c5d1ce7bcba8775412fe59ac681a8fa1b6dcd9
2c1cdf0a73be4277f49e45d95ec8e444672446c1
/src/main/java/zhangjie/web/interceptor/QryParamCollector.java
38ff496edd64361914cd0e88bb4398a3425cdc4a
[]
no_license
woodenone-ghost/bishe
e6b0ae05ef8d6ec00863deaff10cfceb9525b026
37e56898c20c8a856f0cdb94accb0765a1de6866
refs/heads/master
2022-12-21T05:15:44.432866
2019-06-18T06:59:42
2019-06-18T06:59:42
170,657,126
0
0
null
2022-12-16T04:39:32
2019-02-14T08:41:03
JavaScript
UTF-8
Java
false
false
1,612
java
package zhangjie.web.interceptor; import java.util.HashMap; import java.util.Map; import java.util.function.BiConsumer; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.log4j.Logger; import org.springframework.web.method.HandlerMethod; import org.springfr...
[ "60569@SXS002298pc1.upoa.com" ]
60569@SXS002298pc1.upoa.com
8273b4f5aa40149932c965c6e71838f26882a212
e5d53701f07991186bdd6d18de3b5247a293e88e
/src/test/java/com/galvanize/jalbersh/springplayground/model/WordCount.java
8c3e85013d1f8c65ab81c32879709c7c02b8bb91
[]
no_license
jalbersh/spring-playground
de193bb94dad0e465fcc48dc694258f8445bf121
f76521a1be08049672cccfe3bfdce93b27855cc0
refs/heads/master
2020-03-24T01:07:05.075962
2018-09-09T01:24:36
2018-09-09T01:24:36
142,323,061
0
0
null
null
null
null
UTF-8
Java
false
false
639
java
package com.galvanize.jalbersh.springplayground.model; public class WordCount { private String word; private Integer count; public WordCount() { } public WordCount(String word, Integer count) { this.word = word; this.count = count; } public WordCount(String word) { ...
[ "james@albersheim.com" ]
james@albersheim.com
e94be10a086045ea9f1661295c4ad0b1e39de48c
9ab8785a5ed278ce952220efbb3766a53bb30472
/app/src/main/java/cc/colorcat/newmvp/web/IWebView.java
462e62f3d431c57c3f6c6606e23819b6d00c1ff3
[]
no_license
fireworld/NewMvp
45c381013c9fc22ba220e8f24a325e8fd1b431ed
8fb6afbfab3465a7bc3aa5a5bb90a3cee9cc1aa5
refs/heads/master
2021-01-11T14:17:21.871196
2017-10-25T05:51:56
2017-10-25T05:51:56
81,307,244
0
0
null
null
null
null
UTF-8
Java
false
false
2,883
java
package cc.colorcat.newmvp.web; import android.content.Context; import android.graphics.Bitmap; import android.webkit.ValueCallback; import android.webkit.WebView; /** * Created by cxx on 2017/2/9. * xx.ch@outlook.com */ public interface IWebView { /** * 在此方法中创建新的 {@link WebView} 并添加到视图中 */ void...
[ "xx.ch@outlook.com" ]
xx.ch@outlook.com
693caf8c538aaaaef265be44f712c7eb3409c6cb
37c9a638bea48f066e414847fef8001bb06c54e1
/src/test/java/org/example/d/PricingTest.java
f4de293dd47bc70515831a753bf20067f10ca100
[]
no_license
BenjaminLimb/web-test-framework-tutorial
9968f87cf8180767da4a1e9f024e77309a2c05d7
f02c81264f8c5c60cb32c77dc44f7f209aaeaf35
refs/heads/master
2016-09-01T19:41:30.166973
2015-03-30T16:56:34
2015-03-30T16:56:34
33,131,222
0
0
null
null
null
null
UTF-8
Java
false
false
1,462
java
package org.example.d; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.syftkog.web.test.framework.Driver; import org.syftkog.web.test.framework.TestCaseContext; import org.testng.annotations.Test; /** * * @author benjaminlimb */ public class PricingTest { public static Logger LOG = LoggerFac...
[ "benjaminlimb@gmail.com" ]
benjaminlimb@gmail.com
adc33891fb328d147fe3cf75e725a10f3729a1ed
84b3fb5385d65fc87f612fc75f9b63b166f2c1d3
/Grimoires/src/uk/ac/soton/ecs/grimoires/server/impl/wsdl/autogen/GetAllWSDLFilesResponse.java
a4c8c7f76ddaf74056da4320949e19a7087131eb
[ "BSD-3-Clause" ]
permissive
wjfang/grimoires
a65ee272f5ef34a8021eacd1ac7d0800b7f7a85a
3afaf971752f7fb6eb9ca4d182adc13445f32ed0
refs/heads/master
2021-01-19T09:55:40.830621
2008-05-15T09:17:29
2008-05-15T09:17:29
32,545,455
0
0
null
null
null
null
UTF-8
Java
false
false
2,492
java
/** * GetAllWSDLFilesResponse.java * * This file was auto-generated from WSDL * by the Apache Axis 1.2RC3 Feb 28, 2005 (10:15:14 EST) WSDL2Java emitter. */ package uk.ac.soton.ecs.grimoires.server.impl.wsdl.autogen; public class GetAllWSDLFilesResponse implements java.io.Serializable { private jav...
[ "wjfang@40f0876b-8a1f-0410-b2cd-f31c4a8ce603" ]
wjfang@40f0876b-8a1f-0410-b2cd-f31c4a8ce603
0425ff0e392887a79097d9e90ab994779da33703
0af8b92686a58eb0b64e319b22411432aca7a8f3
/single-large-project/src/test/java/org/gradle/test/performancenull_329/Testnull_32841.java
9104457124eda6a9b29baab4cab3b7cf12811668
[]
no_license
gradle/performance-comparisons
b0d38db37c326e0ce271abebdb3c91769b860799
e53dc7182fafcf9fedf07920cbbea8b40ee4eef4
refs/heads/master
2023-08-14T19:24:39.164276
2022-11-24T05:18:33
2022-11-24T05:18:33
80,121,268
17
15
null
2022-09-30T08:04:35
2017-01-26T14:25:33
null
UTF-8
Java
false
false
308
java
package org.gradle.test.performancenull_329; import static org.junit.Assert.*; public class Testnull_32841 { private final Productionnull_32841 production = new Productionnull_32841("value"); @org.junit.Test public void test() { assertEquals(production.getProperty(), "value"); } }
[ "cedric.champeau@gmail.com" ]
cedric.champeau@gmail.com
0ffc9eee9d61c571a367e09ca050e7648b39fc13
8a45c4f546ec384ff04f267ceff881a7a4fd354e
/app/src/test/java/com/example/afrijal/belajarvolley/ExampleUnitTest.java
9a8d33aa879f9363ce39ae6ed011883a44d025a8
[]
no_license
afrijaldz/Cek-Tagihan-PLN
2d538b4876503583bd9650ceaaa283b39d3e0693
b60bdb67bf75e8d67316b898c4b4585d95a66ec5
refs/heads/master
2020-12-25T05:45:16.501028
2016-12-26T07:19:14
2016-12-26T07:19:14
64,066,747
0
0
null
null
null
null
UTF-8
Java
false
false
326
java
package com.example.afrijal.belajarvolley; import org.junit.Test; import static org.junit.Assert.*; /** * To work on unit tests, switch the Test Artifact in the Build Variants view. */ public class ExampleUnitTest { @Test public void addition_isCorrect() throws Exception { assertEquals(4, 2 + 2); ...
[ "afrijal.xtgem@gmail.com" ]
afrijal.xtgem@gmail.com
6e919323821911489bfa539acd8c51cafd521c43
08345dde7830b0080ae84c0dee096053febea69d
/crazyLectures/src/main/java/com/sumnear/c0604/FinalErrorTest.java
7f152a3d965b59f78f7fcece279d5f7601e7bc9a
[]
no_license
sumnear/codeLife
fbf2a929fd4b829c1cdd69464b30e169a5bc7fcf
227a2a2480d27fd1961e62f89173216d045736b1
refs/heads/master
2022-12-23T07:36:10.508350
2021-06-27T13:06:34
2021-06-27T13:06:34
198,769,670
0
0
null
2022-12-16T05:24:26
2019-07-25T06:18:32
Java
UTF-8
Java
false
false
669
java
package com.sumnear.c0604; /** * Description: * <br/>网站: <a href="http://www.crazyit.org">疯狂Java联盟</a> * <br/>Copyright (C), 2001-2016, Yeeku.H.Lee * <br/>This program is protected by copyright laws. * <br/>Program Name: * <br/>Date: * @author Yeeku.H.Lee kongyeeku@163.com * @version 1.0 */ public class Final...
[ "402347012@qq.com" ]
402347012@qq.com
b1959ab804655389c15a9a1df63ec830ad74ea7f
11e64f2d18b3db1849fbf94b67ccdf4b1e49f698
/Filesystem.edit/src/jfb/examples/gmf/filesystem/provider/FilesystemEditPlugin.java
3038864664062efdb8f80d273df346263cc58d0a
[]
no_license
AntoineDelacroixCelad/Test2Models
0cd6dc8ea8266297f62a2c5adbf38e612af7aa7e
69aca93cf5f898ec80857f98c1ae9f99331a0b47
refs/heads/master
2016-09-01T12:19:15.228158
2015-11-23T13:44:20
2015-11-23T13:44:20
46,706,680
0
0
null
null
null
null
ISO-8859-3
Java
false
false
3,402
java
/* * Copyright (c) 2009, Jean-François Brazeau. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * ...
[ "antoine.delacroix@celad.com" ]
antoine.delacroix@celad.com
c8c58de0e9fad8c64e2a88638df9c6d7bb2ba967
3934e6d44a22897e66267e8c15e628e8ec1a3ee5
/org.lispdev/src/org/lispdev/views/repl/ReplEnterTrigger.java
3410538b2d8e4a0ba39175bde88a9f45f1903c19
[]
no_license
amarquesbra/lispdev
d705a89c9de07e33e7d7af38cc682a33a635c509
608c43ad21d8447abe7a08f0e5089b5e7fe632ab
refs/heads/master
2021-01-19T06:24:34.716972
2009-10-29T05:21:02
2009-10-29T05:21:02
39,547,411
0
0
null
null
null
null
UTF-8
Java
false
false
910
java
/** * */ package org.lispdev.views.repl; import org.eclipse.swt.events.VerifyEvent; /** * @author sk * */ public class ReplEnterTrigger extends ReplInputTrigger { private int stateMask; /** * @param r - repl to connect with * @param stateMask - one of the following: SWT.NONE, or co...
[ "sergey.kolos@c960db1b-0f56-0410-bd44-834b428c456c" ]
sergey.kolos@c960db1b-0f56-0410-bd44-834b428c456c
004a8d3f9e269d38695bab27d1e5e42be988ece3
19df637823300ca8b82debd02e5937a090c82956
/src/main/java/valandur/webapi/cache/misc/CachedCatalogType.java
6b6157469abd2f152a26f288592fedd25eef2c07
[ "MIT" ]
permissive
Dawn-MC/Web-API
51b8d77da2409f09301bb7958eb6fc5ef1b12bb0
8d9cac81685d7d6200b54450461aaf63d4be7fae
refs/heads/master
2021-01-20T04:09:22.666815
2017-06-05T22:30:23
2017-06-05T22:30:23
89,648,309
0
0
null
2017-06-05T22:30:24
2017-04-27T23:21:36
Java
UTF-8
Java
false
false
539
java
package valandur.webapi.cache.misc; import org.spongepowered.api.CatalogType; import valandur.webapi.cache.CachedObject; public class CachedCatalogType extends CachedObject { private String id; public String getId() { return id; } private String name; public String getName()...
[ "marco@aof.gg" ]
marco@aof.gg
35b137406920237004ca9a835450a77cd0fd942e
5f64b948eae8c907139f5b2161b5803a89e1191f
/wltcloud-hanlp/src/test/java/com/hankcs/book/ch08/DemoHMMNER.java
df63776969805e5e59c6485b385b04fbef73fc07
[]
no_license
wulitian/wltcloud
0e238ab6a26504c123e1d8b13e02babdc45b864b
1eef4238c99a6bc6d8dc3e955803e6178263c72e
refs/heads/master
2022-03-14T07:57:52.215538
2019-11-29T10:24:57
2019-11-29T10:24:57
217,468,880
0
0
null
null
null
null
UTF-8
Java
false
false
2,528
java
/* * <author>Han He</author> * <email>me@hankcs.com</email> * <create-date>2018-07-27 8:52 PM</create-date> * * <copyright file="HMMNER.java"> * Copyright (c) 2018, Han He. All Rights Reserved, http://www.hankcs.com/ * This source is subject to Han He. Please contact Han He for more information. * </copyright> ...
[ "1334416530@qq.com" ]
1334416530@qq.com
40d9678df5033c5610a98eb9314c18637bb76f04
c443dc3f9e799d79f5e1dd709c54c950858251d9
/drools-spring-app/src/main/java/sbnz/service/IngredientService.java
63deab482e4849079c63b123a2e6b85bdc20eeda
[]
no_license
Kendra1/Health-Feast
a0d98a201800a1389801d1e05063808be40212af
e33991926c5ca802b7e00224edaf24df87b8f39c
refs/heads/master
2022-12-11T16:15:35.174381
2020-09-07T10:45:08
2020-09-07T10:45:08
263,631,956
0
0
null
2020-09-07T10:29:13
2020-05-13T13:05:04
Java
UTF-8
Java
false
false
190
java
package sbnz.service; import java.util.List; import sbnz.model.Ingredient; public interface IngredientService { List<String> getIngredients(); Ingredient findByName(String name); }
[ "vlada996@gmail.com" ]
vlada996@gmail.com
1625ab7bba19e82326f7e90fe975eef841247e29
55dd60fe01ee88deda273f9ab1e3616e390b2d5b
/JDK1.8/src/java/util/UUID.java
81a58b51a4fa6faa5a890d820874dc2cd210276b
[]
no_license
wanghengGit/JDK-1
d7c1a86ecadb2590c8d58a23c47fdd7ebfcc3a66
1be52fd27316c82e06296dbdd25e41ad3da37d12
refs/heads/master
2021-09-10T07:23:17.576037
2021-09-09T07:19:16
2021-09-09T07:19:16
202,044,942
0
0
null
2019-08-13T02:13:35
2019-08-13T02:13:34
null
UTF-8
Java
false
false
15,505
java
/* * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.util; import java.security.*; /** * A class that represen...
[ "1012056369@qq.com" ]
1012056369@qq.com
728c799e4aca14a422dee1664bd6479c82091e60
aee5df69cd38887110c09d3d2bd723cb6e8987d6
/2.JavaCore/src/com/javarush/task/task15/task1528/Solution.java
30c838c940c48775d52f323f3feaf79fbffa12bf
[]
no_license
siarheikorbut/JavaRush
5e98158ad71594b2ad1b41342b51df39517341fc
095690627248ed8cb4d2b1a3314c06333aef2235
refs/heads/master
2023-08-24T05:34:03.674176
2021-10-16T17:57:19
2021-10-16T17:57:19
306,656,990
0
0
null
null
null
null
UTF-8
Java
false
false
712
java
package com.javarush.task.task15.task1528; /* ООП. Hryvnia — тоже деньги */ public class Solution { public static void main(String[] args) { System.out.println(new Hryvnia().getAmount()); } public static abstract class Money { abstract Money getMoney(); public Object getAmount()...
[ "siarheikorbut@gmail.com" ]
siarheikorbut@gmail.com
b7e6114889dbac7eb5efa3abbb99ecceb371ac69
e87e42bbb9b99be0263b0d61a85eacf9520a955b
/cidaas/src/main/java/de/cidaas/sdk/android/helper/CidaasSDKHelper.java
2d33e15dd244d35a4dacccb857d1145302fc13d2
[ "MIT" ]
permissive
exozet/cidaas-android-sdk
24104409400e43ad989403eabf686b9a063845a1
477b1d7e3cddf753b70bfa6fecf700c790c29200
refs/heads/master
2023-02-23T06:31:28.018713
2021-01-20T13:12:58
2021-01-20T13:12:58
null
0
0
null
null
null
null
UTF-8
Java
false
false
698
java
package de.cidaas.sdk.android.helper; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; public class CidaasSDKHelper { public static String codeChallengeMethod = "S256"; public static String contentType = "application/x-www-form-urlencoded"; public ...
[ "marvin.siegert@widas.de" ]
marvin.siegert@widas.de
d12555d7a00b2b2762d3cd5a75e0026d9672e3ed
f46f1d2228b722e15a775baeeb8c66513453cbdf
/ui/de-lib/src/main/java/org/iplantc/de/analysis/client/events/SaveAnalysisParametersEvent.java
81b3b78fa807f5937ef4ed36af06e177fe1cc6de
[]
no_license
angrygoat/DE
404713babd3c80a25751a3f878c1a0a6c4195d43
c561c97011f11af7dd6055fded7652b41e1ad789
refs/heads/unc-master
2020-04-05T23:04:18.936071
2016-11-29T18:51:13
2016-11-29T18:51:13
60,772,000
2
0
null
2016-10-11T17:29:27
2016-06-09T12:09:05
Java
UTF-8
Java
false
false
1,720
java
package org.iplantc.de.analysis.client.events; import org.iplantc.de.client.models.IsHideable; import com.google.gwt.event.shared.EventHandler; import com.google.gwt.event.shared.GwtEvent; import com.google.gwt.event.shared.HandlerRegistration; /** * @author jstroot */ public class SaveAnalysisParametersEvent exte...
[ "jstroot@iplantcollaborative.org" ]
jstroot@iplantcollaborative.org
8f110756b0b3cbbebe4f0181aa0f35ec5b61f8ca
ec9a8e31c623e861029f5aac3498d5f08c216fee
/src/rmdraw/apptools/SGLineTool.java
780f7dafeb4bf77e612ea82c46bef3de19ae0e4c
[]
no_license
reportmill/RMDraw
6a0e27c98c6ff4357e7277ad0a694b8666c8adc8
7aa7f4af4935e3a70fc009b2341fd8ef3514dee1
refs/heads/master
2023-04-19T07:58:20.247962
2023-04-17T14:55:04
2023-04-17T14:55:04
236,824,424
0
0
null
null
null
null
UTF-8
Java
false
false
5,902
java
/* * Copyright (c) 2010, ReportMill Software. All rights reserved. */ package rmdraw.apptools; import rmdraw.app.Tool; import rmdraw.scene.*; import java.util.*; import snap.geom.Point; import snap.gfx.*; import snap.util.SnapUtils; import snap.view.*; import snap.web.WebURL; /** * This class handles creation of ...
[ "jeff@reportmill.com" ]
jeff@reportmill.com
25fe4c4db4a6a078848118011126f5b31afe9a06
c9cf73543d7c81f8e87a58e051380e98e92f978a
/baseline/happy_trader/platform/client/clientHT/clientUI/src/com/fin/httrader/webserver/HtHTTPCommandGateway.java
5ef36f460eb68022e75b861e06f313e6f95ec81a
[]
no_license
vit2000005/happy_trader
0802d38b49d5313c09f79ee88407806778cb4623
471e9ca4a89db1b094e477d383c12edfff91d9d8
refs/heads/master
2021-01-01T19:46:10.038753
2015-08-23T10:29:57
2015-08-23T10:29:57
41,203,190
0
1
null
null
null
null
UTF-8
Java
false
false
6,113
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.fin.httrader.webserver; import com.fin.httrader.interfaces.HtEventListener; import com.fin.httrader.managers.RtConfigurationManager; import com.fin.httrader.managers.RtGlobalEventManager; import com.fin.httr...
[ "victorofff@gmail.com" ]
victorofff@gmail.com
aea3bf2f6c4af2d30f666299d671c330a1eca7c6
1b9ccc6f1c7320b6160d43146242192d0f54499f
/heima-leadnews/heima-leadnews-wemedia/src/main/java/com/heima/wemedia/controller/LoginController.java
0106200e649d85f0852285f333a4838dbd474a81
[]
no_license
xlaity/leadnews
c61adc5ff83f5f784236be7d62cbe381cbd2955a
ff5b485ed62fa7d04cf01f12623d4671d4c82e6a
refs/heads/master
2023-07-12T08:56:42.679156
2021-08-19T09:18:47
2021-08-19T09:18:47
397,841,803
0
0
null
null
null
null
UTF-8
Java
false
false
881
java
package com.heima.wemedia.controller; import com.heima.common.dtos.Result; import com.heima.model.admin.pojos.AdUser; import com.heima.model.wemedia.pojos.WmUser; import com.heima.wemedia.service.WmUserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotatio...
[ "void.itxin@gmail.com" ]
void.itxin@gmail.com
5b98284168b22488ef74c62f10232d6fcb566027
6d7108b8411cd92bd8598d3752582531c36ead67
/octarine-functional/src/main/java/com/codepoetics/octarine/functional/tuples/T2.java
efc3c92df31cf97d8010f784bd9aa95657df4c78
[ "Apache-2.0" ]
permissive
j4d/octarine
89cb16964aaffad1a3cd04f690549f6644cd8b5d
972f6c328d61f40b30844a3deac83d60f81e7c9a
refs/heads/master
2023-04-11T06:49:13.990796
2021-04-21T15:56:39
2021-04-21T15:56:46
360,223,716
0
0
Apache-2.0
2021-04-21T15:44:02
2021-04-21T15:44:00
null
UTF-8
Java
false
false
2,144
java
package com.codepoetics.octarine.functional.tuples; import java.util.Objects; import java.util.function.BiFunction; import java.util.function.Function; public final class T2<A, B> { private final A a; private final B b; private T2(A a, B b) { this.a = a; this.b = b; } public sta...
[ "dominic.fox@opencredo.com" ]
dominic.fox@opencredo.com
7eed6e71bf3fdaabd6eedcbbc7aa7e83ee94e1a1
3a5270270ccacf4e6845723f25dd0bb84f9f683f
/app/src/main/java/com/qingpeng/mz/views/AliyunScreenMode.java
9d30ddf9bf91eb136f6bdff1ee0f2ecf976c2ece
[]
no_license
QPKJEDL/LiveApp
8ed427472b08d8f274f48c7202cfb7667a314987
8951895fbcde2110d45d52a14797222fd8912d44
refs/heads/master
2022-11-19T16:11:58.385288
2020-07-24T02:07:12
2020-07-24T02:07:12
282,088,487
1
1
null
null
null
null
UTF-8
Java
false
false
260
java
package com.qingpeng.mz.views; /* * Copyright (C) 2010-2018 Alibaba Group Holding Limited. */ /** * UI 全屏和小屏模式 */ public enum AliyunScreenMode { /** * 小屏模式 */ Small, /** * 全屏模式 */ Full }
[ "wwj770479882@163.com" ]
wwj770479882@163.com
2dd5375a375319fe98c00aa8178087fc299031bb
5afc1e039d0c7e0e98216fa265829ce2168100fd
/his-statistics/src/main/java/cn/honry/statistics/bi/operation/operatioNum/vo/OperationNum2Vo.java
55f0653230b9c1e18b242747397b12ca74ab9d01
[]
no_license
konglinghai123/his
66dc0c1ecbde6427e70b8c1087cddf60f670090d
3dc3eb064819cb36ce4185f086b25828bb4bcc67
refs/heads/master
2022-01-02T17:05:27.239076
2018-03-02T04:16:41
2018-03-02T04:16:41
null
0
0
null
null
null
null
UTF-8
Java
false
false
400
java
package cn.honry.statistics.bi.operation.operatioNum.vo; public class OperationNum2Vo { private Integer opNum; private String scale; public Integer getOpNum() { return opNum; } public void setOpNum(Integer opNum) { this.opNum = opNum; } public String getScale() { return scale; } ...
[ "user3@163.com" ]
user3@163.com
174b8a485ca459d8c9f4ddb1942b17b14f25b1f9
b48282caa22f85fa29f1415b98282c6d471feb34
/src/main/java/gps/globalobjects/DoubleSumGlobalObject.java
3215a9521db380cd153d2e0f5a094e28f272066e
[]
no_license
MBtech/gps
7f50f49e4262a798d9d54bd2fae91860637fd474
f916e1e04c940e577713c219b6a5ed8224838417
refs/heads/master
2020-04-26T06:55:44.014185
2019-03-01T23:13:23
2019-03-01T23:13:23
173,380,085
0
0
null
null
null
null
UTF-8
Java
false
false
443
java
package gps.globalobjects; import gps.writable.DoubleWritable; import gps.writable.MinaWritable; public class DoubleSumGlobalObject extends DoubleGlobalObject { public DoubleSumGlobalObject() { super(); } public DoubleSumGlobalObject(double value) { super(value); } @Override public void update(MinaWritab...
[ "mbilal_ce@live.com" ]
mbilal_ce@live.com
3543cad76a71b254733bc38a98829936b9cca99f
d47a763c789a36fc1cd6f43ba0493342d69c530d
/mina-protobuf-runtime/src/main/java/com/weijiangzhu/minaserver/message/Message.java
e860b72d66b555b74318e2404e962ce60eb4a3cd
[ "Apache-2.0", "MIT", "LicenseRef-scancode-protobuf" ]
permissive
weijiangzhu/mina
a50e8722b686e7414de19385b85c3714e97f16cb
fa32b3de19462df639a78aafbcfa5ff141a2c329
refs/heads/trunk
2021-01-16T22:59:13.386420
2015-09-21T02:06:22
2015-09-21T02:06:22
42,578,437
0
0
null
2015-09-16T09:42:14
2015-09-16T09:42:14
null
UTF-8
Java
false
false
411
java
package com.weijiangzhu.minaserver.message; public class Message { private Integer msgType; private Object body; public Message(Integer msgType, Object body) { this.msgType = msgType; this.body = body; } public Object getBody() { return body; } public Integer getMsgType() { return msg...
[ "385251115@qq.com" ]
385251115@qq.com
4a8a80d114654cff3ca5f022ff9b3cf2e845239c
e49ddf6e23535806c59ea175b2f7aa4f1fb7b585
/tags/release-2.5/mipav/src/gov/nih/mipav/model/algorithms/AlgorithmSkeletonize3D.java
7f7ec7fede6612983a55bf95116d8cb8f54542c4
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
svn2github/mipav
ebf07acb6096dff8c7eb4714cdfb7ba1dcace76f
eb76cf7dc633d10f92a62a595e4ba12a5023d922
refs/heads/master
2023-09-03T12:21:28.568695
2019-01-18T23:13:53
2019-01-18T23:13:53
130,295,718
1
0
null
null
null
null
UTF-8
Java
false
false
150,044
java
package gov.nih.mipav.model.algorithms; import gov.nih.mipav.model.file.*; import gov.nih.mipav.model.structures.*; import gov.nih.mipav.model.structures.jama.*; import gov.nih.mipav.view.*; import java.awt.*; import java.io.*; /** * This is a port of the C++ code for pfSkel: Potential Field Base...
[ "NIH\\mccreedy@ba61647d-9d00-f842-95cd-605cb4296b96" ]
NIH\mccreedy@ba61647d-9d00-f842-95cd-605cb4296b96
f3e9bc0c44714c281afd19f1100ed0e57ad22a1a
a46c469caf66878f566f1f9b1d802731a940c7bd
/samaritan/inject/AbstractBinder.java
f408320e16579b083d19d73ed68b2afd2b5bd52e
[]
no_license
DONGFANG-WANGDAREN/samaritan-1
88b6a308d321a90de1bdf57448a4d14879402a2b
773b7a91ebb4f605e7333eb975c20a0da38e8eaf
refs/heads/master
2021-12-14T17:54:29.346689
2014-12-10T01:52:40
2014-12-10T01:52:40
null
0
0
null
null
null
null
UTF-8
Java
false
false
516
java
package samaritan.inject; import java.util.HashMap; import java.util.Map; import samaritan.affirm.Affirm; abstract class AbstractBinder implements Binder { private final Map<Class<?>, Binding<?>> bindings = new HashMap<>(); @Override public void bind(Binding<?> binding) { Affirm.notNull(binding); bindings.p...
[ "technology@live.com" ]
technology@live.com
a80c9569c49dd6d3873fd9d917165237ce39be27
331ff90a88aad3f19f1ce3ff0cee8f951279840f
/src/com/sudoplay/joise/noise/function/Function2DWhite.java
29407cf0a9a0575a82673d3cef97d06d11e21bad
[ "Zlib", "Apache-2.0" ]
permissive
Redexe/Joise
5c65aa70fd0aa05627c8f853f41d7a7b349573a9
13963277662d2e82f2c9e46c76d263ee0f18f6ec
refs/heads/master
2021-01-21T19:06:36.462931
2017-04-02T20:23:01
2017-04-02T20:23:01
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,967
java
/* * Copyright (C) 2016 Jason Taylor. * Released as open-source under the Apache License, Version 2.0. * * ============================================================================ * | Joise * ============================================================================ * * Copyright (C) 2016 Jason Taylor * ...
[ "jason@codetaylor.com" ]
jason@codetaylor.com
053f607a7b179847635737b6fffb5df729b9e635
36698a8464c18cfe4476b954eed4c9f3911b5e2c
/ZimbraSelenium/src/java/com/zimbra/qa/selenium/projects/zcs/tests/briefcase/presentation/PresentationContextMenu.java
8f992057e638f76ab665a06f902006d61f04a90c
[]
no_license
mcsony/Zimbra-1
392ef27bcbd0e0962dce99ceae3f20d7a1e9d1c7
4bf3dc250c68a38e38286bdd972c8d5469d40e34
refs/heads/master
2021-12-02T06:45:15.852374
2011-06-13T13:10:57
2011-06-13T13:10:57
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,618
java
package com.zimbra.qa.selenium.projects.zcs.tests.briefcase.presentation; import java.lang.reflect.Method; import org.testng.annotations.BeforeClass; import org.testng.annotations.BeforeMethod; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; import com.zimbra.qa.selenium.framework.core...
[ "dstites@autobase.net" ]
dstites@autobase.net
0a6717dd9cdc49ff1fe37e48252f0cea22e48521
75c4712ae3f946db0c9196ee8307748231487e4b
/src/main/java/com/alipay/api/domain/AntLinkeDevopsMobiledeviceReturnModel.java
b6160c70acf1faac0f8d4762caa65f3b89726530
[ "Apache-2.0" ]
permissive
yuanbaoMarvin/alipay-sdk-java-all
70a72a969f464d79c79d09af8b6b01fa177ac1be
25f3003d820dbd0b73739d8e32a6093468d9ed92
refs/heads/master
2023-06-03T16:54:25.138471
2021-06-25T14:48:21
2021-06-25T14:48:21
null
0
0
null
null
null
null
UTF-8
Java
false
false
995
java
package com.alipay.api.domain; import com.alipay.api.AlipayObject; import com.alipay.api.internal.mapping.ApiField; /** * 虚拟设备释放接口 * * @author auto create * @since 1.0, 2021-01-11 13:45:37 */ public class AntLinkeDevopsMobiledeviceReturnModel extends AlipayObject { private static final long serial...
[ "ben.zy@antfin.com" ]
ben.zy@antfin.com
220145274548d2e4314cc9ee77cbb2e3c014512b
1e212405cd1e48667657045ad91fb4dc05596559
/lib/openflowj-3.3.0-SNAPSHOT-sources (copy)/org/projectfloodlight/openflow/protocol/OFBsnLuaUploadFlags.java
a12b476f5bd63a32febc8291d704da722779cc46
[ "Apache-2.0" ]
permissive
aamorim/floodlight
60d4ef0b6d7fe68b8b4688f0aa610eb23dd790db
1b7d494117f3b6b9adbdbcf23e6cb3cc3c6187c9
refs/heads/master
2022-07-10T21:50:11.130010
2019-09-03T19:02:41
2019-09-03T19:02:41
203,223,614
1
0
Apache-2.0
2022-07-06T20:07:15
2019-08-19T18:00:01
Java
UTF-8
Java
false
false
1,447
java
// Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior University // Copyright (c) 2011, 2012 Open Networking Foundation // Copyright (c) 2012, 2013 Big Switch Networks, Inc. // This library was generated by the LoxiGen Compiler. // See the file LICENSE.txt which should have been included in the sour...
[ "alex@VM-UFS-001" ]
alex@VM-UFS-001
5259975dec0dab1fdae5472dec3f0706df223ce0
e63363389e72c0822a171e450a41c094c0c1a49c
/Mate20_10_1_0/src/main/java/android/hardware/contexthub/V1_0/IContexthub.java
0bd68859135723ec96fad8b94fcbfd71cf01405a
[]
no_license
solartcc/HwFrameWorkSource
fc23ca63bcf17865e99b607cc85d89e16ec1b177
5b92ed0f1ccb4bafc0fdb08b6fc4d98447b754ad
refs/heads/master
2022-12-04T21:14:37.581438
2020-08-25T04:30:43
2020-08-25T04:30:43
null
0
0
null
null
null
null
UTF-8
Java
false
false
36,063
java
package android.hardware.contexthub.V1_0; import android.hidl.base.V1_0.DebugInfo; import android.hidl.base.V1_0.IBase; import android.os.HidlSupport; import android.os.HwBinder; import android.os.HwBlob; import android.os.HwParcel; import android.os.IHwBinder; import android.os.IHwInterface; import android.os.NativeH...
[ "lygforbs0@gmail.com" ]
lygforbs0@gmail.com
36e2c3b87d9af6a61ee58c0865b870233f32af23
81d02689cf4297dd3427bf38de367d0f8753578a
/src/main/java/com/gmail/favorlock/forumbridge/ForumBridgeLogger.java
384b99c1080fdec2bcdc43a381dafc8c83555189
[]
no_license
Game-C/Forum-Bridge-1
97391495f6df44e06c6bae782aea5bc50d8fcf0e
ad2d81770490ea051b9908af840fb4c8f9c5ae2d
refs/heads/master
2020-04-01T17:27:49.861180
2014-05-12T17:54:11
2014-05-12T17:54:11
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,163
java
package com.gmail.favorlock.forumbridge; import java.util.logging.Level; import java.util.logging.Logger; public class ForumBridgeLogger { private static Logger log; private static String prefix; public static void initialize(Logger newLog) { ForumBridgeLogger.log = newLog; prefix = "[" +...
[ "evanlindsay@live.com" ]
evanlindsay@live.com
d11b8a6b7cc9c88909597f5640beca273ae8445a
89af22e28a2a338ce5b06fa6ce24468d267f98db
/myapp/src/main/java/myapp/com/techno/CategoryDAO.java
b30a904a0e716b536534f5a647fd00ee42bdd762
[]
no_license
GauravGadre123/selectAjax
2590ac032903ec1870502f967f2d303d30fe1437
6c6b66a5302af993c9b34e7d466721c82b4e1532
refs/heads/master
2023-01-05T18:14:29.892635
2020-11-03T14:00:12
2020-11-03T14:00:12
309,703,210
1
0
null
null
null
null
UTF-8
Java
false
false
1,401
java
package myapp.com.techno; import java.sql.*; import java.util.ArrayList; import java.util.List; public class CategoryDAO { private static final String URL = "jdbc:mysql://localhost:3306/order"; private static final String DRIVER = "com.mysql.jdbc.Driver"; private static final String USERNAME = "r...
[ "a@DESKTOP-0T7T504" ]
a@DESKTOP-0T7T504
8f868cf99e4546af6f063424825a835eb3729e10
f3c52e0c73165481bedbf0dada57a69b8059a8d3
/src/main/java/net/turtle/math/exception/CalculationException.java
07b5154de0f37c556af738ea3ffb2a4d193a8766
[ "Apache-2.0" ]
permissive
zolv/bignumbers
fce9ac61767282ea8c45d88f1e8c699128ea798e
47fe52d8098f2601ab0b06d9be38acedf2a57b85
refs/heads/main
2022-03-22T13:55:43.820833
2022-03-05T22:45:54
2022-03-05T22:45:54
30,588,024
3
0
Apache-2.0
2020-08-17T22:31:52
2015-02-10T10:56:49
Java
UTF-8
Java
false
false
670
java
package net.turtle.math.exception; public class CalculationException extends RuntimeException { private static final long serialVersionUID = 8730069633079206973L; public CalculationException() {} public CalculationException(String message) { super(message); } public CalculationException(T...
[ "zolv@users.noreply.github.com" ]
zolv@users.noreply.github.com
60ee95bbc2f7649e93a3c70e21ceed7b2e02238f
f2222484c04712b9bc894bfe00ca9c12759f3469
/src/com/utils/SQLFormatter.java
7173357804ebfd06a72563fae7a43d21a5a104e9
[]
no_license
pigV/aaie_server
8c61638856e3249c79540950f941fe4218322c70
b73d06c12f0a6db2b179d6722f1fc0f13d79db6c
refs/heads/master
2021-01-20T21:07:15.943049
2017-09-02T08:50:33
2017-09-02T08:50:33
101,751,683
0
0
null
null
null
null
UTF-8
Java
false
false
10,838
java
package com.utils; /** * Created by Administrator on 2017/3/15 0015. */ import java.util.HashSet; import java.util.LinkedList; import java.util.Set; import java.util.StringTokenizer; public class SQLFormatter { private static final Set<String> BEGIN_CLAUSES = new HashSet<String>(); private static final Set...
[ "mfwdhee@163.com" ]
mfwdhee@163.com
eb8ed141f46da4a697d3901e1a4fbf5687ccf148
4da9097315831c8639a8491e881ec97fdf74c603
/src/StockIT-v1-release_source_from_JADX/sources/com/google/android/exoplayer2/source/chunk/SingleSampleMediaChunk.java
ad581393946bc6d8f1b046f80e3b83515f478eed
[ "Apache-2.0" ]
permissive
atul-vyshnav/2021_IBM_Code_Challenge_StockIT
5c3c11af285cf6f032b7c207e457f4c9a5b0c7e1
25c26a4cc59a3f3e575f617b59acc202ee6ee48a
refs/heads/main
2023-08-11T06:17:05.659651
2021-10-01T08:48:06
2021-10-01T08:48:06
410,595,708
1
1
null
null
null
null
UTF-8
Java
false
false
2,391
java
package com.google.android.exoplayer2.source.chunk; import com.google.android.exoplayer2.C1379C; import com.google.android.exoplayer2.Format; import com.google.android.exoplayer2.extractor.DefaultExtractorInput; import com.google.android.exoplayer2.extractor.TrackOutput; import com.google.android.exoplayer2.upstream.D...
[ "57108396+atul-vyshnav@users.noreply.github.com" ]
57108396+atul-vyshnav@users.noreply.github.com
56d01f4d55f31791cd16a22c4ee166abcaf968d7
07d9645323a7c8fa20d2eade57cc4e6aa727c303
/exo1/src/exo1/Etape.java
78bd0ad6b1d217adaee427ea8c9a0f076f9772aa
[]
no_license
FBibonne/exos-java-8-12
83a31c01da427b6aea216db3ec21b7572d0a5b54
7c1c3124477912e743334905badb5e7590b17ed2
refs/heads/master
2020-12-07T19:13:40.223130
2020-01-10T15:29:56
2020-01-10T15:29:56
232,778,164
0
0
null
null
null
null
UTF-8
Java
false
false
66
java
package exo1; public interface Etape { public void test(); }
[ "fabrice.bibonne@insee.fr" ]
fabrice.bibonne@insee.fr
45ed318df9cda178169351ba0486cba6c7e79060
95ea0717f5e9490549615d4fe95ac69e1e3dc0c5
/main/java/org/example/vaccinationapp/MainActivity.java
6ddf17e3bf74b3b52fae61259bbdc63f3abc4640
[]
no_license
kapppa69/Navigation-Drawer
ef47594f9edd8ccabfc2b1ea02bb37e3bc41faa5
8620bcdfa344a0a91a03decb084d491a7c4cd84a
refs/heads/master
2022-04-11T02:54:31.998281
2020-04-01T15:19:43
2020-04-01T15:19:43
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,483
java
package org.example.vaccinationapp; import android.content.Intent; import android.os.Bundle; import android.view.MenuItem; import android.view.View; import android.widget.FrameLayout; import android.widget.ImageView; import androidx.appcompat.widget.Toolbar; import androidx.appcompat.app.AppCompatActivity; import an...
[ "khan.afnan1117@gmail.com" ]
khan.afnan1117@gmail.com
0d32132f71d2b79aa62134140f0ef7290c7543e8
59ead693fb0c744c9ee2bc30aaad6ac670ae91f4
/barak_p4/src/TaskItem.java
b631ceb3a2b5a9ea4d8cec4bcde462b83c01c3c2
[]
no_license
Lior5/COP3330_Barak
b259a6ddd82abd87e27da340df64862a39715b9d
977e3a92fa4d51f40bd5efb189425f5f03213279
refs/heads/master
2023-03-09T14:21:54.348293
2021-02-01T23:41:33
2021-02-01T23:41:33
293,927,884
0
0
null
null
null
null
UTF-8
Java
false
false
3,042
java
public class TaskItem { private String title, description, dueDate; private boolean completed = false; public TaskItem(String title, String description,String dueDate){ this.title = title; this.description = description; this.dueDate = dueDate; } public boolean get_completed(...
[ "you@example.com" ]
you@example.com
5edef4c6f2446189140f1037bc5a6e6e06019529
f18c1835121a0d8de419c9256375a8488680e941
/Demo_Mybatis02/src/com/demo/entity/Page.java
414d47d9ea2d9b6cb63e12d2e119e4bcb150bb48
[]
no_license
maiyuyao/Java
fdc218e347ab30ed0f19cd120178fd198a7e669c
ccbaca9096c78f469d6d1bb73391387a62395c04
refs/heads/master
2020-12-15T14:01:17.460556
2020-02-14T09:11:49
2020-02-14T09:11:49
235,127,955
0
0
null
null
null
null
UTF-8
Java
false
false
2,725
java
package com.demo.entity; /** * 分页对应的实体类 */ public class Page { private int totalNumber; // 总条数 private int currentPage;// 当前第几页 private int totalPage;// 总页数 private int pageNumber = 5;// 每页显示条数 private int mysqlIndex;// Mysql中limit的参数,从第几条开始取 private int mysqlNumber;// Mysql中limit的参数,一共取多少条 private int oracle...
[ "maiyuyao.163.com" ]
maiyuyao.163.com
68a085b479a416b9378a4a0db88f0f0fcafe3592
9ff427d184cbe1c43a06254171e985046de7d249
/src/main/java/module-info.java
de051065d8ea359a51f3c9bc7db9be3d1632015b
[]
no_license
sai-yi/jfxcontroldemo
663827d9082083474bbaf041c2326f56a42dbd3b
a5408ab80f6a97a93a51fb554b840e30e771dd1c
refs/heads/master
2020-08-01T17:10:44.742156
2019-09-26T09:55:17
2019-09-26T09:55:17
211,056,455
0
0
null
null
null
null
UTF-8
Java
false
false
184
java
module zero.saiyi.jfxcontroldemo { requires javafx.controls; requires javafx.fxml; opens zero.saiyi.jfxcontroldemo to javafx.fxml; exports zero.saiyi.jfxcontroldemo; }
[ "kyakgai@gmail.com" ]
kyakgai@gmail.com
e81a30e2735a5903125d34f67526127f9a828919
3e03c1aadf50c42f2f93b91aaf050b2083531a11
/src/test/java/com/epam/reportportal/jbehave/lifecycle/BeforeScenarioAnnotationFailedTest.java
5080519dfa4404e6eaf5d4a4a4af5652489deee1
[ "Apache-2.0" ]
permissive
reportportal/agent-java-jbehave
fa0862f179a22a15ebedcb43015391b4f8d50718
a5c6d24941ff04d5241fd8f59ca6992dad28bc2c
refs/heads/develop
2023-08-21T13:04:22.239770
2023-08-04T12:46:30
2023-08-04T12:46:30
70,480,074
8
6
Apache-2.0
2023-07-13T10:33:15
2016-10-10T11:08:35
Java
UTF-8
Java
false
false
5,687
java
/* * Copyright 2021 EPAM Systems * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
[ "vadzim_hushchanskou@epam.com" ]
vadzim_hushchanskou@epam.com
b31a7560ccff2b61c967625aa78fcd5a5db08047
44cbe0a3963985d8240f25e55f20fc05eed6f2e1
/rikao3-25/src/main/java/com/bw/rikao3_25/base/BaseActivity.java
0ea50d35bb21b4301241084c617118322ed8eb17
[]
no_license
AdminYan/Rikao4
4558edee3f36a93bc367a8b76aa616cfd5068d7a
3709cf9cea9f7e4a25283b11e79d15d7216528c4
refs/heads/master
2021-04-07T13:11:51.218774
2020-04-02T06:18:07
2020-04-02T06:18:07
248,678,480
0
0
null
null
null
null
UTF-8
Java
false
false
651
java
package com.bw.rikao3_25.base; import android.os.Bundle; import androidx.annotation.Nullable; import androidx.appcompat.app.AppCompatActivity; //创建activity基类 public abstract class BaseActivity extends AppCompatActivity { @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super....
[ "1005539719@qq.com" ]
1005539719@qq.com
0ccc5f1e5d9d4bf74f83efb79f0d73407f55bbc9
a40f58080ab90bd4f1ef6292a5b5cf57d77a38d3
/app/src/main/java/com/example/jayesh/syncsqlitewithserver/RecycleviewAdapter.java
675f9a7c6fbc85245282958f1cb63b7b5e8b5a11
[]
no_license
bhatiyajayesh/SyncSqliteWithServer
acfd3c90f2a1aca9af41f5da51443db5bd6bfed1
9d59469a3b6f4c5717997046632d1666b03c2a18
refs/heads/master
2020-03-12T00:43:20.244554
2018-04-20T12:19:46
2018-04-20T12:19:46
130,206,649
0
0
null
null
null
null
UTF-8
Java
false
false
1,763
java
package com.example.jayesh.syncsqlitewithserver; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import java.util.ArrayList; /** * Created by Jayesh on 19-Apr-...
[ "jayeshb.qtonz@yahoo.in" ]
jayeshb.qtonz@yahoo.in
b47e317e990a27e8488a569d97b2c9f374db5499
dd44c89ab1659a056de18700031fb9e5331c989e
/chin2/src/main/java/NewJFrame.java
6912d1b89feeeeb33ac75cabef8ae3b4c6912c9b
[]
no_license
ManiKandan051298/netbeans_pro
c7d83850706a30a8fa17c441da36b0738e39e8c0
6af3edda05d6b3164af4016f20780879f9456174
refs/heads/master
2023-03-27T21:44:11.401387
2021-03-31T05:50:32
2021-03-31T05:50:32
353,240,297
0
0
null
null
null
null
UTF-8
Java
false
false
3,218
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 ELCOT */ public class NewJFrame extends javax.swing.JFrame { /** * Creates new form NewJFrame */ ...
[ "maniprema972@gmail.com" ]
maniprema972@gmail.com
a48066f065e370db8d3219a63c517f1114ead822
39563c3c4febf8c17a9dd09a7ced1ab7d03c61da
/app/src/main/java/com/example/camcuz97/nytimessearch/activities/FilterActivity.java
e9fbbfcd8b9bae7dabc10fd7d23e11a03b48c131
[ "Apache-2.0" ]
permissive
camcuz97/NYTimesApp
6af20e1008627f0360492116672b917d09b6a617
a4004b484cfb694db0f2804cf47bb8abd3a99534
refs/heads/master
2021-01-20T19:14:18.654504
2016-06-25T01:47:52
2016-06-25T01:47:52
61,580,642
2
0
null
null
null
null
UTF-8
Java
false
false
4,378
java
package com.example.camcuz97.nytimessearch.activities; import android.app.DatePickerDialog; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.ArrayAdapter; import android.widget.CheckBox; import android.widget.DateP...
[ "camcuz1@gmail.com" ]
camcuz1@gmail.com
b85eb5e5a2639e4b4d20377008564f4e660556bd
90780a3a61f8d62f64aa45ab6e6e2d769945e772
/src/main/java/com/example/mail/entity/User.java
d4737a5eed822167017a71f3bf13a146baf79ec1
[]
no_license
XHHuiL/MailDemo
350dd41cdb2841732765df12cdf59c7d0bd11f01
ee9a60361d285445b23930b87e62621f6ba0c105
refs/heads/master
2020-06-13T21:22:31.707843
2019-07-03T10:41:08
2019-07-03T10:41:08
194,791,724
0
0
null
null
null
null
UTF-8
Java
false
false
3,948
java
package com.example.mail.entity; import java.io.Serializable; /** * user * @author */ public class User implements Serializable { /** * 用户id */ private Integer id; /** * 用户名 */ private String username; /** * 密码 */ private String password; /** * 电子邮...
[ "16302010048@fudan.edu.cn" ]
16302010048@fudan.edu.cn
a22f94d33b8ecc345eedc89424dbad38aa4aca77
144ecb0abd13c5100d3b89082d865282170ccd26
/inject-java/src/test/groovy/io/micronaut/inject/constructor/mapinjection/A.java
ba3c2f31ef5aa898673559bdb30fd75e0e997ce7
[ "Apache-2.0" ]
permissive
micronaut-projects/micronaut-core
9ef59fca29265a7e949e1434a5de02f6250991f4
b3056cf10866cceb2bad6f9a35767d50ce566eba
refs/heads/4.1.x
2023-08-31T11:09:12.094349
2023-08-31T10:45:36
2023-08-31T10:45:36
124,230,204
6,271
1,256
Apache-2.0
2023-09-14T21:02:48
2018-03-07T12:05:08
Java
UTF-8
Java
false
false
680
java
/* * Copyright 2017-2020 original authors * * 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://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
[ "noreply@github.com" ]
noreply@github.com
dc889b975605319d9e224dafe5616620bb7e0043
92f72036f437fb050817582f01ca156d229b4bb2
/src/kot/kotsnow/ookEditor/Controller.java
e74f091c893d51b78c92047aa6e31a32c76e9b6a
[]
no_license
kodex-snow/edytorOok
94f183a2733daa255dedbd930c866d63bf0ef97a
9d1bf159d2e144798e7bb672e105e756e8dc37a1
refs/heads/master
2021-01-23T16:51:24.178797
2017-06-07T21:07:10
2017-06-07T21:07:10
93,306,922
0
0
null
null
null
null
UTF-8
Java
false
false
2,243
java
package kot.kotsnow.ookEditor; import java.io.File; import java.io.IOException; import javafx.beans.property.BooleanProperty; import javafx.fxml.FXML; import javafx.scene.control.MenuItem; import javafx.scene.layout.AnchorPane; import javafx.scene.web.HTMLEditor; import javafx.stage.FileChooser; import javafx.stage.W...
[ "kotsnow.programmer@gmail.com" ]
kotsnow.programmer@gmail.com
bcdd8db2ea01cfd76737b48b238c0d28bb1a2b0d
20889c96d7585192a79ab28a8c906b16821644d7
/src/com/noxlogic/saffire/intellij/plugin/SaffireLanguage.java
ab3e71ee1b23eadd679f3c520b0dffd29b5ef0fb
[]
no_license
jaytaph/saffire-intellij-plugin
e6fbaaa6cbc58d4889dcfb80af355c5de8575dc3
c6fdc34df254cbdd5154494751e73328d281fac6
refs/heads/master
2018-12-29T19:21:23.929439
2013-01-18T17:27:58
2013-01-18T17:27:58
7,689,584
1
0
null
null
null
null
UTF-8
Java
false
false
271
java
package com.noxlogic.saffire.intellij.plugin; import com.intellij.lang.Language; public class SaffireLanguage extends Language { public static final SaffireLanguage INSTANCE = new SaffireLanguage(); private SaffireLanguage() { super("Saffire"); } }
[ "jthijssen@noxlogic.nl" ]
jthijssen@noxlogic.nl
cc5e82257b39f003cf99f7d7bb641f84f060e008
09d0ddd512472a10bab82c912b66cbb13113fcbf
/TestApplications/WhereYouGo-0.9.3-beta/DecompiledCode/JADX/src/main/java/menion/android/whereyougo/preferences/Preferences.java
a8304298f56284604df8ad5799b6a2b58907b8ac
[]
no_license
sgros/activity_flow_plugin
bde2de3745d95e8097c053795c9e990c829a88f4
9e59f8b3adacf078946990db9c58f4965a5ccb48
refs/heads/master
2020-06-19T02:39:13.865609
2019-07-08T20:17:28
2019-07-08T20:17:28
null
0
0
null
null
null
null
UTF-8
Java
false
false
7,990
java
package menion.android.whereyougo.preferences; import android.content.Context; import android.preference.PreferenceManager; import menion.android.whereyougo.C0254R; import menion.android.whereyougo.utils.Logger; import menion.android.whereyougo.utils.Utils; public class Preferences { public static int APPEARANCE_...
[ "crash@home.home.hr" ]
crash@home.home.hr
7f9d4b5b2a40068c498d6868af2982b9ed6b10d1
d00048e2757f2340bb8e529e3f18b400a7d173cd
/src/bt1/builder/HoaDonHeader.java
bac01567a82887f3d42f26460a662a28e94a33f9
[]
no_license
VoHuuHuy59130929/VoHuuHuy_59130929_CreationalPattern
a28aae6d651006d9e66bd6370d3370bada7ec616
177ae2e574049f12fcd28f5d7904ba95a78f3bae
refs/heads/master
2022-07-07T10:56:08.235571
2020-05-13T05:02:14
2020-05-13T05:02:14
263,527,901
0
0
null
null
null
null
UTF-8
Java
false
false
873
java
package builder; public class HoaDonHeader { private String maHoaDon, tenKhachHang, ngayBan; public HoaDonHeader (String maHoaDon, String tenKhachHang, String ngayBan) { setMaHoaDon(maHoaDon); setTenKhachHang(tenKhachHang); setNgayBan(ngayBan); } public void setMaHoaDon (String maHoaDon) { this.maH...
[ "huy.vh.59cntt@ntu.edu.vn" ]
huy.vh.59cntt@ntu.edu.vn
0479463642c7fe81763630f3214408d8b933dd71
13954a07622a837ecd2b4b71565cf5e5886bc9a1
/vocabulary/vocabulary-infrastructure/src/main/java/pl/voclern/vocabulary/adapter/secondary/AddWordModel.java
14762522cdfefebfa9582fe9e2fbe4fb610fbc36
[]
no_license
s17179/voclern-app
07ab1b2725a2fce5f6f925a60b9bbbcca484f6af
e2856a3f3dd107747597fe38fead715525388b76
refs/heads/master
2023-02-21T18:47:34.936245
2021-01-23T19:16:31
2021-01-23T19:16:31
320,405,249
0
0
null
null
null
null
UTF-8
Java
false
false
505
java
package pl.voclern.vocabulary.adapter.secondary; import lombok.Getter; import lombok.Setter; import pl.voclern.vocabulary.port.primary.contract.AddWordContract; import javax.validation.constraints.NotNull; import javax.validation.constraints.Size; @Getter @Setter class AddWordModel implements AddWordContract { ...
[ "dominik.gasior@valueadd.pl" ]
dominik.gasior@valueadd.pl
36dc4202c5e6ea4cd67ce80c5df17318e71ccf27
9f004c3df4413eb826c229332d95130a1d5c8457
/src/ankita_assignment_21/Agedifference.java
85aa9194248e3c51f47d28f85c57ffef63ee0285
[]
no_license
MayurSTechnoCredit/JAVATechnoJuly2021
dd8575c800e8f0cac5bab8d5ea32b25f7131dd0d
3a422553a0d09b6a99e528c73cc2b8efe260a07a
refs/heads/master
2023-08-22T14:43:37.980748
2021-10-16T06:33:34
2021-10-16T06:33:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
489
java
package ankita_assignment_21; public class Agedifference { int diffAge(int [] arr) { int max=arr[0]; int min=arr[0]; for(int index=0;index<arr.length;index++) { if(arr[index]> max) max=arr[index]; if(arr[index]< min) min=arr[index]; } return max-min; } public static void main(String[] ...
[ "ankitakene44@gmail.com" ]
ankitakene44@gmail.com
0b6f831ce10ac93fe646eb49af1d1d6e5a234810
50c7c873fc63955418ed6bbb90f9d2eddcac721d
/src/main/java/com/cafe24/jblog2/controller/api/UserController.java
d6b7d925fab0a0c24377204ec5dd472f87762255
[]
no_license
hornedlizard/jblog2
2d8d2388381e2921f8197e32888c0e9f8e5d2fc1
51586714deee090df1940a12d67f72af2cb44ad7
refs/heads/master
2020-03-06T23:37:19.223966
2018-04-07T07:59:57
2018-04-07T07:59:57
127,136,990
0
0
null
null
null
null
UTF-8
Java
false
false
880
java
package com.cafe24.jblog2.controller.api; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bin...
[ "BIT@DESKTOP-A70PMGU" ]
BIT@DESKTOP-A70PMGU
4ee166baa93267ef94195acee6eae14d569d5cf7
4caa52bc1d522d343ccdd12369c581c9b28f8fde
/src/shape/test/CircleTest.java
b2c709a01fc528816851a9e030c243478bab362b
[]
no_license
truyenho95/JAVA-WBD-Shape
41870815cbe83877ee9761d4189e0c59838424c9
670bd8e67645c780dfae6dde3f872b19ddda21c6
refs/heads/master
2020-04-10T11:28:24.794837
2018-12-10T10:23:50
2018-12-10T10:23:50
160,994,661
0
0
null
null
null
null
UTF-8
Java
false
false
333
java
package shape.test; import shape.model.Circle; public class CircleTest { public static void main(String[] args) { Circle circle = new Circle(); System.out.println(circle); circle = new Circle(3.5); System.out.println(circle); circle = new Circle(3.5, "indigo", false); System.out.println(ci...
[ "truyenho.webdev@gmail.com" ]
truyenho.webdev@gmail.com
4184ba5e6394a130dd406468b010aadb61fe45b5
1ed0e7930d6027aa893e1ecd4c5bba79484b7c95
/keiji/source/java/com/vungle/publisher/dh.java
4da9492d334b3b25188dd0d79a342d57e7e712ab
[]
no_license
AnKoushinist/hikaru-bottakuri-slot
36f1821e355a76865057a81221ce2c6f873f04e5
7ed60c6d53086243002785538076478c82616802
refs/heads/master
2021-01-20T05:47:00.966573
2017-08-26T06:58:25
2017-08-26T06:58:25
101,468,394
0
1
null
null
null
null
UTF-8
Java
false
false
715
java
package com.vungle.publisher; import dagger.MembersInjector; import dagger.a.c; import dagger.a.d; /* compiled from: vungle */ public final class dh implements c<dg> { static final /* synthetic */ boolean a = (!dh.class.desiredAssertionStatus()); private final MembersInjector<dg> b; public final /* synth...
[ "09f713c@sigaint.org" ]
09f713c@sigaint.org
31dbae10b2e23dba83a55f0472fe4621ed071483
3b5a85ae7304035385ae7925bfc77f58884bf90a
/src/main/java/com/ydt/oa/action/PurchasePlanAction.java
809ace2bf8867d3d8fbe6b14c811cf9cb078a0d6
[]
no_license
xfu00013/oa-2
ccb58af26fa9747e113a7dbf4aac80a30bb86051
3da1b1cb97e99fda896f889d97bec0cc234cfa29
refs/heads/master
2021-01-19T07:31:07.788830
2015-03-04T11:52:44
2015-03-04T11:52:44
null
0
0
null
null
null
null
UTF-8
Java
false
false
10,937
java
package com.ydt.oa.action; import java.io.File; import java.util.List; import java.util.Map; import org.apache.log4j.Logger; import org.apache.struts2.convention.annotation.Action; import org.apache.struts2.convention.annotation.Result; import org.springframework.beans.factory.annotation.Autowired; im...
[ "giro.cao@gmail.com" ]
giro.cao@gmail.com
e54e8eb33bcf0c398677827f428b209cad84c1e8
2c6162e7da2b1933df479504bb1cafa12f830b28
/BackEnd/com/someSite/service/implementation/SkillValueServiceImpl.java
8a66f2dad28b3f6c426ee460922cead3fedffb36
[]
no_license
SIMosiagin/Try2Beck
4cbdae05bcf646e6adbe2baab984af5f2bed4509
d3ea1ad579b83ceadb2f854c05f202e3a06ac765
refs/heads/master
2022-01-09T18:48:58.071303
2018-08-20T18:19:38
2018-08-20T18:19:38
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,329
java
package com.someSite.service.implementation; import com.someSite.dao.interfaces.SkillValueIntDao; import com.someSite.entity.firstApplication.ColumnList; import com.someSite.entity.thirdApplication.Employee; import com.someSite.entity.thirdApplication.EmployeeSkills; import com.someSite.entity.thirdApplication.SkillD...
[ "37743367+SIMosyagin@users.noreply.github.com" ]
37743367+SIMosyagin@users.noreply.github.com
e4aeb893996ee90e06e22a45b4a2f79d832fef43
383f88c9e837faed64804de271b46a35f21e7b3e
/src/com/test/Test2.java
35fd246db20b4c859f9e519039d8fc6717e687da
[]
no_license
mrhu0126/sunjob-hu
70ccff72b5a7eadf6f90ccc107a40eee69fc904b
6194334637e3e438a80a0a3fd2351077d05e910a
refs/heads/master
2023-02-23T22:34:25.184379
2021-01-28T03:16:26
2021-01-28T03:16:26
333,624,363
0
0
null
null
null
null
UTF-8
Java
false
false
134
java
package com.test; public class Test2 { public static void main(String[] args) { System.out.println("来了2"); } }
[ "463310143@qq.com" ]
463310143@qq.com
2495ac1ca0233fdd4533f7725e14f87e6e11eb1b
c016204e23f786cf4f8c081d4d7c6e85321d7550
/app/src/main/java/com/MJ/Hack/Sehat/UserDB.java
4367388b4c28383b49f2f2f7fe1fd76d011cc10b
[]
no_license
NicheApp/Sehat-App
9b8daf48a3ba87c797dee11c39d54165ec5e9a57
4092d8c943562e12bdc4fbaa5a60565cef025946
refs/heads/master
2023-02-20T02:05:58.820218
2021-01-07T20:24:00
2021-01-07T20:24:00
315,455,719
1
1
null
null
null
null
UTF-8
Java
false
false
6,877
java
package com.MJ.Hack.Sehat; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; /** * Created by Yo7A on 4/17/2017. */ class user { private String username; priva...
[ "nishkarshmaitry0864@gmail.com" ]
nishkarshmaitry0864@gmail.com