blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
410
content_id
stringlengths
40
40
detected_licenses
listlengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
131 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
32 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
313
0e4ab197a70a75e444244c633c055a8bfca2daf4
770135bfec3c1d81c39bcccefc0fa2e00854a580
/ran/src/product/productBean.java
36e28c6479dac1c0a12f7505b34358fcb3dd8abf
[]
no_license
fks5580/ran_model1
f3e94044bdf8a9a0acfee556b88463a0d49cfdfe
7244c4baf2f5787bdf9faf45476fe734d9bb8f1d
refs/heads/master
2021-02-23T18:20:21.130746
2020-03-06T11:53:42
2020-03-06T11:53:42
245,406,676
0
0
null
null
null
null
UTF-8
Java
false
false
1,121
java
package product; public class productBean { private int product_no; private String product_name; private int product_price; private int product_count; private String product_photo; public int getProduct_no() { return product_no; } public void setProduct_no(int product...
[ "fks5580@naver.com" ]
fks5580@naver.com
0930affaf47b01108a7a199a581ea160d93901de
555bf414bf3ed6d13fa79600c3a3b383ec047b34
/src/br/com/devmedia/aula11/Aula.java
811fa6a995c9bf925e2037d5d16c90c9d80d5da2
[]
no_license
Erikomoreira/java-poo
4542d9e450b25b1a0cf97413d08109c4e8d7d371
e1aeda1104a9275a19c1e9120337e38fa569d5ce
refs/heads/master
2021-01-02T14:27:48.875760
2020-02-11T02:59:38
2020-02-11T02:59:38
239,661,550
0
0
null
null
null
null
UTF-8
Java
false
false
690
java
package br.com.devmedia.aula11; public class Aula { public static void main(String[] args) { Aluno a = new Aluno(); a.setNome("Joana da Silva"); a.setMatricula("123323232"); System.out.println("Nome:" + a.getNome()+", Matricula: "+a.getMatricula()); Aluno a1 = new Aluno()...
[ "erik.oliveira.moreira@hotmail.com" ]
erik.oliveira.moreira@hotmail.com
873e0cbcc0f4bb28ccec8ebad50157294bf89939
f694f256e58fc7c299118cbecd11137474cefec6
/framework/compss/agent/commons/src/main/java/es/bsc/compss/agent/types/Resource.java
effd56a246d377dfb93086010595180111619fc6
[ "Apache-2.0" ]
permissive
flordan/HiPar22
0d99628e8dababb5e195006a80d7951bf15d50b3
5572ecead0784f161cd1324af2f1a9605514222d
refs/heads/main
2023-04-14T09:30:30.721386
2022-09-02T11:30:07
2022-09-02T16:25:40
513,913,503
0
0
null
null
null
null
UTF-8
Java
false
false
3,703
java
/* * Copyright 2002-2022 Barcelona Supercomputing Center (www.bsc.es) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unl...
[ "francesc.lordan@gmail.com" ]
francesc.lordan@gmail.com
fa906496438c6e175a28be80706c8d70f4149227
4bd325fa97920eda8266085aa168e7903e00dc6d
/FoodStacks/src/Classes/Order.java
148e2782ed10d869564ba8a4b55e0aa28f94230e
[ "MIT" ]
permissive
bianca-mihaela-stan/FoodStacks
be98b49b121fb8646f7738fce024ae9006e552da
22895deb182a30a53dbf6fddb0241eee3d3819da
refs/heads/main
2023-06-26T16:56:23.654039
2021-07-28T08:05:53
2021-07-28T08:05:53
349,752,170
0
1
null
null
null
null
UTF-8
Java
false
false
4,764
java
package Classes; import java.time.LocalDate; import java.util.*; import java.util.concurrent.atomic.AtomicLong; import org.javatuples.Triplet; import org.javatuples.Pair; public class Order{ protected LocalDate date; protected List<Triplet<Dish, Integer, Double>> dishesOrdered = new ArrayList<Triplet<Dish, I...
[ "stanbianca611@gmail.com" ]
stanbianca611@gmail.com
479591c95f435f06413c7327024629453606ff79
b6b9055ea3518ae1fe02e9cbfdaa8aadc8eff856
/src/Test/InsertionSort.java
d24c42f3c58e3e86a3f8c0fb37d0d8c49ba5fbf2
[]
no_license
baronwithyou/JavaPractice
62b1c53b3befe8dd7b48492e2199ec5de700187c
f1bf41e1e1f6d518358b90f429985f2829884653
refs/heads/master
2021-09-06T14:28:14.835200
2018-02-07T14:24:26
2018-02-07T14:24:26
null
0
0
null
null
null
null
UTF-8
Java
false
false
643
java
package Test; public class InsertionSort { private static int[] sort(int []arr) { for (int i = 1; i < arr.length; i++) { int tmp = arr[i]; int j = i - 1; // 这里面的tmp不能写成arr[i] 因为在赋值的时候arr[i]的值被改变了 for (; j >= 0 && tmp < arr[j]; j--) { arr[j + 1...
[ "linsi.yao@163.com" ]
linsi.yao@163.com
ec51180a0ba87691afdb9b0f73a5edad5528dfd7
8096e60a5ddd18db7131eb36e13779f2eea3be83
/lib/commons-core/src/test/java/org/apache/olingo/commons/core/edm/annotations/EdmUrlRefImplTest.java
f27847c629edd62c74ee11c93c280f48d633b340
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
apache/olingo-odata4
b107bcad4e87f91bf682b508086295147a4cbbd8
e39c1deb58e43a0c726b97fa969d00af3972becd
refs/heads/master
2023-08-28T03:57:35.573926
2022-11-13T07:12:31
2022-11-13T07:22:25
18,830,104
163
224
Apache-2.0
2023-09-05T02:30:19
2014-04-16T07:00:08
Java
UTF-8
Java
false
false
4,393
java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ma...
[ "christian.amend@sap.com" ]
christian.amend@sap.com
e147a12c0da858c8986a6c71140bfd1fe16c5f7c
3aac29e8f15375f3968bf26be9fe9224fb16d42f
/src/main/java/com/nowakowski/singleton/service/UserService.java
c3aa762ddbff29f854e5b2e2556f0efa2026402a
[]
no_license
Fazii/singleton
ec231379db59c5f255982bc755b3f6a317a3b722
af138c29ffc58b8b3800a6e733292fdcf18f6eb8
refs/heads/master
2020-04-02T22:42:23.388686
2018-10-26T13:51:23
2018-10-26T13:51:23
154,841,725
0
0
null
null
null
null
UTF-8
Java
false
false
793
java
package com.nowakowski.singleton.service; import com.nowakowski.singleton.entity.UserEntity; import com.nowakowski.singleton.repository.Deletor; import com.nowakowski.singleton.repository.Reader; import com.nowakowski.singleton.repository.Writer; import java.io.IOException; public class UserService { public void...
[ "krzysztof.nowakowski@comarch.com" ]
krzysztof.nowakowski@comarch.com
d6b3bc549db3e8ddbc3effa33838238cf45707c3
5c690d0dc3da1f05653fd8c1d030b3ec8feb6d31
/src/Modelos/RectanguloGrafico.java
f4e2c77346c3bfb5a7c0914d26d85b5896823ba9
[]
no_license
AgusPacini/Juego-Invasores-del-espacio
f3d499aa9db7bd85bb22f7ad3ace10c84905b7ab
7c72fe2a3144fd0a0cfc2265be0ccd1c438863f7
refs/heads/master
2020-03-20T03:35:33.158606
2018-06-13T02:22:52
2018-06-13T02:22:52
137,151,839
0
0
null
null
null
null
UTF-8
Java
false
false
835
java
package Modelos; import java.awt.Color; import java.awt.Graphics; public class RectanguloGrafico extends Rectangulo implements Dibujable { Color color; public RectanguloGrafico(Coordenada cor,float x,float y,Color uncolor){ super (cor,x,y); this.color = uncolor; } ...
[ "Agustin@192.168.1.109" ]
Agustin@192.168.1.109
412306f5d2583baa725e9f8ded5ece2dc64c7d62
b076236fb44ad4fde94a43b013bdbf6d0c6c9840
/p4/RecomendadorVecinos.java
2c12478e52237f481d9ac61298562f9625dbfec3
[]
no_license
vsanchezdelaroda/ADSOF
58a43c0a2603c8229f0fe0687be31aff2d9cb821
4cf75a4abdbbe173417ac5a20caba85fe2024906
refs/heads/master
2021-10-25T09:56:03.963025
2019-04-03T18:21:37
2019-04-03T18:21:37
null
0
0
null
null
null
null
UTF-8
Java
false
false
644
java
package es.uam.ads.p4; import java.io.IOException; import java.util.Map; public class RecomendadorVecinos extends RecomendadorGeneral { Similitud s = new SimilitudCos(datos); public RecomendadorVecinos(String fichero) throws IOException { super(fichero); } @Override public double cal...
[ "noreply@github.com" ]
vsanchezdelaroda.noreply@github.com
d21eb661ceda26840972938a0b8010ab884b47eb
bb27351b1d6b75148d2fe74bb648e162632e5339
/Year 3/AI/quoridor/players/RandomSimulationPlayer.java
d9bbf5541c71c4db78befd3aa2887d73e9a1f3a9
[]
no_license
mattprice28/Cardiff-University
61b10a11b7e7bebfdb8dcb0e09f33d48229e5618
4d3a9bcb9e9624f9c1c380504bb749580f1c4537
refs/heads/master
2020-05-23T09:00:58.643058
2017-03-12T21:40:57
2017-03-12T21:40:57
84,758,418
1
0
null
null
null
null
UTF-8
Java
false
false
1,367
java
package players; import java.util.List; import java.util.Random; import quoridor.GameState2P; import quoridor.Quoridor; import moves.*; /** * * @author steven */ public class RandomSimulationPlayer extends QuoridorPlayer { public static Random random = new Random(); private int indexOpponent; priv...
[ "pricem20@cardiff.ac.uk" ]
pricem20@cardiff.ac.uk
6c27838624ba97629f0e7091b48b4ed1a7339b71
85a3da801af4b0a03ca4e1abe4a7c4457f8eb79d
/hr_day10_binary_numbers/src/hr_day10_binary_numbers/Hr_day10_binary_numbers.java
d25ea5f5c8eafd36e3bd0baaf7d83fef719b1d17
[]
no_license
ciberCubana/HackeRank
422ef37ab190b049aee224324810f7b008e47c1d
604b0d8cc1588057dc8d66cb29ddcda3f60088b0
refs/heads/master
2021-01-17T19:16:57.641510
2017-03-07T01:07:13
2017-03-07T01:07:13
84,138,661
0
0
null
null
null
null
UTF-8
Java
false
false
864
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package hr_day10_binary_numbers; import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex....
[ "npgamboa1992@gmail.com" ]
npgamboa1992@gmail.com
0f848c34f79a510b8ea4fa8ea42eb702bafe51d7
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/3/3_3378171f0c785689a75cf45e2f8108f2e34772cb/WikiArticlePageObject/3_3378171f0c785689a75cf45e2f8108f2e34772cb_WikiArticlePageObject_t.java
6e74660180c9559435013feeb66c202e7141294b
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
17,711
java
package com.wikia.webdriver.PageObjects.PageObject.WikiPage; import java.util.List; import org.openqa.selenium.By; import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.Keys; import org.openqa.selenium.Point; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; im...
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
6b4aafd63d53d49ca5beabec7fc1e5e946fc2815
6372bd0160ba49a48470030b623d02b9052aa694
/app/src/main/java/com/freak/neteasecloudmusic/utils/RegexUtils.java
4a15c7b9e5537ac8f060b2f5040e17b2cbdebe40
[]
no_license
freakcsh/NeteaseCloudMusic
826f1efaa7e3f15af50afddef8984836cd128ea0
e6db94ebbfb09ec4dc5cd2d3cc0ad2425d1405b3
refs/heads/master
2020-04-28T21:42:14.301735
2020-03-05T10:38:06
2020-03-05T10:38:06
175,591,500
1
0
null
null
null
null
UTF-8
Java
false
false
5,779
java
/* * Copyright (C) 2013 Peng fei Pan <sky@xiaopan.me> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by appli...
[ "3024768596@qq.com" ]
3024768596@qq.com
033cd953371223fd338e553a2b623b89b42b2d21
396ae42be1ea3c052ee4975c8505aa10c8b9ebab
/HBProj09_ObjectVersioning/src/main/java/com/har/entity/EmployeeAnno.java
dbf1df5ad7e4386551d6f8bd4f5ef7d0df7078e3
[]
no_license
harishviru/Hibernate
ea45cb201c243a7f79fcf4f5db7f75f91c880da2
3be3a74a56fa053e58f089a8bea55bd9dd047fbf
refs/heads/main
2023-06-01T22:12:10.865356
2021-06-18T15:59:39
2021-06-18T15:59:39
369,538,555
0
0
null
null
null
null
UTF-8
Java
false
false
972
java
package com.har.entity; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; import javax.persistence.Version; import lombok.AllArgsConstructor; import lombok.Dat...
[ "57554695+harishviru@users.noreply.github.com" ]
57554695+harishviru@users.noreply.github.com
959c42b530ec951aa76848f8cde4bcb0b9515329
b7dbbc77f1413d6df383b94710cf66ff35bbf488
/app/src/main/java/twitchvod/src/data/primitives/Stream.java
d6f353bd7b2f2cbf54670fe6d6ba8efeb639db81
[]
no_license
Tinakawai/TwitchBot
7321daec0155aab7eff9cf63d399048569dc13a4
3ae8b56877d1c3c97254eb1e821d026ffc922ef4
refs/heads/master
2023-03-26T04:43:19.089862
2015-02-13T17:03:42
2015-02-13T17:03:42
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,113
java
package twitchvod.src.data.primitives; import android.graphics.Bitmap; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.util.HashMap; public class Stream { public String mTitle, mLogoLink, mPreviewLink, mUrl, mStatus, mGame; public int mViewers, mId; public Bitmap mLog...
[ "marc.nemn@gmail.com" ]
marc.nemn@gmail.com
4d37963ee71216ea2e653357d4585f48a729ca61
21a76b80263665b27472fcdb271e1a2bcc92f102
/VIN/src/spring15_CS445/model/Shipment.java
31ba8e97b93420b124fd1fa670c0e24b70b2b1ec
[]
no_license
redlalitp/WineClub_JavaSpringMVC-
e9e73ba66e38d0cc6da22d262df66661238500e8
8976da189632e9a50d9c64eb07e7c30046976d52
refs/heads/master
2021-01-10T05:06:34.602840
2015-10-20T19:12:58
2015-10-20T19:12:58
44,628,843
0
0
null
null
null
null
UTF-8
Java
false
false
1,113
java
package spring15_CS445.model; import java.util.ArrayList; import java.util.List; public class Shipment { private int sid; private String status; private String dt; private WineVariety wt; private List<Wine> wines = new ArrayList<Wine>(); private List<Note> notes = new ArrayList<Note>(); public Shipment(WineV...
[ "lalitpatil@outlook.com" ]
lalitpatil@outlook.com
2c2bbbb69a0ee0f7637f49da2f6ee9aaed06648c
c17c9c2b6d49ddcf88fa427b0aaea0657e523c18
/alfresco-jlan/src/main/java/org/alfresco/jlan/server/filesys/TooManyConnectionsException.java
75155c080c318ed820396340cb179a2b7c3829b4
[]
no_license
surcloudorg/SurFS-NAS-Protocol
9a0e92872724f22bee4166d7a9abfe1623d383a4
cdce2b579f8864b008400c1d1789b0ad50549886
refs/heads/master
2020-04-06T06:42:59.272315
2016-04-22T09:31:07
2016-04-22T09:31:07
54,711,148
4
1
null
null
null
null
UTF-8
Java
false
false
1,832
java
/* * Copyright (C) 2006-2008 Alfresco Software Limited. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * This...
[ "root@localhost.localdomain" ]
root@localhost.localdomain
d17f1514c73c75b0f21b8d1366de2b712157e111
c33c04253e937e4a32c2dbec37ef0c005ab70882
/src/main/java/com/krealll/worklance/controller/command/impl/FindOrderCommand.java
d0ed6b46bdb0828de6e464255e84817ceec09abe
[]
no_license
Krealll/WorkLance
d02fb57b9817f363103f603b7a2a27c0fda271a2
550ff0ec86c5a5b45592d1cd6490b9469d3b992c
refs/heads/master
2023-03-09T06:14:14.049743
2021-02-16T18:09:12
2021-02-16T18:09:12
299,124,334
0
1
null
2020-12-16T20:15:47
2020-09-27T21:41:44
Java
UTF-8
Java
false
false
2,484
java
package com.krealll.worklance.controller.command.impl; import com.krealll.worklance.controller.PagePath; import com.krealll.worklance.controller.RequestParameter; import com.krealll.worklance.controller.command.Command; import com.krealll.worklance.controller.router.Router; import com.krealll.worklance.exception.Servi...
[ "krealll@mail.ru" ]
krealll@mail.ru
78777a419481367b63e1fb1fb7c75ccfb8730d5c
b3d363f55ea1a89cf1228671013579b11552dc6c
/src/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/RequiredFieldValidator.java
5356ffc73e7ea618a33d2b25dfa3693fdc4ebeae
[ "LicenseRef-scancode-freemarker", "Apache-2.0", "BSD-3-Clause", "BSD-2-Clause", "Apache-1.1", "LicenseRef-scancode-indiana-extreme", "EPL-1.0" ]
permissive
JavaQualitasCorpus/struts-2.2.1
b9770d1b366c7fc2616f68b4527a3248d6a0f52e
1012cc59d3973318b94c8a2afc997383945b1006
refs/heads/master
2023-09-01T06:32:45.448530
2020-06-02T18:14:20
2020-06-02T18:14:20
167,005,107
0
1
Apache-2.0
2022-12-15T23:29:28
2019-01-22T14:09:22
Java
UTF-8
Java
false
false
2,231
java
/* * Copyright 2002-2006,2009 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless requir...
[ "taibi@sonar-scheduler.rd.tut.fi" ]
taibi@sonar-scheduler.rd.tut.fi
3a3df6b87edfa7fdb9b5414ff139f865eeeb5636
304a72fc82ad198e30fd5a287dbd6b26da725bc3
/baseio-test/src/main/java/com/generallycloud/test/nio/fixedlength/TestFIxedLengthServer.java
bcbbdabf5800de5b0143860c7aa362a50bc0666c
[ "Apache-2.0" ]
permissive
ffjava/baseio
eb04d351df151a2177fa1be943fc8c3bd0549346
5a691f59732b756434bea7555d51c4e8ad6909ea
refs/heads/master
2021-01-19T17:09:57.521605
2017-08-22T03:27:48
2017-08-22T03:27:48
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,838
java
/* * Copyright 2015-2017 GenerallyCloud.com * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicabl...
[ "8738115@qq.com" ]
8738115@qq.com
17dc94eff84b2a309ac83111624afdc8cc106f9f
7a68bc2f98b26dbbbec5710562f7cbeeac90578e
/pm7/src/main/java/pm7/domain/Invoice.java
e71f11749d469864a9cba5085caf5b8fc3f29314
[]
no_license
tsws4s/tsw7
2d70f7a75b178fa60d4bbdd3f5202b897036f0b9
a0e0a380cf9750b3f627835f4d41e56ed8bde5b4
refs/heads/master
2021-01-18T14:01:32.731677
2013-12-03T04:52:09
2013-12-03T04:52:09
null
0
0
null
null
null
null
UTF-8
Java
false
false
14,262
java
package pm7.domain; import java.io.Serializable; import java.lang.StringBuilder; import java.math.BigDecimal; import java.util.Calendar; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.Id; import javax.persistence.NamedQueries; import javax.persistence.NamedQuery; im...
[ "tweiland44@f4e38ad5-1730-4f14-932f-3db32ab8bd7f" ]
tweiland44@f4e38ad5-1730-4f14-932f-3db32ab8bd7f
6db3bbee7ce26a0e8a9efad142e4622de72bff4c
10597b0787ab210e05ceec678e61a98bd9ff27fb
/src/test/java/bowling/FrameTest.java
3d902388a35fae2201c1a7c82ba71c4cf76647f5
[]
no_license
dmayo3/Bowling-Game-Kata
b6b3acca4b9ea9ac43b8c0c19ab5fffaf1cd84ad
63eabef9188d177bb3484e731c45a8a747e19ed6
refs/heads/master
2016-09-06T06:53:40.064652
2012-07-31T09:59:58
2012-07-31T09:59:58
5,244,165
1
0
null
null
null
null
UTF-8
Java
false
false
5,745
java
package bowling; import static com.google.common.collect.Lists.newArrayList; import static java.util.Collections.singletonList; import static org.mockito.BDDMockito.given; import static org.mockito.Matchers.any; import static org.mockito.Matchers.anyInt; import static org.mockito.Matchers.eq; import static org.mockito...
[ "dmayo3@gmail.com" ]
dmayo3@gmail.com
3d5465a6983c025e5eaa0216ab657392bd1a7851
44f2d0f5f2511148c59f0105b8b18e5dddfa00f7
/ESEO_API_REST/src/main/java/com/controller/TestController.java
6bfdd9cfe89688596fb04f9fa54a83672be9b86a
[]
no_license
julienblt/ESEO_TWIC
4e58ff0235c4855cb21199ed82cca39f20acc06b
c8c972481cb57921efd5281cb3408d5b27732868
refs/heads/master
2020-05-02T06:10:53.938280
2019-04-30T20:49:47
2019-04-30T20:49:47
177,788,863
0
0
null
null
null
null
UTF-8
Java
false
false
2,973
java
package com.controller; import java.util.Arrays; import java.util.List; import java.util.Map; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.ann...
[ "julien.blt314@gmail.com" ]
julien.blt314@gmail.com
cae58018f7786bf88f4372b3cfb8fac9dad5c479
00b960f0f03b682ba0bb7773294963461ce2b48d
/benworks-dp-all/src/main/java/com/cbf4life/proxy/XiMenQing.java
18a0bafaa8624c62ba4fc6b17105e0bec357c4bf
[]
no_license
aben328/benworks-dp
c9b9ff9868c792ed754ff494f9b0018c88346f2c
d1371011fb0b949346973c80a9255a3dcb77e20d
refs/heads/master
2020-04-25T07:28:12.047218
2015-10-24T02:18:29
2015-10-24T02:18:29
9,467,085
1
0
null
null
null
null
UTF-8
Java
false
false
1,030
java
package com.cbf4life.proxy; /** * @author cbf4Life cbf4life@126.com I'm glad to share my knowledge with you all. 定义一个西门庆,这人色中饿鬼 */ public class XiMenQing { /* 水浒里是这样写的:西门庆被潘金莲用竹竿敲了一下难道,痴迷了, 被王婆看到了, 就开始撮合两人好事,王婆作为潘金莲的代理人 收了不少好处费,那我们假设一下: 如果没有王婆在中间牵线,这两个不要脸的能成吗?难说的很! */ public static void main(String[] args...
[ "aben328@gmail.com" ]
aben328@gmail.com
d00da6ac27292a862e81142890f012a24f86bef1
6d3d7065ea6273a8c656817a4cc5edd1c91b17aa
/src/org/langke/data/imp/Recognize2.java
046444a62f26b969b17fdb38394ff6c3632cf39b
[]
no_license
langke93/mylib
65a850f20aa09bf72a643137ea55d463c0c8c903
e26a12c1487f4ec6f8ffbbe32c0eba064a0091a8
refs/heads/master
2020-03-27T03:00:10.945514
2018-10-11T08:11:21
2018-10-11T08:11:21
145,832,641
0
0
null
null
null
null
UTF-8
Java
false
false
2,174
java
package org.langke.data.imp; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import java.net.URL; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import javax.imageio.ImageIO; public class Recognize2 { static String url = "http://passport.csdn....
[ "langke93@163.com" ]
langke93@163.com
7f9bb6e41b628ce47d3237e1c25b1cbc95bd952d
0f93568373307c0b89492cf40e884fc45340bd7d
/we-web-parent/web-linyun-airline/src/main/java/com/linyun/airline/admin/fillinpdf/form/FillPdfAddForm.java
14d09716f0283a465d1ee7a629b43d1b04bf330c
[]
no_license
richardcjb/dubbo
4052a23e46ab2ad43b51412aeb63e707293f8f84
24dafc8d056f1bfd54334801b26de7f5b3a9e671
refs/heads/dubbo-dev
2021-01-20T03:29:23.085784
2017-04-28T07:27:20
2017-04-28T07:27:20
89,546,081
0
3
null
2017-04-28T07:27:20
2017-04-27T02:18:21
JavaScript
UTF-8
Java
false
false
1,125
java
package com.linyun.airline.admin.fillinpdf.form; /** * TAirlinePolicyAddForm.java * com.linyun.airline.forms * Copyright (c) 2017, 北京科技有限公司版权所有. */ import java.io.File; import lombok.Data; import lombok.EqualsAndHashCode; import com.uxuexi.core.web.form.AddForm; /** * TODO(这里用一句话描述这个类的作用) * <p> * TODO(这里描述这个...
[ "Richardcjb@163.com" ]
Richardcjb@163.com
4deeffc59baa5470de1dd62433f33480d025b013
0a404f92b370ac31e79d944694f3c5931d5a5aa3
/src/main/java/br/aplicacao/eletrica/dao/ConnectionFactory.java
5c9ac767d4d5f0065ffe64ca679201277d2e555e
[]
no_license
chrisprojetoseletricos/Eletrica7
e517f02abf59b3a01fa9aff52c56db6d2614ce03
4d1556caa6aa55d1279d1b5c969681bcfe82a65e
refs/heads/master
2020-04-01T02:25:09.245045
2018-10-15T17:02:37
2018-10-15T17:02:37
152,778,128
0
0
null
null
null
null
UTF-8
Java
false
false
1,106
java
package br.aplicacao.eletrica.dao; import java.sql.Connection; import java.sql.SQLException; import javax.persistence.EntityManager; import javax.persistence.EntityManagerFactory; import javax.persistence.Persistence; import org.hibernate.internal.SessionFactoryImpl; import org.hibernate.jpa.internal.EntityManagerImpl...
[ "chris@chris" ]
chris@chris
af2235e7749e4917711adb357ee863bc7875ae85
031d1b465dd1493a0f0cff22978099e5e095f59f
/src/main/java/com/github/libsgh/tieba/model/WatermarkType.java
bd9ea1df693348640b96f50427cc66dbd91a3ea2
[ "MIT" ]
permissive
tengfeilong/tieba-api
ce6178bad7357807bd7aedbf4c7776965b1fea76
e598716aa45327923076f1da27b46ab9d9806957
refs/heads/master
2023-01-22T13:00:09.026378
2020-11-21T03:25:12
2020-11-21T03:25:12
null
0
0
null
null
null
null
UTF-8
Java
false
false
469
java
package com.github.libsgh.tieba.model; public enum WatermarkType { NO_WATERMARK (1039999), //无水印 TIEBA_WATERMARK (1039998), //贴吧水印 PERSONAL_WATERMARK (1030001), //我的水印,无须购买也可使用 DECADE_WATERMARK (1030002); //十年有我,无须购买也可使用 private int code; private WatermarkType(int _code) { ...
[ "woiyyng@gmail.com" ]
woiyyng@gmail.com
68360781e5a1328b15578b70c1b04039628c44b6
98a68ca4f8f624dd14b7acc5d3acd0f76ba7624b
/repoapi/src/main/java/gov/ua/olevsk/upszn/entity/Bank.java
5269936ea863c88a3cac7027cf914997279c0159
[]
no_license
soroka-ihor/subsidii
c603405f2081e9257d9c052ac9ca00d81c172cea
e92c35ed9d9752b5b20e9a3b50611407a4011cfc
refs/heads/master
2022-07-15T14:53:18.506609
2020-04-30T10:16:07
2020-04-30T10:16:07
252,728,758
0
0
null
null
null
null
UTF-8
Java
false
false
1,000
java
package gov.ua.olevsk.upszn.entity; import javax.persistence.*; import java.io.Serializable; @Entity @Table(name = "bank") public class Bank implements Serializable { @Id @GeneratedValue @Column(name = "id") private int id; @Column(name = "mfo") private int mfo; @Column(name = "edrpou") ...
[ "soroka.igor.olegovych@gmail.com" ]
soroka.igor.olegovych@gmail.com
6bf1c7a943c8dd7b88ceffef5ad8ef6ea8b13a67
a33aac97878b2cb15677be26e308cbc46e2862d2
/data/libgdx/LocalRayResult_getHitFraction.java
5c99dd6a8a4c53a40996c5dabe5dc1dd9545cc19
[]
no_license
GabeOchieng/ggnn.tensorflow
f5d7d0bca52258336fc12c9de6ae38223f28f786
7c62c0e8427bea6c8bec2cebf157b6f1ea70a213
refs/heads/master
2022-05-30T11:17:42.278048
2020-05-02T11:33:31
2020-05-02T11:33:31
null
0
0
null
null
null
null
UTF-8
Java
false
false
106
java
public float getHitFraction() { return CollisionJNI.LocalRayResult_hitFraction_get(swigCPtr, this); }
[ "bdqnghi@gmail.com" ]
bdqnghi@gmail.com
d85085964dca4fd5c48dc9634591c06eb608a83c
3c5c40e5f6cef9bf37a55c6d506ba130a0e2114f
/gatlin-core/src/main/java/org/gatlin/core/condition/HttpCondition.java
0e2269efc6120fa58082097aa69ffafd512b1775
[]
no_license
723854867/gatlin
c9baf20bead5f0f431ede528b3927a984a9612d2
f7fdb191524db8ec72ad74998d253fb1010f82e9
refs/heads/master
2022-12-22T22:56:23.219346
2018-08-29T08:20:52
2018-08-29T08:20:52
127,830,582
0
1
null
2022-12-16T00:00:28
2018-04-03T00:59:12
Java
UTF-8
Java
false
false
296
java
package org.gatlin.core.condition; import org.gatlin.core.CoreConsts; public class HttpCondition extends GatlinCondition<Boolean> { public HttpCondition() { super(CoreConsts.HTTP_ENABLE); } @Override protected boolean checkCondition(Boolean value) { return value; } }
[ "723854867@qq.com" ]
723854867@qq.com
8f1d46add8128fc1b401122487f89b8e35a372cf
8af1164bac943cef64e41bae312223c3c0e38114
/results-java/apereo--cas/1c55f834d6692c23bcc9cb1e9ccec9c2bd51de63/before/OAuthCode.java
f6f52d5552c84ca973bf00cb10ef6d61cc13b854
[]
no_license
fracz/refactor-extractor
3ae45c97cc63f26d5cb8b92003b12f74cc9973a9
dd5e82bfcc376e74a99e18c2bf54c95676914272
refs/heads/master
2021-01-19T06:50:08.211003
2018-11-30T13:00:57
2018-11-30T13:00:57
87,353,478
0
0
null
null
null
null
UTF-8
Java
false
false
351
java
package org.jasig.cas.support.oauth.ticket.code; import org.jasig.cas.ticket.ServiceTicket; /** * An OAuth code (is like a service ticket without PGT grant capability). * * @author Jerome Leleu * @since 4.3.0 */ public interface OAuthCode extends ServiceTicket { /** * The prefix for OAuth codes. ...
[ "fraczwojciech@gmail.com" ]
fraczwojciech@gmail.com
4a1f79e00ce07b3462dd2800d74ce2822fd5dfa4
cafcb04eb7d163748c5b97840e3cf716e41e3a3d
/app/src/main/java/com/tsiro/dogvip/POJO/UserAccount.java
5bf9ca8d0fe91c4f834f1cb6bc56481aaec9cbee
[]
no_license
tsironis13/DogVip
0d9f9c1d2bab362c5cec968b65bc5dbb91e5b451
d81888a39523a4de2861cc9b0e0472e1bb445cb6
refs/heads/master
2021-01-23T01:21:03.735754
2017-11-03T17:55:44
2017-11-03T17:55:44
92,866,196
0
0
null
null
null
null
UTF-8
Java
false
false
417
java
package com.tsiro.dogvip.POJO; /** * Created by giannis on 21/6/2017. */ public class UserAccount { private String mtoken, email; public String getToken() { return mtoken; } public void setToken(String mtoken) { this.mtoken = mtoken; } public String getEmail() { r...
[ "gtsironis8@gmail.com" ]
gtsironis8@gmail.com
70e5a0098ad9ff2b52a11c75eddd2ee8826c9001
f09f9048192b47e5ec927a48ad5b132f1ebadbc0
/src/java/xrank/ms/scoring/results/PurificationParamsBasic.java
36a4032af84fba4e95675dcec83ca2e1f2c260c7
[]
no_license
rmylonas/XRank
85f21617401d2c558c314c51a05443d18a4cca2b
ee96ee3298cc6523257e1c57ec6b71fcb60ae4ab
refs/heads/master
2021-01-23T11:49:57.824796
2013-10-21T21:29:29
2013-10-21T21:29:29
13,755,644
1
0
null
null
null
null
UTF-8
Java
false
false
487
java
package xrank.ms.scoring.results; /** * The parameters used by * * @author roman * */ public class PurificationParamsBasic extends PurificationParams { private Double pValueThreshold = null; private Integer id; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } ...
[ "romanoman@gmail.com" ]
romanoman@gmail.com
f2cf244a463f9cfb0d48848a487bffb9495d0118
608b8cd1b822b95e152123f4bc85d804a41528d3
/SM.jegm.Biblioteca/src/sm/jegm/iu/LienzoImagen2D.java
741ad92b9ae8df435b89db0f3a95df12e8b9a567
[]
no_license
juane619/multimediaapp
beb1069c2b2b55f8dc1a4641c74b4662dc616dd9
74888628eaad31cdcacd6f161723d16860b47fbf
refs/heads/master
2022-11-19T09:33:02.173827
2020-07-03T12:24:54
2020-07-03T12:24:54
276,892,391
0
0
null
null
null
null
UTF-8
Java
false
false
2,784
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package sm.jegm.iu; import java.awt.BasicStroke; import java.awt.Dimension; import java.awt.Graphics; import java.awt.Graphics2D; impo...
[ "juane_619@hotmail.com" ]
juane_619@hotmail.com
f1e019b6aee29ff6e63d910e27b46bac255b7f11
bdb5a8b5bc838c12936dfc4ec851a91b14612a50
/src/test/java/org/example/K7/MaxDif/MaxDiffTest.java
b2ba473623a4560592d2e68efa8d90261d5a91f0
[]
no_license
MarcinKrzciuk/CodeWars
b92506b7aca4a067d5abc3e8fc3b8d140717d059
a84be6e98845738d80b1ec9db7c68c335f0e43cb
refs/heads/master
2023-07-28T18:22:38.445057
2021-09-14T09:30:52
2021-09-14T09:30:52
358,129,759
0
0
null
null
null
null
UTF-8
Java
false
false
592
java
package org.example.K7.MaxDif; import org.junit.Test; import static org.junit.Assert.*; public class MaxDiffTest { @Test public void BasicTests() { assertEquals("only positives", 4, Kata.maxDiff(new int[]{ 1, 2, 3, 4, 5, 5, 4 })); assertEquals("only negatives", 30, Kata.maxDiff(new int[]{ -4...
[ "67062802+MarcinKrzciuk@users.noreply.github.com" ]
67062802+MarcinKrzciuk@users.noreply.github.com
21a4f08188cd9de140ec56ff2bb1908f7e336b4b
b8f4e0756681daab91a7f9341318d288f7dc05cd
/src/castle/controllers/CastleMouseListener.java
433c90d3891c74aba2c5c8c1fcbc28790fbdaff7
[]
no_license
ddcaeste/Castle
6ee9852d6f78a7b89d5748716ffa9987c60c4d37
9dcc9c8377635776d382ba359d02b855d1d17d3b
refs/heads/master
2021-01-18T15:22:21.440225
2011-09-14T22:12:59
2011-09-14T22:12:59
2,379,894
0
0
null
null
null
null
UTF-8
Java
false
false
1,100
java
package castle.controllers; import castle.models.CastleModel; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; import java.awt.event.MouseMotionListener; /** * * @author Dieter Decaestecker */ public class CastleMouseListener implements MouseListener, MouseMotionListener { private CastleM...
[ "rancga@hotmail.com" ]
rancga@hotmail.com
9b5b5292d4cd062bb9996dd6dae382b0d0f6f069
0eb8baaf31e0234e2a4c3dab86a97c3fb6acf688
/SnapNSplit/app/src/main/java/com/example/sony/snapnsplit/Service_Trail.java
6560211e13bc06913a594eba2658cf2ca1baf939
[]
no_license
Yamini25/SnapNSplit
c2f045699aea0935e741419021e971fd27f4cd50
deea4090f96b8d90be475a6dc0dee3860c9b4336
refs/heads/master
2021-01-10T14:34:51.964502
2016-03-12T11:09:35
2016-03-12T11:09:35
53,736,141
0
0
null
null
null
null
UTF-8
Java
false
false
5,653
java
package com.example.sony.snapnsplit; import android.content.Intent; import android.content.SharedPreferences; import android.os.AsyncTask; import android.os.Handler; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.widget.Toast; import org.apache.http.HttpEntity; import org.ap...
[ "yaminigarikipati25@gmail.com" ]
yaminigarikipati25@gmail.com
98cb021493d47c7a0e1c8b071d156c99e6fde49c
8b9b3e552b955fef442fcdbc06c31e4279286e57
/src/GammaJoins/gammaSupport/gammaSupport/Tuple.java
9719c1727dd0b0805fa93036090b5f0d72a5cadc
[]
no_license
beijingliuyang/GammaJoins
300e40a6245369ca73305cd57dcdb83054f61f8b
efbf84079792caa3676a4c70d4240e3fa720d02f
refs/heads/master
2021-01-10T13:23:17.404685
2015-12-20T17:11:10
2015-12-20T17:11:10
48,329,874
1
0
null
null
null
null
UTF-8
Java
false
false
2,607
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package gammaSupport; import java.util.*; /** * * @author dsb */ public class Tuple { // serialized tuples have their fields separated by this character private static String separator="#"; // a tuple ...
[ "so@so-PC" ]
so@so-PC
be42e628929f49e8842bc54a8d246560fff6583f
59650abb27b4a16f9b43982b7f98949f4db636d5
/src/java/Kino/Aktualnosc.java
2e6990b876fce40807dd2f19f91e970c81b4fa30
[]
no_license
ArekerA/Kino
d34140c2a9408909070baffb6861e26e35ea5f4d
3b7d136ccfd4ec51c125be53a540e5a2ce9ff2da
refs/heads/master
2020-03-10T14:51:20.176838
2019-02-21T16:37:39
2019-02-21T16:37:39
129,436,649
1
2
null
null
null
null
UTF-8
Java
false
false
1,307
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Kino; /** * * @author Arekl */ public class Aktualnosc { private int id; private String data; pri...
[ "Arek.ludwikowski@hotmail.com" ]
Arek.ludwikowski@hotmail.com
93c9f305fcc48e69d0387151c089616bff511002
3927772253fa3e8f5a1797dcb57042f9eea94767
/Java/task3104/Solution.java
48138aec3f5a514f0d2182f2d3bc01302b366ccb
[]
no_license
black3snake/MaxoPolo
281005fd0051185568fec45e123f98dbcd94273a
42d41ebece8215e9d8e61f98d3171ee810d8e26a
refs/heads/master
2023-06-24T12:43:51.137395
2023-06-07T08:45:19
2023-06-07T08:45:19
229,185,319
0
0
null
null
null
null
UTF-8
Java
false
false
1,720
java
package com.javarush.task.task31.task3104; import java.io.IOException; import java.nio.file.*; import java.nio.file.attribute.BasicFileAttributes; import java.util.ArrayList; import java.util.EnumSet; import java.util.List; /* Поиск скрытых файлов */ public class Solution extends SimpleFileVisitor<Path> { public...
[ "puhov.mv@rgufk.ru" ]
puhov.mv@rgufk.ru
a31c5b91016de87a68d00e30e26d6ecf4d1d808b
308d55898c891bf8702b537b125378b8885e289b
/geode-core/src/main/java/org/apache/geode/internal/config/VersionAdapter.java
15fd53ccbd242d2217708debe6aa012dc855a0aa
[ "BSD-3-Clause", "MIT", "Apache-2.0", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "LicenseRef-scancode-unknown" ]
permissive
apache/geode
6913469dd6c8805a4a7c9ad606efb99fe831a646
e4e0aee30c14cff039d39a7dc79c1263aa1bef22
refs/heads/develop
2023-09-03T23:56:44.728138
2023-07-13T10:16:12
2023-07-13T10:16:12
34,839,383
1,646
582
Apache-2.0
2023-08-19T01:03:46
2015-04-30T07:00:05
Java
UTF-8
Java
false
false
1,129
java
/* * Licensed to the Apache Software Foundation (ASF) under one or more contributor license * agreements. See the NOTICE file distributed with this work for additional information regarding * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the * "License"); you may not ...
[ "noreply@github.com" ]
apache.noreply@github.com
e6ecdc9c81e820a5ff5809488911d76efa693257
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/2/2_1c41f83305817e14c9a9d2af2458ab24aaecc90c/PlayerInjector/2_1c41f83305817e14c9a9d2af2458ab24aaecc90c_PlayerInjector_s.java
5f7b7c7b5fecbb44e3592e19325cd7dc595d9fe8
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
9,385
java
/* * ProtocolLib - Bukkit server library that allows access to the Minecraft protocol. * Copyright (C) 2012 Kristian S. Stangeland * * This program is free software; you can redistribute it and/or modify it under the terms of the * GNU General Public License as published by the Free Software Founda...
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
7961c5c6f932d9fbf88c2ef0dcb70b254b48c6a7
3f49e0b17ce8d9abfdb45fa9faa2f923214373e0
/src/main/java/co/com/mutant/recognition/core/DNAValidator.java
41beff73dbfbaed22a3ae6c7601346a4c69c118b
[]
no_license
harrysanchez1984/recognition
db7f84fda092c9d845e90faac8265ebb0ccdeb71
4f4c68732c4a28b165ed2c8fa7562f2e21f8b91d
refs/heads/master
2023-03-20T10:37:32.154106
2021-02-26T19:06:25
2021-02-26T19:06:25
341,217,940
0
0
null
null
null
null
UTF-8
Java
false
false
2,805
java
package co.com.mutant.recognition.core; import java.util.stream.Stream; import co.com.mutant.recognition.enums.Directions; import co.com.mutant.recognition.enums.ValidSequences; public class DNAValidator { private final String[] dna; private final int dnaSize; private int row, col; private int rowStart, colStar...
[ "sanchezharry@javeriana.edu.co" ]
sanchezharry@javeriana.edu.co
ebb1ba4d4e7d836bb9e53f6348ea7908c99d16e7
c054325698e4a3456bfb668e1dff8e10d33fd8b9
/server/src/main/java/com/agar/security/package-info.java
e652b7727e8e1ff0c93bc819112fda7ba03531d1
[]
no_license
agarwasg/A10Dance
4074bfd66e2dfa2a4fa75e2627c8162ffb38c2c5
560007ab3be24a70e64a25346ab68219fac89f9e
refs/heads/master
2021-01-19T01:56:36.132916
2016-07-03T05:43:36
2016-07-03T05:43:36
33,460,010
0
0
null
null
null
null
UTF-8
Java
false
false
69
java
/** * Spring Security configuration. */ package com.agar.security;
[ "saket@doubledutch.me" ]
saket@doubledutch.me
988454f45f93262d72da66cabad744249e47381c
f3ea26555036fb0bb1a4766178b6daa672846c00
/mvcProject/src/com/site/board/entity/BoardDTO.java
644a2ec5777f24bc7a20bce5139e2934f4b26323
[]
no_license
davys88/davyProject
67d90f1b7f8bc62d7edde169ed991f25d060f8f3
23ebe0484a80521ceb21b49b8265b2e8a1446c0d
refs/heads/master
2021-01-10T12:49:17.443324
2016-01-20T05:23:14
2016-01-20T05:52:30
50,001,635
0
0
null
null
null
null
UHC
Java
false
false
2,273
java
package com.site.board.entity; import com.site.common.entity.CommonDTO; public class BoardDTO extends CommonDTO { private int num; //글 번호 private String author; //글 작성자 private String title; //글 제목 private String content; //글 내용 private int readcnt; //글 조회수 private String wri...
[ "davys88@gmail.com" ]
davys88@gmail.com
0779a86808d028294ae4459d5003c34cb843d98b
6258d599b611727aeb36b3b3d7e0605f07394d85
/PWIServices/src/com/pwi/services/framework/ServiceExecutor.java
e7fc19fa9407d5178d6b329f9fae3006017c79b8
[]
no_license
muhammadwaqarkhan/PWI-Web
aed64a59883299908128f3d29f5abd55e3e98923
fec83c81f794f48440c28738691b5706786e03f7
refs/heads/master
2021-07-15T05:06:35.843518
2017-10-21T08:12:47
2017-10-21T08:12:47
106,362,235
0
0
null
null
null
null
UTF-8
Java
false
false
8,076
java
package com.pwi.services.framework; import java.lang.reflect.Method; import javax.sql.DataSource; import org.apache.commons.lang.StringUtils; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.Transaction; import org.springframework.jdbc.core.JdbcTemplate; import org.s...
[ "muhammadwk786@gmail.com" ]
muhammadwk786@gmail.com
462bfad3cb3b13fe2ffd2a29dda3a6cc71fa56ba
104901f8b1261712d2a4e6f62cfddf4274a96b7b
/DailyTraining/JDBC/src/main/java/com/Revature/util/ConnFactory.java
23bf50478b8b43af3ae0abf4a3abe40263803552
[ "MIT" ]
permissive
2010USFJava/CarlsonA
ea17d76f4052177a010805c0fe1cabd5e0a1fbde
891dcde9185696452b5f9d0abe74f0ef77b205c4
refs/heads/main
2023-01-13T16:16:16.795982
2020-11-17T22:40:16
2020-11-17T22:40:16
305,754,531
0
0
MIT
2020-11-02T20:24:00
2020-10-20T15:35:52
Java
UTF-8
Java
false
false
1,136
java
package com.Revature.util; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.util.Properties; public class ConnFactory { //singleton factory //priavte static instance of ...
[ "mounkeygirl@yahoo.com" ]
mounkeygirl@yahoo.com
a9388b6f2262037d4936e8024add8fe7a052329e
89273830bc3230dfdee1a04121750740bebe4863
/src/fr/formation/exo12/Terrain.java
6c13b27ee1f6499cb8f9ecf2ac9e5e5a06c12ef3
[ "MIT" ]
permissive
Kunkkaa/formation-exercices
49776fb698fe48e62cce314b523d32c6dab433fe
ce386b7b16e16f1c2fc48e1b66ceaecbea8fb6a6
refs/heads/master
2020-04-11T07:59:54.157073
2018-10-31T16:10:18
2018-10-31T16:10:18
null
0
0
null
null
null
null
UTF-8
Java
false
false
693
java
package fr.formation.exo12; public class Terrain extends Card { public final char color; public Terrain(char color) { super(0); this.color = color; System.out.println("Un nouveau terrain."); } private String getColorName() { String color = null; switch (this.color) { case 'b': color = "bleu"; b...
[ "elvynia@gmail.com" ]
elvynia@gmail.com
af5acd2e3014cd588a15e42c05cea5530cab03f2
543ab8fc29e5766f1f47b1ce0a28b19e1db6f2a6
/src/main/java/com/bridgei2i/vo/TemplateChart.java
73da36372cc04cb3d07b50c347e91c6fa11f7475
[]
no_license
chaitaya/skuPlanningtool
52dfffbdf6b64200b787df15b2d3b75a86676646
f9733ea3b4d7aad634dd9b08eb11151fbf55a1de
refs/heads/master
2021-01-10T13:34:55.531099
2015-12-24T07:12:26
2015-12-24T07:12:26
48,529,882
0
0
null
null
null
null
UTF-8
Java
false
false
15,001
java
package com.bridgei2i.vo; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; import java.util.Arrays; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; i...
[ "krishna.thota@bridgei2i.com" ]
krishna.thota@bridgei2i.com
f86f4459048019a7b270f142f06c6f23c3f44d85
6915b561ec1d3f4340193e7c7baaf817f6d9c969
/reservation-service/src/test/java/com/example/reservationservice/ReservationRepositoryTest.java
cd4daf92f8c89d44aed25ce77bc508daf613b29d
[]
no_license
davidhay/bootiful-testing
fd06f6959a0b04457c0e79ba30b3cf4efa45b531
a99ecbcf56902583c60a9ab3bee3faba743e3ec9
refs/heads/master
2020-07-28T10:11:30.743950
2019-09-18T19:41:13
2019-09-18T19:41:13
209,389,839
0
0
null
2019-09-18T19:39:11
2019-09-18T19:39:11
null
UTF-8
Java
false
false
1,232
java
package com.example.reservationservice; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.data.mongo.DataMongoTest; import org.springframework.test.context.junit4.SpringRunner; import reactor.core.pu...
[ "josh@joshlong.com" ]
josh@joshlong.com
5598e4085314639d06b16a6540ab1b215039c8c9
3eeeaf4a85b1145390c6a01a329ff4b7b8f5799a
/src/main/java/org/jopendocument/util/i18n/I18nUtilsTest.java
7bb2342d2a05e9142bb69e8e7e6efffd485152bf
[]
no_license
tomvieira/jOpenDocument
33c0e4e3b5bb0807007829fd53aa75b26f42cba0
06886b1a25195e8c058dd91761ccc26c0fcf1d57
refs/heads/master
2021-11-26T20:04:06.917894
2021-11-10T18:38:36
2021-11-10T18:38:36
132,905,167
0
0
null
null
null
null
UTF-8
Java
false
false
1,122
java
/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 2008-2013 jOpenDocument, by ILM Informatique. All rights reserved. * * The contents of this file are subject to the terms of the GNU * General Public License Version 3 only ("GPL"). * You may not use this file except in compli...
[ "wellington.analista@gmail.com" ]
wellington.analista@gmail.com
69563d1391a880a1dff75f9f7c87d62820871f70
42392670d1b400a6eaaabcf15aae8cef8fa69e8a
/Matrix.java
a2effa92d4f757eeb0add93c9f5364acf3ccf0a9
[]
no_license
WangWillis/SnakeBot
725dff25612f62439477e6c807c4052b6f7404cb
edcc7d4d98a4d56efb8dde6b26baf59472b9ee0b
refs/heads/master
2021-01-22T22:49:26.793180
2017-08-09T00:21:33
2017-08-09T00:21:33
85,582,872
0
0
null
null
null
null
UTF-8
Java
false
false
1,622
java
public class Matrix{ private int[][] mtrx; public static Matrix mult(Matrix mx1, Matrix mx2){ //check for valid input if(mx1 == null || mx2 == null) return null; //get the int datafields to make multiplication easier int[][] m1 = mx1.getMtrx(); int[][] m...
[ "willis257@gmail.com" ]
willis257@gmail.com
264ba0bfc1610c742e7bf9c844a2b3194bda9b06
083d12b1678dfc4fab113a401b9d52f51703ed9a
/src/java/login/Chirp.java
a8e151385f59426961fa3ca9a92da539404fbe53
[]
no_license
will35488/Micro-Blogging-Web-Site
feca31ba3d9c910aecd8a0163ff013fd7fd0b17e
9627a4f3c98307dbba682897d3c1cf50595ffb05
refs/heads/main
2023-08-22T21:52:55.018970
2021-10-07T00:32:29
2021-10-07T00:32:29
414,408,450
0
0
null
null
null
null
UTF-8
Java
false
false
2,500
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package login; import java.io.Serializable; import java.util.Date; import javax.persistence.Entity; import javax.persistence.Generated...
[ "77642117+will35488@users.noreply.github.com" ]
77642117+will35488@users.noreply.github.com
a9f81b9b05e2f6ec45c17557670a1f8597b45237
b767e6a2cddee4cca34d2d131f4075c899c647f6
/src/test/java/com/congressodeti/calculadoradesalarios/service/CalculoPJSimplesTest.java
70ce3a8cd7d6113c8bea722164d74095bbfb1394
[]
no_license
AlissonMedeiros/calculadora-de-salarios
a194302341fac13994234cbed1f2ce9a951ef8e7
57d7a780d68c4dfd267e1e7e5cc7c1fa9d791e14
refs/heads/master
2020-03-24T05:32:24.141153
2018-07-27T02:01:19
2018-07-27T02:01:19
142,492,775
2
1
null
null
null
null
UTF-8
Java
false
false
827
java
package com.congressodeti.calculadoradesalarios.service; import org.junit.Ignore; import org.junit.Test; import com.congressodeti.calculadoradesalarios.service.passos.DadoBeneficio; import com.congressodeti.calculadoradesalarios.service.passos.EntaoVerificaValor; import com.congressodeti.calculadoradesalarios.service...
[ "alisson.medeiros@gmail.com" ]
alisson.medeiros@gmail.com
ae857919d76edca117dd86d3ad08a17cbb2f5da4
0467c404056962518dfa5e9a266a4def52f4499f
/week4-078.ClockUsingCounter/src/Main.java
4ee915ece0b9d2dc92bfcc04d4734bde77b55d34
[]
no_license
zhovner88/mooc.fi-java-helsinki-I
6018b5016afa280e4b40b4574a9821977449d2c0
b2bcf8ce123015b09a71f1ecd2497aa573a594e5
refs/heads/master
2021-07-24T19:25:31.946564
2018-12-26T13:00:12
2018-12-26T13:00:12
147,545,529
0
1
null
null
null
null
UTF-8
Java
false
false
1,232
java
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner reader = new Scanner(System.in); // write here code to ensure that BoundedCounter works as expected // before starting 78.3 remove the extra code and use the skeleton shown // in the ass...
[ "denys.zhovnerovych@gmail.com" ]
denys.zhovnerovych@gmail.com
8d57be4380d7c85790b6649806c1930ed1f7e7ed
6a09bd992584556d6799fd180625e03ed841a489
/src/pbo3/HitungBidang.java
0e6a27e0be6a86e7a736fabd6e783d0cd2b2632a
[]
no_license
prudenca08/PPBO3
bb948823ea9ce2c3507812f7f76a2509defc2552
62a6c527924fc4382d7cbe6a1d8dcca789b214f0
refs/heads/main
2023-04-11T17:51:10.000086
2021-05-10T12:29:54
2021-05-10T12:29:54
366,035,188
1
0
null
null
null
null
UTF-8
Java
false
false
158
java
/* * PRUDENCA AHMAD DAFFA KURNIA * 123190005 */ package pbo3; public interface HitungBidang { double hitungKeliling(); double hitungLuas(); }
[ "prudencaahdaffa08@gmail.com" ]
prudencaahdaffa08@gmail.com
c0df9114c496a1fc9117859512bdbf026a2faac8
7d8a217b8c2ceb7a8f7ceca2ade2ba83f66e3f20
/app/src/main/java/demo/liuchen/com/zhihudiary/view/IViewMain.java
f3e56a820b5953d843cac6156980e5fee4fa1e49
[]
no_license
hylinslove/ZhiHuDaily
f6360f51dfc6d62f3b06f2b5e078434d6f1083eb
126d2edd6493672ccc9901615ca6ac9f05ff9bb7
refs/heads/master
2021-05-02T02:01:31.692180
2017-06-20T04:51:20
2017-06-20T04:51:20
72,899,154
5
0
null
null
null
null
UTF-8
Java
false
false
475
java
package demo.liuchen.com.zhihudiary.view; import demo.liuchen.com.zhihudiary.modle.bean.BeforeBean; import demo.liuchen.com.zhihudiary.modle.bean.NewsBean; /** * Created by meng on 2016/11/3. */ public interface IViewMain { void bannerDataGot(NewsBean bean); void newsDataGot(NewsBean bean); void dataG...
[ "763577618@qq.com" ]
763577618@qq.com
61b4158e615ea6348232f9244429a71b413eb84e
dc09046f25d4566f2263a26b39bca468ca8df0d2
/toolbox/src/toolbox/plugin/jsourceview/PieChart.java
f9cfa7b5a09d8d56fbf66c4f6d8569abe46885a2
[]
no_license
infernuslord/javatoolbox
3fc6ae405203548dd8c5be2a3d76a10220c75e9c
46a16c8556573a418a462ed5a6e2e89e5aa67159
refs/heads/master
2021-01-22T02:47:48.065344
2008-09-18T06:28:00
2008-09-18T06:28:00
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,003
java
package toolbox.plugin.jsourceview; import java.awt.BorderLayout; import java.text.NumberFormat; import javax.swing.JPanel; import javax.swing.UIManager; import org.jfree.chart.ChartFactory; import org.jfree.chart.ChartPanel; import org.jfree.chart.JFreeChart; import org.jfree.chart.labels.StandardPieSectionLabelGen...
[ "analogue@1d61b40d-8c4a-0410-a6ba-a5e3ed80748e" ]
analogue@1d61b40d-8c4a-0410-a6ba-a5e3ed80748e
b0ac8940f7d6e27f6154cddd0173a9623a644cde
0d1835c1fbfe08dad1d59cd1f6261e706146e609
/CardioMRI/src/com/pixelmed/dicom/StoredFilePathStrategySingleFolder.java
6fba72c39c813bd0f11f3bd40d673c44c6f02e20
[ "LicenseRef-scancode-warranty-disclaimer" ]
no_license
inevitably2484848/MRI
c57dc4313b06f47796e7ac6b200485b20af04d66
2185d5a9dcbe4cca09dcce49d43b77df35677f84
refs/heads/master
2021-01-14T08:25:25.978877
2016-04-27T19:31:10
2016-04-27T19:31:10
29,896,364
2
2
null
2015-11-30T23:39:51
2015-01-27T03:53:59
Java
UTF-8
Java
false
false
1,429
java
/* Copyright (c) 2001-2013, David A. Clunie DBA Pixelmed Publishing. All rights reserved. */ package com.pixelmed.dicom; import java.io.File; /** * <p>Store files in a single folder, using the SOP Instance UID as the filename.</p> * * <p>This is not a good strategy, since having too many files in a singl...
[ "mhd0003@auburn.edu" ]
mhd0003@auburn.edu
939c0e6052c0637eb300c0b38c629a7452ad0c8b
7d622de6755c886df7c014551f5eb5624378ea74
/src/edu/arizona/cs/mrpkm/kmerfreqcomp/PairwiseKmerFrequencyComparatorTOC.java
2337da0931389abbd9e64c6ab8753cfda1995cd9
[]
no_license
iychoi/MR-PKM
f0c8caf7e3bfb3a1b47d8449ed7b893113d8885f
903f04c17326c92c73389b52e3e430bd04b706f9
refs/heads/master
2020-05-19T09:35:50.544923
2015-05-08T09:52:59
2015-05-08T09:52:59
22,664,930
1
1
null
2015-05-06T19:25:06
2014-08-06T01:06:16
Java
UTF-8
Java
false
false
3,051
java
package edu.arizona.cs.mrpkm.kmerfreqcomp; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; import java.util.ArrayList; import java.util.Hashtable; import java.util.List; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.h...
[ "iychoi@email.arizona.edu" ]
iychoi@email.arizona.edu
97204411ac938ad3c0d1fe4e5d8c3adab5bd7ae4
df3d089799e0d73e702b289f0734f36c1f112236
/certification/src/com/oracle/ocpjp/ch08/format/ScannerTest.java
f9070d1581f57558121ce6c90d4c09c0aee29af6
[]
no_license
cepp/certocpjp
177d75a4273aaccc78f1f70e99afc06b240265a5
f085252d37880b480e7445a1b708bb8ef0b11525
refs/heads/master
2021-01-20T00:11:06.108030
2017-03-08T20:24:11
2017-03-08T20:24:11
83,795,389
0
0
null
null
null
null
UTF-8
Java
false
false
645
java
package com.oracle.ocpjp.ch08.format; public class ScannerTest { public static void main(String[] args) { boolean b2, b; int i; String s, hits = " "; java.util.Scanner s1 = new java.util.Scanner(args[0]); java.util.Scanner s2 = new java.util.Scanner(args[0]); while(b = s1.hasNext()) { s =...
[ "ceppantoja@gmail.com" ]
ceppantoja@gmail.com
d08411b1c4101e6873d3f7fc07d73ea72689dcc0
ba44e8867d176d74a6ca0a681a4f454ca0b53cad
/component/entity/PaletteRelationshipCW.java
e376cff9fb254fe22139cbf0bb770631e7835b11
[]
no_license
eric2323223/FATPUS
1879e2fa105c7e7683afd269965d8b59a7e40894
989d2cf49127d88fdf787da5ca6650e2abd5a00e
refs/heads/master
2016-09-15T19:10:35.317021
2012-06-29T02:32:36
2012-06-29T02:32:36
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,218
java
package component.entity; import com.rational.test.ft.object.interfaces.GefEditPartTestObject; import com.sybase.automation.framework.widget.DOF; import component.entity.model.VerificationCriteria; import component.entity.wizard.IWizard; public class PaletteRelationshipCW extends RelationshipCW { @Override public ...
[ "eric2323223@gmail.com" ]
eric2323223@gmail.com
aaeaa6d33117a119c16b2da556bf8e3a1ead7ebd
4025af4d2bacf3568cfdd55d85573ed26d606236
/mybatis-3.5.2/src/test/java/org/apache/ibatis/type/SqlDateTypeHandlerTest.java
5c8cc6b3186472c69bfe951ba33f39bf53effbfb
[ "BSD-3-Clause", "Apache-2.0" ]
permissive
MooNkirA/mybatis-note
f3e1ede680b0f511346a649895ae1bf71c69d616
25e952c13406fd0579750b25089d2cf2b1bdacec
refs/heads/master
2022-03-04T20:11:26.770175
2021-12-18T02:31:10
2021-12-18T02:31:10
223,528,278
0
0
null
2021-12-18T02:31:13
2019-11-23T04:04:03
Java
UTF-8
Java
false
false
2,401
java
/** * Copyright 2009-2021 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unle...
[ "lje888@126.com" ]
lje888@126.com
e857681b0e379bbe806d033861a428f1ad67c70f
86ad640dfe88d41195b7cd55f0e509ede4938daf
/src/main/java/test/Application.java
009df1bb8d5f6782fcce96a66e09c87dfdc82593
[]
no_license
HibaZouhid/AOPAspectJ
b7fb1976074515c6b472695b8f98586f9df72808
95a0c099b02e0eceea3d1cf0ef7ce5730086cf43
refs/heads/master
2023-02-10T01:10:02.119272
2021-01-06T22:39:48
2021-01-06T22:39:48
327,445,252
0
0
null
null
null
null
UTF-8
Java
false
false
1,122
java
package test; import beans.Client; import beans.Compte; import java.util.Scanner; public class Application { public static void main(String[] args) { System.out.println("TEST"); Scanner scanner=new Scanner(System.in); System.out.println("nom"); String name=scanner.nextLine(); ...
[ "zouhidhiba@gmail.com" ]
zouhidhiba@gmail.com
00e503f5c6de1fdc426ec730f7a18e9ec6e86cf4
3a15a1e75ac7a03afbfb13674c684dae6d2c423e
/app/src/androidTest/java/nl/hva/msi/bucketlist/ExampleInstrumentedTest.java
b63cd397b1f81611e76ff95eeb0a3df2b5d2d32c
[]
no_license
Maicelicious/Level_4_Assignment_BucketList
0a4544fefa204eb171037707f0f1cadcb871d5aa
d59692411891436ad9f804102b6fe46b8160c4fe
refs/heads/master
2020-04-28T04:50:48.655753
2019-03-11T12:35:53
2019-03-11T12:35:53
174,996,343
0
0
null
null
null
null
UTF-8
Java
false
false
726
java
package nl.hva.msi.bucketlist; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android d...
[ "marco.simeth@hva.nl" ]
marco.simeth@hva.nl
b63db81eadf759c0fd4c0f7ab9cc19c705d4c97b
549673f26216390810c05001962002d9084e5a5d
/src/main/java/com/rlk/mi/service/UserAccountServiceImpl.java
738f8db661f0dfe097a476fc3301adf99ecb5bf3
[]
no_license
hglemon/springmvc-mybatis
714840fcd9cf0d76a4601a4aa521c58e9bcab177
d4d5528f60f4d964728ab7d5e9b67995759dc3e3
refs/heads/master
2021-01-20T11:45:22.866258
2015-06-25T09:55:15
2015-06-25T09:55:15
38,040,740
0
0
null
null
null
null
UTF-8
Java
false
false
175
java
package com.rlk.mi.service; import org.springframework.stereotype.Service; /** * Created by lifei.ding on 15-6-25. */ @Service public interface UserAccountServiceImpl { }
[ "lifei.ding@reallytek.com" ]
lifei.ding@reallytek.com
03c1a4171139fa2591ba370abc35acb0219b5278
b07650544c1fa14785bed65400c0bef34c3c6182
/mr/src/main/java/org/elasticsearch/hadoop/util/FieldAlias.java
bd58cf620f901926c40fab1c4c8e2f29320ec57c
[ "Apache-2.0" ]
permissive
gitbbrid/elasticsearch-hadoop
bbbd31610bc00b4442ceb1bb5208726978d6b137
93edc7219b2818430c8b100377d27c719585b363
refs/heads/master
2021-05-29T16:25:16.400285
2015-06-12T18:00:44
2015-06-12T18:00:44
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,765
java
/* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this fi...
[ "costin.leau@gmail.com" ]
costin.leau@gmail.com
4a614b8c6a37d24b625bbfd460dc764c04d565f5
828ac54c9b7090a0831fce36508fef4cba0091c3
/src/test/java/com/waynik/lambda/monitor/findAbsentUsersTest.java
671b35e610c488a94b5d32ad39528040d34ceecf
[]
no_license
dadeg/waynik-lambda-monitor
6772c51d6d284888743607df5b3a654895b624e7
76a4c42ae4c7465b8aec4bf376e8ca130d30d967
refs/heads/master
2021-05-02T18:29:50.946557
2018-02-07T19:59:30
2018-02-07T19:59:30
120,664,682
0
0
null
null
null
null
UTF-8
Java
false
false
1,051
java
package com.waynik.lambda.monitor; import java.io.IOException; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; import com.amazonaws.services.lambda.runtime.Context; /** * A simple test harness for locally invoking your Lambda function handler. */ public class findAbsentUsersTest { ...
[ "daniel_degreef@condenast.com" ]
daniel_degreef@condenast.com
6055018f7baae71f726c75c613f2ff168cd2b1d9
ae25a3e809a6b81ea384159ebc843903e9c1f1e0
/src/main/java/com/orangeblue/springbootaws/domain/user/User.java
2f48f1aab3abd8f415780e6c3400e09d71dadb46
[]
no_license
arangeblue/springboot-aws
eef555f933bd6a5e3b70182c77ab3d021ae2d696
3441c6f424aec50660336d158c60c976c659fe2b
refs/heads/master
2023-07-25T00:52:45.918296
2021-09-07T13:06:27
2021-09-07T13:06:27
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,277
java
package com.orangeblue.springbootaws.domain.user; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EnumType; import javax.persistence.Enumerated; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import com.orangebl...
[ "black1848@naver.com" ]
black1848@naver.com
1586a8e59e57dfd77e1e29bcf4e2d68c71a9b7a7
76f3cfa06e16f7e1a3ed20cb921cf4ad82f8b659
/src/main/java/net/stupkin/jm_spring_boot/JmSpringBootApplication.java
29a8be93a5272ae8bda1df0b36375fd065238224
[]
no_license
doChoice/jm_spring_bootstrap
8f09d576c19e49e1d197ea6996bdd3450e6112f4
900a4afc650373cd594f2efdfcc9989c6dd660c4
refs/heads/main
2023-05-31T00:37:49.910073
2021-07-09T10:17:08
2021-07-09T10:17:08
376,527,747
0
0
null
null
null
null
UTF-8
Java
false
false
344
java
package net.stupkin.jm_spring_boot; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class JmSpringBootApplication { public static void main(String[] args) { SpringApplication.run(JmSpringBootApplication...
[ "stupkin80@gmail.com" ]
stupkin80@gmail.com
19227349c9d08bb47b593523246def73ca24b718
c57f524643a693a572e845671fe637d1325619b3
/src/main/java/am/itspace/newfeaturesinjava8/service/stream/StreamMap.java
2e4e45195732edd7b822dc51bdf66104c676b29c
[]
no_license
tigran1999/java8features
5acf0ff793e08fed729f6e7e892f37eaaae16d05
051981c7dc84e1ad77427dfa1a7d26cb5997e042
refs/heads/master
2020-05-03T01:47:53.279161
2019-03-31T10:12:22
2019-03-31T10:12:22
178,348,478
0
0
null
null
null
null
UTF-8
Java
false
false
658
java
package am.itspace.newfeaturesinjava8.service.stream; import am.itspace.newfeaturesinjava8.model.User; import org.springframework.stereotype.Service; import org.springframework.util.StringUtils; import static am.itspace.newfeaturesinjava8.util.UsersUtil.users; @Service public class StreamMap { public void print...
[ "tigran@itspace.am" ]
tigran@itspace.am
2115a3ff130f87d9daa01fb856882eb3b498b243
78d386fd05d7e2b5595c2833a62c13cbcbc6b52f
/Code/RPG/core/src/com/quickmathstudios/dieelite/minigames/rowing/Minigame.java
d1c022d50a022119de96bca8ed3d7d635f149023
[]
no_license
KoehlerT/DieElite
8a76a21ccc8821661e4fb756aed5bd4f3d80c57c
8321acf6c6d961cd79abb9847501149539934194
refs/heads/master
2021-04-06T11:04:02.426211
2018-06-25T14:25:21
2018-06-25T14:25:21
125,081,102
0
0
null
null
null
null
UTF-8
Java
false
false
3,188
java
package com.quickmathstudios.dieelite.minigames.rowing; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.Animation; import com.badlogic.gdx.graphics.g2d.TextureRegion; import com.badlogic.gdx.math.Vector2; import com.badlogic.gdx.utils.Disposable; import com.quickmathstudios.dieelite.mini...
[ "tim.koehler.net@gmail.com" ]
tim.koehler.net@gmail.com
d7dc06fa35cf7a88363a2907e25cd725c2e6185c
dc1dbb7e5a4b95bf44170d2f51fd08b3814f2ac9
/data_defect4j/preprossed_method_corpus/Time/23/org/joda/time/DateTime_toLocalDateTime_1469.java
4262fdf5cbf3c970e5e231b2a60ab8c17ecfe0d5
[]
no_license
hvdthong/NetML
dca6cf4d34c5799b400d718e0a6cd2e0b167297d
9bb103da21327912e5a29cbf9be9ff4d058731a5
refs/heads/master
2021-06-30T15:03:52.618255
2020-10-07T01:58:48
2020-10-07T01:58:48
150,383,588
1
1
null
2018-09-26T07:08:45
2018-09-26T07:08:44
null
UTF-8
Java
false
false
3,374
java
org joda time date time datetim standard implement unmodifi datetim code date time datetim code wide implement link readabl instant readableinst instant repres exact point time line limit precis millisecond code date time datetim code calcul field respect link date time zone datetimezon t...
[ "hvdthong@gmail.com" ]
hvdthong@gmail.com
01afc822c86d385debdf912cdb06fd8f3808f5a8
7f20b1bddf9f48108a43a9922433b141fac66a6d
/csplugins/trunk/ucsd/rmkelley/BetweenPathway/BetweenPathwayThread.java
b7426ad5fa407a0505575da8847adf3033292b60
[]
no_license
ahdahddl/cytoscape
bf783d44cddda313a5b3563ea746b07f38173022
a3df8f63dba4ec49942027c91ecac6efa920c195
refs/heads/master
2020-06-26T16:48:19.791722
2013-08-28T04:08:31
2013-08-28T04:08:31
null
0
0
null
null
null
null
UTF-8
Java
false
false
11,828
java
package ucsd.rmkelley.BetweenPathway; import java.io.*; import java.util.*; import edu.umd.cs.piccolo.activities.*; import java.awt.event.ActionEvent; import javax.swing.AbstractAction; import javax.swing.JOptionPane; import giny.view.NodeView; import giny.model.*; import cytoscape.plugin.CytoscapePlugin; import cytos...
[ "rmkelley@0ecc0d97-ab19-0410-9704-bfe1a75892f5" ]
rmkelley@0ecc0d97-ab19-0410-9704-bfe1a75892f5
ca15bd1645196df44157f3f09534c8a20ab8f859
870e7c62301be8a7ed4118577651257c72ee5c53
/cm-eureka-server/src/test/java/com/bbva/microservices/ApplicationTests.java
ee893500672884f9b02528e2d18c5e9f15724c4d
[]
no_license
VictorEspiritu/hackathon-gestor-comunicaciones
e4728dd89b5e3a032fa7b9ea4f3d7d5bf73edfcb
c4313cf1804f12bd9dee66d9def1a24ae6da83ec
refs/heads/master
2021-01-20T13:17:24.452259
2017-05-18T19:40:40
2017-05-18T19:40:40
90,468,985
0
0
null
null
null
null
UTF-8
Java
false
false
333
java
package com.bbva.microservices; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest public class ApplicationTests { @Test public void contextLoa...
[ "victor.espiritu@bbva.com" ]
victor.espiritu@bbva.com
12b8557fb1baece3fa9a60243dbc36fd79e02640
b15e33c251c7962710f21f9653195e5817b6dc38
/app/src/main/java/com/kmk/motatawera/student/ui/StartQuizActivity.java
a004907b6cbc40deb594e056ed9d97edd98ba7ef
[]
no_license
kirolosibrahim/MotataweraStudent
e2109fada1f4e39fdb9cde9a33bb78e0df131d7e
c8086df2d908fa9c8e87bb407c2ab325b71e34ee
refs/heads/master
2023-07-20T09:22:08.199849
2021-09-06T17:55:23
2021-09-06T17:55:39
403,712,885
0
0
null
null
null
null
UTF-8
Java
false
false
9,178
java
package com.kmk.motatawera.student.ui; import android.content.Intent; import android.os.Bundle; import android.os.CountDownTimer; import android.widget.Toast; import androidx.appcompat.app.AppCompatActivity; import androidx.databinding.DataBindingUtil; import com.google.firebase.firestore.FirebaseFirestore; import c...
[ "kirolos.ibrahim65@gmail.com" ]
kirolos.ibrahim65@gmail.com
7fb2cdfb2ffb7a901a0e45609d0a4324db3c91d3
7ea27ee9452fb1d0fd1f9bbf0be82d2b04bf21b4
/src/br/ufrj/macae/tic/modelo/dao/DispositionDAO.java
22336994fab0ce7413c37d7627db368331d14105
[]
no_license
freshwaterFishData/freshwaterFishData
8d30f45fed9683e23c49a8b3eaabe7f6af0a26de
24ca75dd172fe12ae471afac9af58fc804e29c89
refs/heads/master
2021-04-15T10:41:57.185001
2018-03-21T17:22:06
2018-03-21T17:22:06
126,187,031
0
0
null
null
null
null
UTF-8
Java
false
false
406
java
package br.ufrj.macae.tic.modelo.dao; import java.io.Serializable; import br.ufrj.macae.tic.persistence.dao.hibernate.AbstractGenericDAOHibernate; import br.ufrj.macae.tic.persistence.entity.Disposition; public class DispositionDAO extends AbstractGenericDAOHibernate<Disposition, Integer> implements Serializable { ...
[ "heldercosme@macae.ufrj.br" ]
heldercosme@macae.ufrj.br
66f249518875ab24452136bfe4afd11cfdead69e
c79add78151322c0f0efe01c6eb4c4cefae86ee5
/Final Project/3D synthesis/3D synthesis/src/utils/PanelSizedX.java
be3aac67f8067c5a2b005468af30c1d943756ae5
[]
no_license
ChristopheVuong/PACT_2017-2018
57c96a79bb1ce4892418ab2ad91b4a8cf8d171c4
2247156b4b624d0f7c48dde357fed772a66a6f6c
refs/heads/master
2020-08-06T20:19:07.705543
2019-10-06T11:23:41
2019-10-06T11:23:41
213,139,433
0
0
null
null
null
null
UTF-8
Java
false
false
930
java
package utils; import java.awt.Dimension; import java.awt.LayoutManager; import javax.swing.JPanel; public class PanelSizedX extends JPanel { private static final long serialVersionUID = 6943193250939856586L; private int dimensionX; public PanelSizedX(final int dimensionX) { super(); initPanelSized(dimensi...
[ "christophe108apb@gmail.com" ]
christophe108apb@gmail.com
528695b3542c0bdb9a8906d5b9fa29c313f42bf0
13ea5da0b7b8d4ba87d622a5f733dcf6b4c5f1e3
/crash-reproduction-new-fitness/results/XCOMMONS-1057-1-2-Single_Objective_GGA-IntegrationSingleObjective-BasicBlockCoverage-opt/org/xwiki/extension/job/internal/AbstractInstallPlanJob$ModifableExtensionPlanTree_ESTest_scaffolding.java
6c726d1b6e1fab03f3e642d218fd08d664fe3502
[ "MIT", "CC-BY-4.0" ]
permissive
STAMP-project/Botsing-basic-block-coverage-application
6c1095c6be945adc0be2b63bbec44f0014972793
80ea9e7a740bf4b1f9d2d06fe3dcc72323b848da
refs/heads/master
2022-07-28T23:05:55.253779
2022-04-20T13:54:11
2022-04-20T13:54:11
285,771,370
0
0
null
null
null
null
UTF-8
Java
false
false
32,748
java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Fri Oct 29 10:19:31 UTC 2021 */ package org.xwiki.extension.job.internal; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org....
[ "pderakhshanfar@serg2.ewi.tudelft.nl" ]
pderakhshanfar@serg2.ewi.tudelft.nl
4233cc5fa3f7b6e1c448129d1416af745f141453
dc73ce7d54312c1082f1d0925cfe94694cc24fb7
/src/pe/com/sisabas/business/VcertificacionBusiness.java
226c271a3ca67bb474ee74bf9a995e20ff354b5a
[]
no_license
teonsolutions/sisabas
5d58d3120ee768d7ac1d1c924c127cd836e62576
5bb0c8103f609931e1f3e5ae066595b36fbbfa95
refs/heads/master
2021-09-09T13:34:57.722446
2018-03-16T14:24:24
2018-03-16T14:24:24
110,156,408
0
0
null
null
null
null
UTF-8
Java
false
false
1,896
java
package pe.com.sisabas.business; import java.util.List; import pe.com.sisabas.be.Vcertificacion; public interface VcertificacionBusiness{ public void deleteByPrimaryKeyBasic(Vcertificacion par_record) throws Exception; public void insertBasic(Vcertificacion record) throws Exception; public void insertFull(Vcerti...
[ "ehuarcaya@teon.pe" ]
ehuarcaya@teon.pe
9f323319a093bf4e83a5e456ca9b040988fe6dc6
083e8cea6b482ddbe2da3a70cbc7388966e5ec4a
/common/src/main/java/org/apache/ivory/entity/ColoClusterRelation.java
dc2bcf4136e242aa114d56c6fce50d1a3533b0d9
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
cryptoe/Ivory
9313d788bc065780ba4f2e7adcb6d5f40a5555db
60672a6da8fba84d9f44e16ce1a203727b58d735
refs/heads/master
2021-01-18T18:22:44.681912
2013-04-30T14:07:41
2013-05-03T10:00:47
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,741
java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
[ "shwetha.gs@inmobi.com" ]
shwetha.gs@inmobi.com
e655d32fe4f135d16fd4d7a9bd70837e3432b792
5cf2f944216bf448ea090267db6ccd9ccbfaf37a
/src/main/java/ee/sda/javaest1blog/entities/Role.java
3bb3d00d0b69b4b22a30c253dfa11c0889142436
[]
no_license
taalmtii/javaest1blog
440a79b97a599b089e14edd221bb40d29471895f
c2cc7f98c3957f2005c1bf7de94158f80d8cf897
refs/heads/main
2023-01-06T19:49:41.726814
2020-11-15T11:46:07
2020-11-15T11:46:07
null
0
0
null
null
null
null
UTF-8
Java
false
false
550
java
package ee.sda.javaest1blog.entities; import lombok.Getter; import lombok.Setter; import javax.persistence.*; import java.util.List; @Entity @Getter @Setter public class Role { @GeneratedValue @Id Long id; String name; @ManyToMany @JoinTable( name = "role_user", join...
[ "guilhermezq@gmail.com" ]
guilhermezq@gmail.com
bb05062877ee7a43c3c38848ddc3286599fd1497
a7f32f1856db2199a409a87fd23312188a45d48d
/src/main/java/com/mmall/service/ICategoryService.java
f7fd81840da5468da999386fa847275f0754ae07
[]
no_license
zehuaiWANG/mmall
67ff308d605754294bff6cb4ada5083c027cd919
cae0b523ef393e1cf55b871adc6bbbdb3864e571
refs/heads/master
2021-01-16T17:59:55.771068
2017-08-30T14:43:49
2017-08-30T14:43:49
100,031,467
0
0
null
null
null
null
UTF-8
Java
false
false
467
java
package com.mmall.service; import com.mmall.common.ServerResponse; import com.mmall.pojo.Category; import java.util.List; public interface ICategoryService { ServerResponse addCategory(String categoryName, Integer parentId); ServerResponse updateCategoryName(Integer categoryId,String categoryName); Serve...
[ "874697675@qq.com" ]
874697675@qq.com
b1aaf63ce47c7e464100791e934d76c970ba90d4
ca5ac0652cfb486adab9f5bc8b561ad04852188f
/java_backend_lokale_backup/src/java_backend/TZTPoint.java
fdbb6ab58abcf67cf0211dd406bdb01a69a7d95b
[]
no_license
HSR01/KBS_JAVA
cf32f0a7e77966953bd4c2e7ca1107f4f2422aa9
10797ca9824c492a6c9c1957fa39379ea9d16cd8
refs/heads/master
2021-01-21T19:28:41.019741
2013-05-30T09:12:32
2013-05-30T09:12:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
726
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package java_backend; /** * * @author Jelle */ public class TZTPoint extends Locatie{ private boolean TZTPoint; public TZTPoint(){ super(); this.TZTPoint = true; } public TZTPoint...
[ "dominiqueteriele@hotmail.com" ]
dominiqueteriele@hotmail.com
4b1669a9e12dbab34bb0ce05a193083d83a1bb7f
5d715e8e8ff3573bd60f30820c2cec50c4c4c076
/ch06/src/ch06/ProductTest.java
498c8f56ee89b2d374fbd3afa685cf12c36ffc37
[]
no_license
scox1090/work_java
e75d203cb5702ac230a3435231fb266b13105fb6
89507165c9f5c4293ed5ccb7f1faf96e3fb78794
refs/heads/master
2020-03-21T02:36:42.885130
2018-07-25T12:29:34
2018-07-25T12:29:34
134,252,683
0
0
null
null
null
null
UHC
Java
false
false
775
java
package ch06; class Product { static int count = 0; // 생성된 인스턴스의 수를 저장하기 위한 변수 int serialNo; // 인스턴스 고유의 번호 { ++count; serialNo = count; } public Product() {} // 기본 생성자 생략가능 } public class ProductTest { public static void main(String[] args) { Product p1 = new Product(); Produc...
[ "KOITT@KOITT-PC" ]
KOITT@KOITT-PC
dca86c270109220ed6070f9a0bb3708a55d26476
bd5cac2f11eab6a6f5ba97fdde3e28916a60ddb8
/day002/src/com/lxgzhw/datatype/Long02.java
4c6e85c5b38351a0dfeda45b9d8b6636a0a190f2
[]
no_license
goodcd/Java1908
74a5b29ad4428646bfea0ca727f25a8093c81fc2
84fc8bac537808e2c77b52716475f93b0e4d857b
refs/heads/master
2022-02-15T19:27:04.848625
2019-09-05T06:11:19
2019-09-05T06:11:19
262,246,898
1
0
null
2020-05-08T06:39:53
2020-05-08T06:39:52
null
UTF-8
Java
false
false
266
java
package com.lxgzhw.datatype; public class Long02 { public static void main(String[] args) { // int和long类型进行运算,自动转换为long类型 int salary = 1000000000; long num = 1000L; long result = salary * num; System.out.println(result); } }
[ "1156956636@qq.com" ]
1156956636@qq.com
21ac39133d9b4a94eddfc5138006873b6216443b
5dde423003a811346293a9855ae55d798f5d8880
/ArticleLayouter/src/main/java/PagePosition.java
fe99661ef14e58654c646e1ddaa9c3e193d10be1
[]
no_license
ralphtiede/Kata-Layouter
1f74cea14cb579a48df4ede587aa49d6ceacc107
607942f4265ce2071f6d11aa94c39d8ba574933b
refs/heads/master
2021-01-10T05:39:48.502253
2015-11-11T13:54:01
2015-11-11T13:54:01
44,319,026
0
0
null
null
null
null
UTF-8
Java
false
false
1,151
java
/** * Created by rtiede on 11.11.2015. */ public class PagePosition { private int left; private int top; public PagePosition(int left, int top) { this.left = left; this.top = top; } public int getLeft() { return left; } public void setLeft(int left) { thi...
[ "ralph.tiede@coremedia.com" ]
ralph.tiede@coremedia.com
7705ea49c3900721f831074ef5d675d7594c1ad0
c885ef92397be9d54b87741f01557f61d3f794f3
/results/Cli-36/org.apache.commons.cli.OptionGroup/BBC-F0-opt-70/tests/25/org/apache/commons/cli/OptionGroup_ESTest.java
cebb8616e07984f564fb6cb6e37d9264ab37bdb0
[ "CC-BY-4.0", "MIT" ]
permissive
pderakhshanfar/EMSE-BBC-experiment
f60ac5f7664dd9a85f755a00a57ec12c7551e8c6
fea1a92c2e7ba7080b8529e2052259c9b697bbda
refs/heads/main
2022-11-25T00:39:58.983828
2022-04-12T16:04:26
2022-04-12T16:04:26
309,335,889
0
1
null
2021-11-05T11:18:43
2020-11-02T10:30:38
null
UTF-8
Java
false
false
5,181
java
/* * This file was automatically generated by EvoSuite * Sat Oct 23 04:41:49 GMT 2021 */ package org.apache.commons.cli; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import java.util.Collection; import org.apache.commons.cli.Option; import org.apache....
[ "pderakhshanfar@serg2.ewi.tudelft.nl" ]
pderakhshanfar@serg2.ewi.tudelft.nl
034186e1a5fb9d330a5642e725ae6a285abc2693
a81c3eb9fe553fe04d02efc3ef9853f97f5fa4d2
/src/com/bluestar/fms/vo/ProjectManagerLinkVO.java
4d8d57b6d5828bdf7b9ad63ec134050ae0e7d718
[]
no_license
murtazabsil/FMS
37d8826c5ab70c3e7831e64b63051499dd6e3e4d
889de1cded7b2d833633e7af62a1af1cb874752a
refs/heads/master
2016-09-06T10:08:47.611069
2014-04-01T17:51:34
2014-04-01T17:51:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
542
java
package com.bluestar.fms.vo; public class ProjectManagerLinkVO { private Long projectId; private Long managerId; private Long linkId; public Long getProjectId() { return projectId; } public void setProjectId(Long projectId) { this.projectId = projectId; } public Long getManagerId() { re...
[ "murtazabsil2012@gmail.com" ]
murtazabsil2012@gmail.com
0bb35e732fcdc9650031e9e0be71ed12f8350090
d6667610936ba4c41256790f70df7d1264b1be97
/src/main/java/hiber/dao/UserDaoImp.java
e5e29b46bb30ef36ba87eb872f4bccbf6eeb781c
[]
no_license
igorzobov/2.2.1.spring_hibernate
f39ac596c96a5f598ecb5406f32b6c4e627c392f
d150ead1b377a161f645e8090ad5d4963aa9c962
refs/heads/master
2023-08-06T23:38:09.163436
2021-10-07T09:54:24
2021-10-07T09:54:24
414,476,188
0
0
null
null
null
null
UTF-8
Java
false
false
1,097
java
package hiber.dao; import hiber.model.Car; import hiber.model.User; import org.hibernate.SessionFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Repository; import javax.persistence.Query; import javax.persistence.TypedQuery; import java.util.List; @Reposi...
[ "igor_zobov@mail.ru" ]
igor_zobov@mail.ru
54739a7e41a1dd9cf35cbb0607613e3b93453afb
cc2e95d91ae1b038b08472a50f7e55518440cf45
/RanovHotel/app/src/main/java/com/example/randra/ranovhotels/activity/Start.java
ea6fde940ab7fa5d17efcb19b75a6bbf866193f5
[]
no_license
randra/UAS-ANDROID_RANDRA_MAULIWIDYA_BIMA_TI3B
eb6ad87edf33061bdb10138892e8d0095aa2758c
7e1e624f379134d4e2fc58abbfa337b0b13494f5
refs/heads/master
2021-05-16T16:21:33.366655
2018-02-02T05:53:48
2018-02-02T05:53:48
119,938,723
0
0
null
null
null
null
UTF-8
Java
false
false
1,549
java
package com.example.randra.ranovhotels.activity; import android.os.Bundle; import android.app.Activity; import android.content.Intent; import android.support.v4.view.ViewPager; import android.util.Log; import android.view.View; import android.widget.Button; import android.widget.TextView; public class Start extends A...
[ "randhisanjaya3@gmail.com" ]
randhisanjaya3@gmail.com
e6273a9f1847611d945e9d9837d95fc68131891a
aa623c778fd88082cf59f442ad3cb671253ffc37
/src/main/java/com/tencentcloudapi/ocr/v20181119/models/MixedInvoiceOCRRequest.java
08b1e1d027445912c9285d45370276ea7939e17e
[ "Apache-2.0" ]
permissive
zjm9109/tencentcloud-sdk-java
1eac89cedd70c8111c300d050f2c2f2ab1839189
a31d2d50f75dc740457289db0bf93ed8b3994c73
refs/heads/master
2020-09-30T10:32:57.836303
2019-12-05T14:18:17
2019-12-05T14:18:17
null
0
0
null
null
null
null
UTF-8
Java
false
false
7,285
java
/* * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 ...
[ "tencentcloudapi@tencent.com" ]
tencentcloudapi@tencent.com
e8ee17a7e49ea2bc1bf010d4d0ca2946ef0f96be
a4dab24c0cdd7c8c52b5206f44a620c3d8dd8491
/madrid-hackathon/workshops/product-api/samples/api-sync-demo/product-api-client/src/main/java/com/expedia/eps/product/model/ExtraBed.java
d8f875fe318b81da54321346ce4a2d27f3712398
[]
no_license
houcin175/exp-connectivity-util
9cf79315442f776a4d9d3456eb455103a3effb8d
5bda8532ff5c8a577626a510ceffa2638209513c
refs/heads/master
2020-04-27T13:29:14.055666
2017-05-05T14:19:56
2017-05-05T14:19:56
null
0
0
null
null
null
null
UTF-8
Java
false
false
354
java
package com.expedia.eps.product.model; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; @Data @Builder @NoArgsConstructor @AllArgsConstructor public class ExtraBed { private Long quantity; private ExtraBedTypeModel type; private String size; ...
[ "rgresellehartm@expedia.com" ]
rgresellehartm@expedia.com
80e6dd5a11e2eee6a619dcc06c236a388245e199
989efe4afe000b6941304ec2b7581bb56a83dea7
/web-service-slave/src/main/java/com/bigdata/web/dao/ShowProjectMapper.java
3f49cd1f003a4580244b380ef529b3d8dc1d9bd9
[]
no_license
mengboy/land-bigdata
77f2cea53de4d83fef7dede33ff701df8c3c3adb
87acc77f2263556eb63393894d3f1556c6e39bec
refs/heads/master
2020-03-12T13:54:12.541020
2018-04-23T11:51:19
2018-04-23T11:51:19
130,653,240
0
0
null
null
null
null
UTF-8
Java
false
false
644
java
package com.bigdata.web.dao; import java.util.List; import java.util.Map; import com.bigdata.web.domain.ShowProject; public interface ShowProjectMapper { int deleteByPrimaryKey(Integer spid); int insert(ShowProject record); int insertSelective(ShowProject record); ShowProject selectByPrimaryKey(In...
[ "bai.white86@gmail.com" ]
bai.white86@gmail.com
0b6bcc65d5222592272b3c2b6470d29b089af047
c0d9b5142d043d34c68148090b9c12e80e72a34e
/2-1/work/org/apache/jsp/view/catalog_jsp.java
e60684390afd9272177cd1e8beb0436112a7bf46
[]
no_license
gitmiami/sample_struts
6b137b19897f5686edef1af771bb91994cf6e34a
9a0b423bee7404362c2e94e8d00db0bb3f7bc1f6
refs/heads/master
2020-03-26T06:22:40.990023
2018-08-13T16:46:11
2018-08-13T16:46:11
144,602,073
0
0
null
null
null
null
UTF-8
Java
false
false
31,406
java
package org.apache.jsp.view; import javax.servlet.*; import javax.servlet.http.*; import javax.servlet.jsp.*; public final class catalog_jsp extends org.apache.jasper.runtime.HttpJspBase implements org.apache.jasper.runtime.JspSourceDependent { private static java.util.List _jspx_dependants; private org.apa...
[ "adiosmike@gmail.com" ]
adiosmike@gmail.com
72d985b4f11db9d03f47384345a18dcf3c85bb4b
4e5cb0dd69e2960cedaa1325e095d423e39beeea
/anybook/app/src/main/java/it/unitn/disi/anybook/activities/fragments/WishlistFragment.java
8c7d86ebd21f1327315240ffeae9ba33bd39a3d7
[]
no_license
laraCeschi/AnyBook
81a8169fbfa40a92786eeb6df047d5cfb6693d75
0c3921b745cbf26cd88fb7c4129462a19278db3e
refs/heads/master
2020-12-10T03:26:28.435648
2017-06-27T14:49:18
2017-06-27T14:49:18
95,568,807
2
1
null
null
null
null
UTF-8
Java
false
false
12,437
java
package it.unitn.disi.anybook.activities.fragments; import android.content.DialogInterface; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.RectF; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v7.app.AlertD...
[ "lara.ceschi@gmail.com" ]
lara.ceschi@gmail.com
8e7c8a6c4fc1df922f196328648d7d84a075cd3b
b767d141bbbe6f852f9a19037797687470cf51f5
/src/claseobjeto/Persona.java
2826ab8f63bd31fec9c83d7418f9559b6297799b
[]
no_license
josval56/ClaseObjeto
d25e837a44858e2b6b222c328a5b5bed96a1ad4c
ecf6c87b1bf4e62e2db43de11d1bc9be04910b0f
refs/heads/master
2022-12-03T15:05:35.811973
2020-08-24T22:34:33
2020-08-24T22:34:33
290,054,494
0
0
null
null
null
null
UTF-8
Java
false
false
539
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package claseobjeto; /** * * @author Valmore */ public class Persona { String Name; int Age; public void myname (S...
[ "josval56@gmail.com" ]
josval56@gmail.com
c0eb44c10216fc67f4494b06cc2ef73e550c4ccb
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/19/19_6ab6235b6eea1abcdf9de44d782da4fd2a1ddd29/EcoField/19_6ab6235b6eea1abcdf9de44d782da4fd2a1ddd29_EcoField_s.java
b7ceb9cdd4c71e013d29004ee3ced62e59133941
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
2,008
java
package org.azavea.otm; import java.text.NumberFormat; import java.util.Locale; import org.azavea.otm.data.Model; import org.azavea.otm.data.Plot; import org.json.JSONException; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.widget.TextView; ...
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
704dc70491d37df6de9fad8e34b5cbe18fbd9660
c3ad1c476e791965d0f6422c7b6eeadcaebda014
/ex-poo/src/list_24_04/src/sample/lsp/Veiculoo.java
8766f46b9ec86b29e8ccf459418570216a253072
[]
no_license
brenomonteiro/exercicios-POO
2598c001d534cb81c19476e15d0019566ff226fc
4bf231ab1b8413f53e94f029d5051a7aa2e4816a
refs/heads/master
2021-05-03T10:38:39.652748
2018-05-31T02:06:07
2018-05-31T02:06:07
120,539,634
0
1
null
null
null
null
UTF-8
Java
false
false
224
java
package sample.lsp; public class Veiculoo { private Marcha marcha; public Marcha getMarcha() { return marcha; } public void mudaMarcha(final Marcha marcha) { this.marcha = marcha; } }
[ "brennoo.mendesmonteiro@gmail.com" ]
brennoo.mendesmonteiro@gmail.com