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
3348a9bf2569b61d89bdef2c96f95a446480e9b8
9d390a85f4d412592edb707db2990b5c826b4bf4
/pms/src/com/portal/datacenter/lucene/LuceneDocServiceImpl.java
5c681468020ea6222221f359868ba8d085510875
[]
no_license
lishaopeng/SoftWare
08dfe1460fe82c5f021581ca40083d1aa4803838
7fb5d9e46aa2b3f6dbdff6a1eccb8cd8b0069c97
refs/heads/master
2016-09-06T17:41:58.584970
2015-09-24T08:43:20
2015-09-24T08:43:20
41,285,354
0
0
null
null
null
null
UTF-8
Java
false
false
4,670
java
/* */ package com.portal.datacenter.lucene; /* */ /* */ import com.portal.doccenter.entity.Article; /* */ import com.portal.doccenter.entity.Channel; /* */ import com.portal.doccenter.service.ChannelService; /* */ import java.io.IOException; /* */ import java.io.PrintStream; /* */ impor...
[ "623406671@qq.com" ]
623406671@qq.com
4ffbefbedec135a093e20005a128dd0e73bb26d1
e73fd2b354d002183c9f39cac28c46fbaec58412
/src/main/java/xiyu/unittestforspringboot/service/ItemService.java
9bb397fe2f8b800dc109656808a8f7c307949dc5
[]
no_license
NoraYu/UnitTestingSpringBoot
95243fce901cd1456f559f67d0f6ad8f1da5e2fd
16481aee06d555ee54f84abae22fe5769c4c985d
refs/heads/master
2022-11-12T22:19:56.662362
2020-07-06T20:38:53
2020-07-06T20:38:53
277,625,240
0
0
null
null
null
null
UTF-8
Java
false
false
725
java
package xiyu.unittestforspringboot.service; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import xiyu.unittestforspringboot.DAO.ItemRepository; import xiyu.unittestforspringboot.Entity.Item; import java.util.List; @Service public class ItemService { ...
[ "yxy_1990@hotmail.com" ]
yxy_1990@hotmail.com
f0b99bef0eebb5ab374633d7b3fc5642e0c98dac
d2f736fdf17de2b8b3ed357a8054f1aaf073b8ef
/src/main/java/com/like/zero/spring/util/StringUtils.java
0c40225105cf8a3c7a04850120e2566d36f549f1
[]
no_license
ksdbex00624819/litespring
2fe5e19ea02b29afcad9ab25f37628b2e78928e1
c89f28646b553edcae3f65da935c30567c3e20ae
refs/heads/master
2020-03-21T10:59:42.534923
2018-07-21T13:09:17
2018-07-21T13:09:17
138,482,944
0
0
null
null
null
null
UTF-8
Java
false
false
1,197
java
package com.like.zero.spring.util; /** * Created by like 2018/6/30 */ public class StringUtils { public static boolean hasLength(String str) { return hasLength((CharSequence) str); } public static boolean hasLength(CharSequence str) { return (str != null && str.length() > 0); } ...
[ "dereklike@foxmail.com" ]
dereklike@foxmail.com
ce6efaaff470e3ebc6902624f640e5c7086a54a0
569df1aef8cac6485d75983a732fa41580eaba90
/LinkedList/DNode.java
8f9972a035d2a6962e32e9dc6531b62349ac497e
[]
no_license
Shuhuasong/CS313-Data-Structure-JAVA-
158787ce04ed5a3904ad04cf9f812b237a62ecbc
ccc25946188c75d884404c76b75f9ede2f7b62ba
refs/heads/master
2020-12-07T12:46:41.683414
2020-03-14T05:06:57
2020-03-14T05:06:57
232,724,230
1
1
null
null
null
null
UTF-8
Java
false
false
563
java
package LinkedList; public class DNode<T> { private T data; private DNode<T> prev, next; public DNode(T d, DNode<T> p, DNode<T> n) { data = d; next = n; prev = p; } public T getData() { return data; } public DNode<T> getNext() { return next; } ...
[ "noreply@github.com" ]
noreply@github.com
39227d281c9dc38058629c56a6e7b26273cfc49a
1fea56d2dcb3b495f63c17ad1ebc61b81e44e7b6
/uidemo/src/main/java/com/angcyo/uidemo/uiview3/view/DialogLoginView.java
c73b1af5f9f6edb355c61c96fb8f4f349e2a72a1
[]
no_license
angcyo/UIView
3ce12f69afdc636330ddd11f30dc093b370ea57d
dad0711554232380d72f326feb9c25cd05711a7f
refs/heads/master
2022-06-30T15:27:10.313257
2022-06-19T12:08:09
2022-06-19T12:08:09
72,760,800
7
3
null
null
null
null
UTF-8
Java
false
false
2,524
java
package com.angcyo.uidemo.uiview3.view; import android.support.annotation.NonNull; import android.view.Gravity; import android.view.LayoutInflater; import android.view.View; import android.widget.FrameLayout; import android.widget.TextView; import com.angcyo.library.utils.L; import com.angcyo.uidemo.R; import com.ang...
[ "angcyo@126.com" ]
angcyo@126.com
bff86ea6b165d7ed3d203ca2fb73051ed1eb6a78
6b76402255b6c8cc1c6ab2df5a289f21546548b5
/src/main/java/com/sn/tonux/rabbit/RabbitDemoApplication.java
e035851b2ef14261d04663aace016a91e4013e7a
[]
no_license
tonux/springboot-rabbitmq
5c4d02c9a15d73d9e34aa4bc6abfebe8e5ca6123
3ce86b3ebea7776f53cbbf0ffcfef082173d4215
refs/heads/master
2023-05-01T03:11:54.950826
2021-05-24T21:04:41
2021-05-24T21:04:41
370,484,164
0
0
null
null
null
null
UTF-8
Java
false
false
320
java
package com.sn.tonux.rabbit; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class RabbitDemoApplication { public static void main(String[] args) { SpringApplication.run(RabbitDemoApplication.class, args); } }
[ "sambndongo@gmail.com" ]
sambndongo@gmail.com
2439d4f75f42fd6dc3a9c3518c5cdb7ff102cb0c
e8099e126a9f7ed6811449f8440d61c5311c5e49
/Task/2_Volley_Recrate_Task/app/src/test/java/com/example/volleyrecratetask/ExampleUnitTest.java
dc4a2bfbebec2f0dd6137d843d5675e29011da40
[]
no_license
gr99/Angular_neebal_project
5f23f1b66ed473a38bfc4c99e793acc77ffe6564
fc02b4496e1f2888e3fb80b057c4917eb611378a
refs/heads/main
2023-09-05T16:23:15.551171
2021-11-14T20:33:29
2021-11-14T20:33:29
428,019,052
0
0
null
null
null
null
UTF-8
Java
false
false
390
java
package com.example.volleyrecratetask; 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 publ...
[ "noreply@github.com" ]
noreply@github.com
639489565cf040baa7b5bfaa0fb417730d7af004
addbc404a75281f8ad0d42889ffe507b72a2471e
/Day20190624/src/kr/co/bit/SeoulChina.java
9e947b6aded02bbaf3e1e46b254b6dcdb7c0409a
[]
no_license
yongje93/bitcamp
81df3b0d954e57752243ecc339ccb92447d71561
16f105c4cd6baa5b876291b2504338b6acfb2938
refs/heads/master
2020-06-07T17:57:26.427322
2019-10-05T12:27:31
2019-10-05T12:27:31
193,066,923
1
0
null
null
null
null
WINDOWS-1252
Java
false
false
533
java
package kr.co.bit; public class SeoulChina extends China { protected int jengban; // Àï¹ÝÂ¥Àå public SeoulChina() { super(); } public SeoulChina(int jajang, int jampong, int tang, int jengban) { super(jajang, jampong, tang); this.jengban = jengban; } public int getJengban() { return jen...
[ "48149636+yongje93@users.noreply.github.com" ]
48149636+yongje93@users.noreply.github.com
b1875fd722c5cbe089e04dfc7c4b53a97665547e
4694d36492acad39b6464d153e4d3d3ad47c5c57
/adcom/adcatal.lib/src/main/java/org/adorsys/adcatal/jpa/CatalArtFeatMapping.java
eed7062de0f09a7e4cbad87130a00ca47eb4b617
[ "Apache-2.0" ]
permissive
francis-pouatcha/adcom
36ac7ff33eabb351be78b5555c61498b7bc3de6f
0e3ea1ce6c2045d31c7003fc87dbda533c09c767
refs/heads/master
2021-03-27T20:31:45.315016
2015-06-29T09:32:06
2015-06-29T09:32:06
28,821,594
0
0
null
null
null
null
UTF-8
Java
false
false
1,330
java
package org.adorsys.adcatal.jpa; import javax.persistence.Column; import javax.persistence.Entity; import javax.validation.constraints.NotNull; import org.adorsys.javaext.description.Description; import org.apache.commons.lang3.StringUtils; @Entity @Description("CatalArtFeatMapping_description") public class CatalAr...
[ "francis.pouatcha@adorsys.com" ]
francis.pouatcha@adorsys.com
877a983603a4de2e4b478a595594e8cbd7f47dfd
cd8843d24154202f92eaf7d6986d05a7266dea05
/saaf-base-5.0/3001_saaf-equotation-model/src/main/java/com/sie/watsons/base/pon/information/model/entities/readonly/EquPonQuotationAppReleEntity_HI_RO.java
4e1828cb72ea3f4525893828ee825155a5df21fd
[]
no_license
lingxiaoti/tta_system
fbc46c7efc4d408b08b0ebb58b55d2ad1450438f
b475293644bfabba9aeecfc5bd6353a87e8663eb
refs/heads/master
2023-03-02T04:24:42.081665
2021-02-07T06:48:02
2021-02-07T06:48:02
336,717,227
0
0
null
null
null
null
UTF-8
Java
false
false
4,654
java
package com.sie.watsons.base.pon.information.model.entities.readonly; import com.alibaba.fastjson.annotation.JSONField; import java.util.Date; /** * EquPonQuotationAppReleEntity_HI_RO Entity Object * Sun Oct 27 23:10:43 CST 2019 Auto Generate */ public class EquPonQuotationAppReleEntity_HI_RO { private Integ...
[ "huang491591@qq.com" ]
huang491591@qq.com
d6854a28bdac6e6a6d9cf1ee9311a5330ab85f9c
84a0db73b295f80c24d74ab2adc36f7f4c310be0
/src/main/java/uz/pdp/online/codingbatapi/payload/ExampleResult.java
ecbc0985764075cefc945a3a6376281ce613d914
[]
no_license
IbrokhimGitHub/codingbatapi
cc86f7116637368fe6edfcecc975a011e4f67c17
f32e061eb3ab686762fbddccf094a69122e43322
refs/heads/master
2023-06-30T06:19:30.195039
2021-08-09T08:32:12
2021-08-09T08:32:12
394,059,047
0
0
null
null
null
null
UTF-8
Java
false
false
368
java
package uz.pdp.online.codingbatapi.payload; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import uz.pdp.online.codingbatapi.entity.Category; import uz.pdp.online.codingbatapi.entity.Example; @AllArgsConstructor @NoArgsConstructor @Data public class ExampleResult { private ...
[ "i.irmukhamedov@gmail.com" ]
i.irmukhamedov@gmail.com
998102332b3238a420cd802bcb00dd39f8bcb6aa
fc4b13cc17d4452d2540b33a2d431ed8c4707221
/Inheritance.java
770b0072b3bd14ad06326449eff462d30dc51056
[]
no_license
Sumitsahil/CompetitiveProgramming
338c05a33caa0512411f736468ad84d8fb1c0f4a
105304d58983bb66710b2117c12a66080c4f6637
refs/heads/master
2020-03-11T01:25:38.739284
2018-04-16T09:48:32
2018-04-16T09:48:32
129,691,215
0
0
null
null
null
null
UTF-8
Java
false
false
2,028
java
package HackerRanks; import java.io.*; import java.util.*; class Person { protected String firstName; protected String lastName; protected int idNumber; // Constructor Person(String firstName, String lastName, int identification){ this.firstName = firstName; this.lastName = lastNam...
[ "noreply@github.com" ]
noreply@github.com
3400dc63f927421aeb755a2c4f6aa3a407cd837d
d2e1e4789b8d393dff7d3d679ab3203985cb0b2c
/relationships/students/src/main/java/com/patriciadelgado/students/Models/Dormitorio.java
465d11137c764cf953a655cf01ed49acf6464f6c
[]
no_license
pattsunade/relationships
56dee5e20f07c170e53146e4334c7312cfde09fa
9a4504887c14a3ae7e1c70ae612eb95660d03e62
refs/heads/master
2023-06-22T22:00:42.732226
2021-07-21T23:19:29
2021-07-21T23:19:29
388,270,014
0
0
null
null
null
null
UTF-8
Java
false
false
1,999
java
package com.patriciadelgado.students.Models; import java.util.Date; import java.util.List; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax...
[ "patricia.stylesh@gmail.com" ]
patricia.stylesh@gmail.com
786dd160ae8c387bf83464b69ed42da6e1a422dd
ee77f1049806458172bbadb1ffc72a8939e3c32b
/src/main/java/com/pk/email/MESSAGEXsend.java
d9e5d9329288cb3e0f6aa9d62e02d9d05da5ec07
[]
no_license
spcBackToLife/app-server
a640ce9a6fca7b4a1b704474a4fc7400f0ab6a1d
0a2bec704c9a1d4111b876745ad7b75658cc97e5
refs/heads/master
2020-03-10T16:57:10.985789
2018-04-14T06:17:16
2018-04-14T06:17:16
129,485,135
0
0
null
2018-04-14T05:56:26
2018-04-14T05:31:11
Java
UTF-8
Java
false
false
1,564
java
package com.pk.email; /** * A SenderWapper class as decoration class for user to send request by message. * User can set the basic information of request by included several methods. * Then,send the request data by a mode of message.By this pattern,user needn't * offer the message content and message signatu...
[ "pikun@cnpc.com.cn" ]
pikun@cnpc.com.cn
71fbde0a1cd7c3d9737f8af2ad6371d021aa4d58
9319c5bd38b8aaae3346ae5f480782b99c24b880
/backend/jpa-demo/src/main/java/cn/funeralobjects/demo/jpa/repository/CompanyRepository.java
7ced00fb3cbcec2ed12b5e7e8c67343df2e041f3
[]
no_license
jtiiii/demo
ec5d6e760e4f2162555675f9e3da18ef7b04b500
994919d44b472c4ba824ace665587bb5325a07fa
refs/heads/master
2022-11-18T15:03:27.739762
2020-05-19T02:05:59
2020-05-19T02:05:59
190,611,077
0
0
null
2022-11-16T00:59:32
2019-06-06T16:06:37
Java
UTF-8
Java
false
false
497
java
package cn.funeralobjects.demo.jpa.repository; import cn.funeralobjects.demo.jpa.entity.Company; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.JpaSpecificationExecutor; import java.util.Optional; /** * @author FuneralObjects * Create date: 2020/5/14 2:...
[ "874972403@qq.com" ]
874972403@qq.com
f5b12685f3422334f115c65358c65debac39a09f
e260920868af4141ae828dec9cc35959feeb4972
/src/registerOffice/management/GetByNameCondition.java
474f40f9b60cc385d541369d427cc19d2db45803
[]
no_license
lkwidzinski/RegistrationOfficeApp
c3bc6244164b6f4a1c08f000f155470592219174
598e1e6bc1b20882a13032d40b08706e5e25e493
refs/heads/master
2021-01-17T21:28:20.655519
2012-10-24T15:45:33
2012-10-24T15:45:33
null
0
0
null
null
null
null
UTF-8
Java
false
false
351
java
package registerOffice.management; import registerOffice.businessObjects.persons.Person; public class GetByNameCondition extends Condition<Person>{ private String name; public GetByNameCondition(String name) { this.name=name; } @Override protected boolean check(Person obj) { return obj.getName().equ...
[ "student@student-VirtualBox" ]
student@student-VirtualBox
a1526ad79f8cd74217ac825d14ef6f76db889228
63d82a3f98dcf0a9d9002940fa17ae84be642f0a
/app/src/main/java/com/rishabh/sorpluserend/HomePage/Model/SubCat_response.java
2ac06ead7d0cb250d882b6313d6736a1be6a1b64
[]
no_license
rishabh-997/SORPL-User-End
6052d7f493301c49abe4039e5bf2a27b49ebde1f
442c08814f8c5e5d8f348da6c576f6e3022cd626
refs/heads/master
2022-01-16T04:19:55.807761
2019-08-02T13:37:59
2019-08-02T13:37:59
192,492,070
0
0
null
null
null
null
UTF-8
Java
false
false
621
java
package com.rishabh.sorpluserend.HomePage.Model; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; import java.util.List; public class SubCat_response { @SerializedName("success") @Expose Boolean success; @SerializedName("message") @Expose String me...
[ "rishabh.agarwal997@gmail.com" ]
rishabh.agarwal997@gmail.com
a615145d0aea34ca3c5dc323b7a747b11f878acb
8af1164bac943cef64e41bae312223c3c0e38114
/results-java/JetBrains--intellij-community/5d539e6b5ef9e6419652f1567f986c399afbc53e/before/ArtifactEditor.java
00c374cdd6cc1a1082d728181fcf289cfe70d9e7
[]
no_license
fracz/refactor-extractor
3ae45c97cc63f26d5cb8b92003b12f74cc9973a9
dd5e82bfcc376e74a99e18c2bf54c95676914272
refs/heads/master
2021-01-19T06:50:08.211003
2018-11-30T13:00:57
2018-11-30T13:00:57
87,353,478
0
0
null
null
null
null
UTF-8
Java
false
false
1,164
java
/* * Copyright 2000-2009 JetBrains s.r.o. * * 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 agre...
[ "fraczwojciech@gmail.com" ]
fraczwojciech@gmail.com
db34b8acbf2444cc18b005491e9fa8869b11adce
36c42bc79c5d7e8e053c5561726bffc522b9313f
/game caro/Source/ServerCaro/src/servercaro/ServerCaro.java
b32c03a0ced1583f9cf0a98dd6e28445bcc0c358
[]
no_license
haroro1699/Network-programming---CaroGame
3ad8a1500b8b370fdb239ceb02f831e73f149c67
58863b82bec195d6adc15b9a249b178019e74f38
refs/heads/master
2021-05-16T20:34:18.373328
2020-03-27T06:46:13
2020-03-27T06:46:13
250,459,667
0
0
null
null
null
null
UTF-8
Java
false
false
1,060
java
package servercaro; import java.io.IOException; import java.net.ServerSocket; import java.util.ArrayList; import java.util.Vector; public class ServerCaro { /** * @param args the command line arguments */ static int port = 5000; public static void main(String[] args) { //...
[ "noreply@github.com" ]
noreply@github.com
a5c1e62eb671868c93c9dc2e79d70ce29bf9510b
ccf60004d12b87fdb20749fcdc5ba6af02ee5958
/app/src/main/java/com/example/randomimagerecyclerview/ItemActivity.java
0d8917a3312602efdfc7c6d9d0435a381f9b5c67
[]
no_license
german1um/RandomImageRecyclerView
ed8a22eef3890069f0526ad48809871f9aa69e15
69b19f55455357962c48434b8de19dce4b0d00d9
refs/heads/master
2020-05-14T21:44:05.196140
2019-05-15T15:54:36
2019-05-15T15:54:36
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,595
java
package com.example.randomimagerecyclerview; import android.app.Activity; import android.os.Bundle; import android.support.annotation.Nullable; import android.widget.ImageView; import android.widget.TextView; import com.example.randomimagerecyclerview.model.Post; import com.example.randomimagerecyclerview.network.JSO...
[ "german_abramov@epam.com" ]
german_abramov@epam.com
5daa5bc04a2c94c1293e07794c904e3c8661e7e3
dc0878293dc30c3fe3680cb8562f262629b94759
/spring-cloud-alibaba-sentinel/src/main/java/org/springframework/cloud/alibaba/sentinel/custom/SentinelCircuitBreakerConfiguration.java
f8d610348da0446dca1278c816ca08b588c428a8
[ "Apache-2.0" ]
permissive
tangjian9015/spring-cloud-alibaba
f55338242d1d26ae5f350d8bb93355b0abf72527
97463ddc0bab26db21b581782c06c26b2c38301d
refs/heads/master
2020-04-24T17:48:55.012236
2019-04-27T04:38:42
2019-04-27T04:38:42
172,159,874
1
0
Apache-2.0
2019-04-27T04:38:43
2019-02-23T02:04:23
Java
UTF-8
Java
false
false
270
java
package org.springframework.cloud.alibaba.sentinel.custom; import org.springframework.context.annotation.Configuration; /** * @author lengleng * <p> * support @EnableCircuitBreaker ,Do nothing */ @Configuration public class SentinelCircuitBreakerConfiguration { }
[ "wangiegie@gmail.com" ]
wangiegie@gmail.com
51bca85294ebaeb8d21335a43f20479aba78b0ec
a76173ed4bf17a215c84113edfdefd4005f49b90
/src/main/java/uk/gov/legislation/namespaces/metadata/ConfersPower.java
d9f803c93d46d2e9b06f7dc1ecebbd1548a90ec0
[ "MIT" ]
permissive
AleksiAleksiev/java-legislation-gov-uk-library
160f4de29174ab9417e6083eea20a8d1e4bdfb8b
9cb3eaad6a3847060ea781c74b6260f025309cc4
refs/heads/master
2021-05-30T04:50:40.081714
2016-01-13T12:36:52
2016-01-13T12:36:52
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,210
java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2015.08.07 at 06:17...
[ "m.f.a.trompper@uva.nl" ]
m.f.a.trompper@uva.nl
7cc9d374d6201f056f6eb3dd558139917eda7df1
a6ceb4c8447371151d2e41f865615d1868d3b1c5
/src/main/java/com/yuditsky/xmlparsing/builder/FlowerParam.java
8e0de41544cc9a76f8d888515a0be023173728e3
[]
no_license
VladislavYuditsky/JWD-XML-Parsing
c36c60d288e470f522437f6c309375aacc81efea
50c1a088e7d01319342fb743a9f30b969918db30
refs/heads/master
2022-10-24T09:48:43.585983
2019-12-24T11:52:17
2019-12-24T11:52:17
229,144,233
0
0
null
2022-10-05T19:40:13
2019-12-19T21:49:38
Java
UTF-8
Java
false
false
652
java
package com.yuditsky.xmlparsing.builder; public enum FlowerParam { FLOWER("flower"), ID("id"), SPECIES("species"), CLASS("class"), FAMILY("family"), GROWING_TIPC("growing_tipc"), VISUAL_PARAM("visual_param"), SOIL("soil"), ORIGIN("origin"), TEMPERATURE("temperature"), PHOTOP...
[ "48886204+JFreshek@users.noreply.github.com" ]
48886204+JFreshek@users.noreply.github.com
acfdd36b50bba034fedfef461cf054f7a2abcbd1
25baed098f88fc0fa22d051ccc8027aa1834a52b
/src/main/java/com/ljh/daoMz/MrmbaseMzDictMapper.java
43646823e39df97eea56a2d3514eb062ad2122e7
[]
no_license
woai555/ljh
a5015444082f2f39d58fb3e38260a6d61a89af9f
17cf8f4415c9ae7d9fedae46cd9e9d0d3ce536f9
refs/heads/master
2022-07-11T06:52:07.620091
2022-01-05T06:51:27
2022-01-05T06:51:27
132,585,637
0
0
null
2022-06-17T03:29:19
2018-05-08T09:25:32
Java
UTF-8
Java
false
false
299
java
package com.ljh.daoMz; import com.ljh.bean.MrmbaseMzDict; import com.baomidou.mybatisplus.core.mapper.BaseMapper; /** * <p> * 门急诊病历首页字典 Mapper 接口 * </p> * * @author ljh * @since 2020-10-26 */ public interface MrmbaseMzDictMapper extends BaseMapper<MrmbaseMzDict> { }
[ "37681193+woai555@users.noreply.github.com" ]
37681193+woai555@users.noreply.github.com
a5898611aef56350e4e8a33597776fd89910b640
139af6571416192fd36f9c9885a4c9b54792d8c6
/EmpiricalAnalyses/VM/Mutants/VM103.java
f9b07e4acbbbfe1da3e73e701cd8639d0b4caa30
[]
no_license
NatCPN/TransformRules
6f60c368498f58e85aa25437939b5da3b5d39ce3
eaa64c8dc43b75c1ea9e1588398ac3982a6962d7
refs/heads/master
2020-12-24T06:47:04.156901
2018-03-15T16:16:01
2018-03-15T16:16:01
73,331,665
0
0
null
null
null
null
UTF-8
Java
false
false
2,124
java
// This is mutant program. // Author : ysma public class VM103 { public int the_system_mode = 1; public int the_coffee_machine_output = 0; public float the_request_timer = 0; public int primed_the_system_mode = 1; public int primed_the_coffee_machine_output = 0; public float primed_the_...
[ "noreply@github.com" ]
noreply@github.com
762469d53b2f309ddeb294d897c16ab4baca42b0
00ffb18493d367934145937d0733eb385e3a8ebe
/src/AggregateMain.java
238c1ebe0efba21dca50c9c2865a4665bd744ac1
[]
no_license
Razawalla/Aggregation
adda5ff6f8e2067162a6383a523ca3fb2dca053f
c43a944e1a77bda8f7f93ec4de56ef63275412ad
refs/heads/master
2020-04-14T05:14:14.619849
2015-08-17T17:44:50
2015-08-17T17:44:50
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,838
java
import java.awt.Container; import java.awt.Dimension; import java.awt.FlowLayout; import java.awt.Toolkit; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.SwingUtilities; public class Aggregat...
[ "bkrishna.9572@gmail.com" ]
bkrishna.9572@gmail.com
ae09a6078bc9c67eb4ac9f534b592ab10f6b65f9
cefb48f6b07b96498ec819ccab61b6da982629e3
/app/src/main/java/com/lxy/shop/ui/home/fragment/HomeFragment.java
c7dbb17c92b451c721aa6502e44a884bec6ed29b
[]
no_license
lxykad/init_project
e4a77bf15706e5a6b8f5e39aa53928dd1440551e
f71aa90aaa8cf5375241754d5dcfec339b8ee74c
refs/heads/master
2021-01-22T04:54:15.575602
2017-09-05T10:11:39
2017-09-05T10:11:39
102,273,543
1
0
null
null
null
null
UTF-8
Java
false
false
2,598
java
package com.lxy.shop.ui.home.fragment; import android.support.v7.widget.LinearLayoutManager; import android.view.View; import android.widget.Toast; import com.chad.library.adapter.base.BaseQuickAdapter; import com.lxy.shop.R; import com.lxy.shop.common.base.BaseMainFragment; import com.lxy.shop.databinding.FragmentRe...
[ "503215875@qq.com" ]
503215875@qq.com
d72af2eb5fd11f1019202e16b2bf2326d406ab7d
e7054e454113bd36e266a7885665933b491e2d6d
/app/src/main/java/com/example/dima/news/Interface/ItemClickListener.java
77b3e787838eccbea9f43817f7805573748770e5
[]
no_license
snuyp/news
0b793c766425c920026718d3f5cd9de51def4b38
fa3d802208e676d06b3693ea2dc6c55f4f8ed9db
refs/heads/master
2020-03-09T11:06:09.695905
2018-10-17T10:44:09
2018-10-17T10:44:09
128,753,245
0
0
null
null
null
null
UTF-8
Java
false
false
215
java
package com.example.dima.news.Interface; import android.view.View; /** * Created by Dima on 30.03.2018. */ public interface ItemClickListener { void onClick(View view, int position, boolean isLongClick); }
[ "snuyp@yandex,ru" ]
snuyp@yandex,ru
ea5de810a545148909b477b8ade1a1fa5a14ea10
07340106677a74b3bfe31559a3aa25431f985bca
/src/main/java/com/users/persistence/model/Phone.java
98614586c09563ccdc94cd6bd182caf99cc39072
[]
no_license
Juanma1693/users
f4c79d620ef4d6e529d08ab712d8847d46f55751
41416b0171cf8c02c4e3521bb3648ba641167bef
refs/heads/master
2022-12-20T14:35:45.783973
2020-10-09T23:00:28
2020-10-09T23:00:28
302,770,076
0
0
null
null
null
null
UTF-8
Java
false
false
2,033
java
package com.users.persistence.model; import java.util.UUID; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.Table; import org.hibernate.annotations.NotFound; import org.hib...
[ "jbecerra@azurian.com" ]
jbecerra@azurian.com
d1c575dcd487f5b9f76ca8d4c5cdc224f52e2ae6
2f1fc006015aa533b14be4318f98acbee67c2677
/ssi_workspace/android-binding-read-only/tags/v0.52/AndroidBinding/src/gueei/binding/viewAttributes/view/KeyEventResult.java
69d2c69dbd567fd2d0274aa0b04be8366cca8f81
[]
no_license
DevasenaInupakutika/Soton_Workspace
39b3bdb6891a12c5530a10be9029dba0cb5b4404
0a91d8fd10764ef9ff0b35ff7f9236b06b91ca1f
refs/heads/master
2021-01-21T22:29:37.508840
2014-12-19T10:37:59
2014-12-19T10:37:59
14,229,943
1
0
null
null
null
null
UTF-8
Java
false
false
118
java
package gueei.binding.viewAttributes.view; public class KeyEventResult { public boolean eventConsumed = false; }
[ "devasena.prasad@gmail.com" ]
devasena.prasad@gmail.com
c801ab700a8e5919798662d639e24d934f89baef
c1f56ce575293026b2299c79cbe6582005ffc079
/src/osdirectory/src/main/java/server/id/sync/server/FileSyncService.java
de8f3a3af882eaa0c9e44d40307d509ca71f87ea
[]
no_license
kautilya/Directory-Synchronization-Engine
b92f8d78354fa8931feb0364c49fd4e3b3d955f6
6a7aa500cfc8efb6e27916053e7af63beac75d8e
refs/heads/master
2021-01-24T00:32:36.533871
2011-07-15T22:10:49
2011-07-15T22:10:49
2,064,454
0
0
null
null
null
null
UTF-8
Java
false
false
6,728
java
/**********************BEGIN LICENSE BLOCK************************************** * Version: MPL 1.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the Lice...
[ "dseadmin@mountainhut.net" ]
dseadmin@mountainhut.net
16657e02c6a01462455684f46a37800f5df39a16
fbc78e1ef17e6c0740d96e7b1c47fed034a7c096
/src/main/java/uk/co/novamc/novacore/tasks/IChestAbsorb.java
760d069014fe2959ebfa54ce3cd62b9bd9ecf73a
[]
no_license
NovaMinecraft/NovaCore
61e435f0c73ecc2d04ea1c562ae3faea7f56391b
fd884a7de4c7cd85addf29dc16e21ba180dd0c84
refs/heads/master
2022-11-28T11:44:06.164388
2020-08-09T13:31:19
2020-08-09T13:31:19
273,109,395
0
0
null
null
null
null
UTF-8
Java
false
false
2,997
java
package uk.co.novamc.novacore.tasks; import org.bukkit.Bukkit; import org.bukkit.block.Block; import org.bukkit.configuration.ConfigurationSection; import org.bukkit.entity.Entity; import org.bukkit.entity.Item; import org.bukkit.inventory.ItemStack; import org.bukkit.scheduler.BukkitRunnable; import org.slf4j.Logger;...
[ "clashmonster123@gmail.com" ]
clashmonster123@gmail.com
443063b39fafa39af293635eda2b0a3c59e19c4f
8a2116e41e01d2330b363f2f74cdda6fc88b12c8
/sj-student-manager/src/main/java/com/sj/oa/project/service/ACT/hiprocInst/IActHiProcinstService.java
bb5b55d9d78628d0a79d113ddd992aa8ce7d4452
[]
no_license
georgegao2019/sj-student-manager
49466d933d7e137c52aed895b24762d61812fcd1
38b74484e2579dda9f5577681bfa5a0ebc434d05
refs/heads/master
2022-12-13T16:10:45.560375
2019-10-17T07:28:54
2019-10-17T07:28:54
215,984,695
0
0
null
2022-10-12T20:32:55
2019-10-18T09:06:39
JavaScript
UTF-8
Java
false
false
824
java
package com.sj.oa.project.service.ACT.hiprocInst; import com.sj.oa.project.po.ActHiProcinst; import java.util.List; /** * @author 永健 */ public interface IActHiProcinstService{ /** * @ 描述 批量删除 * @ param id * @date 2018/9/23 11:59 */ int deleteByPrimaryKeys(String[] id); /** * @...
[ "qduprog@qq.com" ]
qduprog@qq.com
f144611fe170ab6c3b2cfb2ad512fc452c963204
c9a1c7eb50ac038459dc8b5933b1382d0640c3cf
/NewDsProject/src/QueryReturn.java
01e9f0bc76d9a94df0bb5e6fb7f30a003bcb06f7
[]
no_license
DSProjectTeam/New-Distributed-System-Project-2
d60cb5003fe1b7d7d11432016ad598f8d9a0ce9c
678fad0d0b3d505051510cc41fdc48415d7fd0d4
refs/heads/master
2021-01-20T06:35:45.909349
2017-07-01T14:56:36
2017-07-01T14:56:36
89,897,696
3
1
null
2017-05-27T04:20:31
2017-05-01T04:39:54
Java
UTF-8
Java
false
false
691
java
import java.io.BufferedWriter; import java.util.ArrayList; import org.json.JSONArray; import org.json.simple.JSONObject; /** * This class defines the query outcome without the relay operation. * */ public class QueryReturn { Boolean hasMatch; ArrayList<JSONObject> returnList = new ArrayList<>(); ...
[ "ruanzizhe@live.com" ]
ruanzizhe@live.com
f5053cda3466c05ec1d548d055ba079378b5715b
f9453fc1bae165315a5b4f6df471969d5446e5c4
/firstjason/src/main/java/hu/firstjason/controllers/PersonController.java
c7f389f2b40f540f93fe9ee0bda6de102a97115a
[]
no_license
hurig/IdeaProjects
0568151b7463689b6295176d2b677e0a2ed07b9c
6c09319e4e3169a34acdbb080764442271eae221
refs/heads/main
2023-08-18T11:59:41.993447
2021-10-22T06:12:30
2021-10-22T06:12:30
null
0
0
null
null
null
null
UTF-8
Java
false
false
822
java
package hu.firstjason.controllers; import hu.firstjason.domain.Pen; import hu.firstjason.domain.Person; import hu.firstjason.services.Service; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMappin...
[ "noreply@github.com" ]
noreply@github.com
21873ae36bcb117ec2fd1771911a41b701d32353
a41124812bd0e040176119f2a2d410be8e73bfab
/app/src/main/java/com/example/androidremark/ui/recycler/LineItemDecoration.java
b39a7146e71f7679a4f896dae81a707ef0e589d2
[]
no_license
caobin821651400/Study
3e8a548890e2841363dbe2c051046f8830d08568
c997046aa88b435902332b76dc1ba0a3fc62d7db
refs/heads/master
2021-04-12T04:24:26.945134
2020-11-29T08:13:31
2020-11-29T08:13:31
125,950,448
30
11
null
null
null
null
UTF-8
Java
false
false
1,960
java
package com.example.androidremark.ui.recycler; import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.Rect; import android.support.v7.widget.RecyclerView; import android.view.View; import com.example.androidremark.utils.MyU...
[ "12345678" ]
12345678
913ed0ec16bfde83809d461ad82f36671e5385a7
94f0d2df8f777071d1b6e84c4ab1f809eb801e2a
/javademospringmvc/src/main/java/com/example/javademospringmvc/JavademospringmvcApplication.java
b87c95c7287941f7188e35807c6c1882a2c94bdd
[]
no_license
quang10a10hda9x9o/sdfdsf
13b5a4b76fb9d2007308be2c48c2a939fcfa3fca
368b6caa2f962bffc60937baddc2fede216b2f31
refs/heads/master
2021-01-04T16:31:42.163474
2020-02-15T03:16:09
2020-02-15T03:16:09
240,637,363
0
0
null
null
null
null
UTF-8
Java
false
false
356
java
package com.example.javademospringmvc; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class JavademospringmvcApplication { public static void main(String[] args) { SpringApplication.run(Javademospringmv...
[ "=" ]
=
07afa49a53de641505f53a2e9b928d8b4794fa61
2c5f438bbc299456fb58de913292a2c9fe1ad326
/src/com/briup/estore/dao/ILineDao.java
925eaddc421284e39c0673a67d430824a11c5a07
[]
no_license
walleljj/estore
e4958208bd40b086dc3d00a1938953ea61e290c8
b89eaf53ff064690eb219974e8f0fe06d9f1d690
refs/heads/master
2020-04-20T04:52:36.180432
2019-02-01T04:13:31
2019-02-01T04:13:31
168,640,798
0
1
null
null
null
null
UTF-8
Java
false
false
577
java
package com.briup.estore.dao; import java.util.List; import com.briup.estore.bean.Line; /** * 订单项操作 * @author 绘梦 * @date 2018年7月25日 上午10:15:41 */ public interface ILineDao { /** * 数据库中添加订单项 * @param line * @param id */ public void savaLine(Line line,long id); /** * 从数据库中通过order删除订单项 * @param order...
[ "lijunjiee@163.com" ]
lijunjiee@163.com
8e98901f6f72db66bda59c09d7301922c3129ae3
df2508ec5fc42307ba305a3fea0fc575cb6db1d6
/src/main/java/com/ttn/question4/Application.java
20f32334b1253d4f9be4bd16f9beba50f4baf558
[]
no_license
Amarjeet-Malik011/hibernate_basics
de9a4f30dd5c8c9725f755e22d7a8b71d5532792
c5e095e23aaa26c31665d6b0fb9038cc063d5d32
refs/heads/master
2020-04-29T21:54:55.051855
2019-03-28T03:25:02
2019-03-28T03:25:02
176,429,373
0
0
null
2019-03-19T05:15:58
2019-03-19T05:15:58
null
UTF-8
Java
false
false
1,432
java
package com.ttn.question4; import com.ttn.entity.Author; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; import java.util.Date; public class Application { public static void main(String[] args) { /*Address address1=new Address(23,"vinod","delhi")...
[ "ch.amarjeetmalik@gmail.com" ]
ch.amarjeetmalik@gmail.com
15a2113e5754c42585a425c3555c2444195e4053
e1dbbd1c0289059bcc7426e30ab41c88221eff11
/modules/cae/contentbeans/src/main/java/com/coremedia/blueprint/common/util/Flatless.java
bed3de00d8b1b532bb94af7342cf69f490dc4d6c
[]
no_license
HongBitgrip/blueprint
9ed278a8df33dbe7ec2de7489592f704e408d897
14c4de20defd2918817f91174bdbdcc0b9541e2d
refs/heads/master
2020-03-25T23:15:24.580400
2018-08-17T14:44:43
2018-08-17T14:44:43
144,267,625
0
0
null
null
null
null
UTF-8
Java
false
false
244
java
package com.coremedia.blueprint.common.util; /** * Marker interface to be applied to all {@link com.coremedia.blueprint.common.layout.Container}s * that should not be flattened by {@link ContainerFlattener} */ public interface Flatless { }
[ "hong.nguyen@bitgrip.de" ]
hong.nguyen@bitgrip.de
edcc44df45251f9b22da7c73883e7b4b3db61fdb
81719679e3d5945def9b7f3a6f638ee274f5d770
/aws-java-sdk-config/src/main/java/com/amazonaws/services/config/model/OversizedConfigurationItemException.java
558a9933f0e88c865666d29e93be9492c3f2800d
[ "Apache-2.0" ]
permissive
ZeevHayat1/aws-sdk-java
1e3351f2d3f44608fbd3ff987630b320b98dc55c
bd1a89e53384095bea869a4ea064ef0cf6ed7588
refs/heads/master
2022-04-10T14:18:43.276970
2020-03-07T12:15:44
2020-03-07T12:15:44
172,681,373
1
0
Apache-2.0
2019-02-26T09:36:47
2019-02-26T09:36:47
null
UTF-8
Java
false
false
1,260
java
/* * Copyright 2014-2019 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...
[ "" ]
e47c1c4edf3070694d608921f4441b4281211539
fafd731284e687702ef38906477ba035a17ddde4
/courses/multi-threading/Thread1/src/com/agility/thread4/Main.java
3f83899489ed40b2634068bc63e9eebde4ce6bbb
[]
no_license
danhnguyen-agilityio/spring-boot
3d358f9b15b48609fca8624be56927f119253e7c
b55da182a2f6d9950d06489c8233920fdd2ca268
refs/heads/feature/apache-maven
2022-06-23T19:18:25.040092
2019-12-23T08:04:09
2019-12-23T08:04:09
229,703,200
1
1
null
2022-06-21T02:30:17
2019-12-23T07:48:11
Java
UTF-8
Java
false
false
2,227
java
package com.agility.thread4; import java.util.ArrayList; import java.util.List; import java.util.Random; public class Main { private Random random = new Random(); private Object lock1 = new Object(); private Object lock2 = new Object(); private List<Integer> list1 = new ArrayList<>(); private L...
[ "danh.nguyen@asnet.com.vn" ]
danh.nguyen@asnet.com.vn
dc919c6788312148bc840f432c903394494a2e37
0af8b92686a58eb0b64e319b22411432aca7a8f3
/large-multiproject/project86/src/test/java/org/gradle/test/performance86_2/Test86_135.java
db75360dbf93bcbbb07f490b7457c5e64428433e
[]
no_license
gradle/performance-comparisons
b0d38db37c326e0ce271abebdb3c91769b860799
e53dc7182fafcf9fedf07920cbbea8b40ee4eef4
refs/heads/master
2023-08-14T19:24:39.164276
2022-11-24T05:18:33
2022-11-24T05:18:33
80,121,268
17
15
null
2022-09-30T08:04:35
2017-01-26T14:25:33
null
UTF-8
Java
false
false
292
java
package org.gradle.test.performance86_2; import static org.junit.Assert.*; public class Test86_135 { private final Production86_135 production = new Production86_135("value"); @org.junit.Test public void test() { assertEquals(production.getProperty(), "value"); } }
[ "cedric.champeau@gmail.com" ]
cedric.champeau@gmail.com
f21ae13f803e8309da56daafe9ca2dfa724428f3
e27ce3ed42a5f851f52d1effe06a9211ecc84966
/app/src/main/java/com/example/tarasantoshchuk/translator/activity/StaticticInfoActivity.java
5be1bcb9b3beaf15c72a98300816e2e0fc559775
[]
no_license
tarasantoshchuk/Translator
b11ab73baebd30a4f83922baecce6dd3918560db
ce5b6a354d4a0b9fc2266594b8adf03ea1f4ea15
refs/heads/master
2021-01-19T09:41:51.244174
2015-07-21T11:24:19
2015-07-21T11:24:19
39,000,336
0
0
null
null
null
null
UTF-8
Java
false
false
2,308
java
package com.example.tarasantoshchuk.translator.activity; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; import com.example.tarasantoshchuk.translator.R; import com.example.tarasantoshchuk.translator.history.statistics.Stat...
[ "taras.antoshchuk1@gmail.com" ]
taras.antoshchuk1@gmail.com
1864a39c1e1f79b82d284e0e93edc161897f5215
42a4a68be4a9f464c36d2839e52ae83a9d63665c
/SpringBOOT/zookeeperdubbo/dubboxtest/DubboxServer/src/main/java/com/qf/dubbox/TestServiceImpl.java
2b5061d2cf2ea782b59304c7b2f07414eb7b254c
[]
no_license
qfwj/spring
da5336914ff440261075770619b36afb735caa92
b8a84d0948fc1c87e3229c139410f316ca311fbe
refs/heads/master
2022-10-19T21:45:34.684860
2019-11-03T09:20:43
2019-11-03T09:20:43
96,909,545
0
0
null
2022-10-05T18:39:17
2017-07-11T15:39:18
Java
UTF-8
Java
false
false
411
java
/** * Copyright(c) 2013-2017 by ZhBo Inc. * All Rights Reserved */ package com.qf.dubbox; /** * @ClassName: TestServiceImpl * @Description: * @author: zhbo * @date: 2017/8/5 12:21 * @Copyright: 2017 . All rights reserved. */ public class TestServiceImpl implements TestService { public String testHello(St...
[ "13554254100@163.com" ]
13554254100@163.com
e6fe7f07925485255f47bf12afd8f707d90a125f
d272a5137c938ccc4c8bd4d97146f285af8b9254
/Constructor/Main.java
deac24d884990b2aca3271c780d90584d3fe2d2f
[]
no_license
MohamedKerkeb/tutoBroCode
3aab9c74165b2693afbf39c99e7d4a5b48b4d553
45a89455b037a938a44b8206c58d286592b83d0f
refs/heads/master
2023-07-18T23:46:21.744477
2021-09-23T15:16:22
2021-09-23T15:16:22
409,641,214
0
0
null
null
null
null
UTF-8
Java
false
false
386
java
package Constructor; public class Main { public static void main(String[] args) { // * constructor = special method that is called when an object is instantiated (created) Human human1 = new Human("Abdou", 36, 90); Human human2 = new Human("Adam", 10, 25); //System.out.println(hu...
[ "kerkeb.moha@gmail.com" ]
kerkeb.moha@gmail.com
c492669ee7293b22e88dac0f531429e0e371b410
e579172e56ba490edce2697f34ad41c191c1a177
/cargo-order/src/main/java/com/cargo/waybill/entity/WaybillEntity.java
9163caa3ac285d9ee07e03e6c8c9e1e4a2e4893b
[]
no_license
sdajava/xinya-cargo
82a5aa3f148bade6494eb3fd426bbb339856a57f
ba8e9731441d45b5be273c7e7309d3f7cdb2337e
refs/heads/main
2023-01-23T00:06:25.332976
2020-11-25T02:14:49
2020-11-25T02:14:49
null
0
0
null
null
null
null
UTF-8
Java
false
false
10,304
java
package com.cargo.waybill.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import com.commom.supper.BaseEntity; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAnd...
[ "yanglei-xya@xsungroup.cn" ]
yanglei-xya@xsungroup.cn
7165881fbe9cc68fa20b3d5c8f0e75a60220ab87
24df70ca36882a74562c48b857bc014a38a84980
/src/com/syntax/class27/ArrayListAndIterator.java
96f0364c06d56e6dd79e50027da3c420bd2882dd
[]
no_license
ismailyurtdakal/JavaBasics
1f657da6e97d8d30b7687fb4fb0e39d626961f2b
790ed664c9534aee11f33678b088c71a0f7a4fc0
refs/heads/master
2021-04-03T14:42:15.039468
2020-04-26T15:37:27
2020-04-26T15:37:27
248,367,747
0
0
null
null
null
null
UTF-8
Java
false
false
1,158
java
package com.syntax.class27; import java.util.ArrayList; import java.util.Iterator; public class ArrayListAndIterator { public static void main(String[] args) { //let's create an ArrayList of chocolate ArrayList<String> choco=new ArrayList<>(); choco.add("kinder"); choco.add("godiva"); choco.add("kit...
[ "ismail94@yahoo.com" ]
ismail94@yahoo.com
3d744e43e305152c71c972f766aa2c3cf32cf0e9
2fd6b2e8888cf78ab3940793c00771c791abcab9
/drug_orderweb/src/main/java/com/jk/service/impl/OssServiceImpl.java
427541207ed512f15a9a21f19a5b3c6d6d887e23
[]
no_license
xiayuliao11/drug
f0c490102042d12dfca8c6122b8b8b09798e1e28
64ecad863917ea173878a104f9763c2655df73ac
refs/heads/master
2020-04-27T15:51:20.071410
2019-03-23T07:15:24
2019-03-23T07:15:24
174,263,586
0
0
null
null
null
null
UTF-8
Java
false
false
719
java
package com.jk.service.impl; import com.jk.utils.OSSClientUtil; import com.jk.service.IOssService; import org.springframework.stereotype.Service; import org.springframework.web.multipart.MultipartFile; import java.io.IOException; @Service public class OssServiceImpl implements IOssService { public String uploa...
[ "1969321229@qq.com" ]
1969321229@qq.com
b453e7464a92e1383599f8fe44e49242e4eaff11
e3d40e994a7d5456f470f11e8ccaeb911f7a51ed
/src/main/java/edu/swufe/nxksecdisk/server/controller/ErrorController.java
d24bb59407a3be7281db5b21c0f7a1478adfd1ec
[]
no_license
loongyowl/NxkSecDisk
9259db6794e0f7c128a62462b3e01fa9a4750819
ee4c68002af4d024abdcfb814cb9b5ecdc010760
refs/heads/master
2023-04-18T20:01:18.186586
2021-05-01T07:28:38
2021-05-01T07:28:38
463,920,702
1
0
null
null
null
null
UTF-8
Java
false
false
911
java
package edu.swufe.nxksecdisk.server.controller; import edu.swufe.nxksecdisk.server.util.FileBlockUtil; import edu.swufe.nxksecdisk.server.util.LogUtil; import edu.swufe.nxksecdisk.system.AppSystem; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.Exception...
[ "hlrongzun@qq.com" ]
hlrongzun@qq.com
29cf6ec5f26afb2769b3dcc25edc27f9d6c46fe1
de752b1dab1d9ed20c44e30ffa1ff887b868d2b0
/ac/auth-center-resource-starter/src/main/java/com/gapache/security/holder/InheritableThreadLocalAccessCardHolderStrategy.java
ac17d48f340e63c4558bf820d7c918782135a59f
[]
no_license
KeKeKuKi/IACAA30
33fc99ba3f1343240fe3fafe82bee01339273b80
6f3f6091b2ca6dd92f22b1697c0fbfc7b9b7d371
refs/heads/main
2023-04-07T21:18:49.105964
2021-04-08T08:41:57
2021-04-08T08:41:57
352,832,814
3
0
null
null
null
null
UTF-8
Java
false
false
1,072
java
package com.gapache.security.holder; import com.gapache.security.interfaces.AccessCardHolderStrategy; import com.gapache.security.model.AccessCard; import org.springframework.util.Assert; /** * @author HuSen * @since 2020/8/9 6:18 下午 */ public class InheritableThreadLocalAccessCardHolderStrategy implements AccessC...
[ "2669918628@qq.com" ]
2669918628@qq.com
4a58a8cd16d29203440225335d32e63106ff02f4
e4c87fe23d5fe9122a8680b707bb38ed7578b304
/Leetcode/merge_k_sorted_lists.java
938339d3d2f62f5aa7b37ca8721bbecb9c1ca2c2
[]
no_license
pakmar1/Interview-preperation
ed6853e0488fe8d07c753a4282dab7768191ff0f
a21c6cca811dfe12d87ce5a1d8e3d8fb19147a32
refs/heads/master
2020-04-03T04:30:15.667271
2019-04-23T20:10:52
2019-04-23T20:10:52
155,015,933
1
0
null
null
null
null
UTF-8
Java
false
false
691
java
/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ class Solution { public ListNode mergeKLists(ListNode[] lists) { PriorityQueue<Integer> pq = new PriorityQueue<Integer>(); for(ListNode nod...
[ "noreply@github.com" ]
noreply@github.com
a6a9fc377860b62a4113195c622bf55c87edfe39
3580738c65a684315009c7bc5527d1518ca8d78c
/src/com/Isles/BuildSystem/Interpreter/InterfaceInterpreter.java
beaa7393db3f56f9ca98241d895c97d04b5596ca
[]
no_license
Florian233/Module-Builder
e7d7870df7a14704cd90df7b3d1a15eff7e992b8
a955d01985464f2d137e0c0fac5f119d0c236a34
refs/heads/master
2022-07-15T23:24:42.433713
2020-05-24T10:21:05
2020-05-24T10:21:05
266,512,267
0
0
null
null
null
null
UTF-8
Java
false
false
658
java
package com.Isles.BuildSystem.Interpreter; import com.Isles.BuildSystem.ApplicationCore.ICore; import com.Isles.BuildSystem.ApplicationCore.ITokenizer; /* * We don't need to do something here because the interface is set in the core by the verifier. * So we only need to skip the tokens. */ public class InterfaceI...
[ "florian.krebs92@web.de" ]
florian.krebs92@web.de
c9d5429ad5019d9e2e3a7beb82317464c852ef94
cdc4c07cc87c88ccca9585a40a3600ce92c5e147
/ssia-ch11-ex1-s2/src/main/java/uk/me/uohiro/ssia/authentication/providers/OtpAuthenticationProvider.java
041e2b43084e5b3aadec08b061afd4451c53f8b3
[]
no_license
osakanaya/Spring-Security-in-Action
ec587d617092747bb7f347161d3115bc6b14c3f3
968af23e16d7469216777c0924c259f6bbea716d
refs/heads/main
2023-03-14T12:52:55.367766
2021-03-08T14:01:57
2021-03-08T14:01:57
345,674,746
2
1
null
null
null
null
UTF-8
Java
false
false
1,309
java
package uk.me.uohiro.ssia.authentication.providers; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.authentication.AuthenticationProvider; import org.springframework.security.authentication.BadCredentialsException; import org.springframework.security.core.Authent...
[ "sashida@primagest.co.jp" ]
sashida@primagest.co.jp
37071da093aff587d7f9ee9014b3249e74b01649
a4514ba70adc744c41ea7c34e97e818564b903ec
/spring-mvc/src/main/java/com/yyb/springmvc/repository/impl/JdbcSpitterRepository.java
e97f41f42fc620cc25ec337fc4997ac629d9a7b4
[]
no_license
cfhy/spring-learn
a98d2ed6e4f23a692eae47b1b6f910e257d183b1
1889b7aee491573f65439369403c9742bd568299
refs/heads/master
2022-12-20T07:20:06.128008
2020-08-15T03:38:52
2020-08-15T03:38:52
195,353,217
0
0
null
2022-12-16T04:37:23
2019-07-05T06:40:27
Java
UTF-8
Java
false
false
4,084
java
package com.yyb.springmvc.repository.impl; import java.sql.ResultSet; import java.sql.SQLException; import java.util.HashMap; import java.util.List; import java.util.Map; import com.yyb.springmvc.model.Spitter; import com.yyb.springmvc.repository.SpitterRepository; import org.springframework.beans.factory.annotation....
[ "yongbin@yang.medcrab.com" ]
yongbin@yang.medcrab.com
469e606568a025de3952751e3daf5fa9c2d5b6f6
7aa6eefae99712dfa340da48f989ab923089d6c7
/vine/src/genomancer/vine/das2/client/modelimpl/Das2FeaturesQuery.java
3b355448a00cdbdb4d6ce3ebba64f0e028a038c2
[]
no_license
nathandunn/genomancer
707db30786b1fd481ce9b0ee26ae926a314d9f49
d4f1b84cf98ca8ffb2370dbc01330af46f3dc7e3
refs/heads/master
2020-07-17T23:06:56.775555
2015-03-13T03:46:52
2015-03-13T03:46:52
206,120,148
0
0
null
null
null
null
UTF-8
Java
false
false
3,013
java
package genomancer.vine.das2.client.modelimpl; import genomancer.trellis.das2.model.Das2LocationRefI; import java.net.URI; import java.util.ArrayList; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import genomancer.trellis.das2.model.Das2FeaturesQueryI; public class Das2FeaturesQuery ...
[ "ndunn@me.com" ]
ndunn@me.com
63ae6b463e672d43c8db24991fa1b62f221cab22
1f31582c2056b86b60b46dabf9888e4348603c98
/src/main/java/com/dgit/controller/MemberController.java
198dbfb10c023f64c44ff892b9fa6ce8beb14e4d
[]
no_license
rkdgus/poto
6386b80f9753daddf2c020818a00bb4c2a6b3a2d
6229a13866f486c80f783fd1941138bbeb86ff5d
refs/heads/master
2021-04-15T18:59:30.392899
2018-03-28T05:07:34
2018-03-28T05:07:34
126,410,567
0
0
null
null
null
null
UTF-8
Java
false
false
6,196
java
package com.dgit.controller; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.util.List; import javax.annotation.Resource; import javax.servlet.http.HttpSession; import org.apache.commons.io.IOUtils; import org.slf4j.Logger; import ...
[ "rkd7327@naver.com" ]
rkd7327@naver.com
1894ae617fa156bae6dc686d798d490da62d213b
0ee4e10041854f817e01d2b1fff25e037cbdc976
/orange/src/main/java/com/kcd/orange/WriteRead.java
295b26b16ff4bdd9f59c9e23bc01afa3068086a8
[]
no_license
kimchidong/ora
92741c2c074b4f3a9abacaca94039cbeb329eedb
f87851c132e37aa320e4c89fb30ef5def07b3e58
refs/heads/master
2016-08-04T21:14:46.781832
2014-09-22T00:33:19
2014-09-22T00:33:31
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,006
java
package com.kcd.orange; import java.io.FileInputStream; import java.io.FileOutputStream; import java.nio.ByteBuffer; import java.nio.channels.FileChannel; public class WriteRead { public static void main(String[] args) { try { String parentPath = "D:/file/"; String s = "Hello, World! 안녕?"; ...
[ "chidong2@naver.com" ]
chidong2@naver.com
764f573982f29730c6a19b6be0c1e237dac3f40f
f7d9e3c2c31acc023335331ca1cce940b1d054a3
/demo-base/src/main/java/utils/CommonUtils.java
93b8e5826b9c759174c9e9aa3952f9b8a0042bbd
[]
no_license
ht5678/yzh-learn
ed6fc6d1ef7497bcc44c18d0af3f017388da8521
c58ffe44b7b568c61164e1f9daf0ffea09ee3771
refs/heads/master
2023-02-25T12:09:04.037844
2022-08-23T16:19:21
2022-08-23T16:19:21
144,949,753
0
1
null
2023-02-22T02:43:39
2018-08-16T06:59:39
Java
UTF-8
Java
false
false
22,364
java
package utils; import java.awt.Container; import java.awt.Dimension; import java.awt.Graphics2D; import java.awt.Image; import java.awt.MediaTracker; import java.awt.Rectangle; import java.awt.RenderingHints; import java.awt.Robot; import java.awt.Toolkit; import java.awt.image.BufferedImage; import java.io.BufferedIn...
[ "sdwhyzhh@163.com" ]
sdwhyzhh@163.com
ede895d096cd6fecbc3bd5b90dc685dfa2e772b3
55075ad96008ad00c106d2299ad76cdd544e495b
/src/main/java/com/someapp/connection/ConnectionProvider.java
e8ef360352721d298612712041ab41d76fb8fb15
[]
no_license
matmazur/sample-app
fc5c30aebb0bec98880947ae75eec9bce5716e5d
b1a0fb91e95fe6c05ef9e822b512025403837394
refs/heads/master
2020-03-27T22:05:48.920660
2018-09-11T12:13:59
2018-09-11T12:13:59
147,203,990
0
0
null
null
null
null
UTF-8
Java
false
false
884
java
package com.someapp.connection; import javax.naming.Context; import javax.naming.InitialContext; import javax.naming.NamingException; import javax.sql.DataSource; import java.sql.Connection; import java.sql.SQLException; public class ConnectionProvider { private static DataSource dataSource; public static C...
[ "matmazur90@gmail.com" ]
matmazur90@gmail.com
7d06bca5ba82ecfc4f8b88025f26895c5b834ebc
0856a4316fe2692efd384236bb2e599d1d96800e
/app/src/main/java/com/physicomtech/kit/smartfarm/dialog/NotifyDialog.java
0ac5293875696d91b90d2742773504b7b31667c7
[]
no_license
PhysiComTech/PHYSIs_SmartFarm
a73fe47dbc0b962cb20b20543af634b82d7f261f
a7f317a78dde5691dd45debefead9f57317623e9
refs/heads/master
2023-01-28T23:56:14.448539
2020-12-11T08:17:48
2020-12-11T08:17:48
320,509,553
0
0
null
null
null
null
UTF-8
Java
false
false
1,327
java
package com.physicomtech.kit.smartfarm.dialog; import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface; import android.view.View; /** * Created by Heo on 2018-02-09. */ public class NotifyDialog { public void show(Context context, String title, String message, ...
[ "hsu.physi@gmail.com" ]
hsu.physi@gmail.com
96a56aa8cc61f526e20f014b07066ab7e7036d21
ab8545e4ecb92f154d449daa47fbfcdc2fc39681
/gradle/struts-student-app-/src/main/java/Library.java
aa84d298e46134797621e6d6db0ed472703b03f4
[]
no_license
ShivamLahane/Swabhav-Training
3a3ec4c75873b53b32f16c609f69f222470f00eb
a64360a57a353c554c7322db171ba8ae4e629c17
refs/heads/main
2023-07-02T21:50:39.940278
2021-08-09T06:18:20
2021-08-09T06:25:19
394,173,407
0
0
null
null
null
null
UTF-8
Java
false
false
290
java
/* * This Java source file was auto generated by running 'gradle buildInit --type java-library' * by 'Shivam' at '7/29/21 4:30 PM' with Gradle 3.0 * * @author Shivam, @date 7/29/21 4:30 PM */ public class Library { public boolean someLibraryMethod() { return true; } }
[ "lahaneshivam@gmail.com" ]
lahaneshivam@gmail.com
493d53b3290c0fc8bc99c484ae5c7f7208d82219
b5485e26f82dd4d4308fc0d88fd70ba38fe8af1d
/xml/impl/src/com/intellij/xml/actions/EscapeEntitiesAction.java
3c3cb45c73213725b5093fdcbd08b1c400e92fb2
[ "Apache-2.0" ]
permissive
TangHao1987/intellij-community
400ab5e4981b5f613ffe15216911ed9c2f651fb5
0422e22c287f9866f00dced2c35a125c36785169
refs/heads/master
2020-12-25T07:59:28.674771
2015-08-15T12:42:49
2015-08-15T12:42:49
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,846
java
/* * Copyright 2000-2015 JetBrains s.r.o. * * 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 agre...
[ "dennis.ushakov@gmail.com" ]
dennis.ushakov@gmail.com
b10c83851aa010c3341aa33847ca9dc5ee53cd6c
1dc0c2a904e646f742608fd31c7b70cd97a1407e
/test/src/main/java/com/less/test/db/HtmlDaoImpl.java
ab17693557ec60e9ce0185f52aeed97223c30f2f
[ "Apache-2.0" ]
permissive
coding-dream/TPlayer
c2005b6129858cf864b44a274d46112eacb7c805
5da42dfcd99c791e65d6a3745a8d5eafe835c979
refs/heads/master
2021-09-09T12:21:50.803834
2018-03-16T03:08:14
2018-03-16T03:08:14
99,775,039
5
1
null
null
null
null
UTF-8
Java
false
false
2,403
java
package com.less.test.db; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.util.Log; import com.less.test.bean.Html; import com.less.test.util.SQLHelper; import java.util.ArrayList; import java.util.List; /** * Created by de...
[ "352085768@qq.com" ]
352085768@qq.com
b8f687c84280dd5ba3d79ffd54c29f8206f96ba1
f584e18ac98fa621f65dbf14d184248b8dd2e6c2
/MyLearning/src/Pallindrome.java
45d7776688d88a232e1a4972f5b34e60eca967ef
[]
no_license
DasAparna/MyLearning
dc7dc768eca0fd077d0d3590b2bd6dc665f8e84d
eab6f1372cf1bcf533789071b60a425423bc0658
refs/heads/master
2020-03-17T04:23:34.597632
2018-05-13T21:06:12
2018-05-13T21:06:12
133,273,010
0
0
null
2018-05-13T21:06:13
2018-05-13T20:44:28
Java
UTF-8
Java
false
false
444
java
import java.util.ArrayList; import java.util.List; import java.util.Scanner; /* * Check if MOM is pallindrome or not */ public class Pallindrome { public static void main(String args[]){ String s; String rev =""; Scanner sc = new Scanner(System.in); System.out.println("Enter a string"); ...
[ "bj.crmforce@gmail.com" ]
bj.crmforce@gmail.com
d94c00d1c6281089c7ea7ec4e149bd641c28f268
09846b28652845833421e7555bfb07c0b76c2f71
/src/net/daum/dna/api/vo/cafe/CafeArticle.java
a179d74c53c84f1ba59c2cfcabb3509d0e24537d
[]
no_license
iolo/quickbread
6ffe2d0f3d663b5600974d807bf5e9d9a05d1bb5
9b068b3099325c3f0b6cc7c78146283985728139
refs/heads/master
2021-01-10T09:46:14.874842
2011-07-17T16:37:24
2011-07-17T16:37:24
48,682,706
0
0
null
null
null
null
UTF-8
Java
false
false
4,613
java
package net.daum.dna.api.vo.cafe; // TODO: Auto-generated Javadoc /** * Cafe 의 게시판 내의 게시글의 정보를 담고 있는 Class. * * @author DAUM */ public class CafeArticle { /** 게시글 제목. */ protected String name; /** 게시글 ID. */ protected int articleId; /** 작성자 NickName. */ protected String userName; /...
[ "jaynee0510@5f6b6e1d-c814-ac86-d546-2ae1b93ced9d" ]
jaynee0510@5f6b6e1d-c814-ac86-d546-2ae1b93ced9d
f659eb0ddb394c8e098aea7fb7451087cdfa03c1
f93260f0f13a6318e8a9e56fc1f7b3d40cec60b0
/build/generated/src/org/apache/jsp/adoptionRequests_jsp.java
82540c1a3c67e97b48394cc81c424d95d624aa48
[]
no_license
bhavnakodvani28/pawsFinderAdmin
dc99b9291310764416ae5679d469aa784dd12f90
b784f748089fc61fd148be0e7bc7f9a0f8ae75d6
refs/heads/main
2023-02-03T15:10:39.637852
2020-12-26T19:10:24
2020-12-26T19:10:24
324,616,106
0
0
null
null
null
null
UTF-8
Java
false
false
31,825
java
package org.apache.jsp; import javax.servlet.*; import javax.servlet.http.*; import javax.servlet.jsp.*; import pawsFinder.admin.model.AdoptionRequest; import java.util.List; import pawsFinder.admin.DAO.DogDAO; public final class adoptionRequests_jsp extends org.apache.jasper.runtime.HttpJspBase impleme...
[ "noreply@github.com" ]
noreply@github.com
79f7e7a6282dab3fc4afc136f4c85b13a2bae23d
12a30df0ee25804fbbab187e07536ef2a9385781
/src/test/java/tests/MyListsTests.java
a3d3280211535cc2c9e5c14dd5e68227113c5d98
[ "MIT" ]
permissive
MaximLyamin/JavaAppium
b058a20d0d2f95177da6869c1e5c89284fdca7c4
0a935868ec9db2e1f80b23316a8893fe40b71414
refs/heads/main
2023-02-25T23:47:08.393106
2021-01-30T20:38:37
2021-01-30T20:38:37
332,878,197
0
0
null
null
null
null
UTF-8
Java
false
false
6,857
java
package tests; import io.qameta.allure.*; import io.qameta.allure.junit4.DisplayName; import lib.CoreTestCase; import lib.Platform; import lib.ui.*; import lib.ui.factories.ArticlePageObjectFactory; import lib.ui.factories.MyListsPageObjectFactory; import lib.ui.factories.NavigationUIFactory; import lib.ui.factories.S...
[ "maxim.lyamin@kaspersky.com" ]
maxim.lyamin@kaspersky.com
24522b44eaa7f6ab9d22159ae7cb5f4a0da2dcbf
361b7668b1fc66b0e8de97ca0acf57da80b60ecf
/src/main/java/com/digitalinnovation/heroesapi/document/Heroes.java
2e86448b83ae6626b9549fbf5770916ad1a8427b
[]
no_license
wanderleimagri/dio-heroes
396df72e16b94ecffc96b127c8a36367557df7c6
f2297ff2be3c2bd941b6f6ebdc248a1bf2062bee
refs/heads/main
2023-03-14T21:11:18.801586
2021-03-06T21:44:57
2021-03-06T21:44:57
345,151,632
0
0
null
null
null
null
UTF-8
Java
false
false
1,000
java
package com.digitalinnovation.heroesapi.document; import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBAttribute; import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBHashKey; import com.amazonaws.services.dynamodbv2.datamodeling.DynamoDBTable; import lombok.Data; import lombok.Getter; import lombok....
[ "wanderleimagri@gmail.com" ]
wanderleimagri@gmail.com
348360abf566eb6bef8cb580c8e23299366dbc28
b79927a525b75ba7adb602d2e5656aaf0326b480
/src/test/java/exercises/se/pages/Popup/FormPopup.java
c2e4b62cef19ee97b7e437fff1a5a1f4b8a176d0
[]
no_license
alionasolo/seleniumhomework4
05e4ab3223b1b2811f0e5bc1046330c9a37e75b9
56d69465598b1045bb1ac52229cbd8ff5d211155
refs/heads/main
2023-08-19T04:42:18.333846
2021-10-03T21:30:21
2021-10-03T21:30:21
400,766,133
0
0
null
2021-10-03T21:30:21
2021-08-28T10:36:49
Java
UTF-8
Java
false
false
1,097
java
package exercises.se.pages.Popup; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.PageFactory; public class FormPopup { private WebDriver driver; @FindBy(xpath = "//h2[@id='Form']") WebElement form;...
[ "ali.solonari@mail.ru" ]
ali.solonari@mail.ru
951856925c4bb1f012fd9158419ee8a1c740e778
59c84e635a48a502fddbe7522984d20cdd3e61f4
/prophet-palm-web/src/main/java/com/liam/rmi/mineRMI/Server.java
9e558568a6ed10a72533b97fd87b7db031760a76
[]
no_license
propheteee/prophet-palm-tree
b3c46b294a95091d59a05ae181d5ce8189a78d86
1dfc61de4e8159e4c2eae3f7d84a00bab46bc8e7
refs/heads/master
2022-11-19T05:23:02.359115
2022-11-03T08:14:41
2022-11-03T08:14:41
197,107,642
1
0
null
2022-07-01T21:29:16
2019-07-16T02:41:41
Java
UTF-8
Java
false
false
317
java
package com.liam.rmi.mineRMI; /** * Description: * Created by prophet on 2019/7/30 18:22 */ public class Server { public static void main(String[] args) { QueryOrderNosSkeleton queryOrderNosSkeleton = new QueryOrderNosSkeleton(new QueryOrderNosImpl()); queryOrderNosSkeleton.start(); } }
[ "xianzhi.zhang@weimob.com" ]
xianzhi.zhang@weimob.com
79616b360cecc727bb9d18f0e3ea514fee64cd02
d476bcc063f663d06ea29e52ffe4f8c5ac0762f4
/mavcom/src/main/java/org/mavlink/messages/MAV_SENSOR_ORIENTATION.java
d1d0c0a3999a8132874cb954593257cc2c93a7b5
[]
no_license
Stevesies/mavcom
1d80dd623cd1f543ef4f8dc46a8fb0c6f84783cf
b0cd1b921016658dafae2b4936b898c665784421
refs/heads/master
2023-01-23T05:57:10.648842
2020-11-30T08:53:20
2020-11-30T08:53:20
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,355
java
/** * Generated class : MAV_SENSOR_ORIENTATION * DO NOT MODIFY! **/ package org.mavlink.messages; /** * Interface MAV_SENSOR_ORIENTATION * Enumeration of sensor orientation, according to its rotations **/ public interface MAV_SENSOR_ORIENTATION { /** * Roll: 0, Pitch: 0, Yaw: 0 */ public final s...
[ "ecm@gmx.de" ]
ecm@gmx.de
d84116d2ebb5a3259e2bc4cf3150487b3c7fc810
24d8cf871b092b2d60fc85d5320e1bc761a7cbe2
/PMD/rev5929-6010/base-branch-5929/src/net/sourceforge/pmd/rules/ExcessiveImports.java
37341c70f7229e370bb09925cf4ade0920655511
[]
no_license
joliebig/featurehouse_fstmerge_examples
af1b963537839d13e834f829cf51f8ad5e6ffe76
1a99c1788f0eb9f1e5d8c2ced3892d00cd9449ad
refs/heads/master
2016-09-05T10:24:50.974902
2013-03-28T16:28:47
2013-03-28T16:28:47
9,080,611
3
2
null
null
null
null
UTF-8
Java
false
false
517
java
package net.sourceforge.pmd.rules; import net.sourceforge.pmd.ast.ASTCompilationUnit; import net.sourceforge.pmd.ast.ASTImportDeclaration; import net.sourceforge.pmd.rules.design.ExcessiveNodeCountRule; import net.sourceforge.pmd.util.NumericConstants; public class ExcessiveImports extends ExcessiveNodeCountRule { ...
[ "joliebig@fim.uni-passau.de" ]
joliebig@fim.uni-passau.de
7e0579926dc87307e566a96bfe4c8358fec53dbf
935d938ff7af87884bdc99f78fb6d533c4db3958
/src/main/java/com/redis/example/demo/file/MappedFileTest.java
67d8db960f75de7ecfa20945e01d29656d677620
[]
no_license
1303110335/java-all
52b34099e53ec1d65a976c70105494ff07a42e09
d70ee5a362f2abdbfa06d3079022c95134d8d7ad
refs/heads/master
2023-07-16T12:38:57.608790
2021-08-25T02:12:09
2021-08-25T02:12:09
298,726,726
0
0
null
null
null
null
UTF-8
Java
false
false
1,211
java
/** * bianque.com * Copyright (C) 2013-2020 All Rights Reserved. */ package com.redis.example.demo.file; import java.io.ByteArrayInputStream; import java.io.File; import java.io.IOException; import java.io.RandomAccessFile; import java.nio.MappedByteBuffer; import java.nio.channels.FileChannel; import java.util.Sca...
[ "1303110335@qq.com" ]
1303110335@qq.com
14a9d04a131365bbf54cc7824de33d2968b3aa75
e51c210ccf72a8ac1414791d8af552662c3fb034
/passerelle-core/com.isencia.passerelle.runtime.jmx/src/main/java/com/isencia/passerelle/runtime/jmx/ProcessHandleBean.java
39b9e578e38869d064ffeccf4eb2d304f0370264
[]
no_license
eclipselabs/passerelle
0187efa4fba411265ab58d60b5d83e74af09b203
e327dea8f4188e4bfe5ef4a76dd2476ad6f5664d
refs/heads/master
2021-01-18T09:26:07.614275
2017-06-28T10:05:12
2017-06-28T10:05:12
36,805,342
5
3
null
2015-08-04T18:43:19
2015-06-03T13:27:15
Java
UTF-8
Java
false
false
2,119
java
/* Copyright 2013 - iSencia Belgium NV 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 ...
[ "erwindl0@gmail.com" ]
erwindl0@gmail.com
c596dc206d87b6da296239ef159a579a44a11d3f
38ba2d79615bfc624ea3cf5d0edb059885d915f9
/src/test/java/com/android/tools/r8/shaking/keptgraph/KeptByAnnotatedMethodTest.java
baeacd203b00898edc8e8816fdfe81ddbe99536c
[ "BSD-3-Clause", "MIT", "Apache-2.0" ]
permissive
facebookexperimental/r8
13182fee86ca6cd61a8fc606f507674732710771
5fd5989c478e7f2a052656aec2ef909d74646a27
refs/heads/buck
2023-03-04T10:40:02.130773
2019-08-30T20:28:19
2020-07-21T13:29:50
191,259,201
5
3
NOASSERTION
2020-06-08T16:27:05
2019-06-10T23:24:32
Java
UTF-8
Java
false
false
1,000
java
// Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. package com.android.tools.r8.shaking.keptgraph; import com.android.tools.r8.Keep; import com.android.tools...
[ "zerny@google.com" ]
zerny@google.com
3a021b0298864e558982b0a6543f71d89ffc9dd1
b5c0ac295c7f52b420340e629d77a5dbcf28c487
/src/main/java/br/com/tbla/githubscrapingapi/model/GithubRepoInfo.java
bc84005770d4c447cba5c17ba17e32ed3f3b21a1
[]
no_license
thiagodiou/github-scraping-api
0e4c9071d315503fc2203870951ab0e1a7fc6760
de25d8acb8243d65d69f2f47c48bf7c8decb6e93
refs/heads/master
2023-04-24T14:26:09.677516
2021-05-17T04:16:43
2021-05-17T04:16:43
368,008,120
0
0
null
null
null
null
UTF-8
Java
false
false
823
java
package br.com.tbla.githubscrapingapi.model; import java.util.List; import javax.persistence.CascadeType; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.OneToMany; import javax.persistence.Table; ...
[ "thiagodiou@gmail.com" ]
thiagodiou@gmail.com
edc0bc86ca52defeb4aa401949b72c21a15d4baa
9b91a1e3776a15281c394a883000bb53fbf5bd76
/jboss-seam/src/main/java/org/jboss/seam/persistence/HibernatePersistenceProvider.java
3a183513459a6b8101b90d30dc0759f388cb5c50
[]
no_license
omidp/seam
9ed0b00777996e218b9659e68b755f35a21486f5
a64368e756e5d5c61c732bb0caf7b1ff75601544
refs/heads/master
2020-12-24T07:05:59.283627
2017-08-24T10:01:05
2017-08-24T10:01:05
24,535,342
9
2
null
null
null
null
UTF-8
Java
false
false
13,727
java
package org.jboss.seam.persistence; import static org.jboss.seam.annotations.Install.FRAMEWORK; import java.lang.reflect.Method; import java.lang.reflect.Proxy; import java.util.Collection; import java.util.Map; import javax.persistence.EntityManager; import javax.transaction.Synchronization; import org.hibernate.En...
[ "omidpourhadi@gmail.com" ]
omidpourhadi@gmail.com
e4fb2380552908e2b7cb3338b666bb4e2b879228
3413ba43672655874301050c0feca0fb45d723b4
/src/dataflow/util/Writter.java
78a9ec0709af85093e2acfc14e52f077d859a9ec
[]
no_license
takedatmh/CBIDAU_tsukuba
44e13d35107e05f922d227bbd9401c3cea5bcb39
b9ef8377fcd3fa10f29383c59676c81a4dc95966
refs/heads/master
2020-07-30T06:51:13.900841
2020-06-29T16:37:04
2020-06-29T16:37:04
210,117,863
1
0
null
null
null
null
UTF-8
Java
false
false
816
java
package dataflow.util; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.io.PrintWriter; import dataflow.util.Context; /** * Retrieve impact path from the target method to leaf method. * @author s1930149 */ public class Writter { public static void main(String[] args) { /...
[ "takedatmh@gmail.com" ]
takedatmh@gmail.com
40ac022b698ec26a862ead9f331493b44cc05d11
2efae10c3d60764ffc22549af9f19906589a22fd
/spring-boot-security/src/main/java/com/boot/security/entity/Permission.java
a5ebddccf5f03d2cf41f57a773a6379e23639895
[]
no_license
looper-tao/spring-boot-project
5617f3bc1a0b991ba1b57a69dd0dd190c308d6b7
cb4fbfc38cb75af065c61e3b6a094ca3852ded12
refs/heads/master
2022-09-13T03:51:20.512053
2021-04-20T09:15:26
2021-04-20T09:15:26
171,794,411
1
0
null
2022-09-01T23:37:21
2019-02-21T03:35:49
Java
UTF-8
Java
false
false
1,614
java
package com.boot.security.entity; import java.io.Serializable; public class Permission implements Serializable { private Long id; private String url; private String name; private String description; private Long pid; private static final long serialVersionUID = 1L; public Long getId(...
[ "taozhengzhi@data88.cn" ]
taozhengzhi@data88.cn
e1f8e3b3b754df766bebe34574d487badcd269aa
27dc541bf8ce73fda1b6a40ef471ae59304c0262
/CoreBanking/src/test/java/library/ExcelReadWrite_Methods.java
421cc3e677d1e80e355ab59aee47974d77b1713d
[]
no_license
shesingh/SeleniumJavaFramework1
8dda3b6e73d0b748ba99c813fd9beac0f79689f8
fa6befe9556dadfd2bd8674baa1ef17a17897468
refs/heads/master
2020-04-25T11:36:51.617567
2019-03-29T18:44:00
2019-03-29T18:44:00
172,750,574
0
0
null
null
null
null
UTF-8
Java
false
false
5,578
java
/* * This class covers: * 7 Excel functions: * Setting Excel file * Getting row & Column count * getCellData * setSellData * readExcelData * writeExcelData * * * TO DO - setExcelFile is not working if file is not there. * 1. Fix the scenario when fiel is not there. * 2. Once point 1 is done...
[ "shefali.singh@CA-L1B8YL72.groupinfra.com" ]
shefali.singh@CA-L1B8YL72.groupinfra.com
bc4071d161c2f3543c94e923ab7b2e428c99e009
84d394286925c2e0e9cf97fcb9e2630ffdee7f0d
/src/main/java/hb04onetomanyuni/demo/DeleteCoursesDemo.java
1afdf304fab6518a51aa180635d81534e3fdd188
[]
no_license
DamianMatysko/HibernateToturial
0f5a08bbc8529d59e0221c63a8b25b8e685803ce
c440f63077d84137e3ce195f80ebd6ef83cadd5c
refs/heads/master
2023-01-21T11:06:57.326606
2020-12-02T14:50:22
2020-12-02T14:50:22
314,084,188
0
0
null
null
null
null
UTF-8
Java
false
false
1,346
java
package hb04onetomanyuni.demo; import hb04onetomanyuni.demo.entity.Course; import hb04onetomanyuni.demo.entity.Instructor; import hb04onetomanyuni.demo.entity.InstructorDetail; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; public class DeleteCoursesDemo { ...
[ "mada11@azet.sk" ]
mada11@azet.sk
6b8c9f2bdbc2c31fe0df29d8d45f39fba39f5ca2
8e45f54a2c302a520e92aea50e41f71e8b32b8e1
/bootdo/src/test/java/com/bootdo/testDemo/TestDemo.java
856614d05307affee935725f55e638ee25dc8421
[ "Apache-2.0" ]
permissive
peengtao123/cloud
97e16f1553a9547a943a19a2a97a85ec9d126358
e43cd770f72bb2906700b89be7b2b25a1970e5b1
refs/heads/master
2020-03-28T19:25:10.544092
2019-04-22T07:39:28
2019-04-22T07:39:28
148,974,475
0
0
null
null
null
null
UTF-8
Java
false
false
629
java
package com.bootdo.testDemo; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.test.context.junit4.Sprin...
[ "peengtao123@126.com" ]
peengtao123@126.com
973841d22bed471bc8fe209aa41fb8a8ca7a0905
ebdbd5e0136ee4021557377eb82219d7e1146438
/src/main/java/com/example/service/AuthoritesServiceImpl.java
498fbbe4bab2f96da14713d5b4178cf4c243de57
[ "Unlicense" ]
permissive
matthewgermeyer/wwjd
8687f972f110aa87f940278f7c31ec394e12238e
359e3d220c707c47fcbd792cf1aad24f3b1e450f
refs/heads/master
2021-06-19T09:29:39.104434
2017-06-19T20:53:12
2017-06-19T20:53:12
92,991,563
1
0
null
null
null
null
UTF-8
Java
false
false
456
java
package com.example.service; import com.example.repository.AuthoritiesDao; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; /** * Created by MattyG on 6/14/17. */ @Service public class AuthoritesServiceImpl implements AuthoritiesService { @Autowired...
[ "matto483@gmail.com" ]
matto483@gmail.com
c1c2c63857f9adf63c0d61b65c7a871f45bdf07c
7b12f67da8c10785efaebe313547a15543a39c77
/jjg-common-db/src/main/java/com/jjg/member/model/enums/CustomCachePrefix.java
af4ff83991abe4f94eecc374100a6e7e7000c0d1
[]
no_license
liujinguo1994/xdl-jjg
071eaa5a8fb566db6b47dbe046daf85dd2b9bcd8
051da0a0dba18e6e5021ecb4ef3debca16b01a93
refs/heads/master
2023-01-06T09:11:30.487559
2020-11-06T14:42:45
2020-11-06T14:42:45
299,525,315
1
3
null
null
null
null
UTF-8
Java
false
false
210
java
package com.jjg.member.model.enums; public enum CustomCachePrefix { /** * 店铺自定义分类 */ CUSTOM_CAT; public String getPrefix() { return this.name() + "_"; } }
[ "344009799@qq.com" ]
344009799@qq.com
746c4c310194db69ddfbe4b9d47ffc4e1afdf38c
5466cdb284cb2eb7ff9b1f5066a164f9fb916ff1
/src/main/java/com/service/KafkaProducerService.java
d6de0d99c82fd396a979dd60ceda0fa1fb19f05b
[]
no_license
NathanGan/websocket-server-fyp
47907dec0be6f7c442295e1d55911472be3bc533
dfc9c6154f1454b65b3b7736a441a7c769903d99
refs/heads/master
2021-04-03T07:13:06.834411
2018-03-13T07:00:56
2018-03-13T07:00:56
124,634,417
0
0
null
null
null
null
UTF-8
Java
false
false
302
java
package com.service; import com.model.Orders; import com.model.User; /** * Created by nathan on 2017/11/8. */ public interface KafkaProducerService { public void produceLocation(User user); public void produceOrder(Orders orders, User user); public void produceUserInfo(User user); }
[ "nathan@NathandeMacBook-Pro.local" ]
nathan@NathandeMacBook-Pro.local
8acb2dd09981f694c779ff3997b739e69654a810
5f77abd40b6c9732b7f6a158aed92411c9bd2fba
/USDAProg/src/parser/parsables/Footnote.java
5389896f3c1d263f1ab9106e8f509fb18c55cf3c
[]
no_license
Netdex/USDANutritionProgram
27da52c72dc528c3a073c7f00e479ec4b55159ab
fff0f7cb5f7cd7024a450c68e4ff9048a630c8bb
refs/heads/master
2021-01-10T15:03:02.666048
2015-11-23T03:21:13
2015-11-23T03:21:13
45,484,341
1
0
null
null
null
null
UTF-8
Java
false
false
2,244
java
package parser.parsables; import parser.Formattable; import parser.InvalidParseDataException; /** * Represents a footnote of a food item * * @author Gordon Guan */ public class Footnote implements Parsable<Footnote>, Formattable{ public static Footnote SAMPLE = new Footnote(); public static final int PARSE_DA...
[ "netdex593@gmail.com" ]
netdex593@gmail.com
ef627884f95cbd47218bb83f958b6294d1a2ffb5
69fcd628faacc3560a61f25122ef4e6825aacc44
/app/src/main/java/com/example/lenovo/bbqu/fragment/fragment1.java
e5fe42e90db14c5b3c7349eae3ddc64c92418c2e
[]
no_license
BBQU/BBQu1
db45e315e733097b32e2e2455c90ff9a7dea531b
0323f4c51230910a7c78c7f1ffac7a17bc146053
refs/heads/master
2020-11-30T19:07:01.551225
2016-09-07T13:34:58
2016-09-07T13:34:58
67,609,393
0
0
null
null
null
null
UTF-8
Java
false
false
3,525
java
package com.example.lenovo.bbqu.fragment; import android.content.Intent; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageButton; import android.widget.ImageView; import android.widg...
[ "huangjian666666@foxmail.com" ]
huangjian666666@foxmail.com
8a6e9b327c76cdb789b5b34a8bc56c26d38ec2d7
e369d9879042675c259345e9d83c99fabb27de64
/seckill/src/main/java/com/bansi/oauth/SalesforceExample.java
20f5b96b8ee7b1c44fd1b0538205c8947725cd29
[]
no_license
zbansi/intretech_netsuite
609d59949a36e080841a5341812005df414a79d6
17d56760fd8b920a378e373c4ab021877ece7315
refs/heads/master
2021-06-26T00:31:19.500230
2019-06-06T01:59:49
2019-06-06T01:59:49
154,297,224
0
0
null
2020-10-13T10:51:34
2018-10-23T09:06:33
Java
UTF-8
Java
false
false
4,437
java
package com.bansi.oauth; import java.io.IOException; import java.net.URLDecoder; import java.net.URLEncoder; import java.util.Scanner; import com.github.scribejava.apis.SalesforceApi; import com.github.scribejava.apis.salesforce.SalesforceToken; import com.github.scribejava.core.builder.ServiceBuilder; import com.git...
[ "alonjune@gmail.com" ]
alonjune@gmail.com
e8f9d6da3c3603be2bd44555a08958f2cb44fb21
05fa12f61fda1e61f615f3fd18aa046757b01d70
/sample-spring-boot-kitchensink/src/main/java/com/example/bot/spring/KitchenSinkApplication.java
eee9ecbef8fd422e9a149f71fb49738097c50cb9
[ "Apache-2.0" ]
permissive
jimwanggg/my-line-bot
577d4dd898858f764d632bbb7296b6758a2fe7d9
85ebf00de3754f08375717cf3e2b4a9e849bee87
refs/heads/main
2023-02-23T19:59:36.800972
2021-01-22T20:36:00
2021-01-22T20:36:00
332,056,196
0
0
null
null
null
null
UTF-8
Java
false
false
1,183
java
/* * Copyright 2016 LINE Corporation * * LINE Corporation 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 re...
[ "b06902006@ntu.edu.tw" ]
b06902006@ntu.edu.tw
d54c55bbe8fb589ce36bb155ca644922deeb0f45
e5ab3b93b936fe202f53ade5e13db6bcb0b83882
/practicas eva 1/EVA1_6_ARREGLOS/src/eva1_6_arreglos/EVA1_6_ARREGLOS.java
3a2b72a1b12053794129cbc991b04d7ccbf42a82
[]
no_license
ojeda13/particas
f448f52ec59ebe0df180f00b60cd0d96653111c0
d70c7e6c0d264851a6c5e2bb0f46d6e674edf3a5
refs/heads/master
2020-03-19T08:44:40.534661
2018-06-05T21:06:48
2018-06-05T21:06:48
136,231,424
0
0
null
null
null
null
UTF-8
Java
false
false
1,129
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 eva1_6_arreglos; import java.util.Scanner; /** * * @author Tania */ public class EVA1_6_ARREGLOS { /** * @param ...
[ "Erika_ojeda13@hotmail.com" ]
Erika_ojeda13@hotmail.com
65d96dd0c0bdb6a5bfccb8ef01fa2018f721287d
963ca40366ec1cad2f1939b3fa23d37c16fd535b
/src/main/java/com/demo/service/CsvIOService.java
14874e04b8a83a249ff0d6999cdee009835b5a3b
[]
no_license
ajoys123/merge-accounts
cdbca4a2651c3aeca3b169326cac71e886ed7be6
4a14bbb1202fabad81b4c17b676aca2f19c1c6f4
refs/heads/master
2020-04-13T09:29:36.038175
2018-12-31T23:13:11
2018-12-31T23:13:11
163,110,922
0
0
null
null
null
null
UTF-8
Java
false
false
2,690
java
package com.demo.service; import com.demo.model.Account; import java.io.File; import java.io.FileWriter; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Paths; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; impo...
[ "ajay.srinivas@sailpoint.com" ]
ajay.srinivas@sailpoint.com
591f2b4481765fe5ad8217144cbc6eae9c91bdf7
a04dd3e320f125a336757433644f8183bfb77d25
/src/test/java/io/github/christophermanahan/captainlunch/service/CaptainRotationServiceTest.java
8631f8c5b18cbcf3d6619a7ffd11c51a891c1a3e
[]
no_license
mylesmegyesi/captainlunch
fac87a9b444dbc56d6d97434378ecaddc10543cc
afb48e8e0c3274dd95a73bad6c48b52615e2c77d
refs/heads/master
2020-06-11T22:57:23.460135
2019-06-26T20:12:22
2019-06-26T20:12:22
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,269
java
package io.github.christophermanahan.captainlunch.service; import io.github.christophermanahan.captainlunch.model.User; import io.github.christophermanahan.captainlunch.repository.UserRepository; import io.github.christophermanahan.captainlunch.time.Time; import org.junit.jupiter.api.BeforeEach; import org.junit.jupit...
[ "chris.a.manahan@gmail.com" ]
chris.a.manahan@gmail.com
db033b856a0bc8f2b8e9aaf531c3bcc54a26d329
d64052f6b79d34014f9a2d9b25ceb644bfe5d8b3
/src/main/java/api/rest/exception/BadRequestException.java
9e2d1d46910c87d2919eddfb95cb441e1d6cffe9
[]
no_license
jorhel-oliveira/api-java
9fa68007a8c28b3019b5afefaa6ffd5df8927dd7
4a0988bbd3191d2652ead4dd1cafd3552c9d78b3
refs/heads/master
2023-07-04T18:16:26.967310
2021-08-18T00:13:57
2021-08-18T00:13:57
387,008,798
0
0
null
null
null
null
UTF-8
Java
false
false
317
java
package api.rest.exception; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.ResponseStatus; @ResponseStatus(HttpStatus.BAD_REQUEST) public class BadRequestException extends RuntimeException{ public BadRequestException(String message) { super(message); } }
[ "jorhel_psf@hotmail.com" ]
jorhel_psf@hotmail.com
9c6a1f11814b4d491acfa3b5374a853a8296d86b
597f6f29b2f878d2e9e812be80dff14c201df429
/c3r-web/src/org/unitedstollutions/c3r/web/C3RFormController.java
d1305d972dea9f1ba02418f111dd28aa9289cba3
[]
no_license
rubenstoll/c3r-web
4cb1faab4345b44c347c4ebfadf4fcd57a9a0562
647cf628de8c2177c9ad80b49bdd5762ff3cda9d
refs/heads/master
2021-01-10T04:28:22.662988
2009-03-25T19:20:06
2009-03-25T19:20:06
36,396,602
0
0
null
null
null
null
UTF-8
Java
false
false
11,009
java
package org.unitedstollutions.c3r.web; import java.io.File; import java.io.IOException; import java.net.MalformedURLException; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import javax.servlet.RequestDispatcher; import javax.servlet.Servlet; import javax.servlet.ServletExc...
[ "rubenstoll@hotmail.com" ]
rubenstoll@hotmail.com
50bb499c5177f01f8156158815be35771000d933
3b69b71639aad070c0134ca81bf4e9b4c3f3c272
/codemageAPI/src/main/java/com/codemage/sql/service/AnalyserServiceImpl.java
34edcd059f2649ec21900632aab198432bacbc30
[ "Apache-2.0" ]
permissive
hasithalakmal/CodeAnalyser
54a6c41f0489f3da503081409c1a3f52acb07294
3afa0d900d9284d7a9a5da4cff0223298cac24c8
refs/heads/master
2021-01-12T11:09:55.565649
2016-11-06T16:51:07
2016-11-06T16:51:07
72,855,724
0
0
null
null
null
null
UTF-8
Java
false
false
1,765
java
package com.codemage.sql.service; import com.codemage.sql.analyser.CodeAnalyser; import com.codemage.sql.analyser.ReportGen; import com.codemage.sql.util.SonarQubeManager; import org.json.JSONArray; import org.json.JSONObject; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.st...
[ "ghasithalakmal@gmail.com" ]
ghasithalakmal@gmail.com
5de2a92c6c9c35ad56a48e4cb8c653e7b3ba7739
3518a262c673f4d324ec79fe41a5f1855d10b068
/server/src/main/java/com/miaosha/controller/PromoController.java
c42ecf28d67d6bba15193041da6c27ea1357affa
[]
no_license
Alex-9827/miaosha
cbd68e6ad4dab3d0c382214ac4aff1c934530f95
e492d223bded450b5127f05f807123aae5185171
refs/heads/master
2023-02-03T02:11:43.828774
2020-12-28T16:36:40
2020-12-28T16:36:40
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,642
java
package com.miaosha.controller; import com.miaosha.error.BusinessException; import com.miaosha.error.EmBusinessError; import com.miaosha.response.CommonReturnType; import com.miaosha.service.PromoService; import com.miaosha.service.UserService; import com.miaosha.service.model.ItemModel; import com.miaosha.service.mod...
[ "huaizhong1997@163.com" ]
huaizhong1997@163.com
e829ee4c308fb3bd979f82c74938feab9e2414b4
4e825c918e21e283985a30d2476bfa3b1d9bde1a
/JanosWeb/src/main/net/sf/janos/web/structure/XMLFormatter.java
224ff3ddee7544e0c02d513b7fd15b773a4d6be6
[]
no_license
dk6688/janos
cb4f946c78028c6921507c3b8757216200e0e219
b3152358f5331f92a01a0a644dd66d2a67c121b7
refs/heads/master
2021-01-19T14:36:26.085114
2010-12-28T22:53:56
2010-12-28T22:53:56
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,559
java
package net.sf.janos.web.structure; import java.io.IOException; import java.io.Writer; import java.util.Map.Entry; import javax.servlet.http.HttpServletResponse; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; public class XMLFormatter extends Formatter { private st...
[ "chrisc1980@994e37db-2641-0410-9be6-a0e17f2119e6" ]
chrisc1980@994e37db-2641-0410-9be6-a0e17f2119e6
a2c70e5a9b95ec44b9a9765743a1e043e6597d08
ad605e50c86de5b91c23ce47a8b79100bfa4cf6d
/org.talend.mdm.core/src/com/amalto/core/webservice/WSRolePKArray.java
0fe8432928e3cb8282c60b5e3b5013635f9c1e1b
[]
no_license
marclx/tmdm-server-se
85e56728718f131e54b786518b58aee4f2b3b794
6c234c0f7ed467e7e1a8b76e80831db25ed6ff71
refs/heads/master
2021-01-18T15:12:30.154475
2015-03-20T12:56:25
2015-03-20T12:56:52
null
0
0
null
null
null
null
UTF-8
Java
false
false
722
java
// This class was generated by the JAXRPC SI, do not edit. // Contents subject to change without notice. // JAX-RPC Standard Implementation (1.1.2_01,编译版 R40) // Generated source version: 1.1.2 package com.amalto.core.webservice; public class WSRolePKArray { protected com.amalto.core.webservice.WSRolePK[] wsRole...
[ "achen@f6f1c999-d317-4740-80b0-e6d1abc6f99e" ]
achen@f6f1c999-d317-4740-80b0-e6d1abc6f99e
6631e72a20ff1902c0945d707c79b159d69c3a8a
cbe0129f7b3d137218274d9f5a5c26fb72743c54
/SpringBoot企业级开发/源码/media-type/src/main/java/com/waylau/spring/boot/mediatype/controller/HelloController.java
b10e58807e663c52ecb93bae5e815dde17795092
[]
no_license
TronQuick/Spring-Boot
246fbf8f270b0391d70774a0cfd38eb21155c67f
d16fe030da76a3f975f5b2182707f3e9aaa08dd0
refs/heads/master
2022-06-27T07:11:39.140687
2019-08-07T09:28:55
2019-08-07T09:28:55
201,000,600
2
0
null
2022-06-21T01:37:06
2019-08-07T07:50:35
JavaScript
UTF-8
Java
false
false
455
java
package com.waylau.spring.boot.mediatype.controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * Hello World 控制器 * @author <a href="https://waylau.com">Way Lau</a> * @date 2017年1月26日 */ @RestController public class HelloContr...
[ "707500781@qq.com" ]
707500781@qq.com