blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
410
content_id
stringlengths
40
40
detected_licenses
listlengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
684M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
132 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
28 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
352
a55ce4ead09175116835afc82dca21d54575e687
95e1ddd7adc76bd08249d784cf346e9b8cddcc9f
/1.JavaSyntax/src/com/javarush/task/task09/task0906/Solution.java
50ad24c21a25456d2bc10761e25648e239154bd9
[]
no_license
script972/JavaRush
2f7190e1ce20826bfab6045aee23c6b9e36d3a72
225b5802bd2116f41e2e1ccc57c7427b05ef9a07
refs/heads/master
2021-01-19T18:32:38.809418
2017-10-07T21:44:26
2017-10-07T21:44:26
78,306,557
0
0
null
null
null
null
UTF-8
Java
false
false
470
java
package com.javarush.task.task09.task0906; /* Логирование стек трейса */ public class Solution { public static void main(String[] args) { log("In main method"); } public static void log(String s) { //напишите тут ваш код StackTraceElement[] elem = Thread.currentThread().getStackT...
[ "script972@gmail.com" ]
script972@gmail.com
6135df6e44f6e033020527e7387268abd7a1b9e7
9dab5c69697b7dd8a7bfab4cc8c2f6d580ef2d1a
/JavaSE/src/Day21/GetReflectClassInstanceInfo.java
4abbdd62023327df0ac849a085d7fde79f21db3c
[]
no_license
Jexn/MyCode
f7b7eee50c28161c11d047ebac5ddd7d8a4a1833
23a2833f82534a65a816ed2424ff80f4af94dab5
refs/heads/master
2022-12-23T12:06:45.266482
2019-08-20T00:37:25
2019-08-20T00:37:25
185,705,380
0
0
null
2022-12-16T05:04:07
2019-05-09T01:38:16
Java
UTF-8
Java
false
false
5,644
java
package Day21; import org.junit.Test; import java.lang.reflect.*; public class GetReflectClassInstanceInfo { // 创建运行时类的对象 @Test public void method1() { try { Class getClass = Class.forName("Day21.Person"); Person person = (Person) getClass.newInstance(); Syste...
[ "cube-root@outlook.com" ]
cube-root@outlook.com
a081e1febfb99a796b79261317f5f22518f95ca1
5b303da11f72c6acc2c946c9f2b248643e753004
/src/leetcodeproblems/ShuffleAnArray.java
b967d07259f1f19b70a6579b693ea2c6b6e3482c
[]
no_license
MauriPastorini/my-competitive-programming-repo
4687ceaa1fb6b44b49bd1a449e7c33f14915bef6
a851c29eeef03e6d22289acfb75fc4107271d841
refs/heads/master
2020-03-18T20:28:32.374744
2018-06-01T18:51:45
2018-06-01T18:51:45
135,218,302
0
0
null
null
null
null
UTF-8
Java
false
false
1,513
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 leetcodeproblems; import java.util.ArrayList; import java.util.List; import java.util.Random; import java.util.concurrent.Thre...
[ "mauri295@gmail.com" ]
mauri295@gmail.com
59df80d834f7d6ca5f3cfd629504bcdc1e2ce71b
3f62e1c6e6e7153bde24673bd02cea3ef3a21075
/src/main/java/com/example/userservice/domain/Role.java
d016b68519d682a7d372d72960bf1f2bdacda390
[]
no_license
Testoni/userjwt
7a807d589893a08a7dd7510c34bd123bb01476a6
09a9c56806feaa041eabf77d37a42231606f6bf1
refs/heads/main
2023-06-29T01:23:20.622370
2021-08-01T16:11:07
2021-08-01T16:11:07
390,921,509
0
0
null
null
null
null
UTF-8
Java
false
false
457
java
package com.example.userservice.domain; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; @Data @Entity @NoArgsConstructor @AllArgsConst...
[ "gabriel.testoni@gmail.com" ]
gabriel.testoni@gmail.com
56d1759100b1d804b9628564382ba5127d84247e
37d0b71618c04bff9db134590e05de47e5f057f7
/app/src/main/java/smartparadise/ridewithme/Adapters/HistoryAdapter.java
cdc81c83a48fca837fcd1e2f69f5b5d9e64acac3
[]
no_license
spankaj713/RideWithMe-Online-Cab-Booking-System
d8d477ca2532906be9af8fa35991deed4857a490
53bcb7ecf196b7d90568b829bfdb91189ac7201b
refs/heads/master
2020-03-20T11:10:35.143708
2018-06-14T19:34:46
2018-06-14T19:34:46
137,394,979
0
0
null
null
null
null
UTF-8
Java
false
false
2,422
java
package smartparadise.ridewithme.Adapters; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.support.v7.widget.CardView; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; impo...
[ "spankaj713@gmail.com" ]
spankaj713@gmail.com
ef9bcff5dfa6ac0292dae3ed376fd38fc1445b09
c9cba33410c7c79c54ae1d5f1da21b2358ccd220
/app/src/main/java/com/example/fingerprintdemo/FingerPrintActivity.java
03259a2a8af065a8af5b2a1fdfda697c8f46bbb5
[]
no_license
CodeReveal/Finger_Authentication_Android
1341286e0425a6af082e7832e8d4bd27b443e1c8
821ce2b519e019b5de4af4fdca481f20939b2ad4
refs/heads/master
2022-11-15T20:35:45.089412
2020-06-08T23:48:05
2020-06-08T23:48:05
270,857,186
0
0
null
null
null
null
UTF-8
Java
false
false
6,607
java
package com.example.fingerprintdemo; import androidx.appcompat.app.AppCompatActivity; import androidx.core.app.ActivityCompat; import androidx.core.content.ContextCompat; import android.Manifest; import android.annotation.TargetApi; import android.app.KeyguardManager; import android.content.pm.PackageManager; import ...
[ "ratanakpek088@gmail.com" ]
ratanakpek088@gmail.com
ab73266f344b2cb8213f383cf0e5d947f5c7ab75
4746dfc69ef9033dfbcf6551ef246709c66f5ffb
/submission-phase5/java/action/ProvideDegreeDiscAction.java
86c3d936b173249ca062b838845b5c3c6b8f5bbd
[]
no_license
tassapola/cse135putttassapol
c32f451dc7d13279baeffae8ca3c0b9868f13de2
70f34bf6071d228686561daca4765611b6756c84
refs/heads/master
2021-01-20T09:09:23.432990
2010-12-05T00:25:42
2010-12-05T00:25:42
32,342,564
0
0
null
null
null
null
UTF-8
Java
false
false
1,824
java
package action; import java.sql.*; import java.util.*; import javax.servlet.http.*; import model.*; import org.apache.commons.fileupload.FileItem; import org.apache.commons.fileupload.FileItemFactory; import org.apache.commons.fileupload.disk.DiskFileItemFactory; import org.apache.commons.fileupload.servl...
[ "chilltassapola@16fcbdfc-56bc-7f80-26f2-9ba74a5772c8" ]
chilltassapola@16fcbdfc-56bc-7f80-26f2-9ba74a5772c8
0dcb2b1985a26bd2edc2de1df2840bb181498031
25fe82ea0e1ccb330890191806a8bb35e4043358
/phone/src/main/java/com/example/phone/TouchImageView.java
369566394dbc72064f9bead16e97abff09abc52e
[]
no_license
suhuMM/AriportTv
3e9b029cd4bfc06de1abfb8cde9f99b3a715fa2e
38118b6d809771f8fba26ddb15d1ec82100d6fc9
refs/heads/master
2021-05-04T19:15:47.401075
2018-01-03T13:35:26
2018-01-03T13:35:26
106,654,449
1
0
null
2017-11-13T02:20:14
2017-10-12T06:38:38
Java
UTF-8
Java
false
false
12,575
java
package com.example.phone; /** * Created by suhu on 2017/8/2. */ import android.content.Context; import android.graphics.Bitmap; import android.graphics.Bitmap.Config; import android.graphics.BitmapFactory; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Matrix; import android...
[ "suhu0824@sina.com" ]
suhu0824@sina.com
c8de26880f974d1c23e6db6a890d5aa063fcbaf7
dd80a584130ef1a0333429ba76c1cee0eb40df73
/external/apache-http/src/org/apache/http/impl/io/ContentLengthInputStream.java
3b19c5b62f4574b6b542397842d13d5bd6d438cd
[ "MIT", "Apache-2.0" ]
permissive
karunmatharu/Android-4.4-Pay-by-Data
466f4e169ede13c5835424c78e8c30ce58f885c1
fcb778e92d4aad525ef7a995660580f948d40bc9
refs/heads/master
2021-03-24T13:33:01.721868
2017-02-18T17:48:49
2017-02-18T17:48:49
81,847,777
0
2
MIT
2020-03-09T00:02:12
2017-02-13T16:47:00
null
UTF-8
Java
false
false
7,778
java
/* * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/impl/io/ContentLengthInputStream.java $ * $Revision: 652091 $ * $Date: 2008-04-29 13:41:07 -0700 (Tue, 29 Apr 2008) $ * * ==================================================================== * Li...
[ "karun.matharu@gmail.com" ]
karun.matharu@gmail.com
9d5155b45be002e6da9c1ca515a29eddeb1c231b
b04e82d070ec21c9d2bd554ad3e2f2066de0e06d
/app/controllers/CurrentOffer.java
644ce3800e865372f729d651a50fcd4463c14d7d
[]
no_license
rward/BookSkateMate
ab6732b779fcc7da5c8e863a4cb1e9a04eb79370
a46158b895b017bca817d3ef0e5943ea10a6cd2f
refs/heads/master
2020-05-21T11:34:23.166823
2013-05-07T21:21:17
2013-05-07T21:21:17
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,405
java
package controllers; import play.Logger; import play.data.DynamicForm; import play.data.Form; import play.mvc.Controller; import play.mvc.Result; import views.html.myOffers; import java.util.List; import models.Book; import models.Condition; import models.Student; import static play.data.Form.form; /** * Controller f...
[ "rward@hawaii.edu" ]
rward@hawaii.edu
3e23330f68d674af5974c5c1611bdafd20f7c409
891ae74be3edd5625a235af573b3d82a7b2cb797
/server/src/main/java/com/tuofan/core/TimeUtils.java
f8d2fb13e69038af2082cf0abe30aafa5bc4b15c
[]
no_license
wangyongst/billStar
87bfc8d7405d6b04639e040d5140b582fc56ac38
0519cff9b08539974adcfbe0b51b926a06bb3a1b
refs/heads/master
2022-12-22T03:44:22.394837
2020-03-16T09:39:56
2020-03-16T09:39:56
240,644,022
0
0
null
2022-12-10T08:08:14
2020-02-15T04:22:21
Vue
UTF-8
Java
false
false
1,090
java
package com.tuofan.core; import java.util.Calendar; import java.util.Date; public class TimeUtils { public static Date month(Integer before) { Calendar calendar = Calendar.getInstance();// 获取当前日期 calendar.add(Calendar.YEAR, 0); calendar.add(Calendar.MONTH, -before); calendar.set(C...
[ "wangyongst@gmail.com" ]
wangyongst@gmail.com
fcb75fe5f2746d9959684ea740641097d4b06af6
b369e3f8258bfbc635fb9d56626301ca6431a673
/src/main/java/com/example/service/UserService.java
c284cddb98f18b0d280c457d540d493a982f503b
[]
no_license
ynfatal/springboot2mybaitsdemo
46a01a4777f5948ba374897a141e68ab90a249df
66699cfcf554a1c63ee53ed7ccdef3082db9ade2
refs/heads/master
2020-03-26T13:28:26.850929
2018-08-17T09:39:53
2018-08-17T09:39:53
null
0
0
null
null
null
null
UTF-8
Java
false
false
282
java
package com.example.service; import com.example.entity.User; import com.github.pagehelper.PageInfo; /** * @author: Fatal * @date: 2018/8/16 0016 11:55 */ public interface UserService { int addUser(User user); PageInfo<User> findAllUser(int pageNum, int pageSize); }
[ "63413763@qq.com" ]
63413763@qq.com
e7e1d8edd21dddea71d3202daa1e056b85ccce89
0c11dbb4b4b82f3b4c8a28e4ed8bba1529541e61
/BookCollection-Swing-Hsqldb/src/de/seipler/bookcollection/NamedEntity.java
8cab29590918650597b05953bb017ad0fd77fc17
[]
no_license
tecbeast/misc
706b7dfc4af4b9127d5f1fc19e118a4cc97d05f2
cf6a99e7dce0150b923695c7b2c425793e17effa
refs/heads/master
2021-03-22T05:02:03.423522
2016-08-22T13:51:10
2016-08-22T13:51:10
31,893,137
0
0
null
null
null
null
UTF-8
Java
false
false
1,255
java
package de.seipler.bookcollection; /** * * @author Georg Seipler */ public abstract class NamedEntity extends Entity implements Comparable { private String name; public NamedEntity() { this(ID_UNDEFINED); } public NamedEntity(int id) { super(id); setName(""); } public String ge...
[ "georg@seipler.de" ]
georg@seipler.de
4afb004a82edc4be640f087837de46ef658d2981
5b9a4c4a2cd7250d29ff5833c83efc5be136d668
/ClinicRepresentations/target/generated-sources/edu/stevens/cs548/clinic/service/web/rest/data/RadiologyType.java
c2b74433ff2a3eebd331c365b59f9b4d6a017160
[]
no_license
ShristiH/Clinic-App
931b5d793cef6d826f78fca6f008f50e816904d1
c77c1bc28b80d27ddcc3c0e3cabcb1aadd4a0bcf
refs/heads/master
2021-01-10T15:43:12.726224
2016-01-02T23:56:21
2016-01-02T23:56:21
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,398
java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 // 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.11.14 at 01:10:...
[ "shingle@stevens.edu" ]
shingle@stevens.edu
608bfa37e952faf0b5bd4e3ee59d1b9ecc4f16c7
e3f340cc5040b1a40f2c7e965c3c6062f4e77494
/test/africa/semicolon/deitelExercises/tddTest/chapter_4/GasMileageTest.java
d22b88e5851454f95d56b19c489f73bcec81630b
[]
no_license
IfeanyiOsuji/Semicolon_Cohort-7-Exercises
cfde5470f4b4ed33197ca26fee29ecc0fa256518
1eb444df5c341dfcf114c899c7cd632f4cb7dec2
refs/heads/main
2023-07-30T19:57:18.496037
2021-09-12T19:54:53
2021-09-12T19:54:53
366,236,390
0
0
null
null
null
null
UTF-8
Java
false
false
1,043
java
package africa.semicolon.deitelExercises.tddTest.chapter_4; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; @DisplayName("Gas Mileage") public clas...
[ "oindubuisi@gmail.com" ]
oindubuisi@gmail.com
cb8195bd3874da897b90f84cce4897d25b2fe126
126737f19665eb481721835078e9c0eed8188b98
/common-contentlang/src/main/java/jade/content/OntoACLMessage.java
c8e6a9d3fd5640b4595b2a361a59a5c5c9894154
[]
no_license
Maatary/ocean
dbf9ca093fbbb3350c9fb951cb9c6c06847846c2
975275d895d49983e15a3994107fe7f233dfc360
refs/heads/master
2021-03-12T19:55:15.712623
2015-03-25T00:44:42
2015-03-25T00:45:22
32,831,722
0
0
null
null
null
null
UTF-8
Java
false
false
4,232
java
/** * *************************************************************** * JADE - Java Agent DEvelopment Framework is a framework to develop * multi-agent systems in compliance with the FIPA specifications. * Copyright (C) 2000 CSELT S.p.A. * * GNU Lesser General Public License * * This library is free software;...
[ "okouyamaatari@gmail.com" ]
okouyamaatari@gmail.com
695ecb9faaee2fe438d1573224c71881ce0d1d16
7fcb1bf31b2d952249378d477f74e21d73dc8bf3
/src/P339BXeniaAndRingroad.java
ce9738585018f39dea6ff36c17ffad05225ffcfa
[]
no_license
rebeckao/CodeForcesProblems
2e186889ca5534c19065c7fd4ffa26365e802a05
765c771809de3c4f55d2063ddb33ee997e4ed2a4
refs/heads/master
2021-09-11T00:13:52.776591
2018-03-19T16:47:19
2018-03-19T16:47:19
115,915,870
0
0
null
null
null
null
UTF-8
Java
false
false
1,050
java
import java.math.BigInteger; import java.util.Scanner; public class P339BXeniaAndRingroad { public static void main(String[] args) { Scanner in = new Scanner(System.in); int numberOfHouses = in.nextInt(); int numberOfTasks = in.nextInt(); int previousHouse = 1; BigInteger ...
[ "jkvastad@gmail.com" ]
jkvastad@gmail.com
8ba95ae7e3d93d6de4e970eb135b97b8c63e1e35
88a6154c5090f7f9b2cd8b275e086968b05081d6
/src/main/java/dev/wuffs/itshallnottick/ItShallNotTick.java
de427d8b521e682c165da4b03171534ba5d63028
[]
no_license
nanite/ItShallNotTick
be619f0c337475c7e795b4f4127349a9b8702e79
f0f1d4fe13416ee87b8c3e2650822b2af48df638
refs/heads/main
2023-06-10T15:42:57.749694
2022-08-24T21:26:21
2022-08-24T21:26:21
487,550,995
0
3
null
null
null
null
UTF-8
Java
false
false
2,068
java
package dev.wuffs.itshallnottick; import dev.wuffs.itshallnottick.integration.FTBChunks; import dev.wuffs.itshallnottick.network.PacketHandler; import dev.wuffs.itshallnottick.network.SendMinPlayerPacket; import net.minecraft.server.level.ServerPlayer; import net.minecraftforge.api.distmarker.Dist; import net.minecraf...
[ "gaz492@gmail.com" ]
gaz492@gmail.com
197d04c2db7e820b0ce0290d59372a64ae0d741a
8af73b97c606d5ad0b0acba3463cbb4a4bbf2eef
/src/com/javarush/test/level08/lesson11/home02/Solution.java
08c26e3fabfa8799991ef7e59f5b4b1260894772
[]
no_license
alimogh/JavaRush
4d93d9b363344ea98ed3143c221b0f8107156ffb
6e164e50bc326d832d613639a4946a5c5af91f77
refs/heads/master
2021-05-31T07:36:29.760973
2016-03-04T11:31:11
2016-03-04T11:31:11
294,372,520
1
0
null
2020-09-10T10:04:29
2020-09-10T10:04:28
null
UTF-8
Java
false
false
3,131
java
package com.javarush.test.level08.lesson11.home02; import java.util.HashSet; import java.util.Iterator; import java.util.Set; /* Множество всех животных 1. Внутри класса Solution создать public static классы Cat, Dog.+ 2. Реализовать метод createCats, котороый должен возвращать множество с 4 котами.+ 3. Реализовать м...
[ "kolyannow@gmail.com" ]
kolyannow@gmail.com
a67b4d9afc70b668d4e1cbd9e1a8a514f5702926
53ad8c9f75de09a1335dd0adfc6f7cd19d3a88fe
/src/main/java/com/chupin/ibanvalidator/validator/IbanFileListReader.java
7aa5ca2e87dfea9a0139ca199fccc242944601fc
[]
no_license
Hleb-Chupin/ibanValidator
485b47c5ff91e3997f8366aca26fa5a3f158add5
d047acc47df9a4ec966a01ae3caafcd8a945e7ac
refs/heads/master
2020-09-09T19:04:04.284065
2019-11-13T19:37:36
2019-11-13T19:37:36
221,536,595
0
0
null
null
null
null
UTF-8
Java
false
false
1,785
java
package com.chupin.ibanvalidator.validator; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; import javax.xml.bind.ValidationException; import java.io.FileWriter; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Paths; import j...
[ "chupin.gleb@me.com" ]
chupin.gleb@me.com
d27a4655ce95b8e95de2ed661e998ee0450a06d7
596f96b33b8d4e20dabab73e2da665c3d455a0f2
/sofa-ark-parent/core/spi/src/main/java/com/alipay/sofa/ark/spi/constant/Constants.java
4836c51ea71a904e74ccad9e1fc771832f52b286
[ "Apache-2.0" ]
permissive
jackge007/sofa-ark
5f5f68c55c8c0dc9b80225ae1e723d32bbce00a9
5d15c3fa1ae5e57778febfcec78ac5ccf8926cdc
refs/heads/master
2020-04-25T13:51:04.199821
2019-02-25T09:52:13
2019-02-25T09:52:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,409
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 ...
[ "abby.zh@antfin.com" ]
abby.zh@antfin.com
f9cb1cfe0c0ce4750008811ae29c7247b87235ee
c99f445a9e71103eb824e718ab01a322e241844d
/SD2x Homework7/src/RandomizedMazeGame.java
19a193bebc059362d50a6c5a69f393a7b25bb96e
[]
no_license
Afrim124/SD2x_Data-Structures-and-Software-Design
489ea32a75027fe3065bbf36063475bdfd3e427c
8da224aee40de175b64304617db46e0efedb3cdb
refs/heads/master
2022-11-09T00:18:16.111358
2020-06-30T15:10:53
2020-06-30T15:10:53
276,129,986
1
0
null
null
null
null
UTF-8
Java
false
false
358
java
import java.util.Collections; import java.util.Random; public class RandomizedMazeGame extends MazeGame { public RandomizedMazeGame() { super(); } public Maze randomize(int roomNumbers) { Random r = new Random(roomNumbers); MazeGame mazegame = new MazeGame(roomNumbers); //Collections.shuffle(mazegame.maze...
[ "afrimbesten@gmail.com" ]
afrimbesten@gmail.com
a4764bae4a4375d9d7c13eba12c132ff614d3217
fa51a28c045621912eb1dc08416070d0f8c9cb78
/src/main/java/com/subra/model/CustomerRepository.java
05a5eac45204d2b800762cc005b153b3687fe1b0
[]
no_license
sdass/spring-mongo
2b8124e58458b9492cf47c9a069c76d34bafc8c4
a3e11d641bd68d3d83c6b07cae67ae1538ef1e01
refs/heads/master
2020-08-29T03:23:17.891158
2019-10-27T20:05:43
2019-10-27T20:05:43
217,909,325
0
0
null
null
null
null
UTF-8
Java
false
false
600
java
package com.subra.model; import java.util.List; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.mongodb.repository.MongoRepository; import org.springframework.data.mongodb.repository.Query; import org.springframework.stereotype.Repository; ...
[ "sdass@drf.com" ]
sdass@drf.com
6d51d2190d3e35b14ad77c7829cd0ea043aeb5ad
6453f9f46528830e53442af2fcba1a4942b8d87c
/6_collections/oefeningen/COL_Oef3/src/ui/CryptoGraphieApplicatie.java
57763fc1d2a4124087ee177ecdef927406751f9b
[]
no_license
henridev/object-oriented-programming-II
6bcd10853d17a6df4411046ef69ebd6c0310c461
40101121ae4856dd8f87478339d6b923ecc2632c
refs/heads/main
2023-04-16T08:24:31.045475
2021-04-25T16:10:25
2021-04-25T16:10:25
337,959,771
0
0
null
null
null
null
UTF-8
Java
false
false
613
java
package ui; import domein.DomeinController; public class CryptoGraphieApplicatie { private DomeinController dc; public CryptoGraphieApplicatie(DomeinController dc) { this.dc = dc; } public void start() { dc.codeerBericht("angstschreeuw"); System.out.println(dc.getGecodeerdBeri...
[ "henri.de-bel@capgemini.com" ]
henri.de-bel@capgemini.com
04fbf24d59d3ccbd0f7f5c79d89df05aaabfb291
086df42272528be7b414dcd6c05d74e04a939aef
/src/main/java/esprit/fgsc/PROJETMICROSERVICES/services/ProjetService.java
e6ab9300962d170ce392314ddcb1fd3eb407c48a
[]
no_license
ESPRIT-TWIN-MICROSERVICES-FGSC/PROJET_MICROSERVICE
b02be086a5aadfe1ada08b186422e443e9b591ac
cc2a288fa03902ad2a87ed0311c4c162e9027610
refs/heads/main
2023-08-24T04:46:14.391618
2021-10-28T00:28:42
2021-10-28T00:28:42
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,520
java
package esprit.fgsc.PROJETMICROSERVICES.services; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import esprit.fgsc.PROJETMICROSERVICES.entities...
[ "ghada.khedri1@esprit.tn" ]
ghada.khedri1@esprit.tn
b21dc54dfeca12a2fbc6ff5619fb18ff92e7883b
336db3411a181742710b4e135cdeb58cad706f26
/gis_game/src/File_format/Csv2Game.java
7dfe38c4f53031ccaed668f6ae40ad5dedb48923
[]
no_license
8onlichtman/gis
cc496c13c14b7b347d42660752e181e55527768d
78f497599d4711df4cdf49db107be9817fbed794
refs/heads/master
2020-04-08T11:26:10.491890
2018-12-30T12:36:15
2018-12-30T12:36:15
159,303,883
0
0
null
null
null
null
UTF-8
Java
false
false
2,427
java
package File_format; import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; import Coords.Lat_lon_alt; import game_elements.Fruit; import game_elements.Game; import game_elements.Packman; /** * This class converts a csv file to a game. * @author Eitan Lich...
[ "8onlichtman@gmail.com" ]
8onlichtman@gmail.com
9443d04cc51be151ae15e998926b2cda136b8a37
6c0ed5bd14412605f06513f620792bf293504202
/poverenik/src/main/java/rs/pijz/server/poverenik/soap/client/IzvestajClient.java
6d9e75abf994cc1c3396f111f2c49d9796f6f09b
[]
no_license
gagi3/XML-2020
af05b1f3df1f73ef3c83398c869d968c490ff960
1d3b8b5f91f2e4b2a74deed24143a78b90e06625
refs/heads/dev
2023-03-01T21:50:16.732434
2021-02-06T22:07:35
2021-02-06T22:07:35
319,427,300
0
1
null
2021-02-06T16:34:17
2020-12-07T19:48:09
Java
UTF-8
Java
false
false
1,643
java
package rs.pijz.server.poverenik.soap.client; import org.springframework.ws.client.core.support.WebServiceGatewaySupport; import org.springframework.ws.soap.client.core.SoapActionCallback; import rs.pijz.server.poverenik.model.izvestaj.Izvestaj; import rs.pijz.server.poverenik.soap.communication.izvestaj.ExchangeIzve...
[ "djordjesevic@gmail.com" ]
djordjesevic@gmail.com
3d0b49a569955b714450448162c0bbbf1bf50428
0655766295c16f9d82036c17cb1e051957f3a6cc
/src/main/java/fr/insa/fmc/javaback/wrapper/AuthentificationTokenWrapper.java
9abe439e12005b6e98c6ebbc576ba008cebc65b2
[]
no_license
hexif2019/fmc-java-back
f86096f49bf2354cd52058e21e716180c8bad5dc
ead72d8bed0195b17f5b8b14673448820080755b
refs/heads/master
2020-03-13T12:17:35.815888
2018-05-04T07:20:58
2018-05-04T07:20:58
131,116,298
0
0
null
2018-05-04T02:44:58
2018-04-26T07:22:17
Java
UTF-8
Java
false
false
409
java
package fr.insa.fmc.javaback.wrapper; public class AuthentificationTokenWrapper { private String email; private String token; public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getToken() { return to...
[ "wsr10000@hotmail.com" ]
wsr10000@hotmail.com
c54f3383fade56f4606ef8b15d02f294cc72bef9
33b333ac9411247f544724fd90ef907eeea4ab4e
/src/com/elecfreaks/bleexample/MyArray.java
8fef6e971ae7399009610c77f515c76738b22b74
[]
no_license
varoteamulya/Final-Year-Bachelor-of-Engineering-project-2016
9ebca3285f5b8b02dfe5d4ff9076fc99014aaf38
845ae5e6a377aa463cfabb8e2a8dd1234a4712c6
refs/heads/master
2021-04-09T10:22:15.318216
2018-03-15T05:00:05
2018-03-15T05:00:05
125,314,369
0
0
null
null
null
null
UTF-8
Java
false
false
524
java
package com.elecfreaks.bleexample; public class MyArray { static public byte[] arrayCat(byte[] buf1,byte[] buf2){ byte[] bufret=null; int len1 = 0; int len2 = 0; if(buf1 != null) len1 = buf1.length; if(buf2 != null) len2 = buf2.length; if(len1+len2 > 0) b...
[ "varoteamulya" ]
varoteamulya
819a6a5bc7c6009d4623f47b4ccbb566e6384ea4
db6859dc99912ece5f9333aa7ab1d4d50c9a146c
/src/main/java/com/example/algamoney/api/token/RefreshTokenCookiePreProcessorFilter.java
af891a5b5eacc2ede6c695dfdefbc9e74be2b962
[]
no_license
vjmp06/algamoney-api-04
918df74ac91fc4abfa559f4a0988f36ee845e83b
458b086491996ea046e4f6ff45e3aa7828aa6d42
refs/heads/master
2020-04-07T17:56:15.538357
2018-11-21T23:57:31
2018-11-21T23:57:31
158,590,074
0
0
null
null
null
null
UTF-8
Java
false
false
2,021
java
package com.example.algamoney.api.token; import java.io.IOException; import java.util.Map; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import javax.se...
[ "vinicius_moreira06@hotmail.com" ]
vinicius_moreira06@hotmail.com
3f2ba8350e2284d8507999652b1372e2a8d6f4d7
1f207999be869a53c773c4b3dc4cff3d78f60aca
/ybg_base_jar/src/main/java/com/alipay/api/response/ZhimaMerchantOrderRentModifyResponse.java
a1c221b6680e639427549a804eba36cd1eb16bf7
[]
no_license
BrendaHub/quanmin_admin
8b4f1643112910b728adc172324b8fb8a2f672dc
866548dc219a2eaee0a09efbc3b6410eb3c2beb9
refs/heads/master
2021-05-09T04:17:03.818182
2018-01-28T15:00:12
2018-01-28T15:00:12
119,267,872
1
1
null
null
null
null
UTF-8
Java
false
false
355
java
package com.alipay.api.response; import com.alipay.api.AlipayResponse; /** * ALIPAY API: zhima.merchant.order.rent.modify response. * * @author auto create * @since 1.0, 2017-05-25 14:35:11 */ public class ZhimaMerchantOrderRentModifyResponse extends AlipayResponse { private static final long serialVersionUI...
[ "13552666934@139.com" ]
13552666934@139.com
8cc969570cb70d17c0ac0372316896db0f597fe9
15809c170be102b04c93617d8912944795480c8c
/src/main/java/com/excelsiormc/excelsiorsponge/excelsiorcore/services/chat/ChatPlayerTitle.java
b6a9ee26ab0640aa0e808ab68054c620902f9706
[]
no_license
Jimmeh94/ExcelsiorSponge
0de39e619bf35accf0d66e061667ccbabb080665
24b94332c883d68ee98a5818e2a09bab3ebf8f31
refs/heads/master
2020-03-28T16:29:26.750255
2018-10-18T21:33:59
2018-10-18T21:33:59
148,700,769
0
0
null
null
null
null
UTF-8
Java
false
false
289
java
package com.excelsiormc.excelsiorsponge.excelsiorcore.services.chat; public enum ChatPlayerTitle { TEST("Test"); private String display; ChatPlayerTitle(String display){this.display = display;} public String getDisplay(){ return "[" + display + "] "; } }
[ "jimmy.walters94@yahoo.com" ]
jimmy.walters94@yahoo.com
c166267424f114816a669b61dcb5deaac8823a1e
de91657cdaf0d5f582beda30274c01675899b9f5
/JavaProgramming/src/ch04/exma02/DowhileExample.java
b35d690e209b3b9ab90c78a0ecb5d4287c23e238
[]
no_license
JinByeungKu/MyRepository
98722e827e5cae9029efd146d289ad7e132371f1
e478ba492d069de53fe5a6151bb296fd2daed9d4
refs/heads/master
2020-04-12T08:49:45.275190
2016-11-16T06:12:53
2016-11-16T06:12:53
65,832,475
0
0
null
null
null
null
UTF-8
Java
false
false
222
java
package ch04.exma02; public class DowhileExample { public static void main(String[] args) throws Exception { int num =0; do{ num = System.in.read(); System.out.println(num); } while(num !=113); } }
[ "splendid1014@naver.com" ]
splendid1014@naver.com
c0f58a0e8d95e6c4c7527477c5d1b99d643f083f
ba90ba9bcf91c4dbb1121b700e48002a76793e96
/com-gameportal-admin/src/main/java/com/gameportal/manage/order/controller/CCAndGroupController.java
574e29b3dcf18acdf7d25d2dd8d9e3696995316a
[]
no_license
portalCMS/xjw
1ab2637964fd142f8574675bd1c7626417cf96d9
f1bdba0a0602b8603444ed84f6d7afafaa308b63
refs/heads/master
2020-04-16T13:33:21.792588
2019-01-18T02:29:40
2019-01-18T02:29:40
165,632,513
0
9
null
null
null
null
UTF-8
Java
false
false
3,541
java
package com.gameportal.manage.order.controller; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.annotation.Resource; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import net.sf.json.JSONObject; import org.apache.commons.lang.ObjectUt...
[ "sunny@gmail.com" ]
sunny@gmail.com
09c8b0f547eaf2434c3591ac4098b67eb21a92a0
481de44bdac308b02beef3fa6f4f4e576c44c5ff
/src/main/resources/archetype-resources/core/src/main/java/core/cache/HealthCheckResourceHystrixClientCache.java
8107acc6dea7fbded5d6352d3c2b15ff85ac45f1
[]
no_license
biins/microservice-archetype
82931baf8c74b433b691e67069e52fde132e6cb3
e3fa3e081527ce858d67b6062c98200cdcbd4f1a
refs/heads/master
2021-06-07T21:11:28.381899
2016-09-28T19:01:01
2016-09-28T19:10:06
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,086
java
package ${package}.core.cache; import java.util.Optional; import javax.inject.Inject; import ${package}.client.api.test.Message; import ${package}.client.http.HealthCheckResourceHystrixClient; import org.biins.commons.hystrix.HystrixCacheLoader; import org.springframework.cache.Cache; import org.springframework.cach...
[ "martinjanys@gmail.com" ]
martinjanys@gmail.com
b2ce1d04c2c75e12b5d307caf4dc8102be7d5635
344c15ec4918269b972fdc520d25d5739f5f12b3
/Java I Primeiros passos/Aula4/src/exercicio4/Funcionario.java
736524ac1570d362e0f06ff0a30b04a786996223
[]
no_license
ordnaelmedeiros/alura
ffe63ea17d64abf2288c041d6a2f98cbe7775fe3
199f48b8338022f93ff85de8e4a93291eeda113e
refs/heads/master
2020-04-09T04:59:17.872037
2018-08-29T09:19:24
2018-08-29T09:19:24
60,308,573
0
0
null
null
null
null
UTF-8
Java
false
false
117
java
package exercicio4; public class Funcionario { int salario; void mostra() { System.out.println(salario); } }
[ "lrmarkanjo@gmail.com" ]
lrmarkanjo@gmail.com
7dce088cd645ac66d8fd646aad26c00c2a1f5df6
5cb62785f0ae34c8be9ee9770238d40f30633901
/kodilla-testing/src/main/java/com/kodilla/testing/statistics/CalculateStatistics.java
7102b7c8230003716cdc51415c473b70feb5e85d
[]
no_license
laperacarlos/kg_kodilla_java
85a0840a965d4b304931e2220b97b9c9ac7db471
e904129c7e84907d149a66ce1bc8b9d016eaaa6d
refs/heads/master
2023-06-07T13:58:15.304245
2021-07-07T11:10:34
2021-07-07T11:10:34
317,491,703
0
0
null
null
null
null
UTF-8
Java
false
false
1,801
java
package com.kodilla.testing.statistics; public class CalculateStatistics { private Statistics statistics; private double usersNumber; private double postsNumber; private double commentsNumber; private double postPerUser; private double commentPerUser; private double commentsPerPost; p...
[ "lapera.carlos@gmail.com" ]
lapera.carlos@gmail.com
be47a172206105c28f5a6fa47ccd3fa807354c54
eb858f8e0782c9e6844377e9aa72f352cba3ad2c
/src/main/java/ydw/services/TuitionCalculatorNationalImpl.java
769437b90924a84e8d96216659a15e5f06629c4e
[]
no_license
davidye811/CS548_HW
984a1866cb72280a5f305c8e77ea401bf121d824
f5013167a6ca4be31541261b4a6c1372534641af
refs/heads/master
2021-07-18T05:46:04.195746
2017-10-23T06:03:04
2017-10-23T06:03:04
107,938,165
2
0
null
null
null
null
UTF-8
Java
false
false
1,322
java
package ydw.services; import java.util.List; import org.springframework.stereotype.Component; import ydw.domain.Course; import ydw.domain.Student; import ydw.services.TuitionCalculatorService; @Component("TuitionCalculatorNational") public class TuitionCalculatorNationalImpl implements TuitionCalculatorService { dou...
[ "davidye811@gmail.com" ]
davidye811@gmail.com
23d5629d8647a18ddeef7e1d4697ae3c381df56e
5ff40c6e3cd0423cfc5a90d8e1402881ad374126
/src/main/java/utils/LongsRef.java
3b35562ec550ccace7050c697a8bbd2d35080c92
[]
no_license
tanfengtiantian/fst
fd23b255caa641b34e372a0d7192eb0f21511943
026336978ea15aa8a95662d7527d1b315de4c2a7
refs/heads/master
2022-01-25T06:55:31.051191
2019-07-10T09:56:28
2019-07-10T09:56:28
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,055
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 ...
[ "wangshihan@lvwan.com" ]
wangshihan@lvwan.com
c1450ca20f832a3dced05b78da8f88a9602321a3
c470426361a33e5a9b1e222cffc22fff06982beb
/webshelf-business/src/main/java/org/webshelf/business/data/CassandraCluster.java
ccbc5a6c9f2eae7bdef3f84cb6ad7adcd638a7a0
[ "Apache-2.0" ]
permissive
monteirocicero/webshelf
16d8db0890c5b47669b586c1b15dfa2e01e20296
ca066541d962ba8e260576b77a59794c7da1f324
refs/heads/master
2021-01-19T05:15:56.679314
2016-08-17T00:53:46
2016-08-17T00:53:46
63,489,008
0
0
null
null
null
null
UTF-8
Java
false
false
2,562
java
package org.webshelf.business.data; import java.util.HashMap; import java.util.Map; import javax.annotation.PostConstruct; import javax.annotation.PreDestroy; import javax.ejb.Lock; import javax.ejb.LockType; import javax.ejb.Singleton; import javax.ejb.TransactionAttribute; import javax.ejb.TransactionAttributeType;...
[ "cicerolmonteiro@gmail.com" ]
cicerolmonteiro@gmail.com
56162b319401cddf1a76b7aeea6409b3a4296f81
4fde206d2b86e7426677db808c91fa590840bb03
/src/notusedclasses/MyPanel.java
fcbfc812a991c0fa4fcf4cdc5c7f6d95379ac1ea
[]
no_license
helghast79/WheelOfDeath
feccea640c56aa125b825925656ee698a90632a8
4e36f052bb14a7589d5e7835f18b8fc7ba17ea48
refs/heads/master
2021-01-10T11:36:22.207635
2016-04-28T12:06:31
2016-04-28T12:06:31
55,557,236
0
0
null
null
null
null
UTF-8
Java
false
false
2,212
java
package notusedclasses; import javax.swing.*; import javax.swing.text.FlowView; import java.awt.*; import java.awt.Font; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.RenderingHints; import java.awt.Shape; import java.awt.font.FontRenderContext; import java.awt.font.GlyphVector; import java.awt...
[ "m.a.chambel@gmail.com" ]
m.a.chambel@gmail.com
a5113b92385606499bcb99b96694ea9066fb6a24
243d49f85eef4a64851dbe30571a7dbe74f393fb
/src/com/situ/mall/controller/back/UploadController.java
bde86f3d4099b981bddb0e4681ccc8660b3fdc32
[]
no_license
lsskaixinwudi/Java1707Mall
35e4605cf930c5d528616802bd52eab4215789c4
7333e7719fab8dfc3df9f264353a9e9c7268c442
refs/heads/master
2021-07-24T12:51:19.795642
2017-11-06T09:15:58
2017-11-06T09:15:58
105,109,672
0
0
null
null
null
null
GB18030
Java
false
false
3,003
java
package com.situ.mall.controller.back; import java.io.File; import java.io.IOException; import java.util.HashMap; import java.util.Map; import java.util.UUID; import org.apache.commons.io.FilenameUtils; import org.springframework.http.MediaType; import org.springframework.stereotype.Controller; import org.springframe...
[ "17862123983@163.com" ]
17862123983@163.com
1c39a9e9f19d64109a64f39bac09ed15fae7959c
acde8cfd552f63a3087f7a50bd82570d7c0c4209
/src/main/java/com/merit/assignment6/exceptions/copy/ExceedsCombinedBalanceLimitException.java
0115ef9720a32894f765d072da5e9f396ee96529
[]
no_license
lifefromashes/assignment6_updates
c8ffbd41edfa07de83be1ce3cb5d8c4acff3c749
c68d356fd98f1a122c55c9e9e2b9a581cec3a5b9
refs/heads/master
2022-07-18T11:15:41.549868
2020-05-16T20:34:08
2020-05-16T20:34:08
264,521,092
0
0
null
null
null
null
UTF-8
Java
false
false
346
java
package com.merit.assignment6.exceptions.copy; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.ResponseStatus; @ResponseStatus(HttpStatus.NOT_FOUND) public class ExceedsCombinedBalanceLimitException extends Exception { public ExceedsCombinedBalanceLimitException(String msg)...
[ "kskipper.03@gmail.com" ]
kskipper.03@gmail.com
7ec33f768b08d2bf1b6f0bb81e29d2e95f4538c2
0c6f4a7ff7201a490e106c8fcfc121b4d8696bba
/src/mHUD/mGraphicEntity/GMonsterEntity.java
c5a95155a903551f7f4a6db5d202ddde67a3bfdf
[]
no_license
Hyper-Miiko/TowerDefence
683325b3dc3275f81be86a41f3d748dcfb6c90d5
8bc2bc0612a9de12246d3e7060684d3c8794d820
refs/heads/main
2023-03-11T13:38:51.479931
2021-02-11T14:18:40
2021-02-11T14:18:40
322,524,575
0
0
null
null
null
null
UTF-8
Java
false
false
1,415
java
package mHUD.mGraphicEntity; import java.awt.AlphaComposite; import java.awt.Image; import java.awt.image.BufferedImage; import mHUD.geometric.Vector; public class GMonsterEntity extends GPictureEntity { int spX = -1; public GMonsterEntity() { setPosition(0,0); } public GMonsterEntity(double...
[ "lodla@LAPTOP-QI3E77K6.home" ]
lodla@LAPTOP-QI3E77K6.home
4da1615725995b22cdca0b2b5c572f73d2822fdb
395fdaed6042b4f85663f95b8ce181305bf75968
/java/intelijidea/chegg-i73/src/DoubleListException.java
15f6e7f68e8e2dd2e2faee00a56109f649207b72
[]
no_license
amitkumar-panchal/ChQuestiions
88b6431d3428a14b0e5619ae6a30b8c851476de7
448ec1368eca9544fde0c40f892d68c3494ca209
refs/heads/master
2022-12-09T18:03:14.954130
2020-09-23T01:58:17
2020-09-23T01:58:17
null
0
0
null
null
null
null
UTF-8
Java
false
false
288
java
/** * DoubleListException class */ public class DoubleListException extends IndexOutOfBoundsException { DoubleListException(){ } /** * constructor with parameter * @param msg of exception */ DoubleListException(String msg){ super(msg); } }
[ "=" ]
=
1dbbec673dac1e935312d336081bb3eab0d8bc3d
776346472cdc9a3f32e01c334354daf39c47e993
/project/DuncansProject/mygooey.java
c416d4b8d22e535eac1c9423c3eabca8c4a026c5
[]
no_license
DuncanMilne/Fourth-year-project
1e65e57b84e67c9bff1e9e233be49870a1bc9393
802f477ed2f7dbd412130a827a594c88890092ea
refs/heads/master
2021-01-11T05:20:51.409514
2017-03-09T17:48:56
2017-03-09T17:48:56
71,918,892
0
0
null
null
null
null
UTF-8
Java
false
false
4,979
java
import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Text; import gurobi.GRBException; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.events.MouseAdapter; import org.eclipse.swt.eve...
[ "duncan.milne@outlook.com" ]
duncan.milne@outlook.com
455c437ca6c0c4a080f1ee3119314fa0cd2b18e3
410c3edff13b40190e3ef38aa60a42a4efc4ad67
/base/src/main/java/io/vproxy/vfd/windows/WindowsFDs.java
505a7e7a6d969709d5c1e7762af06ae8ab697b05
[ "MIT" ]
permissive
wkgcass/vproxy
f3d783531688676932f60f3df57e89ddabf3f720
6c891d43d6b9f2d2980a7d4feee124b054fbfdb5
refs/heads/dev
2023-08-09T04:03:10.839390
2023-07-31T08:28:56
2023-08-04T12:04:11
166,255,932
129
53
MIT
2022-09-15T08:35:53
2019-01-17T16:14:58
Java
UTF-8
Java
false
false
4,170
java
package io.vproxy.vfd.windows; import io.vproxy.base.util.Logger; import io.vproxy.base.util.Utils; import io.vproxy.vfd.*; import io.vproxy.vfd.jdk.ChannelFDs; import io.vproxy.vfd.posix.Posix; import java.io.IOException; import java.lang.reflect.Proxy; public class WindowsFDs implements FDs, FDsWithTap { priva...
[ "wkgcass@hotmail.com" ]
wkgcass@hotmail.com
4e437d67ec810e200dd1e519192f40b1f53f104c
198c4894cea5e82732f30c77f294e50ef448ab59
/src/main/java/io/xmljim/retirement/calculator/entity/algorithms/ParameterInfo.java
5c50ba3fdf69497fdc40b5cc6d3af128f35e7e51
[]
no_license
xmljim/calculator
d4deccc317e83fe381cfcfe2cbf64cf90e8d6d41
88806ec94793781fe2b871a160ca73a45676bf30
refs/heads/main
2023-07-17T13:21:52.807975
2021-09-07T19:34:14
2021-09-07T19:34:14
403,198,659
0
0
null
null
null
null
UTF-8
Java
false
false
595
java
package io.xmljim.retirement.calculator.entity.algorithms; import io.xmljim.algorithms.model.Parameter; import lombok.Getter; import lombok.Setter; import lombok.ToString; @Getter @Setter @ToString public class ParameterInfo { private String name; private String variable; private String parameterType; ...
[ "jearley@captechconsulting.com" ]
jearley@captechconsulting.com
5f2f9ddc92fd52d4f7c125b460edd056071776e7
b7cbb3cd7a25a1dcd976f596befec4b76cd43d15
/src/main/java/com/netty/im/common/Attributes.java
326e36dd5158f2c48c508fbc265737d6c89c3b95
[]
no_license
TimmaWang/netty-learn-im
22e6cbf6485babf375559caebba86d82c982dc6d
e16f11f4761eb7ef6d282876a62df723f21e4359
refs/heads/master
2020-04-15T05:30:48.144283
2019-01-15T09:07:40
2019-01-15T09:07:40
164,426,359
0
0
null
null
null
null
UTF-8
Java
false
false
351
java
package com.netty.im.common; import com.netty.im.auth.Session; import io.netty.util.AttributeKey; /** * Created by timma on 2018/12/11. */ public interface Attributes { public static final AttributeKey<Boolean> LOGIN = AttributeKey.valueOf("login"); public static final AttributeKey<Session> SESSION = Attr...
[ "hzwangzhichao1@corp.netease.com" ]
hzwangzhichao1@corp.netease.com
f22f895d69ddd72433b29e395918d4785dcf4b63
30194346834c2e5b4042e5dc0fbcbd187ae69bea
/app/src/main/java/timeline/lizimumu/com/log/FileLogManager.java
d7b45204230eb87f25f6693bbf142370a8b366e7
[ "MIT" ]
permissive
GeorgyYakunin/AppUsageLimit
318598294e0bff8b812236e5959a66db118dbaf5
7aae3aa42c2fc60707e84be55a4de46d01368d40
refs/heads/master
2021-01-06T12:25:08.903525
2020-02-18T09:49:03
2020-02-18T09:49:03
241,325,075
0
1
null
null
null
null
UTF-8
Java
false
false
2,335
java
package timeline.lizimumu.com.log; import android.os.Environment; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.PrintWriter; import timeline.lizimumu.com.AppConst; /** * Log to file * Created by zb on 02/01/2018. */ public...
[ "jrayg95@gmail.com" ]
jrayg95@gmail.com
9122263cd423da62d91e822b22f7c5b788d53709
479f01152146181f9c582719f08a8018c2a748a8
/List5/src/main/java/com/inter/admin/AdminController.java
d4f710f20a340252dd89bda438bb41baaf75dcdf
[]
no_license
YeonWooSeong/set19
c78107834860bba738e7be86c68944a012875910
587c6ff71e6b4a29654406ee31210a33f4bd3419
refs/heads/master
2021-05-30T12:07:17.791847
2016-02-25T08:05:45
2016-02-25T08:05:45
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,658
java
package com.inter.admin; import java.util.List; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.Request...
[ "Administrator@MSDN-SPECIAL" ]
Administrator@MSDN-SPECIAL
e9bdeb6dd74dda9f56d92ad3e1e06b101e064de7
e866bd9d56d6faee468745a6adf68ffcdd3591bc
/src/main/java/org/kungfu/classAttendance/Class_Attendance.java
9afcd7e359c0bdf09d5f45a998d747f08c875e8b
[]
no_license
eshan-gill/Kung-Fu
7a0c334954fb3d4bf155134dabe56716e62015ab
9b228d0bcb2ecf62b2c3dfefad5b9553f525b00c
refs/heads/master
2020-03-27T21:19:34.089985
2018-09-03T01:13:38
2018-09-03T01:13:38
147,135,172
0
0
null
null
null
null
UTF-8
Java
false
false
1,947
java
package org.kungfu.classAttendance; import java.sql.Date; import java.util.ArrayList; import java.util.Collection; import javax.persistence.CascadeType; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.p...
[ "eshangill93@gmail.com" ]
eshangill93@gmail.com
c52d28dab173883d4908b097cd5975cde3ffa219
da546bfec1fcacfce81005a794a9ca1ad535d38e
/src/com/JVComponents/Plugin/JVPluginElementToolbar.java
23c9031032365f4353a1bfb6d6cf16fbd4b5b1bc
[]
no_license
453897806/JavaVisualComponents
40abb31dc787c9abd9c33e548ebff0a079e14e9b
54b227a72922d17a6f9199396abdb840d4ffc66b
refs/heads/master
2020-03-28T20:37:49.372874
2019-01-30T08:30:49
2019-01-30T08:30:49
149,088,864
0
0
null
null
null
null
UTF-8
Java
false
false
922
java
package com.JVComponents.Plugin; import org.dom4j.Element; import com.JVComponents.core.JVConfigXMLAttribute; import com.JVComponents.core.JVConfigXMLFile; import com.JVComponents.core.JVConsts; import com.JVComponents.core.JVException; public class JVPluginElementToolbar extends JVPluginElement { private JVConfig...
[ "bob@localhost" ]
bob@localhost
31d561e67883b53893e497008c73e47c995734ab
c18c3f3bdc51f048f662344d032f9388dfecbd9d
/ddf-parent/ddf-service-student/src/main/java/com/ddf/student/api/BaseApi.java
bd139d34fdc8d560458aa340bd816248fbe9d451
[]
no_license
soldiers1989/my_dev
88d62e4f182ac68db26be3d5d3ddc8a68e36c852
4250267f6d6d1660178518e71b1f588b4f3926f7
refs/heads/master
2020-03-27T19:39:28.191729
2018-02-12T02:29:51
2018-02-12T02:29:51
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,245
java
package com.ddf.student.api; import java.beans.PropertyEditorSupport; import java.util.Date; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.web.bind.WebDataBinder; import org.springframework.web.bind.annotation.InitBinder; import com.ddf.util.DateUtil; /** * 控制器支持类 * @author ...
[ "huayan333" ]
huayan333
f459f75d774c28aa27126e7340d823ca7b915f11
f82b6c599b85f46a93a28193e2f465acc350735b
/src/test/java/com/whatslly/rest/api/testing_project/NegativeTestWrongEndpoint.java
78b588eceed99b38046385c39ffefebe31a53976
[]
no_license
Hodiya2929/REST-API-testing-project
ffa72ecfd7a664a95288600d5bef1367558cc7de
6ab09440f5a784c545c9ee2c14103ab5c1f564ce
refs/heads/main
2023-04-15T21:22:16.609452
2021-04-21T09:44:46
2021-04-21T09:44:46
359,945,585
0
0
null
2021-04-21T09:44:47
2021-04-20T20:41:12
HTML
UTF-8
Java
false
false
867
java
package com.whatslly.rest.api.testing_project; import org.testng.annotations.Test; import io.restassured.RestAssured; import io.restassured.config.SSLConfig; import tests.data.DataProviders; public class NegativeTestWrongEndpoint extends AbstractTest { @Test(dataProvider = "unvalidEndpoints", dataProviderClass = D...
[ "hodiya.eyal@gmail.com" ]
hodiya.eyal@gmail.com
768fceb7072084ed5e8e16b215b412c038c8ee5e
282465c815ff20165481197bf5287341baf42311
/webapp.bak/src/main/java/com/cloudlbs/web/client/composite/RegisterUserSuccess.java
97533ebce90887609bda4e3f60961faf83a84577
[ "MIT" ]
permissive
dmascenik/cloudlbs
d47276919c8f5f9764d0e0cf3bdf7ca48a34a3b8
97d3493e82edd9cb0a7995d588b26a4808b4f79f
refs/heads/master
2020-05-09T14:28:44.279834
2015-09-07T15:51:15
2015-09-07T15:51:15
42,061,241
0
0
null
null
null
null
UTF-8
Java
false
false
1,376
java
package com.cloudlbs.web.client.composite; import com.google.gwt.user.client.ui.Composite; import com.google.gwt.user.client.ui.VerticalPanel; import com.google.gwt.user.client.ui.Label; import com.google.gwt.user.client.ui.Button; import com.google.gwt.user.client.ui.HasHorizontalAlignment; import com.google.g...
[ "dan@cloud-lbs.com" ]
dan@cloud-lbs.com
aad650ab8121f5ebd4e476da497ac8821f627d5e
acfa94fa53b1f78501153614132e7c671f815ae9
/src/main/java/com/ync365/oa/repository/PeControllerDao.java
267f6a3514f6623fe53e30c3e87665499ad6a2bb
[]
no_license
haagensensusanne53/ync_kpi
9e6bddcb688aa5e1b9413119c018b29d0cb0d8d5
e3a82158d64f3a9cdb571f04f1ede55755416f21
refs/heads/master
2023-07-20T19:13:41.120040
2017-07-17T13:27:05
2017-07-17T13:27:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
604
java
package com.ync365.oa.repository; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.JpaSpecificationExecutor; import org.springframework.data.repository.PagingAndSortingRepository; import com.ync365.oa.entity.PeController; pub...
[ "lianok2008@163.com" ]
lianok2008@163.com
e304114215c6df6669c08c22fc7ce008494da78d
fa1408365e2e3f372aa61e7d1e5ea5afcd652199
/src/testcases/CWE197_Numeric_Truncation_Error/s01/CWE197_Numeric_Truncation_Error__int_console_readLine_to_byte_71b.java
a1adebb08d30fa135f080b6b4ec80ff3456fe7d2
[]
no_license
bqcuong/Juliet-Test-Case
31e9c89c27bf54a07b7ba547eddd029287b2e191
e770f1c3969be76fdba5d7760e036f9ba060957d
refs/heads/master
2020-07-17T14:51:49.610703
2019-09-03T16:22:58
2019-09-03T16:22:58
206,039,578
1
2
null
null
null
null
UTF-8
Java
false
false
1,435
java
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE197_Numeric_Truncation_Error__int_console_readLine_to_byte_71b.java Label Definition File: CWE197_Numeric_Truncation_Error__int.label.xml Template File: sources-sink-71b.tmpl.java */ /* * @description * CWE: 197 Numeric Truncation Error * BadSource: console_re...
[ "bqcuong2212@gmail.com" ]
bqcuong2212@gmail.com
25cbddfa0a2d0a1db9074db86dd5fc0387bdb8f1
f91017917be578a0a490dbf7c8553c26459beaf3
/fw-core/src/main/java/com/seeyu/core/utils/BaseJsonData.java
2fea27899956b1ed24457fd0c72204ff1d0ef9dc
[]
no_license
zhaoyongchao1991/seeyu-framework
63195e62ec1ca823b73f468d175706ddf1554fbe
0a3c43c5d4383926190ec7303ba2e03f4c9e28a5
refs/heads/master
2022-12-22T03:32:02.432110
2019-12-10T12:13:54
2019-12-10T12:13:54
210,003,953
0
0
null
2022-12-10T05:21:23
2019-09-21T14:57:34
Java
UTF-8
Java
false
false
1,755
java
package com.seeyu.core.utils; import lombok.Getter; import lombok.ToString; @ToString public class BaseJsonData<T> extends ServiceData<T> { protected Exception exception; protected String exceptionMessage; protected Integer code; @Getter protected Long timestamp; public BaseJsonData() { ...
[ "zhaoyc@jieyundata.com" ]
zhaoyc@jieyundata.com
d591e0ef1e84078bf2ba39afdd7611187c822ce8
e7403e990fa6f023bd20980b35f3e5518d585542
/JSP/myweb2/src/listo/bbs/model/BbsDAO.java
7d23b5278a66abce8bb3a3c944299f7c850da92b
[]
no_license
fivingo/ildream_jsp
1e76e931d61be66580e8ed6de1507e3b667933cd
fef74d5780bf43946085b8abeedcdd3de0be04b1
refs/heads/master
2022-03-15T14:20:24.630824
2019-11-17T14:45:56
2019-11-17T14:45:56
222,226,434
0
0
null
null
null
null
UTF-8
Java
false
false
6,403
java
package listo.bbs.model; import java.sql.*; import java.util.ArrayList; import oracle.net.aso.s; public class BbsDAO { private Connection conn; private PreparedStatement ps; private ResultSet rs; public static final int ERROR = -1; public BbsDAO() { } /** 총 게시글 개수 관련 메서드 */ public int getTotalCount() { ...
[ "fiving@naver.com" ]
fiving@naver.com
b7e93963b965b520c6376d8769b13c25a9d68aa1
1518c5b0007498020cd63df585d9d296be892b24
/src/main/java/com/nhat/naschool/dto/UserRegistrationDto.java
3c2420a9083d6562059b95919facd65d73717ce1
[]
no_license
NguyenNhat98/NaSchool
ea3c2fce932101f02e1062e75b07775a829b749a
449e949f79ca1970cf544a65b1920e07cebdead4
refs/heads/master
2023-05-25T22:37:08.153440
2021-06-01T10:57:08
2021-06-01T10:57:08
281,342,301
0
0
null
2021-06-01T10:51:17
2020-07-21T08:36:43
CSS
UTF-8
Java
false
false
679
java
package com.nhat.naschool.dto; public class UserRegistrationDto { private String name; private String email; private String password; public UserRegistrationDto(){ } public UserRegistrationDto( String name, String email, String password) { this.name = name; this.email = email; this.password = p...
[ "NhatNV62@wru.vn" ]
NhatNV62@wru.vn
e3a0bf8829785daa3cd9e642a8a317456d0d99f3
a01906e1949c482f18447874c534826099f7d951
/src/main/java/org/shannon/function/ExceptionalSupplier.java
27f97576e66fe889801a07b14f3ba10a1cf62319
[ "Apache-2.0" ]
permissive
Lwelch45/ShardAllocator
1a2c8b673b79c6caacf46d5597777bb294e2b12b
904b11c628a8e19b4ebaa97cdf22aff29f8a0a03
refs/heads/master
2020-12-30T16:02:07.042203
2017-05-10T23:39:24
2017-05-10T23:39:24
null
0
0
null
null
null
null
UTF-8
Java
false
false
150
java
package org.shannon.function; @FunctionalInterface public interface ExceptionalSupplier<E extends Throwable, T> { public T get() throws E; }
[ "smonasco@gmail.com" ]
smonasco@gmail.com
9cc90ea21543ed7673ed27bdb5efab9b69941854
e6e3bc6aaaae82d346fdb8acb51ee87e907bdaa8
/src/main/java/com/fiona/test/App.java
993f3d30702bdd1aaa472105abf989ecff3b3d20
[]
no_license
linafeng/test
cb563322ba7c65efd1f0aacd1e7e999b829d4256
a925a96b2bb09e2b8e041c37ddf207f625f39dd9
refs/heads/master
2020-03-19T09:26:53.923314
2018-06-06T10:00:13
2018-06-06T10:00:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
177
java
package com.fiona.test; /** * Hello world! * */ public class App { public static void main( String[] args ) { System.out.println( "Hello World!" ); } }
[ "lina.feng@gentinghk.com" ]
lina.feng@gentinghk.com
aa6265f8569efdf3cf63e887c48541369dcafa24
85ff83205299a337f9912abe3b1d08d90afa4416
/MLKit-Sample/module-text/src/main/java/com/huawei/mlkit/sample/camera/LensEnginePreview.java
c518def83f0bd4172a979b73c818e2372ba188e1
[ "Apache-2.0" ]
permissive
Hasnainninesol/hms-ml-demo
3b3d694431b5d2db45a4c4a4293f73a58dbd2543
a672a2dd4bae002f92c684980b9815f64f302bf3
refs/heads/master
2023-01-14T04:47:30.970599
2020-11-19T07:50:59
2020-11-19T07:50:59
null
0
0
null
null
null
null
UTF-8
Java
false
false
12,095
java
/** * Copyright 2018 Google LLC * * 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 l...
[ "niechaopeng@huawei.com" ]
niechaopeng@huawei.com
3823339870ef491577305348282f72531257cdc4
fadfbc8894fbde6a92cd630cf7ae80678520a670
/app/src/main/java/com/testapp/krish/firstapp/Day3/User.java
01e0f8af2adf2fc052f94f24b09612dd2929607e
[]
no_license
anuvhab/AndroidCS473
ff84ab56f8dbbc2595a30e2757afd35d72a31329
3e1d3cc3dfc598ec551145b452e7737725b2c54c
refs/heads/master
2020-03-08T07:39:05.959599
2018-04-09T16:08:44
2018-04-09T16:08:44
127,999,713
0
0
null
null
null
null
UTF-8
Java
false
false
603
java
package com.testapp.krish.firstapp.Day3; public class User { private String firstName, lastName, eMail, password; public User(String firstName, String lastName, String eMail, String password) { this.firstName = firstName; this.lastName = lastName; this.eMail = eMail; this.passwo...
[ "krishna.k.kc@gmail.com" ]
krishna.k.kc@gmail.com
24de8db036be30d267d101cc85aa7b249553b61a
014df7612f49a590c5927ddaff8eae529bf1f111
/src/com/wolfgames/framework/impl/AndroidGraphics.java
ea88f56a4af1d65538f018f312bdfe900139eb90
[]
no_license
vvolkov-dev/tutorial
f95f593b2bc655bc0e754bd95aa4c99fac27baee
91def5583ad1a5dbf9ad6ff0bca796bc4cffbd5e
refs/heads/master
2021-05-31T16:02:14.766114
2015-11-05T16:42:15
2015-11-05T16:42:15
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,709
java
package com.wolfgames.framework.impl; import java.io.IOException; import java.io.InputStream; import com.wolfgames.framework.Graphics; import com.wolfgames.framework.Pixmap; import android.content.res.AssetManager; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Canvas;...
[ "murdoc50@gmail.com" ]
murdoc50@gmail.com
1984fe4bfdeda9edb356a219ecc2aec01c8123a3
8467168a1c6e238070431d71363e4012f7741642
/src/main/java/org/primefaces/model/charts/optionconfig/elements/Elements.java
cdbaf30babcb37c7912ade17bf6ca2d0fba82d7f
[ "Apache-2.0" ]
permissive
vmmang/primefaces
d19d2497f73806abda53af0032f77abf5a3064b4
8da74386842343a4eb60ebb219e18b422553eec8
refs/heads/master
2020-04-01T18:07:16.918398
2018-10-19T10:28:49
2018-10-19T10:28:49
153,472,523
0
0
Apache-2.0
2018-10-22T09:47:53
2018-10-17T14:37:32
Java
UTF-8
Java
false
false
3,837
java
/** * Copyright 2009-2018 PrimeTek. * * 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 ...
[ "sincan.mert@gmail.com" ]
sincan.mert@gmail.com
eb3492b9cb1d7469c8b412ac78aed884030b2666
6f367ae346b8b433e5ab881e96b55018c5c22b13
/src/main/org/repastbs/xml/XMLSerializable.java
c94335f570632704d003f182a48d0be4318552ee
[]
no_license
blackaceatzworg/repastbs
e6447c6fd1f459dd24d7bd7703e32968d1c3b81f
d353621b4d9a31210fd8cb4d54a7039f31d9e538
refs/heads/master
2020-05-19T18:46:21.055952
2013-10-23T23:34:11
2013-10-23T23:34:11
null
0
0
null
null
null
null
UTF-8
Java
false
false
779
java
/** * File: XMLSerializable.java * Program: Repast BS * Author: Ľudovít Hajzer, Zdenko Osina * Master's Thesis: System Repast * Supervisor: Ing. Ladislav Samuelis, CSc. * Consultant: László Gulyás, Ph.D. */ package org.repastbs.xml; import org.dom4j.Node; import org.xml.sax.ContentHandler; /** * XML Serializ...
[ "zdeno.osina@gmail.com" ]
zdeno.osina@gmail.com
31dcdd9a3dda2ab0ab510b8447f499c17ac4b755
962f77f9aa7feb069a814f8fbc7caf0165f1c736
/src/main/java/net/porillo/ChatVariable.java
292976c3373b74ad4e409ac1c665aae279d3bce1
[]
no_license
nsporillo/ColoredGroups
2aae2b8294cd40572f7881e3192937fff2a2d0ff
5662d4c4493707829861d7b4569fc256a4d1c3af
refs/heads/master
2021-01-18T22:41:40.519922
2019-09-29T14:02:03
2019-09-29T14:02:03
6,397,776
1
1
null
null
null
null
UTF-8
Java
false
false
463
java
package net.porillo; import lombok.AllArgsConstructor; import lombok.Data; import org.bukkit.entity.Player; @Data @AllArgsConstructor class ChatVariable { private String root, replace, permission; ChatVariable(String root, String replace) { this(root, replace, "coloredgroups.variables." + root.repla...
[ "nsporillo@gmail.com" ]
nsporillo@gmail.com
537abb9a625efb477316e03e7dbc8a59bd1c160c
97f1ca22560bafb2421855a0009808d0735cb288
/wk03/src/d03ws02.java
6b8c0e71014de710c0b3f510eb2b36acfbb44ed0
[]
no_license
greenfox-zerda-raptors/bncbodrogi
588efd106b47c99a68dfeeffbe2eabc1ec2cf064
c5f2166222690cf7783e8b22777d8b2afbf5d09a
refs/heads/master
2021-01-12T18:15:12.653456
2017-02-17T08:54:31
2017-02-17T08:54:31
71,352,001
0
0
null
null
null
null
UTF-8
Java
false
false
382
java
public class d03ws02 { public static void main(String[] args) { int[] p1 = new int[] { 1, 2, 3 }; int[] p2 = new int[] {4, 5 }; // tell if p2 has more elements than p1 int l1 = p1.length; int l2 = p2.length; if (l1 > l2) { System.out.println(l1); ...
[ "bncbodrogi@gmail.com" ]
bncbodrogi@gmail.com
b7fa51dc7d1ed336a4906e691603006c57e4a618
f10666ba6c1c5d04f7362b3ec79ed8c4df358c86
/platform/monitor/src/main/java/com/cola/platform/monitor/MonitorServerRunner.java
8342de5f55d3a5d9ada6fbafe02a6cfd682947a1
[ "Apache-2.0" ]
permissive
liuzuolin/cola
366c8d5bfb7db46b50fe67096e0ae162aa0093db
ed6af470d4879fd703996ef0c6b1d553af2b65dc
refs/heads/master
2020-03-30T05:50:23.207520
2018-09-28T09:22:24
2018-09-28T09:22:24
150,822,739
1
0
Apache-2.0
2018-09-29T03:56:51
2018-09-29T03:56:51
null
UTF-8
Java
false
false
1,509
java
/* * Copyright 2002-${Year} the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
[ "jiachen.shi@accenture.com" ]
jiachen.shi@accenture.com
a5f1e815c5ce82c2a5ccef46f5d508e011226948
bb36d9d84564f52bd8408d6e877a55574ad65948
/Q1.java
3f725ef97b067ef4e92dc5821f4d500fda2f8211
[]
no_license
Mohamed-Razan/Hackerrank-Java
20e52bc98199d230a7b4287f4f92c5e8e10470d9
b0fe097527315fac63257f2aa210b2143b5ae0e8
refs/heads/master
2023-04-24T03:01:47.000207
2021-05-16T13:03:38
2021-05-16T13:03:38
367,032,721
1
0
null
null
null
null
UTF-8
Java
false
false
340
java
// Question: https://www.hackerrank.com/challenges/welcome-to-java/problem public class Solution { public static void main(String[] args) { /* Enter your code here. Print output to STDOUT. Your class should be named Solution. */ System.out.println("Hello, World."); System.out.println("Hell...
[ "mhdrazan7@gmail.com" ]
mhdrazan7@gmail.com
3b37e0be3797c220d9c1226b4c86893bedd3b9ed
55e5757d7a4eee6c4d27b08985f4b9171713b06d
/src/com/imooc/page/servlet/SublistServlet.java
3828c6669334fc72bf4a04d6af963a914382744f
[]
no_license
511733119/Paging
bd6e39751c660639a9cd04b5619b2a342c17b604
b329835e36593e510ae96371ecec71c81c2af0a7
refs/heads/master
2020-12-31T04:07:16.351513
2017-03-07T15:51:54
2017-03-07T15:51:54
69,638,757
1
1
null
null
null
null
GB18030
Java
false
false
2,264
java
package com.imooc.page.servlet; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.imooc.page.dao.SublistStudentDaoImpl;...
[ "chjcal511733119@gmail.com" ]
chjcal511733119@gmail.com
d924721309651043e694e11acc8dda3f265edcd3
0806a7984f340fed66db1fca723ce79ede258d6e
/transfuse-bootstrap/src/main/java/org/androidtransfuse/bootstrap/Bootstraps.java
da4e361fb450a83a4bdecd8d387b0594ef5415c9
[ "Apache-2.0" ]
permissive
jschmid/transfuse
59322fbb22790afad799cff71b20b7f26858cb98
8856e059d972e023fb30d5bed5575423d5bc3a67
refs/heads/master
2021-01-21T00:05:20.613394
2013-07-14T22:15:59
2013-07-14T22:15:59
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,727
java
/** * Copyright 2013 John Ericksen * * 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 t...
[ "johncarl81@gmail.com" ]
johncarl81@gmail.com
5f2591e394bc9110dfbf46b9714cf686517a3a91
175e7e6723533cbda44ebd066355b5148875aace
/core/src/main/java/org/projectfloodlight/db/data/IterableLeafListDataNode.java
12c27cc20b55b3c6ab5ab225187aadf98cdd93e6
[ "Apache-2.0" ]
permissive
kwanggithub/floodlight-floodlight
582a87623b3cad3909ef71ad92a2c52f66a6f0c9
48082ff4680768818ed3e83a776b04b5cd0f429d
refs/heads/master
2021-01-15T20:52:28.730025
2013-08-07T22:37:53
2013-08-07T22:37:53
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,357
java
package org.projectfloodlight.db.data; import java.util.Iterator; import org.projectfloodlight.db.schema.LeafListSchemaNode; import org.projectfloodlight.db.schema.SchemaNode; public class IterableLeafListDataNode extends AbstractLeafListDataNode { private LeafListSchemaNode leafListSchemaNode; private Iter...
[ "rob.adams@bigswitch.com" ]
rob.adams@bigswitch.com
817e7b45a57fe2f1fa2254bfa53781ded3784587
58e586ecdae559729dcc59ba2ecb084efa82b647
/src/epfl/project/faults/RedundantWorkers.java
55afeb8930e7313a581b47bd2426927e4b0f685e
[ "MIT" ]
permissive
ciolben/hydra-j
4620e4d8be50e768e6c25a4c0028e48ca6f0eb0d
c5b6043e313a242dbe0cb63b3d73531784da3477
refs/heads/master
2021-01-10T13:41:55.980729
2012-06-10T17:22:51
2012-06-10T17:22:51
55,334,634
0
0
null
null
null
null
UTF-8
Java
false
false
5,656
java
package epfl.project.faults; import epfl.project.common.AbstractDataCollectorSet; import epfl.project.common.OutOfMemory; import epfl.project.common.Tuple; import epfl.project.nodes.ThreadManager; import epfl.project.nodes.Worker; import epfl.project.scheduler.TaskDescription; import java.util.ArrayList; import java.u...
[ "loic.barben@epfl.ch" ]
loic.barben@epfl.ch
7abd5c3715d3f74c7a09f0ecf8cad72f6cd639e1
3eb360b54c646b2bdf9239696ddd7ce8409ece8d
/lm_terminal/src/com/lauvan/resource/service/impl/LegalServiceImpl.java
e56a61586ffa07c9eecaf864e6305135c3484b93
[]
no_license
amoydream/workspace
46a8052230a1eeede2c51b5ed2ca9e4c3f8fc39e
72f0f1db3e4a63916634929210d0ab3512a69df5
refs/heads/master
2021-06-11T12:05:24.524282
2017-03-01T01:43:35
2017-03-01T01:43:35
null
0
0
null
null
null
null
UTF-8
Java
false
false
356
java
package com.lauvan.resource.service.impl; import org.springframework.stereotype.Service; import com.lauvan.base.dao.BaseDAOSupport; import com.lauvan.resource.entity.R_Legal; import com.lauvan.resource.service.LegalService; @Service("legalService") public class LegalServiceImpl extends BaseDAOSupport<R_Lega...
[ "jason.ss.tao@qq.com" ]
jason.ss.tao@qq.com
cb57d711a403f7e9c0be123c3e8d84f7b71590f7
1a759dd79a427c3ec541b3fedb120c1dc976e718
/src/test/java/fr/game/advent/day08/trial/GameTwoBisTest.java
5d89ff9c958f90a58c1ac0a51a2768c2fb8e2e8c
[]
no_license
mika44/advent-of-code-2018
1db2841817bad1a7374359e745aa8a8518abd6ad
fc2d30337744c5ecee8e8bb2c1e4eaa5ba911c0e
refs/heads/master
2020-04-09T07:54:57.368391
2018-12-10T06:07:40
2018-12-10T06:07:40
160,175,396
0
0
null
null
null
null
UTF-8
Java
false
false
450
java
package fr.game.advent.day08.trial; import java.util.Arrays; import org.junit.Assert; import org.junit.Test; public class GameTwoBisTest { private GameTwoBis gameTwoBis = new GameTwoBis(); @Test public void testExemple1() { Assert.assertEquals(new Integer(66), gameTwoBis.play(Arrays.asList("2 3 0 3 10 11 12 ...
[ "michaelgenet@192.168.0.14" ]
michaelgenet@192.168.0.14
3bf85d4c18ecfdab581c806e7760a1a4611edfd8
b89eb13a43cd9668393de0ee00366b160808234a
/app/src/main/java/com/aier/ardemo/http/basis/BaseSubscriber.java
ca7c144bc16298207b162bd79930b378b1b22470
[]
no_license
xiaohualaila/demo
c01b7387c2d3b036d8d9e8fb4782f7e7d1854b8e
2be2efcfdad53ac5cf903c72f85671b5ccb461e8
refs/heads/master
2020-05-16T17:12:59.793540
2019-05-05T11:26:05
2019-05-05T11:26:05
183,186,090
0
0
null
null
null
null
UTF-8
Java
false
false
1,504
java
package com.aier.ardemo.http.basis; import com.aier.ardemo.http.basis.callback.RequestCallback; import com.aier.ardemo.http.basis.callback.RequestMultiplyCallback; import com.aier.ardemo.holder.ToastHolder; import com.aier.ardemo.http.basis.config.HttpCode; import com.aier.ardemo.http.basis.exception.base.BaseExcept...
[ "380129462@qq.com" ]
380129462@qq.com
7a544d3ff835b4feb360954b546b53fdf96bf81b
69311ed74923aaa73393289bbdbe2e00f10a0034
/src/main/java/com/mjj/travelling/service/Impl/TeamPostServiceImpl.java
d732dbb4da21080f8f0e921e374453b8903083af
[]
no_license
majj1995/HaiJiao_Backend
a1487a111e0f6d4e1d8dcd353369fd46bf28b17d
529bc466a3ecdc96feaaee254d0b92c03ecd1108
refs/heads/master
2020-04-20T15:16:03.482691
2019-02-03T08:17:37
2019-02-03T08:17:37
168,923,538
0
0
null
null
null
null
UTF-8
Java
false
false
2,408
java
package com.mjj.travelling.service.Impl; import com.mjj.travelling.dao.TeamPostRepository; import com.mjj.travelling.model.Post; import com.mjj.travelling.model.TeamPost; import com.mjj.travelling.model.User; import com.mjj.travelling.service.TeamPostService; import com.mjj.travelling.service.VO.TeamPostVO; import org...
[ "595641927@qq.com" ]
595641927@qq.com
a697d90d5d12c88e343b044203e4d1f72e09068e
93c99ee9770362d2917c9494fd6b6036487e2ebd
/server/decompiled_apps/2b7122657dcb75ede8840eff964dd94a/com.bankeen.ui.addingbankaccount/h.java
5c62c113d2488fd59994d79056ac2fee97e30090
[]
no_license
YashJaveri/Satic-Analysis-Tool
e644328e50167af812cb2f073e34e6b32279b9ce
d6f3be7d35ded34c6eb0e38306aec0ec21434ee4
refs/heads/master
2023-05-03T14:29:23.611501
2019-06-24T09:01:23
2019-06-24T09:01:23
192,715,309
0
1
null
2023-04-21T20:52:07
2019-06-19T11:00:47
Smali
UTF-8
Java
false
false
821
java
package com.bankeen.ui.addingbankaccount; import android.content.Context; import com.bankeen.data.repository.ao; import dagger.a.c; import javax.inject.Provider; /* compiled from: AddingBankAccountManager_Factory */ public final class h implements c<g> { private final Provider<Context> a; private final Provid...
[ "root@localhost.localdomain" ]
root@localhost.localdomain
ca21c625b01292f87f53dee5f2250ba548d71b3c
d5c52dbb0a72427608e2042825495a8f1747e036
/ExampleProject/src/main/java/com/application/example/logging/service/impl/LoggingManagerServiceImpl.java
8cdd1ad12073f88b08c03ab07e38b778f514a3c1
[]
no_license
PilouUnic/ExampleProject
f0858367577d85ba2ef3151db6d6805e2575e035
d1514cd914adedf5306fbdede158032e4e7746ff
refs/heads/master
2021-01-22T09:58:00.278967
2015-06-10T07:47:20
2015-06-10T07:47:20
24,961,276
0
0
null
null
null
null
UTF-8
Java
false
false
15,375
java
package com.application.example.logging.service.impl; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.nio.cha...
[ "cortial_aurelien@hotmail.com" ]
cortial_aurelien@hotmail.com
996f1924d3855835a5ffae654196e4b4d8f51203
d528fe4f3aa3a7eca7c5ba4e0aee43421e60857f
/src/xsgzgl/wjcf/general/GlobalsValue.java
0863d14fbd0be9d202666fc140273beae869f015
[]
no_license
gxlioper/xajd
81bd19a7c4b9f2d1a41a23295497b6de0dae4169
b7d4237acf7d6ffeca1c4a5a6717594ca55f1673
refs/heads/master
2022-03-06T15:49:34.004924
2019-11-19T07:43:25
2019-11-19T07:43:25
null
0
0
null
null
null
null
GB18030
Java
false
false
641
java
package xsgzgl.wjcf.general; import xgxt.action.Base; public class GlobalsValue { public static String xxpymc;// 学校拼音名称 public static String[] xxdmValue = new String[] {};// 学校代码 public static String[] xxmcValue = new String[] {};// 学校 // ###########################end#############################...
[ "1398796456@qq.com" ]
1398796456@qq.com
2029eeb4ede6f32e5ffbb37c924481db7dbc667f
5039317afe0b5d6e901ddc7e465af488597db42b
/WEB-INF/src/com/skymiracle/wpx/models/WpxMdo_X.java
c4438f452f9a0e6ae94f3058bddcf57979b5b636
[]
no_license
neorayer/wpx
774b7f05c84a293d099db05033817a03e0cbbe7c
8d34e9e74a79aea776d2ea9bfde7754ba416fbca
refs/heads/master
2021-01-10T07:05:53.087756
2016-02-24T04:49:30
2016-02-24T04:49:30
52,413,781
1
0
null
null
null
null
UTF-8
Java
false
false
264
java
package com.skymiracle.wpx.models; import static com.skymiracle.wpx.Singletons.*; import com.skymiracle.mdo5.Mdo_X; public abstract class WpxMdo_X<T extends WpxMdo<T>> extends Mdo_X<T>{ public WpxMdo_X(Class<T> mdoClass) { super(mdoClass, appStore); } }
[ "neorayer@gmail.com" ]
neorayer@gmail.com
2c7cc28ced722940a63f5e0003a56e0ecffea974
fe83da963d2eeaf3f4fe2a5c1db6438b42f1d5cd
/com.bitcoin.dy.2.0.0/src/com/mvc/controller/PayController.java
d562840c6d1e009151479a1cd16fd1cc71c9d626
[]
no_license
fantianmi/coins.new
36804da687e816f2b12faa705b71ae699c5d688d
baae38d04dd2c16617e79d6418474fadbdb3824b
refs/heads/master
2020-05-31T21:43:44.618516
2014-10-09T16:28:44
2014-10-09T16:28:44
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,050
java
package com.mvc.controller; import java.io.IOException; import java.math.BigDecimal; import java.util.ResourceBundle; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.apache.commons.logging.Log; import org.apache.commons.log...
[ "fantianmi@163.com" ]
fantianmi@163.com
c84146119223b8f088d3db5cc2acbd0afbbf6d8b
bb97256378f8b107c8fcf27c9593a833dbff65e5
/src/ncs/test15/Book.java
68d66e629553b50933c5bb2b19fef3a3013bd658
[]
no_license
jazzhong1/javaTest3
652e2e6ad7803fc84100e751217db6443aac8fe9
a3a8b0d54728e3eb734d94a59cd3ae354fa7069c
refs/heads/master
2021-04-15T11:49:36.010800
2018-04-05T23:39:34
2018-04-05T23:39:34
126,347,155
0
0
null
null
null
null
UTF-8
Java
false
false
1,282
java
package ncs.test15; public class Book { private String title; private String author; private int price; private String publisher; private double discountRate; public Book() { // TODO Auto-generated constructor stub } public Book(String title,String author,int price, String publisher,double discountRate...
[ "jazzhong1@naver.com" ]
jazzhong1@naver.com
4d6dbe43548d9477582090f55aa093d7c8d9a9ca
48cbc2c384d0f279bbe6713fbdee6167c0cb64be
/app/src/main/java/net/bndy/ad/service/DbHelper.java
cc899478ccaed158e1f7f0bdbca514a27285a803
[ "MIT" ]
permissive
bndynet/android-starter
1d6257aead017c1b2fe38048432239ff8a12423b
30e0894121f1adb713e49a9c56696d6cc391e3b3
refs/heads/master
2020-03-30T04:13:36.671235
2019-03-31T02:31:41
2019-03-31T02:31:41
150,730,972
0
2
null
null
null
null
UTF-8
Java
false
false
340
java
package net.bndy.ad.service; import android.content.Context; import net.bndy.ad.framework.data.SQLiteForEntityProvider; public class DbHelper extends SQLiteForEntityProvider { private static final String DB_NAME = "LOG"; public DbHelper(Context context, Class<?>... clazzes) { super(context, DB_NAME...
[ "zb@bndy.net" ]
zb@bndy.net
2c22f3bd36ad6b6223d47b33aa734fec51e54548
942c5021817d284f47382433eee4a5c24ca781bf
/extensions/cli/landsat8/src/test/java/mil/nga/giat/geowave/format/landsat8/SceneFeatureIteratorTest.java
ada98c55667bfd5b6ba9ccc4b2c9218e0001d02f
[ "Apache-2.0", "LicenseRef-scancode-free-unknown", "LicenseRef-scancode-public-domain" ]
permissive
rfecher/geowave
9e41c93ec474db7b3c32e75ebb7c30f6f1f19c1a
b5dfb64abb6efdcdc75f46222ffd2d4c3f7d64a5
refs/heads/master
2022-06-28T02:03:32.509352
2017-02-15T17:56:32
2017-02-15T17:56:32
39,567,101
0
2
Apache-2.0
2018-07-23T12:23:08
2015-07-23T12:50:18
Java
UTF-8
Java
false
false
2,920
java
package mil.nga.giat.geowave.format.landsat8; import static org.junit.Assert.*; import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.geotools.filter.text.cql2.CQL; import org.geotools.filter.text.cql2.CQLException; import org.geotools.geometry.DirectPosition2D; import org.geotool...
[ "rfecher@gmail.com" ]
rfecher@gmail.com
138bb0cee1b198c9d4f4af28797d409a7287a0e6
b55fff51aba2f734f5b12d17bb947fe0f835ac4e
/org/w3c/css/atrules/css3/media/MediaResolution.java
3f23c6553c06195888c3c704ce3526d8eae7abf0
[ "W3C-20150513", "W3C" ]
permissive
Handig-Eekhoorn/css-validator
ca27249b95b76d013702d9470581370ce7778bcb
f6841dadfe5ca98c891d239a3d481347bdb34502
refs/heads/heek-master
2023-03-23T02:54:33.121767
2020-01-07T22:00:37
2020-01-07T22:00:37
215,892,548
1
0
NOASSERTION
2022-06-07T14:46:11
2019-10-17T21:58:07
Java
UTF-8
Java
false
false
5,088
java
// $Id$ // // (c) COPYRIGHT MIT, ECRIM and Keio University, 2011 // Please first read the full copyright statement in file COPYRIGHT.html package org.w3c.css.atrules.css3.media; import org.w3c.css.atrules.css.media.MediaFeature; import org.w3c.css.atrules.css.media.MediaRangeFeature; import org.w3c.css.util.ApplConte...
[ "ylafon@w3.org" ]
ylafon@w3.org
95587993145c0d5ddae706325fdc467cf70044ff
77a4aeaf5126a36fc50edae128571a1638866ffa
/sample/src/main/java/codetoart/sampleanimations/LoadingButtonActivity.java
f91e2d08a2dd72dd918d490111603da3e895fc8e
[]
no_license
codetoart/C2AAnimations
5ead8b83fe3925aeb308500420dda2840f3e6032
37fb0482e33d79eb3618b7396b97b930352064bc
refs/heads/master
2021-01-23T08:00:02.109986
2017-03-07T14:02:30
2017-03-07T14:02:30
80,525,947
0
0
null
null
null
null
UTF-8
Java
false
false
3,012
java
package codetoart.sampleanimations; import android.os.Bundle; import android.os.Handler; import android.support.v7.app.AppCompatActivity; import android.support.v7.widget.Toolbar; import android.view.MenuItem; import android.view.View; import android.widget.EditText; import android.widget.LinearLayout; import android....
[ "sameerkhader018@gmail.com" ]
sameerkhader018@gmail.com
5fa0e8ae2fb0bc611f0200eb41669407457ff26b
d767ecbb2bad9bb0358b2931097ed9164a92ec13
/src/test/java/com/invillia/acme/provider/service/ProviderServiceTest.java
b8ac5fcafe6e0df4cd305188c52e9c0fa2aab8ff
[]
no_license
caiogallo/backend-challange
90b33ab8e639dfd7aec00ec9b3e12400a999bb10
ecdd621a6ce3820730d64b62dcda1f8303e87b35
refs/heads/master
2020-04-08T08:46:46.706669
2018-11-28T20:44:40
2018-11-28T20:44:40
159,193,601
1
1
null
2018-11-26T15:45:44
2018-11-26T15:45:43
null
UTF-8
Java
false
false
3,843
java
package com.invillia.acme.provider.service; import br.com.six2six.fixturefactory.Fixture; import br.com.six2six.fixturefactory.loader.FixtureFactoryLoader; import com.invillia.acme.address.model.Address; import com.invillia.acme.address.model.service.AddressSearchRequest; import com.invillia.acme.provider.controller.v...
[ "caio.gallo@gmail.com" ]
caio.gallo@gmail.com
17959d268c54f1e9154cc5f73330e8ee25cae0f5
7933a54177ef16052648edfd377626c72e6d5d4b
/throw-common-msg/src/com/playmore/dbobject/staticdb/BossstageS.java
39f1193946b039799c004cd32b6162a7d4df8084
[]
no_license
China-Actor/Throw-Server
0e6377e875409ff1133dd3e64c6d034005a75c25
0571ba6c78842b3674913162b6fb2bfcc5274e9c
refs/heads/master
2022-10-12T22:25:55.963855
2020-04-18T09:55:55
2020-04-18T09:55:55
252,702,013
0
1
null
2022-10-04T23:57:17
2020-04-03T10:34:28
Java
UTF-8
Java
false
false
1,628
java
package com.playmore.dbobject.staticdb; import java.io.Serializable; import com.playmore.database.DBFieldName; import java.util.Date; import org.springframework.format.annotation.DateTimeFormat; /** * Do not touch! Close it Now! */ @SuppressWarnings("serial") public class BossstageS implements Serializable { @DBFi...
[ "1584992167@qq.com" ]
1584992167@qq.com
ea60966133e5660b1d1b9b7553481dd1f4b55afd
afaeacf76ee1e146963544fae91c261c6df09fa0
/src/main/java/org/example/RadioButtonPage.java
22d9d8087a66927dbc1c1fb245ecbc27551b869f
[]
no_license
nirmohpatel/ToolaQA123
340ee805c6c57a9d76cb83f0308761e4d25f985a
b29e560d2a61e810a242a455568ff22903cdcad4
refs/heads/main
2023-03-02T22:39:29.195920
2021-02-15T16:13:49
2021-02-15T16:13:49
339,132,800
0
0
null
null
null
null
UTF-8
Java
false
false
2,392
java
package org.example; import javafx.scene.control.RadioButton; import org.openqa.selenium.By; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.firefox.FirefoxDriver; import org.testng.asserts.SoftAssert; public class RadioButtonPage extends Util { SoftAssert softAssert = new SoftAssert();...
[ "nirmohpatelunique1@gmail.com" ]
nirmohpatelunique1@gmail.com
0bab26552e896ef2b660bb9931d653d796f873db
7165a598196001af2534020e7bd63d727b264f40
/app/src/main/java/com/tehike/client/dtc/single/app/project/execption/compat/ActivityKillerV24_V25.java
e87d21c9cc48df898ab2b0e2ae33d752b21ade3d
[]
no_license
wpfsean/Dtc_F
65ee0105ea5b0b33a8dce14d495bc86ff8348f50
486a20b0a7a06136e66bbe021d39069213d8b787
refs/heads/master
2020-05-04T07:52:40.319849
2019-04-08T01:55:11
2019-04-08T01:55:11
171,991,661
0
0
null
null
null
null
UTF-8
Java
false
false
2,538
java
package com.tehike.client.dtc.single.app.project.execption.compat; import android.app.Activity; import android.content.Intent; import android.os.IBinder; import android.os.Message; import java.lang.reflect.Field; import java.lang.reflect.Method; /** * Created by wanjian on 2018/5/24. * <p> * android 7.1.1 * <p> ...
[ "wpfsean@126.com" ]
wpfsean@126.com
fe3d72e059ca8b6b1b60520285e42126cba3f173
66884071bc8928313136ef6766407832b1a13361
/src/main/java/mf/uz/services/RoleService.java
907deea427e6c0d5967778024f6d2d22f52cc755
[]
no_license
Qurbonov/UserManagementAngular
53b41752b103ddec092fa6434a684ef586a17b3e
fd77355733e611b6e4e297ba0e845fca9f80d65f
refs/heads/master
2021-01-10T16:11:44.513135
2016-04-06T17:12:04
2016-04-06T17:12:04
49,048,154
0
0
null
null
null
null
UTF-8
Java
false
false
651
java
package mf.uz.services; import mf.uz.domain.Role; import mf.uz.repositories.RoleRepository; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Sort; import org.springframework.stereotype.Service; import java.util.List; /** * Created by qurbonov on 10/6/2...
[ "Qurbonov@myPC" ]
Qurbonov@myPC
948038b9eac5bc27af2253d1421389c9b3b255dd
68e0cdd5365490b27b91d514d21395b727447ff4
/src/main/java/com/niule/znxj/web/dao/KnowledgeMapper.java
635f0140943c7847bf4c44d0a6322e0dbd309da5
[]
no_license
caidaoyu/znxj_app
80bfa5dac339b77880c9a8251dcdcc935fe9b300
aa8504168845383e72f12a5662ed65c05f37d9b0
refs/heads/master
2022-04-22T17:47:48.201562
2020-04-16T11:02:10
2020-04-16T11:02:10
256,189,475
1
0
null
2020-04-16T11:02:35
2020-04-16T11:02:34
null
UTF-8
Java
false
false
1,057
java
package com.niule.znxj.web.dao; import com.niule.znxj.web.model.Knowledge; import com.niule.znxj.web.model.KnowledgeExample; import java.util.HashMap; import java.util.List; import org.apache.ibatis.annotations.Param; public interface KnowledgeMapper { int countByExample(KnowledgeExample example); ...
[ "dabin543@163.com" ]
dabin543@163.com
afd84775115f44a45cf123a0820443e1faf2c912
f4ccc91a720594015963755df5bc6890739fbba2
/app/src/main/java/com/example/tugassqlite/Adapter/SiswaAdapter.java
482857728cb9728167678475f08c319d2d345b3c
[]
no_license
M-Alfi/PWPB_DataMahasiswa
2305a6a7ad7c789a767bc0b03c6c30ae39e273ee
96c912ff723e555f19794f673ee026401f03f9a7
refs/heads/master
2020-07-25T18:15:09.180302
2019-09-14T03:28:20
2019-09-14T03:28:20
208,383,241
0
0
null
null
null
null
UTF-8
Java
false
false
3,560
java
package com.example.tugassqlite.Adapter; import android.app.AlertDialog; import android.content.Context; import android.content.Intent; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import android.widget.Toast; import com.example.tugassqli...
[ "homedaisys@gmail.com" ]
homedaisys@gmail.com
c997a6b50f1ce4e0ac8d63f4b11704ce6f64fb2c
a75b8e1f4927cffec0478c3575142943a02170f7
/src/test/java/neflis/UserServiceTest.java
7fd47dd0007dbfdf2e257eb8cea56e5b57e51961
[]
no_license
namcent/Neflis2.0
1234dbbd5d3e3ea44729f83798e10bdfbb5a898a
cc920d71557c86de7e0443ef5ff3bafb153c649b
refs/heads/master
2022-11-23T19:21:25.288903
2020-07-09T20:16:25
2020-07-09T20:16:25
278,493,462
0
1
null
2020-07-09T23:50:02
2020-07-09T23:36:23
Java
UTF-8
Java
false
false
2,086
java
package neflis; import neflis.neflisdemo.controller.UserController; import neflis.neflisdemo.model.Contenido; import neflis.neflisdemo.model.UserApi; import neflis.neflisdemo.service.UserService; import neflis.neflisdemo.util.Util; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import jav...
[ "yaz_01@hotmail.com" ]
yaz_01@hotmail.com
e810d4be39ec01bf63370e4762be55ab06615d74
d2cb1f4f186238ed3075c2748552e9325763a1cb
/methods_all/nonstatic_methods/jdk_nashorn_api_scripting_NashornScriptEngineFactory_hashCode.java
cb93e28c16636c695921283d7b49cab9e7ceb259
[]
no_license
Adabot1/data
9e5c64021261bf181b51b4141aab2e2877b9054a
352b77eaebd8efdb4d343b642c71cdbfec35054e
refs/heads/master
2020-05-16T14:22:19.491115
2019-05-25T04:35:00
2019-05-25T04:35:00
183,001,929
4
0
null
null
null
null
UTF-8
Java
false
false
235
java
class jdk_nashorn_api_scripting_NashornScriptEngineFactory_hashCode{ public static void function() {jdk.nashorn.api.scripting.NashornScriptEngineFactory obj = new jdk.nashorn.api.scripting.NashornScriptEngineFactory();obj.hashCode();}}
[ "peter2008.ok@163.com" ]
peter2008.ok@163.com
06707624b415a142a57e45ffe5b5438e6b1f2ef5
1ef43fd13dd1546d9860cdec158efadbb08cd7d5
/src/main/java/cz/cuni/mff/d3s/trupple/parser/identifierstable/types/complex/TextFileDescriptor.java
78fa134d19850a6d85bcc56bb9a4e86861ead4c3
[]
no_license
Aspect26/TrufflePascal
8f399462bc7e7de4804ed5f3a9225cd1cc594c3d
99c801edbacd13bf5129e5db836257ef293774ce
refs/heads/master
2021-05-24T03:17:07.139935
2017-07-20T21:12:20
2017-07-20T21:12:20
56,541,527
11
5
null
2021-02-05T21:01:17
2016-04-18T20:56:28
Java
UTF-8
Java
false
false
842
java
package cz.cuni.mff.d3s.trupple.parser.identifierstable.types.complex; import cz.cuni.mff.d3s.trupple.language.runtime.customvalues.TextFileValue; import cz.cuni.mff.d3s.trupple.parser.identifierstable.types.TypeDescriptor; /** * Specialized type descriptor for text-file values. */ public class TextFileDescriptor e...
[ "flimmelj@gmail.com" ]
flimmelj@gmail.com