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
4a390252427b88f6cc0039d7d685c2423b371ed4
f36ef14397ee790bfd2df0e1c4f414a416f8e00a
/src/main/java/com/vaya20/backend/EmailSender/EmailSenderController.java
a11d5780c814f65e789b9f0ad6c0dc9d0f6d86b4
[]
no_license
joegaBonito/vaya-back-spring
e8915b0948ea04210929479cd6766b3c7f961c0c
f5629b37048e870beaf089b0fec3d03bba88b6e9
refs/heads/master
2021-09-22T11:43:15.895748
2018-09-10T04:02:47
2018-09-10T04:02:47
111,177,992
0
0
null
null
null
null
UTF-8
Java
false
false
1,224
java
package com.vaya20.backend.EmailSender; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.mail.MailException; import org.springframework.stereotype.Controller; import org.springf...
[ "Joe Jung" ]
Joe Jung
8b19197c6741cef0b16a28559c84304e2bd5cc54
d41b0bd1aee8222b244af4f6403a10c6f3be2361
/modules/cpr/src/main/java/org/atmosphere/util/FakeHttpSession.java
2b34b3d1affbecbfe468ba4e2999f4912c739272
[]
no_license
jrarnett/atmosphere
db2c97be847fa02c4b2b62a0997112f6276b319e
bd96d6db8f1ff65e6225ee7f92c3447865953449
refs/heads/master
2021-01-15T16:15:56.355422
2013-09-18T00:34:29
2013-09-18T00:34:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,850
java
/* * Copyright 2013 Jeanfrancois Arcand * * 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...
[ "jfarcand@apache.org" ]
jfarcand@apache.org
5f7f818628232f4365c3097560236c7c0fbcbbc4
63a3d036e523c76a481d9fab10da27264ea35b49
/src/main/java/com/app/derin/uaa/service/InvalidPasswordException.java
b4d78878c752941a5417c9f3a3f61f4208767345
[]
no_license
EbruYaren/jhipster-authentication-gateway-project
21f7a4e70d196f243c61bfd472cb89dc59630a8a
d6c5a5d8d976874072109855c293ccd89ce310bb
refs/heads/master
2022-12-16T08:43:57.059437
2020-01-15T11:41:32
2020-01-15T11:41:32
234,097,238
0
0
null
2022-12-16T04:43:26
2020-01-15T14:23:18
Java
UTF-8
Java
false
false
188
java
package com.app.derin.uaa.service; public class InvalidPasswordException extends RuntimeException { public InvalidPasswordException() { super("Incorrect password"); } }
[ "ebru.catak@derinarge.com" ]
ebru.catak@derinarge.com
8f13a3ac5eaf17cbbe21e09aa15221a09ea02619
aa8a94423e9f69bf375f01f1c46b0fea44d354f4
/app/src/main/java/lipnus/com/realworld/SimpleFunction.java
ea559eb8e88e4f5f3ad025d4bc0c210fa479553f
[]
no_license
lipnus/Realworld
c5238941e13d99248d832198b146245baf39bc1e
229a692917ffedff482066eb8300daaa3e00cce6
refs/heads/master
2021-05-04T14:32:49.262137
2018-07-03T16:52:25
2018-07-03T16:52:25
120,202,672
1
0
null
null
null
null
UTF-8
Java
false
false
1,312
java
package lipnus.com.realworld; import android.util.Log; import android.view.View; import android.view.ViewGroup; import android.widget.ListAdapter; import android.widget.ListView; /** * Created by LIPNUS on 2018-02-19. */ public class SimpleFunction { //리스트뷰 안의 내용을 토대로 세로크기를 정해준다 public static void setList...
[ "sunpil13@korea.ac.kr" ]
sunpil13@korea.ac.kr
ae2d1ea847b8cf68c9b1cc5bd95069651acba27c
5ba08a86e72754f272feaa3b352e808d212d883b
/Fibonacci.java
c90cc85d5f15914031794a7e87dacb2fc5adcc55
[]
no_license
iannielsenCode/University-Work-DataStructures
cc53ce70c94fb6836d8c3511a8bce80e6a8f66f6
738490fc7e7c3f3ea1b45af7899271423048b29c
refs/heads/master
2020-03-30T05:07:28.371923
2018-09-28T18:52:15
2018-09-28T18:52:15
150,782,130
0
0
null
null
null
null
UTF-8
Java
false
false
282
java
package data.structures; public class Fibonacci { public static int Fib(int n){ if(n <2){ return 1; } else{ return Fib(n-1) + Fib(n-2); } } public static void main(String[] args){ System.out.println(Fibonacci.Fib(15)); } }
[ "noreply@github.com" ]
noreply@github.com
e241852c4f6bf0d4446ce39411014f2ae2be1751
89c36d0d4b40754170720613e927fbf99f227e9d
/src/stratage/IQuackBehavior.java
11d9b10b58e8f599876e3bf88c8fee5d02e10b0e
[]
no_license
Howiezhang226/DesignPattern
eee0f1283b77ba0126281f55b2f03d14432b4d79
cf1a8e1a6f642f4156abf4451063bd788bbd4525
refs/heads/main
2023-08-07T05:53:54.941282
2021-09-22T00:37:14
2021-09-22T00:37:14
409,008,923
0
0
null
null
null
null
UTF-8
Java
false
false
50
java
package stratage; public interface Ibehavior { }
[ "zhanghaonenu@gmail.com" ]
zhanghaonenu@gmail.com
befd6d061cd2553a6678ba1c28c636f2484fff16
9e62158d75f9fc88151639122b6bc6a14588e823
/src/main/java/demo/java/io/demoIO.java
7fd25d26b66b176b4a1b4cc8dbd1b2e8508a80f2
[]
no_license
bhrgv-bolla/demo-java-io
e144eb5c146b6bc441111f3ea720d52524ead5ab
a55ae4b869bdbf22ecac3a8cc7ebc28ed3c3f2cb
refs/heads/master
2020-03-28T10:00:56.934423
2018-09-13T04:00:44
2018-09-13T04:00:44
148,076,034
0
0
null
null
null
null
UTF-8
Java
false
false
1,467
java
package demo.java.io; import java.io.*; public class demoIO { public static void demoStreamTokenizer() throws IOException { FileReader fileReader = new FileReader("demo_files/fileWith10Words"); BufferedReader bufferedReader = new BufferedReader(fileReader); StreamTokenizer streamTokenize...
[ "hire.bhargav@gmail.com" ]
hire.bhargav@gmail.com
3cddd590c795529d22d607d159289acb1751f2b9
720821ba4de36637aa914984d92d187d12c3aea9
/common/src/main/java/com/a528854302/utils/OkHttpClientUtil.java
4df3fc3c77919778efe89cd1083910a8209664b6
[]
no_license
528854302/manage
7c4de625cf4c220a3343a3020498ca8ae3875817
80423f6c4892cc09d0aab9cf420c65c4efba9802
refs/heads/master
2021-02-08T01:58:28.258166
2020-03-07T03:28:47
2020-03-07T03:28:47
244,096,198
0
0
null
null
null
null
UTF-8
Java
false
false
6,481
java
package com.a528854302.utils; import okhttp3.Call; import okhttp3.Callback; import okhttp3.MediaType; import okhttp3.OkHttpClient; import okhttp3.Request; import okhttp3.RequestBody; import okhttp3.Response; import java.io.IOException; import java.util.Iterator; import java.util.Map; import java.util.concurrent.TimeU...
[ "46879923+528854302@users.noreply.github.com" ]
46879923+528854302@users.noreply.github.com
bf3121946947ab47f232c7658332bb1323ae64bb
e0bd20ae76523f4046ee19013ef4b0e51f7364cc
/basecmlib/src/main/java/com/efan/basecmlib/okhttputils/request/PostFormRequest.java
daddadcf8778e72f1e2a7f96e41bd033c5a5a0f6
[]
no_license
efany/basecmlib
557b1cf609f41a6959989bf2605247d2a5c91403
19a9c3f6dc4e7e3fbd108a7fa97580a4ebcb3697
refs/heads/master
2021-01-10T12:28:15.007550
2016-03-26T10:56:32
2016-03-26T10:56:32
54,327,981
0
0
null
null
null
null
UTF-8
Java
false
false
4,006
java
package com.efan.basecmlib.okhttputils.request; import com.efan.basecmlib.okhttputils.OkHttpUtils; import com.efan.basecmlib.okhttputils.builder.PostFormBuilder; import com.efan.basecmlib.okhttputils.callback.Callback; import java.net.FileNameMap; import java.net.URLConnection; import java.util.List; import java.uti...
[ "18200179234@163.com" ]
18200179234@163.com
4ce9fb22e75c7d1417271a0dc8dc9097634fa515
4c204c07723a898c7912a43c51ac7b609c3a9209
/src/main/java/desktop/database/services/MapToPojos.java
c441bc0cfd70ec1e82d6c27d2dabe86e8290b9dd
[]
no_license
carletonDev/OS-Automation
28b4bd1b4a6510c0a383ce22a2eb0a018d1b11e3
34c2448fa938fb1f6e82e754f55213879d0d1270
refs/heads/master
2022-12-19T04:06:37.564110
2020-09-25T04:26:31
2020-09-25T04:26:31
296,196,534
0
0
null
null
null
null
UTF-8
Java
false
false
5,671
java
package desktop.database.services; import desktop.database.pojos.Steps; import desktop.database.pojos.Suite; import desktop.database.pojos.TestCase; import desktop.database.pojos.TestCaseSteps; import desktop.database.repositories.StepsRepository; import desktop.database.repositories.SuiteRepository; import de...
[ "noreply@github.com" ]
noreply@github.com
8df7cea4389d4953648d4fd6d1dc84248cd6ba46
243515d644d4b3cb81d05b65c70a564aa42b264f
/java/src/shared/outputObjects/RegisterUserOutput.java
b39974445d5efe0812a20e62cffd45c1df80cbb4
[]
no_license
derbraun/catanpublic
31739ef54342089fe26a6d4b05a3cc62aa0f439d
2894aa45161a128320cf69b99827be9bc3cdf7b1
refs/heads/master
2021-05-11T03:48:14.450033
2016-09-28T04:14:52
2016-09-28T04:14:52
117,924,180
0
0
null
null
null
null
UTF-8
Java
false
false
1,045
java
package shared.outputObjects; /** * Holds the output parameters needed for RegisterUser() */ public class RegisterUserOutput extends OutputObject { /** * Indicates whether or not the operation was successful */ String success; /** * Creates an instance of the RegisterUser output parameters o...
[ "noreply@github.com" ]
noreply@github.com
6f7e5ee5171c884aaa08d46c6ad7ec9f31c712ab
a076c5e6f9aa8b7875af0c9c03ea89bd464b016d
/src/class31_Filehandling/WebDriverTasnk.java
77b58233c3c7f9ebe8ec20831d873b9b979e15fe
[]
no_license
Guljemal1994/JavaBasics
c0f91189ad7b4735774e3eb1c4d99e2764ee23f6
4439131cef289031e9140b8e219fa048b000656d
refs/heads/master
2021-04-04T02:51:06.751747
2020-05-17T23:21:07
2020-05-17T23:21:07
248,418,906
1
0
null
null
null
null
UTF-8
Java
false
false
577
java
package class31_Filehandling; import java.io.FileInputStream; import java.io.IOException; import java.util.Properties; public class WebDriverTasnk { public static void main(String[] args) throws IOException { System.setProperty("webdriver.chrome.driver", "drivers\\chromedriver.exe"); String path = "configs\\...
[ "konulkuly@gmail.com" ]
konulkuly@gmail.com
e9c5513bbc963f18988ca74b10ec8ecdc31af12a
92638ec484b96f75138bb45783ed608428de346f
/src/main/java/com/Dailydrip/controller/IndexController.java
a42464eff5a2795d4599b60bf252775fe3931997
[]
no_license
564025324/Dailydrip
299d5186e8e1d0ba162ca34283b5617c1544fc3c
affd7790b6380d897ae7f10e1d70a383551a402e
refs/heads/master
2022-06-23T03:39:39.572198
2020-01-22T07:54:30
2020-01-22T07:54:30
210,657,057
0
0
null
2022-06-21T01:56:14
2019-09-24T17:11:22
HTML
UTF-8
Java
false
false
934
java
package com.Dailydrip.controller; import java.util.HashMap; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.servle...
[ "564025324@qq.com" ]
564025324@qq.com
e33bf1721815795c468109ea90d68701007c79ac
e5281ebba4c285069c9e2cb38d37bca0a4e45c20
/boot-web/src/test/java/std/ach/studyolle/modules/account/AccountControllerTest.java
8e269a6afc5d5998c724fada12a281c25737ce31
[]
no_license
proper-for-me/std-spring-boot
fc352c14bf313078117794a63210aa32efabddc1
96f8bb9f11ed7d0c172c057a03759e66a7adaeb0
refs/heads/master
2023-04-14T02:51:14.302161
2020-09-03T05:27:26
2020-09-03T05:27:26
288,172,524
0
1
null
2021-04-28T19:06:49
2020-08-17T12:19:33
Java
UTF-8
Java
false
false
3,428
java
package std.ach.studyolle.modules.account; import lombok.extern.slf4j.Slf4j; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc; import org.spring...
[ "anchangho8138@gmail.com" ]
anchangho8138@gmail.com
86c9664f6364d16b0721d1aca0ddb3a64238b64d
6615ed1484855b3d9624d5cf77258688667978c1
/app/src/main/java/com/example/administrator/myapplication/SpendingPieChartActivity.java
ab50f3bffa2501b31a81952520fa50a25002d250
[]
no_license
huixiaoyang/Keep-Accounts
47a1d83bb61587d46c8b9420c198f4150e75ac18
b4826fe1a712575e8dd56fccd17f1527ac0747d7
refs/heads/master
2020-03-06T22:50:08.423602
2018-04-08T09:39:59
2018-04-08T09:39:59
127,115,151
0
1
null
2018-04-08T09:08:08
2018-03-28T09:16:06
Java
UTF-8
Java
false
false
7,305
java
package com.example.administrator.myapplication; import android.content.Intent; import android.database.Cursor; import android.graphics.Color; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.text.SpannableString; import android.view.View; import android.widget.Toast; import ...
[ "2573737841@qq.com" ]
2573737841@qq.com
30f058a790f2d743c3831fa7667c9778e6ba3626
6c68e07f78438ad961114c3543e1a8de3f8c538b
/Tron/model/src/main/java/DAO/TronBDDConnector.java
e31543aa4891e1e2de0f4aa3f095937026a012b0
[]
no_license
SheillaKamdem/GAME
9a9e3281468bde0371cbabe2e2c528976d9936e3
4ffd5a8d0f3d87c2341a00d62f42ea5441135c0b
refs/heads/master
2022-07-19T09:05:13.610604
2019-07-08T22:16:03
2019-07-08T22:16:03
195,892,250
0
0
null
2022-06-21T01:27:00
2019-07-08T22:05:49
Java
UTF-8
Java
false
false
3,343
java
package DAO; /** * @author KAMDEM * @version 1.0 */ import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import model.ITronBDDConector; /** * <h1>The Class LoranBDDConnector.</h1> * * * @version 1.0 */ f...
[ "HP@LAPTOP-LKUAOGQ9" ]
HP@LAPTOP-LKUAOGQ9
a4e798dc3bf82c991114cf622b42f2614827330f
92ced26f361a2d48d216f46b6ff4a4deda7ce3e0
/TdBus/src/test/java/com/rex/tdbus/ExampleUnitTest.java
d6106be88b3f27249d8c3bc70cb68d4c8012593c
[]
no_license
wenfu92/TdAndroid
8724eddf07f88f6affe5a6bf2686a67ac35950f1
87a8b3887b747ef32b983f51a1266eb78f5cf778
refs/heads/master
2020-05-16T10:25:08.771634
2019-04-23T09:44:23
2019-04-23T09:44:23
182,984,083
0
0
null
null
null
null
UTF-8
Java
false
false
374
java
package com.rex.tdbus; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public void addition...
[ "wangwenfu@secoo.com" ]
wangwenfu@secoo.com
aa1e8d3df708ee5bd8ac2a800150d5287d1946c3
84e0bbd1f244bd703bed304cc8bb26fd3e1073bd
/SearchApp/src/org/nacao/searchapp/statistics/StatisticsChart.java
60cddd7e8450ded476c63451ffd9559d2d02772e
[]
no_license
lzy-persist/pro_app
7789e437d8dbf9aaec72acc7dfa7c2cf80f36726
a12f39435bd3f6c6834ef1ad5a7b2092c6ba5a6b
refs/heads/master
2016-09-06T17:18:00.905832
2013-04-11T02:34:06
2013-04-11T02:34:06
null
0
0
null
null
null
null
UTF-8
Java
false
false
270
java
package org.nacao.searchapp.statistics; import android.content.Context; import android.content.Intent; public interface StatisticsChart { String NAME = "name"; String DESC = "desc"; String getName(); String getDesc(); Intent execute(Context context); }
[ "zhengyang_003@163.com" ]
zhengyang_003@163.com
b08a2c7f85eccabee9c0c96e5ebe0d761fd3e194
77fc56c933bdb229047c486b2f227fdd08822d63
/epzilla 1.0.0/src/net/epzilla/stratification/restruct/SystemRestructure.java
1f6147fc00e030fb38088c28bf00d85ec7b9d6e0
[]
no_license
harshana05/epzilla
45d8597ed33da7a89dfd8607a7402914c33383ff
22e3558315120024b799063ec607c44b17f636be
refs/heads/master
2021-01-25T06:01:07.065887
2011-10-30T06:13:24
2011-10-30T06:13:24
33,530,906
0
0
null
null
null
null
UTF-8
Java
false
false
10,351
java
/*************************************************************************************************** Copyright 2009 - 2010 Harshana Eranga Martin, Dishan Metihakwala, Rajeev Sampath, Chathura Randika Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance wi...
[ "harshana05@6d78cf82-acc7-11de-ba6e-69e41c8db662" ]
harshana05@6d78cf82-acc7-11de-ba6e-69e41c8db662
8344fab8f1d37b9fe8d33be3a59c3824b34048b6
16ca4ab455fb1c0a1fb538ff869bb99f0f238404
/app/src/main/pb_gen/com/yijianyi/protocol/OrderSAAS.java
297e7800e2f2a309cde34c3f96c09a0c9720c045
[]
no_license
Yiny123/USER
6de6abe9aff5d629795ea1202154ec9294b4729b
7b441814435eb3b225323b1160151edb51afe465
refs/heads/master
2020-03-17T13:01:35.625547
2018-05-16T05:18:04
2018-05-16T05:18:04
null
0
0
null
null
null
null
UTF-8
Java
false
false
8,374
java
// Code generated by Wire protocol buffer compiler, do not edit. // Source file: AppInterface.proto at 856:1 package com.yijianyi.protocol; import com.squareup.wire.FieldEncoding; import com.squareup.wire.Message; import com.squareup.wire.ProtoAdapter; import com.squareup.wire.ProtoReader; import com.squareup.wire.Pro...
[ "603115971@qq.com" ]
603115971@qq.com
647b70a70e4eefb25719898e0a8b293e147a0bb9
3ae236b4b3fcd69d93dc9dcc033ca1a267b42a9b
/src/main/java/com/evilcry/shardingspheredemo/mybatis/service/SpringUserServiceImpl.java
dbce3168186b4966d9480e586782499d729ca65f
[]
no_license
surick/shardingsphere-demo
c812f74ec6ff6f5cfe44d08e014970b57f1fc10c
ecdae0d96420704147e64e135f8f9339e5ecd0d6
refs/heads/master
2020-05-31T05:36:14.680145
2019-06-04T03:19:15
2019-06-04T03:19:15
190,121,040
0
0
null
null
null
null
UTF-8
Java
false
false
3,208
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 ...
[ "jk103@qq.com" ]
jk103@qq.com
fb633f0ddce56399830be295cb10aa6a82d8ee7f
14f5b2ab71d482bf1e8a6e8f697199cc5554ae40
/app/src/androidTest/java/isfaaghyth/app/advanced/ExampleInstrumentedTest.java
6c91b625ac8b03b2cf2c8ef0e894c47943afbea7
[]
no_license
isfaaghyth/IAK-Advanced
01d75c71d5a2b5c9e49d239e022fe4b0adaddd88
d729b852eec46e9d8b94cf38650aa59c15fbedcd
refs/heads/master
2020-12-30T15:30:24.853868
2017-05-14T08:15:45
2017-05-14T08:15:45
91,151,598
6
0
null
null
null
null
UTF-8
Java
false
false
750
java
package isfaaghyth.app.advanced; 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 Andr...
[ "isfaaghyth@gmail.com" ]
isfaaghyth@gmail.com
aa2e2cf268b15bff03765714534c8a8f0b1ac9e1
a84426616b0e3262334a42aa891880d8bb413d39
/CrazyChatClient/src/com/crazychat/client/ui/TopPanel.java
4932be882b7ff74b8636ace8eed52eeecdce5cfa
[ "MIT" ]
permissive
superferryman/CrazyChat
e66e4f48912bdc164b24f8e549bb2209f911cdff
43f1d95d387969a58dd5de6fbc25d823bdc40db7
refs/heads/master
2020-05-24T19:58:37.997628
2018-06-09T18:17:13
2018-06-09T18:17:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
10,760
java
package com.crazychat.client.ui; import java.awt.BorderLayout; import java.awt.Cursor; import java.awt.Dimension; import java.awt.Font; import java.awt.Point; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.awt.e...
[ "yfruan@outlook.com" ]
yfruan@outlook.com
368e10774ba760c38a9c5228046e462511ccc993
640511db296699affb190139aaa4bc7684ac5b04
/tracker/src/main/java/com/customer/tracker/service/EmployeeService.java
3c0653bc90fdc41ad0eb0aa226b923002e1c33e6
[]
no_license
ab-seth/Customer_web_tracker
9ed445eb1dab45fb5042cd3bdc163188ee1e6e37
33f32aabd005dbe20fcfbef2bcb0559f4d52c897
refs/heads/master
2022-11-23T23:59:22.259821
2020-07-26T21:53:01
2020-07-26T21:53:01
null
0
0
null
null
null
null
UTF-8
Java
false
false
374
java
package com.luv2code.springboot.cruddemo.service; import java.util.List; import org.springframework.stereotype.Service; import com.luv2code.springboot.cruddemo.entity.Employee; public interface EmployeeService { public List<Employee> findAll(); public Employee findById(int theId); public void save(Employee t...
[ "sethabayo@gmail.com" ]
sethabayo@gmail.com
a663920df8c9e881dd015265c3a8654d2c6c0f35
a6505156da9ec9800302c2790af6f240cfd3b68b
/viikko5/LaskinFX8/src/main/java/laskin/Sovelluslogiikka.java
6ea2948519ecb0ee94966e38fc5ac7e6168cfe91
[]
no_license
Jakoviz/ohtu-viikkopalautukset
8bf24635c1fbbe78fb69d5e944b056c83dac3370
464ed54e823033666caf07bcf73888211ea63bf7
refs/heads/master
2020-09-03T23:12:16.665203
2019-12-14T08:15:19
2019-12-14T08:15:19
219,597,800
0
0
null
null
null
null
UTF-8
Java
false
false
379
java
package laskin; public class Sovelluslogiikka { private int tulos; public void plus(int luku) { tulos += luku; } public void setTulos(int tulos) { this.tulos = tulos; } public void miinus(int luku) { tulos -= luku; } public void nollaa() { tulos = 0; ...
[ "jaakko.paavola@helsinki.fi" ]
jaakko.paavola@helsinki.fi
b6c21eadd6b3db03a62963df426c9e2c515c06b0
40ad96ae34368d288ff2309b9f5f9b8a24bd0761
/Java+/Spring+/Spring4+/PropertySource/src/SpringConfig.java
1e9be4c1930f7015781adb38083bf808afa27731
[]
no_license
Testudinate/yaal_examples
efffeca2b31eb3a845c55c58769377b89b9f381f
cb576ebb3d981ca7f1a59a2d871ef6d8e519e969
refs/heads/master
2020-12-25T21:12:57.271788
2015-11-11T20:23:27
2015-11-11T20:23:27
46,030,837
1
0
null
2015-11-12T05:09:42
2015-11-12T05:09:42
null
UTF-8
Java
false
false
1,043
java
import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.PropertySource; import org.springframework.context.annotation.PropertySources; import org.springframework.context.support.PropertySourcesPlaceholderConfigurer; ...
[ "ya_al@bk.ru" ]
ya_al@bk.ru
1c9210af962923a90fd37af4f3f857f31b120b73
cf9dc80838da21508691420940c460c55dd1fec0
/Movie.java
ec892e08ec91bf7068cf8b803dd051a66668e3a4
[]
no_license
stephcairns/Lab4
744fe76fe6a52d53ee977ac9a5d27001cffc6fa7
f0e0ce3fa3e8cddfbf095175a716af18f2199ad0
refs/heads/master
2020-04-01T12:02:49.843715
2018-10-15T22:18:40
2018-10-15T22:18:40
153,188,782
0
0
null
null
null
null
UTF-8
Java
false
false
1,116
java
import java.util.List; public class Movie { private String title; private int year; private List<String> directors; private List<String> producers; private List<String> actors; public Movie(String title, int year, List<String> directors, List<String> producers, List<String> ac...
[ "Guest@iMac-446.local" ]
Guest@iMac-446.local
5710c22b96a360398049b544f5ccb2285b6f6b4a
a128f19f6c10fc775cd14daf740a5b4e99bcd2fb
/middleheaven-domain/src/main/java/org/middleheaven/domain/criteria/IsIdenticalToOtherInstanceCriterion.java
73a0c5cbefd5dac979d3a6fdc6c5575632a91028
[]
no_license
HalasNet/middleheaven
c8bfa6199cb9b320b9cfd17b1f8e4961e3d35e6e
15e3e91c338e359a96ad01dffe9d94e069070e9c
refs/heads/master
2021-06-20T23:25:09.978612
2017-08-12T21:35:56
2017-08-12T21:37:17
null
0
0
null
null
null
null
UTF-8
Java
false
false
590
java
package org.middleheaven.domain.criteria; import org.middleheaven.util.criteria.Criterion; public class IsIdenticalToOtherInstanceCriterion implements Criterion { private Object instance; public IsIdenticalToOtherInstanceCriterion(Object instance) { this.instance = instance; } public Object getIn...
[ "sergiotaborda@yahoo.com.br" ]
sergiotaborda@yahoo.com.br
8f5e69c3b8cb07f3c627b0b76c54036c47e82d31
53732cb61cb3b19fae2949214c57a013019e72d1
/payments-core/build/tmp/kapt3/stubs/release/com/stripe/android/EphemeralKeyUpdateListener.java
eb65395c1c669ea5b7f199fdb30211536455eb71
[ "MIT" ]
permissive
spanoop11/StripeAppstore
acf8e181a5f56c8ebea094789bfa62b2e59cb7ae
d79cb5a004cd5dd33080fc3b5fbbb5c789659eb4
refs/heads/master
2022-07-28T18:43:03.110334
2022-03-10T13:28:56
2022-03-10T13:28:56
429,658,721
0
0
null
null
null
null
UTF-8
Java
false
false
1,488
java
package com.stripe.android; import java.lang.System; /** * Represents a listener for Ephemeral Key Update events. */ @kotlin.Metadata(mv = {1, 5, 1}, k = 1, d1 = {"\u0000 \n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0002\...
[ "spanoop11@gmail.com" ]
spanoop11@gmail.com
92b877e05d79e51831479de9788968b9f8a4ab5e
068faf74690a2364c64560908f48fd00ae990065
/wukong-common/src/main/java/com/wukong/common/utils/JDPhone.java
64fbf4378c70f5e2a0471e4e2a86c967fe68bd53
[]
no_license
mambo-wang/WuKong
11293e5a0e074f25bb6ac59f741fddf441013cbd
65134d99ae5ef25b35cff3e238eb86e5702a88f1
refs/heads/master
2022-12-12T10:21:15.248133
2021-05-19T03:04:02
2021-05-19T03:04:02
245,640,296
4
1
null
2022-12-06T00:34:40
2020-03-07T13:44:57
Java
UTF-8
Java
false
false
4,873
java
package com.wukong.common.utils; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.wukong.common.model.GoodsVO; import org.jsoup.Jsoup; import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import org.jsoup.select.Elements; import java.io.IOException; import java.util.concu...
[ "mambo1991@163.com" ]
mambo1991@163.com
40944583682aa5ba7827bdf19637211bfe1d9ec1
8889a4676a56809d92a3e2300da9072a8b1ea481
/src/test/java/com/loyaltyprimemultipartnerapp/cucumber/steps/api/TransactionRedemptionLopSteps.java
9daf77b057ba8b87bb62fea7ad7d847f91252015
[]
no_license
gautam518/serenity
4bc5e0161a84a4400cb4db6f452ab95cb572dc66
92b735cb31cb1e59c40080f5e93186111ba02f38
refs/heads/master
2023-08-03T08:19:12.478388
2021-09-09T10:26:27
2021-09-09T10:26:27
404,586,708
0
0
null
null
null
null
UTF-8
Java
false
false
29,509
java
package com.loyaltyprimemultipartnerapp.cucumber.steps.api; import java.io.IOException; import java.io.InputStream; import java.util.List; import java.util.Map; import java.util.Properties; import org.apache.http.HttpHeaders; import org.apache.http.HttpStatus; import org.apache.poi.openxml4j.exceptions.Inva...
[ "gautam518@gmail.com" ]
gautam518@gmail.com
c65f8ed2e82a2200d465e6b0347888bf8b2ccb81
5b038080c6d7e84fdafec8a44c303d4986932f82
/src/main/java/com/elementars/eclient/mixin/mixins/MixinBlockFire.java
9971dc458283a45a693880643f34d60ddcce0ee6
[]
no_license
Droid-D3V/XULU_Buildable_SRC
9739a41a0daaef7a4d89f3b89379d0540849f856
e5baa6f22730c79cbff969cb322d938d2168eb20
refs/heads/master
2023-08-28T09:10:14.384563
2021-11-05T16:43:39
2021-11-05T16:43:39
417,858,652
2
0
null
null
null
null
UTF-8
Java
false
false
1,153
java
package com.elementars.eclient.mixin.mixins; import com.elementars.eclient.Xulu; import com.elementars.eclient.module.misc.Avoid; import net.minecraft.block.Block; import net.minecraft.block.BlockFire; import net.minecraft.block.state.IBlockState; import net.minecraft.util.math.AxisAlignedBB; import net.minecraft.util...
[ "aronneyt@gmail.com" ]
aronneyt@gmail.com
b5586a3bb657a1a73f9fe4ca20c8da1644b7992b
f7a8c7ac7b0b560ac3f295288957169c86c0a9b6
/lib_title/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/androidx/drawerlayout/R.java
1c4dbff7d48a3e8a937d0ee756d4eae1b32e47b1
[]
no_license
HeroLBJ/DaChengCar
93027d7a29f12f9b1fa0e2bc5550260962e41c92
b3172f632351a6fcac397273b1553719b2202b36
refs/heads/master
2020-05-07T13:43:27.036761
2019-04-29T06:08:18
2019-04-29T06:08:18
180,559,875
0
0
null
null
null
null
UTF-8
Java
false
false
9,666
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * gradle plugin from the resource data it found. It * should not be modified by hand. */ package androidx.drawerlayout; public final class R { private R() {} public static final class attr { private attr() {...
[ "617416791@qq.com" ]
617416791@qq.com
730303357f373518cfdd82a0305222ca053530bd
828111a9183c38e87ba650b1fb09a2b2c98f6195
/Product/Production/Common/CONNECTCoreLib/src/main/java/gov/hhs/fha/nhinc/saml/extraction/AttributeTypeHelper.java
0afcefc0cc08e331f649dec42090824ae465aed1
[]
no_license
sahilshaikh89/CONNECT-Legacy
6a7f080087bd17420e0716305a1231a7825e7d8d
9b3b820bd151be403ba5e165dbf560061ccc5d6f
refs/heads/master
2021-01-19T10:12:21.372914
2012-02-20T20:14:26
2012-02-20T20:14:26
null
0
0
null
null
null
null
UTF-8
Java
false
false
12,825
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package gov.hhs.fha.nhinc.saml.extraction; import gov.hhs.fha.nhinc.nhinclib.NhincConstants; import java.util.List; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import java.util.A...
[ "sgirrinki@yahoo.com" ]
sgirrinki@yahoo.com
4594013e669583fe4af35f575567ba590add1226
fe8f32dee394f1cfb8b48c284b22f8e7e93da25b
/3/CarType.java
eb53f7db3695d3a2b26f003e26191081af0145e2
[]
no_license
Nirakar80/Java-Programming-2
a6b10ede5fc249c224be4d7f778933de78b64b81
5b009b23420d1c72939025e64d152b68cf1229ad
refs/heads/master
2022-05-03T22:28:50.336006
2019-10-21T18:27:32
2019-10-21T18:27:32
159,383,471
1
0
null
null
null
null
UTF-8
Java
false
false
65
java
public enum CarType { HONDA, TOYOTA, PORSCHE, JAGUAR }
[ "noreply@github.com" ]
noreply@github.com
74c4be6aea168886d4feecb41971ac8e0bfaa746
218344fe7b7d0abb0c5fb06837e07acfb0d6fbcc
/Algorithms/Graphs/Bfs.java
ff5b1847e6e28879454c9641de15f7487ad6174b
[]
no_license
AkashSalunkhe-eng/Data-Structures-And-Algorithms
9c348168d411b60c5f16c13fe18dc1675f50a2c3
0f86e44d16edd76f0f85e343792f6b5b1643117c
refs/heads/main
2023-09-01T14:20:34.869310
2021-10-18T16:54:07
2021-10-18T16:54:07
421,917,075
0
1
null
null
null
null
UTF-8
Java
false
false
1,225
java
package Algorithms.Graphs; public class Bfs { public static int adj[][]; public static int visited[]; public static int n; static void bfs(int node){ int q[] = new int[n]; int f=-1,r=-1; q[++r] = node; visited[node] = 1; while(f!=r){ node = q[++f...
[ "rahulkore976@gmail.com" ]
rahulkore976@gmail.com
1746347a391f7442b5dea74a46b5d4f737ab897f
f5648d2dec1e2025157132ea9b5655079ecc1bd5
/src/app/MyFirstGAEProjectServlet.java
90c180891e70aabb07f5ffad385253c6242af1d7
[]
no_license
TamuzHod/tag2
dabe6cfa9a86fd01cdecd705e18c349b6ae7dde8
9e8ea23081269f09e10daa80a688435f990e5bf9
refs/heads/master
2021-01-10T15:05:25.618138
2015-05-26T05:22:37
2015-05-26T05:22:37
36,273,895
0
0
null
null
null
null
UTF-8
Java
false
false
332
java
package app; import java.io.IOException; import javax.servlet.http.*; @SuppressWarnings("serial") public class MyFirstGAEProjectServlet extends HttpServlet { public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException { resp.setContentType("text/plain"); resp.getWriter().println("it wor...
[ "tamuzhod@gmail.com" ]
tamuzhod@gmail.com
a7e41a9b339a4ef225af47f0978fcbea565dde9c
0a8bb7482bbada77c4f6418d52bd6c0f9dbbe7a8
/src/main/java/br/com/abim/bestmeal/web/rest/errors/CustomParameterizedException.java
f05ae7aaa70d1ee812e1f637539ad94a115febfb
[]
no_license
RenatoFarofa/BeastMeal_OLD
6a98d4d420391506694ac4980a4b425da2e29079
dfbed298159f30f618db545c70d7a723e2c52328
refs/heads/master
2022-01-12T23:50:43.091561
2019-05-12T01:52:32
2019-05-12T01:52:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,738
java
package br.com.abim.bestmeal.web.rest.errors; import org.zalando.problem.AbstractThrowableProblem; import java.util.HashMap; import java.util.Map; import static org.zalando.problem.Status.BAD_REQUEST; /** * Custom, parameterized exception, which can be translated on the client side. * For example: * * <pre> * ...
[ "renatosoaresgalina@gmail.com" ]
renatosoaresgalina@gmail.com
3c49e04ff002df87030bee34f99e0e0d94be3baa
4473e6229ef7cc8cf5ae36229d39dc6d8fc3ef56
/department/src/main/java/anandh/department/types/Error.java
57cdb6787cf671185fef3db87a2a258cb630e935
[]
no_license
Anandharaj0930/KubernatesSample
aa16a4a2361ee090dbd932e82c3c02b34490f318
be3de822854e11fe036a9c2593ac27d96a1ce308
refs/heads/main
2023-03-10T21:47:13.014437
2021-02-27T17:17:34
2021-02-27T17:17:34
339,932,611
0
0
null
null
null
null
UTF-8
Java
false
false
649
java
package anandh.department.types; public class Error { private String statusCode; private String statusMsg; public String getStatusCode() { return statusCode; } public void setStatusCode(String statusCode) { this.statusCode = statusCode; } public String getStatusMsg() { ...
[ "anandharaj.p@centrico.tech" ]
anandharaj.p@centrico.tech
c52a5d49bc8ade0dab1fd7741722aafc73056ea4
80bbf0fce94f1e28e50b687279be822202c2d95d
/ConcertoPlayer/app/src/main/java/com/music/concertoplayer/utils/AssetsUtil.java
fc8846a3ae143d715a9867c879e8bd29eaaa60f8
[]
no_license
actorpub/product
b94d2aeed10d5d8505f0bfc1232af6917c3acd44
6e877c3f966261dba7c825ea8885bb6c80450bd8
refs/heads/master
2020-03-22T12:55:46.109151
2018-07-21T02:34:58
2018-07-21T02:34:58
140,071,342
2
0
null
null
null
null
UTF-8
Java
false
false
2,300
java
package com.music.concertoplayer.utils; import android.content.Context; import android.util.Log; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; /** * Created by chen on 2018/5/23. */ public class AssetsUtil { public st...
[ "969097157@qq.com" ]
969097157@qq.com
43c732042be6921437ea0d0912665f20be731aed
d9f02bed95daf72513132f786830f3f8bc96982f
/spring_assessment/src/main/java/com/tavant/spring_assessment/utils/LowerClassNameResolver.java
0101c75e25e3062a3f517c52ec0089a052ec6de8
[]
no_license
anurajsinha08/practical_assessment
7b14cdc225d23309c27e6e13422f4dac7c899fd1
3f1db956898b2fc3744069db8c9574e7b7981a37
refs/heads/master
2023-03-03T07:32:56.260700
2021-02-13T07:16:33
2021-02-13T07:16:33
338,516,181
0
0
null
null
null
null
UTF-8
Java
false
false
718
java
package com.tavant.spring_assessment.utils; import com.fasterxml.jackson.annotation.JsonTypeInfo; import com.fasterxml.jackson.annotation.JsonTypeInfo.Id; import com.fasterxml.jackson.databind.jsontype.impl.TypeIdResolverBase; public class LowerClassNameResolver extends TypeIdResolverBase{ @Override public String ...
[ "anuraj.sinha@ANURAJ-TI10790.in.corp.tavant.com" ]
anuraj.sinha@ANURAJ-TI10790.in.corp.tavant.com
7ac3740d1847566a74344967ff6660d381773604
bda2f258dbd69d88f76c987b416323a4d3fcc6cc
/app/src/main/java/com/tarena/myenginedemo/CoolParticleSampleActivity.java
6d33f100e3fd35ac1cc0bf8bb3f656e1126d051d
[]
no_license
piglite/MyEngineDemo
fa65ac2cf4f465f3ab4f9120e47fda2ee981b44d
77ff422ad8b3e7241f762a2869a81090a58ac7bc
refs/heads/master
2020-06-17T17:34:10.325917
2017-06-13T09:54:15
2017-06-13T09:54:15
94,159,610
1
2
null
null
null
null
UTF-8
Java
false
false
7,490
java
package com.tarena.myenginedemo; import android.opengl.GLES20; import org.andengine.engine.camera.Camera; import org.andengine.engine.options.EngineOptions; import org.andengine.engine.options.ScreenOrientation; import org.andengine.engine.options.WakeLockOptions; import org.andengine.engine.options.resolutionpolicy....
[ "piglite@vip.sina.com" ]
piglite@vip.sina.com
1d8234bef1332704aaf859be72f97418eaf43fb2
022ad9d2fd938baf66401cda15420aeb3cfff0c8
/src/main/java/net/sf/cram/encoding/ByteArrayLenEncoding.java
cd0abb9e0ab92c29cfa14b885478af18f6a450b4
[ "LicenseRef-scancode-warranty-disclaimer", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
vadimzalunin/crammer
b88af1afbd3e61dbfa332b83b635f55cd42792e0
0b0e911a53b5583b1cbffc60efc343b22da51afa
refs/heads/master
2020-12-24T14:26:20.560733
2013-03-26T13:01:01
2013-03-26T13:01:01
1,546,766
18
1
null
2012-10-06T02:23:23
2011-03-30T15:41:18
Java
UTF-8
Java
false
false
3,672
java
package net.sf.cram.encoding; import java.io.IOException; import java.io.InputStream; import java.nio.ByteBuffer; import java.util.Map; import net.sf.cram.DataSeriesType; import net.sf.cram.EncodingID; import net.sf.cram.EncodingParams; import net.sf.cram.io.BitInputStream; import net.sf.cram.io.BitOutputStream; impo...
[ "vadim.zalunin@gmail.com" ]
vadim.zalunin@gmail.com
aa79a33c854b1b8b8d5656135f806d43866d723b
b8079179faed8ade9e3a26fbdc319a1d2906365c
/src/com/ibm/focus/importers/StringUtilsCustom.java
c6178e14462d48448582c4fcab395d611533476e
[]
no_license
kalpanal/CTDModeler
65bb975edc6cb306f3e901abc96c39060b4a770b
112e3378a327fde8e9238dd01d00f2fa4940f859
refs/heads/master
2021-05-11T13:58:36.850917
2018-03-09T14:52:34
2018-03-09T14:52:34
117,690,714
0
0
null
null
null
null
UTF-8
Java
false
false
2,473
java
package com.ibm.focus.importers; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.Properties; public class StringUtilsCustom { public static String getDataSheetName(String dataSourceFullPath) throws Exception { String sheetName =...
[ "kalpana_lakshmanan@yahoo.co.in" ]
kalpana_lakshmanan@yahoo.co.in
6de8002ec43a616b7331b2d8c575bba2b3211fb3
13f21b2923050db1d01cc75b588ec2a6da0a284a
/dumpclass.java
922aef19c915711580b38dff65d78dd1690b8dad
[]
no_license
NandiniBanapur/TestVagrantNandini
4717b606d50818234742fa919b6fbc15bbd0d1de
84862d69c2d241d1086b15d605b2d92fdf61eea1
refs/heads/master
2021-05-16T20:42:47.637899
2020-03-27T16:32:56
2020-03-27T16:32:56
250,462,066
0
0
null
null
null
null
UTF-8
Java
false
false
616
java
import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Date; import java.util.List; public class dumpclass { public static void main(String[] args) { ItemList items=new ItemList(); Item i=new Item(); i.setcategory("TOI"); i....
[ "noreply@github.com" ]
noreply@github.com
a02f46e4bdea6cd3f91eedddf79c46388dbfe0f7
4895c6035dbeb9fce57d533dd3aa1f90a37753cd
/src/main/java/tasks/task5/pack/util/ConsoleEntity.java
5cd6f6c6943d879670df166b2857f8a88a40c17c
[]
no_license
Simbianna/JSON-Database
ba926e045246df9fd05b7d7e922743a880b7fb11
6b1277f41d4dfb1830499541d73582239bba87ae
refs/heads/master
2023-04-22T06:56:49.074737
2021-05-08T10:15:10
2021-05-08T10:15:10
339,685,765
0
0
null
null
null
null
UTF-8
Java
false
false
1,193
java
package tasks.task5.pack.util; import tasks.task5.pack.command.CommandType; public class ConsoleEntity { private CommandType type; private String key; private String value; public ConsoleEntity(CommandType type, String key, String value) { this.type = type; this.key = key; th...
[ "annetkiricheva@yandex.ru" ]
annetkiricheva@yandex.ru
086a2d4f2f5f57030c5e0ddf1de7e9995b83cca3
f0568343ecd32379a6a2d598bda93fa419847584
/modules/dfp_axis/src/main/java/com/google/api/ads/dfp/axis/v201308/FlashRedirectOverlayCreative.java
a12abc125898310e0998ef679482848559e620b5
[ "Apache-2.0" ]
permissive
frankzwang/googleads-java-lib
bd098b7b61622bd50352ccca815c4de15c45a545
0cf942d2558754589a12b4d9daa5902d7499e43f
refs/heads/master
2021-01-20T23:20:53.380875
2014-07-02T19:14:30
2014-07-02T19:14:30
21,526,492
1
0
null
null
null
null
UTF-8
Java
false
false
19,138
java
/** * FlashRedirectOverlayCreative.java * * This file was auto-generated from WSDL * by the Apache Axis 1.4 Mar 02, 2009 (07:08:06 PST) WSDL2Java emitter. */ package com.google.api.ads.dfp.axis.v201308; /** * An overlay {@code Creative} that loads a Flash asset from a specified * URL * and is ser...
[ "jradcliff@google.com" ]
jradcliff@google.com
436b4ac255c56e09fab9d6d209e0ac16a4eafeae
52d705c66ecdaa5e5de1ace7167a58009a6e0aa0
/one-time-examples/underwriting-BPMN-and-CMMN/src/main/java/org/camunda/showcase/underwritingBPMN_CMMN/LoggerDelegate.java
35aee2b664d1eb9e25532ddbf842b54d3cc5fc39
[ "Apache-2.0" ]
permissive
omineiro/code
7f7062a6435014e279983748c9bdfbf0f69a55a3
612e1eccbf2a7cf7c6b2677a77b734e4e3a19972
refs/heads/master
2020-04-13T11:29:03.912452
2018-12-23T22:39:33
2018-12-23T22:39:33
163,175,868
1
0
Apache-2.0
2018-12-26T12:06:21
2018-12-26T12:06:21
null
UTF-8
Java
false
false
1,044
java
package org.camunda.showcase.underwritingBPMN_CMMN; import java.util.logging.Logger; import org.camunda.bpm.engine.delegate.DelegateExecution; import org.camunda.bpm.engine.delegate.JavaDelegate; /** * This is an empty service implementation illustrating how to use a plain Java * class as a BPMN 2.0 Service Task ...
[ "ingo.richtsmeier@camunda.com" ]
ingo.richtsmeier@camunda.com
b07d27752f2fd999c4d5a128bbda1de82e21ac16
bddb65c69dffd58c3fa4ac3b4bfe768558ec8f73
/extension/src/main/java/com/hframework/peacock/controller/base/HttpProtocolExecutor.java
082eeb96cf6a19e67084c1d7ae32912541a45c03
[]
no_license
sonygrq2014/peacock
59d620ae07483db2028b2b631224742db2ab03e8
24b1ce0f2831c111b370a7c3dca1b0b21a19d26c
refs/heads/master
2022-01-04T16:48:43.164148
2019-09-02T09:29:03
2019-09-02T09:29:03
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,276
java
package com.hframework.peacock.controller.base; import com.hframework.beans.exceptions.BusinessException; import com.hframework.common.client.http.HttpClient; import com.hframework.common.util.UrlHelper; import com.hframework.peacock.controller.base.descriptor.ThirdApiDescriptor; import org.apache.http.HeaderElement; ...
[ "you@example.com" ]
you@example.com
855938aca0cdff2fccd9c8fad1ce47b6f6315f2b
b6b83183cf720cda988154da4d87f1b0955173fb
/app/src/main/java/rtu/group/adaptive/renthouse/Starter.java
89d468cd75b8a059d9d35db00df5b4a3154fa26c
[]
no_license
dostonhamrakulov/Rent-House-Adaptive-App
c48cb0c3231d7782fdcc0201c469e669b39a83a5
46f80d3b32a2fd5978fa3ea1e74530391e063397
refs/heads/master
2021-05-08T12:05:50.236363
2019-02-10T14:18:33
2019-02-10T14:18:33
119,919,777
1
0
null
null
null
null
UTF-8
Java
false
false
4,747
java
package rtu.group.adaptive.renthouse; import android.content.DialogInterface; import android.content.Intent; import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; im...
[ "doston.hamrakulov@gmail.com" ]
doston.hamrakulov@gmail.com
495906ab4d16efa20f818fab0cb1a7d0441594a1
1f19aec2ecfd756934898cf0ad2758ee18d9eca2
/u-1/u-13/u-13-f6055.java
e640f4a893e5876d1378f867b659ec3a003788c1
[]
no_license
apertureatf/perftest
f6c6e69efad59265197f43af5072aa7af8393a34
584257a0c1ada22e5486052c11395858a87b20d5
refs/heads/master
2020-06-07T17:52:51.172890
2019-06-21T18:53:01
2019-06-21T18:53:01
193,039,805
0
0
null
null
null
null
UTF-8
Java
false
false
106
java
mastercard 5555555555554444 4012888888881881 4222222222222 378282246310005 6011111111111117 5002791850994
[ "jenkins@khan.paloaltonetworks.local" ]
jenkins@khan.paloaltonetworks.local
58bb4a1f65db1303ac718af25ea34d9f8dbcf36c
c885ef92397be9d54b87741f01557f61d3f794f3
/tests-without-trycatch/Math-6/org.apache.commons.math3.optim.nonlinear.vector.jacobian.GaussNewtonOptimizer/BBC-F0-opt-50/4/org/apache/commons/math3/optim/nonlinear/vector/jacobian/GaussNewtonOptimizer_ESTest.java
64bc6247c19650c4477fd5fcd31ba72d193e939c
[ "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
2,567
java
/* * This file was automatically generated by EvoSuite * Tue Oct 19 19:40:23 GMT 2021 */ package org.apache.commons.math3.optim.nonlinear.vector.jacobian; import org.junit.Test; import static org.junit.Assert.*; import static org.evosuite.runtime.EvoAssertions.*; import org.apache.commons.math3.optim.ConvergenceCh...
[ "pouria.derakhshanfar@gmail.com" ]
pouria.derakhshanfar@gmail.com
0e32387cb72361502440121fcb87a6c725fd52bf
dbe0e9003b6ffd329c3b5708123b98580b96bbcc
/example/src/main/java/nl/reinkrul/cqrslight/micronaut/ItemAddedEvent.java
8e7573c0efff3c0a82bb09c6d41bc5019db260b1
[ "Unlicense" ]
permissive
reinkrul/cqrslight-micronaut
570a86859ea6114b235df63be15488ff729a46f4
59a5eb35efb36614c2f02729882698e31b6b7798
refs/heads/master
2020-06-21T05:28:28.622303
2019-07-18T06:48:52
2019-07-18T06:48:52
197,355,994
2
0
null
null
null
null
UTF-8
Java
false
false
366
java
package nl.reinkrul.cqrslight.micronaut; import io.micronaut.context.event.ApplicationEvent; public class ItemAddedEvent extends ApplicationEvent { private final String name; public ItemAddedEvent(final Object source, final String name) { super(source); this.name = name; } public St...
[ "r.g.krul@avisi.nl" ]
r.g.krul@avisi.nl
0e7e916e6bd0c9cc8e2026cb4c7e5ab59b4c4ec4
ade43c95a131bc9f33b8f99e8b0053b5bc1393e8
/src/OWON_VDS_v1.0.24/com/owon/uppersoft/vds/core/comm/ICommunicateManager.java
fab0a0e13393e36f811c5e543fd155e6f4daf34e
[]
no_license
AbirFaisal/RealScope
7ba7532986ea1ee11683b4bd96f746e800ea144a
f80ff68a8e9d61d7bec12b464b637decb036a3f0
refs/heads/master
2020-03-30T04:21:38.344659
2018-10-03T17:54:16
2018-10-03T17:54:16
150,738,973
7
0
null
null
null
null
UTF-8
Java
false
false
857
java
package com.owon.uppersoft.vds.core.comm; /** * ICommunicateManager,将比较底层的通用数据传输接口分离为单独的类 * */ public interface ICommunicateManager { /** * 对远程端在出现传输出错后,可以用来尝试恢复并重新连接 * * 使用基于通信类的该方法可以避免涉及通信方式的细节信息如端口ip等, 也不需要在重新连接中设置这些,方便使用 */ boolean tryRescue(); int retryTimes(); /** * 在具体的实现中,...
[ "administrator@Computer.local" ]
administrator@Computer.local
eef8dadeb7b68777bf77a4f7496487fd8f522a66
dd18a1a2ba5a47775f1615e6a8edd3d01222780d
/src/cn/cche/exception/DAOException.java
b4795ee83d4f311b2e68304dcef4b0bf4486423f
[]
no_license
mynacche/ccheBlog
abde6c687db4e30057d90ab01c761165460d8b8f
4470e342864717ec177a6518576a1f96b4878107
refs/heads/master
2020-05-19T10:24:59.933066
2013-09-18T10:37:32
2013-09-18T10:37:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
586
java
package cn.cche.exception; public class DAOException extends RuntimeException { private static final long serialVersionUID = 1939686586971715397L; public DAOException() { super(); } public DAOException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(messa...
[ "chexingyou@gmail.com" ]
chexingyou@gmail.com
fe99f31bc0f07396d5ac31c04d6bf19786d1a79c
a597bfa007dbd41f71906798518c5d11bd3d5f31
/Project_1/app/src/main/java/com/example/project_1/registerUser.java
9ba8eced8b63047e62867606eb9190b0f7a136ad
[]
no_license
robo-codes/Heroku_ML_deployment
484608d48bf15810219e672fdc9d708d57d25dfa
6e476237855e2811ed060f78d357072698cdc0b4
refs/heads/main
2023-04-14T18:08:02.421938
2021-04-13T06:28:20
2021-04-13T06:28:20
356,546,930
0
0
null
null
null
null
UTF-8
Java
false
false
6,057
java
package com.example.project_1; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.media.MediaCodec; import android.os.Bundle; import android.util.Patterns; import android.view.View; import android.widget.Button; import android....
[ "noreply@github.com" ]
noreply@github.com
44ea893f51f1d8f8cd5f37d05e26605d9024b132
63241be0c697e981dad89188f5c696f077272a2d
/src/swComunicacion/views/Opcion2.java
6517d159c0f468e47f8bfe644ecd2d6040691aba
[ "MIT" ]
permissive
enjalamu/SW-Comunication
56ad1554434292e57e0cf7098ab6744935770f9f
a7e79c4656e4c14b5d95cc61192b56ea13b3029c
refs/heads/master
2020-06-25T11:34:12.855885
2016-11-23T21:59:31
2016-11-23T21:59:31
74,616,896
0
0
null
2016-11-23T21:54:35
2016-11-23T21:54:34
null
UTF-8
Java
false
false
9,460
java
package swComunicacion.views; import java.awt.BorderLayout; import java.awt.Color; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.border.EmptyBorder; import javax.swing.Timer; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyAdapter; import j...
[ "dani_glvz@hotmail.es" ]
dani_glvz@hotmail.es
0200d4ce4b042659b57929ea2b5f526cdf4f9ce0
4a33bea299d5eba07d8ec65c26224f781c0a6c89
/app/src/main/java/com/example/datahajiumroh/Hadits27.java
16103b0634ab69e1c82e32ff3375921c9e642830
[]
no_license
SafiraRakhsanda/DataHajiUmroh
4fcce54a75387ac61887caf12ceb9ec0195d26e7
08a333be4fc78132659312f7f2f413c794eee80e
refs/heads/master
2021-01-16T01:49:23.098187
2020-04-11T12:07:01
2020-04-11T12:07:01
242,931,171
0
0
null
null
null
null
UTF-8
Java
false
false
1,987
java
package com.example.datahajiumroh; import android.content.Context; import android.os.Build; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.Gravity; import android.view.LayoutInflater; import android.view.View; import android.widget.Button; import android.widget.ImageButt...
[ "srakhsanda31@gmail.com" ]
srakhsanda31@gmail.com
7002e7fa9f07d9123ce6b8f759cdd6f38dc6bcb4
a2a1790aa8caa8da2c7f997b6fb0b67d438fa320
/src/forms/CambiarPasswordForm.java
25a0c6d86b077c937e817413049da0c0e8874362
[]
no_license
jelices/PracticaSI3
38c451f4bd94f3a02a59d1d73a158d05d70a1806
9eb7e049239d5a31e7c10f9408e51aed082d22e7
refs/heads/master
2020-05-18T04:28:17.970005
2013-10-01T04:53:40
2013-10-01T04:53:40
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,051
java
package forms; import javax.servlet.http.HttpServletRequest; import org.apache.struts.action.*; public class CambiarPasswordForm extends ActionForm { private String passwordPrevio; private String passwordNuevo; private String passwordNuevo2; public String getPasswordPrevio(){ ret...
[ "jelices@ece.unm.edu" ]
jelices@ece.unm.edu
4bdd7093f04a85d95abbebaff7033675cf948698
c7258b3a2385303764c48565906539c81c420893
/src/model/ArcZero.java
2c3c2685d55a667831a747aea3133d0d8ebb9e62
[]
no_license
xdanielsb/Petri
25d64628ba5b704b2b6df4471b9fca63559c1005
3671e020f4699d26dfc488950704fb277ad5204d
refs/heads/master
2020-08-04T12:29:42.672602
2019-11-26T13:31:18
2019-11-26T13:31:18
212,137,204
0
0
null
null
null
null
UTF-8
Java
false
false
487
java
package model; /** * Class that represents a special Arc whose is crossable, * if the number of jetons in the place is equal to zero. * @see Arc */ public class ArcZero extends Arc{ public ArcZero(Place _p) { super(_p); } public boolean isCrossable() { return this.getP().getNumJetons()==0; } @Override publ...
[ "dfsantosbu@unal.edu.co" ]
dfsantosbu@unal.edu.co
1ddbb05848a9fcd3c628b45add44aa53e6159597
ef5f867e24bff0033368420aeec9098e11437bad
/nenu-common-api/src/main/java/cn/xiaoyh/service/PeopleClientService.java
12efeb7d9839adbad900e36c6264386f1f829bd0
[]
no_license
zhangr648/nenu_lab_system
1f8131ce58adfdbb9cb0df5a1f19d7bbe95ff606
30f6f6f0ee7de9d62865aae5531bfc8435773fcb
refs/heads/dev1.0
2023-03-17T07:17:44.055823
2021-03-20T11:46:07
2021-03-20T11:46:07
338,599,625
0
2
null
2021-03-21T02:47:37
2021-02-13T15:04:03
Java
UTF-8
Java
false
false
671
java
package cn.xiaoyh.service; import cn.xiaoyh.pojo.People; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import java.util.List; @...
[ "bubu.ok@163.com" ]
bubu.ok@163.com
17436b70669186cbf9c0bcb880723fa547c7b647
82b9ac6972aa276479ff106a69ce2dc6cfdf643e
/src/codechef/MARCH18B/Minion_Chef_and_Bananas.java
047ea83e75789299f487656137b7ecb4cd13df93
[]
no_license
kiransringeri/Problems
38846305bd3fb07bc3f8f56e7ee6c738b6bed54c
d2a7544da625f5664bd75b1436cd7fd9cecf7ee6
refs/heads/master
2021-07-05T15:08:14.043391
2019-04-23T06:03:14
2019-04-23T06:03:14
121,850,350
0
0
null
null
null
null
UTF-8
Java
false
false
3,144
java
package codechef.MARCH18B; import java.util.Arrays; import java.util.Random; import java.util.Scanner; /** * Problem definition : * Status : Fine according to me, but codechef gives ERROR * * @author kiran * */ public class Minion_Chef_and_Bananas { public static void main(String[] args) { ...
[ "kiran.ms@housing.com" ]
kiran.ms@housing.com
a662eb9d9dd273bdb19836ce27af1841d8e485e3
8be81d059bda4e490af22324464d8db75e660fd1
/src/main/java/br/sigo/aplicacao/config/package-info.java
58de66db8f62e564a84b7c99de4853ba212c185a
[]
no_license
robekson/sigo-new
a402af751c3b6aacf5e07be1f69d6df2dde1c360
66800463e42cf6dbf236f30b3dcfdf4b254849e5
refs/heads/master
2023-03-28T11:41:14.619952
2021-03-30T14:31:13
2021-03-30T14:31:13
336,265,563
0
0
null
null
null
null
UTF-8
Java
false
false
83
java
/** * Spring Framework configuration files. */ package br.sigo.aplicacao.config;
[ "robeksonr@gmail.com" ]
robeksonr@gmail.com
e7f9586d882d0eaba303525615d937dd3dd85211
0b657fbc76dcbb2544b01e8dbbe83e30289c142f
/501/20210318.java
86edde0b5d2d959fe4c94ada8fae1ef34a00bca4
[]
no_license
MaCoredroid/leetcode
68cbd343ea4a99067a497d9c034e5ab1ca3525e6
58080590f3a4f4d1f8082474a3ec344b87b18b4d
refs/heads/master
2022-03-11T07:17:45.908007
2022-02-08T01:41:24
2022-02-08T01:41:24
227,243,204
0
0
null
null
null
null
UTF-8
Java
false
false
1,605
java
/** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode() {} * TreeNode(int val) { this.val = val; } * TreeNode(int val, TreeNode left, TreeNode right) { * this.val = val; * this.left = left; * ...
[ "coredroid0401@gmail.com" ]
coredroid0401@gmail.com
bd738d5647f7790fe1bf3cc6f42671cdc7d8fb08
780c9c68e7525cfa67a6a0a569b3567101c120fd
/beauty-project/robot/src/main/java/com/meixiang/beauty/webapp/robot/util/MessageUtil.java
61ff0fd287b70211f4bb9afc357c2e3d38454cb7
[]
no_license
yuexiadieying/beauty
4705ab2c2474a15884cbaeaab8ed1a36d44c7244
1e0a910eccea47c9edf48704843ba931e8fbf76d
refs/heads/master
2022-12-23T19:32:26.398543
2019-08-01T01:24:45
2019-08-01T01:24:45
199,824,461
0
0
null
2022-12-16T01:17:21
2019-07-31T09:30:40
HTML
UTF-8
Java
false
false
5,110
java
package com.meixiang.beauty.webapp.robot.util; import com.meixiang.beauty.sys.entity.Article; import com.meixiang.beauty.sys.entity.MusicMessage; import com.meixiang.beauty.sys.entity.NewsMessage; import com.meixiang.beauty.sys.entity.TextMessage; import com.thoughtworks.xstream.XStream; import com.thoughtworks.xstrea...
[ "cus18@sina.com" ]
cus18@sina.com
90ddda78bf1ec810fbdf34e3a8c6ed75fd5a9c9f
7a24c3df8915b105a7607fd7f7e9201ac8b7e4b7
/components/org.wso2.carbon.das.jobmanager.core/src/gen/java/org/wso2/carbon/das/jobmanager/core/model/InterfaceConfig.java
e1b39eacfd7a1b60cb80068df22bbca582f46a51
[ "Apache-2.0" ]
permissive
NisalaNiroshana/carbon-analytics
7788de0a0f237d31cfcbf6e415ed86657d8e5054
39667711453717f856b9cbefb363af3c0c3a9d46
refs/heads/master
2018-09-11T16:58:13.210048
2017-11-23T16:27:12
2017-11-23T16:27:12
111,830,601
0
0
Apache-2.0
2018-06-05T13:21:32
2017-11-23T16:27:14
JavaScript
UTF-8
Java
false
false
3,243
java
/* * Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. 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.or...
[ "grainier@wso2.com" ]
grainier@wso2.com
433ff269a6bebe39b2b765aa5ddb95673f6f37c7
065c1f648e8dd061a20147ff9c0dbb6b5bc8b9be
/ant_cluster/9110/tar_0.java
87bf8a20b693c4f45e6cb9b56968ff93f2bf3721
[]
no_license
martinezmatias/GenPat-data-C3
63cfe27efee2946831139747e6c20cf952f1d6f6
b360265a6aa3bb21bd1d64f1fc43c3b37d0da2a4
refs/heads/master
2022-04-25T17:59:03.905613
2020-04-15T14:41:34
2020-04-15T14:41:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
36,926
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...
[ "375833274@qq.com" ]
375833274@qq.com
97f02543d1b0fc721f3ca2ece6f36baad1fa2e07
c511b7852f9eb5b889893ad529e78ff5f0b0d9ee
/app/src/main/java/com/free/blog/library/util/JsoupUtils.java
598a3145a4123a979728b5a8e04f29efc4f80a6d
[]
no_license
jiubadao/FreeCsdn
dbbb4735b915f9ec3c4d794ee892ae6e8a575713
4e04e569166797878648ce8361c9297ed90225cc
refs/heads/master
2021-06-18T16:28:13.809642
2017-06-29T15:20:59
2017-06-29T15:20:59
null
0
0
null
null
null
null
UTF-8
Java
false
false
15,631
java
package com.free.blog.library.util; import android.text.TextUtils; import com.free.blog.library.config.Config; import com.free.blog.model.entity.BlogCategory; import com.free.blog.model.entity.BlogColumn; import com.free.blog.model.entity.BlogItem; import com.free.blog.model.entity.BlogRank; import com.free.blog.mode...
[ "studiotang.cn@gmail.com" ]
studiotang.cn@gmail.com
d2d750492100b44ea2ce6c27b182234152a3a547
452c7ee073c9b9b75817759c1f22398b05fcb75d
/src/com/dzwz/shop/dao/BaseDaoIpml.java
6cc5d80db5b0ea656336e50b9cf0e0ae222a32bc
[]
no_license
MarvenGong/fruit-shop
998dab73f0f515a9c11109e6c73bd07e4db4e7a3
9856f32b64e021c0999e6a9e8ee29b58869c2053
refs/heads/master
2021-01-21T20:29:04.811823
2017-05-26T02:20:14
2017-05-26T02:20:14
92,236,798
1
0
null
null
null
null
UTF-8
Java
false
false
1,404
java
package com.dzwz.shop.dao; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; import java.util.List; import org.hibernate.Session; import org.hibernate.SessionFactory; import com.dzwz.shop.model.Account; @SuppressWarnings("unchecked") public class BaseDaoIpml<T> implements BaseDao<T> { p...
[ "1637077309@qq.com" ]
1637077309@qq.com
c75b57f62c091f4c92d1eeea4a95e5a8d8519c15
48de71349f6555e1508426d241818e9c1a659a60
/Exceptions_1/src/Template.java
6e76edab209a296c85a74d1695f61460e46fa1fa
[]
no_license
SpaceManCola/Epam
345daeb63eb0434ad481f27c86f895284860097b
1c8261b22542cbb661c1cf82dd6f1b44122bd0eb
refs/heads/master
2021-07-04T11:14:34.103279
2017-09-27T09:38:32
2017-09-27T09:38:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,632
java
import java.io.BufferedReader; import java.io.File; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.io.PrintWriter; import java.util.Map; import java.util.Properties; import java.util.UUID; public class Template { static String ab...
[ "tvichuzhanin@gmail.com" ]
tvichuzhanin@gmail.com
315e5ac4e58a1889f07b79c2479e6fa92121f273
284870bbd07086c4b1a620517e8d131dc8cde2e5
/dl4j-examples/src/main/java/org/deeplearning4j/examples/misc/lossfunctions/CustomLossExample.java
18e7b551d475298e656f396cbfa4151cf417c2a4
[ "Apache-2.0", "LicenseRef-scancode-generic-cla" ]
permissive
DavidLei08/deeplearning4j-examples
91fe84cc5417b03d736ea34e0c2edc0ae5879d02
de7d9676bb946b67876b64ccd97bd54d1510e46b
refs/heads/master
2020-12-06T04:36:46.489980
2019-12-20T00:25:39
2019-12-20T00:25:39
232,342,812
1
0
NOASSERTION
2020-01-07T14:31:59
2020-01-07T14:31:58
null
UTF-8
Java
false
false
10,820
java
/******************************************************************************* * Copyright (c) 2015-2019 Skymind, Inc. * * This program and the accompanying materials are made available under the * terms of the Apache License, Version 2.0 which is available at * https://www.apache.org/licenses/LICENSE-2.0. * *...
[ "skymindops@skymind.io" ]
skymindops@skymind.io
afd85bd1bd1720990b28eb45603b1a479c84875d
40bf69cfa2b02952c86f38f72099ef0f5def2c62
/NewsDataSource.java
25c86e819ff8f55b04456fbd6d213f0da53062e5
[]
no_license
br225/Isreal_News
3e594e8585b3dfdfeb074932c8ba7e910e91a304
9ae805a047052bf8cb1cbb0e822a2e17ec254df7
refs/heads/main
2023-08-27T07:29:59.211589
2021-10-03T20:17:12
2021-10-03T20:17:12
406,739,303
2
0
null
null
null
null
UTF-8
Java
false
false
1,384
java
package com.example.khalil.data.model; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.MalformedURLException; import java.net.URL; import java.net.URLConnection; public class NewsDataSource { public static String address = "https://newsapi.o...
[ "noreply@github.com" ]
noreply@github.com
d827342fe2f9f437d66bb5b1b60a0b5c497e1af3
114e0fcdd34d7e88b240fb08db8f0baa1bab8ced
/src/test/java/com/kamatama41/hadoop/WordCountTest.java
6aa5da453e1b94ff4da5b79355a80c0216cc4aaf
[]
no_license
kamatama41/hadoop-example
211c3f1469a967c99343b29b187d8f9e32abf21d
41415049459cfe0263d328a2ed67f36ea0f75b1b
refs/heads/master
2016-09-06T11:36:37.733312
2014-12-10T17:23:00
2014-12-10T17:23:00
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,663
java
package com.kamatama41.hadoop; import org.apache.hadoop.io.IntWritable; import org.apache.hadoop.io.LongWritable; import org.apache.hadoop.io.Text; import org.apache.hadoop.mrunit.mapreduce.MapDriver; import org.apache.hadoop.mrunit.mapreduce.MapReduceDriver; import org.apache.hadoop.mrunit.mapreduce.ReduceDriver; imp...
[ "shiketaudonko41@gmail.com" ]
shiketaudonko41@gmail.com
b30904c783298ba6605247ffb8084f578d2e5226
a5b866f5708d857347a50d6f106754c040d1acf4
/Arrays - Exercise/src/CommonElements.java
21181ad333f2ec061517892db587a59660d94682
[]
no_license
StanchevaYoana/Java-Fundamentals
3c8434cdab20a009737e0d25be2d45bc0d772e37
99a883c313864f52ae39026a508925f4924325d4
refs/heads/master
2020-06-21T20:00:54.710482
2019-08-05T13:50:29
2019-08-05T13:50:29
197,541,288
3
0
null
null
null
null
UTF-8
Java
false
false
543
java
import java.util.Arrays; import java.util.Scanner; public class CommonElements { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String[] firstRow = scanner.nextLine().split(" "); String[] secondRow = scanner.nextLine().split(" "); for (String n :...
[ "yoana.radoslavova@gmail.com" ]
yoana.radoslavova@gmail.com
5d6e5357caa5e9bdddaf82bf9b043d0f3517e47f
2e59128aafe91d7fc34968a5d5d478deec26a9df
/Android Uygulaması/gen/com/uygulama13/R.java
98a84ec868d7f1af58aedde9b3587bd6f220c222
[]
no_license
ramazankayis/Android_Uygulamasi
4c575f37402dca3a05de6607b25979bd4542b069
fbd118985a2459ba84baadf2f7cf25aa6a2bb927
refs/heads/master
2020-12-28T21:17:46.480436
2017-02-02T11:31:49
2017-02-02T11:31:49
80,717,803
0
0
null
null
null
null
UTF-8
Java
false
false
5,939
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * aapt tool from the resource data it found. It * should not be modified by hand. */ package com.uygulama13; public final class R { public static final class attr { } public static final class dimen { /...
[ "RAMAZAN KAYIŞ" ]
RAMAZAN KAYIŞ
ec1b3c9c2dddb7fee77d8c5cd3d4917d54cf2c58
8b41ebb026f13cd6b64e9fa550f58a7bfec1e079
/framework-root/framework-selenium/src/main/java/org/familysearch/products/gallery/testframework/selenium/driver/BrowserDriverFactory.java
650989c8b191d5ef42b842aa82b5d366d7e2b711
[]
no_license
sheelakumari/products-gallery-web-test
836355bbd6c0a1135dbb804b8446006472cb4dcf
71b6f92298143ec5d4e9dd06f55fe5a6e59c2a65
refs/heads/master
2020-04-05T21:18:24.651241
2014-10-28T12:43:18
2014-10-28T12:43:18
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,226
java
package org.familysearch.products.gallery.testframework.selenium.driver; import org.apache.log4j.Logger; import org.openqa.selenium.WebDriver; /** * Creates drivers for browsers that run locally on the calling workstation. * * Note: To create browsers for Sauce Labs, use SauceBrowserDriverFactory * * @author...
[ "divyakumarjain@users.noreply.github.com" ]
divyakumarjain@users.noreply.github.com
390106e2e04af626c9a09fabb259eb4bfb35bf27
22795f9dbaad1de84f747f9791a28c6173ed3bca
/koopa.dsl/koopa/templates/partials/VerbatimLine.java
7886bd9fadaab36f15a6c2453d2d1b3db25210ff
[]
no_license
benravago/koopa
f9d1a36f61b86e3b417a574d1a5902db12c01bb3
e03690fd834574572d95bf60ca8b9eb0effce869
refs/heads/master
2020-07-02T22:34:47.412406
2019-12-29T19:35:01
2019-12-29T19:35:01
201,689,942
1
0
null
null
null
null
UTF-8
Java
false
false
440
java
package koopa.templates.partials; import koopa.templates.TemplateLogic; public class VerbatimLine implements Part { private final String text; public VerbatimLine(String text) { this.text = text; } @Override public void applyTo(StringBuilder builder, String indent, TemplateLogic logic) ...
[ "ben.ravago@aol.com" ]
ben.ravago@aol.com
58a38ccb32eedf7fe2313cc79a2f6268b963839e
595754069887f4dfdaa4224a1bc8e8e360575fac
/版本更新/xml解析更新/UpdateVersionService.java
e60a62d94a8912c9212a8eb381b0299855f7fb54
[]
no_license
ixinrun/AndroidSceneCode
aa87292ae190cc754c936cca504a8224fcf332a0
5328eae178164a182df9e60aed29762f73168374
refs/heads/main
2023-03-05T16:50:49.445334
2021-02-09T01:20:30
2021-02-09T01:20:30
337,112,247
0
0
null
null
null
null
UTF-8
Java
false
false
12,426
java
package com.updateversion.updateversion; import android.app.AlertDialog.Builder; import android.app.Dialog; import android.content.Context; import android.content.DialogInterface; import android.content.DialogInterface.OnClickListener; import android.content.Intent; import android.content.pm.PackageManager.NameNotFoun...
[ "642545912@qq.com" ]
642545912@qq.com
edadd43754fa12b3c90dd2031b3fd4c0c67ba0de
2fa3642eef2a0d1e1ca945da3cdd87d961abbe1b
/src/Lib1/IPPFix.java
9f92fd4f4dfa98a5d7cb681537b087c554c23c5e
[ "MIT" ]
permissive
Vectis99/sshs-2016-willamette
ce589a88e7f5351e49d22f30915842865bd9e94b
101be0b8d884838043485886e3882bdf8986817c
refs/heads/master
2021-01-10T14:35:05.609311
2016-03-12T04:51:48
2016-03-12T04:51:48
52,473,560
2
2
null
2016-02-24T22:16:21
2016-02-24T20:52:18
Java
UTF-8
Java
false
false
3,584
java
package Lib1; import java.util.ArrayList; import java.util.Arrays; import java.util.function.Predicate; public class IPPFix { //--------------------------------------------------------- objRemove<String> filter; ArrayList<String> inputArr; //---------------------------------------------------...
[ "pratherea@gmail.com" ]
pratherea@gmail.com
16bce7ef81c9a518bab09a0647d3609fa0d9f62e
3962c31a306829a8572101c3dd58cad62f3c2ed8
/src/com/lanxi/weixin/serviceImpl/WeixinUserServiceImpl.java
453dbfd0b7275dd2d6811fc2680d46002b00c4a6
[]
no_license
LuckyMagacian/weixinlanxi
fff179d92224865c01743f70545fa102b629af7d
d7920d765b22cd28e449846779c67f1bcfa91af6
refs/heads/master
2021-01-09T06:43:16.808856
2017-10-09T11:27:41
2017-10-09T11:27:41
81,065,798
0
0
null
null
null
null
UTF-8
Java
false
false
1,169
java
package com.lanxi.weixin.serviceImpl; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.lanxi.weixin.bean.oauth.OpenidDetailBean; import com.lanxi.weixin.mapper.WeixinUserMapper; import com.lanxi.weixin.service.WeixinUserService; @Service public ...
[ "yangyuanjian@188lanxi.com" ]
yangyuanjian@188lanxi.com
2a719c680a08d85fdf6e2d5370c2781750365dc4
6a8378e4578fffc4777d66f9b951357a919b99d1
/src/dao/ItemInfoDao.java
99230bb0ed39633f945d0d1e78ce27d5ef97b4ef
[]
no_license
lumids/project
0eb361c2f7cc922e2ef048356e5cd8abb84ea395
39255fe40405e41586afcafb02da0bebdecb35e5
refs/heads/master
2021-01-20T18:47:57.540364
2016-07-04T01:32:32
2016-07-04T01:32:32
62,522,560
0
0
null
null
null
null
UTF-8
Java
false
false
6,463
java
package dao; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.util.ArrayList; import java.util.List; import javax.naming.Context; import javax.naming.InitialContext; import javax.sql.DataSource; public class ItemInfoDao { private static ItemInfoDao instance = new I...
[ "ekthasksna@naver.com" ]
ekthasksna@naver.com
8f28c548c4c278f3f06181eb8332bdd77d65b01c
2fe2a96aca5440217bcddab4ab88827add1f6e30
/src/test/java/net/yeputons/spbau/spring2016/torrent/protocol/FileEntryTest.java
653eb56af6f7c89c55db89f9bd902ef7ea6b7249
[ "MIT" ]
permissive
ibrahim-R/spbau-java-course-torrent-term4
36571a12305694b12d872c0978188b293302fc1c
12247ebdb76b3e88033a1ef5d8286e046ca94bd8
refs/heads/master
2020-05-29T12:23:41.430672
2016-05-19T15:45:41
2016-05-19T15:45:41
null
0
0
null
null
null
null
UTF-8
Java
false
false
609
java
package net.yeputons.spbau.spring2016.torrent.protocol; public class FileEntryTest extends ProtocolEntityTest { // CHECKSTYLE.OFF: MagicNumber @Override protected ProtocolEntity getObject() { return new FileEntry(123456789, "some_file", 123456789012345L); } @Override protected byte[] g...
[ "egor.suvorov@gmail.com" ]
egor.suvorov@gmail.com
76e0f20eeb67eb9f92970bd0406f9612983f8d40
bb5c5e0bbaf6c6fe8fd3f311b364f25060f338e0
/PunktAdventure2/src/Punkt/FlammeAnimation.java
81f0b1d548b6aa5350dbef4ec22411f8e094c160
[]
no_license
Luggioh/Adventure2
ac44793112898f0b4dddf203babc498d4a3bc542
3191e98fb365c931a5de89812a8ee9ec16172429
refs/heads/master
2021-01-21T23:20:16.104811
2017-06-24T12:40:27
2017-06-24T12:40:27
95,226,576
0
0
null
null
null
null
UTF-8
Java
false
false
682
java
package Punkt; import java.util.Timer; import java.util.TimerTask; public class FlammeAnimation { Timer flamme; private int temp = 0; public FlammeAnimation() { flamme = new Timer(); flamme.scheduleAtFixedRate(new TimerTask(){ public void run() { if(Variablen.punktX <= Variablen.flammeX...
[ "User@DESKTOP-BTUJU66.Speedport_W_724V_Typ_A_05011603_05_020" ]
User@DESKTOP-BTUJU66.Speedport_W_724V_Typ_A_05011603_05_020
452d3a1252b423707c53b7b1589691ad79518760
7003f8a6e4e0e9ac4da6311957a4dd639edbf5a2
/src/main/java/br/com/retEnvCCe/TransformType.java
2966047294f3e83eb27140b433b1cc4263fe2766
[]
no_license
renangtm/frente_caixa_contabilidade
65e2586ec2e4e10d7d0dbad70b66fda52a81c0ac
91b1175d3adc8d1357a2cf99efac11223d4071d0
refs/heads/master
2022-12-10T09:59:18.687217
2019-11-06T05:34:12
2019-11-06T05:34:12
212,447,056
1
1
null
2023-08-23T17:54:30
2019-10-02T21:43:38
Java
ISO-8859-1
Java
false
false
3,001
java
// // Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802 // Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem. // Ger...
[ "renan_goncalves@outlook.com.br" ]
renan_goncalves@outlook.com.br
7003ab6b75fa65b760218d7a09a90d3e45e0067e
75161cfe37bd54d539d244c7a1ffe755c051fb44
/src/main/java/com/mishkapp/minecraft/plugins/squarekit/commands/area/InfoCommand.java
36b69270d35536f5fab36132a6e3ebc0646f4566
[]
no_license
mishkapp/square-kit
b7fce1c24a85c8747d1dcd96ea8caea55f079aa2
03254e7e5d51b237ce5f62467704c923cb4b1a5a
refs/heads/master
2020-03-19T16:45:13.227733
2017-03-16T11:01:32
2017-03-16T11:01:32
136,728,630
0
0
null
null
null
null
UTF-8
Java
false
false
3,366
java
package com.mishkapp.minecraft.plugins.squarekit.commands.area; import com.mishkapp.minecraft.plugins.squarekit.AreaRegistry; import com.mishkapp.minecraft.plugins.squarekit.areas.Area; import com.mishkapp.minecraft.plugins.squarekit.areas.CuboidArea; import com.mishkapp.minecraft.plugins.squarekit.areas.SphereArea; i...
[ "mishkapp@gmail.com" ]
mishkapp@gmail.com
470ddcaee877dd758935edf898532cea29b5468b
f2c850553981f1f83a2320ff11233621209f54bf
/practice3/app/src/androidTest/java/ru/mirea/koskin/practice3/ExampleInstrumentedTest.java
ae4d1ec4fd950c59f561b5cd2a0da4553a75d67e
[]
no_license
asanold/mobile
3bd1ed2c102e5d8ba0786795789f995d7b26f7b5
55c6739b11a63e12a4ecba66e1e8be346423f074
refs/heads/main
2023-05-13T16:39:14.147051
2021-06-02T01:48:50
2021-06-02T01:48:50
371,855,339
0
0
null
null
null
null
UTF-8
Java
false
false
764
java
package ru.mirea.koskin.practice3; import android.content.Context; import androidx.test.platform.app.InstrumentationRegistry; import androidx.test.ext.junit.runners.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute ...
[ "Simonkoskin@mail.ru" ]
Simonkoskin@mail.ru
dba4ac62adef17ec18ecafebd29c603ce97f4b92
64e6d8b30843d33cd9873b38380e3c41548a6763
/src/main/java/com/spider/vote/web/RestControllerExceptionHandler.java
39571bcdab449865b2eee2ea2426231d25aee854
[]
no_license
AlexLyr/votesystem
121e56d859a3aec55791a838f4a0d2bea8a8cc50
385fd67a6fc4882e81dea28a8c87fbadbce1f386
refs/heads/master
2021-01-15T19:06:34.289033
2017-10-18T22:07:13
2017-10-18T22:07:13
99,808,991
0
1
null
null
null
null
UTF-8
Java
false
false
4,945
java
package com.spider.vote.web; import com.spider.vote.utils.ValidationUtil; import com.spider.vote.utils.exceptions.*; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.core.Ordered; import org.springframework.core.annotation.Order; import org.springframework.dao.DataIntegrityViolationE...
[ "lyrchikov.a@yandex.ru" ]
lyrchikov.a@yandex.ru
0238da518be3af4addc1031ecf5e1d321031055b
432505d6bac027b1f304bf947d680b4b136986cc
/ipms/.svn/pristine/95/9569feda5ec1757a7a76cc8bd204e1f695feb6f5.svn-base
1f73e033d9a513f00270db86a046ab837f9aeb1b
[]
no_license
1171734424/ipms
27c4a7aa3828c191b85d218d767b770148af70e7
09d5831f77365df04f5ec58ece32736492d3bb21
refs/heads/master
2020-04-07T15:43:44.066541
2018-11-21T06:04:42
2018-11-21T06:04:42
158,498,481
1
0
null
null
null
null
UTF-8
Java
false
false
1,821
package com.ideassoft.pmsinhouse.service; import java.net.UnknownHostException; import java.text.SimpleDateFormat; import java.util.Date; import javax.servlet.http.HttpServletRequest; import org.springframework.stereotype.Service; import com.ideassoft.bean.OperateLog; import com.ideassoft.core.bean.LoginUser; impor...
[ "1171734424@qq.com" ]
1171734424@qq.com
4e00c7eda2549c6e4063e70ade07b5e3e1763658
97e4ba8058a0ee2f356ae151288d9a66f85f78c8
/src/main/java/com/leetcode/day0302/T19_DeleteLastNthNode.java
ddeb72a0b8fe401d48909f61ce573df99b48436c
[]
no_license
zzyssg/ainToOffer
bf5c493b2c018f47d91ea7f9680e64ae60c948c4
43d8a2f8f0905bc5217fc2040a7343f4cbf7ca7a
refs/heads/master
2021-03-23T06:38:11.615481
2020-03-15T08:53:48
2020-03-15T08:53:48
247,432,027
0
0
null
2020-10-13T20:22:29
2020-03-15T08:56:37
Java
UTF-8
Java
false
false
562
java
package com.leetcode.day0302; import com.buaa.day0216.ListNode; public class T19_DeleteLastNthNode { public ListNode removeNthFromEnd(ListNode head, int n) { ListNode node1 = head; ListNode node2 = node1; for (int i = 0; i < n; i++) { if (node1 == null) { return...
[ "zy1704528@buaa.edu.cn" ]
zy1704528@buaa.edu.cn
d3ee4f74f6d99f87ad69072d15173e103b4263df
29196e2d4adfb14ddd7c2ca8c1e60f8c10c26dad
/src/main/java/it/csi/siac/siacfinser/model/ric/ParametroRicercaSubOrdinativoIncasso.java
ab34ecc78d57de4b7cf4cf2a7fa456c67743cc8b
[]
no_license
unica-open/siacbilitf
bbeef5ceca40e9fb83d5b1176e7f54e8d84592bf
85f3254c05c719a0016fe55cea1a105bcb6b89b2
refs/heads/master
2021-01-06T14:51:17.786934
2020-03-03T13:27:47
2020-03-03T13:27:47
241,366,581
0
0
null
null
null
null
UTF-8
Java
false
false
2,023
java
/* *SPDX-FileCopyrightText: Copyright 2020 | CSI Piemonte *SPDX-License-Identifier: EUPL-1.2 */ package it.csi.siac.siacfinser.model.ric; import java.io.Serializable; import java.math.BigDecimal; import javax.xml.bind.annotation.XmlType; import it.csi.siac.siacfinser.model.FINDataDictionary; @XmlType(namespace = FI...
[ "barbara.malano@csi.it" ]
barbara.malano@csi.it
4dca64c3c7d161d2a2803e36d0bff610a6b35bd1
0e5dd4cddb09b49912bee986ca94f80775f772d3
/android/archComponents/Pager/app/src/main/java/com/kingmo/pager/database/AppDatabase.java
a8dd9c9319e7fd946bc4c85fb6e00bc5ec7cb141
[]
no_license
maurice-smith/playground
c14737273f66523fb9a6a88a74392e81f4bd56f3
c668bd9c39f7e0e4f7eaddf75eba7a1ec9b29fdb
refs/heads/master
2021-05-15T23:47:07.394321
2019-11-09T01:46:42
2019-11-09T01:46:42
106,937,696
0
0
null
null
null
null
UTF-8
Java
false
false
841
java
package com.kingmo.pager.database; import android.content.Context; import com.kingmo.pager.database.entity.Post; import androidx.room.Database; import androidx.room.Room; import androidx.room.RoomDatabase; @Database(entities = {Post.class}, version = 1) public abstract class AppDatabase extends RoomDatabase { p...
[ "mo.maurice@gmail.com" ]
mo.maurice@gmail.com
4d9edb8c80d3001f23f94c9f8d25041146ad4be7
73d7b055bcedc8bb971782cda9fd196de5d99503
/src/main/java/com/extent/util/ExtentManager.java
c393590d2fdfae6de1f9d5773841d49136d0f796
[]
no_license
ManishaPriyadarshini/ExtentReport
596a90f2882b9e5087e5bd07c09a72b98d8493c6
da9465430f9bfee2b96960bbf7f8a4579116e5f8
refs/heads/master
2023-05-15T01:13:21.335380
2019-07-05T18:48:14
2019-07-05T18:48:14
195,039,858
0
0
null
2023-05-09T18:09:47
2019-07-03T11:24:34
HTML
UTF-8
Java
false
false
590
java
package com.extent.util; import java.io.File; import com.relevantcodes.extentreports.DisplayOrder; import com.relevantcodes.extentreports.ExtentReports; public class ExtentManager { public static ExtentReports extent; public static ExtentReports getInstance(){ if(extent==null) { extent = n...
[ "manisha.ee.701@gmail.com" ]
manisha.ee.701@gmail.com
4670072f6a8f28ce5fcd524e1ac1426746b9c54c
0a0752dd39277c619e8c89823632b0757d5051f3
/jython/src/org/python/core/PyTuple.java
e9f74b3072567ff49ab856f21044cc4f8250b573
[ "LicenseRef-scancode-jython" ]
permissive
anthonycanino1/entbench
fc5386f6806124a13059a1d7f21ba1128af7bb19
3c664cc693d4415fd8367c8307212d5aa2f3ae68
refs/heads/master
2021-01-10T13:49:12.811846
2016-11-14T21:57:38
2016-11-14T21:57:38
52,231,403
0
2
null
null
null
null
UTF-8
Java
false
false
15,910
java
// Copyright (c) Corporation for National Research Initiatives package org.python.core; import java.util.Arrays; import java.util.Collection; import java.util.Iterator; import java.util.List; import java.util.ListIterator; import java.lang.reflect.Array; import org.python.expose.ExposedMethod; import org.python.expo...
[ "anthony.canino1@gmail.com" ]
anthony.canino1@gmail.com
12317bc4bbfef41574c7fa308e3576bd1e30aaff
75abd7450ce8371f434a73888990270701402f6b
/src/JianzhiOffer/Problem20.java
1b5fb4c54019556703f95f35f7e5462dbe90378f
[]
no_license
nightchen/PracticeCode
67d9a39c92c513f13cb6d41b3c7de139fdd85e22
730913ee99f3afd1cc8ced224d2892e87dddf670
refs/heads/master
2020-03-10T18:03:14.163526
2018-09-08T12:29:51
2018-09-08T12:29:51
129,470,993
0
0
null
null
null
null
UTF-8
Java
false
false
707
java
package JianzhiOffer; /** * Created by nightchen on 2018/5/18. * 请实现一个函数用来判断字符串是否表示数值(包括整数和小数)。 * 例如,字符串"+100","5e2","-123","3.1416"和"-1E-16"都表示数值。 * 但是"12e","1a3.14","1.2.3","+-5"和"12e+4.3"都不是。 */ public class Problem20 { public boolean isNumeric(char[] str) { if(str == null || str.length =...
[ "lc779017563@gmail.com" ]
lc779017563@gmail.com
63c3186f8511371d1e62f7a7107d4ca3e94193b8
fe30da1fd2e8345fa479fa63838459e405b25dd7
/app/src/main/java/com/chensd/funnydemo/ui/MainActivity.java
62c0e1cdc795029934f938d13b9eff57912d7356
[]
no_license
chenshandong/Rxjava-retrofit-mvp
6c6278a4341feacfb413f0332570f3b51cc97666
65218b516645dd6c1c806c1c46da973dcdb94c72
refs/heads/master
2021-01-22T02:48:31.052345
2017-02-06T16:05:16
2017-02-06T16:05:16
81,072,326
7
1
null
null
null
null
UTF-8
Java
false
false
5,918
java
package com.chensd.funnydemo.ui; import android.Manifest; import android.graphics.Color; import android.support.annotation.NonNull; import android.support.design.widget.FloatingActionButton; import android.support.design.widget.Snackbar; import android.support.design.widget.TabLayout; import android.support.v4.app.Fra...
[ "chensd0317@qq.com" ]
chensd0317@qq.com
0ee916338b4e5a0ec0b1d1fed9135b626fde0758
ee461488c62d86f729eda976b421ac75a964114c
/tags/HtmlUnit-2.10/src/main/java/com/gargoylesoftware/htmlunit/html/HtmlAbbreviated.java
ff8bfe859b0cc271853c0f99b1aaa4485badb34d
[ "Apache-2.0" ]
permissive
svn2github/htmlunit
2c56f7abbd412e6d9e0efd0934fcd1277090af74
6fc1a7d70c08fb50fef1800673671fd9cada4899
refs/heads/master
2023-09-03T10:35:41.987099
2015-07-26T13:12:45
2015-07-26T13:12:45
37,107,064
0
1
null
null
null
null
UTF-8
Java
false
false
1,504
java
/* * Copyright (c) 2002-2012 Gargoyle Software Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law ...
[ "asashour@5f5364db-9458-4db8-a492-e30667be6df6" ]
asashour@5f5364db-9458-4db8-a492-e30667be6df6
ad7e3add6e955332ea8f9f69765e2c6fd5a2f53d
cccc4c9932dd4a7b3ad365adc3026d3e8df489b5
/AbstractFactoryPatternExample/src/main/java/com/example/designpattern/abstractfactorypattern/shape/impli/Square.java
eaf1326079fcdbfd1e32a2e395c5fa826e227822
[]
no_license
kimdaehyeok/DesignPattern
dddf10363aedd3d967728bc90137029527349ef2
f8211f2d8c78540e35f9f78b13bca880ebd384ec
refs/heads/master
2020-03-23T03:01:34.062572
2018-08-26T06:14:29
2018-08-26T06:14:29
126,334,924
0
0
null
null
null
null
UTF-8
Java
false
false
309
java
package com.example.designpattern.abstractfactorypattern.shape.impli; import com.example.designpattern.abstractfactorypattern.shape.interfaces.Shape; public class Square implements Shape { public void draw() { // TODO Auto-generated method stub System.out.println("Inside Square"); } }
[ "kdh@gmail.com" ]
kdh@gmail.com
a7f776db36c6b0cba96799dfdc3fe9e694c450ce
d01df8e1f21f8e8065995a8b13bb5152318680ce
/Playground/src/de/gfn/oca/basicsw/InstVarAusgabe.java
f2d7c9e8857346647e678de8033a6e22b2492dcc
[]
no_license
wsen/Playground230418
caded0df52c943a70aba59af73a8bddc0e8c1f45
009f4f3e6281669843465d31f783f3e1dc7857be
refs/heads/master
2021-07-10T07:44:51.606552
2018-09-28T22:47:36
2018-09-28T22:47:36
131,116,488
0
0
null
2018-04-26T11:28:43
2018-04-26T07:23:59
Java
UTF-8
Java
false
false
704
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 de.gfn.oca.basicsw; /** * * @author wsen */ class Printer { int inkLevel; } class LaserPrinter extends Printer { i...
[ "w_sen@flashbox.de" ]
w_sen@flashbox.de
b7114df32eeaee58c32b705ac6699896629a4a4c
611b2f6227b7c3b4b380a4a410f357c371a05339
/src/main/java/android/support/v4/widget/TextViewCompat.java
5f3fd0ef8d6b0af51bed7490c96e980df15e3db9
[]
no_license
obaby/bjqd
76f35fcb9bbfa4841646a8888c9277ad66b171dd
97c56f77380835e306ea12401f17fb688ca1373f
refs/heads/master
2022-12-04T21:33:17.239023
2020-08-25T10:53:15
2020-08-25T10:53:15
290,186,830
3
1
null
null
null
null
UTF-8
Java
false
false
23,768
java
package android.support.v4.widget; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.content.pm.PackageManager; import android.content.pm.ResolveInfo; import android.graphics.drawable.Drawable; import android.os.Build; import android.support.annotation.DrawableR...
[ "obaby.lh@gmail.com" ]
obaby.lh@gmail.com
76daf0514ad4285a7e139b53b9871a1d2af1df56
f37f0e8ad0f62335ba481723bc4187f984aae374
/GameDev/src/enviroment/Gamer.java
870e2fe66b224648cdb4064754f8ab58e4c1e544
[]
no_license
nadissu/JavaWork
38d59fc862ee0c35c9e632c4e5954134506c07f4
e2a5db89fc272ade1fa79b9f6f674351fe1f7949
refs/heads/main
2023-05-13T20:16:46.410904
2021-06-09T10:31:19
2021-06-09T10:31:19
363,820,869
42
2
null
null
null
null
UTF-8
Java
false
false
1,158
java
package enviroment; public class Gamer implements EntityBase{ private int gamerid; private String firstName; private String lastName; private long nationalIdentity; private int birthday; public Gamer() { } public Gamer(int gamerid, String firstName, String lastName, long nationalIdentity, int birthday) {...
[ "nadidesigirtmac@gmail.com" ]
nadidesigirtmac@gmail.com