blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
410
content_id
stringlengths
40
40
detected_licenses
listlengths
0
51
license_type
stringclasses
2 values
repo_name
stringlengths
5
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringlengths
4
80
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
689M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
131 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
9.45M
extension
stringclasses
32 values
content
stringlengths
3
9.45M
authors
listlengths
1
1
author_id
stringlengths
0
313
334f41b72d49fd2f072ed5aa8d52aa610276d4b5
503fbed63bf8319165de4db448fd439ab2319b89
/Assignment 2/src/exercise2/MyItinerary.java
0f983e146a2ac088669890b71a141887d49fcaa7
[]
no_license
jrosenqvist/1DV516-Algorithms-and-Advanced-Data-Structures
a33fd322013b70582a9b0e003ad26db5b8c7ddc0
6e83b8b82e6a584d878f559541e30c8dda2a33ec
refs/heads/master
2022-11-21T01:37:01.949189
2020-07-11T18:16:42
2020-07-11T18:16:42
215,030,762
0
0
null
null
null
null
UTF-8
Java
false
false
3,564
java
package exercise2; import exercise1.MyHashTable; public class MyItinerary implements A2Itinerary<A2Direction> { private A2Direction[] itinerary; A2Direction[] values; public MyItinerary(A2Direction[] array) { itinerary = array; values = A2Direction.values(); } @Overri...
[ "jr222wb@student.lnu.se" ]
jr222wb@student.lnu.se
711c759f493252749dbc7a84b405580e8dbe1304
377e5e05fb9c6c8ed90ad9980565c00605f2542b
/bin/ext-accelerator/acceleratorcms/src/de/hybris/platform/acceleratorcms/services/impl/DefaultCMSDynamicAttributeService.java
962b59527cda84801e2d231c2f902bb8fd91aa49
[]
no_license
automaticinfotech/HybrisProject
c22b13db7863e1e80ccc29774f43e5c32e41e519
fc12e2890c569e45b97974d2f20a8cbe92b6d97f
refs/heads/master
2021-07-20T18:41:04.727081
2017-10-30T13:24:11
2017-10-30T13:24:11
108,957,448
0
0
null
null
null
null
UTF-8
Java
false
false
1,622
java
/* * [y] hybris Platform * * Copyright (c) 2000-2016 SAP SE or an SAP affiliate company. * All rights reserved. * * This software is the confidential and proprietary information of SAP * ("Confidential Information"). You shall not disclose such Confidential * Information and shall use it only in accordance with...
[ "santosh.kshirsagar@automaticinfotech.com" ]
santosh.kshirsagar@automaticinfotech.com
ad5f1dbe904a71da1fb77926a283ff4a10a36b54
86868ff5760d6230637dcab8bef6550a00676296
/ShoppingCart/src/model/QaComparator.java
575fb50fbe584b23a596c0bb70069f1e72d75e1d
[]
no_license
sagar005pawar/ShoppingCart
00f954ab9d9524316cc5c6a1054c8283a0776cb0
bca0a1cdd3f75870775da41ab934112803126257
refs/heads/master
2021-01-12T04:38:52.688132
2017-09-07T18:32:59
2017-09-07T18:32:59
77,695,148
2
0
null
null
null
null
UTF-8
Java
false
false
315
java
package model; import java.util.Comparator; public class QaComparator implements Comparator<Products> { @Override public int compare(Products p1, Products p2) { if (p1.getQA() > p2.getQA()) { return 1; } else if(p1.getQA() < p2.getQA()){ return -1; }else { return 0; } } }
[ "sagar@Dell" ]
sagar@Dell
ccd74f22242832dd89b03646bb67c0817d9fc03f
e6fdfcc416b93521811988a3e496160a77c79445
/Example.java
7f1e5d1a185423f5caf381db80b280811785df33
[]
no_license
AakarshitAgarwal/CORE_JAVA
214bc0d91f7ce4301e22f545d75769b8ddc56383
7712025e7ede78598880a36dac21aa67b50dcc24
refs/heads/master
2023-05-24T07:32:42.887769
2021-06-04T18:02:15
2021-06-04T18:02:15
234,944,645
3
0
null
null
null
null
UTF-8
Java
false
false
285
java
package pack1; import pack2.Student; public class Example { public static void main(String []args) { Student s1=new Student(); s1.setRollno(100); s1.setName("Saurabh"); System.out.println("Roll No. "+s1.getRollno()); System.out.println("Name "+s1.getName()); } }
[ "talktoshanuagarwal@gmail.com" ]
talktoshanuagarwal@gmail.com
0d40ea65dc17d525d2dbfa21977f7f06e4fec167
245d1f12fcf34bc7a1393617d8fcd6c968f9fd9d
/src/main/java/com/wuxin/visitor/ListVisitor.java
8fbbd40c8e6d9b134a2b4b2f468609d5ef15e037
[]
no_license
wuxin402/twentyThree-design-patterns
5587ab4804da770cea5422b73a6195065c7feaec
10b676d02e7cfd6432147dd98293f87de94cb126
refs/heads/master
2020-04-10T12:32:44.798272
2018-12-09T09:42:32
2018-12-09T09:42:32
161,025,860
1
0
null
null
null
null
UTF-8
Java
false
false
727
java
package com.wuxin.visitor; import java.util.Iterator; /** * ConcreteVisitor(具体的访问者) * 负责实现Visitor角色所定义的接口 * @author Administrator * */ public class ListVisitor extends Visitor{ private String currentdir = ""; @Override public void visit(File file) { System.out.println(currentdir + "/" +file...
[ "245975279@qq.com" ]
245975279@qq.com
ea250d78d293c17204fdfdb56076e88dc0a667f9
61ad3d65a3531b643a5ef59df26974c0b0173ce4
/src/main/java/mirthandmalice/cards/mirth/basic/MirthDefend.java
2cd33831cb82b550b0631055c5e447d13390fc90
[]
no_license
yimengZJl/mirthandmalice
18ebb6532ca2f41a46fb8770499d1276a6357f02
8a3cd43f1339d0f327eb5cd3c23d5ef04cc97134
refs/heads/master
2023-04-22T02:42:41.345001
2020-03-22T21:42:07
2020-03-22T21:42:07
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,320
java
package mirthandmalice.cards.mirth.basic; import com.megacrit.cardcrawl.actions.common.GainBlockAction; import com.megacrit.cardcrawl.cards.AbstractCard; import com.megacrit.cardcrawl.characters.AbstractPlayer; import com.megacrit.cardcrawl.dungeons.AbstractDungeon; import com.megacrit.cardcrawl.monsters.AbstractMonst...
[ "isithalchyr@gmail.com" ]
isithalchyr@gmail.com
56254b2ae01e13c6864a5974a6398ea28c4014cb
a9cf4118e0f032331542d38b7d29c60734a712bf
/src/Code_00_LeetCode_ShuaTi/Code_01_LinkList/Code_0142.java
c5afd9e45f956a628c638d077123f3e655749f03
[]
no_license
jchen-96/leetCode
5531571fb43ffc5023250f1ca21c1ebe5922aa8c
4e411c9818d5d3194192b67016edafad36d75b29
refs/heads/master
2021-07-13T17:54:26.108694
2020-09-20T11:54:54
2020-09-20T11:54:54
176,665,761
0
0
null
null
null
null
UTF-8
Java
false
false
1,040
java
package Code_00_LeetCode_ShuaTi.Code_01_LinkList; //https://leetcode-cn.com/problems/linked-list-cycle-ii/ //链表求环2 public class Code_0142 { public ListNode detectCycle(ListNode head) { if(!hasCircle(head)) return null; ListNode fast=head; ListNode slow=head; while (fast...
[ "1443616037@qq.com" ]
1443616037@qq.com
7fac566c3141a8258cadbd9c774989d645534466
1574e774c8695396810b1786d92603a083cc5e0b
/src/Sortbyroll.java
009cbdc8a40e8d281f37c29fb913e48495b75ef4
[]
no_license
prasad212/Server
0a9d5a27d6511c8d5262fc4c4c36bd2c1dd05463
1c20ebe2e044d0b76403af3322aacc16678bf171
refs/heads/master
2020-03-27T03:37:16.057064
2018-08-23T15:58:37
2018-08-23T15:58:37
143,049,236
0
0
null
null
null
null
UTF-8
Java
false
false
197
java
import java.util.Comparator; public class Sortbyroll implements Comparator<Student>{ public int compare(Student s1, Student s2) { return s1.roll_no - s2.roll_no; } }
[ "p.mandge212@gmail.com" ]
p.mandge212@gmail.com
13fe8b9b6ba58b8618d748abc85ea288ffd81d57
9e26223d293d6715600a50aec5f7e3772881be11
/BlueToothClient/app/src/main/java/com/ingwu/bluetoothclient/CusBtnActivity.java
f0af34c72a2955c44e5291c27be75c608ac99e21
[]
no_license
w151275/BlueTooth
b10cef2d39a472c11418d1115a0161cfeb9d439f
6f3ea497b0255b176b477ac76ff83ab28a9deaa6
refs/heads/master
2020-12-03T04:14:25.256782
2017-09-06T09:22:58
2017-09-06T09:22:58
95,837,067
0
0
null
null
null
null
UTF-8
Java
false
false
3,065
java
package com.ingwu.bluetoothclient; import android.os.Bundle; import android.support.annotation.Nullable; import android.text.TextUtils; import android.view.View; import android.widget.AdapterView; import android.widget.GridView; import android.widget.ImageView; import android.widget.RelativeLayout; import android.widg...
[ "wuzhenglei-it@bestpay.com.cn" ]
wuzhenglei-it@bestpay.com.cn
fb85a2387d81cb8e7c30bf53ae11a097a986b96d
6b6e3901152ab5ef5e37ebb84e2f841db456703e
/src/main/java/com/example/application/backend/config/SecurityConfig.java
66d47374810db3ddce10e59e70cfb0de0d4baf5e
[ "Unlicense" ]
permissive
zirpindevs/ProyectoBancaVaadin
814214dcd175c2df54a964c1711d65b84dc2cd09
5d25bfdb10604a7cff943ae7fadeac07614e17c3
refs/heads/master
2023-05-23T17:08:39.251478
2021-06-02T10:31:24
2021-06-02T10:31:24
370,612,280
0
0
null
null
null
null
UTF-8
Java
false
false
5,532
java
package com.example.application.backend.config; import com.example.application.backend.security.jwt.JwtAuthEntryPoint; import com.example.application.backend.security.jwt.JwtRequestFilter; import com.example.application.backend.security.service.UserDetailsServiceImpl; import org.springframework.beans.factory.annotati...
[ "chechucarrasco@gmail.com" ]
chechucarrasco@gmail.com
63573ee32468ba6f225bcab695d93aaf3940e6d7
b71cda837e3ceb793e3fe419697cc779384d0cc8
/app/src/test/java/edu/cornell/zy337/ynotbikenavigation/ExampleUnitTest.java
4f9720e1e556eba6fad1f0e1ca7d9c3ab34d5e97
[]
no_license
zhidiyang/YNot-Bike-Navigation
ca6f2b8e20c2b11c3df89591f0a045cf6da7766d
00530025aad7dc920d5e6c8b9e6b0502b78b7291
refs/heads/master
2020-03-19T00:13:26.909520
2018-05-30T16:50:41
2018-05-30T16:50:41
135,447,312
0
0
null
2018-05-30T13:42:25
2018-05-30T13:32:48
null
UTF-8
Java
false
false
414
java
package edu.cornell.zy337.ynotbikenavigation; 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 ...
[ "zhidiyang@hotmail.com" ]
zhidiyang@hotmail.com
e0c43a82e397707c503864cefae51e6b2c8896ae
5eb6d893bb45b77f2db7177e0835dbba31ec871d
/backend/src/main/java/com/example/goalTracker/Goals/GoalServiceImpl.java
255a1d07d12104adc7f7f3676dd994f25db68212
[]
no_license
AppsLab-2/goal-tracker
9be82dd66f61abeff8b5ab56dee0c319705aaaf7
4cad667c48c59f2700dd88c118db51ceab87f271
refs/heads/master
2023-05-11T16:15:44.331139
2021-06-01T07:10:28
2021-06-01T07:10:28
338,005,828
0
1
null
null
null
null
UTF-8
Java
false
false
1,057
java
package com.example.goalTracker.Goals; import org.springframework.stereotype.Service; import java.util.List; import java.util.stream.Collectors; import java.util.stream.StreamSupport; @Service public class GoalServiceImpl implements GoalService{ GoalRepository goalRepository; public GoalServiceImpl(GoalRep...
[ "korkosk123@gmail.com" ]
korkosk123@gmail.com
c91f772f3cc8da777ef95800fc8cf9c8b309c03e
f0b891d941b8f96bd50d5fdbfd9b717ce4b9a41b
/src/com/bluegosling/reflect/model/CoreReflectionMarker.java
32c567448694c8d91b68db68d5b7dd665d4b7541
[ "Apache-2.0" ]
permissive
shimaomao/bluegosling
6ca90a847d43bc244c0605aedb7932f65c876e83
1cab407e8579331340f1d99d132a294b7d7520c3
refs/heads/master
2020-06-17T12:52:43.955586
2018-02-22T14:50:27
2018-02-22T14:50:27
null
0
0
null
null
null
null
UTF-8
Java
false
false
346
java
package com.bluegosling.reflect.model; import javax.lang.model.element.Element; import javax.lang.model.type.TypeMirror; /** * A marker interface for implementations of {@link Element} and {@link TypeMirror} that are backed * by core reflection. * * @author Joshua Humphries (jhumphries131@gmail.com) */ interface...
[ "joshua@bluegosling.com" ]
joshua@bluegosling.com
7101994065d83d86635a8967269369bbda19d612
6907dff5566e1e2419790724316cbe0702cb88f0
/plugins/ldapbrowser.core/src/main/java/org/apache/directory/studio/ldapbrowser/core/utils/SchemaObjectLoader.java
520c96cdefca464e9bab9165dd94315676a4daad
[ "EPL-1.0", "OLDAP-2.8", "BSD-3-Clause", "Apache-1.1", "Apache-2.0" ]
permissive
apache/directory-studio
388b38d3d8793aa03adf060d1490c1a786f56375
2be96c08b29e5ffad7bc4bb78d75523099632c3f
refs/heads/master
2023-09-03T07:05:39.365794
2023-07-26T15:37:38
2023-07-26T15:37:38
205,407
110
62
Apache-2.0
2023-06-26T08:52:27
2009-05-20T01:52:19
Java
UTF-8
Java
false
false
6,865
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")...
[ "elecharny@apache.org" ]
elecharny@apache.org
829dfb79efff7fbc24ebb28cad3bfe233cb51b26
2afef6723dd972eee35c8ca59495a7278091b5b5
/app/src/main/java/com/android/bignerdranch/testgit/MainActivity.java
dc70adef21f1ebc4d6bc0bee08fb139629f5ce9d
[]
no_license
Viacheslav1991/TestGit
eefe1c87d0c0309b7adb59e5f3300aa381cfae76
1040904bbb7fdef410544704ba32e96763af14c3
refs/heads/master
2021-01-09T17:52:40.343928
2020-02-22T20:16:51
2020-02-22T20:16:51
242,397,067
0
0
null
null
null
null
UTF-8
Java
false
false
345
java
package com.android.bignerdranch.testgit; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout...
[ "demon55591@yandex.ru" ]
demon55591@yandex.ru
3cf43548689a479a7db5bf3881e3b8fc7b7052b9
4ffa4412f224cf5684a12ef1c27f30380f06de10
/FreeCellSolitaire/src/freecell/model/hw02/OpenPile.java
cce89dbe477a3c9c9d1cdc0813cbca4d6f788c43
[]
no_license
JWriter20/Solitaire
c0eb3713217f6298a1f4782bfb60021f428f0fca
9e3567f9ac56f0321d0bdee5e0b14d32c7384d5f
refs/heads/main
2023-07-15T09:51:12.099486
2021-08-21T03:20:25
2021-08-21T03:20:25
398,454,738
0
0
null
null
null
null
UTF-8
Java
false
false
1,170
java
package cs3500.freecell.model.hw02; import cs3500.freecell.model.ICard; import java.util.Stack; /** * Represents a pile in the Open slot that can contain a maximum of one card. */ public class OpenPile extends Stack<ICard> { @Override public synchronized ICard pop() { return super.pop(); } /** * V...
[ "noreply@github.com" ]
JWriter20.noreply@github.com
004e86a1ef97046111d808fa1f2c1d40c6fb0b6b
4a92687bd10bd7bc77a8c59de53b3f677f5b9f1e
/assistant-tool/src/main/java/util/mybatis/comment/MethodWrapper.java
bf072ef93350c68710bddaa0c7c5300052219561
[]
no_license
hanpang8983/assistant-tool
3eae04b37954f8ae95a435c73cc9175fbac94916
92e962f4a8f6b9a91ffd477d569ce17c892054d9
refs/heads/master
2021-01-14T12:14:33.118940
2016-03-16T02:38:15
2016-03-16T02:54:01
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,486
java
/* * Copyright 2002-2013 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 ap...
[ "1280025885@qq.com" ]
1280025885@qq.com
d76160cefb1b581ae6eb6b48c1f6c979dd886f27
436e7c7050a1859fc856ed631427e1546c47c39d
/src/Boxes/Box_OPro.java
2c05cbaef21f10a0857042be8aed31f051875878
[]
no_license
YeMyintOo/UML
684ba9d019fa0264dec10b3312827b25a1fbd5c0
7eb1284a764b145205967842fe7cc814ca3c1362
refs/heads/master
2021-01-18T21:18:58.800501
2016-06-14T14:27:39
2016-06-14T14:27:39
51,639,702
0
0
null
null
null
null
UTF-8
Java
false
false
1,408
java
package Boxes; import java.io.File; import javafx.geometry.Pos; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.layout.BorderPane; import javafx.scene.layout.HBox; import javafx.scene.paint.Color; import javafx.stage.Modality; import javafx.stage.Stage; public class Box_OPro extend...
[ "dynamic.mdy.95@gmail.com" ]
dynamic.mdy.95@gmail.com
386d4bb3c5ab44bff690f177ca341c4c25b6c6b7
63a38f9f708b0f8bddb781f6046d4222b63b3663
/algo_2019_winter/_16_/BstPlusTwo.java
d54ffd7731fc7b5b7fb09c414c1156646e99810d
[]
no_license
yoonsung0711-1/BoA
dba9bba036ab84f1531b418b26efaa6d12b1a118
e568e13ff5bf08da3c595a9ae4f4a14bd29ff1f2
refs/heads/2019_winter
2023-01-14T04:44:33.846778
2020-04-11T16:39:15
2020-04-12T01:33:59
231,178,165
0
0
null
2023-01-07T16:29:19
2020-01-01T05:15:40
Java
UTF-8
Java
false
false
2,440
java
import java.util.HashSet; import java.util.LinkedList; import java.util.stream.Collectors; /* Input: 5 / \ 3 6 / \ \ 2 4 7 Target = 9 Output: True [5,3,6,2,4,null,7] [] [2] [2, 3] [2, 3, 4] [2, 3, 4, 5] [2, 3, 4, 5, 6] [2, 3, 4, 5, 6, 7] [2, 3] [2, 4] [2, 5] [2, 6] [2, 7] -> 5, 6, 7, 8, 9 [3, 4] ...
[ "yoonsung0711@gmail.com" ]
yoonsung0711@gmail.com
4ca4b99bd9fbb6d955354c042e8bfab1ce6eba41
d47db999783097bb9ab8aa3a1415c4ba84206a88
/app/src/main/java/com/moslemdev/kuypuasa/DataPuasa.java
bbbc849ac1e615613766653070a420d017bf2fdd
[]
no_license
alfarelzaki/KuyPuasa
9335cfa5268773ac766db6a6a9919c294bf71a09
dc259fc419948c454f82412c0f9fdd340c6d8c4f
refs/heads/master
2022-03-31T03:49:40.708002
2019-12-16T08:42:34
2019-12-16T08:42:34
218,909,397
1
0
null
null
null
null
UTF-8
Java
false
false
1,677
java
package com.moslemdev.kuypuasa; import java.util.ArrayList; public class DataPuasa { private static int[] tanda = { R.drawable.mark_puasa_senin_kamis, R.drawable.mark_puasa_ayyamul_bidh, R.drawable.mark_puasa_arafah, R.drawable.mark_puasa_asyura_tasua, R...
[ "alfarell.zaki@gmail.com" ]
alfarell.zaki@gmail.com
e66356835af8bf6d3e4d607e80abea136231f48d
990df8ee6fb1c46140a9ba0bd2cef7d95bad2cbc
/src/datastructures/Lists.java
149ff709d8b9cadf39b89bba005b6266ae547f62
[]
no_license
rmorency40/java-developer-training
9220bd0c64992e21cab128e9e8b18fbe50c74654
d7809aca2f3fd948f1864154f619285b89037e4f
refs/heads/master
2022-11-23T19:07:11.141764
2020-07-31T20:21:15
2020-07-31T20:21:15
278,474,654
0
0
null
null
null
null
UTF-8
Java
false
false
929
java
package datastructures; import java.util.ArrayList; public class Lists { public static void main(String[] args) { // 1. Crate a collection ArrayList<String> cities = new ArrayList<String>(); // 2. add some elements cities.add("Clevelant"); cities.add("Toronto"); cities.add("Chicago"); cities...
[ "30129346+rmorency40@users.noreply.github.com" ]
30129346+rmorency40@users.noreply.github.com
6873e255c02f6196151b64bdea6a485fe7c6d332
3c15e2e33a63e412867315953a24e60ae4e15e27
/app_stt/app/src/main/java/com/example/sa/app_stt/MainActivity.java
709c321048d2fce604234bd9c4abcb87231c5c4b
[]
no_license
rayee-github/android_project
230529c36b6b87b6bb8cd0df9960f36d6ed60b55
8a2a7c37badc952e94470b6d7665c2619cd068c5
refs/heads/master
2021-10-26T02:48:34.347773
2019-04-10T02:32:56
2019-04-10T02:32:56
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,816
java
package com.example.sa.app_stt; import android.content.Intent; import android.speech.RecognizerIntent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; import java.util.ArrayList; public class MainActivi...
[ "as21253679@gmail.com" ]
as21253679@gmail.com
ff9c3bebc4d7b528512e919971884d1d73154679
77125f9fe31d0a2db8f1b440363d8be5ba30d54d
/rpc-register/src/main/java/com/github/houbb/rpc/register/domain/message/impl/DefaultRegisterMessage.java
8357e9ec787b37da12595c484d044cbdce614d97
[ "Apache-2.0" ]
permissive
macrobussiness/rpc
2447ee8367e85a51a1739bb4a54a00ac371a7141
a40929fda09907743ffce4f662aa276905428f64
refs/heads/master
2022-12-26T01:41:55.252765
2019-11-08T05:54:00
2019-11-08T05:54:00
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,460
java
package com.github.houbb.rpc.register.domain.message.impl; import com.github.houbb.rpc.register.domain.message.RegisterMessage; import com.github.houbb.rpc.register.domain.message.RegisterMessageHeader; /** * 默认注册消息 * @author binbin.hou * @since 0.0.8 */ class DefaultRegisterMessage implements RegisterMessage { ...
[ "1060732496@qq.com" ]
1060732496@qq.com
f7f4186854b4abb5ddbed754da5d5166e7e128e2
9faa0b3e778c2c9fed3de4b7ccbceaaca06d8f41
/core/src/main/java/com/netflix/msl/entityauth/PresharedKeyStore.java
7b4cdf8fd33f2d56fa0386fd6d57f9e0151a6c1c
[ "Apache-2.0" ]
permissive
Kryndex/msl
0a45449373ec526f41171d867efe5c6154e44eb4
ebd96018bd708f5bb001f49e7220377244bb0c46
refs/heads/master
2021-01-21T10:29:39.767050
2017-05-18T06:47:21
2017-05-18T06:47:21
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,930
java
/** * Copyright (c) 2014 Netflix, Inc. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by...
[ "wmiaw@netflix.com" ]
wmiaw@netflix.com
47b0362001181688ef4c6a6e15765a7d7a896754
c9d4988bd302eb63245fa012bd493bd37f64168d
/src/structural/facade/ShippingService.java
a6fe8dec23a7e17aed07f74ff9da8115b8890444
[]
no_license
skatesham/design-pattern-implementation
b34b04ead465dd8b2a2d5337d5b7500c09c0e727
c877614767dabfff86fb2fa005b0a672194fe4e4
refs/heads/master
2020-04-15T19:57:54.923246
2019-01-15T20:01:48
2019-01-15T20:01:48
164,973,095
1
0
null
null
null
null
UTF-8
Java
false
false
182
java
package structural.facade; public class ShippingService { public static void shipProduct(final Product product) { // Connect with external shipment service to ship product } }
[ "sham.vinicius@gmail.com" ]
sham.vinicius@gmail.com
62cef0c7e717f97ad419cd36f1b495e083b0e6dd
97ead6dfbe1a6b569be08f7cd247161bc0a73121
/utils/utils-api/src/main/java/com/redshape/utils/range/RangeUtils.java
beb6a23d37d56b2a00958ae4d9411af42476d3fb
[ "Apache-2.0" ]
permissive
Redshape/Redshape-AS
19f54bc0d54061b0302a7b3f63e600afb01168ea
cf3492919a35b868bc7045b35d38e74a3a2b8c01
refs/heads/master
2021-01-17T05:17:31.881177
2012-09-05T13:49:50
2012-09-05T13:49:50
1,390,510
0
0
null
null
null
null
UTF-8
Java
false
false
11,079
java
package com.redshape.utils.range; import com.redshape.utils.Commons; import com.redshape.utils.ILambda; import com.redshape.utils.InvocationException; import com.redshape.utils.Lambda; import java.util.Collection; import java.util.HashMap; import java.util.Map; /** * @author Cyril A. Karpenko <self@nikelin.ru> * @...
[ "self@nikelin.ru" ]
self@nikelin.ru
5849f11c02f3cb0c5b30462a7747ec9051c47e5f
42e3d47992e92af71df40ee52587d8de9454b63c
/src/main/java/com/work/mydaggarworld/doagain/GOT/House.java
ddd38373f909d1ed6a526ef4ddc3020b9db80ad1
[]
no_license
rashel007/MyDaggarWorld
29bd60b17bb9197d10d1d8874e6141a1c2a74337
5bee974331d0d3bb3c3ace862feb4c506a0bbb1e
refs/heads/master
2020-05-30T05:19:34.738330
2019-07-27T06:21:21
2019-07-27T06:21:21
189,556,151
0
0
null
null
null
null
UTF-8
Java
false
false
126
java
package com.work.mydaggarworld.doagain.GOT; public interface House { void prepareForWar(); void reportForWar(); }
[ "rashel320@gmail.com" ]
rashel320@gmail.com
352f98e7c53a24b322a9d632b1a9e32221a33ec2
d715d4ffff654a57e8c9dc668f142fb512b40bb5
/workspace/glaf-dms/src/main/java/com/glaf/dms/mapper/DmsVolumeMapper.java
0c1f84912a825a4b2debae6e0b3f6c221660c439
[]
no_license
jior/isdp
c940d9e1477d74e9e0e24096f32ffb1430b841e7
251fe724dcce7464df53479c7a373fa43f6264ca
refs/heads/master
2016-09-06T07:43:11.220255
2014-12-28T09:18:14
2014-12-28T09:18:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,385
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 ...
[ "jior2008@gmail.com" ]
jior2008@gmail.com
90db77ab8d811ba75b8234c8ea37ced9f4acc624
5dc9b344fbaa771c61628706cc6b954628276cb1
/watheq/app/src/main/java/com/watheq/watheq/prices/MyOrdersFragment.java
e667fbc5fe9c3123302eaec9057b0091231c9993
[]
no_license
watheqapp/git-android
6b83f4621197cdbc7250a920695ec31b0249eab0
4425a464ce14e60a9a8846df1007c25dfd4ecfaf
refs/heads/master
2021-05-07T01:31:31.357211
2018-06-13T12:14:52
2018-06-13T12:14:52
110,346,917
0
1
null
null
null
null
UTF-8
Java
false
false
716
java
package com.watheq.watheq.prices; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.view.View; import android.view.ViewGroup; import com.watheq.watheq.R; import com.watheq.watheq.base.BaseFragment; /** * A simple {@link Fragment} subclass. ...
[ "mahmoud.diab@ibtikar.net.sa" ]
mahmoud.diab@ibtikar.net.sa
579aceb22f3eb75cff4193f030004035b8b20397
b7341458809eb4a396b374250ab612dd3ca9bbbd
/src/main/java/org/jeecgframework/web/cgform/controller/upload/CgUploadController.java
6e32b1ba972e3dc3c0e215982423edc2172fa953
[]
no_license
991576395/tukeWeb
de766f04a704ec9d044ba6d0790caf15d6581361
0f2a95d321e8adbb491f7ffae93c751f8ad7c67b
refs/heads/master
2022-12-24T21:25:13.393827
2021-03-29T12:23:12
2021-03-30T12:22:36
157,946,787
1
0
null
2022-12-16T04:25:04
2018-11-17T03:25:20
JavaScript
UTF-8
Java
false
false
11,227
java
package org.jeecgframework.web.cgform.controller.upload; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.OutputStream; import java.io.UnsupportedEncodingException; import java.sql.Timestamp; import java.util.Date; import java.util.H...
[ "991576395@qq.com" ]
991576395@qq.com
2199d295d9163c0efa787dc63d88d820ede10c57
20626ac5959668ce8ab8f9d9c92737881890e672
/Retirement/src/application/view/inputs/ComboBoxList.java
f7a9073a7e49d570cc31b5b9f48246de87bdc489
[]
no_license
DouglasSweeney/Retirement_v3
4b36c60346989aaa3e8c1b2da2d65376eb008936
57e33b8c551c31a694d46793099eea78a4819e3e
refs/heads/master
2021-07-20T08:41:08.263008
2019-11-21T07:15:25
2019-11-21T07:15:25
223,100,059
0
1
null
2020-10-13T17:37:41
2019-11-21T06:01:36
Java
UTF-8
Java
false
false
4,073
java
package application.view.inputs; import java.awt.Dimension; import java.awt.GridLayout; import java.awt.KeyboardFocusManager; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JComboBox; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JOptionPane; impo...
[ "tomanyads9@gmail.com" ]
tomanyads9@gmail.com
6af55e97b52806225a2d733accff71d624e16cdb
4a6109597814ee38d8c21c057d731f224c778612
/NdiayeMamadou/src/main/java/sn/ucad/master2soir/NdiayeMamadou/dao/NavireRepository.java
52b35e11591200138512525bc4e8b8cb2a92411c
[]
no_license
Mounene90/NdiayeMamadou
ea2db088b031a6ee069d9a0f9ad019905708ba7e
db38e53c7740d152277272f5a2219c7489dbd94b
refs/heads/master
2020-05-30T17:24:59.213174
2019-06-02T17:17:45
2019-06-02T17:17:45
189,874,306
0
0
null
null
null
null
UTF-8
Java
false
false
628
java
package sn.ucad.master2soir.NdiayeMamadou.dao; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.query.Param; ...
[ "MAMADOU NDIAYE@NDIAYE" ]
MAMADOU NDIAYE@NDIAYE
4ebdddf66f4d75ddd87cde3f4570719ec98734c5
20fbcd184e04d43fa25d200f08e8e60da5ed72a8
/app/src/main/java/com/example/ojboba/inventoryapp/EditorActivity.java
288d2f5214a7cb0ade2595f3d83ac780adcd8489
[]
no_license
jatin11gidwani/Inventory_App
77544c15ca9df8923033eb81e6bf5ff070879e21
835dc6a223b8eb72c022ac8d700b5ab425eabd90
refs/heads/master
2021-01-25T09:14:42.359283
2017-06-09T00:37:22
2017-06-09T00:37:22
93,803,271
0
0
null
null
null
null
UTF-8
Java
false
false
31,540
java
package com.example.ojboba.inventoryapp; import android.app.Activity; import android.app.AlertDialog; import android.app.LoaderManager; import android.content.ContentValues; import android.content.CursorLoader; import android.content.DialogInterface; import android.content.Intent; import android.content.Loader; import...
[ "jatin11gidwani@gmail.com" ]
jatin11gidwani@gmail.com
04614471eb79a49889ac4dcf6695a8293d9f03f8
f2e9603b216e21d34f25d8f2ff38e092dc6cbcdf
/4.IoC/src/main/java/com/denglitong/beanfactory/GroovyApplicationContextTest.java
6343e6045fe059e1ba9945638961b1d2d3c010c0
[]
no_license
denglitong/proficient_in_4x_spring
2da474277ca9bc7d4ea744249a3d57007b52bfa6
d37eaac9db1fa3d167692bd9828f84ee379947f2
refs/heads/master
2023-06-16T07:09:12.860008
2021-07-11T09:02:01
2021-07-11T09:02:01
372,717,780
0
0
null
null
null
null
UTF-8
Java
false
false
553
java
package com.denglitong.beanfactory; import com.denglitong.reflect.Car; import org.springframework.context.ApplicationContext; import org.springframework.context.support.GenericGroovyApplicationContext; /** * @author litong.deng@foxmail.com * @date 2021/6/3 */ public class GroovyApplicationContextTest { public...
[ "litong.deng@foxmail.com" ]
litong.deng@foxmail.com
07b1fcd19ca06c9263fee095066610512531b2c4
13ea5da0b7b8d4ba87d622a5f733dcf6b4c5f1e3
/crash-reproduction-new-fitness/results/LANG-1b-1-7-Single_Objective_GGA-IntegrationSingleObjective-BasicBlockCoverage-opt/org/apache/commons/lang3/math/NumberUtils_ESTest_scaffolding.java
449285dc53f1993f712d5d62d569b1091c66be07
[ "MIT", "CC-BY-4.0" ]
permissive
STAMP-project/Botsing-basic-block-coverage-application
6c1095c6be945adc0be2b63bbec44f0014972793
80ea9e7a740bf4b1f9d2d06fe3dcc72323b848da
refs/heads/master
2022-07-28T23:05:55.253779
2022-04-20T13:54:11
2022-04-20T13:54:11
285,771,370
0
0
null
null
null
null
UTF-8
Java
false
false
1,981
java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Fri Oct 29 04:11:29 UTC 2021 */ package org.apache.commons.lang3.math; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.jun...
[ "pderakhshanfar@serg2.ewi.tudelft.nl" ]
pderakhshanfar@serg2.ewi.tudelft.nl
fffabaab7dd31a325fc5dffd0cb0638f63f09e6d
17476e0163c9371e8a60b7c210018116cd700f78
/app/src/main/java/com/games/bitworxx/engine/SplashActivity.java
20df11df9ee1e8fc2926973c420626bf128a456e
[]
no_license
hubby1981/Engine
d41aa4b2ae249d28adb9fb78205008454252269c
50f0fa03f0e3a2daeda9ef21ac5eb8e092cb5655
refs/heads/master
2021-01-10T20:22:59.860304
2015-08-28T10:07:40
2015-08-28T10:07:40
39,772,698
0
0
null
null
null
null
UTF-8
Java
false
false
1,792
java
package com.games.bitworxx.engine; import android.app.Activity; import android.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.view.View; import com.google.android.gms.ads.AdRequest; import com.google.android.gms.ads.AdView; public ...
[ "marcel.weissgerber@live.de" ]
marcel.weissgerber@live.de
9c1227cb4e258b532dba59ef0bc52714f72b2616
754132678372080f2d783ac0293e1a0ad5673488
/src/test/java/nl/hu/bep/shopping/tests/ShopperTest.java
554a515133b0e828cf5137e8eed39a39a59b6dcb
[]
no_license
anass0347/BigShopperDemo
fbdc72bbe7fedc0ef0bc7ad08b4f22bd4b3e1531
16782ba54faaba71feeb3ff27e403520dc94cf8b
refs/heads/main
2023-06-02T05:59:48.842047
2021-06-07T16:51:19
2021-06-07T16:51:19
374,737,669
0
0
null
null
null
null
UTF-8
Java
false
false
934
java
package nl.hu.bep.shopping.tests; import nl.hu.bep.shopping.model.Product; import nl.hu.bep.shopping.model.Shopper; import nl.hu.bep.shopping.model.ShoppingList; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; public class Shopp...
[ "66690702+github-classroom[bot]@users.noreply.github.com" ]
66690702+github-classroom[bot]@users.noreply.github.com
64e1cbfbcd8fdddbfe69414603b253bb9ffd5d7f
5c0bbc5f32202c9fa51fa30067cdd35d92f4ea1f
/src/test/java/Com/mt/pages/FlightFinderpage.java
6fb261df0f19f478254ec2ae9df7021539f4ced3
[]
no_license
bahakarashish/ashu
a8228549d5424e244774de51c6e3e4996dc3b505
2e652fe7634a9f39c9394b895e45f0e94914a5b0
refs/heads/master
2023-04-14T09:16:47.660711
2019-09-17T06:50:05
2019-09-17T06:50:05
208,979,107
0
0
null
2021-04-26T19:30:37
2019-09-17T06:45:05
HTML
UTF-8
Java
false
false
1,297
java
package Com.mt.pages; import java.io.IOException; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.How; import org.openqa.selenium.support.PageFactory; import Com.mt.config.Config; import Com.mt.utility.LaunchApp; public class FlightFinderpage { @...
[ "bahakarashish@gmail.com" ]
bahakarashish@gmail.com
13b39021e8a402fed72fac25508f21d4ed658e05
91557c8d91d94c40b1b8962dcd055d78ba68e964
/src/java/com/arslorem/hamzah/mbs/CsSwTorCoMB.java
8b8fb6189528bfa1cf50818c325a8542a1b5ef86
[ "Apache-2.0" ]
permissive
alkuhlani/cs
6def1584877658311d13a24062437215f058ef1b
0b66e090eae450a5e166184cf94ae636bf6bd2aa
refs/heads/master
2020-04-21T23:37:59.464519
2019-02-10T07:08:01
2019-02-10T07:08:01
169,952,420
1
1
null
null
null
null
UTF-8
Java
false
false
2,073
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 com.arslorem.hamzah.mbs; import com.arslorem.hamzah.ejbs.CsContractBean; import com.arslorem.hamzah.ejbs.CsSwTorCoBean; import...
[ "ahmed.alkohlany@gmail.com" ]
ahmed.alkohlany@gmail.com
a903b1369760ae6bc8c118f16b82d292cf3a53f3
c3aa40f242a8349571ab38e288956d6b181f836c
/src/main/java/cn/zhucongqi/proxy/Walk.java
a3aa5c476875ffa2ae9c5606a5601e670e1d0e27
[]
no_license
LearnedHub/learning-patterns
0a0fb0272a3ba4f23c1e712c2af2f04b1bdb1f7e
0da6015bdac490d96e7569a0cf02ee1912b36647
refs/heads/master
2021-07-25T14:27:49.045759
2019-12-09T16:29:00
2019-12-09T16:29:00
226,298,642
0
0
null
2020-10-13T18:05:55
2019-12-06T10:00:55
Java
UTF-8
Java
false
false
234
java
package cn.zhucongqi.proxy; /** * @author :Jobsz * @project :learning-patterns * @date :Created in 2019/12/9 23:18 * @description: * @modified By: * @version: */ public interface Walk { void to(String addr); }
[ "brucezcq@gmail.com" ]
brucezcq@gmail.com
4902edb13365efe011ddd1144d358080122c0161
cd8bc1dfa21a4cc0e353ded247e78be1874fb856
/src/main/java/br/com/prox/repository/ApontamentoDAO.java
dd18a22fb79d39d3bb4f5d73dfba5d585883fcc6
[]
no_license
leonardohaine/pro-x
5de1409c41f4e4dee7ca58ddcf5f0db5b061a105
eada79a2ca7528d87412a4403aabc7e8dae04a54
refs/heads/master
2021-08-24T03:53:58.448831
2017-12-08T00:06:04
2017-12-08T00:06:04
112,983,810
0
0
null
null
null
null
UTF-8
Java
false
false
1,401
java
package br.com.prox.repository; import java.time.LocalTime; import java.util.Date; import java.util.List; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.query.Param; import org.springframework.stereotype.Re...
[ "leo_cdm@hotmail.com" ]
leo_cdm@hotmail.com
9e1ab8743ff388f39fc523b1c36d854679668164
e322c20186561f075b25865302aa4bec976419a5
/final_salon/src/main/java/dto/cartViewDTO.java
e293a09b8326a0adcebf822af3682370bd9991d6
[]
no_license
SWTreeWolf/final_project
14e173c312128c1fc15ced768460ff71c0233458
b37e097f55e8e11378c9735d123acb7e32ee9574
refs/heads/master
2020-03-29T11:04:16.810986
2018-10-12T21:35:43
2018-10-12T21:35:43
149,834,480
0
0
null
null
null
null
UTF-8
Java
false
false
1,608
java
package dto; import java.util.List; public class cartViewDTO { private int goods_code; private String goods_name; private String id; private int goods_price; private String goods_main; //////////////////////////////////////// private List<Integer> goods_code2; private List<Integer> cart_num; private List<In...
[ "luerune13@gmail.com" ]
luerune13@gmail.com
d348a359d957dec13af44fe0743d6e95f37a4bee
c7f91277794bc0f11a7cc8e47c64071e9b1f8be9
/imdb/src/main/java/org/training360/imdb/movies/MovieController.java
ef2925407c16bc37e3fba9a50ddc906a9b6b431a
[]
no_license
mityu85/practice-spring-boot
c1597017507724ef7fd93e3717a6156639aa9b2b
04686f4da2c47f13fdc008d6107220daf762d88e
refs/heads/master
2023-07-17T13:14:12.335641
2021-09-06T15:49:23
2021-09-06T15:49:23
401,013,311
0
0
null
null
null
null
UTF-8
Java
false
false
1,101
java
package org.training360.imdb.movies; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.*; import javax.validation.Valid; import java.util.List; import java.util.Optional; @RestController @RequestMapping("/api/movies") public class MovieController { private MovieService m...
[ "Mihaly.Toth@kuka.com" ]
Mihaly.Toth@kuka.com
af1e340aecff682883c3930e8ce11b7a6f0e8c11
095cc7c4043b0de1cd5c61073a97d6bbcc8f6b1c
/src/generics/exercise13/Generators.java
0b97f7986578179eda92b140f4a093441b1ee91c
[]
no_license
dragosbudrica/ThinkingInJava
3c242b721b24d6a406a8da1df4ddfe6d95a0ae2a
89dd9ec6bfd01cb0fde85190b81c2b8d858c6dba
refs/heads/master
2020-03-30T10:17:53.992478
2018-10-19T13:28:17
2018-10-19T13:28:17
151,114,412
0
0
null
null
null
null
UTF-8
Java
false
false
3,787
java
package generics.exercise13; import generics.Fibonacci; import generics.coffee.*; import java.util.*; import net.mindview.util.*; import java.util.ArrayList; import java.util.Collection; public class Generators { public static <T> Collection<T> fill(Collection<T> coll, Generator<T> gen, int n) { ...
[ "budricadragos@yahoo.com" ]
budricadragos@yahoo.com
b7bb52d4735d5bf2f21f87d08fca03251067d0bb
8d0b5e750885cf278e44c41dc80e01578a971239
/src/main/java/com/example/model/RoleBean.java
69c8fa2de03f6a3e6e0c9516d9dad342e3d17826
[]
no_license
liuqi368/spring-boot-demo
2cbbe110e2dbfa873b847421bed682148047ea97
d038abe6a5f80b85c9f9b1e330a801a236de05bf
refs/heads/master
2022-12-16T22:45:36.242835
2019-12-19T12:55:30
2019-12-19T12:55:30
229,054,331
0
0
null
2022-09-01T23:17:34
2019-12-19T12:54:17
HTML
UTF-8
Java
false
false
834
java
package com.example.model; import java.io.Serializable; import java.util.List; /** * @author liuqi * @Title: RoleBean * @ProjectName alpay * @Description: TODO * @date 2019/6/415:09 */ public class RoleBean implements Serializable { private Integer id; private String name; private List<Permission...
[ "liuqi368@gmail.com" ]
liuqi368@gmail.com
5d403f55c33a6fb37c7c79ef301280a63ec19288
596ed7d7b5139dea6e867e4bb255344ea7c7181f
/app/src/test/java/com/example/ios_razrab/serializable/ExampleUnitTest.java
ac1ed0b59a450b9077026c17f071618023c46c39
[]
no_license
pavel63/Serializable
e6bade6f9ac2ffea2ea5deb315526a565be9895a
0973ebff24e9f6811014f6f9d032169608d701c7
refs/heads/master
2020-03-19T03:33:19.034784
2018-06-01T16:05:57
2018-06-01T16:05:57
135,738,370
0
0
null
null
null
null
UTF-8
Java
false
false
396
java
package com.example.ios_razrab.serializable; 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 ...
[ "pavel366@yandex.ru" ]
pavel366@yandex.ru
1702f8008d6f302f54ed108b7a4aaa2775746941
d0cff0afee91e13b7b6649f329d0bc970eadcf05
/core/src/main/java/fr/herman/wizz/mapping/Output.java
8966f954c677c3ee55d10a4c0d999840a8f14260
[]
no_license
garc33/wizz
c19a9e96c4c00fa6977ce5843f2700368b0c4679
40f990776be7dbe1eb0a9e431be26fb8fcad32ac
refs/heads/master
2021-01-25T10:16:28.570416
2014-11-29T01:02:32
2014-11-29T01:02:32
null
0
0
null
null
null
null
UTF-8
Java
false
false
94
java
package fr.herman.wizz.mapping; public interface Output<S, V> { V getValue(S source); }
[ "garc33@gmail.com" ]
garc33@gmail.com
a45232ee0252f7b47504a41c3b19686cd7eb80a2
c6d26c7ca4c58cb36e8789a381de4293a5792c9e
/src/main/java/test/presentation/UtilityController.java
99989fbc24d3d6ed6ce008d4a43954ff3461b1ef
[]
no_license
kasapoorna5/mvntest
6829e756c68d17d4ff22c835dcd72d531d82607c
7cceb22cf91d7b2d6a637f99eafa064852adf91f
refs/heads/master
2020-03-18T06:31:27.214276
2018-05-22T10:49:03
2018-05-22T10:49:03
134,400,981
0
0
null
null
null
null
UTF-8
Java
false
false
5,062
java
package test.presentation; import java.io.IOException; import org.apache.commons.codec.digest.DigestUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind...
[ "kasapoorna5@gmail.com" ]
kasapoorna5@gmail.com
95ce48a1152f1b5b7cdca182e60e67f6d395226f
5ede312cb538b860470423250fbd2b0dba82c671
/src/test/java/com/tsmyk/wechatproject/WechatprojectApplicationTests.java
241c6120a53dc00b40f024fd1d54c69eec8a3bee
[]
no_license
76782875/wechatproject
26c4e39eeaf7e4b374dfb533b856451b9ec83fc1
af2681bebafe93e913a659ddc0679dd1e6ae3f23
refs/heads/master
2022-10-19T10:53:50.998601
2020-06-10T11:05:55
2020-06-10T11:05:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
231
java
package com.tsmyk.wechatproject; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest class WechatprojectApplicationTests { @Test void contextLoads() { } }
[ "1310208262@qq.com" ]
1310208262@qq.com
9c0f668d2dbc573a6b3508a93a0081b38d4e85ef
6b14c59fba946f80f261fcd83ac2ceba67bbecd2
/plugin-document/src/main/java/nl/xillio/xill/plugins/mongodb/MongoExpressionIterator.java
35e1aabaf857b3bed242541ac1157ce5e931f50a
[ "Apache-2.0" ]
permissive
xillio/xill-platform
30c7fcef5f0508a6875e60b9ac4ff00512fc61ab
d6315b96b9d0ce9b92f91f611042eb2a2dd9a6ff
refs/heads/master
2022-09-15T09:38:24.601818
2022-08-03T14:37:29
2022-08-03T14:37:29
123,340,493
4
3
Apache-2.0
2022-09-08T01:07:07
2018-02-28T20:46:52
JavaScript
UTF-8
Java
false
false
1,782
java
/** * Copyright (C) 2014 Xillio (support@xillio.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
[ "thomas.biesaart@outlook.com" ]
thomas.biesaart@outlook.com
8c16c64ac0475a35773afb6707da0d4602ebf928
977832113151e66abe19fdfebe7d5be1a47154fd
/app/src/main/java/com/example/samrat/relax/QueryUtils.java
fc60d733642e301b45146ad93001e477e0e7e8c9
[ "Apache-2.0" ]
permissive
samrat19/MovieReview_with_demo_book_ticket
ac262556d1067ae0bcfff9666402f09dd6528631
8c1b9de990cf49b70aa9449ebff8ecfba342c077
refs/heads/master
2020-03-18T00:33:16.819505
2018-05-19T21:59:48
2018-05-19T21:59:48
134,100,751
2
0
null
null
null
null
UTF-8
Java
false
false
4,035
java
package com.example.samrat.relax; import android.text.TextUtils; import org.json.JSONArray; import org.json.JSONException; import org.json.JSONObject; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.net.HttpURLConnection; import jav...
[ "babinsamrat123@gmail.com" ]
babinsamrat123@gmail.com
c9185cffe154a4f875cf75fccd847f65e2bbffef
dc3af1a8f12d2f0e5f335b213cf85fb904d16f75
/cdfy/src/com/bsco/app/model/ItemApply.java
0482dae263b72fc9e9f3d3c7218ab62d327d4e63
[]
no_license
yezaiyong/cdfy
cee56000c6819e53b8578ace939f71ce1c164eb9
254fcc0fab9723e5aacded0cb946488a19b2967d
refs/heads/master
2020-03-09T02:09:33.161202
2018-04-08T08:11:40
2018-04-08T08:11:40
128,533,776
0
0
null
null
null
null
UTF-8
Java
false
false
3,035
java
package com.bsco.app.model; // default package import java.util.Date; import java.util.HashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import static javax....
[ "529413792@qq.com" ]
529413792@qq.com
d90a2c2337d7c224c419b95b6c49ad31602575d1
d2153871fd35cd57c997cb30532ca3391b6531c1
/org.smartmdsd.infrastructure/org.smartsoft.utils/src/org/smartsoft/utils/commands/DeploymentCommand.java
4a5d8695297ad4091443049c6f97f4cd2ab76286
[ "BSD-3-Clause", "LicenseRef-scancode-free-unknown" ]
permissive
ipa-nhg/SmartMDSD-Toolchain
e819425c19d96a37d780ae11350a2c2602eb4be0
4f6535864cbfc40b053de7100a42e85289a87696
refs/heads/master
2020-05-24T07:40:29.167647
2019-04-30T10:51:16
2019-04-30T10:51:16
187,166,004
0
1
BSD-3-Clause
2019-08-15T07:41:20
2019-05-17T07:13:34
Java
UTF-8
Java
false
false
2,311
java
//-------------------------------------------------------------------------- // // Copyright (C) 2018 Alex Lotz // // lotz@hs-ulm.de // // Servicerobotik Ulm // Christian Schlegel // University of Applied Sciences // Prittwitzstr. 10 // 89075 Ulm // Germany // // This ...
[ "lotz@hs-ulm.de" ]
lotz@hs-ulm.de
625018e842245c2daf38a325d30c320da1750aba
590f065619a7168d487eec05db0fd519cfb103b5
/evosuite-tests/com/iluwatar/iterator/bst/BstIterator_ESTest_scaffolding.java
0f2cff0331f3ff8710124ddb0a99480d3078a113
[]
no_license
parthenos0908/EvoSuiteTrial
3de131de94e8d23062ab3ba97048d01d504be1fb
46f9eeeca7922543535737cca3f5c62d71352baf
refs/heads/master
2023-02-17T05:00:39.572316
2021-01-18T00:06:01
2021-01-18T00:06:01
323,848,050
0
0
null
null
null
null
UTF-8
Java
false
false
3,947
java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Mon Jan 11 08:43:55 GMT 2021 */ package com.iluwatar.iterator.bst; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.A...
[ "distortion0908@gmail.com" ]
distortion0908@gmail.com
7182aa946796a52dceb9c932079d8efd4348a5bb
a57547f60cf4db6df15d072a6a8ce7d6941f9971
/src/com/movie/service/UserService.java
cf7d38aa0ef7a7c4b98e1c350264ed10c6bc2bba
[]
no_license
BHQMZ/Movie
f1024291b5694fe06e8084148cf1f942fa0fb5c8
69089511d1027f48cf73c11d2279ccc43cc2db21
refs/heads/master
2020-03-13T18:49:54.521725
2018-04-27T03:57:53
2018-04-27T03:57:53
131,243,259
0
0
null
null
null
null
UTF-8
Java
false
false
278
java
package com.movie.service; import com.movie.Dao.impl.UserDaoImpl; import com.movie.model.UserModel; public class UserService { public int userLogin(UserModel userModel) { UserDaoImpl userDao = new UserDaoImpl(); return userDao.userLogin(userModel); } }
[ "35556428+BHQMZ@users.noreply.github.com" ]
35556428+BHQMZ@users.noreply.github.com
fb4ef6ede42d5738707cc4acc87c64fa707b56ba
35f211796a2f145dd9c2fd297669e92528911ba3
/app/src/main/java/new10/example/com/movieshub/ItemDecorationAlbumColumns.java
83b16f8bb94f1a40952931e4a0480f3cf15084ce
[]
no_license
minaNew10/MoviesHub
7a5f0aae7fab9875f6b71308c5108b207a426bf3
ed4ef860d095bc918c3e23beb3fc0e5097f9cedb
refs/heads/master
2020-07-02T07:17:30.458460
2020-04-26T21:44:30
2020-04-26T21:44:30
200,353,756
0
0
null
null
null
null
UTF-8
Java
false
false
2,100
java
package new10.example.com.movieshub; import android.graphics.Rect; import android.view.View; import androidx.recyclerview.widget.RecyclerView; public class ItemDecorationAlbumColumns extends RecyclerView.ItemDecoration { private int mSizeGridSpacingPx; private int mGridSize; private boolean mNeedLeftSpa...
[ "minadevdream@gmail.com" ]
minadevdream@gmail.com
04b01753b8c328f2a0c4e2518dfb6f4f03b0662e
5d49d8027c1611f20e7c1ffdba713e1acc6c73de
/workJavaScript/src/main/java/controller/FileUploadForm2.java
a6d5c32d20a387eaeb5c029a76c8cc49efd17dc2
[]
no_license
ansx86a/workTrunk
c30a0c25c2d30e7c4f64a466f1f4143d9aca6e52
70bea2a740ce93bbe5595dc7871ca8557f838272
refs/heads/master
2023-04-15T00:05:32.391337
2023-03-29T06:34:45
2023-03-29T06:34:45
53,563,304
0
0
null
2023-02-22T06:59:29
2016-03-10T07:07:54
Java
UTF-8
Java
false
false
398
java
package controller; import org.springframework.web.multipart.MultipartFile; public class FileUploadForm2 { private MultipartFile myf; private String myname; public MultipartFile getMyf() { return myf; } public void setMyf(MultipartFile myf) { this.myf = myf; } public String getMyname() { return mynam...
[ "ansx86a@gmail.com" ]
ansx86a@gmail.com
2ad94475bfa3983a211361a426eacafc8e1fd0c4
39aa0dcc3431d143547f6472c204432ecccdbba0
/messenger-platform-sdk/src/main/java/com/gerenvip/messenger/fm/exception/AccessSecretUndefinedException.java
c950bea73f6f37097097e56133443e9f232f865a
[ "Apache-2.0" ]
permissive
gerenvip/messenger-platform-sdk
1ddab75bf3fff27b0124d047ec58ef352aacb0aa
f261c8115d9078c09c9c9511f9df6301ece81cbd
refs/heads/master
2020-04-25T09:01:44.841240
2019-02-26T08:40:36
2019-02-26T08:40:36
172,664,823
1
0
null
null
null
null
UTF-8
Java
false
false
713
java
/* * Copyright [2018] gerenvip * * 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 i...
[ "wangwei@jiandaola.com" ]
wangwei@jiandaola.com
c24901af933422c6d6d40502707a978a9b6cf25c
c9b27668a60a7e1dea7f3552bb116a9da47f43d7
/src/test/java/com/example/activemqreceiver/ActivemqReceiverApplicationTests.java
67f94e466ff0f95a7c1e217fa63059421bcfe69d
[]
no_license
grElena/activemq-receiver
adbfcc86b7c51575829683db8bd51bb600d08155
f8a173608e676fd5493f5875ebffe00a37e79f09
refs/heads/main
2023-01-18T17:37:13.440573
2020-11-25T13:51:42
2020-11-25T13:51:42
315,953,043
0
0
null
null
null
null
UTF-8
Java
false
false
239
java
package com.example.activemqreceiver; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest class ActivemqReceiverApplicationTests { @Test void contextLoads() { } }
[ "gr.elena@mail.ru" ]
gr.elena@mail.ru
f7f5022c2bf9f3ac369608d0d84a6fcf97bcec68
90222b85ca0470c5faf8b5da27594dc100416de5
/app/models/DbImage.java
81e4047c35f1018e379c54464d0cdaa6d76aae09
[]
no_license
OC-Git/LeanTemplate
8745cd3d622fa4796475e5c71699c1e9ff30907c
26e0c99809eb89998241d39fb60bb1bd62656b1e
refs/heads/master
2021-01-22T12:08:23.027908
2013-04-19T15:47:43
2013-04-19T15:47:43
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,486
java
package models; import javax.persistence.CascadeType; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.OneToOne; import play.data.validation.Constraints.Required; import com.avaje.ebean.annotation.PrivateOwned; @SuppressWarnings("serial") @Entity public class DbImage ext...
[ "baltes@objectcode.de" ]
baltes@objectcode.de
d38e9fad8f23debd29ea42490ec69ec3136c5b82
56f24db12b17f7880f9393b7b1153815cad5f8cb
/DocBlock_PatientApp/app/src/main/java/com/antailbaxt3r/docblock_patientapp/MainActivity.java
0d97365d0381960631f2a134d43524d1bc57f206
[]
no_license
antailbaxt3r/DocBlock_Runtim3T3rror
ab2275921eccf3396850e7af436773c4d115ddee
3f7a6016c9cbfd7c4637261333782d5708c98512
refs/heads/master
2022-03-12T09:40:50.874994
2019-11-17T05:22:06
2019-11-17T05:22:06
222,057,463
0
1
null
null
null
null
UTF-8
Java
false
false
1,246
java
package com.antailbaxt3r.docblock_patientapp; import androidx.appcompat.app.AppCompatActivity; import android.content.Intent; import android.os.Bundle; import com.facebook.drawee.backends.pipeline.Fresco; import com.google.firebase.auth.FirebaseAuth; import com.google.firebase.auth.FirebaseUser; public class MainAc...
[ "arjunbajpaiwork@gmail.com" ]
arjunbajpaiwork@gmail.com
7de1d933134e84e287273ee910e26ad7493cfac0
5f2236736b19f78b49ff0067a7ed24b877b2b110
/src/leetcode/tree/Problem_236_LowestCommonAncestor.java
1f3bba47ccb94551834bee4a65392c5e9ba4660b
[]
no_license
nilzxq/suanfa
a22ae0d42deb1301d837ef103a60d5dd47f0d06a
ce2088148d04badded08890ce76134a70d37f7fd
refs/heads/master
2021-07-22T12:29:13.290839
2021-07-08T02:57:31
2021-07-08T02:57:31
104,465,073
0
1
null
null
null
null
UTF-8
Java
false
false
1,574
java
package leetcode.tree; /** * 二叉树的最近公共祖先 * @Author nilzxq * @Date 2020-08-14 9:28 */ public class Problem_236_LowestCommonAncestor { class TreeNode{ int val; TreeNode left; TreeNode right; TreeNode(int x){ val=x; } } /** * 分情况讨论 * 结束条件 如果ro...
[ "2013358717@qq.com" ]
2013358717@qq.com
9f76cf7149a68d3139a473619fc390f9f652b20f
8a930767dca3788dacd40b3cb34ecd0d79528640
/src/main/java/com/exedosoft/plat/ui/bootstrap/form/DOResultListPopupPml.java
56be30a6c3b3b179c4fcacf3295e473943e669a6
[]
no_license
mamacmm/eeplat
74c27603b8c34960ed909ce457ddab5c1dd6554f
6757848f6d76ba3e17006d6ae1f1a79cabd27b91
refs/heads/master
2021-01-02T04:53:11.428932
2014-03-05T07:22:11
2014-03-05T07:22:11
17,425,665
10
7
null
null
null
null
UTF-8
Java
false
false
7,890
java
package com.exedosoft.plat.ui.bootstrap.form; import java.util.Iterator; import java.util.List; import com.exedosoft.plat.bo.BOInstance; import com.exedosoft.plat.bo.DOBO; import com.exedosoft.plat.bo.DOService; import com.exedosoft.plat.ui.DOFormModel; import com.exedosoft.plat.ui.DOIModel; import com.exedosoft.plat...
[ "toweikexin@gmail.com" ]
toweikexin@gmail.com
1e06dc9db8168c4227aacf2d109ca19c3fb87b8b
465813c722e61ab0fb97645138ee5b6062b5fd65
/src/test/java/com/oroboks/util/GeoCodingUtilityTest.java
98c1141013473dcdce6415d3c38164a57e6ebb33
[]
no_license
aditya-narain/oroboks-service
bd4a4a79559a085357ebb4b568d7d51bd82a5660
043adf2f9df726138f76f5b1eedc4aa556790031
refs/heads/master
2021-06-24T07:41:20.276357
2017-09-01T04:27:42
2017-09-01T04:27:42
55,564,359
0
0
null
null
null
null
UTF-8
Java
false
false
1,438
java
package com.oroboks.util; import org.junit.After; import org.junit.Before; import org.junit.Ignore; import org.junit.Test; /** * Test for {@link GeoCodingUtility} * @author Aditya Narain */ public class GeoCodingUtilityTest { GeoCodingUtility utility; /** * Test setup for setting the default inst...
[ "anarain1989@gmail.com" ]
anarain1989@gmail.com
3c9fcf0d66a89e25c75553ba1e5a973d6d9030c9
277d58184aaaeb1223d4c06bc5f7c443c91ee7ef
/Seminar9/src/ro/ase/cts/proxy/clase/OperatorRezervare.java
2dd92cceb161a32e775365dc2b23d4444278ee09
[]
no_license
alexionpopescu/SeminarCTS
aa8f4bda69710e245ad93ef7a10268c0714aa236
dd35d0f80ea582863f69e2d4ad1dde80aac3f74d
refs/heads/main
2023-05-08T11:16:38.391232
2021-06-05T07:31:36
2021-06-05T07:31:36
342,800,465
0
0
null
null
null
null
UTF-8
Java
false
false
391
java
package ro.ase.cts.proxy.clase; public class OperatorRezervare implements IOperatorRezervari{ private String numeRestaurant; public OperatorRezervare(String numeRestaurant) { super(); this.numeRestaurant = numeRestaurant; } @Override public void rezerva(int numarPersoane) { System.out.println("Rezervare ...
[ "popescuion18@stud.ase.ro" ]
popescuion18@stud.ase.ro
2fcaa022bca72837da8d8953758c5990e6b512a3
574afb819e32be88d299835d42c067d923f177b0
/src/net/minecraft/client/particle/ParticlePortal.java
c2151c687b6adaad8bf0143a5e529eaf9822cb53
[]
no_license
SleepyKolosLolya/WintWare-Before-Zamorozka
7a474afff4d72be355e7a46a38eb32376c79ee76
43bff58176ec7422e826eeaf3ab8e868a0552c56
refs/heads/master
2022-07-30T04:20:18.063917
2021-04-25T18:16:01
2021-04-25T18:16:01
361,502,972
6
0
null
null
null
null
UTF-8
Java
false
false
3,297
java
package net.minecraft.client.particle; import net.minecraft.client.renderer.BufferBuilder; import net.minecraft.entity.Entity; import net.minecraft.world.World; public class ParticlePortal extends Particle { private final float portalParticleScale; private final double portalPosX; private final double portal...
[ "ask.neverhide@gmail.com" ]
ask.neverhide@gmail.com
f09b43b54b1dcd90834440c11b1d9967e1b180fb
c785eb7d232d0be677fc916d4f08d2f3ca2514cf
/src/niuke/Basic.java
389abafbba9f7feaed58ab40d267af9b73e705e9
[]
no_license
AshelyXL/LearnJava
21c4dabcdbeb79211457d54ee5fe57a0d66745e4
9a77523c751926b5976f3c13b158d2f0e535a8a7
refs/heads/master
2020-03-17T13:03:31.429452
2018-09-14T08:53:25
2018-09-14T08:53:25
133,615,100
0
0
null
null
null
null
UTF-8
Java
false
false
953
java
package niuke; import java.util.*; public class Basic { public static void main(String[] args) { //创建数组,必须指定数组长度 int[] a = new int[5]; a[4] = 67; System.out.println(a[4]); //直接初始化数组 int[] a_2 = {1,2,2,3,3,3}; //Array-->合并到-->List, //先用Arrays.asList将...
[ "1002839742@qq.com" ]
1002839742@qq.com
a1089610035b7c11a740434e821c8e9411d7b330
bfea3a16030108abfb943d1e852365fb809ff465
/Quiz2/src/ArrayProgram.java
77ecac631ce9dc6740d492e57141d9f8818f4f81
[]
no_license
DurgaPriyaKalam/308class
da023088dfc1d3658f28179eeb43c8580ef84095
c240d485a08c2014612c555ab1c47af7bec32ed4
refs/heads/master
2020-03-27T16:31:46.819311
2018-08-30T18:50:26
2018-08-30T18:50:26
146,789,396
0
0
null
null
null
null
UTF-8
Java
false
false
938
java
import java.lang.reflect.Array; import java.util.Scanner; public class ArrayProgram { public static void main(String[] args) { // TODO Auto-generated method stub int[] a ; int size; System.out.println("Enter size of array"); Scanner obj = new Scanner(System.in); size=obj.nextInt(); ...
[ "priyak.kalam@gmail.com" ]
priyak.kalam@gmail.com
0ddeecdcd887e4c77de2ec88465053992e960108
40016d1677ea2fad8165d2fedcd541676161b4f4
/src/com/lutao/america/model/User.java
526b91425d7a10832ffef0c9316343b2a4a8806c
[]
no_license
MeCodepy/mxhhr
893bac29d3c40662328cb25da86790ce0ef32013
e7312a65fecee210597be6ec55f5f6155f1f550d
refs/heads/master
2021-01-20T04:51:15.316285
2017-10-10T04:06:03
2017-10-11T07:13:27
101,389,222
0
0
null
null
null
null
UTF-8
Java
false
false
1,284
java
package com.lutao.america.model; import java.util.Date; import com.lutao.common.utils.Cryption; /** * 用户 * @author liang * */ public class User { private Long id; private String userName; private String userCode; private String userPwd; private Date visitTime; private String captcha; public User(){ s...
[ "1848607815@qq.com" ]
1848607815@qq.com
b53b9c2cdc7515499500ae1c5ce296d6f3542408
94deccb40db77b0fa82bec5b87a5e80b6bcd0350
/src/main/java/programming/practise/design_pattern/facade/OldClassOne.java
c0485743b9d1267246becd515b1e124a9d5cedb7
[]
no_license
cqupt-gsy/thinking-in-java
a5c219a8218fcf12036c739a5bcc88967d7c3b01
e85551259c2428b0e0f62373e6eb2ba07926f868
refs/heads/master
2020-12-05T03:32:06.526887
2020-10-21T14:09:58
2020-10-21T14:09:58
66,089,558
0
0
null
null
null
null
UTF-8
Java
false
false
142
java
package programming.practise.design_pattern.facade; public class OldClassOne { public String methodCall() { return null; } }
[ "gaosy0106@gmail.com" ]
gaosy0106@gmail.com
b110c7f56edd0cd1645bb68e103a2daceeb74113
bc180e29f81626e01b3ecee283bf4d21f3739c6c
/app/src/main/java/com/m2049r/xmrwallet/service/exchange/ecb/ExchangeRateImpl.java
c02f89f70a98c29a289dcc5075c77785a17aa93c
[ "Apache-2.0" ]
permissive
sumogr/sumo-android-wallet
30ca71190d7b77249e9505c0d010d5193678dfab
77f39022c0bc111796d7efec37b12c654f80d226
refs/heads/master
2021-07-12T02:26:34.174390
2020-02-26T19:35:52
2020-02-26T19:35:52
234,328,503
0
1
Apache-2.0
2020-01-27T07:34:53
2020-01-16T13:39:57
Java
UTF-8
Java
false
false
1,539
java
/* * Copyright (c) 2019 m2049r et al. * * 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...
[ "sumogr@mail.com" ]
sumogr@mail.com
e6b7dd2dc632d31af3454bbd682024a143c77168
84e064c973c0cc0d23ce7d491d5b047314fa53e5
/latest9.7/hej/net/sf/saxon/functions/ContextAccessorFunction.java
329015f1bfbd620525ac6aacce49c16a04d519e9
[]
no_license
orbeon/saxon-he
83fedc08151405b5226839115df609375a183446
250c5839e31eec97c90c5c942ee2753117d5aa02
refs/heads/master
2022-12-30T03:30:31.383330
2020-10-16T15:21:05
2020-10-16T15:21:05
304,712,257
1
1
null
null
null
null
UTF-8
Java
false
false
2,062
java
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // Copyright (c) 2015 Saxonica Limited. // This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. // If a copy of the MPL was not distributed with this file, You can obtain ...
[ "oneil@saxonica.com" ]
oneil@saxonica.com
324ad2f2903869e39d7de2e984cbc0cd9d52249a
c6da61303ea9ce1627bd5e338c586f5265aceeba
/src/main/java/com/mitocode/model/Signo.java
6cff3aac24cf8622bc82b4c6f9adb04b05264450
[]
no_license
cesarf283/tarea-mc-backend
bbfe2824d7433bb3ba976e92e00ce1b0e7dbae5d
246c250530674cb4d77c8d35d84cd76cb69915f9
refs/heads/main
2022-12-30T09:39:02.738740
2020-10-19T00:59:07
2020-10-19T00:59:07
305,223,580
0
0
null
null
null
null
UTF-8
Java
false
false
2,396
java
package com.mitocode.model; import java.time.LocalDateTime; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.ForeignKey; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import ...
[ "cesarf283@gmail.com" ]
cesarf283@gmail.com
3efa286e9caaa198d88aff1c3dc3295dd90ee41a
c648cb650eee67f951ece9b2ed70770ba86877d2
/src/main/java/com/watchdata/common/netty/coder/TlsDecoder.java
57165c72c74c9f26773fd06774a31fce69986067
[]
no_license
huakaibai/nettytest
4938a0728279233f9c55cc509050e3d4ff8537b8
1e99f7efa10abb19e2ed9538496aa8c5603b2bb3
refs/heads/TLSRefect
2020-04-11T21:08:57.953933
2020-01-03T08:09:10
2020-01-03T08:09:10
162,096,421
0
0
null
2020-01-08T13:49:11
2018-12-17T08:12:44
Java
UTF-8
Java
false
false
6,579
java
package com.watchdata.common.netty.coder; import com.watchdata.common.ClietnHello; import com.watchdata.common.ConstantValue; import com.watchdata.common.TlsMessage; import com.watchdata.common.netty.bean.BaseTls; import com.watchdata.common.util.StringUtil; import io.netty.buffer.ByteBuf; import io.netty.channel.Cha...
[ "709129286@QQ.COM" ]
709129286@QQ.COM
d4d8a3a932979db402c75d0ecc67b479d1e45a22
170d17c3f77bf2b0231442491348b33c68df9ae7
/Inscription/src/com/objs/demojdbc/DemoJdbc.java
4d211723acaf30e24adaac6e934d29b11f5478c1
[]
no_license
Bontino/inscriptions
23173059130b37f0624328afee0b9616fbc00f13
8d2c8dfe418fe1a7ed7f21f9014c901b1efebc0c
refs/heads/master
2020-06-17T16:25:55.879965
2017-04-26T12:21:44
2017-04-26T12:21:44
74,988,559
0
0
null
null
null
null
UTF-8
Java
false
false
149
java
package com.objs.demojdbc; public class DemoJdbc { public static void main(String[] args) { // TODO Auto-generated method stub } }
[ "sdaurelle@hotmail.fr" ]
sdaurelle@hotmail.fr
6e88cc3e1e83d1e2bc8e9abb8fbbae65d59a25fd
0ab32554deec7062417d77641f5e82d342f364c3
/AlgorithmPrograms/src/com/bridgeit/programs/Question5.java
8edba9c3e0509a097e954bc8062077822efb7ebd
[]
no_license
madhuri777/JavaPrograms
bd1157ed29bfc1ea3a137aa9578f3b0686c922e0
0daffd502afe6afb671f12db33ff3ef1e93aa7d1
refs/heads/master
2020-03-06T16:29:13.975629
2018-05-09T13:26:42
2018-05-09T13:26:42
126,974,040
0
0
null
null
null
null
UTF-8
Java
false
false
241
java
package com.bridgeit.programs; import com.bridgeit.utility.Utility; public class Question5 { public static void main(String[] args) { Utility utility=new Utility(); int N=utility.inputInteger(); Utility.findNumber(N); } }
[ "satkarmadhuri777@gmail.com" ]
satkarmadhuri777@gmail.com
c7c43b8dab0028335e9a80ff36f980cd8632e331
7f236d5cf06a8617fd76daa7bfbd91b02c0a0cbd
/src/com/book/cart/serviceImpl/CartServiceImpl.java
c62bfca637e1f3bad837723846bc456d9f6deb8c
[]
no_license
gavy1004/Book
2efcb844de9936f321b218677eeabe671647e615
b1c5434db9cc5ae6be01d7df38f3332ee065a081
refs/heads/master
2023-04-26T00:25:57.549406
2021-06-07T08:40:50
2021-06-07T08:40:50
371,544,733
0
0
null
null
null
null
UTF-8
Java
false
false
6,164
java
package com.book.cart.serviceImpl; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; import com.book.cart.service.CartService; import com.book.cart.vo.CartVO; import com.book.common.DAO;...
[ "admin@YD02-16" ]
admin@YD02-16
24e2dd51364c157606a0b6ebb66f536ece8a8eb6
847b523080fe191ffbdf4edc2640d4d4aee98493
/Test/src/push/nio/netty/TimeServer.java
809f69fa01aa7337432acfc06b76f46da8c0b51c
[]
no_license
pushbj/springcloud
d5ac04b08d343a39f7ac4a84eb50e629301612f1
dfc44f5d3a63d1d3cb526f652d875b6dd0c5fe55
refs/heads/master
2021-01-01T19:31:16.924359
2017-07-28T03:48:42
2017-07-28T03:48:42
98,599,673
0
0
null
null
null
null
UTF-8
Java
false
false
1,322
java
package push.nio.netty; import io.netty.bootstrap.ServerBootstrap; import io.netty.channel.ChannelFuture; import io.netty.channel.ChannelInitializer; import io.netty.channel.ChannelOption; import io.netty.channel.EventLoopGroup; import io.netty.channel.nio.NioEventLoopGroup; import io.netty.channel.socket.Sock...
[ "Think@ylf" ]
Think@ylf
b5eaadbec0e9637dc8a1771306ff7335978da3dc
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/2/2_b4da2cd498c4f7d3db22d69bc41baf0ebdbcb6bc/QuickContactActivity/2_b4da2cd498c4f7d3db22d69bc41baf0ebdbcb6bc_QuickContactActivity_s.java
53ac22bbb96b114b5126ea114e10b40a79ba371d
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
4,214
java
/* * Copyright (C) 2009 The Android Open Source Project * * 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 requi...
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
659a5940791ca2f94957a8ba9042a35b74af1ff9
3a4a5b9b5cab4fd58ba89363e711ad5e0f70f3b1
/InfVis/src/org/jfree/chart/labels/ItemLabelAnchor.java
4cd6effb7910f0d6a0047fb36e57d53ab9576b06
[]
no_license
BackupTheBerlios/infvishot
bed574cd737cfe3c5c494dcc61c0798fd788254c
409dc9b5831a2a01f950e263152967834eadcd7b
refs/heads/master
2020-03-30T05:00:37.063072
2005-06-13T16:31:05
2005-06-13T16:31:05
40,073,315
0
0
null
null
null
null
UTF-8
Java
false
false
15,497
java
/* =========================================================== * JFreeChart : a free chart library for the Java(tm) platform * =========================================================== * * (C) Copyright 2000-2004, by Object Refinery Limited and Contributors. * * Project Info: http://www.jfree.org/jfreechart/in...
[ "harrym_nu" ]
harrym_nu
9242f73147963921030b17e0269ad80cff2da786
af0354227cb21387265c757c376b0f967ee78d5b
/src/java/soaprmi/mapping/soaprmi/mapping/XmlMapException.java
e58f18c36ec175d2608efacbd56be8d3334820dc
[ "xpp", "LicenseRef-scancode-unknown-license-reference" ]
permissive
SZUE/xsoap
7bec2b22d333414c01874a3c31ffb837e8cd29a1
6c282d0687afb6cd3678943b0758277302d08ba8
refs/heads/master
2021-01-25T14:58:54.968630
2018-03-04T00:35:44
2018-03-04T00:35:44
123,743,069
0
0
null
null
null
null
UTF-8
Java
false
false
4,394
java
/* -*- mode: Java; c-basic-offset: 4; indent-tabs-mode: nil; -*- //------100-columns-wide------>|*/ /* * Copyright (c) 2002 Extreme! Lab, Indiana University. All rights reserved. * * This software is open source. See the bottom of this file for the licence. * * $Id: XmlMapException.java,v 1.4 2003/04/06 00:04:10 ...
[ "sascha.xander@googlemail.com" ]
sascha.xander@googlemail.com
06ab12f918a7906184b3bedf2dbe545970de294d
8dc84558f0058d90dfc4955e905dab1b22d12c08
/content/public/android/java/src/org/chromium/content/app/SandboxedProcessService24.java
15e1ffc0d7432962d9d24ab18c01ce1c3c125016
[ "LicenseRef-scancode-unknown-license-reference", "BSD-3-Clause" ]
permissive
meniossin/src
42a95cc6c4a9c71d43d62bc4311224ca1fd61e03
44f73f7e76119e5ab415d4593ac66485e65d700a
refs/heads/master
2022-12-16T20:17:03.747113
2020-09-03T10:43:12
2020-09-03T10:43:12
263,710,168
1
0
BSD-3-Clause
2020-05-13T18:20:09
2020-05-13T18:20:08
null
UTF-8
Java
false
false
406
java
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. package org.chromium.content.app; /** * This is needed to register multiple SandboxedProcess services so that we can have * more than one sandboxed pro...
[ "arnaud@geometry.ee" ]
arnaud@geometry.ee
03ae41809ef451780852f597f7b0f73f4d4e0e0c
b12b2ca3aa65f01675e53a82cf9fabdfa2ff56fc
/lintcode/532-Reverse-Pairs/solution.java
67770f85760ca07d732267cfa61c877b603ce302
[]
no_license
RealForce1024/algorithms
6dee61ed99a87419a9dd8cbb7c845adf9b8516ed
70ff99615fe9d39cd2dbf78fd75086cd7fa63d90
refs/heads/master
2022-05-31T18:56:01.226134
2016-09-11T22:42:07
2016-09-11T22:42:07
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,362
java
public class Solution { /** * @param A an array * @return total of reverse pairs */ public long reversePairs(int[] A) { return mergeSort(A, 0, A.length - 1); } private int mergeSort(int[] A, int start, int end) { if (start >= end) { return 0; } ...
[ "suyan0830@gmail.com" ]
suyan0830@gmail.com
ad0d70d2a5298cd3afb64d149906c377d7af925c
a0109ba48edbbd83b4374140e6ed75464d5bc789
/src/main/java/com/hapiniu/demo/springbootdocker/dao/LxmSysPermissionDAO.java
0adf142c073d5ddc73b4b34181548ed3557d6478
[]
no_license
lwz22psp/springbootdemo
183ed0de7b1532515bbae80856206fb6a987b324
f77bb0a3137ac27dcf7a34a00de31e6cdbc84294
refs/heads/master
2022-06-29T11:14:40.292138
2020-04-21T06:40:36
2020-04-21T06:40:36
176,914,827
2
1
null
2022-06-17T02:08:41
2019-03-21T09:41:32
Java
UTF-8
Java
false
false
1,104
java
package com.hapiniu.demo.springbootdocker.dao; import com.hapiniu.demo.springbootdocker.entity.LxmSysPermission; import com.hapiniu.demo.springbootdocker.entity.LxmSysPermissionExample; import java.util.List; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; @Repository pub...
[ "lwz22psp@hotmail.com" ]
lwz22psp@hotmail.com
b84087e02fe8225c29709769a8842737da241d00
eaffeaac77f4390c84c0f17f91055b906c60cf49
/src/ru/fizteh/fivt/students/olga_chupakhina/storeable/test/TestOTable.java
7a1a6c8e07ed36e06ca2b49bb9611d4bfbc9d459
[ "BSD-2-Clause" ]
permissive
ol5478/fizteh-java-2014
6e3f0dd4b1da234622a6f4bb38e1d47b098516c3
9b3486f20e22dcb064b3d95a4b060d3a5ad43f95
refs/heads/master
2020-05-29T12:27:44.918051
2014-12-15T19:22:18
2014-12-15T19:22:18
null
0
0
null
null
null
null
UTF-8
Java
false
false
9,424
java
package ru.fizteh.fivt.students.olga_chupakhina.storeable.test; import org.junit.After; import org.junit.Before; import org.junit.Test; import ru.fizteh.fivt.storage.structured.Storeable; import ru.fizteh.fivt.storage.structured.Table; import ru.fizteh.fivt.students.olga_chupakhina.storeable.OTable; import ru.fizteh....
[ "ol5478@yandex.ru" ]
ol5478@yandex.ru
a3ba294d5e987b871f6a5af6fdc219f8fa089afe
5e3235edf3de262f4d10b9e9e1fcc3bd13d6b8b1
/Code Snippet Repository/Spring/Spring7727.java
842763a3be98225b8405dedfed52026c5bbd6fff
[]
no_license
saber13812002/DeepCRM
3336a244d4852a364800af3181e03e868cf6f9f5
be3e5e50e34a042d5ba7259ff5ff75c08ab32bb9
refs/heads/master
2023-03-16T00:08:06.473699
2018-04-18T05:29:50
2018-04-18T05:29:50
null
0
0
null
null
null
null
UTF-8
Java
false
false
491
java
@Override public void registerSynchronization(Synchronization synchronization) { if (this.transactionSynchronizationRegistry != null) { this.transactionSynchronizationRegistry.registerInterposedSynchronization(synchronization); } else { try { this.transactionManager.getTransaction().registerSynchroniz...
[ "Qing.Mi@my.cityu.edu.hk" ]
Qing.Mi@my.cityu.edu.hk
5680b78ab65964af14516483980db80b5f9c96ed
b0f2249198ba35cfe7f5e3cebbe4413eef264f14
/src/main/java/nd/esp/service/lifecycle/daos/titan/TitanSyncTimerTask.java
5695ba13b5bbf4ccd39d3576ae31251749780262
[]
no_license
434480761/wisdom_knowledge
f5f520cfb07685fd97d2d1a5970630a00b1fc69f
1ee22a3536c1247f7b78f6815befbd104670119b
refs/heads/master
2021-04-28T23:39:24.844625
2017-01-05T06:26:29
2017-01-05T06:26:29
77,729,017
0
2
null
null
null
null
UTF-8
Java
false
false
5,001
java
package nd.esp.service.lifecycle.daos.titan; import nd.esp.service.lifecycle.repository.ds.ComparsionOperator; import nd.esp.service.lifecycle.repository.ds.Item; import nd.esp.service.lifecycle.repository.ds.LogicalOperator; import nd.esp.service.lifecycle.repository.ds.ValueUtils; import nd.esp.service.lifecyc...
[ "901112@nd.com" ]
901112@nd.com
bb13afa24dbe1725f6b50649d500438d47ce7e5e
bc4ba8e4bd1cae5fe1caf3a00d69f1fde3947538
/src/main/java/voterinformation/handlers/SessionEndedRequestHandler.java
48a3522a35db60869f37c92fb87720055d8aca31
[]
no_license
alvinlin88/AlexaVoterInfo
c43db587a52d3fc442340b638cbb06ba0952e3ff
2cbb4cd7998907c7795b797062a5af753c7002df
refs/heads/master
2020-04-04T14:45:37.584627
2018-11-04T18:40:25
2018-11-04T18:40:25
null
0
0
null
null
null
null
UTF-8
Java
false
false
722
java
package voterinformation.handlers; import com.amazon.ask.dispatcher.request.handler.HandlerInput; import com.amazon.ask.dispatcher.request.handler.RequestHandler; import com.amazon.ask.model.Response; import com.amazon.ask.model.SessionEndedRequest; import static com.amazon.ask.request.Predicates.requestType; import ...
[ "alvinlin88@gmail.com" ]
alvinlin88@gmail.com
ca054b7e0e86ef8ab0c134dcdba86d3e9ea5d43c
7199ee93c54d4fa9e108776ccd3af5c98fcfe876
/src/main/java/com/joseteles/apiseasolutions/models/Trabalhador.java
62cd8bd2032d86fefdac0ebaff8102ff0d4e9a3b
[]
no_license
jhteles/api-seasolutions
fbe9ca36f48e2fcabfd7439ac746d541c37f5857
ba0124574f560bfafa33a9d4fdc815426bc87d60
refs/heads/master
2023-08-29T22:17:39.152788
2021-10-06T23:34:24
2021-10-06T23:34:24
414,401,356
0
0
null
null
null
null
UTF-8
Java
false
false
1,779
java
package com.joseteles.apiseasolutions.models; import com.sun.istack.NotNull; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; import javax.persistence.*; import java.io.Serializable; import ...
[ "josehct@gmail.com" ]
josehct@gmail.com
d93ce505eb8f3d1adbc0f5663b39dec23a9f09a8
0fdde9a173bda5b01eccb93045f8753eea9be550
/ServerTest.java
e44a8bca2bb3b76694ed42b91b5ae406fa3a185d
[]
no_license
RaffalJ/Java-Gra-Chinczyk
27690b4c5013ab34fca0a7ba06124cab70ee241c
765db40a1b1f9ef23dd3a6ddfcd79cf000fe3f37
refs/heads/master
2021-01-20T17:03:53.204556
2017-05-10T12:29:11
2017-05-10T12:29:11
90,861,762
0
0
null
null
null
null
UTF-8
Java
false
false
1,108
java
package tests; import org.junit.runner.RunWith; import sample.Server; import java.net.Socket; import static junit.framework.TestCase.assertTrue; import static org.hamcrest.MatcherAssert.assertThat; /** * Created by ruffy on 29.01.2017. */ public class ServerTest { Socket socket=null; Serv...
[ "noreply@github.com" ]
RaffalJ.noreply@github.com
3390c5dcc51ed95b1d01b2dd4c34eadb4818761f
065c1f648e8dd061a20147ff9c0dbb6b5bc8b9be
/eclipseswt_cluster/361/tar_1.java
6b2ff7004084e2322cda7244cc5d8e3a3cc2c111
[]
no_license
martinezmatias/GenPat-data-C3
63cfe27efee2946831139747e6c20cf952f1d6f6
b360265a6aa3bb21bd1d64f1fc43c3b37d0da2a4
refs/heads/master
2022-04-25T17:59:03.905613
2020-04-15T14:41:34
2020-04-15T14:41:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
17,375
java
/******************************************************************************* * Copyright (c) 2000, 2006 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, an...
[ "375833274@qq.com" ]
375833274@qq.com
add2841156cdff516af7f20079e904d407df4ad7
2e547201ea9aa4b5f5243755144824e073b098f1
/src/main/java/hello/hellospring/repository/SpringDataJpaMemberRepository.java
c1874f213f4de0df729ffe20704298e1c6013980
[]
no_license
jikkun/hello-spring
ee41b5f550ac1d9b7685fd14a316321b6af4da9d
b717e1f8aa7504cc3724a3fcd108ff7a9000452a
refs/heads/master
2023-05-06T18:30:36.532751
2021-06-02T06:41:49
2021-06-02T06:41:49
362,350,751
0
0
null
null
null
null
UTF-8
Java
false
false
466
java
package hello.hellospring.repository; import hello.hellospring.domain.Member; import org.springframework.data.jpa.repository.JpaRepository; import java.util.Optional; // JpaRepository를 상속받고있으면 스프링에 자동으로 등록됨. public interface SpringDataJpaMemberRepository extends JpaRepository<Member, Long>, MemberRepository { /...
[ "henjuck@gmail.com" ]
henjuck@gmail.com
5760c3035887351dd08076979497a7fa3aeee2ef
95e6bfb2cec83171b5bc80fd8789eff4f90efbe3
/app/src/androidTest/java/com/amanirshad/chatapp/ExampleInstrumentedTest.java
7964cd70011c7cebc40498fed095ada12a33abaf
[]
no_license
amanirshad/ChatApp
b6369b013ca6403c7567b602aa8c2be1742ae6bb
42f3a99d441a433d3c4cef6016991da4381a1354
refs/heads/master
2023-04-26T20:23:12.590262
2021-05-26T17:35:39
2021-05-26T17:35:39
371,119,386
0
0
null
null
null
null
UTF-8
Java
false
false
758
java
package com.amanirshad.chatapp; import android.content.Context; import androidx.test.platform.app.InstrumentationRegistry; import androidx.test.ext.junit.runners.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on ...
[ "aman.itz.me07@gmail.com" ]
aman.itz.me07@gmail.com
2bc6bd59bd75d9f62db0400c0f6da824f6980e98
8a19574856e9c1caa462f9a5debdaeb6560279c2
/src/com/cts/programs/test/PrimeNumberTest.java
9864703f14f684bf9ae16c9742bf4b3193fe1c49
[]
no_license
saravanan00/CTSJavaAssignment
3c18ed8466ee8bb5c113ac708d17298e86eda787
1ec9ab732b150c241116a9bdf501407c70f6a27b
refs/heads/master
2020-03-18T09:03:53.179496
2018-06-02T08:13:31
2018-06-02T08:13:31
134,543,048
0
0
null
null
null
null
UTF-8
Java
false
false
233
java
package com.cts.programs.test; import com.cts.programs.PrimeNumber; public class PrimeNumberTest { public static void main(String[] args) { PrimeNumber primenumber=new PrimeNumber(); System.out.println(primenumber.prime(4)); } }
[ "saravananms1296@gmail.com" ]
saravananms1296@gmail.com
74032b6b36e222256bc4c4379ca4cc3a5caac9f1
71a410a05e19d9a6ee3f4695331077c5b5c89241
/springcloud_consumer_nacos_order_8083/src/main/java/com/chenzejie/springcloud/controller/OrderNacosController.java
48796e90b52bfc93e2b88e8b556271a03ecbaa89
[]
no_license
chenzejie-alt/springcloud-service
df37179ab1bebe402d7e9a8ba27f10b03bb51d72
37fd1913fc886c172e991b7ee352373e6322767d
refs/heads/master
2023-04-20T11:21:19.265615
2021-05-17T15:12:00
2021-05-17T15:12:00
362,742,090
0
0
null
null
null
null
UTF-8
Java
false
false
810
java
package com.chenzejie.springcloud.controller; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web....
[ "2752713798@qq.com" ]
2752713798@qq.com
be70bc0fdb0a32fb28b00bfcc327fe1398e4af72
aa65801f91700d89d7c2704dce06376f2dd1e5ce
/src/main/java/com/nicholasadamou/demo/Application.java
57baf941c94c539183a2e5297bf177e94c80efbc
[]
no_license
nicholasadamou/jwt-spring-security-demo
cbe186c384400dac802c51ea74fbd97ac93f1756
268bfd0331a73ac945f140a74b6837588980e77d
refs/heads/master
2023-04-04T05:38:52.381761
2021-03-26T10:11:28
2021-03-26T10:11:28
351,601,962
0
0
null
null
null
null
UTF-8
Java
false
false
357
java
package com.nicholasadamou.demo; import org.springframework.boot.autoconfigure.SpringBootApplication; import static org.springframework.boot.SpringApplication.run; /** * Starting point of the application */ @SpringBootApplication public class Application { public static void main(String[] args) { run...
[ "nicholasadamouemail@gmail.com" ]
nicholasadamouemail@gmail.com
f6c91f683456f5e6ea654f63b7e31ee708f20332
e968a6c69e8ba517ff2aadb573c704ef1618734d
/src/main/java/com/example/adminpage/model/network/response/AdminUserApiResponse.java
06737d6be6cc9b8d203fea4759ee9bef63edfead
[]
no_license
Lee-JaeHyuk/SpringBoot-adminpage
a0bf494d1abc543a3790577f2d13c9b7e27214c2
1046d4cd8864048abad1c377171ca7cb33e13a07
refs/heads/master
2023-06-19T21:29:00.811243
2021-07-22T14:26:25
2021-07-22T14:26:25
336,777,137
2
1
null
null
null
null
UTF-8
Java
false
false
695
java
package com.example.adminpage.model.network.response; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; import lombok.experimental.Accessors; import java.time.LocalDateTime; @Data @AllArgsConstructor @NoArgsConstructor @Builder @Accessors(chain = true) publ...
[ "leeseap33@naver.com" ]
leeseap33@naver.com
7d1fc45e92ac465a5c9e38eb853e469272938d17
42bb692d9140736c468e7ae328564c12b830b4be
/bitcamp-javabasic/src/step13/ex1/Member.java
7fc1f331675b8e8e64d8c3586a407c2d32460004
[]
no_license
kimkwanhee/bitcamp
b047f4cc391d2c43bad858f2ffb4f3a6a3779aa2
0245693f83b06d773365b9b5b6b3d4747877d070
refs/heads/master
2021-01-24T10:28:06.247239
2018-08-20T03:13:18
2018-08-20T03:13:18
123,054,178
0
0
null
null
null
null
UTF-8
Java
false
false
306
java
package step13.ex1; public class Member { String name; int age; public Member(String name, int age) { this.name = name; this.age = age; } @Override public String toString() { return "Member [name=" + name + ", age=" + age + "]"; } }
[ "rhdwn1955@naver.com" ]
rhdwn1955@naver.com
7171be9417f7814ca1eea672d0298e37b73c81bb
9641cb1d6caf845081ec59575b9f134c29c39d53
/src/com/peter/android/Ruler.java
bc3cfa1e9b3dcb574bc5e7fe2aa504c4f5f937fd
[]
no_license
tmdpzc/PeterAndroidUtil
19c8cd22af7cab00b662b04765c3ca2749304e41
c2e0888fa6c61bef72e2dec872da427a6a1dfbeb
refs/heads/master
2016-09-05T19:22:38.029576
2013-11-08T12:25:05
2013-11-08T12:25:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
519
java
package com.peter.android; import com.peter.asyncui.core.EventManager; import com.peter.asyncui.core.EventMangerImpl; import com.peter.asyncui.watcher.WatcherManager; import com.peter.asyncui.watcher.WatcherManagerHandlerImpl; public class Ruler { public static EventManager em() { return EventMangerImpl.g...
[ "peizicheng@gmail.com" ]
peizicheng@gmail.com
3200c03dd5b6b95e4c422d0191e4a2689f395bd8
45374faf42df237c195cbf895f7a598857b4d457
/src/test/java/com/github/fartherp/shiro/CodecTypeTest.java
c755b1354e9d7739abcf3d2e5d375c2554bdd64b
[ "Apache-2.0" ]
permissive
fartherp/shiro-redisson
837d2704dee6ecf988e42fcf25162415fc65238c
2ea0872835602cecd22578eb3cc261586065df55
refs/heads/master
2023-08-03T10:52:00.626068
2020-05-22T01:14:17
2020-05-22T01:14:17
163,499,832
8
4
Apache-2.0
2023-07-24T12:46:37
2018-12-29T09:55:22
Java
UTF-8
Java
false
false
3,972
java
/** * Copyright (c) 2019 CK. * * 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...
[ "214722930@qq.com" ]
214722930@qq.com