blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
332
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
7
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
557 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
684M
star_events_count
int64
0
77.7k
fork_events_count
int64
0
48k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
82 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
5.41M
extension
stringclasses
11 values
content
stringlengths
7
5.41M
authors
listlengths
1
1
author
stringlengths
0
161
5f61a672661a40b81a80d619d489d4fd568d57a3
13672b0f12ca2dc658c3d95d543b6af37518ca92
/src/bootcamp/demo/SwitchDemo.java
9bdfedbe599f93cce199f950029ff944bbe125b9
[]
no_license
rohatgiDivanshu/BootCampDemo
69f93c4521f6864f91d84e4d0e69b5d9161f7600
481380c68043e239ab29af8eff74d9bc8a8983e0
refs/heads/master
2020-03-29T21:42:29.829316
2018-10-04T05:14:49
2018-10-04T05:14:49
150,382,416
0
0
null
null
null
null
UTF-8
Java
false
false
539
java
package bootcamp.demo; import java.util.Scanner; public class SwitchDemo { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int numberOfDay = sc.nextInt(); switch (numberOfDay) { case 1: case 2: case 3: cas...
[ "divanshu.rohatgi@tothenew.com" ]
divanshu.rohatgi@tothenew.com
79fd63cc8193dbd85c90017773f07d7707f9e9d5
230f46ef91aeb28c544ee6df446f9ff6b402bc15
/src/main/java/com/xero/Business/InvoiceSummary.java
7175a5843c45fe343164092fc13063d406f02700
[ "MIT" ]
permissive
kensantoso/Xero-Java
336156c0fc8f5e5fa01066798e91923af7047a06
c772a9ab7a8d471ebd3618532ae99c9838f4a342
refs/heads/master
2022-02-26T16:55:25.065693
2019-05-22T00:10:37
2019-05-22T00:10:37
null
0
0
null
null
null
null
UTF-8
Java
false
false
912
java
package com.xero.Business; import com.xero.models.accounting.Invoice; import com.xero.models.accounting.Invoices; import org.threeten.bp.LocalDate; import java.util.TreeMap; public class InvoiceSummary { private TreeMap<LocalDate, Double> summary; /** * * @param invoices Xero Invoices Model ...
[ "ken.santoso@xero.com" ]
ken.santoso@xero.com
4dcaa7689a611f44e57c247ab5b852a029f7fd5c
2be33a533b4e260738fe1b1f98ede29a789ea88e
/src/main/java/com/wp/Services/CustomerService.java
5bd534bad9544587e638c58f4cce7a8e344a8a36
[]
no_license
sadiyakhan0308/Transport-Deal-Portal
f1071392459223c06752a2e25bdd6db4fa5c3414
0a88ddc62ae8410044b75e2f8c6ffdd5f49ed770
refs/heads/master
2022-12-21T00:49:52.220533
2019-10-09T04:23:13
2019-10-09T04:23:13
213,820,491
0
0
null
2022-12-16T13:43:20
2019-10-09T04:25:16
Java
UTF-8
Java
false
false
426
java
package com.wp.Services; import java.util.List; import com.wp.Models.Customer; public interface CustomerService { public void customerEntry(Customer customer); public void deleteCustomer(String email); public Customer searchCustomer(String email); public void updateCustomer(Customer customer); ...
[ "jai hind@jaihind-PC" ]
jai hind@jaihind-PC
18ce5353e428b1ed94d61274e02501b7995de8e4
f2981adad612c33411fa36d049b24f5ec4e694b7
/Numbers-28.java
3fe7b0558d6feecfc8e8ca4ee3e485506057d56c
[]
no_license
Kata1213/w3resource
0557215461bbdd69e22b1a9c404da7f74e78a513
284c8304240118f9d034cde9e21a841e90982c82
refs/heads/master
2020-03-22T00:24:13.493449
2018-06-30T11:20:39
2018-06-30T11:20:39
139,242,210
0
0
null
null
null
null
UTF-8
Java
false
false
595
java
import java.util.stream.Stream; class Numbers_28 { private static boolean isHamming(int num) { if (num == 1) return true; if (num % 2 == 0) return isHamming(num / 2); if (num % 3 == 0) return isHamming(num / 3); if (num % 5 == 0) return isHamming(num / 5); return false; ...
[ "2726456039@qq.com" ]
2726456039@qq.com
c6eb3330a7adcc3e87c401c2088ca999f46f8bd3
83c94549bfec5c87255e768c72b5802d99d761cf
/src/main/java/org/certificatic/tarjetaDigital/service/TarjetaService.java
fa073fa5532ec2321409ac2bc9bbc5731a4ba638
[]
no_license
jessmtzhtdz/TarjetaDigital
92876b308565434bff410be4370aec9373c8ab9a
aa4f9515eabf63bbe1f2099c81fc0a3115631d13
refs/heads/master
2022-12-21T21:59:44.124620
2020-03-01T19:50:32
2020-03-01T19:50:32
244,208,262
0
0
null
2022-12-10T03:28:30
2020-03-01T19:13:07
Java
ISO-8859-2
Java
false
false
444
java
package org.certificatic.tarjetaDigital.service; import java.util.List; import javax.jws.WebService; import org.certificatic.tarjetaDigital.model.Tarjeta; @WebService public interface TarjetaService { /** * Método para crear una tarjeta nueva * @param tarjeta * @return tarjeta creada */ Tarjeta crearTarje...
[ "enriquejm2504@gmail.com" ]
enriquejm2504@gmail.com
30666eb49864b966e30e84c8155bb2d458ed23b9
b13c34525a31785fd86e3bedfb82123975b2fbf9
/src/main/java/com/sunyard/emp/codegen/entity/TableEntity.java
15fc3eb6c052ea64c332f81ab6ce25b7aa9ee0ce
[]
no_license
wu305813704/DS_EMP
49b469320a02374e07d606ae2331652d1d8d0c94
c49ff57f40b13e7bfe83da7bd81a01b30d3ffb63
refs/heads/master
2023-02-26T12:48:35.658665
2021-02-04T12:34:26
2021-02-04T12:34:26
331,548,504
0
0
null
null
null
null
UTF-8
Java
false
false
537
java
package com.sunyard.emp.codegen.entity; import lombok.Data; import java.util.List; /** * @date 2018/07/29 * 表属性: https://blog.csdn.net/lkforce/article/details/79557482 */ @Data public class TableEntity { /** * 名称 */ private String tableName; /** * 备注 */ private String comments; /** * 主键 */ priva...
[ "kangq.wu@sunyard.com" ]
kangq.wu@sunyard.com
c3d6079f121add4d3288125053a65d3559b66cb7
40a9b43877073566825b733ceb1e0c0ad7c1db93
/Regex/Introduction/Match Specific String.java
827b848a029ff0ba84f07fe9b204eb473313d657
[]
no_license
juancstlm/HackerRank
e7321b84effec9b5e77f1b88b01d8af72780f756
fb0a6b237fb5e1e0e164e6604d0223a0331ddc02
refs/heads/master
2021-04-15T09:07:54.370890
2019-01-06T06:56:22
2019-01-06T06:56:22
126,526,614
0
0
null
null
null
null
UTF-8
Java
false
false
803
java
// You have a test string . Your task is to match the string hackerrank. This is case sensitive. import java.io.*; import java.util.*; import java.text.*; import java.math.*; import java.util.regex.*; public class Solution { public static void main(String[] args) { Regex_Test tester = new Reg...
[ "juan.a.castillo@sjsu.edu" ]
juan.a.castillo@sjsu.edu
b8a6dcd21c4afbc1506a97a1b96ababeb2d9ad8a
8e79a26ee058ded3646c61ccf6657df4c1f796e2
/src/src_Solution/enclos/Cage_.java
48755d183d457049e8308ce2c298914369278d1a
[]
no_license
MaafiHanene/Design-Pattern-Project
2a9ae4a36522a8fa1ff9878f6876ec381f1865d8
dfc5e4d8e22780872c8861070942781371ecf409
refs/heads/master
2020-04-05T09:43:47.229020
2018-11-09T16:49:39
2018-11-09T16:49:39
156,771,303
1
0
null
2018-11-08T21:28:51
2018-11-08T21:28:51
null
UTF-8
Java
false
false
1,022
java
package src_Solution.enclos; import Enum.*; import src_Solution.*; import src_Solution.espece.*; import java.awt.*; import java.util.Iterator; public class Cage_ extends Enclos_ { private TypeSol typeSol; public Cage_(int id, double lng, double lrg, int max, TypeSol typesol) { super(id, lng, lrg, ...
[ "fh_maafi@esi.dz" ]
fh_maafi@esi.dz
68eb96afa1a837b3df5687c8b1c3871b1b2b504e
a874b11e796148aa8b84e59ba67c846e15e171d3
/src/main/java/by/gsu/epamlab/model/connection/ConnectionManager.java
c865738ff58a9e3e8b5c734589db323b1aae94b6
[]
no_license
northeim/EpamWebPrj
a6789c9b91d970c7a23acfed2cca129eade5d0c8
fa621f0b3a6ae580e372ae9132b0b790a46234f0
refs/heads/master
2021-01-22T02:57:59.824862
2017-09-08T14:16:28
2017-09-08T14:16:28
102,257,873
0
0
null
null
null
null
UTF-8
Java
false
false
1,695
java
package by.gsu.epamlab.model.connection; import by.gsu.epamlab.exeptions.DataBaseException; import java.sql.*; public class ConnectionManager { private static final String DB_DRIVER = "com.mysql.jdbc.Driver"; private static final String DB_URL = "jdbc:mysql://localhost/epamlabweb"; private static final ...
[ "fedorov_p88@mail.ru" ]
fedorov_p88@mail.ru
141ec95c4657bce35fdf14390f6dda286fce3a6b
c0dae480fb6a4430d90d53e76982feae81369842
/mebitech-web/src/main/java/com/mebitech/web/controller/user/RoleController.java
7cbbf73f726befaaf29e9383e03880396b75c97f
[]
no_license
MustafaGungor/t1core
99309df64c92115551bf0d2a08754206e067c282
93b547eaba5bbfd565d2065a4cd6de0d55c30599
refs/heads/master
2021-01-21T19:57:52.781259
2017-05-23T13:42:50
2017-05-23T13:42:50
92,178,282
0
0
null
null
null
null
UTF-8
Java
false
false
3,163
java
package com.mebitech.web.controller.user; import com.mebitech.core.api.rest.IResponseFactory; import com.mebitech.core.api.rest.enums.RestResponseStatus; import com.mebitech.core.api.rest.processors.IRoleRequestProcessor; import com.mebitech.core.api.rest.responses.IRestResponse; import com.mebitech.persistence.entiti...
[ "mustafa.gungor@mebitech.com" ]
mustafa.gungor@mebitech.com
94e0ae05e328022de073301c98304c94b406d83b
82b54908a3d2cc146c4404d08354ae60c4df02d5
/MVVM/src/main/java/org/jzl/android/mvvm/ViewHelper.java
e0b265a33d039f689e69c03e518414427b214c72
[]
no_license
j1046697411/UniversalAdapter
6d49d921c610b409d38bfb259614e5b42662d349
de8439a6b193b0e1ff7c9019867e0cc0653d94c0
refs/heads/master
2023-06-21T16:00:40.299002
2021-08-06T03:34:51
2021-08-06T06:52:23
388,641,702
1
0
null
null
null
null
UTF-8
Java
false
false
5,939
java
package org.jzl.android.mvvm; import android.app.Activity; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.view.ViewStub; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.databinding.DataBindi...
[ "1046697411@qq.com" ]
1046697411@qq.com
483be09fe9d6074649126f7944eaa37998739d66
afdbe830791bf07b618bdbe518c428a2f270a175
/Furniture/client/controllers/ProfitController.java
8f438d89b75540dc11a91975f2646759342064da
[]
no_license
BorovikAlex/JavaFX
2e45aef2c642617b81f461d0c7f16af543fcd7bf
5b6d1f98fac5cff8ebbba020bd8cb2e591206a7d
refs/heads/master
2020-12-22T23:30:20.254480
2020-03-27T14:10:20
2020-03-27T14:10:20
236,963,566
0
0
null
null
null
null
UTF-8
Java
false
false
5,321
java
package client.controllers; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.net.URL; import java.util.ArrayList; import java.util.ResourceBundle; import client.entityClass.Profit; import client.sample.AlertWindow; import client.sample....
[ "noreply@github.com" ]
noreply@github.com
478d392004b3a0d438d5f3410120325c03d37a27
447520f40e82a060368a0802a391697bc00be96f
/apks/comparison_androart/at_spardat_bcrmobile/source/com/google/android/gms/common/internal/zzaf.java
937ea7a4cc5815e131910fffa19fdc3d291bde8d
[ "Apache-2.0" ]
permissive
iantal/AndroidPermissions
7f3343a9c29d82dbcd4ecd98b3a50ddf8d179465
d623b732734243590b5f004d167e542e2e2ae249
refs/heads/master
2023-07-19T01:29:26.689186
2019-09-30T19:01:42
2019-09-30T19:01:42
107,239,248
0
0
Apache-2.0
2023-07-16T07:41:38
2017-10-17T08:22:57
null
UTF-8
Java
false
false
1,433
java
package com.google.android.gms.common.internal; import android.os.IBinder; import android.os.Parcel; import android.os.Parcelable.Creator; import com.google.android.gms.common.ConnectionResult; import com.google.android.gms.common.internal.safeparcel.zza; public class zzaf extends zza { public static final Parcel...
[ "antal.micky@yahoo.com" ]
antal.micky@yahoo.com
e4f739f4f973ea3c4969573900a7a70c7ce7fd35
fb94bf2f79e8ad93b3c1880a826d7bf4d82b180b
/ch12_Ex/a_test2.java
0f97f2a18123bceea93f0321e2da457decf0f9df
[]
no_license
kim-kiwon/Java_Jeongseok
eeda0b3c6233129cbce9f46b5c8afcf3f3eebcb9
d925092fe84818be5d89095cdbf8c847601bc8cc
refs/heads/master
2023-02-25T01:40:34.162814
2021-02-03T13:46:15
2021-02-03T13:46:15
334,135,896
0
0
null
null
null
null
UTF-8
Java
false
false
885
java
import java.util.*; class Book {} class Note extends Book {} public class a_test2 { public static void main(String[] args) { ArrayList<Book> list = new ArrayList<Book>(); //참조변수 타입과. 생성자 타입은 기본적으로 같다. 다형성도 안됨. 일치해야함. //지네릭 클래스간 다형성은 성립 //List<Book> list = new ArrayList<Book>(); list.add(new Note()); /...
[ "76721493+kim-kiwon@users.noreply.github.com" ]
76721493+kim-kiwon@users.noreply.github.com
7e4f72d116583e80d90ff6f48944e5be800ac78c
4cb77b58bc6dfdf8e69240b9e4289b05c2d62144
/src/main/java/org/solteam/stellar/xdr/ChangeTrustResultCode.java
58a1f9d7dada09e4f3d4568e8da7aa16dd090ae8
[ "MIT" ]
permissive
lman/stellar-sdk
df380bcd2022e6830013473724efedaa04458fee
32cdac0a923263c0c1f84e58a116a4be56e81bbf
refs/heads/master
2021-04-12T11:35:04.025507
2018-09-24T14:05:19
2018-09-24T14:05:19
126,353,409
0
0
MIT
2018-09-27T08:28:46
2018-03-22T15:09:22
Java
UTF-8
Java
false
false
1,979
java
// Automatically generated by xdrgen // DO NOT EDIT or your changes may be overwritten package org.solteam.stellar.xdr; import java.io.IOException; // === xdr source ============================================================ // enum ChangeTrustResultCode // { // // codes considered as "success" for the o...
[ "vadim.lman@gmail.com" ]
vadim.lman@gmail.com
e12d1ea8c9fa61d52740d5ec901e2bb8376ac4c9
bf2966abae57885c29e70852243a22abc8ba8eb0
/aws-java-sdk-workmail/src/main/java/com/amazonaws/services/workmail/model/ListMailboxPermissionsRequest.java
0a50747638491c330fe3f5d81adb467c37fed1bb
[ "Apache-2.0" ]
permissive
kmbotts/aws-sdk-java
ae20b3244131d52b9687eb026b9c620da8b49935
388f6427e00fb1c2f211abda5bad3a75d29eef62
refs/heads/master
2021-12-23T14:39:26.369661
2021-07-26T20:09:07
2021-07-26T20:09:07
246,296,939
0
0
Apache-2.0
2020-03-10T12:37:34
2020-03-10T12:37:33
null
UTF-8
Java
false
false
9,243
java
/* * Copyright 2016-2021 Amazon.com, Inc. or its affiliates. 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. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licen...
[ "" ]
2e17f677c36bcf894ee15a55be18bbd930cf0d30
17c711e58b29ce91cc1068d7ff459de2fef3df3b
/src/com/jhlabs/image/WeaveFilter.java
d525d76d3669585f755d53e0de1876b284f7d677
[]
no_license
mdu314/DrawLine
f6650ebaf892ecb79d71eca8bd6304f2c9a30e6d
cb8ebf057cbdebdceb7850659d5665e42af3e7fc
refs/heads/master
2021-07-03T19:08:58.924812
2020-09-18T14:39:59
2020-09-18T14:39:59
20,884,439
1
0
null
null
null
null
UTF-8
Java
false
false
4,366
java
/* Copyright 2006 Jerry Huxtable Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software d...
[ "mdurocher@free.fr" ]
mdurocher@free.fr
1df01959c0559c06b74d44ffc0bcad76968dd4b6
8f2e9b91b6bfe9c70135673a8ddf69519813d835
/dubbo-consumer/src/main/java/tech/liuxiaogang/dubbo/consumer/HelloController.java
8dc4d4a73b36aef2c5b65cbf18a202d1c80d88c1
[ "Apache-2.0" ]
permissive
summerHearts/spring_boot_dubbo_example
c2298fd349b11434f0b505ad2d9f5ca7933b38f8
5bbc464550b16e087813ccb28771debe4a5a6eeb
refs/heads/master
2021-05-11T03:49:56.265585
2016-11-25T01:51:56
2016-11-25T01:51:56
null
0
0
null
null
null
null
UTF-8
Java
false
false
626
java
package tech.liuxiaogang.dubbo.consumer; import tech.liuxiaogang.dubbo.api.service.HelloService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind...
[ "15986754905@126.com" ]
15986754905@126.com
573a19e090325233614136163e74f0970bd22823
5c05c0af04ee5625ba98d864fef05e3d46c85b7a
/common/src/main/java/com/sinjinsong/icourse/common/util/MapUtil.java
ab42370e6d6a1131f19ec06221c8bd3fc05947fe
[]
no_license
songxinjianqwe/iCourse
43e556d54349eb356c22952fd6369541d3f51b21
d6e585b41b7d38eb5998ea830fdd0f09ee2f0811
refs/heads/master
2020-03-08T08:18:54.247518
2018-07-09T12:37:49
2018-07-09T12:37:49
128,019,594
0
0
null
null
null
null
UTF-8
Java
false
false
497
java
package com.sinjinsong.icourse.common.util; import java.util.ArrayList; import java.util.List; import java.util.Map; /** * Created by SinjinSong on 2017/3/19. */ public final class MapUtil { private MapUtil(){} public static <K,V> void putMultiValue(Map<K,List<V>> map, K k, V v){ if(map.get(k) == n...
[ "songxinjianzx@163.com" ]
songxinjianzx@163.com
1abfd977b7598682bbc1e67ccfb050ac1ce78e0c
027b42368e671d4ccb244a4a816ad26b455919f2
/app/src/main/java/com/yadong/pattern/behavioral/chain_of_responsibility/Course.java
82c6edb2e2cdf5c448bc0a96fae8682ab620324d
[]
no_license
ydstar/DesignPattern
de38fc9260ea2a6b2c950e8fda72e8fc4da46e50
42f77a4807b058ed5e5f4365e736809d88061cc3
refs/heads/master
2022-04-19T12:30:09.050210
2020-04-16T02:15:26
2020-04-16T02:15:26
138,538,416
19
9
null
null
null
null
UTF-8
Java
false
false
833
java
package com.yadong.pattern.behavioral.chain_of_responsibility; /** *课程 */ public class Course { private String name; private String article; private String video; public String getName() { return name; } public void setName(String name) { this.name = name; } public ...
[ "hydznsqk@163.com" ]
hydznsqk@163.com
d69e09d2a06c56cd8c7b5a0dbda0cb105cd8c12e
a20cc53efe1b7323cc262f7c94e53aceb11401a4
/bean/QuestionBankFillBean.java
91a344c0ba2959825010d2d19810a601339338ac
[]
no_license
WayneLizhi/onlineEaxmSystem
47bbc50b74dad7705367ed880c38e1eab68ada31
043fce0a03fb3e16f875dfec5d10a0bb8ca50dcb
refs/heads/master
2020-04-14T23:34:02.161883
2019-01-05T12:04:07
2019-01-05T12:04:07
164,207,052
0
0
null
2019-01-05T11:14:11
2019-01-05T11:04:02
null
UTF-8
Java
false
false
841
java
package com.online_examination_system.bean; public class QuestionBankFillBean { private int id; private String question; private String answer; private String teachername; private int courseid; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getQu...
[ "noreply@github.com" ]
noreply@github.com
e93df63c8070caacabdfdfee1235170cb1bd37ed
d9e08dee5ce6a44c5ea509f75751e89094849458
/boot-activemq-topic-consumer/src/main/java/com/yyong/activemq/consumer/test/QueueConsumer.java
2f0bc816cfff092170572b6b5f62f07794ce40e1
[]
no_license
yongyong849876282/wangyong
90b80723201b2a73b91ff46aaf8a7f001d6699fe
47ae50f2f497f0ed23b8a127baa574b80fc97eb4
refs/heads/master
2022-07-08T11:40:31.507249
2019-11-28T10:19:02
2019-11-28T10:19:02
224,119,622
0
0
null
2022-07-06T20:44:20
2019-11-26T06:34:01
Java
UTF-8
Java
false
false
432
java
package com.yyong.activemq.consumer.test; import org.springframework.jms.annotation.JmsListener; import org.springframework.stereotype.Component; import javax.jms.TextMessage; @Component public class QueueConsumer { @JmsListener(destination = "${mytopic}") public void receive(TextMessage textMessage)throws ...
[ "wy849876282" ]
wy849876282
8736b21089be184a3e711dea47ae3b351f4d5cc1
8ecfbd90cc2c4a15b7f2301119f486cc1cfd9740
/DemoSlk/src/com/slk/task13/Synchronization/SynchronizedBlockMain.java
2b96504df81656f672c8092f7597cf3df20b0602
[]
no_license
tarunpatel2982/DemoSlk
1f06e48e2a3f582d5ef0bacfcdb496b52c427c04
f7959ee3028a017eed847a0da5f0a898a0b052b8
refs/heads/master
2020-12-05T15:51:53.626047
2020-03-04T10:14:00
2020-03-04T10:14:00
232,162,100
0
0
null
null
null
null
UTF-8
Java
false
false
419
java
package com.slk.task13.Synchronization; public class SynchronizedBlockMain { public static void main(String[] args) { // TODO Auto-generated method stub final Table2 table2 =new Table2(); SynchronizedBlock1 synchronizedBlock1 = new SynchronizedBlock1(table2); SynchronizedBlock2 synchronizedBlock2 =new...
[ "tarun.patel@C069" ]
tarun.patel@C069
4985b2fc2ce0eb8f8f38b0d7df90adbf6d24ed50
5c7f0767ee6663b6d03b014535399d54b1e816c5
/src/org/turnerha/environment/RealEnvironment.java
053aead76c39dfd25550d545f9071b86bfb5e9a5
[]
no_license
hamiltont/Empower
6c099c6f1150ce9a98aeec00a3b75166515c4daa
9e7b62c4e1924f3dc0fdba0351b93504cbad2710
refs/heads/master
2021-01-15T11:49:21.744758
2011-04-13T19:28:34
2011-04-13T19:28:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
131
java
package org.turnerha.environment; // For now this is just a placeholder public interface RealEnvironment extends Environment { }
[ "hamiltont@gmail.com" ]
hamiltont@gmail.com
b52656e4018b1b91504e78b7ee65e7aa7a92e4ce
aa047f0494e73d022077248f807217258e1d1d0d
/tzhehe/5-22/demo_sqlite/src/com/tz/sqlite/dao/StudentService.java
5bb20e256959595aaf5fa062b531a60ac570872f
[]
no_license
AbnerChenyi/April_PublicWork
1412bd482113e3bb8729132e14964e0572297f14
5a75c3a8314becf5fe53485f7690c2fad75ab004
refs/heads/master
2021-01-22T13:13:55.540762
2015-07-08T10:11:48
2015-07-08T10:11:48
null
0
0
null
null
null
null
GB18030
Java
false
false
1,009
java
package com.tz.sqlite.dao; import java.lang.reflect.Field; import java.util.ArrayList; import java.util.List; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import com.tz.sqlite.entity.Student; public class StudentService extends BaseDao<Student> { public StudentService(SQLiteDataba...
[ "158905138@qq.com" ]
158905138@qq.com
ba6229186a052c0ac206f8bdd71bfb15a6395d2c
69aec546718d2fea09420b777ec720ac1632e25d
/src/main/java/com/teccsoluction/hermeticum/controle/PdvController.java
854233b67e8c7c576896b1e5d03bbc93b322ed62
[]
no_license
windsonleo/hermeticum
3338a39377d05e25a0f4189733957e73b9f79127
c0a55f25273b154abaafab4718a02a25c81b63eb
refs/heads/master
2020-03-11T15:24:37.978683
2018-04-23T14:47:20
2018-04-23T14:47:20
130,083,386
0
0
null
null
null
null
UTF-8
Java
false
false
26,683
java
package com.teccsoluction.hermeticum.controle; import java.io.IOException; import java.math.BigDecimal; import java.net.URL; import java.util.Date; import java.util.GregorianCalendar; import java.util.List; import java.util.ResourceBundle; import org.controlsfx.control.textfield.TextFields; import org.springframework...
[ "windsor_melo@hotmail.com" ]
windsor_melo@hotmail.com
a434b518406fe78a4533a04d435cc4c38b3cfbea
8633142abd5ad1583d2bbc4f104578bafd1597db
/src/main/java/it/uniroma3/dia/alfred/mpi/runner/SlaveMPI.java
1a37e921d3e03f658e9138eae9e066bc54b757f2
[ "MIT" ]
permissive
disheng/alfred-mpi
bd5f540fa3ec56a8b159bb56d1a3d9e2982d7724
c95bcbee58497afc97e10d5a4ea03ff5e3393794
refs/heads/master
2021-01-19T15:29:02.670108
2013-10-31T13:05:34
2013-10-31T13:05:34
12,872,427
0
1
null
null
null
null
UTF-8
Java
false
false
6,805
java
package it.uniroma3.dia.alfred.mpi.runner; import it.uniroma3.dia.alfred.mpi.model.ConfigHolder; import it.uniroma3.dia.alfred.mpi.model.constants.ConfigHolderKeys; import it.uniroma3.dia.alfred.mpi.model.serializer.ConfigHolderSerializable; import it.uniroma3.dia.alfred.mpi.runner.MPIConstants.AbortReason; impo...
[ "francesco@furio.me" ]
francesco@furio.me
8e6f2260880c7173d64aa343541495579331c36f
0c656b19d3ea0497b8ea5127f8a3b036de109f86
/android/POS/app/src/androidTest/java/com/dinerico/pos/ApplicationTest.java
835c030f1a3e76264be9451604ffb5689c3302c5
[]
no_license
datil/dinerico
868ec8249b399a34d395efd45ac4dd70cc24ff0d
6684fc08c322059c50dbde215dc889ac7641cd00
refs/heads/master
2021-01-18T11:38:51.087543
2014-11-02T05:59:36
2014-11-02T05:59:36
24,167,937
0
0
null
null
null
null
UTF-8
Java
false
false
347
java
package com.dinerico.pos; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public ApplicationTest() { super(...
[ "joseph_jiy@hotmail.com" ]
joseph_jiy@hotmail.com
530925a503541e9932d9bbabe7d3a338a72e092b
753aa7d815fca5b360a15c8ceb118f11fbd9d842
/project/Airbnb/src/java/controller/RoomProfileController.java
5986b6764022b36e36da960df6c2c01ac82f53db
[ "Apache-2.0" ]
permissive
kougianos/Homie
9d8597ab59d55b49716c189e32cce7b86d786904
b10940ddc7ed7a678450df341af411662eac820c
refs/heads/master
2021-06-17T01:56:48.414385
2021-02-08T14:07:52
2021-02-08T14:07:52
152,896,733
1
0
null
null
null
null
UTF-8
Java
false
false
4,814
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 controller; import dao.RoomDAO; import dao.RoomDAOImpl; import dao.UserRentsRoomDAO; import dao.UserRentsRoomDAOImpl; import d...
[ "kougi_jr@hotmail.com" ]
kougi_jr@hotmail.com
e98ad266c53cf27829e25ca16cd7259b0f9d5d3a
83837bf11e3f5826f59cb9588894403ef7a95def
/app/src/main/java/com/debd/kgp/dsmusic/model/UserCredential.java
0fa9ad00c1c0f24d9ea82ecc3d29cccbce574da8
[]
no_license
debd1995/DSMusic
67153c48916441e6b79da24c2475117f9e3c0959
6833647e194542a3c5f3a777689d9df15b790b61
refs/heads/master
2021-04-15T04:55:24.505859
2018-03-24T12:08:19
2018-03-24T12:08:19
126,594,122
2
1
null
null
null
null
UTF-8
Java
false
false
1,184
java
package com.debd.kgp.dsmusic.model; import java.io.Serializable; public class UserCredential implements Serializable { private String username, password; private boolean rememberStatus, loginStatus; public UserCredential(){} public UserCredential(String username, String password, boolean rememberSta...
[ "root@localhost.localdomain" ]
root@localhost.localdomain
84761aa6ec8ffe0f2fdc7c0d717731405f35577f
1cd92220828054328cf20804dce0b8f16a42b86c
/src/main/java/com/hust/smarthotel/components/user/domain_model/Manager.java
a504e30fd43e33f6114c067a3976854391e1d29a
[]
no_license
vking34/smart-hotel
62ac5a5299924977d9a72677b7167c47c29dd5e7
db2836a962cbbf0a42d51887bc8b53500d244783
refs/heads/master
2020-04-24T19:51:47.839399
2019-10-01T15:06:59
2019-10-01T15:06:59
172,225,822
0
0
null
2019-10-01T15:07:01
2019-02-23T14:49:09
Java
UTF-8
Java
false
false
1,530
java
package com.hust.smarthotel.components.user.domain_model; import com.hust.smarthotel.generic.util.EncryptedPasswordUtils; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import org.springframework.data.annotation.Id; import org.springframework.data.mongodb.core.mapping.Document; ...
[ "root@localhost.localdomain" ]
root@localhost.localdomain
8ce9472d0d6cd2d280d2022c116eb6fe0f24b4bd
25e99a0af5751865bce1702ee85cc5c080b0715c
/design_pattern/src/DPModel/src/dp/com/company/memento/section9/Client.java
620fb5b0ccd6dce7cec893bceb96f70c48954fd7
[]
no_license
jasonblog/note
215837f6a08d07abe3e3d2be2e1f183e14aa4a30
4471f95736c60969a718d854cab929f06726280a
refs/heads/master
2023-05-31T13:02:27.451743
2022-04-04T11:28:06
2022-04-04T11:28:06
35,311,001
130
67
null
2023-02-10T21:26:36
2015-05-09T02:04:40
C
UTF-8
Java
false
false
500
java
package com.company.memento.section9; /** * @author cbf4Life cbf4life@126.com * I'm glad to share my knowledge with you all. */ public class Client { public static void main(String[] args) { //定义出发起人 Originator originator = new Originator(); //定义出备忘录管理员 Caretaker caretaker = new Caretaker(); //创建一个备忘录 ...
[ "jason_yao" ]
jason_yao
700c48c96dc790e789786e6150ec58fad4d95ac3
932ed0800389d12bf1b77346f7c97e32795f1b44
/src/main/java/com/yadu/restaurant/menu/MenuItem.java
ce84416533801c7ec04b1f053b495b3f5995fad7
[]
no_license
nothinggreat2011/gordon_ramsey
975d2ddffa66df27339fc1ae9daf14cef08c0632
de9bde779a2f1ef76d84655f85f99793e645396c
refs/heads/master
2021-06-14T18:20:17.361225
2016-11-22T09:29:46
2016-11-22T09:29:46
74,108,857
0
0
null
null
null
null
UTF-8
Java
false
false
592
java
package com.yadu.restaurant.menu; /** * Created by ybhushan on 18/11/16. */ public class MenuItem { private String name; private int satisfaction; private int timeTakenToEat; public MenuItem(String name, int satisfaction, int timeTakenToEat) { this.name = name; this.satisfaction = ...
[ "yadubhushan2011@gmail.com" ]
yadubhushan2011@gmail.com
7217fa40cdcefdb35afba6a2febc6b58e2e07db2
d7dd88823655437b3ffbf3eb8b3a789cd87bc503
/src/main/java/org/reactome/web/diagram/search/results/cells/SearchResultCell.java
cc0e768a3312e35e0d94bab4e23a5e2e6d5df0c3
[]
no_license
reactome-pwp/diagram
fcfc9cbae6d6ace27e52d5714e0fc75e40570cad
55419a20d5bb4d5f7dbcbd0e253b20cb086a2895
refs/heads/master
2023-06-23T11:34:38.438713
2023-06-13T16:34:45
2023-06-13T16:34:45
39,070,905
5
6
null
2021-06-01T18:38:10
2015-07-14T11:27:19
Java
UTF-8
Java
false
false
5,435
java
package org.reactome.web.diagram.search.results.cells; import com.google.gwt.cell.client.AbstractCell; import com.google.gwt.core.client.GWT; import com.google.gwt.safehtml.client.SafeHtmlTemplates; import com.google.gwt.safehtml.shared.SafeHtml; import com.google.gwt.safehtml.shared.SafeHtmlBuilder; import com.google...
[ "ksidiro@ebi.ac.uk" ]
ksidiro@ebi.ac.uk
cada42e896852cefbdb582e1d01292ce82be499c
e6b03b3eadbd229dd3f0c04651adb43744b959c8
/imkf/src/main/java/com/moor/imkf/netty/channel/socket/nio/AbstractNioSelector.java
d2370e9418016c14fb103c5a68cd4d0888e227c4
[]
no_license
longwei243/kefusdk_new
55e1e9f41ed3e79eb4dc380d67a3d2b9d7ab861d
092ee0b050e083c935894849bd2580ad848c0087
refs/heads/master
2021-01-20T19:09:12.479918
2016-12-05T06:32:25
2016-12-05T06:32:25
64,110,541
0
0
null
null
null
null
UTF-8
Java
false
false
11,599
java
/* * Copyright 2012 The Netty Project * * The Netty Project licenses this file to you 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 ...
[ "liulongwei243@yeah.net" ]
liulongwei243@yeah.net
027dce33a6f082372af16c3be00d9fc4a3e34298
cb1cc3ede9427576d4dce47062e565ffb183e672
/Plugins/Aspose.Slides Java (Maven) for NetBeans/src/com/aspose/slides/maven/AsposeMavenProjectWizardIterator.java
405b4d49c2955a883468b89c9c3addac8d2b3f35
[ "MIT" ]
permissive
aspose-slides/Aspose.Slides-for-Java
fe11ee8c7d9fd21ae39a96328fae1cfead0a0997
51a62aea850deeed57780bba1939919236a2de35
refs/heads/master
2023-08-31T23:13:40.957116
2023-08-23T14:30:30
2023-08-23T14:30:30
2,849,951
31
45
MIT
2023-03-23T17:08:07
2011-11-25T13:57:36
Java
UTF-8
Java
false
false
13,073
java
package com.aspose.slides.maven; import com.aspose.slides.maven.artifacts.Metadata; import com.aspose.slides.maven.utils.AsposeConstants; import com.aspose.slides.maven.utils.AsposeJavaAPI; import com.aspose.slides.maven.utils.AsposeMavenProjectManager; import static com.aspose.slides.maven.utils.AsposeMavenProjectMan...
[ "DAWOOD RIAZ" ]
DAWOOD RIAZ
7d539773375ad09f0ac8259ed749a9a277cead93
627dafa165ee4420680b4144c849e141596ae0b0
/wecardio/project/src/main/java/com/hiteam/common/repository/dao/pub/impl/CountryDaoImpl.java
6b8a38ec692c0bd3fb44d51d812a93de1f95b77b
[]
no_license
tan-tian/wecardio
97339383a00ecd090dd952ea3c4c3f32dac8a6f2
5e291d19bce2d4cebd43040e4195a26d18d947c3
refs/heads/master
2020-04-03T01:01:57.429064
2018-10-25T15:26:50
2018-10-25T15:26:50
154,917,227
0
0
null
null
null
null
UTF-8
Java
false
false
1,624
java
package com.hiteam.common.repository.dao.pub.impl; import com.hiteam.common.base.repository.dao.impl.BaseDaoImpl; import com.hiteam.common.repository.dao.pub.CountryDao; import com.hiteam.common.repository.entity.pub.Country; import com.hiteam.common.util.pojo.EnumBean; import org.apache.commons.lang.StringUtils; impo...
[ "tantiant@126.com" ]
tantiant@126.com
3a20baf72b6689db568639bd535884783a8e1c69
1da4748a085c6fa95bcec038a41fd0773ad862cd
/codigo/PLeiList/src/pleilist/app/facade/handlers/CriarPlaylistAutomaticoHandler.java
778ce5e355bafc8ae86f6f4f862adfc1098adf12
[]
no_license
guigateixeira/PLEI_LIST
d99f9603177d7159b2304d48bdb6af33175d2de5
d14429a7bd00b2881c60d8a6e1d5b50d0e066ca2
refs/heads/main
2023-07-05T21:35:32.674856
2020-12-12T19:39:30
2020-12-12T19:39:30
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,701
java
package pleilist.app.facade.handlers; import java.time.Duration; import java.util.List; import pleilist.app.facade.Sessao; import pleilist.app.facade.dto.Curador; import pleilist.app.facade.dto.Item; import pleilist.app.facade.dto.Playlist; import pleilist.app.facade.dto.biblioteca.BibliotecaPrivada; impo...
[ "noreply@github.com" ]
noreply@github.com
8946b621ddf7d44625f2aae0a454d80dc29fd4bb
f7be2aad450fc96adf5e1f79ffc723b3fefd0874
/CTS_Seminar13/src/ro/ase/cts/tests/TestGrupaWithFake.java
cdb01047f5f15856d729ad7d130f86e9adca6ef0
[]
no_license
anampetrescu/CTS2021
7253a8298100e0052bbaa4fb60ebafe7087cd6d2
a17add2bcd3d1b40772990235129279824982289
refs/heads/master
2023-05-13T15:19:13.597125
2021-06-03T14:05:04
2021-06-03T14:05:04
342,260,049
0
0
null
null
null
null
UTF-8
Java
false
false
794
java
package ro.ase.cts.tests; import static org.junit.Assert.*; import org.junit.Test; import org.junit.experimental.categories.Category; import ro.ase.cts.categorii.TesteGetPromovabilitateCategory; import ro.ase.cts.clase.Grupa; import ro.ase.cts.clase.dubluri.StudentFake; public class TestGrupaWithFake { @Test @Ca...
[ "anamaria.petrescu03@gmail.com" ]
anamaria.petrescu03@gmail.com
9ceba2a661a483157029f90defa366080aaa90c2
3001ba2aa9b0012756dc7082a34ae98908d9f13d
/app/src/main/java/com/marverenic/music/player/MusicPlayer.java
cb76b37f9989904905b8c46000fb3491ce468fad
[ "Apache-2.0" ]
permissive
naijarace/Jockey
ec9d43229032623fc128a874460c68e40db17ac1
5fba5351932d7c4a0b55feb150eccfa56091fb3f
refs/heads/master
2020-12-30T15:43:02.017990
2017-05-11T19:43:00
2017-05-11T19:43:00
91,171,661
1
0
null
2017-05-13T12:08:59
2017-05-13T12:08:59
null
UTF-8
Java
false
false
51,768
java
package com.marverenic.music.player; import android.app.PendingIntent; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.content.SharedPreferences; import android.graphics.Bitmap; import android.media.AudioManage...
[ "marverenic@gmail.com" ]
marverenic@gmail.com
5a57077f4e4df7b35b374f2f6e32ff284bc28df1
c30eaa08440d489990c8dbed0d714130a52220a1
/src/com/luv2code/springdemo/HappyFortuneService.java
350b33438716c6c7dcc70ba27b5447460aa5acc6
[]
no_license
SudalaiM/Spring_Boot
7516f7c2c8df84117366b96cbc06456968b120e8
832df91e25b40107bd48117fc530f5da8623247c
refs/heads/master
2020-11-25T18:26:30.675537
2019-12-18T08:49:53
2019-12-18T08:49:53
228,792,649
0
0
null
null
null
null
UTF-8
Java
false
false
180
java
package com.luv2code.springdemo; public class HappyFortuneService implements FortuneService { @Override public String getFortune() { return "Today Is Your Lucky Day!"; } }
[ "sudalai@admin-PC.cognitivemobile.local" ]
sudalai@admin-PC.cognitivemobile.local
7bbd3057cc134da690b317a7c1383c7ac84991a1
84d67cfe9c6c1ddb2739d3e83b3af72c72313931
/Dir/src/ru/sapteh/Main.java
72c0802b65c5562f1362433b7fad104898befd63
[]
no_license
catBoris453alexmol/Dir
c67a2ac59690142bedde59c10d0e2da1cd6c5b6d
351cf39515e27347ac5a5e6ad19cfed546d65cdc
refs/heads/main
2023-02-17T18:20:24.872021
2021-01-18T13:27:09
2021-01-18T13:27:09
330,674,174
0
0
null
null
null
null
UTF-8
Java
false
false
1,619
java
package ru.sapteh; import java.io.*; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = ne...
[ "noreply@github.com" ]
noreply@github.com
478477e2084a0686eb90b63f2ba2b168731c1364
41188a82ce093f69ffea5684bc2cefc866487652
/server-api/src/main/java/org/jboss/capedwarf/server/api/persistence/ProxyingInterceptor.java
8427a16ee69c2d958ab68bbc0c4229faf263b3ab
[]
no_license
alesj/capedwarf-green
787b4cfa1e576bb14c45fca210bfecf9e34ea59f
a1e7a2a9708d3d6a20a8d101b9b8304b136c2cf7
refs/heads/master
2021-01-16T17:41:50.604010
2011-10-21T19:42:42
2011-10-21T19:42:42
1,859,620
0
0
null
null
null
null
UTF-8
Java
false
false
2,283
java
/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify i...
[ "ales.justin@gmail.com" ]
ales.justin@gmail.com
82f563b419bab530cf1764612e0578404344b55f
be5c86e8fe3f5836b7d2097dd5272c72b5b28f15
/math/Java/0268-missing-number/src/Solution.java
5decc2ff41b060cdb61ca63dc42b9e7a98e1f322
[ "Apache-2.0" ]
permissive
lemonnader/LeetCode-Solution-Well-Formed
d24674898ceb5441c036016dc30afc58e4a1247a
baabdb1990fd49ab82a712e121f49c4f68b29459
refs/heads/master
2021-04-23T18:49:40.337569
2020-03-24T04:50:27
2020-03-24T04:50:27
249,972,064
1
0
Apache-2.0
2020-03-25T12:26:25
2020-03-25T12:26:24
null
UTF-8
Java
false
false
247
java
public class Solution { public int missingNumber(int[] nums) { int n = nums.length; int sum = (n + 1) * n / 2; for (int i = 0; i < n; i++) { sum -= nums[i]; } return sum; } }
[ "liweiwei1419@gmail.com" ]
liweiwei1419@gmail.com
d617d39a2fc959df40932efe48430cc7d003b4a5
1671d87c2e414de8186570983c65c220888f20b1
/第一阶段/JDBCTest/src/com/atguigu/java2/JdbcConnection.java
a481d618561772e8f4931fec8ab2abd42635b447
[]
no_license
qisirendexudoudou/BigData_0722
4f25b508b4c20088d4155abb2d52e1d39c8b0e81
e474e6ebcbbfedd12f859f0198238f58b73e5bec
refs/heads/master
2022-07-21T17:41:47.611707
2019-11-16T05:59:11
2019-11-16T05:59:11
221,875,869
0
0
null
2022-06-21T02:14:43
2019-11-15T08:10:07
Java
UTF-8
Java
false
false
5,092
java
package com.atguigu.java2; import java.io.IOException; import java.io.InputStream; import java.sql.Connection; import java.sql.Driver; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.util.Properties; import org.junit.Test; public class Jd...
[ "546223079@qq.com" ]
546223079@qq.com
ca9e8067033c05c227fe3e22b491c0dacda8761e
455ac8d18441054564df3fe92cf317cad4c5eae5
/evm/src/main/java/tech/pegasys/poc/witnesscodeanalysis/vm/operations/TimestampOperation.java
5b6182f9aa3b198d078d4e1a296599cde8cfe9be
[ "Apache-2.0" ]
permissive
hmijail/codewitness
0c78593d4eda44327946af0659ed63e0adc4b367
eb39ae656648929f71566861d0f7a43c8ffafffd
refs/heads/master
2022-11-07T00:49:44.524305
2020-06-26T22:46:24
2020-06-26T22:46:24
276,542,766
0
0
Apache-2.0
2020-07-02T03:50:33
2020-07-02T03:50:32
null
UTF-8
Java
false
false
1,315
java
/* * Copyright ConsenSys AG. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing...
[ "drinkcoffee@eml.cc" ]
drinkcoffee@eml.cc
f38500792c2684f49252ad714957154a6acb095e
064d2e3f54965c5b3f8d7baced48be0c53bb2eae
/testProject/src/designpatterns/decorator/WorkFather.java
a2f074202c54b250164c850652bcff7aebcb5fdd
[]
no_license
ankailiu/testprj
658c735ff0e4f2e37251880f6e05f0df0ba9f198
d4631595547c7f1beda503b37eb7a9c109827674
refs/heads/master
2021-01-01T15:29:59.162912
2015-03-20T06:16:03
2015-03-20T06:16:03
32,307,360
0
1
null
2015-03-18T10:10:45
2015-03-16T07:06:33
Java
UTF-8
Java
false
false
341
java
package designpatterns.decorator; public class WorkFather extends WorkDecorator { public WorkFather(Work work) { super(work); } @Override public void paint() { super.paint(); this.makeFrameForPaint(); } public void makeFrameForPaint(){ System.out.println("Father make a frame for son's...
[ "ankai.liu@lombardrisk.com" ]
ankai.liu@lombardrisk.com
23e1e73a809ce77cd48b73192b1e7275ce700f48
008830a9de75a3aa2e9c8d1059df580b9983aac5
/examples/gdx-autumn-tests/core/src/com/github/czyzby/context/initiate/Initiator.java
a642b40c7f5ee4e835fc4420a11840cd4de9ac5f
[ "Apache-2.0" ]
permissive
JarvisAPI/gdx-lml
0a8ab4f2d7e757509f91b6ae17d4321629fd2373
d3810454bc3cce59319c6c354438ede98646f95e
refs/heads/master
2022-06-06T18:32:06.917031
2019-12-04T16:51:02
2019-12-04T16:51:02
260,815,073
0
0
Apache-2.0
2020-05-03T02:37:46
2020-05-03T02:37:45
null
UTF-8
Java
false
false
1,548
java
package com.github.czyzby.context.initiate; import com.github.czyzby.autumn.annotation.Component; import com.github.czyzby.autumn.annotation.Destroy; import com.github.czyzby.autumn.annotation.Initiate; import com.github.czyzby.kiwi.log.Logger; import com.github.czyzby.kiwi.log.LoggerService; /** {@link Initiate} and...
[ "john.hervicc@gmail.com" ]
john.hervicc@gmail.com
9beeff78e1c6c30cb890bfe6aac4d54a41b2d2d0
a0f678e4540137f3a3ca31a94b963ac7e2087dc3
/src/hw7Q4Abstraction02/RockefellerUniversity.java
4fd281c73f2bc2154447c363e12b2a8567b5577b
[]
no_license
Imran6th/Enthroll.IT-HW
dbe11ed31c1113d27c69c8a3c3cf8dde23f49d58
3e27230f94b09da1dd22c667c44ec78335b25e0c
refs/heads/main
2023-08-15T05:39:33.412088
2021-09-27T01:34:21
2021-09-27T01:34:21
400,934,012
0
0
null
null
null
null
UTF-8
Java
false
false
128
java
package hw7Q4Abstraction02; public class RockefellerUniversity extends NYUniversity implements College,Hospital,University { }
[ "imran6th@hotmail.com" ]
imran6th@hotmail.com
fa25604cc0a18064b45bbcf90d2d4601c05e4295
02d31dd1cbde6bd98f3fcb94dd842d19776469bc
/src/main/java/artof/designitems/DesignFrame.java
d3d3bf698505558b45c447b831f4d933e29c1828
[]
no_license
delirian/rsf
5e719dd782140421dff786109c9620c0d92f6f83
ad4e147fa3e0b070d1de4ac3ed96de573c40c2d1
refs/heads/master
2021-06-16T01:18:10.679344
2017-02-01T12:16:17
2017-02-01T12:16:17
80,531,589
0
0
null
null
null
null
UTF-8
Java
false
false
10,716
java
package artof.designitems; import artof.database.*; import artof.utils.*; import artof.designer.Designer; import artof.designitems.dialogs.DesignDialogFrames; import artof.materials.*; import java.awt.*; import java.util.*; import java.io.*; import javax.swing.JPanel; import java.awt.image.BufferedImage; /** * Title:...
[ "christiedavel@gmail.com" ]
christiedavel@gmail.com
13cfeb57a601b9c908558972492a7cf4b41da108
e2b6a07d1f5145ce89f4998ce998b9d03d44f931
/src/main/java/tech/jiangtao/backstage/controller/addition/AccountTigController.java
d3f98081b43cbd4824692eb1a16f1e71415a2c17
[ "Apache-2.0" ]
permissive
BosCattle/JMessage-Api
3f851652833aeab3c740e4c71633e246c87d2cc9
554c9f042a74a415c1bd1f2a0432371a5807ddeb
refs/heads/master
2021-06-16T00:38:04.301705
2017-05-08T19:42:30
2017-05-08T19:42:30
82,381,164
0
0
null
null
null
null
UTF-8
Java
false
false
3,465
java
package tech.jiangtao.backstage.controller.addition; import io.swagger.annotations.Api; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParams; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import javax.servlet.http.HttpServletResponse; imp...
[ "jiangtao103cp@163.com" ]
jiangtao103cp@163.com
41b33dca40f8c29a34758d3387bcd5ad855b4e1b
f9c4d2dff72da66936dddeaf461a40d8c5f758ec
/Project and Final/project/Step3/keyDeriveFunction.java
0ddb27de30b3a1d0275675c774137a10c965a848
[]
no_license
xiaochenai/Information-Security-Labs
bb6a19289ec34b7a5c3a62f2f00105b8bbc6d637
5c9254885bf272e195397ebf38d697c222a95356
refs/heads/master
2021-01-01T17:47:29.759042
2014-10-10T20:02:43
2014-10-10T20:02:43
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,531
java
import java.io.IOException; import java.security.InvalidKeyException; import java.security.NoSuchAlgorithmException; import java.security.NoSuchProviderException; import javax.crypto.Mac; import javax.crypto.SecretKey; import javax.crypto.spec.SecretKeySpec; import biz.source_code.base64Coder.Base64Coder; public cl...
[ "xzl0036@auburn.edu" ]
xzl0036@auburn.edu
35c0de562c2e913414338cbec5a2b92e3b7029fd
228149574190f1432301982b4d3088b33be6901a
/MultipleInterface.java
abac386fce7f6c21d53664288ea88af04ce3c738
[]
no_license
mahiambekar/java
859760c9e0e2f09277a7abcebdab8f5d2277218f
6192221b35a92b7d92569002875dfa8385a0048b
refs/heads/master
2022-12-06T14:15:53.357923
2020-09-03T11:21:21
2020-09-03T11:21:21
269,244,225
0
0
null
null
null
null
UTF-8
Java
false
false
764
java
/****************************************************************************** Online Java Compiler. Code, Compile, Run and Debug java program online. Write your code in this editor and press "Run" button to execute it. *****************************************************...
[ "noreply@github.com" ]
noreply@github.com
cc42c4fdfa0faa49c2e77798bccfb4575c6900fb
b0282328962ebec281ffda24600657d6bd35e796
/starter-microservice-web/src/main/java/com/ibm/liberty/starter/service/web/api/v1/ProviderEndpoint.java
47d06b62b79da3a9ad16b82ddec3946b7165a11a
[ "Apache-2.0" ]
permissive
leochr/tool.accelerate.core
af80fb73f366520d83effdc6cb4a4d84d00211af
6b7efaf8a809d3bad677455f3bf3aa529d58e142
refs/heads/master
2021-01-22T05:19:51.513023
2016-07-26T14:05:40
2016-07-26T14:05:40
64,339,710
0
0
null
2016-07-27T20:30:17
2016-07-27T20:30:17
null
UTF-8
Java
false
false
4,752
java
/******************************************************************************* * Copyright (c) 2016 IBM Corp. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache...
[ "katheris@uk.ibm.com" ]
katheris@uk.ibm.com
99a2a22a742caf3b483c2e95c752873893be5396
c5096090f769aee575df9c10c1505e5855ecf38a
/usaco/nocows_java/nocows.java
e37579d7f918b8ef6f1705a781d7140107caf3b8
[]
no_license
fanofxiaofeng/cpp
51d50455ef3431eb1dfbec88790c066e19b46340
a7f32b0d508fac156fd313b602d03a96a4569f6b
refs/heads/master
2020-04-05T22:53:32.421275
2015-01-03T01:40:22
2015-01-03T01:40:22
26,848,676
0
0
null
null
null
null
UTF-8
Java
false
false
3,183
java
/* ID: jyjz2001 LANG: JAVA TASK: nocows */ import java.io.*; import java.util.*; class nocows { public static void main (String [] args) throws IOException { // Use BufferedReader rather than RandomAccessFile; it's much faster BufferedReader f = new BufferedReader(new FileReader("nocows.in")); ...
[ "jyjz2008@sjtu.edu.cn" ]
jyjz2008@sjtu.edu.cn
6b2397f7fb77cad902735ec985cd75e7a341e597
545ed9f0e5878f6b98ce937294c65e40c3aff39e
/src/main/java/com/satyam/oca/chap2/IntegerComparisionDemo.java
83869710f18ca2e90b3ad6c0749c1c30fd3435a2
[]
no_license
neo182/oca-traps
d49d748025d495cb3a2e67c32e5a8ba92cfef9c8
6053836e183715db53e536b1cc56d73345f995a8
refs/heads/master
2021-01-20T05:33:42.756072
2018-08-21T22:11:52
2018-08-21T22:11:52
89,790,591
0
0
null
null
null
null
UTF-8
Java
false
false
871
java
package com.satyam.oca.chap2; /** * * @author satyam */ public class IntegerComparisionDemo { public static void main(String[] args) { Integer a = new Integer(1); Integer b = new Integer(1); System.out.println("Integer ref equals " + (a == b)); a = 1; b = 1; ...
[ "meet_neo1@gmail.com" ]
meet_neo1@gmail.com
aceb8b30061fd82c0b16198cb10c412aa0b6b068
cd303d35fa037e8eecd4aa03381765342b2cff6a
/src/main/java/org/springframework/data/orientdb3/repository/support/CollectOrientdbIdParserPostProcessor.java
8ca223651d4b1de56cfca95363bed51b7f25c265
[]
no_license
xxcxy/spring-data-orientdb
965cb6d607048a214a6f8a79d07b683f88e495b7
fe70fc9faf1b971d850657c29101784fbc86ade4
refs/heads/master
2023-06-07T20:01:29.187918
2019-11-13T12:38:11
2019-11-13T12:38:11
214,389,590
2
1
null
2023-05-26T22:14:52
2019-10-11T08:54:39
Java
UTF-8
Java
false
false
1,095
java
package org.springframework.data.orientdb3.repository.support; import org.springframework.beans.BeansException; import org.springframework.beans.factory.config.BeanFactoryPostProcessor; import org.springframework.beans.factory.config.ConfigurableListableBeanFactory; /** * Sets up all {@link OrientdbIdParser}. * * ...
[ "bert7914@gmail.com" ]
bert7914@gmail.com
953fcacebb555d29594e6cebe4f1c03bd3d74170
f9a9885970edee88d925c4789b88c9a61885e742
/src/dms/SearchProjectForm.java
48d132876ba37d6f83a8f03e1d07a00534f25ae4
[]
no_license
UzairAhmedBhatti/Donation-Management-System
a1b2567ec4532b704e80d5ea52f9728edd2a8a78
0a92472c74e6c393f3ef3a9bbf37f85b7add009c
refs/heads/main
2023-05-28T21:45:48.455285
2021-06-05T17:35:33
2021-06-05T17:35:33
330,770,604
0
1
null
null
null
null
UTF-8
Java
false
false
13,565
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 dms; /** * * @author Uzair */ import java.util.*; import javax.swing.table.DefaultTableModel; public class SearchProjectFor...
[ "noreply@github.com" ]
noreply@github.com
3fae59dbd2e9a560cbb1f33a19729c406699f0aa
3e3f7eb5e7a1714d6e3c8845368db9d17861a8cb
/Java/SpaceCup/src/br/com/spacecup/dao/EquipeDAO.java
db07fc1d88b4541741f30f4b3f1964c07d0fa77f
[]
no_license
danielkiesshau/FIAP_Project_2SI
bc7c3ce7515d825deec0916a9ca6bd4740c4905b
4d36c89f98f46fb4a7f3a68d5e44017786d085ea
refs/heads/master
2021-05-04T13:59:29.786242
2018-02-05T16:10:13
2018-02-05T16:10:13
120,327,381
0
0
null
null
null
null
UTF-8
Java
false
false
1,324
java
package br.com.spacecup.dao; import br.com.spacecup.conexao.Conexao; import br.com.spacecup.modelo.Aluno; import br.com.spacecup.modelo.Equipe; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; impo...
[ "danielkiesshau@outlook.com" ]
danielkiesshau@outlook.com
d6750adccd6e14bec33485fe6fdff1280cb19237
bc7494ecc2a877e9d6f5e449d7940b5fb3ade57f
/src/main/java/com/xiaoyu/lingdian/tool/wx/WxPayUtil.java
1f47aaf415baecc5d982768799512e7eadeaa6c0
[]
no_license
zhangxiaoyu185/runing
8632c5564f8b8f9e01b4eb9e49062964a4357a0f
f3fe06008e954d545788f955b4772655514dc28b
refs/heads/master
2022-12-22T00:48:16.364055
2019-06-02T05:39:26
2019-06-02T05:39:26
128,635,363
3
4
null
2022-12-16T04:33:31
2018-04-08T11:45:40
JavaScript
UTF-8
Java
false
false
12,300
java
package com.xiaoyu.lingdian.tool.wx; import java.io.ByteArrayInputStream; import java.io.InputStream; import java.io.StringReader; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Set; import java.util.SortedMap; import java.util.TreeMap; import org.ap...
[ "zy135185@163.com" ]
zy135185@163.com
6a10c709ca7dfce9686dac9c03535b419c5c9698
1a9ceff7e463ff03098bcef67744c53f2d9788bb
/speed-core/speed-core-domain/src/main/java/org/phoenix/speed/domain/config/MapperScanConfig.java
968f43d7e67c5ec596aa4660755c2c9820a7fdbf
[ "Apache-2.0" ]
permissive
aaa448579123/Speed
ffd2cf6a5a1b83db3e69fe53709e1336d412f270
eca663ac65879d9c699ee799f2d3f9992b0ed08b
refs/heads/master
2022-11-08T19:43:50.880654
2020-03-18T06:34:57
2020-03-18T06:34:57
243,929,163
4
0
Apache-2.0
2022-10-12T20:37:40
2020-02-29T08:06:30
Java
UTF-8
Java
false
false
230
java
package org.phoenix.speed.domain.config; import org.mybatis.spring.annotation.MapperScan; import org.springframework.stereotype.Component; @MapperScan("org.phoenix.speed.domain.dao") @Component public class MapperScanConfig { }
[ "851952906@qq.com" ]
851952906@qq.com
88af95839f3659a317072008f5078c42d5de6344
7dd9b324e603eee358885027f7e745868053f790
/src/Orders/UntilEngaged.java
98a5605dbbef1d12d16dfa3dbeeac8e0904bf6cc
[]
no_license
arlo181/BattleSim
71ce19fdec2e7b276a201cad5d05ed48370c87f6
006ada82b53061741eedc2dbd777700ce866da94
refs/heads/master
2021-09-10T08:03:29.855450
2018-03-22T14:21:17
2018-03-22T14:21:17
105,155,108
0
0
null
null
null
null
UTF-8
Java
false
false
434
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Orders; /** * * @author Arlo */ public class UntilEngaged extends Countdown{ double percentage; public UntilEngaged(int timeoutTicks, double percentage) { super(timeoutTicks); this...
[ "32363957+arlo181@users.noreply.github.com" ]
32363957+arlo181@users.noreply.github.com
91e4fa961543b7561a8b9abde4175e8c6d57e97e
9fc849970c854b4d5283b7f4d9fc1bd7f0a1bba0
/javaStudySSM/src/main/java/ch11/no3/jvmTest/BitSetTest.java
5933f621973835c816ce6df5ed47ff8e4b911fe7
[]
no_license
namhokim/studyJava
b5f59c6429f04af7498d3fa563ed1328c690849b
4a308a1d8a72802f68975ac6c6bef0f5734eaca1
refs/heads/master
2022-09-27T12:04:23.561686
2022-09-13T15:57:57
2022-09-13T15:57:57
25,922,576
0
0
null
null
null
null
UTF-8
Java
false
false
348
java
package ch11.no3.jvmTest; import java.util.BitSet; public class BitSetTest { static final int FIVE_HUNDRED_MILLIION = 500000000; // 5억 public static void main(String[] args) { BitSet bs = new BitSet(FIVE_HUNDRED_MILLIION); System.out.println("BitSet[0]" + bs.get(0)); bs.set(0); System.out.println("BitSet...
[ "namhokim@sindoh.com" ]
namhokim@sindoh.com
031b2e4bebec9c2f5e3a13f468b53343dfeba523
00ed68367f4c2f4001a9b7d06ece47e1235a14e1
/app/src/main/java/br/com/digitalhouse/workshopmarvel/view/DetailActivity.java
bb73930d8b6b152b9b69a7c14405668b48419206
[]
no_license
DigitalHouseBrasil/WorkshopMobileAndroid-11-03-2019
ff0dbde73a3b21d0d740959d5ee46659ec373a18
3fd4d378937a629bed7ca2fe9b7c478364143b40
refs/heads/master
2020-04-27T22:40:25.939138
2019-03-09T21:58:36
2019-03-09T21:58:36
174,744,863
0
1
null
null
null
null
UTF-8
Java
false
false
5,614
java
package br.com.digitalhouse.workshopmarvel.view; import android.content.Intent; import android.os.Bundle; import android.support.design.widget.AppBarLayout; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.text.Html; import android.transition.Explode; import and...
[ "tairoroberto@hotmail.com" ]
tairoroberto@hotmail.com
01033ae58c6282ee659396c3205e52221ca2b05b
c285a5572e0e7233a5bd6aaf79348e7cd207fbbc
/practice2/src/main/java/com/oops/DiamondProblem.java
13cbd9e71fa16427659995f325dcf39654f2ad3f
[]
no_license
ShashankSVN/svnbyshashank
c58bdd6ecb8f4d659640e3af0bfd2495a16e7167
be5d0b7e1db3099c79e78811682c1ccea07a6fc3
refs/heads/master
2021-06-30T08:04:07.796353
2020-03-29T14:00:37
2020-03-29T14:00:37
32,139,067
0
0
null
2020-10-13T20:44:22
2015-03-13T07:30:28
Java
UTF-8
Java
false
false
569
java
package com.oops; class A { void method() { System.out.println("A"); } } class B { void method() { System.out.println("B"); } } class C extends A { } // Diamond problem will becoming when we do multiple inheritance with classes // assume C extends A and B and we don't have defination in A than on calling...
[ "shashankbiet@gmail.com" ]
shashankbiet@gmail.com
d3a08838e4de98bcd8abf87bc665e1e11fbdb9f1
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/4/4_edb6325d2357f1bd7f6815da746a5f56c7706299/TexturedGeometryClipmapTerrainExample/4_edb6325d2357f1bd7f6815da746a5f56c7706299_TexturedGeometryClipmapTerrainExample_t.java
67c80340b45e97d1087fb2ec0f91004f1bda4613
[]
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
18,431
java
/** * Copyright (c) 2008-2009 Ardor Labs, Inc. * * This file is part of Ardor3D. * * Ardor3D is free software: you can redistribute it and/or modify it * under the terms of its license which may be found in the accompanying * LICENSE file or at <http://www.ardor3d.com/LICENSE>. */ package com.ardor3d.example....
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
53c2d6570053dc9bb8ebd7ccc6118052ff5b577b
13dfd110df6cccc7ed5ce992ba5e7eadc56a42af
/sm-core/src/test/java/com/salesmanager/test/shipping/ShippingMethodDecisionTest.java
8d9b14e3a7c63b2f23b037a6254aae5c27aa4a16
[]
no_license
ajaytiwari000/Habbit
24ca9455f0200e648640079945a04b01918dac7b
1ccff760c0a17515748cdc7c9d133fae71b8d937
refs/heads/master
2023-03-21T11:32:26.708784
2021-03-12T07:38:02
2021-03-12T07:38:02
265,888,454
1
0
null
null
null
null
UTF-8
Java
false
false
2,897
java
package com.salesmanager.test.shipping; import com.salesmanager.core.business.modules.integration.shipping.impl.ShippingDecisionPreProcessorImpl; import com.salesmanager.core.model.common.Delivery; import com.salesmanager.core.model.reference.country.Country; import com.salesmanager.core.model.reference.zone.Zone; imp...
[ "ajaytiwari000@gmail.com" ]
ajaytiwari000@gmail.com
2525c2ed11d5f50cbab2d4ac1730e3e5bbb914d5
7a8262797d4428ff119a24b255e582c171f539b4
/noah/Client.java
96c79a6e5d6d1efa61d5a06fc4a3d5d1d5263da1
[]
no_license
NazerkeBS/Distributed-Systems
93afbbdd124bc01b166ff4dcb5443f25bb40a241
d7e445eaf2129e9a4f0175fe1dbefa59ac308a6c
refs/heads/master
2020-04-22T23:37:50.422248
2019-05-28T21:12:32
2019-05-28T21:12:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
940
java
import java.util.*; import java.io.*; import java.net.*; import java.rmi.registry.*; public class Client{ public static void main(String[] args) throws Exception{ Socket socket = new Socket("localhost", 12345); String animal; List<String> result = new ArrayList<>(); while(true){ try{ ObjectInputStrea...
[ "seinaz1997@gmail.com" ]
seinaz1997@gmail.com
94e38fd6d35deb8e902f8ed55f1f92783635a0c6
83be2eee23f1e7caee053637627b3513e27a99bf
/src/main/java/com/example/TheaterCircle/WebApplicationConfig.java
ddc13aa3568635a9f09e783e479d09419b1e711d
[]
no_license
jaydedm/TheaterCircle
225956810e80f5aa918c396d80ff634f5316059b
917dc062d99a4dbc1821678112e6d1e2a3e0069b
refs/heads/master
2020-03-25T13:22:29.024096
2018-08-07T05:09:17
2018-08-07T05:09:17
143,105,508
0
0
null
null
null
null
UTF-8
Java
false
false
666
java
package com.example.TheaterCircle; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration ...
[ "jdmitchell@alumni.berklee.edu" ]
jdmitchell@alumni.berklee.edu
b62e2d7587d0e17fe6f181fcfbb5a6356bbf24f2
72714ed75716e928ce3ced4f987cbeb979441aca
/src/main/java/com/sunway/ws/module/common/DataStatus.java
ed9cb15a597c7ffa0767f536e6960131e0469eb9
[]
no_license
ld000/ppms-interface
cb5a265f5e5500c566756d48be6848de66cff6f4
19eeec414d7ea4996d7416f51e0a91deb1fcf184
refs/heads/master
2021-06-01T01:23:17.821920
2016-04-04T17:13:48
2016-04-04T17:13:48
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,082
java
package com.sunway.ws.module.common; /** * 数据发送状态 */ public enum DataStatus { /** * 成功 */ SUCCESS(0, "成功"), /** * 失败(会重发) */ FAILED(1, "失败(会重发)"), /** * 失败(失败次数过多,不重发) */ FAILED_TOO_MANY_TIMES(2, "失败(失败次数过多,不重发)"), /** * 接口未开启或在 i_config 表中无记录 */ WARN_NO_CLIENT(3, "接口未开启或在 i_config 表中无记录"...
[ "lidong9144@163.com" ]
lidong9144@163.com
e095c70d9f7246d058d2416c57f3ae07d93f2fbe
b591dc9a8ea98a560a0371a4470362b16061cfb8
/src/main/java/org/jenkinsci/plugins/database/steps/DatabaseConnectionStep.java
93d6f652f49a1cef70b5bd84bc4f2870a9ccf7f3
[]
no_license
timja/database-plugin
b7a8c235af14f5efe52ecc6ad72fd6f76483f338
69db582bf6fa9753f9370e61a3810453be2572d0
refs/heads/master
2023-07-07T00:48:06.282974
2017-07-16T02:43:44
2017-07-16T02:44:03
287,902,210
0
0
null
2020-08-16T08:15:37
2020-08-16T08:15:36
null
UTF-8
Java
false
false
5,882
java
package org.jenkinsci.plugins.database.steps; import hudson.Extension; import hudson.Util; import hudson.model.Run; import hudson.model.TaskListener; import hudson.model.TopLevelItem; import hudson.util.ListBoxModel; import org.jenkinsci.plugins.database.GlobalDatabaseConfiguration; import org.jenkinsci.plugins.databa...
[ "david@vanlaatum.id.au" ]
david@vanlaatum.id.au
dc311bdf0d9154638c717be9835e169911c4457a
133454e2906482c1791acb682f29396da1b5d2e6
/Chess-Game/src/chess/pieces/Queen.java
f7cc33df5bfdf7c09586dff3c7865daee7721c9c
[]
no_license
FelipeZucchiNeves/JogoDeXadrez
0482bbef94ea215400815a82a821786ce8318c53
6220d2750cf73f5f8efbb65eabfb9dbe4501f4e0
refs/heads/master
2020-07-25T11:22:07.088338
2019-11-11T20:08:45
2019-11-11T20:08:45
208,271,792
0
0
null
null
null
null
UTF-8
Java
false
false
3,393
java
package chess.pieces; import boardgame.Board; import boardgame.Position; import chess.ChessPiece; import chess.Color; public class Queen extends ChessPiece { public Queen(Board board, Color color) { super(board, color); } @Override public String toString() { return "Q"; } @Override public boolean[][] po...
[ "felipe_neves_2@hotmail.com" ]
felipe_neves_2@hotmail.com
4e501333665c9bf37417e537c2fcdee282b8ae66
b78f4e4fb8689c0c3b71a1562a7ee4228a116cda
/JFramework/crypto/src/main/java/org/bouncycastle/asn1/x9/X9IntegerConverter.java
26865d3726a28e2fa20bbeee668b6ff0fccf1663
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
richkmeli/JFramework
94c6888a6bb9af8cbff924e8a1525e6ec4765902
54250a32b196bb9408fb5715e1c677a26255bc29
refs/heads/master
2023-07-24T23:59:19.077417
2023-05-05T22:52:14
2023-05-05T22:52:14
176,379,860
5
6
Apache-2.0
2023-07-13T22:58:27
2019-03-18T22:32:12
Java
UTF-8
Java
false
false
1,715
java
package org.bouncycastle.asn1.x9; import org.bouncycastle.math.ec.ECCurve; import org.bouncycastle.math.ec.ECFieldElement; import java.math.BigInteger; /** * A class which converts integers to byte arrays, allowing padding and calculations * to be done according the the filed size of the curve or field element inv...
[ "richkmeli@gmail.com" ]
richkmeli@gmail.com
f2ca35b179ddf69ed5c5957ca593eb93aa4588cc
d0f716063ffd74f9416bce6fe79aed2591654f42
/app/src/main/java/com/pma/mastercart/asyncTasks/NotificationTask.java
c541ddc50577336ab6b3af83b359bc5cf3f263dc
[]
no_license
tanjaindjic/MasterCart
51e2484b6c079da40fafbb850acb071f93237966
aeda5033bdc20687bb6119e0b8c8a5c3a7e48ef0
refs/heads/master
2020-05-05T10:15:40.586756
2019-07-02T19:32:34
2019-07-02T19:32:34
179,937,013
1
1
null
null
null
null
UTF-8
Java
false
false
2,217
java
package com.pma.mastercart.asyncTasks; import android.app.NotificationManager; import android.content.Context; import android.content.SharedPreferences; import android.os.AsyncTask; import android.support.v4.app.NotificationCompat; import android.util.Log; import com.pma.mastercart.MainActivity; import com.pma.master...
[ "mali.patuljko@gmail.com" ]
mali.patuljko@gmail.com
f21cca1c910acc9a712b17ed027b78c70387a08a
cddb85c171d04311b990fff4438f640dc6071bc2
/bookkeeper-server/src/test/java/org/apache/bookkeeper/bookie/BookieJournalTest.java
5d9de18cd9811fe74d98b8591ec5bf0f5641a6cb
[ "Apache-2.0" ]
permissive
harshitgupta1337/bookkeeper
c599db614b5922c6a4935d0a80628cd6db7dbe2a
751990111f2839d13b481908d8930d23f38af5ca
refs/heads/master
2023-02-08T20:15:07.443797
2020-12-31T21:26:42
2020-12-31T21:26:42
325,875,508
0
0
null
null
null
null
UTF-8
Java
false
false
28,333
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"); y...
[ "harshitg@gatech.edu" ]
harshitg@gatech.edu
8828df8fb6e726a1258341eee508fb770276fbd4
ac5d08387f8c51289fdad003b7c9f5ad8c77e876
/corona_android/app/src/main/java/com/example/corona/PatientDetailActivity.java
550e0d9e687eadb3484ff1b4af762c766350f3ec
[]
no_license
CJW23/Corona_Android_Project
cdaecc3f792619d97b9f6c507ef2cc0ac2a34aef
146d9d986121a5f0b53056e57d0b78a400f5ee27
refs/heads/master
2021-03-03T11:26:27.668413
2020-03-22T13:12:40
2020-03-22T13:12:40
245,957,420
0
0
null
null
null
null
UTF-8
Java
false
false
618
java
package com.example.corona; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import android.widget.TextView; public class PatientDetailActivity extends AppCompatActivity { private TextView text; private Intent intent; @Override protected void ...
[ "cjw7242@gmail.com" ]
cjw7242@gmail.com
3933efb3a2966274096c6d8378a303930478d763
8ec951ba315ed12565e753c3ba4426110e7e0457
/src/main/java/com/app/controller/UserController.java
c166c4b26c1a74f9d4b10b25f45f248330a49ffa
[]
no_license
Uniquebuddies110/SpringBoot-AngularJs-SPA-App
9ae376a9ac0810c213d95de51c30615e7fdeb51a
7450d6c302d0aeeee9933bdb6a1c7c3c8b091351
refs/heads/master
2022-12-18T03:09:55.238285
2020-09-13T16:26:57
2020-09-13T16:26:57
295,190,631
0
0
null
null
null
null
UTF-8
Java
false
false
1,322
java
package com.app.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestBody; import org.springfr...
[ "ajay@Ajay" ]
ajay@Ajay
bbb0fbbb65e4b8419c1988ab562345d9536337bf
94bb04dd64316854c4029958d6bedd5d4d76b99e
/ConvertMe/src/main/java/Convert.java
88f400f283bbc9dc7945f4ce2bc491a77b79e602
[]
no_license
Ipshita-Das22/converting-documents-using-Java-application
40f260b78ffd345642de14b7b51dfbbfb599741e
67e2773746779b76daebd820c359ebff2c2ad308
refs/heads/main
2023-07-28T15:58:32.706241
2021-09-07T07:01:39
2021-09-07T07:01:39
403,873,854
1
0
null
null
null
null
UTF-8
Java
false
false
9,390
java
import com.aspose.words.*; import com.spire.pdf.FileFormat; import com.spire.pdf.PdfDocument; import javax.swing.*; import javax.swing.filechooser.FileNameExtensionFilter; import java.awt.*; import java.awt.Font; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; public class Conver...
[ "noreply@github.com" ]
noreply@github.com
ca7b7b4c33ce98d1ea9161985f54b81d7d3e7072
cb7b6e948ddea1ab8dc5fd0565059cd5b5de9a23
/src/main/java/com/vgmsistemas/vgmweb/service/ContactoService.java
c2e2aaa0535890747ec4ba65f4a9bf63bac14a6d
[]
no_license
mdgarcia4/VGMWeb
631ae57e564165f967a4fa555415e668fa57ef50
d901f61cb94cbf8d58e8baa9a8433dc4b0e7fb94
refs/heads/master
2023-03-08T01:02:28.337294
2021-02-17T19:41:38
2021-02-17T19:41:38
263,759,735
1
0
null
null
null
null
UTF-8
Java
false
false
2,302
java
package com.vgmsistemas.vgmweb.service; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.mail.MailAuthenticationException; import org.springframework.mail.MailException; import org.springframework.mail.MailParseException;...
[ "gustavorbravo@gmail.com" ]
gustavorbravo@gmail.com
2b04f3198cce575f41eca5f308abcb6c015538b9
ca0ff73a182fb8daf1478dba04683a5d0c205680
/Spring/Spring_Recipes_3/Ch5/Recipe_5_1_v/src/main/java/com/apress/springrecipes/court/web/RestMemberController.java
a2cb0464d5391cc971638598fe727e540f1348d8
[]
no_license
DawningTiger/Studio
3db6c8f3e56600201947ffd0f652c76f663f328b
0472979ea13ddb5d3a836bc9fc7dbd5d8f710c24
refs/heads/master
2023-04-27T18:28:05.502124
2019-11-07T05:53:11
2019-11-07T05:53:11
91,751,549
3
0
null
2023-04-21T20:39:53
2017-05-19T01:10:45
HTML
UTF-8
Java
false
false
1,475
java
package com.apress.springrecipes.court.web; import com.apress.springrecipes.court.domain.Member; import com.apress.springrecipes.court.domain.Members; import com.apress.springrecipes.court.service.MemberService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; ...
[ "410758267@qq.com" ]
410758267@qq.com
59ed8c26010227b900df60300cbbd3f1e1f0f1c8
ae5eb1a38b4d22c82dfd67c86db73592094edc4b
/project475/src/test/java/org/gradle/test/performance/largejavamultiproject/project475/p2378/Test47564.java
e9e9e401a64618e2961d6023f4bb75f8ecbc7f8b
[]
no_license
big-guy/largeJavaMultiProject
405cc7f55301e1fd87cee5878a165ec5d4a071aa
1cd6a3f9c59e9b13dffa35ad27d911114f253c33
refs/heads/main
2023-03-17T10:59:53.226128
2021-03-04T01:01:39
2021-03-04T01:01:39
344,307,977
0
0
null
null
null
null
UTF-8
Java
false
false
2,182
java
package org.gradle.test.performance.largejavamultiproject.project475.p2378; import org.junit.Test; import static org.junit.Assert.*; public class Test47564 { Production47564 objectUnderTest = new Production47564(); @Test public void testProperty0() { Production47561 value = new Production47561();...
[ "sterling.greene@gmail.com" ]
sterling.greene@gmail.com
48296ef1f4084aaa11abc7ba96c165890a9f07f5
d23386db14dca6ade2604bd1de959d2dab7b8d09
/Robot2/app/src/main/java/com/example/administrator/robot/FtpUtil.java
285a93a63a7149cb27a4ad403e5f9eb0461a4909
[]
no_license
dybangel/gubaomojing
3f30b74f9a845b56bd00267e33992050025e0a50
59d3d0779d2016555844f75d34ff5348f7eb17cf
refs/heads/master
2020-04-12T04:45:39.501331
2019-10-14T17:00:18
2019-10-14T17:00:18
162,304,891
0
0
null
null
null
null
UTF-8
Java
false
false
4,177
java
package com.example.administrator.robot; import android.util.Log; import java.io.FileInputStream; import java.io.FileOutputStream; import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPReply; class FtpUtil { private FTPClient ftpClient; private String serverIp; private int por...
[ "176682769@qq.com" ]
176682769@qq.com
e92555eba6cef426eecb62c9e04f1bd4e8f44055
c7da370b30f14e7cd8a5810143cc691c283a81a3
/9.ssm小微博/ssm-wb/src/com/lzr/controller/AdminuserController.java
c88442b8793485e8dd541a30b9efd6613c1cdfe9
[]
no_license
xu-juan/project
86d5484be0c3044e5715b993ce0ed3f4b1403248
ff43774353d8ac2130926b1b3aa8a18c7f91c486
refs/heads/master
2021-09-27T19:54:50.552210
2018-11-11T05:52:41
2018-11-11T05:52:41
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,366
java
package com.lzr.controller; import java.util.Date; import java.util.List; import java.util.Map; import javax.annotation.Resource; import javax.servlet.http.HttpSession; import org.springframework.http.HttpRequest; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.spring...
[ "188@139.com" ]
188@139.com
f722f283e21d393ae877cf7075fe3706a59fa672
715f53b208df06ad80bf89245141773932599fc6
/M1L5/M1_L5_FranksHolly/src/m1_l5_franksholly/M1_L5_FranksHolly.java
320537daa2d82eb762f5da1ad01e0a921fa9cf57
[]
no_license
Franksh8359/FTCC_JavaAssignments
0de31a0b7420d62e4f6e980bf5f4b9a7d29a7462
349212afe7f070293bcbc4c8cae55e0a1c2eca39
refs/heads/master
2020-12-27T02:15:49.773670
2020-02-02T06:37:33
2020-02-02T06:37:33
237,730,751
0
0
null
null
null
null
UTF-8
Java
false
false
1,419
java
/** * Here is lab 5 from module 1 (Personal Information Class) using NetBeans! * 8-28-2017 * CSC 251 Lab 5 - Personal Information Class * @author Holly Franks */ package m1_l5_franksholly; public class M1_L5_FranksHolly { public static void main(String[] args) { Person me = new Person(); ...
[ "franksh8359@student.faytechcc.edu" ]
franksh8359@student.faytechcc.edu
6d6a65fe5533886da34ff33c31856adb5c2d006e
3fc119016ed3cf417bc1854c5fd312e993921911
/src/main/java/br/com/fwtj/MavenJSfPrimefaces/jpa/MultiTenantProvider.java
bd22b6ccaf4c9fea1091eec6bc77fa476a1c557e
[]
no_license
fredwilliamtjr/JsfDeltaspikeMultiTenantSession
ffee2129f8729923cbf67d3da489b58a034715c5
48bda75a5366f632480fe85cb1c5eea350f45943
refs/heads/master
2022-12-07T13:02:26.214149
2020-01-18T14:53:10
2020-01-18T14:53:10
175,270,316
2
1
null
2022-11-24T08:54:04
2019-03-12T18:07:05
Java
UTF-8
Java
false
false
6,432
java
package br.com.fwtj.MavenJSfPrimefaces.jpa; import org.hibernate.HibernateException; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.c3p0.internal.C3P0ConnectionProvider; import org.hibernate.cfg.Environment; import org.hibernate.engine.config.spi.ConfigurationService; import or...
[ "fredwilliam@gmail.com" ]
fredwilliam@gmail.com
989126c5f603542b5caa46d0dcd26ecc3c37ff56
d3ff05c9620d61c25392da1030f1f64e27ffb8df
/msinm-user/src/main/java/dk/dma/msinm/user/UserService.java
25570afb44d98711c11eff751c7dad1106ff9cf1
[]
no_license
dma-dk/MsiNm
549c5c1efdfa0cab0715302047346e0973c99226
b0a86895c34b67d28120918e68ea780d42a520a9
refs/heads/master
2022-11-25T02:08:56.833824
2019-09-04T11:50:55
2019-09-04T11:50:55
19,449,439
6
1
null
2022-11-16T03:41:51
2014-05-05T08:35:15
Java
UTF-8
Java
false
false
13,695
java
/* Copyright (c) 2011 Danish Maritime Authority * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This...
[ "peder@carolus.dk" ]
peder@carolus.dk
4ec0c00f4255ab3d1cb339d23da84d90b949d046
04b59ceb44be47630397e35802490f65704c4116
/src/main/java/br/com/leonardojgs/scalog/taglib/components/PaginableTable.java
296291a7af40063cc20253becbbd7dc4c756e64f
[ "Apache-2.0" ]
permissive
leosilvadev/scalog
34be2ddc01b0748bf0e4628f9a1cb59a0f37c004
23273911e51cf783a785a5d4d9c86e17684ec3ad
refs/heads/master
2021-01-19T10:58:22.042577
2014-12-16T11:04:48
2014-12-16T11:04:48
null
0
0
null
null
null
null
UTF-8
Java
false
false
430
java
package br.com.leonardojgs.scalog.taglib.components; import javax.servlet.jsp.JspException; import javax.servlet.jsp.JspWriter; import javax.servlet.jsp.tagext.TagSupport; public class PaginableTable extends TagSupport { private static final long serialVersionUID = 9177797199966629593L; @Override public int doSt...
[ "leosilvadev@gmail.com" ]
leosilvadev@gmail.com
740821589f2109cb53c64b3d37291209a1dfcc3e
2281d40da613b717541b3a0619970259c4a7ef11
/src/org/mybatis/generator/codegen/mybatis3/xmlmapper/elements/UpdateByPrimaryKeySelectiveElementGenerator.java
b7869224b41988dce57d152060ded08dda26f0d2
[]
no_license
nihaoyes/hello-git
7745d55ac2c5ad69c97195b6e8854f66bb8cf892
b1d1f17d509f32f6a8ee0f6c1d0283f9d9ef7d95
refs/heads/master
2021-01-19T03:45:41.596024
2016-09-19T05:35:18
2016-09-19T05:35:18
60,438,736
0
0
null
2016-06-05T04:59:35
2016-06-05T02:01:25
null
UTF-8
Java
false
false
5,017
java
/* */ package org.mybatis.generator.codegen.mybatis3.xmlmapper.elements; /* */ /* */ import java.util.Iterator; /* */ import java.util.List; /* */ import org.mybatis.generator.api.CommentGenerator; /* */ import org.mybatis.generator.api.IntrospectedColumn; /* */ import org.mybatis.gen...
[ "nihaoyes@163.com" ]
nihaoyes@163.com
78d8e93a118166c99fc4708155f8af1e9f46066b
d3d1c339b4350f597b8e82b962d3dabeb5dd9302
/main/ip/src/boofcv/alg/transform/fft/GeneralPurposeFFT_F32_1D.java
20da1e1cdf2014d0990bbd37868205e957c14936
[ "Apache-2.0" ]
permissive
luxigo/BoofCV
8c20e624081db443c8cc99f6fab9a6ea7a9b1597
f8ffdca5a5aa777a53a39c343c6f7ed85fb3fa10
refs/heads/master
2020-05-29T09:52:56.380031
2013-11-13T04:56:48
2013-11-13T04:56:48
null
0
0
null
null
null
null
UTF-8
Java
false
false
155,461
java
/* * Copyright (c) 2011-2013, Peter Abeles. All Rights Reserved. * * This file is part of BoofCV (http://boofcv.org). * * 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...
[ "peter.abeles@gmail.com" ]
peter.abeles@gmail.com
20123aefb9d35f149ac060eaa0aea77cce128f1f
bdff55a6242b7af145180eb3e0218b1fec8810bc
/TestApplication/app/src/androidTest/java/com/yanxuwen/testapplication/ExampleInstrumentedTest.java
0da8577d3135d8f951550f768650b541dd640e11
[]
no_license
yanxuwen/MyDrawer
36b6ce9782c00522893f9edc2bdaf83dcba8ba53
06e88a255c5179e9b90b4cd23ebc7e45bfdb3974
refs/heads/master
2021-05-14T09:31:01.156466
2021-03-08T08:10:13
2021-03-08T08:10:13
116,328,981
45
8
null
null
null
null
UTF-8
Java
false
false
760
java
package com.yanxuwen.testapplication; 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.*; /** * Instrumentation test, which will execute on an...
[ "420255048@qq.com" ]
420255048@qq.com
74c6d88e60aa558dbb4770514c7a0e98fe031fb5
3489be05b9d4f5cc99027ee016fda0cc5886bbbf
/CodingPractice/CrackingTheCodingInterview/moderate/numberSwap.java
dc162e537ef59fe7e030087598eccccff54debfa
[]
no_license
praveenkuruvadi/CodingPracticeBackup
30ee2c3982903990da4967e6cb4358be6b546b76
2f04657a932f77b2b06490e0633c5595397ac0ed
refs/heads/master
2020-12-30T17:11:02.384121
2017-11-07T16:27:41
2017-11-07T16:27:41
91,061,499
0
0
null
null
null
null
UTF-8
Java
false
false
442
java
package moderate; public class numberSwap { public static void main(String[] args) { // TODO Auto-generated method stub int[] input = {28,34}; System.out.println(input[0]+" "+input[1]); swapNums(input); System.out.println("After Swap: "+input[0]+" "+input[1]); } private static void swapNums(int[] arr) {...
[ "praveen.kuruvadi@gmail.com" ]
praveen.kuruvadi@gmail.com
cd3a874b9bbec6e2ace031c5fbf700fcf71c195c
259c3453f6b3ed7c91d225103f43cbffef8db600
/src/main/java/com/crm/crm/model/ContactController.java
3e197b33846d86265f8b74a6dc7c4544636c87f4
[]
no_license
mpechkurov/spring-react-example
507b2bfa08a3f7e64cd0531f1200171937f2a44f
86e19fa458f943aa51ba02c50df04837bc6d6831
refs/heads/master
2022-12-25T23:25:12.121349
2020-10-07T18:04:00
2020-10-07T18:04:00
297,085,261
0
0
null
null
null
null
UTF-8
Java
false
false
1,220
java
package com.crm.crm.model; import java.net.URISyntaxException; import java.util.Collection; import javax.validation.Valid; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.CrossOrigin; import org.springframework.web.bind.annotation.GetMapping; import org.springframework....
[ "mykhailo.pechkurov@gmail.com" ]
mykhailo.pechkurov@gmail.com
6513a4a365c02062eb8c4aba8ee9d4314e8a661b
d84c3b0c717c5fb70109a79b9853d81cccadb058
/src/weixin/mp/util/json/WxMpMassVideoAdapter.java
bbc3b09d074a4bcdcb151906dbc9ced06fd7d43d
[]
no_license
bournecao24/SuperETUF
179bf2dd196dcab89fa6652a6fe97a1920a02fbb
c6b2292e3440cb50fdc9f7702ed3f632663d4a28
refs/heads/master
2021-09-03T10:14:03.918087
2018-01-08T09:41:51
2018-01-08T09:41:51
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,195
java
/* * KINGSTAR MEDIA SOLUTIONS Co.,LTD. Copyright c 2005-2013. All rights reserved. * * This source code is the property of KINGSTAR MEDIA SOLUTIONS LTD. It is intended * only for the use of KINGSTAR MEDIA application development. Reengineering, reproduction * arose from modification of the original source, or othe...
[ "zhenlongla0824@163.com" ]
zhenlongla0824@163.com
4f4775045c0f05cf7e51096436044a595e0cb702
e2ca9545bcae8e701381dcc2578eae9d87ddf456
/src/faspayapi/credit/entity/payment/FaspayPaymentCreditWrapperDev.java
880f6acdd9cbedb48aba0ec687b89e17f155d95e
[]
no_license
hilmanshini/FaspayApi
e3a4591aa6ff03f58d5fc3728772bc3ec92385d4
e5c65d0ea189152122710d918ad4cb76618cee71
refs/heads/master
2020-06-03T14:46:31.755486
2019-07-04T06:52:42
2019-07-04T06:52:42
191,611,602
4
0
null
null
null
null
UTF-8
Java
false
false
19,360
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 faspayapi.credit.entity.payment; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.datab...
[ "hilmansphinx@gmail.com" ]
hilmansphinx@gmail.com
bbdff1e177adf10f144603ff18c836e251c7a5e9
a1512b2d7e833a5559a4cfc5115d4ff259d48356
/addons/jobs/jobs-service/src/main/java/org/kie/kogito/jobs/service/repository/infinispan/marshaller/JobMarshaller.java
e57fc8556f08b7345b599648e8bd7fcd6e946c15
[ "Apache-2.0" ]
permissive
DuncanDoyle/kogito-runtimes
626ddb12381ee6703d24a6d25cd076cdbef58509
d1b38bfe640adf76b99f0652ccbe5055435e7ede
refs/heads/master
2020-09-17T03:36:22.395550
2019-11-22T20:27:58
2019-11-22T20:27:58
223,974,262
0
0
Apache-2.0
2019-11-25T14:57:42
2019-11-25T14:57:41
null
UTF-8
Java
false
false
2,820
java
/* * Copyright 2019 Red Hat, Inc. and/or its affiliates. * * 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 app...
[ "swiderski.maciej@gmail.com" ]
swiderski.maciej@gmail.com
301515e793fcce6552057a51105737fb8c88614e
b967c6f64152a0df7b85b28acae2f36f7cb3e6fb
/sc-App/src/main/java/com/caicongyang/springcloudapp/wushuaiping/factory/PreConnection.java
be2a6b36607189c6b8f46ed6bc6629520d31f334
[]
no_license
dobiao/springcloud-practice
85be398808204a1b7e9641882d4be046856ccc04
31fef39893aa7a20e86bd680148704ed18abdb06
refs/heads/master
2021-04-06T10:47:21.976971
2018-03-15T13:19:09
2018-03-15T13:19:09
124,840,085
6
4
null
null
null
null
UTF-8
Java
false
false
365
java
package com.caicongyang.springcloudapp.wushuaiping.factory; /** * 连接预发环境数据库 * @author wushuaiping * @date 2018/3/11 下午2:39 */ public class PreConnection implements DatabaseConnection { public void connection() { // 连接预发环境数据库的逻辑代码 System.out.println("预发环境连接成功..."); } }
[ "wb-wsp312690@alibaba-inc.com" ]
wb-wsp312690@alibaba-inc.com
4b80a6f1a61555620e4e730c04d61d328918c5b7
2557011e0fb182a3f4b581b487ff76b558010e32
/E-Walletfinal/src/main/java/com/capgemini/ewallet/controller/TransactionController.java
d6344fba1252644bc1c3b5859d35fc6cea340367
[]
no_license
akshitabajpai/EwalletIntegrated
f9d4369676025ca56a8d08defadbfdf657bd287a
56c9d0bcabcd6e47953c105688a85fa1c9d78638
refs/heads/master
2022-09-17T01:05:09.832962
2020-05-24T14:50:19
2020-05-24T14:50:19
266,557,629
0
0
null
null
null
null
UTF-8
Java
false
false
1,676
java
package com.capgemini.ewallet.controller; import java.util.List; import javax.validation.Valid; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.dao.DataIntegrityViolationException; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; im...
[ "DELL@DESKTOP-FRIMMDM" ]
DELL@DESKTOP-FRIMMDM
28b78e9217eea62f91268c54477ad881b49cb070
cf61582eaf20048fdae28dc61fa975f2f23a3fc4
/src/com/briup/jdk8/day2/Test03_Function.java
df2781c96200045e9ab99c93c6a058819f290509
[]
no_license
chlinlearn/jd1903_java
8d8eff7e204770c36985b830292f743b7b889a5a
bbdac2bfa5b9bb1db4cd1f4a6661c969adad3ddb
refs/heads/master
2020-06-05T18:28:00.348972
2019-07-05T07:32:19
2019-07-05T07:32:19
192,510,455
0
0
null
null
null
null
UTF-8
Java
false
false
1,161
java
package com.briup.jdk8.day2; /* * * @author: xuchunlin * @createTime: 2019/7/4/14:44 * @description: null */ import java.util.function.Function; public class Test03_Function { public static void main(String[] args) { Function<String,Integer> f = new Function<String, Integer>() { @Override...
[ "1573196748@qq.com" ]
1573196748@qq.com
a18be90cb0bef589c835512c77d72591c59c7e43
2b927681efb48c64d75451b4735aced06f38f066
/org.xtext.example.md3/src-gen/org/xtext/example/mydsl2/services/Md3GrammarAccess.java
9ff6720c3eb50cb62a2e3c84290e1d09b45ac108
[]
no_license
tfLabs/live3
fa0de647509189482b845b1fcd62aebfceb5445a
3e82511280dc3df97e2e2a1aefee33335a93e94e
refs/heads/master
2022-07-29T20:39:22.131396
2020-05-20T15:10:07
2020-05-20T15:10:07
265,601,402
0
0
null
null
null
null
UTF-8
Java
false
false
5,211
java
/* * generated by Xtext 2.20.0 */ package org.xtext.example.mydsl2.services; import com.google.inject.Inject; import com.google.inject.Singleton; import java.util.List; import org.eclipse.xtext.Assignment; import org.eclipse.xtext.Grammar; import org.eclipse.xtext.GrammarUtil; import org.eclipse.xtext.Gro...
[ "hiro_n@cg7.so-net.ne.jp" ]
hiro_n@cg7.so-net.ne.jp
2ace80dc7adc843b4fcfdd93659ed47fec906287
dee88cf6855132795d2f1ac1125947defb6ecc3c
/src/gms/service/field/FieldNoticeServiceImpl.java
7a7c1548501a1bb13b980861cd97319e5b08d3c2
[]
no_license
ChuckLinsGit/GMS
8bc1760a21ae35fef10235ea82a06c6b0b686359
c0c5c2f7e916f95d4244da81b33428855bc2b863
refs/heads/master
2020-06-15T03:05:07.835606
2019-07-04T09:13:46
2019-07-04T09:13:46
195,188,978
0
0
null
null
null
null
UTF-8
Java
false
false
1,937
java
package gms.service.field; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import org.springframework.transaction.annotation.Transactional; import gms.DAO.field.FieldNoticeMapper; import gms.entry.field.FieldNotice; import gms.ent...
[ "Chuck_Lin_Mail@163.com" ]
Chuck_Lin_Mail@163.com