blob_id
stringlengths
40
40
__id__
int64
225
39,780B
directory_id
stringlengths
40
40
path
stringlengths
6
313
content_id
stringlengths
40
40
detected_licenses
list
license_type
stringclasses
2 values
repo_name
stringlengths
6
132
repo_url
stringlengths
25
151
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
70
visit_date
timestamp[ns]
revision_date
timestamp[ns]
committer_date
timestamp[ns]
github_id
int64
7.28k
689M
star_events_count
int64
0
131k
fork_events_count
int64
0
48k
gha_license_id
stringclasses
23 values
gha_fork
bool
2 classes
gha_event_created_at
timestamp[ns]
gha_created_at
timestamp[ns]
gha_updated_at
timestamp[ns]
gha_pushed_at
timestamp[ns]
gha_size
int64
0
40.4M
gha_stargazers_count
int32
0
112k
gha_forks_count
int32
0
39.4k
gha_open_issues_count
int32
0
11k
gha_language
stringlengths
1
21
gha_archived
bool
2 classes
gha_disabled
bool
1 class
content
stringlengths
7
4.37M
src_encoding
stringlengths
3
16
language
stringclasses
1 value
length_bytes
int64
7
4.37M
extension
stringclasses
24 values
filename
stringlengths
4
174
language_id
stringclasses
1 value
entities
list
contaminating_dataset
stringclasses
0 values
malware_signatures
list
redacted_content
stringlengths
7
4.37M
redacted_length_bytes
int64
7
4.37M
alphanum_fraction
float32
0.25
0.94
alpha_fraction
float32
0.25
0.94
num_lines
int32
1
84k
avg_line_length
float32
0.76
99.9
std_line_length
float32
0
220
max_line_length
int32
5
998
is_vendor
bool
2 classes
is_generated
bool
1 class
max_hex_length
int32
0
319
hex_fraction
float32
0
0.38
max_unicode_length
int32
0
408
unicode_fraction
float32
0
0.36
max_base64_length
int32
0
506
base64_fraction
float32
0
0.5
avg_csv_sep_count
float32
0
4
is_autogen_header
bool
1 class
is_empty_html
bool
1 class
shard
stringclasses
16 values
a52eb7a14dc4cbd5bc2625621b41d146c5aa72d9
5,162,550,706,819
b67bfb13aabe81285da62c1e8a3a18e36f295139
/ocean/src/main/java/com/brucex/modules/sys/dao/MenuDao.java
8f9fff9705294fb90a358e4c0b9d094a3e3b7f7e
[]
no_license
xiongdun/ocean
https://github.com/xiongdun/ocean
e1741170c3ae5c89d9bbe99433fdb76f3cffedc3
f4026b7b8d7446fb528580ce81d97373fa8def86
refs/heads/master
2021-08-31T23:26:41.592000
2017-12-23T13:11:55
2017-12-23T13:11:55
111,979,404
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
/** * */ package com.brucex.modules.sys.dao; import java.util.List; import com.brucex.common.dao.CrudDao; import com.brucex.modules.sys.entity.Menu; /** * @description menuDao * @author xiongdun * @datetime 2017年4月8日下午4:17:40 */ public interface MenuDao extends CrudDao<Menu> { /** * @description 按User_id ...
UTF-8
Java
503
java
MenuDao.java
Java
[ { "context": "tity.Menu;\n\n/**\n * @description menuDao\n * @author xiongdun\n * @datetime 2017年4月8日下午4:17:40\n */\npublic interf", "end": 202, "score": 0.999692976474762, "start": 194, "tag": "USERNAME", "value": "xiongdun" }, { "context": "\t/**\n\t * @description 按User_id 查询 菜单列表...
null
[]
/** * */ package com.brucex.modules.sys.dao; import java.util.List; import com.brucex.common.dao.CrudDao; import com.brucex.modules.sys.entity.Menu; /** * @description menuDao * @author xiongdun * @datetime 2017年4月8日下午4:17:40 */ public interface MenuDao extends CrudDao<Menu> { /** * @description 按User_id ...
503
0.69936
0.652452
26
17.038462
16.232637
49
false
false
0
0
0
0
0
0
0.5
false
false
9
10abafbcef4b519a182fd17aa1c991655f9151ae
24,120,536,400,623
92ac93fb010e11c1ffe28404f89ce8fae3d41e1b
/src/main/java/IntegerPalirome.java
bf5f76f203c4ee3e42f3dbf672dfc062cb0c4b6b
[]
no_license
rajamanir87/JavaCode
https://github.com/rajamanir87/JavaCode
8961c027a59615188d0f1155bf6fd05d1bb92dff
8d70612dfc8696853ac2b58776e01735c95e0ea1
refs/heads/master
2023-04-15T02:14:20.024000
2021-05-06T06:51:57
2021-05-06T06:51:57
277,589,205
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
public class IntegerPalirome { public static void IntPalirome(int inputNo) { int lastno = 0,sum = 0,a=0; a=inputNo; while(a>0) { lastno=a%10; sum=(sum*10)+lastno; a=a/10; } if(sum == inputNo) { System.out.println("it is plarome"); } else { System.out.println("it is not plar...
UTF-8
Java
407
java
IntegerPalirome.java
Java
[]
null
[]
public class IntegerPalirome { public static void IntPalirome(int inputNo) { int lastno = 0,sum = 0,a=0; a=inputNo; while(a>0) { lastno=a%10; sum=(sum*10)+lastno; a=a/10; } if(sum == inputNo) { System.out.println("it is plarome"); } else { System.out.println("it is not plar...
407
0.584767
0.552826
29
13
14.567323
46
false
false
0
0
0
0
0
0
2.068965
false
false
9
be1fa50456538e321cf5a54e9944d02d31d97e79
12,919,261,643,149
33d2cb3de7eee7d47dc499a20037ae4f23d28fd0
/packages/apps/coDriverParse/src/com/baidu/che/codriver/parse/CoDriverBroadcastReceiver.java
54f0cbf1e6f679842d752f2cc5162eb1ed54cbb0
[]
no_license
lvxiaojia/yecon
https://github.com/lvxiaojia/yecon
0e139c9dddac12a71d55184bb10eaa658c3b906f
87658d255c405802d906be389353ef2b2e828d59
refs/heads/master
2020-05-18T05:31:19.781000
2018-06-07T05:11:17
2018-06-07T05:11:17
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.baidu.che.codriver.parse; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.net.Uri; import android.util.Log; public class CoDriverBroadcastReceiver extends BroadcastReceiver { private final String POWER_ON = "autochips.intent.action.Q...
UTF-8
Java
1,163
java
CoDriverBroadcastReceiver.java
Java
[]
null
[]
package com.baidu.che.codriver.parse; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.net.Uri; import android.util.Log; public class CoDriverBroadcastReceiver extends BroadcastReceiver { private final String POWER_ON = "autochips.intent.action.Q...
1,163
0.72141
0.71969
30
37.766666
26.316895
79
false
false
0
0
0
0
0
0
1.333333
false
false
9
d0dc3c08732b332d028ecd1d8675e8356d514523
28,698,971,504,041
242945d030b8f23bbdc363db9276349498a37895
/app/src/main/java/lmu/hradio/hradioshowcase/util/ColorUtils.java
06a2315d3f4709b07a3fcafe68f52c9c14353bbb
[ "Apache-2.0" ]
permissive
Aquilum/hradio-app
https://github.com/Aquilum/hradio-app
efa16a205fc70cfe8a60ab214ce1944a3b02d806
d3738be81dbd0441410da600073924ad8b75306d
refs/heads/master
2023-03-20T10:38:36.925000
2020-05-29T15:54:26
2020-05-29T15:54:26
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package lmu.hradio.hradioshowcase.util; import android.content.Context; import android.content.res.Resources; import android.graphics.Color; import android.util.TypedValue; import androidx.annotation.ColorInt; public final class ColorUtils { @ColorInt public static int adjustAlpha(@ColorInt int color, float...
UTF-8
Java
855
java
ColorUtils.java
Java
[]
null
[]
package lmu.hradio.hradioshowcase.util; import android.content.Context; import android.content.res.Resources; import android.graphics.Color; import android.util.TypedValue; import androidx.annotation.ColorInt; public final class ColorUtils { @ColorInt public static int adjustAlpha(@ColorInt int color, float...
855
0.695906
0.695906
28
29.535715
22.321486
74
false
false
0
0
0
0
0
0
0.785714
false
false
9
c2c5df7b7df9f991f4fb7e62f5b626d145282b36
33,698,313,436,292
5c7e016abdfb5e5c60745a6f6a31725bcdfb2d4f
/src/colina/TipoAtaque.java
4ca9374a1ccd9c9cbe50c5fd8a975f6bc8490390
[]
no_license
danyaljim/isg2colina218
https://github.com/danyaljim/isg2colina218
7889797eb40a03f5474785be225af19ab78b8adb
b0bcd2f6d8a40aa0e25f44192cca7f03dc524bca
refs/heads/master
2015-08-21T14:43:46.362000
2009-11-18T17:09:11
2009-11-18T17:09:11
32,200,140
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package colina; public enum TipoAtaque { NORMAL, DIRECTO; public String toString() { switch(this) { case NORMAL: return "normal"; case DIRECTO: return "directo"; default: return "ERROR"; } } }
UTF-8
Java
238
java
TipoAtaque.java
Java
[]
null
[]
package colina; public enum TipoAtaque { NORMAL, DIRECTO; public String toString() { switch(this) { case NORMAL: return "normal"; case DIRECTO: return "directo"; default: return "ERROR"; } } }
238
0.588235
0.588235
18
12.222222
11.839461
35
false
false
0
0
0
0
0
0
0.944444
false
false
9
746d4898a20e2b4eb3ae6dbe31babfddb307b061
31,104,153,193,089
30cd3ba8a3a573f9c30efe1f130d5e781f5af6d8
/src/main/java/com/ipayso/repositories/TicketRepository.java
4755a24ce34ba136c2ccf259ace4a2c845edd7c8
[]
no_license
Cleberw3b/demo
https://github.com/Cleberw3b/demo
9668c7d941a07651f89145eb6c498b78f27e9bc5
afb6149774b9bdc57d113f72febc2a920527db25
refs/heads/master
2020-12-31T07:20:19.017000
2017-04-29T06:09:46
2017-04-29T06:09:46
80,551,978
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.ipayso.repositories; import java.util.List; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.repository.CrudRepository; import com.ipayso.model.Ticket; /** * TicketRepository.class -> This interface is a repository for Ticket,...
UTF-8
Java
816
java
TicketRepository.java
Java
[ { "context": "s allowed to use CrudRepository methods\n * @author Cleber Oliveira\n * @version 1.0\n * @see CrudRepository\n * @see Ti", "end": 432, "score": 0.9998658299446106, "start": 417, "tag": "NAME", "value": "Cleber Oliveira" } ]
null
[]
package com.ipayso.repositories; import java.util.List; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.repository.CrudRepository; import com.ipayso.model.Ticket; /** * TicketRepository.class -> This interface is a repository for Ticket,...
807
0.735294
0.732843
35
22.342857
23.15654
93
false
false
0
0
0
0
0
0
0.857143
false
false
9
26d55a7142602aa9aa56ab559b1043871aeb34af
9,208,409,930,718
afc984b6f4b89ddb5ba617c14e0f4badc6a3cecb
/service/src/main/java/org/mardep/ssrs/report/generator/RPT_SR_014.java
efe6b1bfdfd4f70ea3fc9110a9705883269bfdf4
[]
no_license
codefxone/ssrs2
https://github.com/codefxone/ssrs2
9fc087837d121ff8944d24d4d77e141ae703f377
4212a954e3c4d8ccc35471735438640e3fa8e186
refs/heads/master
2023-01-06T18:38:17.193000
2020-11-09T10:15:54
2020-11-09T10:15:54
303,931,637
0
1
null
null
null
null
null
null
null
null
null
null
null
null
null
package org.mardep.ssrs.report.generator; import org.springframework.stereotype.Service; @Service("RPT_SR_014") public class RPT_SR_014 extends AbstractSrReport { public RPT_SR_014() { super("RPT-SR-014.jrxml", (rmDao, reportDate) -> { return rmDao.getRegistrationType(reportDate);}); } }
UTF-8
Java
296
java
RPT_SR_014.java
Java
[]
null
[]
package org.mardep.ssrs.report.generator; import org.springframework.stereotype.Service; @Service("RPT_SR_014") public class RPT_SR_014 extends AbstractSrReport { public RPT_SR_014() { super("RPT-SR-014.jrxml", (rmDao, reportDate) -> { return rmDao.getRegistrationType(reportDate);}); } }
296
0.743243
0.702703
11
25.90909
30.281872
101
false
false
0
0
0
0
0
0
0.909091
false
false
9
86adf67fbdfb1e7e45ba0d4bccb82297103316f1
21,964,462,796,531
6085b2c2e54e295baada9a7f6aa167100fcdc293
/code-challenge/src/main/java/com/excelsiorsoft/hztest/HzTestApplication.java
61ef2ac62e745383119c9e2d116f2462b6146827
[]
no_license
excelsiorsoft/hazelcast-interview
https://github.com/excelsiorsoft/hazelcast-interview
6e8c070f80d2e6dc631757fdbc47976f188f90c9
236ac119cb24865ea17aeb1e09cb9b8be555e725
refs/heads/master
2020-07-23T00:14:35.301000
2019-09-16T11:00:17
2019-09-16T11:00:17
207,380,263
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.excelsiorsoft.hztest; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.Bean; import com.hazelcast.client.HazelcastClient; import com...
UTF-8
Java
1,634
java
HzTestApplication.java
Java
[]
null
[]
package com.excelsiorsoft.hztest; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.context.annotation.Bean; import com.hazelcast.client.HazelcastClient; import com...
1,634
0.752142
0.749694
53
29.830189
27.129831
115
false
false
0
0
0
0
0
0
0.773585
false
false
9
1e4520fde07bd916f609ec3a82d4d52afce9c824
4,002,909,558,221
b980b82c4c3d678c02637cc9abfc89c88181488a
/src/main/java/br/com/zupacademy/daniel/casadocodigo/model/Livro.java
84e649ea23239d68701cd11deb110194ae99cff6
[ "Apache-2.0" ]
permissive
daniel-santiago-zup/orange-talents-05-template-casa-do-codigo
https://github.com/daniel-santiago-zup/orange-talents-05-template-casa-do-codigo
68c145818f55f04018378e691ac5797af5f3d929
4caddbafbd659cf605b090be6f38db286ca42683
refs/heads/main
2023-04-29T01:36:59.228000
2021-05-21T17:09:08
2021-05-21T17:09:08
368,062,426
0
0
Apache-2.0
true
2021-05-17T05:10:33
2021-05-17T05:10:33
2021-05-04T20:53:32
2021-05-04T20:53:29
5
0
0
0
null
false
false
package br.com.zupacademy.daniel.casadocodigo.model; import org.hibernate.validator.constraints.ISBN; import org.hibernate.validator.constraints.URL; import javax.persistence.*; import javax.validation.constraints.*; import java.math.BigDecimal; import java.time.LocalDate; @Entity @Table(uniqueConstraints = @UniqueC...
UTF-8
Java
2,819
java
Livro.java
Java
[ { "context": "package br.com.zupacademy.daniel.casadocodigo.model;\n\nimport org.hibernate.validat", "end": 32, "score": 0.5210473537445068, "start": 26, "tag": "USERNAME", "value": "daniel" } ]
null
[]
package br.com.zupacademy.daniel.casadocodigo.model; import org.hibernate.validator.constraints.ISBN; import org.hibernate.validator.constraints.URL; import javax.persistence.*; import javax.validation.constraints.*; import java.math.BigDecimal; import java.time.LocalDate; @Entity @Table(uniqueConstraints = @UniqueC...
2,819
0.609436
0.600922
121
22.297522
16.842804
78
false
false
0
0
0
0
0
0
0.438017
false
false
9
1024ea23947b7614834787d229eccf005792d49f
30,193,620,128,862
000e9ddd9b77e93ccb8f1e38c1822951bba84fa9
/java/classes2/com/ziroom/datacenter/remote/responsebody/financial/clean/t.java
f658c1368152734716c38ccaa2c4e9630d1d7ebf
[ "Apache-2.0" ]
permissive
Paladin1412/house
https://github.com/Paladin1412/house
2bb7d591990c58bd7e8a9bf933481eb46901b3ed
b9e63db1a4975b614c422fed3b5b33ee57ea23fd
refs/heads/master
2021-09-17T03:37:48.576000
2018-06-27T12:39:38
2018-06-27T12:41:35
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.ziroom.datacenter.remote.responsebody.financial.clean; public class t { private String a; private String b; private String c; public String getFdetailDocument() { return this.a; } public String getFpicpath() { return this.b; } public String getFversion() { return ...
UTF-8
Java
805
java
t.java
Java
[]
null
[]
package com.ziroom.datacenter.remote.responsebody.financial.clean; public class t { private String a; private String b; private String c; public String getFdetailDocument() { return this.a; } public String getFpicpath() { return this.b; } public String getFversion() { return ...
805
0.665838
0.654658
44
17.318182
24.973415
142
false
false
0
0
0
0
0
0
0.227273
false
false
9
0360d38ecaa7d41dee935ce0514806bff42b35c3
23,416,161,730,883
1eb68826efdc556f472200dca973b3a1846fd540
/src/idv/jk/study/designpattern/memoto/ProgrammerBrain.java
0a732934721e1268cba44b206bf156f76b764c0d
[]
no_license
javakidx/java-examples
https://github.com/javakidx/java-examples
96be5d60c35abb0f614d7a3f5940c76c22cc236f
56ff2c8ebd62a5cf533accd354d6e32a6275fa30
refs/heads/master
2016-09-05T21:18:52.449000
2015-11-05T03:19:10
2015-11-05T03:19:10
33,284,149
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package idv.jk.study.designpattern.memoto; /** * Created by bioyang on 2015/10/12. */ public class ProgrammerBrain { private BodyStateMemoto mBodyStateMemoto; public void setBodyStateMemoto(BodyStateMemoto bodyStateMemoto) { this.mBodyStateMemoto = bodyStateMemoto; } public BodyStateMem...
UTF-8
Java
392
java
ProgrammerBrain.java
Java
[ { "context": ".jk.study.designpattern.memoto;\n\n/**\n * Created by bioyang on 2015/10/12.\n */\npublic class ProgrammerBrain\n{", "end": 69, "score": 0.999603271484375, "start": 62, "tag": "USERNAME", "value": "bioyang" } ]
null
[]
package idv.jk.study.designpattern.memoto; /** * Created by bioyang on 2015/10/12. */ public class ProgrammerBrain { private BodyStateMemoto mBodyStateMemoto; public void setBodyStateMemoto(BodyStateMemoto bodyStateMemoto) { this.mBodyStateMemoto = bodyStateMemoto; } public BodyStateMem...
392
0.714286
0.693878
19
19.631578
21.389153
67
false
false
0
0
0
0
0
0
0.210526
false
false
9
ea305b78292a7f69d035a512a4490f2212a06db3
32,469,952,804,440
1ff13f9be9abe8d2be441946deda74e8db52c71c
/public/java/tests/uk/ac/ox/well/cortexjdk/utils/visualizer/GraphVisualizerTest.java
45d89c3e18416063974bf64d551a971d1402e6fc
[ "Apache-2.0" ]
permissive
mcveanlab/Corticall
https://github.com/mcveanlab/Corticall
ad7edeca260508e77705aae8689f52dc3ed681ff
eee7e4e6ea60e5309e33502c1337bfb6685f54f8
refs/heads/master
2021-06-04T21:22:44.859000
2020-05-11T17:13:16
2020-05-11T17:13:16
20,409,136
3
1
NOASSERTION
false
2020-05-11T17:13:17
2014-06-02T15:34:29
2020-04-27T05:35:51
2020-05-11T17:13:16
134,647
5
2
0
Java
false
false
package uk.ac.ox.well.cortexjdk.utils.visualizer; import org.jgrapht.DirectedGraph; import org.jgrapht.graph.DefaultDirectedGraph; import org.testng.annotations.Test; import uk.ac.ox.well.cortexjdk.utils.kmer.CortexByteKmer; import uk.ac.ox.well.cortexjdk.utils.sequence.SequenceUtils; import uk.ac.ox.well.cortexjdk.ut...
UTF-8
Java
1,710
java
GraphVisualizerTest.java
Java
[]
null
[]
package uk.ac.ox.well.cortexjdk.utils.visualizer; import org.jgrapht.DirectedGraph; import org.jgrapht.graph.DefaultDirectedGraph; import org.testng.annotations.Test; import uk.ac.ox.well.cortexjdk.utils.kmer.CortexByteKmer; import uk.ac.ox.well.cortexjdk.utils.sequence.SequenceUtils; import uk.ac.ox.well.cortexjdk.ut...
1,710
0.625146
0.609357
51
32.529411
27.093414
99
false
false
0
0
0
0
0
0
0.803922
false
false
9
90881802fff5f1ae4715bf534f4cbb48372fd3f2
37,099,927,512,890
bfad864ea4e6db98a78d0f1c9f0dacb81d0fd456
/rrmeiju-backend/src/main/java/com/caizhukui/rrmeiju/service/FansubService.java
adad51177c70a507d9335cfdc9d0e91a1af1b871
[]
no_license
egoecust/rrmeiju-test
https://github.com/egoecust/rrmeiju-test
70dca04a6b8609371b21ac5f609513974bc6a4f3
5c966b1c093dc5eb82bf7e3e9af3fe9fbc03e6bd
refs/heads/master
2020-04-04T17:58:51.213000
2018-11-05T03:19:28
2018-11-05T03:19:28
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.caizhukui.rrmeiju.service; import java.util.List; import com.caizhukui.rrmeiju.model.Fansub; import com.caizhukui.rrmeiju.service.base.BaseService; public interface FansubService extends BaseService<Fansub> { /** * 查询某一用户加入的所有字幕组 * * @param userUuid 用户UUID * @return List<Fansub> 字幕组列表 * @au...
UTF-8
Java
679
java
FansubService.java
Java
[ { "context": " 用户UUID\n\t * @return List<Fansub> 字幕组列表\n\t * @author caizhukui\n\t * @date 2017年1月26日\n\t */\n\tList<Fansub> getByUser", "end": 334, "score": 0.9997020959854126, "start": 325, "tag": "USERNAME", "value": "caizhukui" }, { "context": "easonUuid 季ID\n\t * @return List<Fa...
null
[]
package com.caizhukui.rrmeiju.service; import java.util.List; import com.caizhukui.rrmeiju.model.Fansub; import com.caizhukui.rrmeiju.service.base.BaseService; public interface FansubService extends BaseService<Fansub> { /** * 查询某一用户加入的所有字幕组 * * @param userUuid 用户UUID * @return List<Fansub> 字幕组列表 * @au...
679
0.71912
0.697124
30
18.700001
17.68832
60
false
false
0
0
0
0
0
0
0.866667
false
false
9
08c6c1442046df451aec0900ec54af110d99dc2b
11,587,821,816,614
9206a747e1656e980a21ca64f7334a634fb82b26
/factory/ball_factory/BallStore.java
d8949633ed16e419c9b1139167a8ca91f885a8fb
[]
no_license
epickard/design_patterns_study
https://github.com/epickard/design_patterns_study
76fd5d78ae058873642bd4aaca0a0d63b6ebf233
552e0270097932f23f22ec0ece8e5e92eac1c247
refs/heads/master
2020-06-05T13:13:26.950000
2015-08-06T22:36:47
2015-08-06T22:36:47
37,950,359
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package design_patterns_study.factory.ball_factory; public abstract class BallStore { //This is one of the Creator classes //Instance variable(s) String ballName; //Abstract method(s) public abstract Ball createBall(String type); //Concrete method(s) public Ball makeBall(String type) { Ball ball; ba...
UTF-8
Java
431
java
BallStore.java
Java
[]
null
[]
package design_patterns_study.factory.ball_factory; public abstract class BallStore { //This is one of the Creator classes //Instance variable(s) String ballName; //Abstract method(s) public abstract Ball createBall(String type); //Concrete method(s) public Ball makeBall(String type) { Ball ball; ba...
431
0.705336
0.705336
23
17.73913
15.263533
51
false
false
0
0
0
0
0
0
1.521739
false
false
9
4d7bd81e41e95d6fe1d21e186049d528e6883ce6
14,946,486,261,612
8a1407de3d43c5cacd06422a50a4815eced31ba8
/Texai/Network/src/test/java/org/texai/network/netty/handler/MockBitcoinProtocolMessageHandler.java
a5c20712116face148e03ed0a06e33f8064e9621
[]
no_license
whitten/texai
https://github.com/whitten/texai
cc094822307821f9bbf031979a441acf7dffed67
e26df6418fd6e2e3c2ec0a9eee3242f1ad8106b0
refs/heads/master
2020-05-29T08:49:06.949000
2015-12-17T07:02:04
2015-12-17T07:02:04
54,853,779
2
0
null
true
2016-03-28T00:04:00
2016-03-28T00:04:00
2016-03-28T00:03:31
2015-12-17T07:01:40
316,974
0
0
0
null
null
null
/* * MockBitcoinProtocolMessageHandler.java * * Description: A channel handler that transports Bitcoin protocol messages. * * Copyright (C) Feb 25, 2015 by Stephen Reed. * */ package org.texai.network.netty.handler; import com.google.bitcoin.core.Message; import com.google.bitcoin.core.NetworkParameters; import...
UTF-8
Java
4,130
java
MockBitcoinProtocolMessageHandler.java
Java
[ { "context": "ocol messages.\n *\n * Copyright (C) Feb 25, 2015 by Stephen Reed.\n *\n */\npackage org.texai.network.netty.handler;\n", "end": 173, "score": 0.9998827576637268, "start": 161, "tag": "NAME", "value": "Stephen Reed" }, { "context": "ransports Bitcoin protocol messages.\...
null
[]
/* * MockBitcoinProtocolMessageHandler.java * * Description: A channel handler that transports Bitcoin protocol messages. * * Copyright (C) Feb 25, 2015 by <NAME>. * */ package org.texai.network.netty.handler; import com.google.bitcoin.core.Message; import com.google.bitcoin.core.NetworkParameters; import net.j...
4,124
0.728814
0.726876
120
33.416668
28.846601
134
false
false
0
0
0
0
0
0
0.341667
false
false
9
30214d5ed9faa114cb7888772913afc08e04c5e0
34,711,925,711,502
634c7372d01615b866aaee65e1511457a4eff26f
/src/main/java/com/springbootlecturewebapp/springbootlecturewebapp/service/implementations/UserServiceImpl.java
9b4ae1fffe9545799b03a79cb6e9aea3c2bfa4d5
[ "Apache-2.0" ]
permissive
ziecik/spring-boot-lecture
https://github.com/ziecik/spring-boot-lecture
4ae1050d07982d562e79eed7e54a9b2ee70e0f31
3add756efe3ac30c7e2a68312bf3fb0ba514a2e7
refs/heads/master
2023-01-13T00:05:54.700000
2020-11-17T19:56:20
2020-11-17T19:56:20
293,845,560
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.springbootlecturewebapp.springbootlecturewebapp.service.implementations; import com.springbootlecturewebapp.springbootlecturewebapp.model.dao.User; import com.springbootlecturewebapp.springbootlecturewebapp.repositories.UserRepository; import com.springbootlecturewebapp.springbootlecturewebapp.service.User...
UTF-8
Java
1,144
java
UserServiceImpl.java
Java
[]
null
[]
package com.springbootlecturewebapp.springbootlecturewebapp.service.implementations; import com.springbootlecturewebapp.springbootlecturewebapp.model.dao.User; import com.springbootlecturewebapp.springbootlecturewebapp.repositories.UserRepository; import com.springbootlecturewebapp.springbootlecturewebapp.service.User...
1,144
0.752622
0.752622
39
28.333334
26.364635
87
false
false
0
0
0
0
0
0
0.410256
false
false
9
0185250d9e8c7302ea749c5cd82648c1aa1a489f
34,926,674,082,455
d75e596743fe759449df3c4b1a29fc21116a545b
/src/test/java/com/mvc/json/mock/api/test/core/executors/GetTestExecutorTest.java
dda1b518023a764223e0fa4cae9db4e0f6c03b67
[ "MIT" ]
permissive
carloshn90/mvcJsonMockAPI
https://github.com/carloshn90/mvcJsonMockAPI
235dc8772eb2d962d9335d6bb81524408e839a0d
e7df5751657bbb15ed057be07b6ba2c03c975fb5
refs/heads/main
2023-03-10T19:03:34.563000
2021-02-28T12:05:53
2021-02-28T12:05:53
342,220,660
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.mvc.json.mock.api.test.core.executors; import com.mvc.json.mock.api.test.controller.GetController; import com.mvc.json.mock.api.test.payload.EndPointPayload; import com.mvc.json.mock.api.test.payload.ErrorMessage; import com.mvc.json.mock.api.test.payload.RequestPayload; import com.mvc.json.mock.api.test.p...
UTF-8
Java
5,078
java
GetTestExecutorTest.java
Java
[]
null
[]
package com.mvc.json.mock.api.test.core.executors; import com.mvc.json.mock.api.test.controller.GetController; import com.mvc.json.mock.api.test.payload.EndPointPayload; import com.mvc.json.mock.api.test.payload.ErrorMessage; import com.mvc.json.mock.api.test.payload.RequestPayload; import com.mvc.json.mock.api.test.p...
5,078
0.752659
0.746554
125
39.624001
35.681629
121
false
false
0
0
0
0
0
0
0.664
false
false
9
bfd4838a574971ff0fc3cc019a4735df9eb3baf7
25,761,213,888,417
2c103f10d9601ad41da8dd48535bbfbbba989a80
/backend/src/main/java/org/sdrc/dga/repository/springdatajpa/SpringDataDDMOptionTypeRepository.java
4436be4f94ced570604b57fae691775a8997df07
[]
no_license
SDRC-India/dga
https://github.com/SDRC-India/dga
85f74f4a0b1e9135c17b20c384e199392570bcfb
bae223b94117f8f8248f39a866dd4853f246d392
refs/heads/master
2023-01-14T02:10:32.582000
2019-10-10T07:54:48
2019-10-10T07:54:48
96,404,569
1
1
null
false
2023-01-05T23:18:18
2017-07-06T08:01:41
2019-10-10T07:55:36
2023-01-05T23:18:14
29,688
1
0
34
Java
false
false
package org.sdrc.dga.repository.springdatajpa; import org.sdrc.dga.domain.DDMOptionType; import org.sdrc.dga.repository.DDMOptionRepository; import org.sdrc.dga.repository.DDMOptionTypeRepository; import org.springframework.data.repository.RepositoryDefinition; @RepositoryDefinition(domainClass=DDMOptionType.class,id...
UTF-8
Java
428
java
SpringDataDDMOptionTypeRepository.java
Java
[]
null
[]
package org.sdrc.dga.repository.springdatajpa; import org.sdrc.dga.domain.DDMOptionType; import org.sdrc.dga.repository.DDMOptionRepository; import org.sdrc.dga.repository.DDMOptionTypeRepository; import org.springframework.data.repository.RepositoryDefinition; @RepositoryDefinition(domainClass=DDMOptionType.class,id...
428
0.871495
0.871495
11
37.909092
30.71409
83
false
false
0
0
0
0
0
0
0.545455
false
false
9
02918458ed44801e365d0e2fc1b445a3271450cb
21,466,246,608,774
4c94dfb1d8cf5e34a1d243e8755380e42ad965de
/DaiPPQ/quanlysinhvien/src/controller/EditSinhVienServlet.java
f8d291786b4bd88b286d433116885e8df1c0944c
[]
no_license
FASTTRACKSE/FFSE1704.JavaWeb
https://github.com/FASTTRACKSE/FFSE1704.JavaWeb
9595d24353dd49ca80ab7136d929bd7ef23e2999
bc4c6eb957c117c056249bfce1166aa707579aa0
refs/heads/master
2022-12-22T05:12:30.633000
2019-08-05T07:19:53
2019-08-05T07:19:53
152,555,801
1
0
null
false
2022-12-16T04:23:47
2018-10-11T08:16:06
2019-08-05T07:20:24
2022-12-16T04:23:43
17,650
1
0
23
Java
false
false
package controller; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import model.dao.SinhVienDAO; import model.entity.SinhVien; /** * Servlet implementation class E...
UTF-8
Java
1,862
java
EditSinhVienServlet.java
Java
[]
null
[]
package controller; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import model.dao.SinhVienDAO; import model.entity.SinhVien; /** * Servlet implementation class E...
1,862
0.756176
0.754565
56
32.25
29.483198
119
false
false
0
0
0
0
0
0
1.535714
false
false
9
b18356e7ab5268a45df54cade717a8be70b6c71b
26,104,811,295,447
ef0c1514e9af6de3ba4a20e0d01de7cc3a915188
/sdk/monitor/azure-monitor-query/src/samples/java/com/azure/monitor/query/CustomModel.java
5593e78fe1d07a8fc349929d18e55d47992f1e67
[ "LicenseRef-scancode-generic-cla", "MIT", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference", "LGPL-2.1-or-later", "CC0-1.0", "BSD-3-Clause", "UPL-1.0", "Apache-2.0", "LicenseRef-scancode-public-domain", "BSD-2-Clause" ]
permissive
Azure/azure-sdk-for-java
https://github.com/Azure/azure-sdk-for-java
0902d584b42d3654b4ce65b1dad8409f18ddf4bc
789bdc6c065dc44ce9b8b630e2f2e5896b2a7616
refs/heads/main
2023-09-04T09:36:35.821000
2023-09-02T01:53:56
2023-09-02T01:53:56
2,928,948
2,027
2,084
MIT
false
2023-09-14T21:37:15
2011-12-06T23:33:56
2023-09-14T17:19:10
2023-09-14T21:37:14
3,043,660
1,994
1,854
1,435
Java
false
false
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. package com.azure.monitor.query; import java.time.OffsetDateTime; /** * A custom model to read the logs query result. */ public final class CustomModel { private OffsetDateTime timeGenerated; private String tena...
UTF-8
Java
2,153
java
CustomModel.java
Java
[]
null
[]
// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. package com.azure.monitor.query; import java.time.OffsetDateTime; /** * A custom model to read the logs query result. */ public final class CustomModel { private OffsetDateTime timeGenerated; private String tena...
2,153
0.639108
0.639108
86
24.034883
22.11095
81
false
false
0
0
0
0
0
0
0.22093
false
false
9
e06e13af12e37810f5d7af1892456513f174aa26
24,670,292,180,182
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/20/20_06265555add67b275bb0ca4aac314379c9a68a3d/Application/20_06265555add67b275bb0ca4aac314379c9a68a3d_Application_s.java
f5c36931353b1211f1c5aaa753c20be748ae6525
[]
no_license
zhongxingyu/Seer
https://github.com/zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516000
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
false
2023-06-22T07:55:57
2020-04-28T11:07:49
2023-06-21T00:53:27
2023-06-22T07:55:57
2,849,868
2
2
0
null
false
false
package controllers; import java.io.IOException; import java.util.List; import org.codehaus.jackson.JsonGenerationException; import org.codehaus.jackson.JsonNode; import org.codehaus.jackson.map.JsonMappingException; import org.codehaus.jackson.map.ObjectMapper; import org.codehaus.jackson.node.ObjectNode; import...
UTF-8
Java
7,857
java
20_06265555add67b275bb0ca4aac314379c9a68a3d_Application_s.java
Java
[]
null
[]
package controllers; import java.io.IOException; import java.util.List; import org.codehaus.jackson.JsonGenerationException; import org.codehaus.jackson.JsonNode; import org.codehaus.jackson.map.JsonMappingException; import org.codehaus.jackson.map.ObjectMapper; import org.codehaus.jackson.node.ObjectNode; import...
7,857
0.622069
0.621814
191
40.083771
29.532187
130
false
false
0
0
0
0
0
0
0.675393
false
false
9
077555d8a10214751cf762e5f0babd304743cb14
30,846,455,159,730
a2e466eaf9383fe3f24455ab168454539204effe
/MineSweeper.java
0060b9ae14382a1d7fb3c0780c17a027a106a709
[]
no_license
CNDBY/green
https://github.com/CNDBY/green
b39f13d07fabe95f4f8858d637bb14a4fb1e5a67
6f10371dd8489b9e54d41edeff6abd39899dc4b4
refs/heads/master
2020-04-13T01:17:18.907000
2018-12-23T07:19:49
2018-12-23T07:19:49
162,859,544
1
0
null
false
2018-12-23T03:57:08
2018-12-23T03:34:10
2018-12-23T03:41:58
2018-12-23T03:57:08
0
0
0
0
null
false
null
package bukeyong; import java.awt.Color; import java.awt.Dimension; import java.awt.Font; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import java.awt.Point; import java.awt.Toolkit; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.e...
UTF-8
Java
18,028
java
MineSweeper.java
Java
[]
null
[]
package bukeyong; import java.awt.Color; import java.awt.Dimension; import java.awt.Font; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import java.awt.Point; import java.awt.Toolkit; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.e...
18,028
0.687653
0.674617
588
29.661564
20.482265
117
false
false
0
0
0
0
0
0
3.362245
false
false
9
13748c4d62faa718a8e8bb525ed2535c67e23b07
10,694,468,614,369
b78646cbf7a7f58918d4486ec805e2b04f6cc602
/app/src/main/java/com/eex/market/frgament/donation/HistoricalEntrustmentFrament.java
6895e48ef1be93c81183c2113887dba8dd9f94c8
[]
no_license
qingyuyefeng/eex
https://github.com/qingyuyefeng/eex
3944df80bd7b22e3891fc0d7669ed0a473df55d9
3b1df7705b6e35d1ee62d4801d38fdc83d3e970d
refs/heads/master
2020-12-15T07:52:33.399000
2020-01-20T09:23:36
2020-01-20T09:23:36
235,034,114
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.eex.market.frgament.donation; import android.annotation.SuppressLint; import android.graphics.drawable.ColorDrawable; import android.os.Bundle; import android.support.v4.widget.SwipeRefreshLayout; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import an...
UTF-8
Java
9,865
java
HistoricalEntrustmentFrament.java
Java
[ { "context": "entFrament\n * @Description: java类作用描述\n * @Author: 胡成军\n * @CreateDate: 2019/6/19 16:56\n * @UpdateUser: 更", "end": 1833, "score": 0.9940528273582458, "start": 1830, "tag": "NAME", "value": "胡成军" } ]
null
[]
package com.eex.market.frgament.donation; import android.annotation.SuppressLint; import android.graphics.drawable.ColorDrawable; import android.os.Bundle; import android.support.v4.widget.SwipeRefreshLayout; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import an...
9,865
0.561505
0.553062
347
25.965418
21.290064
112
false
false
0
0
0
0
0
0
0.56196
false
false
9
4e924cdb00722dc86517d6819fd4a62848189f6e
1,520,418,425,303
c7f72034526c537a2be2fc10753250caeec9e5d1
/src/test/java/com/project/tests/day1/tests/selenium_intro/Vytrack.java
74627e37e45189cc2bf9d68d5f63b25ecbd23616
[]
no_license
AslanElviraElza/seleniumProjectBatch20
https://github.com/AslanElviraElza/seleniumProjectBatch20
80aaad0fa7ca3d6195c08ec6bd25abce5efe763a
55b033dadacc4fbaadc0a2b897f660cdfe219f68
refs/heads/master
2023-01-05T21:30:13.621000
2020-11-02T16:36:16
2020-11-02T16:36:16
309,431,384
2
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.project.tests.day1.tests.selenium_intro; import com.project.utilities.WebDriverFactory; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; import java.util.concurrent.TimeUnit; public class Vytrack { Web...
UTF-8
Java
1,194
java
Vytrack.java
Java
[ { "context": "er.findElement(By.id(\"prependedInput\")).sendKeys(\"salesmanager267\");\n Thread.sleep(2000);\n driver.fin", "end": 812, "score": 0.8861353993415833, "start": 797, "tag": "USERNAME", "value": "salesmanager267" }, { "context": "r.findElement(By.id(\"prepen...
null
[]
package com.project.tests.day1.tests.selenium_intro; import com.project.utilities.WebDriverFactory; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; import java.util.concurrent.TimeUnit; public class Vytrack { Web...
1,194
0.701005
0.680905
37
31.270269
25.034731
80
false
false
0
0
0
0
0
0
0.567568
false
false
9
b1b8d4241fd6d921ee9c8abd7c107dc2e64370ef
7,954,279,460,447
203a4314a80f7b710f36b75fc83aec3a0b2cc98a
/week02/Battleship/src/Main.java
427884905500a5647413d15b4fffb64b26adccee
[]
no_license
animacpac/cs246
https://github.com/animacpac/cs246
c5b4d5677e1467f6f69a63840cfeb6055ad7d798
a32b995f3f0b0740e1a60ce6716dad6dd5915cd2
refs/heads/master
2021-01-05T01:34:33.625000
2019-10-25T20:35:57
2019-10-25T20:35:57
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import java.awt.*; public class Main { public void main() { Integer x = 200; Integer y = 200; while (x == y) { System.out.println("looping"); } System.out.println("done."); } }
UTF-8
Java
256
java
Main.java
Java
[]
null
[]
import java.awt.*; public class Main { public void main() { Integer x = 200; Integer y = 200; while (x == y) { System.out.println("looping"); } System.out.println("done."); } }
256
0.445313
0.421875
15
15.066667
13.542361
42
false
false
0
0
0
0
0
0
0.333333
false
false
9
fe4a55ea43a0e83f0f6323d381be23f01ff31633
27,221,502,773,063
4d3a915fd9d24d52c1ea41d268dc7afc197a1640
/member-dubbo-v3/was-member-api1/src/main/java/com/wangku/v3/was/member/dubbo/model/MemberDetail.java
06b0c9c38f8aecadc20300042b166a46d669204a
[]
no_license
newSue/wkdubbo
https://github.com/newSue/wkdubbo
76e112494e5987a5bd929f543f36a79556bdbfb3
caecb23a52859a9cdd7f67856a9ae9dd52ebfd0e
refs/heads/master
2017-11-26T09:23:13.322000
2017-06-09T10:00:25
2017-06-09T10:00:25
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.wangku.v3.was.member.dubbo.model; import java.io.Serializable; import java.util.Date; /** * @Title: MemberDetail.java * @Description:会员详细信息表 */ public class MemberDetail implements Serializable{ private static final long serialVersionUID = 1L; public static final String MEMBER_ID="memberId";//会员...
UTF-8
Java
12,892
java
MemberDetail.java
Java
[]
null
[]
package com.wangku.v3.was.member.dubbo.model; import java.io.Serializable; import java.util.Date; /** * @Title: MemberDetail.java * @Description:会员详细信息表 */ public class MemberDetail implements Serializable{ private static final long serialVersionUID = 1L; public static final String MEMBER_ID="memberId";//会员...
12,892
0.729614
0.72904
672
17.141369
22.402885
89
false
false
0
0
0
0
0
0
0.973214
false
false
9
d584c9963ff523c69632c7ccb7de9c94500c912a
28,286,654,644,005
7609150a7d9db9682d01e1ca199831a5d0ff8ce8
/Crux/src/Lecture33/queuesandstacks/duplicateparenthesis.java
7a35780c31cbea9c400760b8ff59be325fd29bd6
[]
no_license
sanjeetboora/myWorkspace-JAVA-
https://github.com/sanjeetboora/myWorkspace-JAVA-
62aad19ef4aaa22c2c5f7d2f8214ca8834a5a0a1
cfd5956b0512583926b1628506b25745493a4a31
refs/heads/master
2020-03-23T03:56:02.890000
2018-10-03T00:35:13
2018-10-03T00:35:13
141,056,742
1
1
null
false
2018-10-04T02:29:40
2018-07-15T20:34:32
2018-10-03T06:05:56
2018-10-03T06:05:51
16,198
0
1
1
Java
false
null
package Lecture33.queuesandstacks; public class duplicateparenthesis { public static void main(String[] args) throws Exception { System.out.println(duplicateparanthesis("((a + b) + ((c+d)))")); } public static boolean duplicateparanthesis(String s) throws Exception { dynamic_stack st = new dynamic_stack(); ...
UTF-8
Java
585
java
duplicateparenthesis.java
Java
[]
null
[]
package Lecture33.queuesandstacks; public class duplicateparenthesis { public static void main(String[] args) throws Exception { System.out.println(duplicateparanthesis("((a + b) + ((c+d)))")); } public static boolean duplicateparanthesis(String s) throws Exception { dynamic_stack st = new dynamic_stack(); ...
585
0.57094
0.565812
35
15.714286
19.930696
72
false
false
0
0
0
0
0
0
2
false
false
9
ba608eb9bd37c552bfa7cbb4cdf5c39d23993ffa
6,614,249,645,137
7ae3b6391bfb4029479668d5843b97c9245e38b0
/app/src/main/java/fr/ptut/treflerie/model/FragmentNouvelle.java
4286a1b172fe0d06309296ab9c9e76d7d9c210d6
[]
no_license
jubidatiloki/Treflerie
https://github.com/jubidatiloki/Treflerie
feb1f6434963d508d760518474d7480ff00568f5
dabcfbbab7c38fb156520862a96f6040376a916c
refs/heads/master
2021-05-10T12:00:07.370000
2018-01-25T09:52:45
2018-01-25T09:52:45
118,427,138
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package fr.ptut.treflerie.model; import android.app.DialogFragment; import android.app.Fragment; import android.os.Bundle; import android.support.annotation.Nullable; import android.telephony.SmsManager; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget....
UTF-8
Java
4,371
java
FragmentNouvelle.java
Java
[ { "context": "erie.database.ParametreManager;\n\n/**\n * Created by benja on 07/12/2017.\n */\n\npublic class FragmentNouvelle", "end": 820, "score": 0.9984563589096069, "start": 815, "tag": "USERNAME", "value": "benja" } ]
null
[]
package fr.ptut.treflerie.model; import android.app.DialogFragment; import android.app.Fragment; import android.os.Bundle; import android.support.annotation.Nullable; import android.telephony.SmsManager; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget....
4,371
0.667964
0.663613
97
44.020618
42.883198
236
false
false
0
0
0
0
0
0
0.783505
false
false
9
5ddf19c4665eb93f8a961c47693a7405b111e2ad
2,877,628,108,338
f6cb029aa564b98bf7f8180508edd96d133be14c
/practice-core-java/src/main/java/com/bk/corejava/jdk8/defaultinterface/FormulaForUSA.java
37f5f47b01a6b9482a4b7e4cdad9ec77e9d1d318
[]
no_license
breakyang/practice-project
https://github.com/breakyang/practice-project
0af5aec20ee853988ef1275c295f82ac7d4179e4
1ed5072857d77e4fb3c805e8f16752b3748b570a
refs/heads/master
2020-01-24T14:28:05.457000
2019-05-27T12:06:14
2019-05-27T12:06:14
23,734,280
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.bk.corejava.jdk8.defaultinterface; /** * Created by yang on 2016/8/10. */ public class FormulaForUSA implements Formula { @Override public Double calculate(double param1, double param2) { return param1 + param2; } }
UTF-8
Java
252
java
FormulaForUSA.java
Java
[ { "context": "corejava.jdk8.defaultinterface;\n\n/**\n * Created by yang on 2016/8/10.\n */\npublic class FormulaForUSA impl", "end": 70, "score": 0.9286200404167175, "start": 66, "tag": "USERNAME", "value": "yang" } ]
null
[]
package com.bk.corejava.jdk8.defaultinterface; /** * Created by yang on 2016/8/10. */ public class FormulaForUSA implements Formula { @Override public Double calculate(double param1, double param2) { return param1 + param2; } }
252
0.690476
0.642857
12
20
20.824665
59
false
false
0
0
0
0
0
0
0.25
false
false
9
f265a3b936f6b27c007a360e9063578dc53743fd
36,155,034,708,098
3de5eb04c103e302664670d5bf94cfd8835b6717
/src/com/galaxy/meetup/client/android/ui/fragments/HostedEmotiShareChooserFragment.java
a800cb572e721152bf617269b51fcb044b3989c3
[]
no_license
i-Android/meetup-client
https://github.com/i-Android/meetup-client
c72b0c0c4624e135f79b287ee8ba3c352f13e7a5
c588f3a36c9804d7019b98799667d92066ca5f2f
refs/heads/master
2021-01-15T23:40:37.905000
2013-05-06T01:58:23
2013-05-06T01:58:23
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
/** * galaxy inc. * meetup client for android */ package com.galaxy.meetup.client.android.ui.fragments; import android.content.Context; import android.content.Intent; import android.content.res.Resources; import android.database.Cursor; import android.os.Bundle; import android.support.v4.app.FragmentActi...
UTF-8
Java
11,931
java
HostedEmotiShareChooserFragment.java
Java
[ { "context": "ui.view.ImageResourceView;\r\n\r\n/**\r\n * \r\n * @author sihai\r\n *\r\n */\r\npublic class HostedEmotiShareChooserFra", "end": 1484, "score": 0.9993599653244019, "start": 1479, "tag": "USERNAME", "value": "sihai" } ]
null
[]
/** * galaxy inc. * meetup client for android */ package com.galaxy.meetup.client.android.ui.fragments; import android.content.Context; import android.content.Intent; import android.content.res.Resources; import android.database.Cursor; import android.os.Bundle; import android.support.v4.app.FragmentActi...
11,931
0.604308
0.602045
337
33.403561
29.655445
193
false
false
0
0
0
0
0
0
0.658754
false
false
9
6acfc5cfa59ae00f7ea446e0d1ee5bbcf7cc4d0c
34,720,515,639,953
cb5f7c8aeb456738fe0f475a70ca2ed7470c2cbf
/app/src/main/java/com/softstyle/familycash/data/model/Item.java
37e87b585aedf7b8d5ea65a5bf7a2323b8fc5025
[]
no_license
apol1234/FamilyCash
https://github.com/apol1234/FamilyCash
ec5af8a4a20c7965dc5a692355e3398b09a71f62
b46973859d5672fd5c1519c50886c90f279ec0e6
refs/heads/master
2021-01-15T16:47:45.596000
2017-10-23T14:00:20
2017-10-23T14:00:20
99,610,713
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.softstyle.familycash.data.model; import android.os.Parcelable; import android.support.annotation.Nullable; import com.google.auto.value.AutoValue; import com.google.gson.Gson; import com.google.gson.TypeAdapter; import java.util.Date; /** * Created by ap on 28.08.2017. */ @AutoValue public abstract cl...
UTF-8
Java
1,039
java
Item.java
Java
[ { "context": "dapter;\n\nimport java.util.Date;\n\n/**\n * Created by ap on 28.08.2017.\n */\n@AutoValue\npublic abstract cla", "end": 271, "score": 0.9966033697128296, "start": 269, "tag": "USERNAME", "value": "ap" } ]
null
[]
package com.softstyle.familycash.data.model; import android.os.Parcelable; import android.support.annotation.Nullable; import com.google.auto.value.AutoValue; import com.google.gson.Gson; import com.google.gson.TypeAdapter; import java.util.Date; /** * Created by ap on 28.08.2017. */ @AutoValue public abstract cl...
1,039
0.658325
0.650626
32
31.46875
32.495178
105
false
false
0
0
0
0
0
0
0.6875
false
false
9
6b89c3f84faddb2899c6430cf0714d77fc22b093
14,456,859,982,214
afa5d9c005aad3938142f3557102a2d210a9624e
/cosa/src/mi_componente/Mi_componenteBeanInfo.java
411e30bb6ec09d20d237a35a7a6f412b06b28b97
[]
no_license
codeneomatrix/patrones-de-dise-o
https://github.com/codeneomatrix/patrones-de-dise-o
3f4f21a9ad8ecbcb5cb94309dba842dbcdf95093
829b685b043e73f0a047d19dd7e16cdc9ddf4ae5
refs/heads/master
2021-01-18T21:39:50.641000
2017-04-02T21:55:53
2017-04-02T21:55:53
87,018,611
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
/* * 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 mi_componente; import java.beans.*; /** * * @author acer */ public class Mi_componenteBeanInfo extends SimpleBeanInfo { ...
UTF-8
Java
57,898
java
Mi_componenteBeanInfo.java
Java
[ { "context": "mponente;\n\nimport java.beans.*;\n\n/**\n *\n * @author acer\n */\npublic class Mi_componenteBeanInfo extends Si", "end": 253, "score": 0.9982860088348389, "start": 249, "tag": "USERNAME", "value": "acer" } ]
null
[]
/* * 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 mi_componente; import java.beans.*; /** * * @author acer */ public class Mi_componenteBeanInfo extends SimpleBeanInfo { ...
57,898
0.69961
0.668434
723
79.080223
61.48534
322
false
false
0
0
0
0
0
0
1.239281
false
false
9
db2a967b27ffade6b77a3101219d35e791dfd568
19,894,288,569,007
fa5d891e445419fa5e18af5da373d1402eaff1c3
/08_libreria_jsf_a_jsf_spring_jpa_hib/src/daos/DaoVentasImpl.java
c64b5ed379c5a222142c6e37f1e561bf3e355311
[]
no_license
oobregon/curso_arquitecto_spring_fund
https://github.com/oobregon/curso_arquitecto_spring_fund
b3d8c0d55047d74ead69f0eb067a0f0de2dc8fd2
1bc249f9cafe5d502abbf80b73a22ba2083ab209
refs/heads/master
2022-12-23T00:27:18.983000
2019-12-10T13:50:08
2019-12-10T13:50:08
218,114,202
0
0
null
false
2022-12-15T23:55:51
2019-10-28T18:10:00
2019-12-10T13:50:21
2022-12-15T23:55:50
501
0
0
24
Java
false
false
package daos; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import org.springframework.stereotype.Repository; import model.Cliente; import model.Libro; import model.Venta; @Repository (value = "daoVentas") public class DaoVentasImpl implemen...
UTF-8
Java
778
java
DaoVentasImpl.java
Java
[]
null
[]
package daos; import java.util.List; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import org.springframework.stereotype.Repository; import model.Cliente; import model.Libro; import model.Venta; @Repository (value = "daoVentas") public class DaoVentasImpl implemen...
778
0.735219
0.735219
31
23.032259
19.288111
57
false
false
0
0
0
0
0
0
1.258065
false
false
9
e0d44084082fd738925a1c181d5a914e4955d408
37,254,546,332,745
4da5ba1b2de15bdc78e0f7e88c39567ab9fac4c7
/src/main/java/com/z/merchantsettle/modules/poi/domain/WmPoiOpLogSearchParam.java
40b71e14e6171d3c1b6d2c37bd17a5dc09261836
[]
no_license
CustomFN/merchant-settle
https://github.com/CustomFN/merchant-settle
930308436236184983fe97dfb2cd19fcc407880f
95b1957dac6e86a9dacdb15d37de5480b55ec9d0
refs/heads/master
2020-04-26T13:20:56.556000
2019-05-09T15:38:49
2019-05-09T15:38:49
173,576,755
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.z.merchantsettle.modules.poi.domain; import lombok.Data; @Data public class WmPoiOpLogSearchParam { private Integer wmPoiId; private String module; private String content; private String opUser; }
UTF-8
Java
228
java
WmPoiOpLogSearchParam.java
Java
[]
null
[]
package com.z.merchantsettle.modules.poi.domain; import lombok.Data; @Data public class WmPoiOpLogSearchParam { private Integer wmPoiId; private String module; private String content; private String opUser; }
228
0.754386
0.754386
12
18
15.716233
48
false
false
0
0
0
0
0
0
0.5
false
false
9
87e835f34f4c53887ea444999bbdbb9433949551
3,143,916,129,019
b4e9b2777ff7808efcef8652ef2ce9849d574317
/i209/app/src/main/java/com/example/anan/AAChartCore/ChartsDemo/MainContent/CallDelete.java
8557c9622a077e2c2c4e6d629b3a864b7c95e548
[ "Apache-2.0", "MIT" ]
permissive
wangcomplex/i209team
https://github.com/wangcomplex/i209team
d77758ae5fe160cbb7872f979e7eadb2316fb6fc
b81f7f5652f90a45a7f86965448924a8263504d6
refs/heads/master
2022-12-01T10:16:53.023000
2020-08-15T01:24:10
2020-08-15T01:24:10
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.example.anan.AAChartCore.ChartsDemo.MainContent; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.view.Window; import android.wi...
UTF-8
Java
3,606
java
CallDelete.java
Java
[]
null
[]
package com.example.anan.AAChartCore.ChartsDemo.MainContent; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.view.Window; import android.wi...
3,606
0.636952
0.634139
143
23.867132
29.719255
142
false
false
0
0
0
0
0
0
0.622378
false
false
9
9f515086a864ec940622ecbb0e27ed78780b7292
34,119,220,215,809
f48893dace5f3061a7e162cf6df4aabe107af701
/java/src/main/java/com/googlecode/protobuf/socketrpc/RpcServer.java
d87053bec58d16a2af35eeb6bd75cde41a0080a0
[ "MIT" ]
permissive
4ntoine/protobuf-socket-rpc
https://github.com/4ntoine/protobuf-socket-rpc
c33d06888510809a82adde027f566ba6a74d22fb
2e28a5e7bb0994af415c61a784746c151354a7ec
refs/heads/master
2020-12-25T20:42:00.816000
2016-03-11T13:03:28
2016-03-11T13:03:28
35,212,563
2
1
null
true
2015-05-07T09:57:31
2015-05-07T09:57:30
2015-04-22T13:20:14
2015-04-22T13:20:13
341
0
0
0
null
null
null
// Copyright (c) 2010 Shardul Deo // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, d...
UTF-8
Java
9,814
java
RpcServer.java
Java
[ { "context": "// Copyright (c) 2010 Shardul Deo\n//\n// Permission is hereby granted, free of charg", "end": 33, "score": 0.9998653531074524, "start": 22, "tag": "NAME", "value": "Shardul Deo" }, { "context": "vice} constructor argument.\n * </ul>\n *\n * @author Shardul Deo\n */\npu...
null
[]
// Copyright (c) 2010 <NAME> // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distri...
9,804
0.67098
0.670267
294
32.380951
26.139822
80
false
false
0
0
0
0
0
0
0.442177
false
false
9
86aaeb04ed0134443ac05d00af78878de7e4edcd
36,275,293,784,177
4083188cf863abed92bfa61cf0757f5ac4129212
/src/com/jwl/presentation/global/WikiPreviewServlet.java
48fbbd8fb166b075a264fdf053f685a9e18fa80e
[]
no_license
LukasRychtecky/jwl
https://github.com/LukasRychtecky/jwl
9ac00e738f90a0dac6f9cd68ed167e77ce86c939
11f4500ed8163b717f00a58ba0d844aa68b93a9c
refs/heads/master
2020-05-27T19:38:43.498000
2011-05-17T16:32:11
2011-05-17T16:32:11
1,296,183
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.jwl.presentation.global; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.jwl.presentation.markdown.Markup...
UTF-8
Java
1,227
java
WikiPreviewServlet.java
Java
[ { "context": "enables preview in MarkDownEditor\r\n * \r\n * @author Petr Janouch\r\n * @review Jiri Ostatnicky\r\n */\r\npublic class Wi", "end": 421, "score": 0.9998711347579956, "start": 409, "tag": "NAME", "value": "Petr Janouch" }, { "context": "wnEditor\r\n * \r\n * @author Pet...
null
[]
package com.jwl.presentation.global; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.jwl.presentation.markdown.Markup...
1,212
0.756316
0.740831
46
24.673914
24.196707
80
false
false
0
0
0
0
0
0
1.173913
false
false
9
d086c9429aea69b7da8a9a977498332b1bd21fac
9,912,784,584,427
68884ae993680a34ef6e63af3070e85d508d6f48
/NPI/src/com/ge/oilandgas/npi/dao/sus/PLDao.java
3d419a8ebebddd09994dc8f1e0bf94210f7a6573
[]
no_license
Jason0729/Jason_REPO001
https://github.com/Jason0729/Jason_REPO001
8e5cb36927283f38c8995cc80cf8d8be0167356f
27892b8b39aaa2e3264380cb2d5b123d8960b143
refs/heads/master
2017-10-10T10:29:58.693000
2017-03-23T04:42:17
2017-03-23T04:42:17
85,289,912
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.ge.oilandgas.npi.dao.sus; import java.util.List; import com.ge.oilandgas.npi.entity.sus.PL; import com.ge.oilandgas.npi.vo.sus.PLVO; public interface PLDao { /** * Add PL information. * @param pl */ void addPL(PL pl); /** * Delete PL information. * @param pl */ void...
UTF-8
Java
1,036
java
PLDao.java
Java
[]
null
[]
package com.ge.oilandgas.npi.dao.sus; import java.util.List; import com.ge.oilandgas.npi.entity.sus.PL; import com.ge.oilandgas.npi.vo.sus.PLVO; public interface PLDao { /** * Add PL information. * @param pl */ void addPL(PL pl); /** * Delete PL information. * @param pl */ void...
1,036
0.567568
0.567568
67
13.462687
12.904157
45
false
false
0
0
0
0
0
0
1.044776
false
false
9
9a23bda6a396632a63109ea04c29e9b602b7cd7e
23,373,212,093,887
adb1feeac52e7893ea1fdd3af4acd52a5efa9fe8
/GARE/src/main/java/net/hft/algodat/utilities/Utilities.java
512a091334a78bac4784b794cd585799d62bc801
[]
no_license
shelbyi/geneticAlgorithm
https://github.com/shelbyi/geneticAlgorithm
2e1a7b0739e1633e8de2574feea68070e43a4086
dade6adc1bc965f5f29d3435228a68f9d0c22c48
refs/heads/master
2021-01-10T21:39:11.219000
2015-06-11T00:05:49
2015-06-11T00:05:49
35,669,872
0
3
null
false
2015-06-11T00:05:49
2015-05-15T11:11:01
2015-06-05T08:07:38
2015-06-11T00:05:49
261
0
4
1
Java
null
null
package net.hft.algodat.utilities; import java.util.List; import net.hft.algodat.framework.geneticalgorithm.entities.Individual; public abstract class Utilities { public static int getRandomInBetween(List<Individual> population) { int min = 0; return getRandomIntegerInBetween(min, population.s...
UTF-8
Java
482
java
Utilities.java
Java
[]
null
[]
package net.hft.algodat.utilities; import java.util.List; import net.hft.algodat.framework.geneticalgorithm.entities.Individual; public abstract class Utilities { public static int getRandomInBetween(List<Individual> population) { int min = 0; return getRandomIntegerInBetween(min, population.s...
482
0.688797
0.682573
20
23.1
28.110319
71
false
false
0
0
0
0
0
0
0.45
false
false
9
2a65f4fd05ab9da0e8007dcc1b425e40e1c7ebf9
4,097,398,853,071
7eb81e51614c8af44ea13e23bb6f5b060ecb498f
/src/main/java/com/OptimalStructures/example/OptimalStructures/SampleClasses/InnerClasses.java
4b5930111024824e6578c897d5e3ce8d5b46c497
[]
no_license
Shantanu1395/Java
https://github.com/Shantanu1395/Java
83938a41bc9bab1da4502cf5c9bafc75c2688799
358e376f831cb3808cd5896f4178adc0d0ae4384
refs/heads/master
2020-04-20T19:20:35.145000
2019-02-18T05:53:11
2019-02-18T05:53:11
169,046,963
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.OptimalStructures.example.OptimalStructures.SampleClasses; /** * 4 types pf inner classes are there - * 1.Static(Nested Classes) * 2.Non Static(Inner class) * 3.Anonymous class * 4.Method Local class * */ /** * 1. Static(Nested Class) * TODO - Check where it is used * Used in builder patte...
UTF-8
Java
1,908
java
InnerClasses.java
Java
[]
null
[]
package com.OptimalStructures.example.OptimalStructures.SampleClasses; /** * 4 types pf inner classes are there - * 1.Static(Nested Classes) * 2.Non Static(Inner class) * 3.Anonymous class * 4.Method Local class * */ /** * 1. Static(Nested Class) * TODO - Check where it is used * Used in builder patte...
1,908
0.568134
0.563417
100
18.09
18.184111
79
false
false
0
0
0
0
0
0
0.16
false
false
9
634840d2f2cfc14a6a5cc3791f67252e4f3900f0
25,460,566,184,659
30c1e2094b8583f7407210c6998c6f2df87c84f5
/src/main/java/nl/tudelft/bejeweled/jewel/BasicJewel.java
1d0e210a7465d15f095d23a0d4a0ada8072cc2f1
[]
no_license
lange88/SEM-25
https://github.com/lange88/SEM-25
70dbf5289c8ca724bec08cd64491797478191ec1
8fdb392157e9ea88e7f56d1b8685e6bb957636bc
refs/heads/master
2020-12-31T01:35:19.733000
2015-10-30T20:27:17
2015-10-30T20:27:17
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package nl.tudelft.bejeweled.jewel; import java.util.ArrayList; import java.util.List; import javafx.scene.Group; import javafx.scene.Node; import nl.tudelft.bejeweled.sprite.JewelSprite; /** * Created by Jeroen on 5-9-2015. * Jewel class that holds all sprite information. */ public class BasicJewel implements J...
UTF-8
Java
4,200
java
BasicJewel.java
Java
[ { "context": "t.bejeweled.sprite.JewelSprite;\n\n/**\n * Created by Jeroen on 5-9-2015.\n * Jewel class that holds all sprite", "end": 216, "score": 0.999671459197998, "start": 210, "tag": "NAME", "value": "Jeroen" } ]
null
[]
package nl.tudelft.bejeweled.jewel; import java.util.ArrayList; import java.util.List; import javafx.scene.Group; import javafx.scene.Node; import nl.tudelft.bejeweled.sprite.JewelSprite; /** * Created by Jeroen on 5-9-2015. * Jewel class that holds all sprite information. */ public class BasicJewel implements J...
4,200
0.630238
0.62881
172
23.41279
23.009312
95
false
false
0
0
0
0
0
0
0.627907
false
false
9
a6f446d1fb6c7d3485ee7da07c758f04d4f17658
4,148,938,472,218
be968436e8c7673c0faee21e4876c3074e61002e
/src/wacc/exceptions/InvalidReturnException.java
0777bc51d02371fd9a33572459bbba5a7b1769f9
[]
no_license
jk1015/Y2_Group_Project_WACC
https://github.com/jk1015/Y2_Group_Project_WACC
f3b3224e31b67bfa1bf8eb354ce200c3910d1a05
01ae9f08771d7266308c9fd5f259a6deffbed5a8
refs/heads/master
2022-10-05T21:21:37.177000
2016-12-09T18:26:58
2016-12-09T18:26:58
269,365,455
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package wacc.exceptions; import org.antlr.v4.runtime.ParserRuleContext; public class InvalidReturnException extends WACCSyntaxErrorException { public InvalidReturnException() { super(); } public InvalidReturnException(String msg) { super(msg); } public InvalidReturnException(Par...
UTF-8
Java
478
java
InvalidReturnException.java
Java
[]
null
[]
package wacc.exceptions; import org.antlr.v4.runtime.ParserRuleContext; public class InvalidReturnException extends WACCSyntaxErrorException { public InvalidReturnException() { super(); } public InvalidReturnException(String msg) { super(msg); } public InvalidReturnException(Par...
478
0.6841
0.682008
23
19.782608
22.940294
70
false
false
0
0
0
0
0
0
0.347826
false
false
9
cbdaa16513b2e322c607d56efda5ca6284bd5278
10,797,547,829,493
947e53429ef6c6286eba40418a1746e2078e6840
/info-demo/src/main/java/com/gaofei/Date/DateUtil.java
cb9367695bfe9d66182b9774853f2a8546620dc2
[]
no_license
DeeFly/testMaven
https://github.com/DeeFly/testMaven
159762abf5d4b914b79b0cf437d944d45f6cdb3a
308eb65fbdc57be774ce9e40fec9b5f68afdd0a8
refs/heads/master
2021-05-01T21:12:44.046000
2020-10-06T03:13:46
2020-10-06T03:13:46
120,973,990
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.gaofei.Date; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.List; import com.google.common.collect.Lists; import org.apache.commons.lang3.StringUtils; import org.joda.time.DateTime; import org.joda.time.Days; import org.jod...
UTF-8
Java
18,263
java
DateUtil.java
Java
[ { "context": "oda.time.format.DateTimeFormatter;\n\n/**\n * @author yichang\n * @date 2020/08/19\n */\npublic class DateUtil {\n ", "end": 545, "score": 0.997903048992157, "start": 538, "tag": "USERNAME", "value": "yichang" } ]
null
[]
package com.gaofei.Date; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.Date; import java.util.List; import com.google.common.collect.Lists; import org.apache.commons.lang3.StringUtils; import org.joda.time.DateTime; import org.joda.time.Days; import org.jod...
18,263
0.605327
0.58956
555
30.998198
24.745953
129
false
false
0
0
0
0
0
0
0.596396
false
false
3
f208e7a24940186e1a5122ec0b95a00027a7b8ff
18,073,222,410,500
670126d34eec3a8dbd6e777d88e6317e81eaca48
/mid1.java
9b346fa0b9e09b2fae331b52dd2fa1509d4a0148
[]
no_license
Melody8988/IntroToJava
https://github.com/Melody8988/IntroToJava
bc7339e0fd9004bed1a264c1a50cc46a6951e6d7
3879ab49a3a822c85467ab794e9bd74f4cf33827
refs/heads/master
2020-03-30T02:23:35.589000
2018-12-09T22:11:43
2018-12-09T22:11:43
147,831,670
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
//Write a Java program to print out a list of the integers between a and b (inclusive) that //are evenly divisible by either 2 or 3. The values of a and b should be command line arguments. You may //assume that a will be less than or equal to b. public class mid1 { public static void main(String[] args) { ...
UTF-8
Java
620
java
mid1.java
Java
[]
null
[]
//Write a Java program to print out a list of the integers between a and b (inclusive) that //are evenly divisible by either 2 or 3. The values of a and b should be command line arguments. You may //assume that a will be less than or equal to b. public class mid1 { public static void main(String[] args) { ...
620
0.524194
0.504839
21
28.571428
29.942122
104
false
false
0
0
0
0
0
0
0.238095
false
false
3
301ed384c5dbc600cf69eee2db6037b0055a5539
4,337,917,016,882
490709ef8ac1c82b23323fe8faae503a3ea754f5
/rq-springboot-with/src/main/java/cn/fzz/controller/RabbitTest.java
eaa60ce29912476e417af4ca935f909abdab7f58
[]
no_license
simpleFzz/rbbitm
https://github.com/simpleFzz/rbbitm
de8115bd607230a1d6ff40fea9666dd1823d8956
d8748b0d5726ab7feaf7d88828bcec0d6d71291b
refs/heads/master
2023-08-07T19:22:33.677000
2019-10-18T02:32:40
2019-10-18T02:32:40
215,946,147
0
0
null
false
2023-07-22T19:06:22
2019-10-18T05:14:57
2019-10-18T05:16:39
2023-07-22T19:06:22
53
0
0
1
Java
false
false
package cn.fzz.controller; import cn.fzz.fanout.FanoutSender; import cn.fzz.hello.DefaultSender; import cn.fzz.qos.QosSender; import cn.fzz.topic.TopicSender; import cn.fzz.delay.DelaySender; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; impo...
UTF-8
Java
1,459
java
RabbitTest.java
Java
[]
null
[]
package cn.fzz.controller; import cn.fzz.fanout.FanoutSender; import cn.fzz.hello.DefaultSender; import cn.fzz.qos.QosSender; import cn.fzz.topic.TopicSender; import cn.fzz.delay.DelaySender; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; impo...
1,459
0.683322
0.683322
62
21.919355
16.850672
62
false
false
0
0
0
0
0
0
0.322581
false
false
3
ae7580d00992284d092cb2041cb477a6e0dbed36
27,625,229,701,269
692e6938883ab83b23b5873fd4653f388da41ad0
/miaoSha/src/main/java/cn/tengshe789/controller/LoginController.java
742f44b4d1695a5537011d8c340b9cfb4a8d81da
[]
no_license
Charm-J/-miaosha
https://github.com/Charm-J/-miaosha
9f42089f9e0f9a0c5303eec731344a7b3af9ecad
c176d7c7dd742f420aa5784fe3a845d38bcdb312
refs/heads/master
2020-03-27T02:23:37.852000
2018-08-16T12:58:34
2018-08-16T12:58:34
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package cn.tengshe789.controller; import cn.tengshe789.redis.RedisService; import cn.tengshe789.result.CodeMsg; import cn.tengshe789.result.Result; import cn.tengshe789.service.MiaoshaUserService; import cn.tengshe789.util.ValidatorUtil; import cn.tengshe789.vo.LoginVo; import org.slf4j.Logger; import org.slf4j.Logger...
UTF-8
Java
2,020
java
LoginController.java
Java
[]
null
[]
package cn.tengshe789.controller; import cn.tengshe789.redis.RedisService; import cn.tengshe789.result.CodeMsg; import cn.tengshe789.result.Result; import cn.tengshe789.service.MiaoshaUserService; import cn.tengshe789.util.ValidatorUtil; import cn.tengshe789.vo.LoginVo; import org.slf4j.Logger; import org.slf4j.Logger...
2,020
0.692615
0.680639
63
30.809525
20.840176
89
false
false
0
0
0
0
0
0
0.52381
false
false
3
eb30d3e91dfded3bca313854924deefb8c9570e3
5,463,198,430,414
e65bed1349e2dd4093a3c2020b1c4b038fce1499
/Optimalisatie/src/main/java/SimulatedAnnealing.java
31ec597a297bc7db94729c5dd9a2b743e181abde
[]
no_license
robbederijck/Masterproef
https://github.com/robbederijck/Masterproef
254ce34f7bcefd5205ee023c678777fb874ad677
66f54083ed494673e6bb78547e5dbb3af39b899b
refs/heads/master
2023-02-20T03:32:48.979000
2021-01-20T14:37:58
2021-01-20T14:37:58
329,586,038
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.util.Date; public class SimulatedAnnealing { public static int[][] Optimize(NMBSFactory nmbsFactory, int[][] initialSolution, long availableTime){ Solution currentSolution = new Solution(nmbsFactory, initialSolutio...
UTF-8
Java
3,750
java
SimulatedAnnealing.java
Java
[]
null
[]
import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.util.Date; public class SimulatedAnnealing { public static int[][] Optimize(NMBSFactory nmbsFactory, int[][] initialSolution, long availableTime){ Solution currentSolution = new Solution(nmbsFactory, initialSolutio...
3,750
0.553867
0.5432
86
42.604652
46.38446
319
false
false
0
0
0
0
0
0
0.767442
false
false
3
08c07986c488e9d8f98a08e144d3f3ae1d6e7db0
11,269,994,218,070
53759f88f7546f02ca573361be2688f6edf08435
/fundamentalsD5/CalcRemainder.java
0a4e19664cb1e9eaa559a7d9d3d2203977516d62
[]
no_license
AcatalepticM/NotepadFundamentals
https://github.com/AcatalepticM/NotepadFundamentals
2b0af43483362154bbe33a7adeb16b774d9c3d84
0f8146d6035d8ab60e0077f82470b9738e7f2081
refs/heads/master
2020-05-27T16:53:46.599000
2019-05-26T19:45:43
2019-05-26T19:45:43
188,711,409
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import java.util.Scanner; public class CalcRemainder { public static void main(String[] args) { Scanner scan = new Scanner(System.in); System.out.println("Please enter 2 numbers: "); int first = scan.nextInt(), second = scan.nextInt(), remainder; if (second > first) { remainder = second % first; Syst...
UTF-8
Java
544
java
CalcRemainder.java
Java
[]
null
[]
import java.util.Scanner; public class CalcRemainder { public static void main(String[] args) { Scanner scan = new Scanner(System.in); System.out.println("Please enter 2 numbers: "); int first = scan.nextInt(), second = scan.nextInt(), remainder; if (second > first) { remainder = second % first; Syst...
544
0.634191
0.632353
17
31.058823
27.878878
89
false
false
0
0
0
0
0
0
2.294118
false
false
3
59cecea694198b9b2d215f64ca4db07280f55c4b
23,124,103,937,671
83d781a9c2ba33fde6df0c6adc3a434afa1a7f82
/OrderFulfillment/OrderFulfillment.Domain/src/main/java/com/servicelive/orderfulfillment/domain/RoutedProvider.java
a2f8965be0fd972e235d44de98fae6d531af1409
[]
no_license
ssriha0/sl-b2b-platform
https://github.com/ssriha0/sl-b2b-platform
71ab8ef1f0ccb0a7ad58b18f28a2bf6d5737fcb6
5b4fcafa9edfe4d35c2dcf1659ac30ef58d607a2
refs/heads/master
2023-01-06T18:32:24.623000
2020-11-05T12:23:26
2020-11-05T12:23:26
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.servicelive.orderfulfillment.domain; import java.math.BigDecimal; import java.util.ArrayList; import java.util.Date; import java.util.HashSet; import java.util.List; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Embedded;...
UTF-8
Java
12,294
java
RoutedProvider.java
Java
[]
null
[]
package com.servicelive.orderfulfillment.domain; import java.math.BigDecimal; import java.util.ArrayList; import java.util.Date; import java.util.HashSet; import java.util.List; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Embedded;...
12,294
0.716366
0.714739
437
26.132723
23.953535
113
false
false
0
0
0
0
0
0
1.343249
false
false
3
58d0403d69900e7c551bdb80dacff021ed633c5e
8,555,574,882,901
bea377fd0645baa75c4dce9e254c7185a2058ee1
/src/main/java/com/krobothsoftware/commons/bytecode/AttributeVisibleAnnotation.java
06dbbbc53b16c5dc1e42c92d8975a5b0ecc39f78
[ "Apache-2.0" ]
permissive
kkroboth/Commons
https://github.com/kkroboth/Commons
d048b2d7d8fbf879c821ced87906cdfd2e29c4d9
4f1715a47be57ec44913adf9d108b2eaf2d2004b
refs/heads/master
2020-02-20T11:23:15.405000
2018-03-20T22:56:28
2018-03-20T22:56:28
126,387,326
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.krobothsoftware.commons.bytecode; import java.io.IOException; public class AttributeVisibleAnnotation extends Attribute { private final int len; private int index; public AttributeVisibleAnnotation(Attribute attr) throws IOException { super(attr.bytecode, attr.index); this.attrLen = attr.attrLen; ...
UTF-8
Java
3,302
java
AttributeVisibleAnnotation.java
Java
[]
null
[]
package com.krobothsoftware.commons.bytecode; import java.io.IOException; public class AttributeVisibleAnnotation extends Attribute { private final int len; private int index; public AttributeVisibleAnnotation(Attribute attr) throws IOException { super(attr.bytecode, attr.index); this.attrLen = attr.attrLen; ...
3,302
0.681405
0.664446
144
21.930555
18.301735
71
false
false
0
0
0
0
0
0
3.069444
false
false
3
1a63285cf763e03f717023d2909be473914db20b
21,311,627,758,903
92e0815069f697971f777f2a169355ce7251216e
/src/main/java/com/mdd/mt/mapper/NewsMapper.java
ef8911c79f065d61f937701475a5f47bb0fbd4ec
[]
no_license
xwlmdd/MovieTicket
https://github.com/xwlmdd/MovieTicket
04cebf38cf33797dac545c2f8695891439bafd66
9ef144d4c6b52fa97f2fed82074fee95c5554580
refs/heads/master
2021-01-12T08:55:57.980000
2017-03-28T07:59:29
2017-03-28T07:59:29
76,182,878
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.mdd.mt.mapper; import java.util.List; import com.mdd.mt.model.News; public interface NewsMapper { int deleteByPrimaryKey(Integer id); int insert(News record); int insertSelective(News record); News selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(News record); ...
UTF-8
Java
574
java
NewsMapper.java
Java
[]
null
[]
package com.mdd.mt.mapper; import java.util.List; import com.mdd.mt.model.News; public interface NewsMapper { int deleteByPrimaryKey(Integer id); int insert(News record); int insertSelective(News record); News selectByPrimaryKey(Integer id); int updateByPrimaryKeySelective(News record); ...
574
0.678571
0.678571
31
17.096775
16.617819
49
false
false
0
0
0
0
0
0
0.419355
false
false
3
715fa872e8c43408b1f013ab11531c95112d8828
4,818,953,308,914
258b7af0e87c46b94450edc12e73f120e97d817e
/portlets/adminstasks-portlet/src/main/java/org/xcolab/portlets/admintasks/migration/DataMigrator.java
16bde4ceca9e6f53107ef18670c1925f34fb9edf
[ "MIT" ]
permissive
csaladenes/XCoLab
https://github.com/csaladenes/XCoLab
8d04d8b852a5153e9b6521b04bf59f3866a85cd3
680dae4738df0a2b8d5c27adb9a5a3a33b5d0c23
refs/heads/master
2021-01-16T21:10:30.355000
2014-12-16T23:31:20
2014-12-16T23:31:20
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package org.xcolab.portlets.admintasks.migration; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.Date; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.LinkedList; import java.util.List; imp...
UTF-8
Java
36,028
java
DataMigrator.java
Java
[ { "context": "Util;\n\n/**\n * Created with IntelliJ IDEA.\n * User: patrickhiesel\n * Date: 9/17/13\n * Time: 12:33 PM\n * To change t", "end": 2019, "score": 0.9991475343704224, "start": 2006, "tag": "USERNAME", "value": "patrickhiesel" } ]
null
[]
package org.xcolab.portlets.admintasks.migration; import java.util.ArrayList; import java.util.Arrays; import java.util.Collections; import java.util.Comparator; import java.util.Date; import java.util.HashMap; import java.util.HashSet; import java.util.Iterator; import java.util.LinkedList; import java.util.List; imp...
36,028
0.624237
0.618269
782
45.072891
41.37476
224
false
false
0
0
0
0
0
0
0.749361
false
false
3
aec0706a2cff6ea22401ac606ac0d9dc35faf955
2,147,483,666,560
05b00d816d88559c770088d08430af2e0ef49501
/development/src/com/tl/resource/business/exceltemplete/imp/ExportDataProjectQuotationHandler.java
0f4ae25bc8e41c5a93b0546b89d7c68e5c2da8f9
[]
no_license
cqym/cut_tools2
https://github.com/cqym/cut_tools2
e280060300cab1e57565d81036e32562cb330492
64a447205ae8a9a5c6089097f966c9c3b786357c
refs/heads/master
2021-01-23T13:17:36.649000
2013-11-12T14:10:46
2013-11-12T14:10:46
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.tl.resource.business.exceltemplete.imp; import java.util.HashMap; import java.util.List; import java.util.Map; import com.tl.common.context.SystemInstance; import com.tl.resource.business.exceltemplete.IExportDataBusinessHandler; import com.tl.resource.dao.TAccessoriesDAO; import com.tl.resource.dao.TComp...
UTF-8
Java
2,661
java
ExportDataProjectQuotationHandler.java
Java
[]
null
[]
package com.tl.resource.business.exceltemplete.imp; import java.util.HashMap; import java.util.List; import java.util.Map; import com.tl.common.context.SystemInstance; import com.tl.resource.business.exceltemplete.IExportDataBusinessHandler; import com.tl.resource.dao.TAccessoriesDAO; import com.tl.resource.dao.TComp...
2,661
0.825629
0.825629
53
49.207546
36.480213
157
false
false
0
0
0
0
0
0
1.811321
false
false
3
3db8b80c5b566fef0d8390a1e739f1edc24b62de
32,727,650,819,329
e4d9fc400dd515bcb56f5e87627c290152856dad
/A1/src/com/weikun/face/ModelA.java
3d45e87887759dca38a9dd034e392ab3788dfc41
[]
no_license
ystwei/0727
https://github.com/ystwei/0727
55d080810255fcbfa88aab954241e7fbcbb641c7
e6da4b90d6f2a74458bbb98a63bf7a9ef1c48418
refs/heads/master
2016-06-15T16:53:29.109000
2016-04-29T11:47:12
2016-04-29T11:47:12
40,297,807
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.weikun.face; public class ModelA { public void ok() { System.out.println("ModelA≤‚ ‘"); } }
MacCentralEurope
Java
123
java
ModelA.java
Java
[]
null
[]
package com.weikun.face; public class ModelA { public void ok() { System.out.println("ModelA≤‚ ‘"); } }
123
0.612069
0.612069
7
14.571428
12.658788
35
false
false
0
0
0
0
0
0
0.857143
false
false
3
b9799cb6410e462502135ce74d9843f0e705eb94
25,847,113,220,699
b33a9eb95ab33f4469c87b154e51ef69d2d69e26
/TQC2/公倍數計算.java
6b1388fa5d9630c00f1984910f040655b252191f
[]
no_license
jtlai0921/javatqc-
https://github.com/jtlai0921/javatqc-
741781cb655f2aae0ead1abe2738ea2610a3a540
c5a0a0634cca254f2bc165750b71ae4f7c1051de
refs/heads/master
2021-03-14T18:33:08.054000
2020-03-16T06:56:22
2020-03-16T06:56:22
246,784,536
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
/* * 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 作業.TQC2; /** * * @author user */ import java.util.*; class 公倍數計算 { static Scanner input = new Scanner(System.in); ...
UTF-8
Java
753
java
公倍數計算.java
Java
[ { "context": "he editor.\n */\npackage 作業.TQC2;\n\n/**\n *\n * @author user\n */\nimport java.util.*;\n\nclass 公倍數計算 {\n static", "end": 225, "score": 0.9968847632408142, "start": 221, "tag": "USERNAME", "value": "user" } ]
null
[]
/* * 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 作業.TQC2; /** * * @author user */ import java.util.*; class 公倍數計算 { static Scanner input = new Scanner(System.in); ...
753
0.548523
0.530239
33
20.575758
20.576584
79
false
false
0
0
0
0
0
0
0.393939
false
false
3
f19a534871c83b2db375c13878a0353d67d21b42
2,654,289,815,677
6be5b1d413744f5e0c6c602911e0b5628e621822
/src/main/java/com/rzit/microservice/airports/AirportController.java
d34c716d1ce14dd3773253079600fbe01ae0215c
[]
no_license
RanjithTeche/airports
https://github.com/RanjithTeche/airports
2d16aa85843dde33d60857b4719986eba60a3536
238e29bdcc397da7209e1d5493dd6d46d57ee764
refs/heads/master
2022-06-22T16:14:17.279000
2022-06-08T18:21:27
2022-06-08T18:21:27
205,552,229
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.rzit.microservice.airports; import java.util.List; import java.util.Optional; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariabl...
UTF-8
Java
1,604
java
AirportController.java
Java
[]
null
[]
package com.rzit.microservice.airports; import java.util.List; import java.util.Optional; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariabl...
1,604
0.804239
0.804239
48
32.416668
27.354794
105
false
false
0
0
0
0
0
0
1.166667
false
false
3
5a801750efbc89421745824873f4d3cd2b806fe9
20,435,454,457,238
8b023f9d60c78f41dbb04b25a29de9e8a57a0a7c
/src/Tournament.java
a4f09bd4a86d9ffe58a962f762bda9db02bf4c7b
[]
no_license
mczajczynski/ZadanieDomowe13
https://github.com/mczajczynski/ZadanieDomowe13
1c3550a5a58ee8f329c90d77fafaf961dc4f05cb
6983d7fcda06d9499b614e63a972a3f8c53bfd31
refs/heads/master
2020-04-02T07:34:21.472000
2018-10-22T19:29:22
2018-10-22T19:29:22
154,203,508
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Scanner; public class Tournament { public static void main(String[] args) throws IOException { String firstName; String choice; String fileName...
UTF-8
Java
1,896
java
Tournament.java
Java
[]
null
[]
import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Scanner; public class Tournament { public static void main(String[] args) throws IOException { String firstName; String choice; String fileName...
1,896
0.540984
0.540984
60
30.533333
20.442167
81
false
false
0
0
0
0
0
0
0.633333
false
false
3
20aae93013c48a581eb55c78562a170ba471c874
11,304,353,954,521
239827c800588e24b84f318647168bc29651977f
/EdupPV/app/src/main/java/tcc/studio/com/edupv/atividadeCirurgia.java
af0760d23ba3e872640db08014b0d714ecdd2f62
[]
no_license
Jeannerocha8/EduPV
https://github.com/Jeannerocha8/EduPV
82e6ff8cfa1e7a3264e5ddd8c4214a5153c7bb66
081255bf5f7f4cb685a3353dc967a20048c999d6
refs/heads/master
2021-08-08T06:38:35.056000
2020-04-17T11:02:44
2020-04-17T11:02:44
156,741,264
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package tcc.studio.com.edupv; import android.app.AlertDialog; import android.content.ClipData; import android.content.ClipDescription; import android.content.DialogInterface; import android.os.Bundle; import android.support.v4.app.Fragment; import android.util.Log; import android.view.DragEvent; import android.view.L...
UTF-8
Java
10,001
java
atividadeCirurgia.java
Java
[ { "context": "MyOnDragListener(6));\n v.findViewById(R.id.cardjelcorosa).setOnDragListener(new MyOnDragListener(7));\n ", "end": 2038, "score": 0.6267752647399902, "start": 2025, "tag": "USERNAME", "value": "cardjelcorosa" }, { "context": "gListener(7));\n v.findView...
null
[]
package tcc.studio.com.edupv; import android.app.AlertDialog; import android.content.ClipData; import android.content.ClipDescription; import android.content.DialogInterface; import android.os.Bundle; import android.support.v4.app.Fragment; import android.util.Log; import android.view.DragEvent; import android.view.L...
10,001
0.530561
0.529058
235
41.468086
32.464874
161
false
false
0
0
0
0
0
0
0.553191
false
false
3
f016ae37ee2a6cffe1116cf1491c30bd8da1ec0d
7,730,941,166,370
ca5ad38811f89b65bdcd9ac94131b7dc5673533a
/Countdown/src/io/johnvincent/countdown/App.java
cdd2964a64aefc6e31d2b2f6888dc3e45cb7033e
[]
no_license
johnvincentio/java-countdown
https://github.com/johnvincentio/java-countdown
f43a92bc4951da0756e2cc5ecf3e4764136a81d7
a764ead0b052505f962b7f5006743c429c924c2e
refs/heads/master
2023-06-15T20:46:24.513000
2023-06-07T03:58:14
2023-06-07T03:58:14
236,231,575
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package io.johnvincent.countdown; import java.util.Iterator; public class App { public static void main (String[] args) { (new App()).doApp(); } private void doApp() { System.out.println("Test"); Numbers numbers = new Numbers(); numbers.set(75); numbers.set(100); numbers.set(6); numbers.set(3); numbers....
UTF-8
Java
694
java
App.java
Java
[ { "context": "\npackage io.johnvincent.countdown;\n\nimport java.util.Iterator;\n\npub", "end": 17, "score": 0.5143687129020691, "start": 15, "tag": "USERNAME", "value": "nv" } ]
null
[]
package io.johnvincent.countdown; import java.util.Iterator; public class App { public static void main (String[] args) { (new App()).doApp(); } private void doApp() { System.out.println("Test"); Numbers numbers = new Numbers(); numbers.set(75); numbers.set(100); numbers.set(6); numbers.set(3); numbers....
694
0.670029
0.652738
26
25.615385
17.993753
58
false
false
0
0
0
0
0
0
2.115385
false
false
3
e1a794ce43b4b07f57ed2ecf9270b9e042298142
12,034,498,426,224
4eb9aa19c6fc7c27535094ec5ab8f6ec1c32e44e
/src/main/java/rest/services/CloudInstanceResourceRestService.java
92e8cda16e560fbdf6c938da6d3674c4407fc4e7
[]
no_license
koencertyn/Thesis-Middleware
https://github.com/koencertyn/Thesis-Middleware
628ca0c9ab55d8e7a00baedbe4e81ebe9598dff6
dbc8d3687c4e21952e93307a5b43f8b26d0c2578
refs/heads/master
2020-05-17T10:08:21.032000
2015-09-04T12:57:14
2015-09-04T12:57:14
40,920,193
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package rest.services; import java.util.List; import javax.enterprise.context.RequestScoped; import javax.inject.Inject; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; import entity.cloudInstance.CloudInstance; import entity.cloudInstance.CloudInstanc...
UTF-8
Java
640
java
CloudInstanceResourceRestService.java
Java
[]
null
[]
package rest.services; import java.util.List; import javax.enterprise.context.RequestScoped; import javax.inject.Inject; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; import entity.cloudInstance.CloudInstance; import entity.cloudInstance.CloudInstanc...
640
0.78125
0.78125
27
22.666666
19.111757
67
false
false
0
0
0
0
0
0
0.481481
false
false
3
e7d5000117aa9127066cc9d7c945a900b3ef72bc
13,331,578,558,085
5ff6452f0b5497cbb7f371f8196a8a6ea056ad47
/src/main/java/ma/bps/presentation/BeanCotisation.java
849c7fe7e3a719b9f1bd9e9ccb6c0f981ecc5665
[]
no_license
yacinefbs/Gestion_RH
https://github.com/yacinefbs/Gestion_RH
ca825d7b6a8f97d87545baa37b7346d54596cb15
3787ca6cfa0257bc8f3c700db351de462a3ec97f
refs/heads/master
2020-12-25T09:28:14.165000
2016-06-15T16:08:10
2016-06-15T16:08:10
59,889,852
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package ma.bps.presentation; import java.util.List; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; import javax.faces.event.ActionEvent; import ma.bps.entities.Cotisations; import ma.bps.entities.Organismes; import ma.bps.metier.CotisationMetierImpl; import ma.bps.metier.ICotisationMetie...
ISO-8859-1
Java
3,389
java
BeanCotisation.java
Java
[]
null
[]
package ma.bps.presentation; import java.util.List; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; import javax.faces.event.ActionEvent; import ma.bps.entities.Cotisations; import ma.bps.entities.Organismes; import ma.bps.metier.CotisationMetierImpl; import ma.bps.metier.ICotisationMetie...
3,389
0.787978
0.786793
102
32.107841
26.045551
91
false
false
0
0
0
0
0
0
1.696078
false
false
3
2537226168163a526bb3568375232baf5b3e446b
35,510,789,638,337
2f27880a638fd76c0d20cb8042220d6d1dcc7288
/MedianofTwoSortedArrays.java
65743f733820fe1d74129b1555b6702f7c610902
[]
no_license
anujabawaskar/CompetitiveProgramming-LeetCode
https://github.com/anujabawaskar/CompetitiveProgramming-LeetCode
d064962e515936db32c75cf80a0e6e89d290b7df
8bd46a4dea14ad6acb77b3a1d0dfe27b31878c5b
refs/heads/master
2020-03-18T22:13:20.717000
2018-07-31T04:53:48
2018-07-31T04:53:48
135,332,838
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
class Solution { public double findMedianSortedArrays(int[] nums1, int[] nums2) { int n = nums1.length; int m = nums2.length; if(n > m) return findMedianSortedArrays(nums2, nums1); //System.out.println(n + " " + m); int l = 0; int k = (m + n - 1) ...
UTF-8
Java
993
java
MedianofTwoSortedArrays.java
Java
[]
null
[]
class Solution { public double findMedianSortedArrays(int[] nums1, int[] nums2) { int n = nums1.length; int m = nums2.length; if(n > m) return findMedianSortedArrays(nums2, nums1); //System.out.println(n + " " + m); int l = 0; int k = (m + n - 1) ...
993
0.41994
0.393756
31
31.032259
27.015509
117
false
false
0
0
0
0
0
0
0.677419
false
false
3
a2c6dc92e67968718394fe61f4ad6e74baf3c0a5
5,188,320,541,933
4144d34a9b6c0b0c24d75eb806eb0cfad0df5f88
/finalproject_pojo/src/com/util/PageBar.java
7fd02b2b6d1f9d1cfd46088cc884368906203952
[]
no_license
JU-HO100/recipe-please
https://github.com/JU-HO100/recipe-please
97c9401286ac1b60b540f1a1fa70b879c9928528
7265ff18b75ebc5637786e33558cf75bfdaac708
refs/heads/main
2023-02-27T09:02:17.152000
2021-01-18T11:26:11
2021-01-18T11:26:11
319,855,664
0
14
null
false
2021-02-04T05:48:45
2020-12-09T05:48:38
2021-01-18T11:26:20
2021-01-23T09:16:10
21,176
0
6
2
CSS
false
false
package com.util; public class PageBar { //전체레코드 갯수 private int totalRecord; //페이지당 레코드 수 private int numPerPage; //블럭당 디폴트 페이지 수 - 여기서는 일단 2개로 정함. private int pagePerBlock=4; //총페이지 수 private int totalPage; //총블럭 수 private int totalBlock; //현재 내가 바라보는 페이지 수 private int nowPage; //현재 내가 바라보는 블럭 수 private...
UTF-8
Java
3,505
java
PageBar.java
Java
[]
null
[]
package com.util; public class PageBar { //전체레코드 갯수 private int totalRecord; //페이지당 레코드 수 private int numPerPage; //블럭당 디폴트 페이지 수 - 여기서는 일단 2개로 정함. private int pagePerBlock=4; //총페이지 수 private int totalPage; //총블럭 수 private int totalBlock; //현재 내가 바라보는 페이지 수 private int nowPage; //현재 내가 바라보는 블럭 수 private...
3,505
0.633792
0.624488
94
27.510639
23.801817
131
false
false
0
0
0
0
0
0
2.478723
false
false
3
82f0394d83b787f7bf8569b9eff868706731b2f7
34,823,594,869,621
7faae03200b21ada0f0989a2b4b07df4cda0cef6
/app/src/main/java/com/gig/gio/search_by_counterparty/di/modules/MapModule.java
0b8ad1cea76d59ffdc82cff5d59608420c32fd17
[]
no_license
gkgio/Search-by-counterparty
https://github.com/gkgio/Search-by-counterparty
6897586aa643b94c76416f486f0aa321e9529fb3
592aa8aa2700f2895c35bc83bf533feb8df906bf
refs/heads/master
2021-09-05T14:19:01.355000
2018-01-28T17:02:28
2018-01-28T17:02:28
107,005,169
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.gig.gio.search_by_counterparty.di.modules; import com.gig.gio.search_by_counterparty.ui.map.MapActivity; import com.gig.gio.search_by_counterparty.ui.map.MapPresenter; import com.gig.gio.search_by_counterparty.ui.map.MapPresenterImpl; import com.gig.gio.search_by_counterparty.ui.map.MapView; import dagger...
UTF-8
Java
822
java
MapModule.java
Java
[ { "context": "Module;\nimport dagger.Provides;\n\n/**\n * Created by georgy on 29.10.2017.\n * Gig\n */\n\n@Module\npublic class M", "end": 378, "score": 0.9995932579040527, "start": 372, "tag": "USERNAME", "value": "georgy" } ]
null
[]
package com.gig.gio.search_by_counterparty.di.modules; import com.gig.gio.search_by_counterparty.ui.map.MapActivity; import com.gig.gio.search_by_counterparty.ui.map.MapPresenter; import com.gig.gio.search_by_counterparty.ui.map.MapPresenterImpl; import com.gig.gio.search_by_counterparty.ui.map.MapView; import dagger...
822
0.712895
0.703163
35
22.485714
21.426781
66
false
false
0
0
0
0
0
0
0.314286
false
false
3
7df3081f3efb2c30cd28a2796e1e624a7fe53fa2
34,926,674,094,203
d3e91b0c4e5b3b0cd4654dd4666d202956b22c63
/persistence/src/main/java/com/elink/util/IConsumer.java
ad46cf3fff29493441596d6f6d68e3143c79db10
[ "MIT" ]
permissive
gdsglgf/elink
https://github.com/gdsglgf/elink
50c8c57be23f37c65106bd084e0f024b0a81ca6d
1bc7dee20e77de9aed4679b9ea5ed0b850691b8b
refs/heads/master
2020-06-11T03:48:45.954000
2017-05-28T06:44:47
2017-05-28T06:44:47
76,011,364
0
1
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.elink.util; /** * 文件内容消费者接口 */ public interface IConsumer { /** * 处理文件 * @param html 文件内容 * @param rank 文件内容在压缩文件中的位置(从1开始) */ public default void consume(String html, int rank) { // empty method body } }
UTF-8
Java
301
java
IConsumer.java
Java
[]
null
[]
package com.elink.util; /** * 文件内容消费者接口 */ public interface IConsumer { /** * 处理文件 * @param html 文件内容 * @param rank 文件内容在压缩文件中的位置(从1开始) */ public default void consume(String html, int rank) { // empty method body } }
301
0.642553
0.638298
16
13.75
14.960364
53
false
false
0
0
0
0
0
0
0.6875
false
false
3
bfab1a2aafc4a7ca737343ac2ccf1c98918ac324
34,522,947,172,813
e69c501ee81d6e594ea0e84edc1aef3c2725f27f
/forever-server-interface/src/main/java/com/gaoan/forever/apiServer/controller/statistics/StatisticsController.java
42cc2d4be94679d8b50e67316e9f744f3f9e74ab
[]
no_license
kuangjunbiao/forever_server
https://github.com/kuangjunbiao/forever_server
1f7a309e361621ab014cbb3415ea0aab528f5333
0bb2cb6e69ac1b8afb02876fcd600139a46cc7d0
refs/heads/master
2020-03-26T09:19:17.869000
2018-10-28T16:01:35
2018-10-28T16:01:35
143,407,823
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.gaoan.forever.apiServer.controller.statistics; import java.util.Arrays; import java.util.HashMap; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframewo...
UTF-8
Java
4,915
java
StatisticsController.java
Java
[]
null
[]
package com.gaoan.forever.apiServer.controller.statistics; import java.util.Arrays; import java.util.HashMap; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframewo...
4,915
0.724638
0.721697
111
40.891891
37.842098
120
false
false
0
0
0
0
0
0
2.387387
false
false
3
e7638421020040e217677c04c34b0a1fd44487ff
36,086,315,253,857
447520f40e82a060368a0802a391697bc00be96f
/apks/playstore_apps/com_spotify_music/source/bmh.java
99c0f3541e58a789399939e2fc537d86d8fe5370
[ "Apache-2.0" ]
permissive
iantal/AndroidPermissions
https://github.com/iantal/AndroidPermissions
7f3343a9c29d82dbcd4ecd98b3a50ddf8d179465
d623b732734243590b5f004d167e542e2e2ae249
refs/heads/master
2023-07-19T01:29:26.689000
2019-09-30T19:01:42
2019-09-30T19:01:42
107,239,248
0
0
Apache-2.0
false
2023-07-16T07:41:38
2017-10-17T08:22:57
2019-09-30T19:01:44
2023-07-16T07:41:38
1,616,319
0
0
1
null
false
false
import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.widget.FrameLayout; import android.widget.ImageView; public final class bmh extends FrameLayout { private ImageView a; private ImageView b; private View c; private ImageView d; public bmh(Context...
UTF-8
Java
816
java
bmh.java
Java
[]
null
[]
import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.widget.FrameLayout; import android.widget.ImageView; public final class bmh extends FrameLayout { private ImageView a; private ImageView b; private View c; private ImageView d; public bmh(Context...
816
0.703431
0.637255
36
21.666666
16.744816
64
false
false
0
0
0
0
0
0
0.555556
false
false
3
199176a79bf439e5633e61c47c33edf64bdc6a8f
36,086,315,250,062
54143af5cc16c328b0ed13305b5e3a734822fd3a
/vikingd/src/Planet.java
378ba22a9dd9dd60a0d3c61c6451e74112857137
[]
no_license
mneely/SpaceVikings
https://github.com/mneely/SpaceVikings
a4bc53989c61deebdcf720ce9502a002aaa03f8d
8073b43bb53e885ef0549b58cfee1ef783037beb
refs/heads/master
2020-03-29T16:38:55.815000
2013-12-23T09:07:18
2013-12-23T09:07:18
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author Marcus */ import stdin.io.*; import javax.ejb.*; @Entity public class Planet { @Id static String planetName; @Column(name="UID", nullable = false) static int uid; public sta...
UTF-8
Java
1,020
java
Planet.java
Java
[ { "context": "the template in the editor.\n */\n\n/**\n *\n * @author Marcus\n */\n\nimport stdin.io.*;\nimport javax.ejb.*;\n\n\n@En", "end": 125, "score": 0.9997880458831787, "start": 119, "tag": "NAME", "value": "Marcus" } ]
null
[]
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author Marcus */ import stdin.io.*; import javax.ejb.*; @Entity public class Planet { @Id static String planetName; @Column(name="UID", nullable = false) static int uid; public sta...
1,020
0.609804
0.607843
64
14.9375
16.332363
54
false
false
0
0
0
0
0
0
0.296875
false
false
3
b0aabca45793231e82d4039893f559f2a730a4c7
36,326,833,424,391
1d17a96030076f0c4dfb43ad4c97bfa724e00637
/sam/src/InterfaceDemo/AdvanceCal.java
fbfbd7ed672e7e29e9e734c1ff5262151370eee3
[]
no_license
chetan-anna/Practice
https://github.com/chetan-anna/Practice
3c099eb9acfbac848881bfd8f3fb0ca2c9258b57
b9f75487fb8d3714d669e28c6ced4babf867b31f
refs/heads/master
2021-01-22T10:46:24.877000
2017-05-28T11:02:17
2017-05-28T11:02:17
92,653,831
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package InterfaceDemo; public class AdvanceCal implements Calc { public static void main(String[] args) { // TODO Auto-generated method stub Calc obj1= new AdvanceCal(); obj1.add(); obj1.sub(); } public void calCos(){ System.out.println("Iam in advancecal cos method"); ...
UTF-8
Java
596
java
AdvanceCal.java
Java
[]
null
[]
package InterfaceDemo; public class AdvanceCal implements Calc { public static void main(String[] args) { // TODO Auto-generated method stub Calc obj1= new AdvanceCal(); obj1.add(); obj1.sub(); } public void calCos(){ System.out.println("Iam in advancecal cos method"); ...
596
0.624161
0.619128
34
15.529411
17.48316
53
false
false
0
0
0
0
0
0
1.323529
false
false
3
dc24859061a9cea49f0f1db8e5400ac9ce41276c
38,843,684,271,780
ab4f076038a48f54d5ae9cfe67b6fb3c30ecc170
/src/hackerRank/Algorithms/Implementation/minMaxSum.java
b7637313498582d4a30b8e6de8e14b996cf4eade
[]
no_license
tanJ08/Solved
https://github.com/tanJ08/Solved
692f1cd67d839e152702eac15bbdbb55cf68686f
2e152a357f67f507e641bda61f3cb8edc97ad3c3
refs/heads/main
2023-08-17T18:19:06.031000
2023-04-28T10:52:38
2023-04-28T10:52:38
356,233,109
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package hackerRank.Algorithms.Implementation; import java.util.*; public class minMaxSum { static void miniMaxSum(int[] arr) { /*Arrays.sort(arr); long min=0,max=0; for(int i=0;i<arr.length-1;i++) min=min+arr[i]; for(int i=1;i<arr.length;i++) max=max+arr[i]; ...
UTF-8
Java
1,153
java
minMaxSum.java
Java
[]
null
[]
package hackerRank.Algorithms.Implementation; import java.util.*; public class minMaxSum { static void miniMaxSum(int[] arr) { /*Arrays.sort(arr); long min=0,max=0; for(int i=0;i<arr.length-1;i++) min=min+arr[i]; for(int i=1;i<arr.length;i++) max=max+arr[i]; ...
1,153
0.496964
0.475282
44
25.181818
18.233677
66
false
false
0
0
0
0
0
0
0.772727
false
false
3
764dab2b57e7537c4090138abb7b83ff08109421
38,422,777,455,416
d8ad832b122e21fb15d8cb48900b58340f9f77f6
/agency/zfPayBackOver/src/main/java/com/ruoyi/project/deveagent/usertrapos/mapper/AgentUserEposMachineActiveRecordMapper.java
e7a2ebd2e67b5f54fd421dbd4373f07a7e2e9b52
[ "MIT" ]
permissive
s284309258/zfpay
https://github.com/s284309258/zfpay
1aa3e954f693004b54e151ce292a89122a77ff10
b05510a6fadc33d4f97658865c0d59082690c887
refs/heads/master
2022-12-20T05:22:04.281000
2020-07-31T02:03:27
2020-07-31T02:03:27
253,762,177
0
0
null
false
2022-12-12T21:42:12
2020-04-07T10:34:58
2020-07-31T02:03:47
2022-12-12T21:42:11
144,477
0
0
31
Java
false
false
package com.ruoyi.project.deveagent.usertrapos.mapper; import com.ruoyi.project.deveagent.usermpos.domain.AgentUserMposMachineActiveRecord; import org.apache.ibatis.annotations.Param; import java.util.List; import java.util.Map; /** * 代理====》用户MPOS未达标扣除记录管理 * @author Administrator * */ public interface AgentUse...
UTF-8
Java
779
java
AgentUserEposMachineActiveRecordMapper.java
Java
[ { "context": "il.Map;\n\n\n/**\n * 代理====》用户MPOS未达标扣除记录管理\n * @author Administrator\n *\n */\npublic interface AgentUserEposMachineActiv", "end": 287, "score": 0.7291717529296875, "start": 274, "tag": "USERNAME", "value": "Administrator" } ]
null
[]
package com.ruoyi.project.deveagent.usertrapos.mapper; import com.ruoyi.project.deveagent.usermpos.domain.AgentUserMposMachineActiveRecord; import org.apache.ibatis.annotations.Param; import java.util.List; import java.util.Map; /** * 代理====》用户MPOS未达标扣除记录管理 * @author Administrator * */ public interface AgentUse...
779
0.749642
0.749642
33
20.181818
29.204041
114
false
false
0
0
0
0
0
0
0.69697
false
false
3
301c38dba04b635ced5dac9b4a778540657e1c29
26,371,099,265,140
02fb4e8a1cafe054929927bdf0ef55f7a7305af0
/farm-manager/src/model/DataMgr.java
4fe08ce33bb3257347103603107f7fe86634bc15
[]
no_license
Kedketh/farm-manager
https://github.com/Kedketh/farm-manager
819c2bf241ac695a86cd84543baa26cfd5cbcd79
dcfadb7a4b920bfd866f63f4cc394c0c939e4f32
refs/heads/master
2021-01-23T06:35:39.552000
2017-06-22T18:09:54
2017-06-22T18:09:54
86,382,334
0
1
null
null
null
null
null
null
null
null
null
null
null
null
null
package model; import java.sql.SQLException; import java.util.ArrayList; import javafx.collections.FXCollections; import javafx.collections.ObservableList; public class DataMgr { private DbMgr db; private ObservableList<Client> clients; private ObservableList<Champs> champs; private ObservableList<Botteleuse> b...
UTF-8
Java
6,649
java
DataMgr.java
Java
[]
null
[]
package model; import java.sql.SQLException; import java.util.ArrayList; import javafx.collections.FXCollections; import javafx.collections.ObservableList; public class DataMgr { private DbMgr db; private ObservableList<Client> clients; private ObservableList<Champs> champs; private ObservableList<Botteleuse> b...
6,649
0.758009
0.757708
216
29.782408
32.099728
137
false
false
0
0
0
0
0
0
1.921296
false
false
3
686727934e776e0b11272907348bd8743ba48441
1,194,000,943,753
3a3de09534e8fda1fbc9c52f40687380690b1d7e
/src/test/java/it/xpeppers/birthday_greetings/EmployeeTest.java
d1b6ca41030fda30e728137955cdf34b5dfc659b
[]
no_license
xpeppers/birthday-greetings-kata
https://github.com/xpeppers/birthday-greetings-kata
fcd7773d35166f82cb23b8625037057876a3c187
a81bd78516f0b5414f24727644851623f41af5fb
refs/heads/master
2022-07-09T21:09:34.726000
2022-04-05T10:15:00
2022-04-05T10:15:00
32,044,569
0
2
null
null
null
null
null
null
null
null
null
null
null
null
null
package it.xpeppers.birthday_greetings; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; public class EmployeeTest { @Test public void testBirthday() throws Exception { Employee employee = new Employee("foo"...
UTF-8
Java
955
java
EmployeeTest.java
Java
[ { "context": "loyee = new Employee(\"foo\", \"bar\", \"1990/01/31\", \"a@b.c\");\n\t\tassertFalse(employee.isBirthday(new XDate(\"2", "end": 349, "score": 0.9154167175292969, "start": 344, "tag": "EMAIL", "value": "a@b.c" }, { "context": "se = new Employee(\"First\", \"Last\", \"1999...
null
[]
package it.xpeppers.birthday_greetings; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertTrue; public class EmployeeTest { @Test public void testBirthday() throws Exception { Employee employee = new Employee("foo"...
937
0.714136
0.663874
28
33.107143
29.943207
84
false
false
0
0
0
0
0
0
1.928571
false
false
3
4e07e2e9ec391d913a1ea32e2e6e66d63e4b8c06
7,206,955,186,522
09c9d5f459a744db292fe8be2ec057288be7d08c
/src/com/flashvocabulary/service/SearchService.java
c7dda06bbfc8dc8cecc7f5325a7d850522a773a2
[]
no_license
VincentTsang/FlashVocabulary
https://github.com/VincentTsang/FlashVocabulary
2c490ddcba616b0cbc16bade29ef1d8b4f6b2b42
429896372a697ca6c7a5231aeae4f78ea2514b2e
refs/heads/master
2021-05-16T18:16:53.149000
2015-06-28T16:10:22
2015-06-28T16:10:22
37,793,161
2
2
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.flashvocabulary.service; import java.util.ArrayList; import java.util.List; import com.flashvocabulary.dao.impl.UserCollectLibImpl; import com.flashvocabulary.dao.impl.WordDaoImpl; import com.flashvocabulary.dao.impl.WordlibDaoImpl; import com.flashvocabulary.dto.Word; import com.flashvocabulary.dto.Wordl...
UTF-8
Java
4,124
java
SearchService.java
Java
[]
null
[]
package com.flashvocabulary.service; import java.util.ArrayList; import java.util.List; import com.flashvocabulary.dao.impl.UserCollectLibImpl; import com.flashvocabulary.dao.impl.WordDaoImpl; import com.flashvocabulary.dao.impl.WordlibDaoImpl; import com.flashvocabulary.dto.Word; import com.flashvocabulary.dto.Wordl...
4,124
0.680915
0.678926
162
23.839506
21.706491
127
false
false
0
0
0
0
0
0
2.45679
false
false
3
0d731c81ef6abc965bfb6006c9647be48c5d9d23
17,523,466,634,435
8f6b52c766d614f80415d81a726a3f33353f8ff0
/src/restaurantBK/Order.java
0bf09fd930f7b62a4ab2b2bb372c79e4ba0a28f9
[]
no_license
chrismclaughlin55/Sim-City-2013
https://github.com/chrismclaughlin55/Sim-City-2013
c4f3a8faffcd62ed71d9ff6d51b87f814e1509d6
3926fa232e4d52518362e1104abe1859aec737cc
refs/heads/master
2021-01-10T19:25:16.360000
2013-12-11T07:33:47
2013-12-11T07:33:47
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package restaurantBK; import restaurantBK.interfaces.Waiter; public class Order{ String name; public enum OrderState {pending,cooking,plated,done}; OrderState os; Waiter w; int tablenumber; public Order(String choice, Waiter w, int tn) { this.name=choice; this.w=w; this.tablenumber=tn; this.os=OrderStat...
UTF-8
Java
335
java
Order.java
Java
[]
null
[]
package restaurantBK; import restaurantBK.interfaces.Waiter; public class Order{ String name; public enum OrderState {pending,cooking,plated,done}; OrderState os; Waiter w; int tablenumber; public Order(String choice, Waiter w, int tn) { this.name=choice; this.w=w; this.tablenumber=tn; this.os=OrderStat...
335
0.749254
0.749254
17
18.764706
15.48255
54
false
false
0
0
0
0
0
0
1.823529
false
false
3
ef22f6b7e9ad38cda1f0d307dd535960bcae3076
27,135,603,427,988
e083f739ea6422966f0d5887230f4fea3482a117
/src/com/brainacad/ControlFlowStatements/tr.java
7b6c4f7ac2faef0974bc1ffeb226d4ca6bdab98c
[]
no_license
antonpanin1989/Artist
https://github.com/antonpanin1989/Artist
54324fa0762bd296a3fa9742dd7e59e2406945c5
4bc07e0817b759299a28203b37672d1b6712da8e
refs/heads/master
2020-06-15T06:12:52.159000
2016-12-06T18:00:15
2016-12-06T18:00:15
75,320,098
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.brainacad.ControlFlowStatements; import java.util.Scanner; /** * Created by Anton on 20.11.2016. */ public class tr { public static void main(String[] arg) { Scanner sc = new Scanner(System.in); System.out.println("Введите значение от 1 до 6"); int x = sc.nextInt(); s...
UTF-8
Java
1,724
java
tr.java
Java
[ { "context": "nts;\n\nimport java.util.Scanner;\n\n/**\n * Created by Anton on 20.11.2016.\n */\npublic class tr {\n public s", "end": 96, "score": 0.9994999170303345, "start": 91, "tag": "NAME", "value": "Anton" } ]
null
[]
package com.brainacad.ControlFlowStatements; import java.util.Scanner; /** * Created by Anton on 20.11.2016. */ public class tr { public static void main(String[] arg) { Scanner sc = new Scanner(System.in); System.out.println("Введите значение от 1 до 6"); int x = sc.nextInt(); s...
1,724
0.327859
0.318475
47
35.297871
23.490074
77
false
false
0
0
0
0
0
0
0.617021
false
false
3
97c8c7353ffefecdad0f35897c5f6df926c0777c
10,299,331,625,778
f031d09cfd01fda1fd3db6a1c59550fe3de27ab8
/src/main/java/me/koloboks/contollers/DatabaseController.java
617cf075c6e838d69de787e0e59769bb56c965bf
[]
no_license
KolobOKs/telegram_bot
https://github.com/KolobOKs/telegram_bot
9cab63bf18e023605c37493cb324dc296e9f4741
6be5e4581d783b53844825050dbc426b2f2f52d1
refs/heads/master
2021-01-17T13:00:29.464000
2016-07-24T17:53:20
2016-07-24T17:53:20
59,504,719
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package me.koloboks.contollers; import me.koloboks.commons.AttemptInformation; import me.koloboks.entities.*; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import org.springframework.web.context.support.SpringBeanAutowiringSupport; import java.lang.ref...
UTF-8
Java
2,406
java
DatabaseController.java
Java
[ { "context": ".Arrays;\nimport java.util.List;\n\n/**\n * Created by Kirill Maloyaroslavtsev on 18.05.16.\n */\n@Component\npublic class Database", "end": 450, "score": 0.9998930096626282, "start": 427, "tag": "NAME", "value": "Kirill Maloyaroslavtsev" } ]
null
[]
package me.koloboks.contollers; import me.koloboks.commons.AttemptInformation; import me.koloboks.entities.*; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import org.springframework.web.context.support.SpringBeanAutowiringSupport; import java.lang.ref...
2,389
0.694514
0.691189
92
25.152174
24.857391
132
false
false
0
0
0
0
0
0
0.456522
false
false
3
c34110eb5f632bbaede57dc4a0a2c02e2eb615ca
10,299,331,626,550
9e1a61d563cf519d44467cbad7c77535ffcdb88b
/src/java/Model/Sach.java
af09f5a7f080b533b4ebb545b35e26c75d0bd2a7
[]
no_license
luongfrv2522/TVDT
https://github.com/luongfrv2522/TVDT
cb84fac3bf46eba63fd4f1b84037575163039ced
561e0a9c6780b8f108e595cf3501d385c047d6aa
refs/heads/master
2020-03-18T14:11:00.952000
2018-07-26T02:00:05
2018-07-26T02:00:05
134,834,810
2
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package Model; import java.util.Date; public class Sach { private Integer id; private Bientap bientap; private Tacgia tacgia; private Theloaisach theloaisach; private String ten; private String anhBia; private String tomTat; private Date ngayTao; private Date ngayCapNhat;...
UTF-8
Java
2,561
java
Sach.java
Java
[]
null
[]
package Model; import java.util.Date; public class Sach { private Integer id; private Bientap bientap; private Tacgia tacgia; private Theloaisach theloaisach; private String ten; private String anhBia; private String tomTat; private Date ngayTao; private Date ngayCapNhat;...
2,561
0.605232
0.605232
116
21.068966
23.097515
160
false
false
0
0
0
0
0
0
0.534483
false
false
3
412b411885c0c52e75b4d198feb37db1a34c1371
8,332,236,555,697
0d0fb067e6843fd3aef20a11e05c0dc0870b7661
/backend/src/main/java/com/jungguji/windbossgentimer/domain/killtime/KillTimeRepository.java
4ccdfaa65743be5cf2ac4f95e319466efbae01a1
[ "MIT" ]
permissive
jungguji/WindBossGenTimer
https://github.com/jungguji/WindBossGenTimer
2b909fdfdb05751e7fcf935da7b295f3c44b0a22
71e7caa3968268ba320fa07832ea7a272b0fd875
refs/heads/master
2023-01-28T23:25:39.067000
2020-12-09T09:20:11
2020-12-09T09:20:11
290,434,520
0
1
MIT
false
2020-10-06T07:15:23
2020-08-26T08:03:04
2020-09-27T12:21:54
2020-10-06T07:15:22
10,072
0
0
3
Java
false
false
package com.jungguji.windbossgentimer.domain.killtime; import org.springframework.data.jpa.repository.JpaRepository; public interface KillTimeRepository extends JpaRepository<KillTime, Long> { }
UTF-8
Java
197
java
KillTimeRepository.java
Java
[]
null
[]
package com.jungguji.windbossgentimer.domain.killtime; import org.springframework.data.jpa.repository.JpaRepository; public interface KillTimeRepository extends JpaRepository<KillTime, Long> { }
197
0.847716
0.847716
6
31.833334
32.100967
75
false
false
0
0
0
0
0
0
0.5
false
false
3
10873be23688af838676081cb5bf5ac5f29146ed
927,712,946,237
3f835e2852647e3ce3d8e7092fdd8b912ceaa023
/boocle/src/com/czzz/douban/DoubanBookUtils.java
da3a13ea700e62d5b35696bf8d83bc87ce4f0faa
[]
no_license
tinyao/boocle
https://github.com/tinyao/boocle
32a4713134c6611a7dc2ed56f3120c4c4c343121
02345cddc963524f3673a2139c91f227bc11650d
refs/heads/master
2020-06-08T08:47:00.839000
2015-08-08T15:34:41
2015-08-08T15:34:41
11,716,332
2
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.czzz.douban; import java.util.ArrayList; import java.util.LinkedList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.apache.http.NameValuePair; import org.apache.http.client.utils.URLEncodedUtils; import org.apache.http.message.BasicNameValuePair; import ...
UTF-8
Java
9,102
java
DoubanBookUtils.java
Java
[]
null
[]
package com.czzz.douban; import java.util.ArrayList; import java.util.LinkedList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.apache.http.NameValuePair; import org.apache.http.client.utils.URLEncodedUtils; import org.apache.http.message.BasicNameValuePair; import ...
9,102
0.696672
0.692428
287
30.198606
26.588991
105
false
false
0
0
0
0
0
0
2.414634
false
false
3
c86db63608f942df7e95be2552bc7b6d6c3f0cab
4,681,514,411,415
31cea31171eed4160c862b1e0074e951304048cf
/BasicCache.java
82222877ac347b831ea101b26b5d59e49f077e07
[]
no_license
NickBittar/FirstGame
https://github.com/NickBittar/FirstGame
ef5c6d8fd20657712f5e16556377312101e9c720
54c4ad7aaf4ab736ef22d2de6cd03a24474104a1
refs/heads/master
2021-01-01T16:31:06.315000
2015-01-02T20:08:37
2015-01-02T20:08:37
28,724,612
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
import javax.imageio.ImageIO; import java.awt.*; import java.io.File; import java.io.IOException; public class BasicCache { private static final String IMAGE_DIR = "images/"; public static Image player1; public static Image player2; public static Image bullet; public static Image barrier; public static Image di...
UTF-8
Java
4,206
java
BasicCache.java
Java
[]
null
[]
import javax.imageio.ImageIO; import java.awt.*; import java.io.File; import java.io.IOException; public class BasicCache { private static final String IMAGE_DIR = "images/"; public static Image player1; public static Image player2; public static Image bullet; public static Image barrier; public static Image di...
4,206
0.70447
0.669757
172
23.453489
17.971008
65
false
false
0
0
0
0
0
0
2.133721
false
false
3
69ec5c27fe4209a069e3469be353c784f857e62a
20,375,324,888,160
abe0962bb4fa192cf12fa97151f5ebfd11c5cdbd
/src/main/java/com/swapimovie/starwarsmoviemicroservice/model/RestResponse.java
36464e1f0a9f18164b2ddbdc4edf1745b680abf9
[]
no_license
TechReporter/star-wars-movie-library
https://github.com/TechReporter/star-wars-movie-library
5f0327765246202bf458981a6113651559ec200a
510c7ce39f7187ff777f5394810b4dff0a4dd2b8
refs/heads/master
2020-12-01T18:09:55.205000
2019-12-29T08:46:55
2019-12-29T08:46:55
230,722,363
1
0
null
null
null
null
null
null
null
null
null
null
null
null
null
/** * */ package com.swapimovie.starwarsmoviemicroservice.model; import java.util.List; import org.springframework.http.HttpStatus; /** * @author 212720190 * @date Jul 25, 2019 */ public class RestResponse<T> { private T data; private String error; private HttpStatus code; public Rest...
UTF-8
Java
789
java
RestResponse.java
Java
[ { "context": "ringframework.http.HttpStatus;\r\n\r\n/**\r\n * @author 212720190\r\n * @date Jul 25, 2019\r\n */\r\npublic class RestRes", "end": 172, "score": 0.9983111619949341, "start": 163, "tag": "USERNAME", "value": "212720190" } ]
null
[]
/** * */ package com.swapimovie.starwarsmoviemicroservice.model; import java.util.List; import org.springframework.http.HttpStatus; /** * @author 212720190 * @date Jul 25, 2019 */ public class RestResponse<T> { private T data; private String error; private HttpStatus code; public Rest...
789
0.641318
0.622307
47
14.787234
15.317819
62
false
false
0
0
0
0
0
0
1.170213
false
false
3
17600fe4842b7cdf1db109f1f833051a51912f56
27,582,280,036,506
d02aae5871a8fc14483efde48e70a0e0d343bf2d
/src/main/java/com/yuanheng100/task/aop/CompleteInterceptor.java
0ef3de7c1ec87f349468747613b8352783fb5f1e
[]
no_license
jlqian/asynchronous-task
https://github.com/jlqian/asynchronous-task
fa5a48478d1a79cbd78b536a7745ad7f245eea02
6c71c2d224cac2655c129b7f97cba2be9a507e13
refs/heads/master
2021-01-10T09:50:40.800000
2016-03-04T02:07:19
2016-03-04T02:07:19
53,098,903
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.yuanheng100.task.aop; import java.sql.Connection; import org.apache.log4j.Logger; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import com.yuanheng100.task.entity.Task; import com.yuanheng100.task.persistent.Persistent; ...
UTF-8
Java
1,666
java
CompleteInterceptor.java
Java
[ { "context": "l.DataSourceUtils;\n\n/**\n * 储存任务和任务结果的切面\n * @author jlqian\n *\n */\n@Aspect\npublic class CompleteInterceptor {", "end": 408, "score": 0.9996170401573181, "start": 402, "tag": "USERNAME", "value": "jlqian" } ]
null
[]
package com.yuanheng100.task.aop; import java.sql.Connection; import org.apache.log4j.Logger; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.Around; import org.aspectj.lang.annotation.Aspect; import com.yuanheng100.task.entity.Task; import com.yuanheng100.task.persistent.Persistent; ...
1,666
0.709332
0.696091
78
19.333334
21.48086
78
false
false
0
0
0
0
0
0
1.48718
false
false
3
718a57dff9b22d1a41400b4b8fcd29e1e35fe6b9
790,273,985,044
5b2c309c903625b14991568c442eb3a889762c71
/classes/org/apache/http/ssl/SSLContextBuilder$KeyManagerDelegate.java
2230bdd5853033b330f3d080772e0c06c97fe2bf
[]
no_license
iidioter/xueqiu
https://github.com/iidioter/xueqiu
c71eb4bcc53480770b9abe20c180da693b2d7946
a7d8d7dfbaf9e603f72890cf861ed494099f5a80
refs/heads/master
2020-12-14T23:55:07.246000
2016-10-08T08:56:27
2016-10-08T08:56:27
null
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package org.apache.http.ssl; import java.net.Socket; import java.security.Principal; import java.security.PrivateKey; import java.security.cert.X509Certificate; import java.util.HashMap; import java.util.Map; import javax.net.ssl.SSLEngine; import javax.net.ssl.X509ExtendedKeyManager; class SSLContextBuilder$KeyManag...
UTF-8
Java
4,048
java
SSLContextBuilder$KeyManagerDelegate.java
Java
[]
null
[]
package org.apache.http.ssl; import java.net.Socket; import java.security.Principal; import java.security.PrivateKey; import java.security.cert.X509Certificate; import java.util.HashMap; import java.util.Map; import javax.net.ssl.SSLEngine; import javax.net.ssl.X509ExtendedKeyManager; class SSLContextBuilder$KeyManag...
4,048
0.746047
0.734931
116
33.905174
37.290096
134
false
false
0
0
0
0
0
0
0.655172
false
false
3
255710435965ae8c4b8c651562f80b54959bcc3a
23,888,608,129,523
b35f1b6a544df65e77fc1e716010c045e2d752c7
/SenFit/app/src/main/java/com/example/senfit/dataContext/dao/TrainingPlanDAO.java
e85f382f55216a904afc9219a05780952b44118f
[]
no_license
psiddiqua/PRJ666-group2-SenFit
https://github.com/psiddiqua/PRJ666-group2-SenFit
8ca113c8248e1bcd7fdb71e627251181d05cdfc3
32bed0d88a8902a2b1529449145aca54ec0baf5b
refs/heads/main
2023-04-04T18:19:58.241000
2021-04-23T02:43:46
2021-04-23T02:43:46
330,522,564
0
1
null
false
2021-02-04T01:51:26
2021-01-18T01:19:56
2021-02-03T20:52:10
2021-02-04T01:51:26
223
0
0
2
Java
false
false
package com.example.senfit.dataContext.dao; import androidx.lifecycle.LiveData; import androidx.room.Dao; import androidx.room.Insert; import androidx.room.Query; import androidx.room.Transaction; import com.example.senfit.dataContext.entities.FitnessPortfolio; import com.example.senfit.dataContext.entities.TrainingP...
UTF-8
Java
810
java
TrainingPlanDAO.java
Java
[]
null
[]
package com.example.senfit.dataContext.dao; import androidx.lifecycle.LiveData; import androidx.room.Dao; import androidx.room.Insert; import androidx.room.Query; import androidx.room.Transaction; import com.example.senfit.dataContext.entities.FitnessPortfolio; import com.example.senfit.dataContext.entities.TrainingP...
810
0.797531
0.797531
28
27.928572
26.91379
78
false
false
0
0
0
0
0
0
0.464286
false
false
3
80492f13bd2744e76da96e6fba0f78a244014191
9,612,136,864,302
0f8990cd725070ffee977b715cd92b5e0336418b
/base/src/main/java/com/rongteng/base/main/SharedPreferencesSession.java
8672853c7a3f02edcf52027322d74c2c9979fd04
[]
no_license
ty623021/read
https://github.com/ty623021/read
69d84575eb12b642e89a021b17e33a3d5504f900
41422766480eb60cd868bc85ae15b2f18bea7cf4
refs/heads/master
2020-03-07T17:57:51.713000
2018-04-03T03:06:15
2018-04-03T03:06:15
127,625,517
0
2
null
false
2018-04-03T03:06:16
2018-04-01T12:04:33
2018-04-02T06:25:05
2018-04-03T03:06:16
4,445
0
2
0
Java
false
null
package com.rongteng.base.main; import android.content.Context; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; import java.util.Date; import java.util.Iterator; import java.util.Map; /** * 一.本地数据的储存 * 1.需要包含android.content.SharedPreferences包:import android.content.Shared...
UTF-8
Java
3,734
java
SharedPreferencesSession.java
Java
[]
null
[]
package com.rongteng.base.main; import android.content.Context; import android.content.SharedPreferences; import android.content.SharedPreferences.Editor; import java.util.Date; import java.util.Iterator; import java.util.Map; /** * 一.本地数据的储存 * 1.需要包含android.content.SharedPreferences包:import android.content.Shared...
3,734
0.594851
0.588618
131
27.167938
26.873795
125
false
false
0
0
0
0
0
0
0.572519
false
false
3
4cf919de0ae19b42a0570a2491d475092c81d20e
16,106,127,361,861
87709f5711c0eaddfdac176101b09b311257f0da
/14_Unit_Testing/student-exercise/java/src/test/java/com/techelevator/DateFashionTest.java
63627078dc87c0e012febf9b5f7abc8675151020
[]
no_license
sushamagautam/TechElevator_Module1
https://github.com/sushamagautam/TechElevator_Module1
e60b9fceff026c995147049c860a1be438b09a2c
fe61fc5423fa3de699a1b15f02410acf12612272
refs/heads/master
2023-03-18T19:57:58.382000
2021-03-15T16:06:41
2021-03-15T16:06:41
348,029,362
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.techelevator; import java.util.*; import org.junit.Before; import org.junit.Test; import junit.framework.Assert; public class DateFashionTest { DateFashion DF; @Before public void createClass() { DF = new DateFashion(); } @Test public void DateFashion_test_01() { Integer actualResult = DF...
UTF-8
Java
796
java
DateFashionTest.java
Java
[]
null
[]
package com.techelevator; import java.util.*; import org.junit.Before; import org.junit.Test; import junit.framework.Assert; public class DateFashionTest { DateFashion DF; @Before public void createClass() { DF = new DateFashion(); } @Test public void DateFashion_test_01() { Integer actualResult = DF...
796
0.717337
0.69598
37
20.513514
17.38378
52
false
false
0
0
0
0
0
0
1.675676
false
false
3
508158e9d4f4dc2e709fa1f224d0c72470111d40
26,001,732,030,319
6b413a98a36491b7b3b40539b8d696a573a6f4ea
/src/main/java/com/dizzy/demo/model/Book.java
2db944be0f6ddbfc4719266175125906b67d3816
[]
no_license
gabrieu3/dizzei
https://github.com/gabrieu3/dizzei
cc536c607a5e9c34ed6c20f3d48e528696a5bbaa
cbaa2460d9fa77334ee10c738efbe070f869a141
refs/heads/master
2023-04-01T02:58:11.040000
2021-03-21T14:50:01
2021-03-21T14:50:01
348,872,395
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.dizzy.demo.model; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import lombok.Data; @Data @Entity public class Book { @Id @GeneratedValue(strategy = GenerationType.IDENTIT...
UTF-8
Java
1,322
java
Book.java
Java
[]
null
[]
package com.dizzy.demo.model; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import lombok.Data; @Data @Entity public class Book { @Id @GeneratedValue(strategy = GenerationType.IDENTIT...
1,322
0.729955
0.729955
83
14.927711
15.168756
52
false
false
0
0
0
0
0
0
1.096386
false
false
3
946d814ee89f64c93e6b68c13a753d57dcee43ec
29,850,022,728,758
2bc7f79f5267d8448fbf751cc6553238690790dc
/src/main/java/com/etiya/recapProject/business/concretes/CarManager.java
71031433d328b296a99e9a3123b2152352530b3a
[]
no_license
7Dcn/recapProject
https://github.com/7Dcn/recapProject
b34ff3577faf2ab691eb5f3eaa3b9a606c2daf75
f12c2a576dfd3034ac1c84424bd68f7f8063de41
refs/heads/main
2023-07-31T01:50:23.281000
2021-10-07T08:55:26
2021-10-07T08:55:26
407,078,714
3
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.etiya.recapProject.business.concretes; import java.util.List; import java.util.stream.Collectors; import org.modelmapper.ModelMapper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.etiya.recapProject.business.abstracts.CarService; ...
UTF-8
Java
4,829
java
CarManager.java
Java
[]
null
[]
package com.etiya.recapProject.business.concretes; import java.util.List; import java.util.stream.Collectors; import org.modelmapper.ModelMapper; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.etiya.recapProject.business.abstracts.CarService; ...
4,829
0.773659
0.773659
152
30.769737
30.960814
114
false
false
0
0
0
0
0
0
1.434211
false
false
3
8d41e3c0d9ef45ac11d0436a84b512d72064ca2f
463,856,494,126
9791566079e33f04cbd29bbc468efdc38c659238
/src/com/company/before/AdapterDemo.java
3b5be20e36f7644f2119325a15de3227f88995ce
[]
no_license
ztp1977/java-basic
https://github.com/ztp1977/java-basic
cb86b5587d3402663a1a1915977f45ca25fbd33d
59594459b7aaa63bc483500d417eb69b3dc7b7fe
refs/heads/master
2016-08-08T18:00:52.887000
2015-09-28T11:02:02
2015-09-28T11:02:02
43,294,812
0
0
null
false
2015-09-28T11:02:03
2015-09-28T10:29:01
2015-09-28T10:56:11
2015-09-28T11:02:02
0
0
0
0
Java
null
null
package com.company.before; class AdapterDemo { public static void main(String[] args) { Object[] shapes = { new LegacyLine(), new LegacyRectangle() }; // A begin and end point from a graphical editor int x1 = 10, y1 = 20; int...
UTF-8
Java
840
java
AdapterDemo.java
Java
[]
null
[]
package com.company.before; class AdapterDemo { public static void main(String[] args) { Object[] shapes = { new LegacyLine(), new LegacyRectangle() }; // A begin and end point from a graphical editor int x1 = 10, y1 = 20; int...
840
0.522619
0.494048
23
35.52174
28.396065
93
false
false
0
0
0
0
0
0
0.782609
false
false
3
4eb5a99c344b58e13da166c37c20a095a418ce56
26,998,164,442,888
1c8821f247700dfbb35d7974a5afeb36982b8918
/src/main/java/com/connor/myapplication/home/BackGround.java
d88c03677c8f7b3df6568a6fe155615ee519a271
[ "Apache-2.0" ]
permissive
wacelike/OpenGLDemo
https://github.com/wacelike/OpenGLDemo
bdff5bc0236a7f7ecf1e483d7260247341bf75dc
30015e9811b5c11a629ecf84b1c86e6989860e26
refs/heads/master
2021-01-19T21:41:05.435000
2016-09-20T12:02:49
2016-09-20T12:02:49
82,530,313
1
0
null
true
2017-02-20T07:40:24
2017-02-20T07:40:24
2016-09-02T01:41:48
2016-09-20T12:03:51
1,251
0
0
0
null
null
null
package com.connor.myapplication.home; import com.connor.myapplication.data.VertexArray; import com.connor.myapplication.program.TextureShaderProgram; import com.connor.myapplication.util.PictureUtil; import com.connor.myapplication.program.TraceTextureShaderProgram; import static android.opengl.GLES20.GL_TRIA...
UTF-8
Java
1,572
java
BackGround.java
Java
[]
null
[]
package com.connor.myapplication.home; import com.connor.myapplication.data.VertexArray; import com.connor.myapplication.program.TextureShaderProgram; import com.connor.myapplication.util.PictureUtil; import com.connor.myapplication.program.TraceTextureShaderProgram; import static android.opengl.GLES20.GL_TRIA...
1,572
0.686387
0.680662
44
33.727272
24.878216
72
false
false
0
0
0
0
0
0
0.590909
false
false
3
b6b07d3cd0dda926689b0030148e74c878c14cd5
7,945,689,524,532
93a290a8bf9f55a48cc366c14f0a3a1dae75c7a4
/web-ssm/src/main/java/com/heitian/ssm/base/entity/entity/DateEntity.java
d2dbb8389324d61e7b973c845c49f61993394e96
[]
no_license
cmloveyw/web-java
https://github.com/cmloveyw/web-java
50f476d5d4cede81ac0955b555bc8dbc716b95c6
912d527af575b7a01e55d7435a7ecb7821d58b33
refs/heads/master
2020-04-06T22:15:04.208000
2019-02-13T08:36:07
2019-02-13T08:36:07
157,829,622
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
/* *  Copyright (c) 2014-2017. 墨博云舟 All Rights Reserved.  */ package com.heitian.ssm.base.entity.entity; /** * DateEntity : 时间实体 * * @author UlverYang * @version 1.00 * @since 2017-03-13 11:02 */ public interface DateEntity extends Entity { /** * 获取创建时间 * * @return create_time - 创建时间 ...
UTF-8
Java
770
java
DateEntity.java
Java
[ { "context": "ty.entity;\n\n/**\n * DateEntity : 时间实体\n *\n * @author UlverYang\n * @version 1.00\n * @since 2017-03-13 11:02\n */\np", "end": 157, "score": 0.9996085166931152, "start": 148, "tag": "NAME", "value": "UlverYang" } ]
null
[]
/* *  Copyright (c) 2014-2017. 墨博云舟 All Rights Reserved.  */ package com.heitian.ssm.base.entity.entity; /** * DateEntity : 时间实体 * * @author UlverYang * @version 1.00 * @since 2017-03-13 11:02 */ public interface DateEntity extends Entity { /** * 获取创建时间 * * @return create_time - 创建时间 ...
770
0.550225
0.515742
43
14.511628
14.503202
55
false
false
0
0
0
0
0
0
0.116279
false
false
3
47c6443c5f8dc6a94027931f5f431c8a9c6c33a7
12,412,455,515,213
6838cccea5de154e51ecd689bc819ba0341692ed
/cxf/src/main/java/com/ale/config/RedisConfig.java
e2c73207d4d6728ac9f7361994b22c4431fc1069
[]
no_license
alewu/springboot-integration
https://github.com/alewu/springboot-integration
a303aa5095e75c9e265958245eba9b83367df809
ee6a7c0dfedeb39686a83323be1923ae3d23ddd5
refs/heads/master
2023-06-26T00:59:18.841000
2023-04-14T14:16:44
2023-04-14T14:16:44
200,474,074
0
0
null
false
2023-06-14T22:47:11
2019-08-04T09:31:36
2021-11-21T14:27:28
2023-06-14T22:47:10
483
0
0
2
Java
false
false
package com.ale.config; import org.apache.commons.pool2.impl.GenericObjectPoolConfig; import org.springframework.cache.CacheManager; import org.springframework.cache.annotation.CachingConfigurerSupport; import org.springframework.cache.annotation.EnableCaching; import org.springframework.context.annotation.Bean; impor...
UTF-8
Java
3,646
java
RedisConfig.java
Java
[ { "context": "ort java.util.Set;\n\n/**\n * redis 配置类\n * @author alewu\n * @date 2019/8/25\n */\n@Configuration\n@EnableCa", "end": 1107, "score": 0.9995696544647217, "start": 1102, "tag": "USERNAME", "value": "alewu" } ]
null
[]
package com.ale.config; import org.apache.commons.pool2.impl.GenericObjectPoolConfig; import org.springframework.cache.CacheManager; import org.springframework.cache.annotation.CachingConfigurerSupport; import org.springframework.cache.annotation.EnableCaching; import org.springframework.context.annotation.Bean; impor...
3,646
0.75212
0.747032
96
35.854168
32.556675
115
false
false
0
0
0
0
0
0
0.416667
false
false
3
fc5680a5b59b9d5147ecacc73a48eb02da03392d
16,234,976,430,832
d910cf80a542e4ba4e653cd4c11b9ec58df0f2ba
/src/test/java/nl/tudelft/contextproject/script/ScriptTest.java
08cbc2a2631f15e2ec19fb30cf74768d07781b11
[]
no_license
stevenmeijer/Context-TFP
https://github.com/stevenmeijer/Context-TFP
7f172519408b9e661e79018eda8a0b63e934c3b6
7972cbba04dd473c7b48c71a45136371b387a726
refs/heads/master
2021-06-03T13:55:52.313000
2016-06-25T20:29:04
2016-06-25T20:29:04
56,688,098
0
1
null
null
null
null
null
null
null
null
null
null
null
null
null
package nl.tudelft.contextproject.script; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; import ...
UTF-8
Java
7,378
java
ScriptTest.java
Java
[]
null
[]
package nl.tudelft.contextproject.script; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNotEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertTrue; import ...
7,378
0.620087
0.598672
249
28.630522
21.204872
102
false
false
0
0
0
0
0
0
0.686747
false
false
3
16b1d417853132ec10300016c01cb4fef41ecf22
22,617,297,828,262
e90e99fe3df3e0d77a934b3db0dad118fcc53155
/expressows/com/sgitmanagement/expressoext/security/RolesResource.java
20aa0d981aeddb97149cd269dffce927001dcf8e
[]
permissive
stessygallant/expresso
https://github.com/stessygallant/expresso
fb6aebd4e14003615567f58553866c6295dd28ee
92f27743a60939eae784b40965a15904127c7535
refs/heads/master
2023-08-03T12:53:32.274000
2023-08-02T13:50:05
2023-08-02T13:50:05
163,753,839
0
0
MIT
false
2019-01-02T20:46:17
2019-01-01T17:24:14
2019-01-01T17:24:16
2019-01-02T20:46:16
1
0
0
0
null
false
null
package com.sgitmanagement.expressoext.security; import java.util.HashSet; import java.util.Set; import com.sgitmanagement.expressoext.base.BaseOptionResource; import com.sgitmanagement.expressoext.base.BaseOptionsResource; import com.sgitmanagement.expressoext.security.RolesResource.RoleResource; import jakarta.ser...
UTF-8
Java
2,007
java
RolesResource.java
Java
[]
null
[]
package com.sgitmanagement.expressoext.security; import java.util.HashSet; import java.util.Set; import com.sgitmanagement.expressoext.base.BaseOptionResource; import com.sgitmanagement.expressoext.base.BaseOptionsResource; import com.sgitmanagement.expressoext.security.RolesResource.RoleResource; import jakarta.ser...
2,007
0.76283
0.762332
65
29.892307
28.215176
99
false
false
0
0
0
0
0
0
1.892308
false
false
3
748af6b5ca297c4b6498ce1a1acce667f2b3fcca
27,058,294,013,810
43ab3b5f99e73e05dfa847063d8aa0ca49cda2b0
/src/main/java/simulation/SimulationPanelMain.java
a133ef9fb387dcdf6432abf42b5ea4de66b85b33
[]
no_license
joshua-legend/public
https://github.com/joshua-legend/public
281c49e9008dceb7e7d638453c7bd26e0a702cd3
e5be809bccd398dc2b70734c83598083d1681e79
refs/heads/master
2023-06-29T18:34:10.629000
2021-08-03T05:17:14
2021-08-03T05:17:14
385,966,180
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package simulation; import java.awt.Color; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JFrame; public class SimulationPanelMain extends JFrame implements ActionListener{ GetPercentage gp; Simulation_Menu_One smo; NumberThread nt;...
UTF-8
Java
1,143
java
SimulationPanelMain.java
Java
[]
null
[]
package simulation; import java.awt.Color; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JFrame; public class SimulationPanelMain extends JFrame implements ActionListener{ GetPercentage gp; Simulation_Menu_One smo; NumberThread nt;...
1,143
0.600527
0.589991
45
24.311111
15.306966
74
false
false
0
0
0
0
0
0
0.622222
false
false
3
836cfaf412806f0ec534b806da06cec98ee7e305
30,322,469,164,338
c0e01b7c8aa553ba563727eeb2f0608280b174e8
/src/com/wangle/designPatterns/flyweight/Main.java
b0df2d8fc2cfa3f73795854399ada98ef2cbf9bb
[ "Apache-2.0" ]
permissive
newlife201117015148/studynote
https://github.com/newlife201117015148/studynote
d54a093128fab62cf9f618a750a01fbafe6f7ac5
9eae8ca87581be078866b1d719355c9fde12d89b
refs/heads/master
2020-06-03T18:16:54.063000
2019-11-27T07:00:28
2019-11-27T07:00:28
191,679,259
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package com.wangle.designPatterns.flyweight; import java.util.ArrayList; import java.util.List; public class Main { //享元模式(重复利用对象)共享元数据 //就像java的字符串的处理方式一样,字符串池里面有的我直接给你池子里的,没有才会给你new 一个 //这样就避免了资源浪费 public static void main(String[] args) { BulletPool pool = new BulletPool(); Bullet b1 = pool.getBu...
GB18030
Java
1,844
java
Main.java
Java
[]
null
[]
package com.wangle.designPatterns.flyweight; import java.util.ArrayList; import java.util.List; public class Main { //享元模式(重复利用对象)共享元数据 //就像java的字符串的处理方式一样,字符串池里面有的我直接给你池子里的,没有才会给你new 一个 //这样就避免了资源浪费 public static void main(String[] args) { BulletPool pool = new BulletPool(); Bullet b1 = pool.getBu...
1,844
0.623977
0.612281
81
19.111111
14.233502
61
false
false
0
0
0
0
0
0
1.888889
false
false
3
8f17570f5a6fedcb6448a59834803fea3730f877
23,115,514,032,411
5ed0e7e895831fb39aefaf4aa5cd1316c72fd6af
/src/site/lvkun/leetcode/mirror_reflection/SolutionTest.java
694c035b38a8e78cc71358259ab7f5b5a04f9257
[]
no_license
lvkun/leetcode
https://github.com/lvkun/leetcode
2fe4389f11f31ff634502213e95d53af40a372b2
aaeb0a1d33ce3b5b15a3c934c9bc96baa005586d
refs/heads/master
2020-07-09T09:06:47.362000
2019-04-15T15:28:51
2019-04-15T15:28:51
21,848,508
0
0
null
null
null
null
null
null
null
null
null
null
null
null
null
package site.lvkun.leetcode.mirror_reflection; public class SolutionTest { }
UTF-8
Java
82
java
SolutionTest.java
Java
[]
null
[]
package site.lvkun.leetcode.mirror_reflection; public class SolutionTest { }
82
0.768293
0.768293
4
18.5
19.215879
46
false
false
0
0
0
0
0
0
0.25
false
false
3
50863af63021a70d244dddba223326d15aef1cfc
10,316,511,508,178
1d85645c4bed94e4535c310bd372845a37e62486
/IRIS+-/test/org/deri/iris/topdown/oldt/SubsumsTest.java
1053a735fac9f75d10c0e92d336db52b9228cfd9
[]
no_license
pfromer/tesis
https://github.com/pfromer/tesis
81673f45d1e50ad199907969f6a5c873d62fabb3
350cc3660ff61b180dbc63c2ad5a43c17f1254b9
refs/heads/master
2021-06-22T02:40:55.368000
2019-04-25T01:37:55
2019-04-25T01:37:55
163,445,778
0
0
null
false
2021-01-05T07:18:56
2018-12-28T20:09:42
2019-04-25T01:38:09
2021-01-05T07:18:54
30,355
0
0
1
Java
false
false
/* * Integrated Rule Inference System (IRIS): * An extensible rule inference system for datalog with extensions. * * Copyright (C) 2008 Semantic Technology Institute (STI) Innsbruck, * University of Innsbruck, Technikerstrasse 21a, 6020 Innsbruck, Austria. * * This library is free software; you can redistribu...
UTF-8
Java
15,139
java
SubsumsTest.java
Java
[ { "context": "* used by OLDT evaluation function.\n * \n * @author gigi\n * @see TermMatchingAndSubstitution.subsums( IAto", "end": 1678, "score": 0.979205310344696, "start": 1674, "tag": "USERNAME", "value": "gigi" } ]
null
[]
/* * Integrated Rule Inference System (IRIS): * An extensible rule inference system for datalog with extensions. * * Copyright (C) 2008 Semantic Technology Institute (STI) Innsbruck, * University of Innsbruck, Technikerstrasse 21a, 6020 Innsbruck, Austria. * * This library is free software; you can redistribu...
15,139
0.707907
0.698857
456
32.199562
27.852085
85
false
false
0
0
0
0
67
0.004426
1.33114
false
false
3
b97a13fb59577cb4a689b55993e94877b07d9400
31,988,916,475,975
a42407b397762b55485138f711e2ae15bd6aa9be
/aorun-app/src/com/fushionbaby/app/dto/store/StoreCountryDto.java
2fd81c28abebd9561698b3f85c6adc9ff6e737dd
[]
no_license
gthinkspark/aorunProject
https://github.com/gthinkspark/aorunProject
0b4e53c1af20b043a27272956284c073e40e2dba
172f2600f61c5a7a81c887351e9603408fc4991e
refs/heads/master
2020-06-02T20:36:32.605000
2019-03-14T05:16:58
2019-03-14T05:16:58
191,300,057
3
0
null
false
2020-07-01T23:25:03
2019-06-11T05:28:22
2020-04-08T08:21:46
2020-07-01T23:25:02
87,497
3
0
9
Java
false
false
package com.fushionbaby.app.dto.store; import com.fushionbaby.member.dto.areaconfig.AreaDto; /** * * @description 门店区县 * @author 孟少博 * @date 2015年12月12日下午4:25:35 */ public class StoreCountryDto extends AreaDto{ private static final long serialVersionUID = 1L; }
UTF-8
Java
305
java
StoreCountryDto.java
Java
[ { "context": ".AreaDto;\n/**\n * \n * @description 门店区县\n * @author 孟少博\n * @date 2015年12月12日下午4:25:35\n */\npublic class St", "end": 137, "score": 0.9994338750839233, "start": 134, "tag": "NAME", "value": "孟少博" } ]
null
[]
package com.fushionbaby.app.dto.store; import com.fushionbaby.member.dto.areaconfig.AreaDto; /** * * @description 门店区县 * @author 孟少博 * @date 2015年12月12日下午4:25:35 */ public class StoreCountryDto extends AreaDto{ private static final long serialVersionUID = 1L; }
305
0.725979
0.676157
18
14.611111
18.850697
53
false
false
0
0
0
0
0
0
0.444444
false
false
3