blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
332
content_id
stringlengths
40
40
detected_licenses
listlengths
0
50
license_type
stringclasses
2 values
repo_name
stringlengths
7
115
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
557 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
5.85k
684M
star_events_count
int64
0
77.7k
fork_events_count
int64
0
48k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
82 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
7
5.41M
extension
stringclasses
11 values
content
stringlengths
7
5.41M
authors
listlengths
1
1
author
stringlengths
0
161
7477cdf5f29540dafaf1bde9fa6b3bce878a31be
1ec73a5c02e356b83a7b867580a02b0803316f0a
/java/bj/DesignPattern/JavaDesignPatterns/command/src/main/ShrinkSpell.java
e0d8e00564882dc641d21bb3897f9cfa6483bca2
[]
no_license
jxsd0084/JavaTrick
f2ee8ae77638b5b7654c3fcf9bceea0db4626a90
0bb835fdac3c2f6d1a29d1e6e479b553099ece35
refs/heads/master
2021-01-20T18:54:37.322832
2016-06-09T03:22:51
2016-06-09T03:22:51
60,308,161
0
1
null
null
null
null
UTF-8
Java
false
false
632
java
package bj.DesignPattern.JavaDesignPatterns.command.src.main; /** * ShrinkSpell is a concrete command */ public class ShrinkSpell extends Command { private Size oldSize; private Target target; @Override public void execute( Target target ) { oldSize = target.getSize(); target.setSize( Size.SMALL ); th...
[ "chenlong88882001@163.com" ]
chenlong88882001@163.com
9f426bed475be5950e520a385647ae6c5952a169
a9e69dddd57a9094ce9d94555d90e80129a5232c
/src/main/java/com/znlccy/blog/controller/TagsController.java
b879f18ab40129caa22dc4b9a53e0fa226cce0bd
[]
no_license
znlccy/zc-blog
5a38d6d31ff8c432103786118233a492128c9f25
b02ce22cc551433c7dd6a1d6d9eea8ef5154625b
refs/heads/master
2020-08-03T12:57:14.999221
2019-09-30T02:39:00
2019-09-30T02:39:00
205,623,471
0
0
null
null
null
null
UTF-8
Java
false
false
476
java
package com.znlccy.blog.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; /** * Author: znlccy * Date: 2019-08-28-14:20 * Version: 1.0.0 * Comment: 标签控制器 */ @Controller @Requ...
[ "756311868@qq.com" ]
756311868@qq.com
c81c9fafd1c0bf5a6ef1e993748afa6fcdc6dfdd
f841c70548ba6d8af6bab83320265cba7ea482cc
/src/main/java/com/example/demo/utils/SessionUtils.java
fdf03fb6e6c00a336e76474bb873f7aa3a8aed91
[]
no_license
WuHuanye/shopmall
1ff9761bb2be35cee4866c8b3a4e8effe84f4513
6d92fcd21abea2ecc67fc4438a8ee85d2de1d610
refs/heads/master
2023-04-09T23:51:46.535606
2021-04-23T11:48:56
2021-04-23T11:48:56
299,496,768
0
0
null
null
null
null
UTF-8
Java
false
false
897
java
package com.example.demo.utils; import com.example.demo.pojo.User; import com.example.demo.vo.SessionUser; import org.springframework.stereotype.Component; @Component public class SessionUtils { public static SessionUser getHeaderUser(User user){ SessionUser sessionHeaderUser = new SessionUser(); ...
[ "1416478100@qq.com" ]
1416478100@qq.com
b75012d0592564dcc8cb9c6477a577de20e0c471
e6e556c1d96290ea053a403c2c8c5412c72b32fe
/src/com/converter/GeoJsonConverter.java
d4f0fc79c7929daebf19996d2ada304ecaea787a
[]
no_license
Jack5s/DisasterProject
bc63fdcabac2efe52fa59f14a020cd7e0de7cdbe
801ec10befcf9fad4543a636e391719b9d69729e
refs/heads/master
2020-05-23T14:00:33.677167
2019-05-29T09:02:03
2019-05-29T09:02:03
177,116,568
0
0
null
null
null
null
UTF-8
Java
false
false
2,288
java
package com.converter; import java.lang.reflect.Field; import java.util.ArrayList; import com.disaster.Disaster; public class GeoJsonConverter { public static String toGeoJson(Disaster disaster) throws Exception { if (disaster == null) { return ""; } String geoGson = "{\"type\": \"Feature\"...
[ "noreply@github.com" ]
noreply@github.com
73af09561d13f1845dfccddaee5ef417cb6867ce
0f995b7b560b5ea337ff1e404caf68cd5f97795a
/src/main/java/io/github/MorganeFt/exercice03/Exercice36.java
a1f699c5fb8387adf51476e5e960b71a0ce0acee
[]
no_license
MorganeFt/L3_cours
23282c72e60e893749e30a2048b769dc2c5072f7
8d9e65a078406e4aabbe03939d3d64e6807a9520
refs/heads/master
2022-12-22T03:44:29.229160
2020-09-15T16:40:18
2020-09-15T16:40:18
295,788,724
0
0
null
null
null
null
UTF-8
Java
false
false
994
java
package io.github.MorganeFt.exercice03; import java.util.Arrays; public class Exercice36 { public static void main(String[] arg) { biggestDivisor(); } static void biggestDivisor() { int numberDivisor = 0; int[] biggestNumber = new int[0]; for (int i = 1; i <= 10000; i++) { int counter = 0; for (in...
[ "morganemarielea@hotmail.fr" ]
morganemarielea@hotmail.fr
e82e75e9f39567b2842e61b946b10285109c79bf
f0813057af64bb2f80eba410316afd80f249c6f3
/test/com/tomkp/california/coercion/FileCoercerTest.java
6f723f648ce5d5c958c04d8b6931267682d7156a
[]
no_license
tomkp/california
c0cc7b99904eda2c465ea7dad3d43dd3ace88690
815cc34b22c6673c872d1b0e4c085f9ec1f8dd5d
refs/heads/master
2020-05-19T14:53:35.396002
2013-04-02T14:05:34
2013-04-02T14:05:34
619,243
0
1
null
null
null
null
UTF-8
Java
false
false
900
java
package com.tomkp.california.coercion; import org.junit.Before; import org.junit.Test; import java.io.File; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; public class FileCoercerTest { private FileCoercer fileCoercer; @Before public void setUp() { fil...
[ "tom@tomkp.com" ]
tom@tomkp.com
5f82727b68e76d10d3601b73943f47019e3e6cb9
22abd60cfadca17360b82616136525fd7526b8a1
/src/main/java/pl/mis/glycemicloadcalculator/entity/Product.java
593ba375f48e2b8678fc8fce865082a698b28a22
[]
no_license
mon-sliw/GlycemicLoadCalculator
de4e83cc761c65c6cc6f0e50219dcfce5105c8ab
4ad39eb48046a07ee7e7d0053d13847cf3e48e35
refs/heads/master
2023-05-09T23:20:38.241356
2021-05-30T15:04:47
2021-05-30T15:04:47
364,669,553
0
0
null
null
null
null
UTF-8
Java
false
false
523
java
package pl.mis.glycemicloadcalculator.entity; import lombok.Data; import javax.persistence.*; @Data @Entity @Table(name = "products") public class Product { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @Column(name = "english_name") private String englishName; @...
[ "nika.1993@interia.pl" ]
nika.1993@interia.pl
5f3e0435be0ed6e3f6732f137a30271a291ec7b9
0d48af5cb8012a79b3327a1d3e7ff0e65af54ea8
/hadoop-hdds/server-scm/src/main/java/org/apache/hadoop/hdds/scm/pipeline/leader/choose/algorithms/package-info.java
e29369a215d44e6cd06f396bfbca3bc57376e6e9
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference", "Apache-2.0", "MIT", "LicenseRef-scancode-unknown" ]
permissive
apache/ozone
4426dd1ae18716d0585f1e846f7881970e3c4279
a3b89e73185894f905b4ad96cd6d78429497d0c9
refs/heads/master
2023-09-04T05:26:08.656890
2023-09-02T15:16:12
2023-09-02T15:16:12
212,382,406
509
386
Apache-2.0
2023-09-14T19:54:21
2019-10-02T15:56:19
Java
UTF-8
Java
false
false
917
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 ma...
[ "noreply@github.com" ]
noreply@github.com
a622dd3ffd49005c31844a371745ef0676b63572
e93a0bd007ad0418f7c5d2d03606243bc97cf50e
/src/demo/filter/LogFilter.java
54aa6cc4a36d2466a77e174fb21eb20f3772bb57
[]
no_license
vuonglam94/DemoServlet
238e269bf50e3d1da1c67fd3b41a83422b75e3e1
0ee7dedb948238fa6fd2875670d82ceedd5c4842
refs/heads/master
2022-09-22T19:22:30.541117
2020-06-02T15:35:00
2020-06-02T15:35:00
268,761,252
0
0
null
null
null
null
UTF-8
Java
false
false
1,069
java
package demo.filter; import java.io.IOException; import java.util.Date; 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.servlet.http.HttpServ...
[ "lamv@peacesoft.net" ]
lamv@peacesoft.net
51a8b6b105ac61fb469979fa634913ce3558486f
22cf6cf152e731051ebd3da902b8c16d742b697c
/app/src/main/java/com/great/picturegalleryapp/ItemAdapter.java
9bfcc4f7cf4fc67883fbf67a1856f1c7d335ce57
[]
no_license
AchinAsin/PictureGalleryApp
f093f2d0e07cebee6667bd433c12d3ba4e97170d
ee95453cd74437a8e07443958b28265e39c853e4
refs/heads/master
2023-05-14T20:09:58.997571
2021-06-03T11:21:29
2021-06-03T11:21:29
373,481,585
0
0
null
null
null
null
UTF-8
Java
false
false
3,286
java
package com.great.picturegalleryapp; import android.content.Context; import android.content.Intent; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import android.widget.Toast; import androidx.annotation.NonN...
[ "vr1suman@gmail.com" ]
vr1suman@gmail.com
a73ef9f26aa4071d419b8c79d2761ee347ad55e8
527e955a9fdfd1ca514478469a15af51b5fe370a
/test/MarketSourceMock.java
5a140cf877df723cce1f7ddf1ec7393815c51bbd
[]
no_license
bouskaJ/camel-k-example-knative
ca93bd9ebf775db4dd11de2366488792a2492558
748da42387f2ce2096d2ca480fb4b4e8259bbe6b
refs/heads/master
2023-03-06T07:25:12.229144
2020-05-20T16:35:24
2020-05-20T16:35:24
265,860,694
0
0
null
2020-05-21T13:50:33
2020-05-21T13:50:33
null
UTF-8
Java
false
false
865
java
package test; // camel-k: language=java import org.apache.camel.builder.RouteBuilder; public class MarketSourceMock extends RouteBuilder { @Override public void configure() throws Exception { from("timer:update?period=10000") .bean(this, "generate") .marshal().json() .log("Sending ...
[ "ni.ferraro@gmail.com" ]
ni.ferraro@gmail.com
2e6e18cd57906cb8aa4ab103f27327ce7022e825
e64e86c058ba18c19178d99d7cb099ff8228aa1a
/src/main/java/org/apache/sysml/runtime/compress/ColGroupValue.java
febac4c565ad5e7648660f9a7b292324538b3a03
[ "Apache-2.0" ]
permissive
iamzken/systemml
67a1ba236dc6f173d38b84bdce09892fb6aaa2fb
3f3e927b88265be3c265fba896cb149b3aacf3e4
refs/heads/master
2021-03-27T15:16:34.150088
2017-09-04T23:08:16
2017-09-04T23:08:36
102,442,283
1
0
null
2017-09-05T06:22:07
2017-09-05T06:22:07
null
UTF-8
Java
false
false
12,211
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 ...
[ "mboehm7@gmail.com" ]
mboehm7@gmail.com
38274efb2c6428e27816630b4c4f7030724fc832
cd41353b832bb0040828443ce42fc1ad8509388f
/src/main/java/staff/Employee.java
33c36f27a181a18e67f0fefd93c899da1a7fa21d
[]
no_license
S-Mcilroy/CodeClan-Java-Inheritance
38c4a9f922e73e431674d942d4f7aef946a7b8d9
a14d1729103586f6dafc0b9fcabf0934dbf6e5ba
refs/heads/master
2021-04-18T04:28:31.362651
2020-03-23T17:54:51
2020-03-23T17:54:51
249,504,752
0
0
null
2020-10-13T20:35:46
2020-03-23T17:55:35
Java
UTF-8
Java
false
false
981
java
package staff; public abstract class Employee { private String name; private int niNumber; private double salary; public Employee(String name, int niNumber, double salary){ this.name = name; this.niNumber = niNumber; this.salary = salary; } public String getName() { ...
[ "stevenmcilroy@msn.com" ]
stevenmcilroy@msn.com
e1cd6b07a9a0583c94b9c14ac800db91d9ef3265
564d9b15804522af74e8573cb235a12af7ea6180
/src/org/densyakun/bukkit/hubspawn/HubSpawnListener.java
0047e69fbfadfb32a19858332f301cbcd7a3c059
[]
no_license
Densyakun/BukkitPlugin_HubSpawn
8b4031569f4ea3e85ed2c2c13455188f72354b24
9b03fdb53a38bae1607ed822ff9b60a7d0c6de71
refs/heads/master
2021-01-10T18:05:09.365553
2018-02-10T21:03:01
2018-02-10T21:03:01
48,908,693
1
0
null
null
null
null
UTF-8
Java
false
false
270
java
package org.densyakun.bukkit.hubspawn; import org.bukkit.entity.Player; /**Ver 1.7~*/ public interface HubSpawnListener { public void spawn(Main main, Player player); public void bed(Main main, Player player); public void home(Main main, Player player, Home home); }
[ "Densyakun1128@gmail.com" ]
Densyakun1128@gmail.com
c43ae1ff7fc890cdbff2090700fd421a5b0bc516
72c8e6554f6cf82c9dbde5fc6eb5d3d4b2eec964
/src/main/java/com/example/concurrentdemo/SimpleDaemons.java
d9e62114fe8b09a75680b2e771266b3d12d85e10
[]
no_license
qpxiwo1937/springboottest
697934c6fdf34c8331ac638e117bd30dec35291d
527288f69d3e15c9491e64b03715ccc6f0f0aca9
refs/heads/master
2023-01-09T09:46:08.352716
2020-11-09T03:29:26
2020-11-09T03:29:26
311,204,377
0
0
null
null
null
null
UTF-8
Java
false
false
995
java
package com.example.concurrentdemo; import java.util.concurrent.TimeUnit; /** * @author 郭文文 * @version 1.0 * @date 2020/11/1 19:38 */ public class SimpleDaemons implements Runnable { @Override public void run() { while (true) { try { TimeUnit.MILLISECONDS.sleep(100); ...
[ "guoww@zjugis.com" ]
guoww@zjugis.com
6632ce147be2f6bebe62e3dc18c7cc9176f9501b
16dfb3ab6ac4d3f5889eee6914882bd7643bcbed
/ArticleRep2/src/cp/articlerep/Worker.java
fa8d6d43443738fdb7a3bf90387e5516ca3804e4
[]
no_license
GoncaloSousaMendes/CP-mainProj
4ce4f7eb6779398dfd343e41620d462ff15bf142
b489c6aef8e39d045de6a317f6510fee70032c94
refs/heads/master
2020-04-09T23:37:24.446036
2016-12-02T11:33:22
2016-12-02T11:33:22
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,885
java
package cp.articlerep; import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.util.Random; import cp.articlerep.ds.Iterator; import cp.articlerep.ds.LinkedList; import cp.articlerep.ds.List; public class Worker { public static final b...
[ "jpg.almeida@campus.fct.unl.pt" ]
jpg.almeida@campus.fct.unl.pt
c36917d695b30e9eb8766e1b423938d2232d8d88
7948cf1a23c40e7054c6172a5a11eafd8269ae74
/src/test/java/com/project/professor/allocation/repository/CourseRepositoryTest.java
e30b2c36cd72786ae86f7ef2d672ce1b4b2fe013
[]
no_license
ClaraJaborandy/professor-allocation
acda7a37178d61fd4c05a27f32fba786dc1fafee
a50add0b0babf97c8f20c025f52d574f39804b46
refs/heads/master
2023-01-02T15:20:32.115855
2020-10-30T13:30:44
2020-10-30T13:30:44
307,503,913
0
0
null
null
null
null
UTF-8
Java
false
false
1,890
java
package com.project.professor.allocation.repository; import java.util.List; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.jdbc.AutoConfigureTestDatabase; import org.springframework.boot.test.autoconfigure.jdbc.AutoC...
[ "clarajaborandy@gmail.com" ]
clarajaborandy@gmail.com
e87cb61cd61873fe2c7fa3789ec417985bdf5826
a53db6654155e1d4293892aa97b2945fcd66566d
/src/main/java/pages/TravelerInsurancePage.java
7f16c3fe8c3739b52996b23efdd544ead160ffd7
[]
no_license
Aslan4242/firsttest
722d5a3ae0270ee1e5079dd0a60ee0308220bd1c
f45ef3ed944c940ce0546efeeaab166ef2c757c7
refs/heads/master
2021-07-13T13:10:43.535119
2019-10-17T20:34:41
2019-10-17T20:34:41
214,268,597
1
0
null
2020-10-13T16:45:11
2019-10-10T19:29:03
Java
UTF-8
Java
false
false
1,034
java
package pages; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.openqa.selenium.support.PageFactory; import org.openqa.selenium.support.ui.ExpectedConditions; import org.openqa.selenium.support.ui.Wait; imp...
[ "shakahov91@gmail.com" ]
shakahov91@gmail.com
225b3024a7fb28fc4dc17b3fd49555e52b0c355e
4fc1fe1bb33ab67490c4c18c10d512a484231f6b
/src/com/lzh/MobileSafe/AtoolsActivity.java
e64f8015fcebe4e51f61e77f38860f8902b4529d
[]
no_license
illidianlv/MobileSafe
bc7b8b2319e9ecd9bcb82d833126d947d491d49a
3fd8fd10bf2a662c4374cbc4844cb4b117007e14
refs/heads/master
2020-12-23T02:30:45.920091
2016-06-27T06:11:28
2016-06-27T06:11:28
62,029,967
1
0
null
null
null
null
GB18030
Java
false
false
3,407
java
package com.lzh.MobileSafe; import com.lzh.MobileSafe.utils.SmsUtils; import com.lzh.MobileSafe.utils.SmsUtils.SmsBackupCallBack; import com.lzh.MobileSafe.utils.SmsUtils.SmsRestoreCallBack; import android.app.Activity; import android.app.ProgressDialog; import android.content.Intent; import android.os.Bundl...
[ "Administrator@SY-200901010012" ]
Administrator@SY-200901010012
5c5f02fdd090cda4590830ec884f5f0efb331eb8
4e4aef7f87801e5c1870f2250420444973a10764
/app/src/test/java/com/ixuea/coures/kanmeitu/ExampleUnitTest.java
baef8bc52d08ebdead7796899b3dec60b5a690cb
[]
no_license
lty1234-deep/KanMeiTu
14c9acc5364e26410e414a091f68fa25673a1fd9
bd1d24460d6c3b78caceec67ebae5a4cc1059685
refs/heads/master
2020-08-31T00:14:28.358947
2019-10-30T13:23:16
2019-10-30T13:23:16
218,531,406
1
0
null
null
null
null
UTF-8
Java
false
false
386
java
package com.ixuea.coures.kanmeitu; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public v...
[ "15670097092@163.com" ]
15670097092@163.com
b5c49482da8a7b6ce1c69ce3a2e5c9032b8911f2
40cd4da5514eb920e6a6889e82590e48720c3d38
/desktop/applis/apps/core/games/tarot/src/test/java/cards/tarot/GameTarotPlayingFourTest.java
ebd2116a2c92c0b511b647c3412c972d28f146d9
[]
no_license
Cardman/projects
02704237e81868f8cb614abb37468cebb4ef4b31
23a9477dd736795c3af10bccccb3cdfa10c8123c
refs/heads/master
2023-08-17T11:27:41.999350
2023-08-15T07:09:28
2023-08-15T07:09:28
34,724,613
4
0
null
2020-10-13T08:08:38
2015-04-28T10:39:03
Java
UTF-8
Java
false
false
7,258
java
package cards.tarot; import code.util.CustList; import org.junit.Test; import cards.consts.GameType; import cards.consts.MixCardsChoice; import cards.consts.Suit; import cards.tarot.enumerations.BidTarot; import cards.tarot.enumerations.CardTarot; import cards.tarot.enumerations.DealingTarot; public class GameTarotP...
[ "f.desrochettes@gmail.com" ]
f.desrochettes@gmail.com
3c821df6f6a0abdcb0a948cd7a3e1be5492ac16e
58f20b362ae00f8fcb5ff03f690ba253dfe82465
/src/main/java/com/lingjoin/nlpir/plugin/ingest/document/pdf/Document.java
be6934d993d8c9d518485e8a1973ffb9540606dc
[ "MIT" ]
permissive
NLPIR-team/nlpir-ingest-elasticsearch-plugin
adf47825101743f51207d9277c705438b05c529d
93def7afbbdb0c48207f915d6e66785eac2e0589
refs/heads/master
2023-04-28T21:20:11.466772
2021-05-24T08:47:36
2021-05-24T08:47:36
344,755,226
0
0
null
null
null
null
UTF-8
Java
false
false
1,129
java
package com.lingjoin.nlpir.plugin.ingest.document.pdf; import com.lingjoin.nlpir.plugin.ingest.document.Element; import org.apache.pdfbox.pdmodel.PDDocument; import org.apache.pdfbox.text.PDFTextStripper; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.HashMap; imp...
[ "yangyaofei@gmail.com" ]
yangyaofei@gmail.com
d7f085c01ee4c4dd9f3567cfb659704b681fe0a8
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/35/35_fdb264996c608f8b28aacbd0f878223c975e3e1c/ContentChecker/35_fdb264996c608f8b28aacbd0f878223c975e3e1c_ContentChecker_s.java
254bed7d2c39cc8e32656c87ac75eb639ff4e235
[]
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
6,481
java
package net.sf.buildbox.maven.contentcheck; import java.io.*; import java.util.LinkedHashSet; import java.util.Set; import java.util.UUID; import java.util.jar.Attributes; import java.util.jar.JarFile; import java.util.jar.Manifest; import java.util.zip.ZipEntry; import java.util.zip.ZipFile; import java.u...
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
ef875c8d15f33f4f09455de68778967cbafe6cef
1eac15d5bcc70808b3e0b526dffd5694a558a417
/src/com/databorough/utils/MethodLogger.java
e1178d4f6807a71998299a2a534dcffe6f669204
[]
no_license
JuanCJR/XA-JAVA
0ee9c87e8c8b41ba0e1a79cb3becdf2954851849
862f6fd76ef2729811a8b6af7623c0a3e6517eac
refs/heads/master
2022-11-06T16:05:52.444537
2020-06-12T20:59:10
2020-06-12T20:59:10
271,888,879
0
0
null
null
null
null
UTF-8
Java
false
false
509
java
package com.databorough.utils; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; /** * Returns a method logger. * * @author Amit Arya * @since (2012-04-13.14:36:12) */ public final class MethodLogger { public static Log appLogger = LogFactory.getLog(MethodLogger.class); /** ...
[ "juancarlo14071@gmail.com" ]
juancarlo14071@gmail.com
82f8cc5388639f2c34f16085e1c195927226150b
017098b7b7d113dae9e586f4b4b77582df2159a8
/BankApp/src/com/cg/bankApp/servlet/ServletBank.java
32406614eb865cdba0ec29bee1c280348e38e9c9
[]
no_license
rpolu/servlets
089cbef6c0018aeffe2db05604a0c093aa792e44
a0c224a5f990d1e26bc94184e8aaf9bc29169e17
refs/heads/master
2022-07-03T21:05:52.186748
2020-08-26T03:22:56
2020-08-26T03:22:56
216,128,456
0
0
null
2022-06-21T03:49:25
2019-10-19T00:41:27
Java
UTF-8
Java
false
false
6,298
java
package com.cg.bankApp.servlet; import java.io.IOException; import java.util.Collection; import javax.servlet.RequestDispatcher; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import java...
[ "rpolu@192.168.0.101" ]
rpolu@192.168.0.101
e103e681992f83994039e86ed72c5d169b52d8dd
5a3d3b73d5f66ca07cb12aa2161983a8c17bb82b
/rendering-core-gl/src/main/java/de/javagl/rendering/core/gl/DefaultGLAttribute.java
ae12fab2e02ea56a9b6d6ede60079c01d87cba90
[ "MIT" ]
permissive
study-game-engines/opengl-object-oriented-api
235cc47378b8b4d886b516931f7f7139ceb47ce0
64a920ad2b4b9aada65489abcf2d1735b42c23c8
refs/heads/master
2023-03-16T17:12:13.808158
2016-07-05T17:14:26
2016-07-05T17:14:26
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,497
java
/* * www.javagl.de - Rendering * * Copyright 2010-2016 Marco Hutter - http://www.javagl.de * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including...
[ "javagl@javagl.de" ]
javagl@javagl.de
6485e92eb71d9b4409080868245daec8e6fdd8e2
6a922edda459cbd808b4ac4a85d809775dfb93a8
/src/ModbusTester/parameter/String256Parameter.java
6499ef65128cd83e469ca8c533cf06ec0cede0f3
[]
no_license
ctaxx/ModbusTest
0360383a1fd476694ddcce9ce300423478db21f7
29ac55b2ea68ffaf295a936c45955c6c447fecb2
refs/heads/master
2021-07-14T19:34:01.236617
2021-02-19T15:47:07
2021-02-19T15:47:07
237,235,501
0
0
null
null
null
null
UTF-8
Java
false
false
2,490
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 ModbusTester.parameter; import java.io.UnsupportedEncodingException; import java.nio.ByteBuffer; import java.util.logging.Leve...
[ "bykov.stanislav.p@gmail.com" ]
bykov.stanislav.p@gmail.com
103beb51f651077481ed11cfa35aadd736c3e38e
cd3a497a9389cd81e796f7f60c89b30563925c2a
/src/main/java/com/javastar920905/spider/listener/UpdateProxyListener.java
751c7cf2e9c0ff9852f6f888ce1595aee96f9730
[]
no_license
javastar920905/spider-webmagic
421bc17fc39d8dbac865f388fd322328fb5de34e
afa87f872cc445decc943f328b8545873364dc28
refs/heads/master
2021-01-19T04:48:20.636324
2017-08-28T03:35:03
2017-08-28T03:35:03
69,107,127
1
1
null
null
null
null
UTF-8
Java
false
false
2,142
java
package com.javastar920905.spider.listener; import com.alibaba.fastjson.JSONObject; import com.javastar920905.spider.util.SpiderUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import us.codecraft.webmagic.Request; import us.codecraft.webmagic.Spider; import us.codecraft.webmagic.SpiderListener; import ...
[ "ouzhx@lt51.cn" ]
ouzhx@lt51.cn
1806c0ee9fb7106b3eb00ecb088007c273f32b00
d408f07c36821829c76f1cd227bcf24a363004fb
/Architect/src/architect/thread/wait/AnotherClass.java
54e8fb927720037d9c556f96340141249905e4b0
[]
no_license
fslichen/Java_Buffer
3bfdd49413aa5c563d08a3c0db0ca62dc08a4998
c7dd79de9b7c886adbe0fe2b542aaa53feda9080
refs/heads/master
2021-06-22T02:11:55.286755
2017-08-28T10:32:40
2017-08-28T10:32:40
null
0
0
null
null
null
null
UTF-8
Java
false
false
154
java
package architect.thread.wait; public class AnotherClass { public void run() { while (true) { System.out.println("Hello World"); } } }
[ "user@use1r-PC" ]
user@use1r-PC
10535b220747c7b2352998589365b432132e40b0
ee7e3493b1c3857c83f0a23f61803c1d86f7dd43
/src/main/java/xyz/mizan/springbootsecurity/boot/controller/EmployeeController.java
c26b5bae9aaaf148ca081509190b833dac4b5c5e
[]
no_license
kmmizanurrahmanjp/spring-boot-security
2a48807dced0d23bafcc7e75f57f6a6678b40e60
c49d48f679223c44b9974c5c83f1044cbdfa3204
refs/heads/master
2020-04-02T23:01:55.423243
2018-10-29T17:00:29
2018-10-29T17:00:29
154,853,355
0
0
null
null
null
null
UTF-8
Java
false
false
2,354
java
package xyz.mizan.springbootsecurity.boot.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.PathVariable; impo...
[ "https.mizan@gmail.com" ]
https.mizan@gmail.com
ecf7fcf9fb009d815176944701625bb053752845
a00a37ce993fc64fec0ce0f713b2a9065f323a89
/demo/reg/EmailDemo.java
4fbd02df8fae186d851939e95ed6f12e88d20a9e
[]
no_license
tejaswirajput/com.cg.demo
0c3ecc7191b7b56bba6f7a88950a1f45028a6f68
dc2339c84cc4784ed4214dec949c6cb9cb1fc026
refs/heads/master
2023-06-03T01:29:09.202322
2021-06-22T06:55:49
2021-06-22T06:55:49
375,003,804
0
0
null
null
null
null
UTF-8
Java
false
false
448
java
package com.cg.demo.reg; import java.util.regex.Matcher; import java.util.regex.Pattern; public class EmailDemo { public static void main(String[] args) { String email = "sonu.surname@gmail.com"; // String regex = "[^\\d][\\w-.]+[@][^\\d][\\w]+[\\.][^\\d][\\w]+"; String regex = "[\\D][\\w-.]+[@][\\D][\\w]+[\\...
[ "rajput3045@gmail.com" ]
rajput3045@gmail.com
cf8538231615e7ce787255c02985f1c1615e06ad
a7a9fcc2e8b50d4258691fdbd9a18e835c86672d
/AB-XACML/src/main/java/edu/purdue/absoa/ABAuthorization.java
f2cc79fa2372884495e073b4f1f7468e83da745a
[]
no_license
rohitranchal/pd3
332057d59c255cae3dc8f0ac8127f5f9843c1d52
1351471588bb55a0dcedef75c2040dd6394d2d0b
refs/heads/master
2020-05-30T05:24:33.215108
2015-04-02T03:44:15
2015-04-02T03:44:15
41,401,152
0
0
null
null
null
null
UTF-8
Java
false
false
2,011
java
package edu.purdue.absoa; import java.io.ByteArrayInputStream; import java.io.InputStream; import java.security.cert.CertificateFactory; import java.security.cert.X509Certificate; import java.util.Arrays; import java.util.HashMap; import java.util.List; public class ABAuthorization { public static HashMap<String, ...
[ "google.rohitranchal@gmail.com" ]
google.rohitranchal@gmail.com
9ef97cc4a00a61a94b175cbed01cd6ed839a193f
f2bc06a70baa18a5839be6ee3f54128c9f0fd69e
/app/src/androidTest/java/com/jaircadenas/cheeseapp/ExampleInstrumentedTest.java
e097b8a8842fb7fe3bed4f3129a7fb353759f396
[]
no_license
mussiojair/CheeseApp
f85c8a462b61ab8ff2883363ad28994cb6b9202c
e2c52d7c555851505e0bd78c12ca9dbb1611f969
refs/heads/master
2021-01-19T18:29:26.394248
2017-08-23T14:57:26
2017-08-23T14:57:26
101,142,780
0
0
null
null
null
null
UTF-8
Java
false
false
754
java
package com.jaircadenas.cheeseapp; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumentation test, which will execute on an An...
[ "mussiojair@gmail.com" ]
mussiojair@gmail.com
a6bd855510788b7f3dbc8023235b8fe900eb6190
92b1f21292e0ae40d56bf872e5262faac93d9347
/app/src/main/java/com/teamarp/rahul/getwoke/MainActivity.java
31933677fada0e91bde652dc8d66f4f14ffaf8aa
[]
no_license
rahulk0127/GetWoke
23356a5f7b043672aa5b66521a62f0bfabd48d36
7561544aa0356053147af76cc074089415573fdb
refs/heads/master
2020-04-09T03:47:32.755281
2018-12-01T23:52:59
2018-12-01T23:52:59
159,996,784
0
0
null
null
null
null
UTF-8
Java
false
false
338
java
package com.teamarp.rahul.getwoke; 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.activi...
[ "rahulk4@illinois.edu" ]
rahulk4@illinois.edu
78d616ebebd4c74b24dc16d6b28e833218870091
a68b744b2011491f5ecd87f31901981aad1a346f
/Easy/numberLineJumps.java
3157a2e3d1603ffae8b81c0d5a6683e337c2490a
[]
no_license
mas-diq/Hackerrank
c1faf58377a7031477079b7a10db07d7ca78f227
b85d4f3c4c0ed3d019d31e523ebb47a33e434e25
refs/heads/main
2023-02-13T12:46:19.204618
2021-01-15T03:43:58
2021-01-15T03:43:58
325,296,030
1
0
null
null
null
null
UTF-8
Java
false
false
631
java
import java.io.IOException; import java.util.Scanner; public class numberLineJumps { public static void main(String[] args) throws IOException { Scanner s = new Scanner(System.in); int arr[] = new int[4]; int i = 0; while (i < 4){ arr[i] = s.nextInt(); i++; ...
[ "noreply@github.com" ]
noreply@github.com
4cb094a51c3f4f4882c697ca52377d317fd189f7
5e224ff6d555ee74e0fda6dfa9a645fb7de60989
/database/src/main/java/adila/db/mango_a12d810.java
279864f59f65a6b54dda87f9c81d786ac8c30439
[ "MIT" ]
permissive
karim/adila
8b0b6ba56d83f3f29f6354a2964377e6197761c4
00f262f6d5352b9d535ae54a2023e4a807449faa
refs/heads/master
2021-01-18T22:52:51.508129
2016-11-13T13:08:04
2016-11-13T13:08:04
45,054,909
3
1
null
null
null
null
UTF-8
Java
false
false
204
java
// This file is automatically generated. package adila.db; /* * Acer A1-810 * * DEVICE: mango * MODEL: A1-810 */ final class mango_a12d810 { public static final String DATA = "Acer|A1-810|"; }
[ "keldeeb@gmail.com" ]
keldeeb@gmail.com
c93035f6017041c5228d96f5deb04dcdc81a9476
7a50aa5767669388335c1bedac408b3d871978f1
/src/test/java/com/sustech/gamercenter/BaseTest.java
7fd1a14f699d9328921c66360ae52ddf033516e6
[ "Apache-2.0" ]
permissive
monkeyboiii/gamer-center
fb0e2ba8a852ff6e3b8cc5782eca40ee45bf68ed
62e2347ff138553aba6acc1ed7fd719692edd37c
refs/heads/master
2023-02-04T08:40:52.651761
2020-12-26T02:19:27
2020-12-26T02:19:27
296,316,925
1
3
Apache-2.0
2020-11-22T07:38:16
2020-09-17T12:16:36
Java
UTF-8
Java
false
false
6,497
java
//package com.sustech.gamercenter; // //import com.zaxxer.hikari.HikariDataSource; //import org.junit.runner.RunWith; //import org.springframework.beans.factory.annotation.Autowired; //import org.springframework.beans.factory.annotation.Value; //import org.springframework.boot.autoconfigure.jdbc.DataSourceBuilder; //im...
[ "1283045105@qq.com" ]
1283045105@qq.com
54cd85cc72345da2d2437d2c7d92c11896b72adf
e2852c2ade95d47b202023609b16bd1d699716e9
/Project/src/main/java/upd/exception/UnsupportedReportTypeException.java
7cbce7c2e06aff97b1d11b11b57db1a8d7c88e21
[]
no_license
zlamaann/cvut-bp
4c9eac5cc478770e1412a773332868c9cc7d0aec
ae5c7791e55af5e64c0250bbb8116a2246ebf493
refs/heads/master
2022-10-18T06:34:54.360804
2018-05-23T22:38:14
2018-05-23T22:38:14
190,808,973
0
0
null
null
null
null
UTF-8
Java
false
false
330
java
package upd.exception; /** * Thrown for reports which are not supported by any service in the application. */ public class UnsupportedReportTypeException extends RuntimeException { public UnsupportedReportTypeException() { } public UnsupportedReportTypeException(String message) { super(message)...
[ "zlamaann@fel.cvut.cz" ]
zlamaann@fel.cvut.cz
408fd9046f8e25a90e18805c3953f30699d97a16
071a9fa7cfee0d1bf784f6591cd8d07c6b2a2495
/corpus/class/sling/1364.java
a29bdf8a5a3a142fae013c23b91fcd82d7c74dc5
[ "MIT" ]
permissive
masud-technope/ACER-Replication-Package-ASE2017
41a7603117f01382e7e16f2f6ae899e6ff3ad6bb
cb7318a729eb1403004d451a164c851af2d81f7a
refs/heads/master
2021-06-21T02:19:43.602864
2021-02-13T20:44:09
2021-02-13T20:44:09
187,748,164
0
0
null
null
null
null
UTF-8
Java
false
false
1,275
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 ...
[ "masudcseku@gmail.com" ]
masudcseku@gmail.com
071b5a488cbdeed67951e3e7efc19057d361882b
bb11c00743a4821801eabd1301121411f442b9ff
/core/src/main/java/com/holonplatform/vaadin/internal/components/VaadinValidatorWrapper.java
c87f8878b210e6c1b078875d1a89ea5edc9d317b
[ "Apache-2.0" ]
permissive
holon-platform/holon-vaadin
27d89cf825e2b53fec6b274d16840d77794b4595
d56d6f6c8cec716636b3edb3bc57d16a6937e4be
refs/heads/master
2022-02-03T21:29:07.523021
2019-12-31T11:59:56
2019-12-31T11:59:56
93,380,833
4
3
Apache-2.0
2022-01-21T23:11:19
2017-06-05T08:11:47
Java
UTF-8
Java
false
false
2,295
java
/* * Copyright 2000-2017 Holon TDCN. * * 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...
[ "rr9379@gmail.com" ]
rr9379@gmail.com
c9a2004e56a269de3ce021d37ca912e173e6a8d0
d7bf5938f307052b888e843785031647f9186a45
/android-front-end/app/src/main/java/org/coursera/capstone/process/ReminderBootReceiver.java
b3d4f69e6d7139911f34db783d3345bb23b3e48d
[ "Apache-2.0" ]
permissive
abrugues/symptom-management
c8f99be6329a32065dde285a02dd8f5e903b47b5
1e611d958348463b2d6ead55ef27d5211b9683a8
refs/heads/master
2020-05-17T17:40:14.255279
2017-05-01T16:16:28
2017-05-01T16:16:28
39,410,306
0
0
null
null
null
null
UTF-8
Java
false
false
386
java
package org.coursera.capstone.process; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class ReminderBootReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { if (intent.getAction().equals("android.in...
[ "albert.brugues@gmail.com" ]
albert.brugues@gmail.com
19e3f834bfb09490b7623ef201fa87d4378bdbff
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/8/8_7157eb022ee32bf339b204ca9c59ddb12e7296e6/PageTest/8_7157eb022ee32bf339b204ca9c59ddb12e7296e6_PageTest_t.java
e3b488d09298363d77c1b984e595ac920662b180
[]
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
958
java
package cz.tsl.velocity; import cz.tsl.XmlDiff; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; import static junit.framework.Assert.assertTrue; /** * User: richard.sery * Date: 31.3.13 * Time: 13:42 */ @RunWith(JUnit4.class) public class PageTest extend...
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
296f7fb03199b7aba1f3d06024dc14323f9aad29
faed6597916007ed59a8e14f3a5740a5152baa01
/FullTimeDs/src/arraysProgs/SearchInsertPosition.java
cd824a5c9c199154a923c52560a90fc565eac1bd
[]
no_license
neilthaker07/Data_Structure
1d01445ee28b50c39f790069c7ff38f969cc5211
680074a8f0fa7f23bf16c63a74b0e163439d5685
refs/heads/master
2020-07-13T06:22:30.259163
2019-02-11T03:03:32
2019-02-11T03:03:32
94,292,189
0
0
null
null
null
null
UTF-8
Java
false
false
465
java
package arraysProgs; public class SearchInsertPosition { public static void main(String[] args) { System.out.println(pos()); } public static int pos() { int[] a= new int[]{1,3,4,5,8,9}; int val = 6; int start = 0; int end = a.length-1; while(start<=end) { int mid = (start+end)/2; if(a[mid]==...
[ "neilthaker07@gmail.com" ]
neilthaker07@gmail.com
50e462c3e1dbcc0c9650d7b830b591a3a89bcb57
c3b6658e0e5ac8ae642d60c20316cc99b6e0f31d
/app/src/test/java/com/isee/banner/ExampleUnitTest.java
32ac25becaebed4cad245bd1a61e74756a164d29
[]
no_license
xiDaiDai/banner
f6463b30997be8846f0836ee2353f94725b01c3c
0ab2db16aa6509a38a60522c67edcc0a433d10b3
refs/heads/master
2021-01-21T12:59:17.376940
2016-05-26T09:55:58
2016-05-26T09:55:58
49,482,852
0
0
null
null
null
null
UTF-8
Java
false
false
308
java
package com.isee.banner; import org.junit.Test; import static org.junit.Assert.*; /** * To work on unit tests, switch the Test Artifact in the Build Variants view. */ public class ExampleUnitTest { @Test public void addition_isCorrect() throws Exception { assertEquals(4, 2 + 2); } }
[ "xishiwei@sina.com" ]
xishiwei@sina.com
0f57781c88ecd682a558531ed1304adcee68fad4
169c0e1712ff361d74c4dcf927fa71f18449aca0
/app/src/main/java/webs/sistemmanajemenkontrolproyek/InputKegiatan.java
c2cfdf0016eff750ad05d165de9934ede1f551d5
[]
no_license
fajarkekinian/tugas
028d3aebffc0baa9d11a6728dc244ea00a8a2a5d
df18eacf8ecc512961cd7417c89b79285dd1afbc
refs/heads/master
2021-01-19T03:01:33.363989
2016-06-19T13:56:17
2016-06-19T13:56:17
61,482,713
0
0
null
null
null
null
UTF-8
Java
false
false
2,873
java
package webs.sistemmanajemenkontrolproyek; import android.app.ProgressDialog; import android.content.Intent; import android.os.AsyncTask; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.AdapterView; import android.widge...
[ "fajarkekinian@gmail.com" ]
fajarkekinian@gmail.com
77918cc53b06b24b22c03d59589ba14415f2b3ce
0a1b158dce61e449f20553fd0cdbdaf1b7b7dd62
/src/CarlysCatering/Employee.java
c0552580cdd850027edddb88db71acd5614fd900
[]
no_license
meeramish/carlyscatering
9d8dfde892bbe0c1dafb487177d7ad01d8a72441
7fb3e2903d93ebcb7d3be06ddb5204ad9d052f94
refs/heads/master
2020-09-26T08:21:06.838395
2019-12-06T00:57:06
2019-12-06T00:57:06
226,215,231
0
0
null
null
null
null
UTF-8
Java
false
false
1,029
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 CarlysCatering; /** * * @author meera mishra */ public abstract class Employee { private String employeeNumber; pri...
[ "meerashukla19@gmail.com" ]
meerashukla19@gmail.com
f1212ae4a3157354ec6fc59dff16f808dd0ac66d
b08ed78b77f6815c3f1a13f6f27c2d64cedd8313
/Session5/src/User.java
7e0dad25115e0e68929ff93f928da7bf00613b35
[]
no_license
ishantk/Edureka2018July23
703a8e49e7afc397ae6b346e4e8a3520780a108c
63b99825da9d8e892137f11a5811618f0a871785
refs/heads/master
2020-03-23T21:20:29.479821
2018-08-20T03:20:50
2018-08-20T03:20:50
142,099,214
0
1
null
null
null
null
UTF-8
Java
false
false
1,040
java
// Textual Representation how an object will look like in the memory // what the object will have in it, as in a BOX public class User { // Attributes or Data Members or State of an Object // Below Attributes they do not belong to Class, They Belong to Object !! String name; private String phone; String email; ...
[ "er.ishant@gmail.com" ]
er.ishant@gmail.com
68c9e19b36b7f51f9f70eb1674c59a24cf81fd3a
1ec1773fd62e0a48f5c042ab0c5547decc9ac11b
/presto-main/src/main/java/com/facebook/presto/sql/relational/SqlToRowExpressionTranslator.java
03019b23fa7d3811a6e6410c5654a63d4fc1e316
[ "Apache-2.0" ]
permissive
zuoyebushiwo/weiwodb
71c31a2c82c84eab959020aee9ce784ea43518cc
6768496f0b6aa1e8d6f486e71e4711a1a3432c84
refs/heads/master
2021-09-06T09:56:34.499258
2018-02-05T07:41:20
2018-02-05T07:41:20
null
0
0
null
null
null
null
UTF-8
Java
false
false
27,519
java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * d...
[ "27547073@qq.com" ]
27547073@qq.com
cebc909ddd04c1fa6db2ef9a26f3f8319c9b2c5e
b04a8ee4acc06ee5b0c0ba1fedd312109aed52f9
/src/controller/Controller.java
27de1ff09ad42d5cdbae94a9c0793b312ed807fc
[]
no_license
hornjt/CollegeDatabase
54950683add3209253fc9f852ef9b4ae750cf2d5
615f9d86b5faba04d5aed191c306e9c1ec637a02
refs/heads/master
2021-01-10T10:03:34.375003
2016-01-29T15:40:12
2016-01-29T15:40:12
50,671,844
0
0
null
null
null
null
UTF-8
Java
false
false
2,251
java
package controller; import gui.FormEvent; import java.io.File; import java.io.IOException; import java.util.ArrayList; import java.util.List; import model.Database; import model.Person; /** * * * @author Jon * This controller class handles data exchange between the * database and view sections of the program...
[ "jhorn85@gmail.com" ]
jhorn85@gmail.com
8e7b2b940ae33fcc7622d583f58a2af6a83353db
c2ab25b1c5614048cbd44399e03911942c701f7f
/app/src/main/java/me/onionpie/pandorabox/Widget/ViewPagerAnimation/FlipVerticalTransformer.java
24f25db5369245b342ba4c29a4a7334d66f7b88e
[]
no_license
stansen/pandoraboxPrototype
27ba334b12d4074dc5191bab6da5f2160b7d6d17
11e6b800bc46513cc427dcf5101dfa6602d5fbf4
refs/heads/master
2021-01-19T09:52:28.481194
2016-09-09T08:02:16
2016-09-09T08:02:16
82,149,565
0
0
null
null
null
null
UTF-8
Java
false
false
1,047
java
/* * Copyright 2014 Toxic Bakery * * 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 ...
[ "fattybaymax@163.com" ]
fattybaymax@163.com
a4a3b059abb66733aeb2afe210a6f39718ef2df8
a5b7853f5cce068f8da48e607e02449c7e6d722f
/src/main/java/com/bbg/beacon/config/ThymeleafConfiguration.java
381c2beefe0184612c269d7620b4a1f7153a3a92
[]
no_license
miketregan/beacon
cd52be3b118af63d1e9acff21af67981c89c52f2
0f08a6057d803c5f90f2f38c819514420e6a2899
refs/heads/master
2021-01-25T12:36:56.635794
2018-03-01T20:00:30
2018-03-01T20:00:30
123,485,785
0
0
null
null
null
null
UTF-8
Java
false
false
983
java
package com.bbg.beacon.config; import org.apache.commons.lang3.CharEncoding; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.context.annotation.*; import org.thymeleaf.templateresolver.ClassLoaderTemplateResolver; @Configuration public class ThymeleafConfiguration { @SuppressW...
[ "jhipster-bot@users.noreply.github.com" ]
jhipster-bot@users.noreply.github.com
a9c5c3f10957b408fd6c9800af51fbd7d0f8bfbb
f84c74f7c260b526cfc5c757bcdd5fe1413414b5
/app/src/main/java/com/example/manarelsebaay/mvp_rxjava2_retrofit2/Views/Main/MoviesAdapter.java
9a79310d9fbb70353c2dc246e89bd1f45599f1e2
[]
no_license
ManarElsebaay13/MVP_RXJava2_Retrofit2
31277f80403a3a19485527ea3a88423cc97af62c
a458b84b5327784ab05ea26c5e0784f21fb86708
refs/heads/master
2022-11-15T09:58:40.532339
2020-07-07T23:39:30
2020-07-07T23:39:30
277,745,598
0
0
null
null
null
null
UTF-8
Java
false
false
1,579
java
package com.example.manarelsebaay.mvp_rxjava2_retrofit2.Views.Main; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import com.example.manarelsebaay.mvp_rxjava2_retrofit2.R; import com.example.manarelsebaay.mv...
[ "manarelsebaay13@gmail.com" ]
manarelsebaay13@gmail.com
7c56214af662bf7fee94aba3d32bcc9aea2bf2a4
00aca547db8e8c19053308612f18afa0db31d99b
/lanxum/QSGL_20140730_2014_JUL22_CLF/src/com/creationstar/bjtax/qsgl/util/NameValue.java
9bf8abca2dd7a711cb4d67eb29e4d01888223566
[]
no_license
jun33199/Study
6809c178b894d5e42a73f2f6dd964f6bed862b2a
cd8b1709716907448a3269264be8ebd455ed5298
refs/heads/master
2021-01-01T19:10:34.768352
2015-12-25T08:13:47
2015-12-25T08:13:47
25,185,940
2
1
null
null
null
null
GB18030
Java
false
false
1,926
java
package com.creationstar.bjtax.qsgl.util; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; public class NameValue implements Serializable { private String father = ""; // 父节点 private String name = ""; // 名称 private String valu...
[ "junzhang@weizhu.dev" ]
junzhang@weizhu.dev
f5573a12278154408993d2357b4248941416ac93
207dc4555cd2cc06a9acc03030cd045192e7208f
/src/main/java/com/phearun/service/impl/FeedServiceImpl.java
47f94e685c628311ae600330f837eebc11c86e7d
[]
no_license
SocketIOServerClient/spring-socketio-server-demo1
bce23ad5977417e4f8e9f328e4703d57f713693d
076910b2e9eb73aaf41d563fa456c69c10f8cc0c
refs/heads/master
2021-01-12T05:38:19.360447
2016-12-22T15:14:20
2016-12-22T15:14:20
77,154,172
0
0
null
null
null
null
UTF-8
Java
false
false
983
java
package com.phearun.service.impl; import java.util.Collection; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.phearun.model.Feed; import com.phearun.repository.FeedRepository; import com.phearun.service.FeedService; /** * Created by PHEARUN...
[ "rathphearun123@gmail.com" ]
rathphearun123@gmail.com
8bb4ab6d2613c12094cc7cc02be18ea3c34e4d8e
0924c9c1a5182201cc8db8e6e0c3c7f95d4a584e
/BangunDimensi/src/bangundimensi/BangunDimensi.java
912187d5d16582c59e824df2fe92edf76e8fdbf7
[]
no_license
SidiMuhammad/OOP
c49ae1a11d151b4eb15c6e260b4ab41e5c3c8466
eacd0defe30fb74564f3c8ba7b9eef0181e1f8e0
refs/heads/master
2021-01-03T18:10:57.581428
2020-05-12T15:24:09
2020-05-12T15:24:09
240,186,065
0
0
null
null
null
null
UTF-8
Java
false
false
5,693
java
package bangundimensi; import java.util.Scanner; public class BangunDimensi { public static void main(String[] args) { Scanner scanInput = new Scanner(System.in); int pilih; int pilih2; int pilih3; int sisi; int tinggi; int jari; ...
[ "noreply@github.com" ]
noreply@github.com
73900c24ad0bb78153dffe89dd489edf278b4a9b
787d212f5a4fa27b8a8fc4c42907f377b021e12a
/src/com/Softy/Random/Game.java
da5a0a3799b00afe929b34844ef306f293251754
[]
no_license
indie-dev/APCS
9d0709cbb7598897e842e94772b756fffc5f98e4
7a43c23e227940cef01f6d0409b7717cec078382
refs/heads/master
2021-01-20T03:14:51.902087
2017-05-10T15:18:46
2017-05-10T15:18:46
89,514,987
0
0
null
null
null
null
UTF-8
Java
false
false
279
java
package com.Softy.Random; import java.util.Scanner; public class Game extends Default{ public static void main(String[] args){ int x = 20; while (x < 25) { x++; System.out.println(x); } } public static void doStuff (int a) { a++; } }
[ "IHMOOD3603@Student.pusd11.net" ]
IHMOOD3603@Student.pusd11.net
f57bac5f135d510f2e10376367a6e0f82ee823dd
19291c0ae563c863e2da249ca30317c220a32ab3
/many examples(hibernate)/hibernate-intro/src/main/java/com/lti/service/AccountServices.java
e7b02651f2283c6dec3ad6ee9b682e0a4e835fb0
[]
no_license
sangeetha36/some-more-examples-on-hibernate
486338df65f8a1e0b4fca9ae7bd4318aa8235f4d
20d6824e58ea36206973e9707d970ca9b522194f
refs/heads/master
2022-02-25T04:52:48.407772
2019-07-04T13:03:15
2019-07-04T13:03:15
195,242,672
0
0
null
2022-02-10T03:33:38
2019-07-04T13:01:27
Java
UTF-8
Java
false
false
3,112
java
package com.lti.service; import java.util.Date; import java.util.List; import com.lti.dao.AccountDao; import com.lti.entity.Account; import com.lti.entity.BankTransaction; //Classes which contain business are commonly referred to as Service classes //people also use this naming convention in WebServices(SO...
[ "noreply@github.com" ]
noreply@github.com
9035dafcdf7369f788133cae6d3c3e794db283ab
bfabe9f14e8f8993c424d509daece5914297494f
/GuestApp/app/src/main/java/com/mikerizzello/guestapp/managers/DataManager.java
2b8c06414357907ec24b455cf9f7af8ab4fc51f3
[]
no_license
michaelrizzello/Android-GuestApp
6128ad9e9290323ec06330d5c5a9b81946246ed5
58963915cf5caf4a9f315f6412bbbb08c75338e4
refs/heads/master
2021-06-10T15:37:21.161202
2016-12-13T14:35:45
2016-12-13T14:35:45
null
0
0
null
null
null
null
UTF-8
Java
false
false
565
java
package com.mikerizzello.guestapp.managers; import com.mikerizzello.guestapp.models.Order; /** * Created by michaelrizzello on 2016-12-12. */ public class DataManager { private static DataManager ourInstance = new DataManager(); public static DataManager getInstance() { return ourInstance; } ...
[ "mrizzello@west.com" ]
mrizzello@west.com
01bb37afff4cafc18e27de10ea965c2f85b402bc
8167cae705aeee792716859be89c8a168f500b6f
/src/main/java/com/mo/manager/util/RedisUtil.java
5d2b19c5bd960a753ad6280675c5cea04bdc70a4
[]
no_license
Moxiansheng/manager
f849d0195f57cb3b03493906d568982ec9ec5433
3d2748d809b0ec8998ddf3e474a266b7ecf066fe
refs/heads/master
2023-04-08T12:29:14.208734
2021-04-22T08:03:19
2021-04-22T08:03:19
360,438,384
0
0
null
null
null
null
UTF-8
Java
false
false
13,989
java
package com.mo.manager.util; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Component; import org.springframework.util.CollectionUtils; import java.util.ArrayList; import java.util.List; import java.util.Ma...
[ "1228746581@qq.com" ]
1228746581@qq.com
a74d1ece73f62fcba9c9ee51e10c4441a4db341e
f21636e40685d17951c5d1655a02c3026798821a
/lib/java/swift-generator/src/main/java/com/facebook/swift/generator/visitors/TypeVisitor.java
0962592de18e42a29fa936ff1031043852d3f82c
[ "Apache-2.0" ]
permissive
djwatson/swift
fa91f53a98b281988ae255f2a852035020ab75fd
995de7d8d79fe45fc68076c9241fb496d834625b
refs/heads/master
2021-01-17T10:46:40.665703
2013-04-23T17:05:22
2013-04-23T17:38:06
9,609,663
0
1
null
null
null
null
UTF-8
Java
false
false
3,009
java
/* * Copyright (C) 2012 Facebook, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. You may obtain * a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
[ "hgschmie@fb.com" ]
hgschmie@fb.com
ec6c1714ea6c825ec1a641d17a4d4cbee798ece7
8d688675e6afd4c97947e579d19728520b8638ee
/src/main/Individuo.java
3a6fd6efdc43f4895811787b460f063257f0feaa
[]
no_license
leandrobh9/AG
8e1bf47fe1d6bddf46d0c8cb71462979a154cbdb
db7b9012d252c23dca2d5c0e6071dd70d53f4bc0
refs/heads/master
2016-09-05T12:00:58.646527
2013-10-26T12:43:33
2013-10-26T12:43:33
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,461
java
package main; public class Individuo { private String cromossomo; private Integer distanceHamming; private Integer valorFitness; private Fracao fracao; private Integer indiceNaPopulacao; public Individuo(){} public Individuo(String cromossomo){ this.cromossomo = cromossomo; } public String getCromoss...
[ "leandrobh@outlook.com" ]
leandrobh@outlook.com
3e5599358e061c55b661314ff5d9bc50e75f22e8
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/15/15_9831ceeaf13ab27cb0012f595bf5f565a3a72de5/SemanticsVisitor/15_9831ceeaf13ab27cb0012f595bf5f565a3a72de5_SemanticsVisitor_t.java
fb23db1f9cb1e1fa3ef7c0fad852426197c48c50
[]
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
9,247
java
package uk.ac.ucl.comp2010.bestgroup; import java.util.*; import uk.ac.ucl.comp2010.bestgroup.AST.*; public class SemanticsVisitor extends Visitor{ LinkedList<HashMap<String, DeclNode>> symbolTables; public void error(String err, Node node) { System.out.println(err + " (line " + node.li...
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
8d2789ac3236f825b864ecad0f9d7df4a31c5641
a151e22099770bb1a61c0697c67db4e6015b951c
/src/com/asascience/ioos/model/StationModel.java
c284517dc8d12cd8f429a6c3c1109ce045f450d9
[]
no_license
asascience-open/ioos_sos_parser
e311a8f085f1506dfcd35ed960afe453cc8e229f
90eb7b27916ec101f9131110e4dc0f22723889d2
refs/heads/master
2016-09-06T18:48:40.764166
2014-08-25T16:44:32
2014-08-25T16:44:32
10,457,631
0
0
null
2013-06-11T14:47:41
2013-06-03T15:24:06
Java
UTF-8
Java
false
false
1,894
java
package com.asascience.ioos.model; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class StationModel { String stationName; VectorModel platformLocation; //Map the sensors to the sensor model record Map<String, SensorModel> sensorIdtoSensorDataMap; Li...
[ "cmorse@asascience.com" ]
cmorse@asascience.com
423f7a8bed26d1714ea555b3ab7719661f5b21c3
e75e2665885f80982d7bd8bd6e4900160f38ee73
/src/main/java/ma/nt/data/mongo/crud/controller/CommandController.java
28bc9c57d9539c3476ff0aeba9b533290ed94ab2
[]
no_license
bidoudan/companymanagement
7e427fb137b57509f8e5e34af826d4552783c584
831b71c974906f9414e53ad84ff04ffd4d550184
refs/heads/master
2022-11-20T19:48:19.849817
2020-07-23T15:55:57
2020-07-23T15:55:57
281,994,719
0
0
null
null
null
null
UTF-8
Java
false
false
1,405
java
package ma.nt.data.mongo.crud.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.CrossOrigin; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import o...
[ "quran.fr09@gmail.com" ]
quran.fr09@gmail.com
cf80e4934539d3735e11e0eb8518dda467e58d71
8d0055100d66fa03c5b5d093705acbfb5645713b
/ticket-master/ticket-master/src/oop/inheritance/Real.java
c5b14536e159e313f175fcf216058df6d1a2a703
[]
no_license
ggsscc1/ticket
bf9a128615e6a2e895ebcb74560bca8fb857a27a
e682b461482a7abd0c4d753d765c39d47081e7c9
refs/heads/master
2021-03-15T12:48:42.876167
2020-03-13T14:29:02
2020-03-13T14:29:02
246,851,361
0
1
null
2020-03-12T14:12:12
2020-03-12T14:12:11
null
UTF-8
Java
false
false
48
java
package oop.inheritance; public class Real { }
[ "noreply@github.com" ]
noreply@github.com
1bd9665e643d444f975f58ad39b66ccde21e250f
83db305b75f734f23600ad4ae0101d8ecf784f67
/irontest-core-server/src/main/java/io/irontest/core/runner/TestcaseRunner.java
e6a2be98988816762c0829ebc2a3b7faafc86bf4
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
zxx2015/irontest
f8d7e1846286743df60a7c3216403c502a7e0fea
63fb12b944b86694992fbb59a1893707bacbd1bf
refs/heads/master
2020-05-18T04:52:22.790742
2019-04-29T13:43:22
2019-04-29T13:43:22
null
0
0
null
null
null
null
UTF-8
Java
false
false
11,832
java
package io.irontest.core.runner; import com.fasterxml.jackson.core.JsonProcessingException; import com.github.tomakehurst.wiremock.WireMockServer; import io.irontest.core.assertion.AssertionVerifier; import io.irontest.core.assertion.AssertionVerifierFactory; import io.irontest.db.TestcaseRunDAO; import io.irontest.db...
[ "zheng-wang@users.noreply.github.com" ]
zheng-wang@users.noreply.github.com
3d616d435767158288f771b48b055291048a445e
50d16d54c2094e95af0b1f60acd0870a77f3b326
/src/Player.java
cab05c5cfe9b94d8cb8bf6ef12ced7c89160c2a5
[]
no_license
daisys/SoloProject
2e2d074ad5dcb75b554e30acebeb3f183c401f18
04e3a1787a2ad295590c0d9fb2be565e602b4bca
refs/heads/master
2021-01-25T05:15:32.381033
2014-10-05T20:22:19
2014-10-05T20:22:19
null
0
0
null
null
null
null
UTF-8
Java
false
false
69
java
/** * Created by daisyshih on 10/5/14. */ public class Player { }
[ "ilovecanada611@hotmail.com" ]
ilovecanada611@hotmail.com
98dd1ee7b04baeb055a349d0d0eba1bc39236343
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/24/24_603bb2147812e560638437e044ec0a5309ab2c90/SlaveCDImporter/24_603bb2147812e560638437e044ec0a5309ab2c90_SlaveCDImporter_t.java
79d484f45dd70b902b2e407b6746a69dfc575fd8
[]
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
12,364
java
package house.neko.media.slave; import house.neko.media.common.Media; import house.neko.media.common.MediaLocation; import house.neko.media.common.MimeType; import house.neko.media.common.MediaLibrary; import house.neko.media.common.ConfigurationManager; import java.io.File; import java.util.Vector; impo...
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
891071321cfa40d26d422ffa53d76cda874eb82a
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/31/31_6efa8bf55bae327e705a083f0ed151f4aeaa59b8/SipHostConfig/31_6efa8bf55bae327e705a083f0ed151f4aeaa59b8_SipHostConfig_s.java
da3328f8dba8e87430379348413b993e04fbb680
[]
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
6,750
java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, sof...
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
bab18d8e1073f38122dc235df064c72432b441e4
86b734085d40a0d5d14878c06c85f100473fdd58
/target/generated-sources/entity-codegen/extensions/ab/internal/domain/contact/impl/VendorEvaluationImpl.java
7dbb4e7e92f7797d8d99818316596a71c00eec1d
[]
no_license
sarathkumar-tumula/GuidewireTrainingApp
82a042e688bc565f5f5edb63ad88fc79980ceda8
31f8e82de626fc2c8055f834481353a2e243c2e2
refs/heads/master
2022-08-20T21:38:24.344269
2020-05-27T14:07:52
2020-05-27T14:07:52
267,333,642
0
0
null
null
null
null
UTF-8
Java
false
false
239
java
package extensions.ab.internal.domain.contact.impl; import extensions.ab.internal.domain.contact.gen.VendorEvaluationStub; public class VendorEvaluationImpl extends VendorEvaluationStub implements VendorEvaluationInternal { }
[ "kumar.tumula879@gmail.com" ]
kumar.tumula879@gmail.com
eb25dbe38369e93777c0543c72803ff5ee535e6e
c3a8868508ef706ffbf0292f262268cf428c9f05
/oculus/src/at/oculus/teamf/domain/entity/interfaces/IDomain.java
941230e5fe097ecd2a4068eb35b985d7ccf6ef2b
[]
no_license
dani-sc/projektteamdelta
b11f2630acf9e54524d2dae66e10feb2b589902a
a8e6ddfe076854b97e845e6f3553aaae9ddb561c
refs/heads/master
2021-06-08T21:55:47.177780
2016-11-26T23:20:59
2016-11-26T23:20:59
null
0
0
null
null
null
null
UTF-8
Java
false
false
856
java
/* * Copyright (c) 2015 Team F * * This file is part of Oculus. * Oculus is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. * Oculus is dis...
[ "caroline.meusburger@students.fhv.at" ]
caroline.meusburger@students.fhv.at
e7b5191aa295d80b1b92a11a0605e46feaf13ade
15ca1df1e136c1a6a41be7d6995b21949d0df8e6
/etc/SpringFramework_SeoulWiz/springProject1/src/main/java/com/joo/ex/BMICalculator.java
63acf554d4ee87520e5ad80de4b2f7e656ea1c8c
[]
no_license
jooly14/studyspace
b3cb80ff4a8ab8eebe8cd6ec4d9f14910f5aa808
5249efadac1cb3c3ecd4f4c1a71a8c9fd8f8200d
refs/heads/main
2023-03-25T22:22:59.051576
2021-03-28T05:27:08
2021-03-28T05:27:08
350,913,782
0
1
null
2021-03-24T02:49:01
2021-03-24T01:51:39
Java
UHC
Java
false
false
1,345
java
package com.joo.ex; public class BMICalculator { private double lowWeight; private double normal; private double overWeight; private double obesity; public void calc(double weight, double height) { double h = height* 0.01; double result = weight/(h*h); System.out.println("BMI지수 : "+(int)result...
[ "noreply@github.com" ]
noreply@github.com
da559399cd88f80ef17c25cd70d16dec103f372c
837a5cd0e8a65884067f1bd87955002af2476ddb
/src/test/java/net/v4lproik/googlanime/platform/client/redis/ConfigRedisITest.java
0292d7eafd481a9620400d23e48b1eb758fc49db
[]
no_license
julesbovet/googanime-backend
2695affcefbd5cace82c4f07979847d285abb01c
ce7c98692de9e1dc8af2d56ed43aa8cefc015c06
refs/heads/master
2020-12-25T23:18:37.047319
2015-09-26T17:45:15
2015-09-26T17:45:15
null
0
0
null
null
null
null
UTF-8
Java
false
false
731
java
package net.v4lproik.googlanime.platform.client.redis; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org....
[ "v4lproik@gmail.com" ]
v4lproik@gmail.com
a6b5313c8c145b65861c1319bf4046b0376bf855
ba3effa4e94c4579aeac74e9d31f3631fba479e3
/src/main/java/ru/itis/javalab/repositories/ReviewRepositoryJdbc.java
fa5b08fe0c9e98c15591649b25512cdcdabdb6be
[]
no_license
realsanya/WhiteHall
c86baa76c7b49a504793b5c738f63ce34022970d
c61f99e2d6ed2ac0edd431b7827c4e31fec8cb8b
refs/heads/master
2023-03-08T03:54:05.545428
2021-01-25T06:44:49
2021-01-25T06:44:49
314,345,744
0
0
null
2021-01-25T06:44:50
2020-11-19T19:10:18
Java
UTF-8
Java
false
false
2,345
java
package ru.itis.javalab.repositories; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.jdbc.core.RowMapper; import ru.itis.javalab.dto.UserDto; import ru.itis.javalab.models.Review; import ru.itis.javalab.repositories.interfaces.ReviewReposiroty; import ru.itis.javalab.services.interfaces....
[ "sashamorozova01@mail.ru" ]
sashamorozova01@mail.ru
384f507bd8cb874f1e7ffcf26d716acd476a9ab5
92f53cc302f2a614ea3d674f6dc2e42ebce97364
/src/main/java/fr/adaming/dao/PropDaoImpl.java
3633bf6515bc923510527f40a393fa4c5d2f09dc
[]
no_license
DavidManu/Projet_Agence_Immobiliere
9471bc779d3d4997c1b45a6cb0dcfa93bac8e778
46b3ef62a93f8d2bea31f986ca80163f89ef4f98
refs/heads/master
2020-06-02T23:10:50.138980
2017-06-16T08:01:14
2017-06-16T08:01:14
94,109,523
0
0
null
null
null
null
UTF-8
Java
false
false
1,983
java
package fr.adaming.dao; import java.util.List; import org.hibernate.Query; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Repository; import fr.adaming.model.Conseiller; import fr.adami...
[ "INTI-0370@DESKTOP-GQFMHSO" ]
INTI-0370@DESKTOP-GQFMHSO
781f2d3ff4bcca05cbdfbfa92f70d88aa3c22a94
0178a990361378e006c8124b370b80e7e231b694
/Calculator/src/calculator/Calculator.java
5b8277f545f26ba8bf8892dc8b63a849b1942ccc
[]
no_license
mayankkhera/GUI-Calculator
3e63ebcb060100256c2edb798e30832b70033766
4735fffd97e341ea3720b3f1b8d76d61737dcc95
refs/heads/master
2020-09-12T06:54:21.636167
2019-11-18T02:27:04
2019-11-18T02:27:04
222,346,356
0
0
null
null
null
null
UTF-8
Java
false
false
1,701
java
package calculator; /** * File Name: Calculator.java * Author: Mayank Khera * Student ID: 040912734 * Course: CST8221 - JavaApplicationProgramming * Lab Section: 311 * Assignment: 1, Part 1 * Date: October 15, 2019 * Professor: Daniel Cormier * Purpos...
[ "noreply@github.com" ]
noreply@github.com
5d2985d47431774b9d333387b041bbf7756d4dfd
647ec12ce50f06e7380fdbfb5b71e9e2d1ac03b4
/com.tencent.mm/classes.jar/com/tencent/mm/autogen/mmdata/rpt/lb.java
6873eac9f1af8faa6dbca6117576d52c0c648614
[]
no_license
tsuzcx/qq_apk
0d5e792c3c7351ab781957bac465c55c505caf61
afe46ef5640d0ba6850cdefd3c11badbd725a3f6
refs/heads/main
2022-07-02T10:32:11.651957
2022-02-01T12:41:38
2022-02-01T12:41:38
453,860,108
36
9
null
2022-01-31T09:46:26
2022-01-31T02:43:22
Java
UTF-8
Java
false
false
3,254
java
package com.tencent.mm.autogen.mmdata.rpt; import com.tencent.matrix.trace.core.AppMethodBeat; import com.tencent.mm.plugin.report.a; public final class lb extends a { public long iNh; public long iYG; public String iYH = ""; public String iYI = ""; public String iYJ = ""; public long ila; ...
[ "98632993+tsuzcx@users.noreply.github.com" ]
98632993+tsuzcx@users.noreply.github.com
79b271f9bd478bea0d44facdf8c03d38ec2507b7
d369d8e856a232063d6ea58c81e45dbc188fbbc7
/app/src/main/java/com/google/android/apps/miyagi/development/utils/ImageUtils.java
0b076c49ca9f3c634e680353f5fb5fc184d9c092
[]
no_license
CarlRehabStudio/growth-engine-android-staging
3d730217ea9d9f7f466ca3551f53b104ccef1a07
648b24404a0ade5f86cb55ad7c1d38e8518e9d1f
refs/heads/master
2021-01-19T18:51:13.071191
2017-08-23T13:23:37
2017-08-23T13:23:37
101,171,705
0
0
null
null
null
null
UTF-8
Java
false
false
1,679
java
package com.google.android.apps.miyagi.development.utils; import android.content.Context; import android.widget.ImageView; import com.bumptech.glide.Glide; import com.bumptech.glide.load.resource.drawable.GlideDrawable; import com.bumptech.glide.request.RequestListener; import com.bumptech.glide.request.target.Target...
[ "carl.lewis@rehabstudio.com" ]
carl.lewis@rehabstudio.com
610e689fed8b398fdb86436028649dcf004bef68
bcce2741414e95b2c862f91d6c0c728b94a69850
/src/main/java/com/szbk/Orderhandlerv2/view/WelcomeView.java
c3c9da8cdf11daec959cc19e7199e70039e7023c
[]
no_license
eootaat-sze/Orderhandlerv2
0d6a47de375ae1b07797550608942951462d531f
806629bb2fa88ee9f22c462e5af62b688e368f09
refs/heads/master
2020-03-19T12:14:37.984889
2018-11-30T14:10:23
2018-11-30T14:10:23
136,505,799
0
0
null
null
null
null
UTF-8
Java
false
false
350
java
package com.szbk.Orderhandlerv2.view; import com.vaadin.navigator.View; import com.vaadin.navigator.ViewChangeListener; import com.vaadin.ui.VerticalLayout; public class WelcomeView extends VerticalLayout implements View { @Override public void enter(ViewChangeListener.ViewChangeEvent event) { System....
[ "eotvos.otto@gmail.com" ]
eotvos.otto@gmail.com
5d19c7a088d5e94c81cf3997a6adb0fe7e122c5e
7d510e65847cba414f093e33beb811ea510a90ee
/app/src/main/java/com/example/app_abacus/Statistics.java
5a61bdd5137adaaeefff5c1a9818aa05a3a9f1e2
[]
no_license
J-Starosta/Abacus
7642d7e0153d65e922a862f0d2b9909d35e6d850
884248596fae26be97e68dad9c49616d8ee45b61
refs/heads/master
2022-12-13T05:47:09.850894
2020-09-06T09:58:51
2020-09-06T09:58:51
293,246,750
0
0
null
null
null
null
UTF-8
Java
false
false
10,259
java
package com.example.app_abacus; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; import android.annotation.SuppressLint; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.MenuItem; import android.view.View; import android.view.Win...
[ "starosta.jasiek98@gmail.com" ]
starosta.jasiek98@gmail.com
e5bf9d7668288ed6623c24f2f359e322ba43eaf0
7e2d939c2c8aa5fc724f95d6b7c49accca09d054
/src/patterns_volosatov/state/src/main/java/calculator/StateAction.java
23e2bebf584c32fcecee414c3e1df4d67b7a234a
[]
no_license
bkalika/ITVDNJava
2be4ccd59c243b5ee33794e884f9fc8f6d0dc405
ac5f670f59d31b4a893c2ee752e6a8700ef9e590
refs/heads/main
2023-05-22T09:51:56.672777
2021-06-13T09:42:32
2021-06-13T09:42:32
324,816,867
0
0
null
null
null
null
UTF-8
Java
false
false
541
java
package calculator; public class StateAction extends State { void clear(Context context) { context.state = new StateX(); context.state.clear(context); } void digit(Context context, char key) { context.state = new StateY(); context.state.digit(context, key); } void ...
[ "bogdan.kalika@gmail.com" ]
bogdan.kalika@gmail.com
9b122069f7dfdfa7ec6da43a0b97fa71ab08f83e
4eb68bb498914cf04e23122b4e50dbf19fb67701
/app/src/main/java/com/projects/kevinbarassa/stylusdjawards/CatFragSeventeen.java
35eb907998d1a420aeea765fbac03b5838e831a9
[]
no_license
bqevin/StylusDeejayAwards
e2fb60cf4768cff63d56ad99f540e14f75deeafa
26e8e91949da7dd68883c23421334d5246fe63a8
refs/heads/master
2020-07-02T20:26:30.359035
2017-03-10T14:30:32
2017-03-10T14:30:32
74,285,218
0
0
null
null
null
null
UTF-8
Java
false
false
2,317
java
package com.projects.kevinbarassa.stylusdjawards; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.RadioButton; i...
[ "kevin.barasa001@gmail.com" ]
kevin.barasa001@gmail.com
9b8b5e76275c170b14505712fbb7d9bbb7848006
dde4c31a330fb48561535e1966aec0792fe99bc9
/Kanvas/app/src/test/java/com/example/homay/kanvas/ExampleUnitTest.java
00695278ad4a3b857351b093d776cbafcd1271f6
[]
no_license
siriusanjan/internship-projects
d2223cf3bf5115560542e613b87ecfcaa61e7c39
f4f5868112f83085fa818f3e82f99f39775ec448
refs/heads/master
2020-06-15T01:12:56.296213
2019-02-24T07:34:13
2019-02-24T07:34:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
385
java
package com.example.homay.kanvas; import org.junit.Test; import static org.junit.Assert.*; /** * Example local unit test, which will execute on the development machine (host). * * @see <a href="http://d.android.com/tools/testing">Testing documentation</a> */ public class ExampleUnitTest { @Test public vo...
[ "bijaypun@yarsa.io" ]
bijaypun@yarsa.io
bcfa69a7c1718af54cd518d2588c5a25ecb9c148
5c5f06e76071f5269c4f85fb37769cf8a874125c
/app/src/androidTest/java/hr/ferit/ivana/inspired/ExampleInstrumentedTest.java
ada4321cb06415aa20b192098b01467ff0eeefa4
[ "Apache-2.0" ]
permissive
IvPris/Inspired
85d3d3d9754b8fbd8c043df469e3271d2d501197
3bc19ebb00e49bee55176390d630f4d4a895da24
refs/heads/master
2021-04-09T11:30:57.443530
2018-03-29T07:44:25
2018-03-29T07:44:25
125,573,263
0
0
null
null
null
null
UTF-8
Java
false
false
747
java
package hr.ferit.ivana.inspired; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android...
[ "ivana.pristavnik@gmail.com" ]
ivana.pristavnik@gmail.com
338c4dc2fb118537409ae6a8c2a3089aa335d471
8be9f6fd60fb3d00341e92f6da0c7da41ff8f401
/src/Inventory/screens/ReportsScreen.java
0a9e1537ddb508f822d4ba5d0ca35ec70f3ce1c0
[]
no_license
TalBarami/SuperLee-3
c7cdeb41b77edd8068b9f3c6a01a34fe2f0955c0
c370fb1c800f263ec444de1acb7b48007e818012
refs/heads/master
2021-01-19T04:58:18.689948
2016-06-20T15:26:13
2016-06-20T15:26:13
60,256,369
0
0
null
null
null
null
UTF-8
Java
false
false
6,982
java
package Inventory.screens; import java.sql.SQLException; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter.DEFAULT; import Inventory.program.Util; import Inventory.dbHandlers.CategoryHandler; import Inventory.dbHandlers.ProductHandler; import Inventory.dbHandlers.ProductStockHandler; import Inventory.dbHa...
[ "talbaramii@gmail.com" ]
talbaramii@gmail.com
20d7dfb1332224318d64b7aa334bd786044fd768
c8cf1210917925cbc362e6a3b215ebc70475253d
/src/com/questions/hackerrank/TheTimeInWords.java
c44782b0f2378e819c2ce479d57e4d0d36f4c9fe
[]
no_license
Rishi74744/MyPractice
7826ca7f6cf79306f3c6bac48ba2d050cf47beda
caa0f1e8d595d863a10d4bce8005545ba6cba324
refs/heads/master
2022-06-08T02:48:01.665567
2022-05-16T13:37:38
2022-05-16T13:37:38
81,055,099
2
0
null
null
null
null
UTF-8
Java
false
false
1,226
java
package com.questions.hackerrank; import java.util.Scanner; public class TheTimeInWords { public static void main(String[] args) { Scanner s = new Scanner(System.in); int hours = s.nextInt(); int mins = s.nextInt(); StringBuilder time = new StringBuilder(); String nums[] = { "one", "two", "three", "four",...
[ "rishi.mishra@skilrock.com" ]
rishi.mishra@skilrock.com
fc1a12d3f6e2c6d8ee79789cef4c7b647b6ced88
59b214b5b236343a7fdd736f56f8c83a6a468c7c
/common/src/main/java/com/ocean/common/exception/handler/ApiError.java
e459c6281ae625f3815dce5013ad99194b9385c7
[ "MIT" ]
permissive
Barca-LF/ocean-code-generator
a6f229e8e228e68a2801ba2a3c3c41248a95dbc9
9cfecb0811292ca1b15abfa5bb45e847274f6e99
refs/heads/master
2021-01-30T13:17:47.147366
2019-11-22T06:39:20
2019-11-22T06:39:20
null
0
0
null
null
null
null
UTF-8
Java
false
false
581
java
package com.ocean.common.exception.handler; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Data; import java.time.LocalDateTime; /** * @author Ocean Bin * @date 2019-11-20 */ @Data class ApiError { private Integer status; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private LocalDa...
[ "bhy71090@163.com" ]
bhy71090@163.com
37f261a04e6ebb3fdc412aa0a66da7175d51dad8
3ce54c144000d5896737e82b56beda2d38d72741
/ehcache-impl/src/test/java/org/ehcache/impl/config/loaderwriter/writebehind/WriteBehindProviderConfigurationTest.java
df541d270dbdbf714d606dbc293668d26cd2957c
[ "Apache-2.0" ]
permissive
andyglick/ehcache3
ca59b9a2aed3065cd7a7fee591efec197491bd83
f3c80b20413e71dbd5efa698c8799d1612ca1925
refs/heads/master
2023-09-01T08:57:34.465316
2022-01-06T16:48:40
2022-01-06T16:48:40
88,392,906
0
0
null
2017-04-16T05:21:53
2017-04-16T05:21:53
null
UTF-8
Java
false
false
1,324
java
/* * Copyright Terracotta, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
[ "chris.w.dennis@gmail.com" ]
chris.w.dennis@gmail.com
a52890dd5c5fc120c2d5241027db0c1c3c5656fe
62617291dd770d6984b529ebd328d11fe007deb6
/rankers/MatrixCalculatorRank06.java
8c646c5b193ff4d0dc3c71d73ad9b5e0869f0a5b
[]
no_license
interprism-inc/pg_contest_01
059bd2f9a07ef44401612d21ec7660a0560a9bb9
77fe20abc3078cec47802875a913e079955ccd77
refs/heads/master
2022-03-14T17:07:50.690292
2016-08-15T06:05:02
2016-08-15T06:05:02
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,529
java
/* * Name: rank6 * Entry Date: 2016/4/26 00:47:37 * Runtime: 3603 ms * * ------- output ------- * * calc1: * 39 msec * * calc2: * 1334 msec * * calc3: * 2155 msec * */ package jp.co.interprism.pg_contest.matrix_calculator; import java.io.*; import java.util.*; import java.util.regex.Matcher; im...
[ "github@interprism.co.jp" ]
github@interprism.co.jp
8e1fbde08c3e742e62839fd0156ea158cea3df05
8b10eaf651362904af982370452944fc4b593b14
/ZYellowPage/src/com/zdt/zyellowpage/jsonEntity/CompanyListReqEntity.java
9674f93cb67796081c9427cafb44dfa55e16611f
[]
no_license
jikeruanjian/ZYellowPage
cff546892e20ce528fcf7f3c4a47e96fd6dc0e3f
edaefa190d222fe81b7f7ec6e8e5fd223646ef18
refs/heads/master
2021-01-19T14:36:25.582161
2015-03-03T08:53:25
2015-03-03T08:53:25
17,101,241
0
0
null
null
null
null
UTF-8
Java
false
false
1,174
java
package com.zdt.zyellowpage.jsonEntity; /** * 商家列表获取参数类 * * @author Kevin * */ public class CompanyListReqEntity { private int page_number; private int max_size; private String area_id; /** * 传入关键词如下:当关键词为”list-hot”时表示获取热门商家列表,当关键词为”list-0102”表示获取某分类下的商家列表,0102 * 表示分类id,当关键词为其它内容的时候,表示搜索商家列表 */ p...
[ "jikeruanjian@126.com" ]
jikeruanjian@126.com
d7b76049913f0bb19d8fab65737f73c306435189
3a7a97facc9a1c1d779374f3d1395dec4ea95e11
/chapter6-hystrix/src/main/java/com/ricemarch/chapter6hystrix/controller/InstanceController.java
de3f05f30ffc31c43de2d923ef202d3c38b40f22
[]
no_license
BakaRice/Advanced-SpringCloud
c6f3ed4eb6d85509a24f7972e391ea394a770b75
48db594790968111655eb4f378e3b516cd54a218
refs/heads/master
2023-03-13T09:21:21.245027
2021-03-01T02:22:11
2021-03-01T02:22:11
341,871,818
1
1
null
null
null
null
UTF-8
Java
false
false
1,487
java
package com.ricemarch.chapter6hystrix.controller; import com.ricemarch.chapter6hystrix.service.InstanceService; import com.ricemarch.chaptercommon.chapter5.dto.Instance; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.we...
[ "1079966197@qq.com" ]
1079966197@qq.com
2b6ba4cf9c52fe2af4f22d4877485f66cb3a3ad7
1f9cc97705d9001d3cec5f7a620245e92ec71609
/src/labbd/ex4/Ex4Panel.java
0cf77da2acf51127d97451e4852d488bb256b78a
[]
no_license
andremissaglia/labbd
5684da07c733e17b88bbb38124a3060109cbcb30
89d95ccc8bdf9f2ddec969e6e9209dd0c5a4522e
refs/heads/master
2021-03-27T12:01:56.170120
2016-11-21T19:15:18
2016-11-21T19:15:18
71,821,639
0
0
null
null
null
null
UTF-8
Java
false
false
10,029
java
package labbd.ex4; import labbd.ex4.Criterios.AndCriterio; import java.util.ArrayList; import labbd.Interface; import org.bson.Document; public class Ex4Panel extends javax.swing.JPanel { private final Interface inter; private final Ex4 ex4; private AndCriterio criterio; private String collection; ...
[ "andre.missaglia@gmail.com" ]
andre.missaglia@gmail.com
2bb502b198830015e63b827b48cb659de2a5eb9c
98d313cf373073d65f14b4870032e16e7d5466f0
/gradle-open-labs/example/src/main/java/se/molybden/Class11434.java
d8995d82b74d9726213fe8a8966f2a0a83667e0f
[]
no_license
Molybden/gradle-in-practice
30ac1477cc248a90c50949791028bc1cb7104b28
d7dcdecbb6d13d5b8f0ff4488740b64c3bbed5f3
refs/heads/master
2021-06-26T16:45:54.018388
2016-03-06T20:19:43
2016-03-06T20:19:43
24,554,562
0
0
null
null
null
null
UTF-8
Java
false
false
110
java
public class Class11434{ public void callMe(){ System.out.println("called"); } }
[ "jocce.nilsson@gmail.com" ]
jocce.nilsson@gmail.com
12606318733be72e66c115d71ec61650d5bc28c5
be59c0ca127a4f7041758b2709e1327bc71b6e12
/qipai/game-zp-yzphz/src/main/java/com/sy599/game/qipai/yzphz/util/zphu/ZpHuBean.java
467c87ec5af6b443f5b336b7ff64874b80fc56bf
[]
no_license
Yiwei-TEST/xxqp-server
2389dd6b12614b0a9557d59b473f88a3a59620cf
c2c683ce8060c0cbaee86c3ee550e0195e1bb7e4
refs/heads/main
2023-08-14T08:49:37.586893
2021-09-15T03:21:13
2021-09-15T03:21:13
401,583,086
1
4
null
null
null
null
UTF-8
Java
false
false
12,699
java
package com.sy599.game.qipai.yzphz.util.zphu; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; /** * 跑胡子 */ public class ZpHuBean { // 是否自摸 private boolean isSelfMo; // 不包含癞子的牌组 private int[] cardArr; // 癞子数 private int laiZiNum; // disCa...
[ "ee68i5@yeah.net" ]
ee68i5@yeah.net
112f0d0032ed31890a9d8cb316797d2982695c3c
fd95bb7d84add8a9c6116f76676d4f3ab03e085f
/library/src/main/java/com/twiceyuan/autoform/FormItemEntity.java
88bbd48fb52ddb0100c18856c99a685c6719ae27
[ "Apache-2.0" ]
permissive
ylc88/AutoForm
09c5d4cda6abbcd2ca494b322e61c079021027e5
3776378baf2566ca585b128fea5cd87f02e187b2
refs/heads/master
2021-10-20T06:27:53.022763
2019-02-26T06:29:14
2019-02-26T06:29:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,043
java
package com.twiceyuan.autoform; import com.twiceyuan.autoform.provider.LayoutProvider; import com.twiceyuan.autoform.provider.Validator; /** * Created by twiceYuan on 2017/7/2. * <p> * 表单字段实体 */ public class FormItemEntity { /** * 字段名称 */ public String label; /** * 排序,因为反射取到的变量集合是乱序的 ...
[ "twiceyuan@gmail.com" ]
twiceyuan@gmail.com
c8ec6b3fb43d6b9d3170e1b9778b9d817b972324
c9556f9d06c57709111f77a7da8fef1d104f3e23
/app/src/main/java/com/cyris/createphoto/CheckConnection.java
451b875f88d23538c711c8eb1cd040ac9b340a8e
[]
no_license
Mr-Ajay-Singh/Meme-Photo-Editor
e2ec9e517522e79d2de4fd01a02b711391a081ed
b136e92faa4e7b1880301b843edba11340d5d5c3
refs/heads/master
2023-07-30T02:45:09.814815
2021-09-17T11:59:39
2021-09-17T11:59:39
407,405,352
2
0
null
null
null
null
UTF-8
Java
false
false
736
java
package com.cyris.createphoto; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; public class CheckConnection { public static boolean checkInternet(Context context) { ConnectivityManager connectivityManager = (ConnectivityManager)context.getSystem...
[ "cyrisstudio@gmail.com" ]
cyrisstudio@gmail.com
3cb8b0f772c3189a256b7a440a47818295c0d1da
0d2079efaeb5d41d6c99c45ab350eb4a501936c1
/src/main/java/mchorse/mclib/utils/PayloadASM.java
de531358d2886f4de79f4cee071f32dcf39f5c55
[ "MIT" ]
permissive
srgantmoomoo/mclib-rpc
0b302986a1e02f83ba6edc9cbfc74aee514c332e
55f4a9e0f2c2621acc49736ef3d77a7d89e5711d
refs/heads/master
2023-02-13T20:05:10.888590
2021-01-10T23:16:29
2021-01-10T23:16:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
340
java
package mchorse.mclib.utils; import mchorse.mclib.McLib; public class PayloadASM { public static final int MIN_SIZE = 32767; /** * ASM hook which is used in {@link mchorse.mclib.core.transformers.CPacketCustomPayloadTransformer} */ public static int getPayloadSize() { return Math.max(MIN_SIZE, McLib.maxPac...
[ "" ]
129cd4c851da8fba2518fed9159f0d6190eb3ab6
2e02f5f83b899f2112c3808fc58721e7650346d1
/app/src/main/java/msmartpay/in/myWallet/WalletHistoryActivity.java
30331c48df5401a20bf45237ee37154a816cb10c
[]
no_license
ui-templete/msmartpay-android-agent
2f876f3c1169fe4f3ec577e64bf1ab55f708c3a0
f9233f3d2a7d57f856b7f51e6f3f9d5ee74eb0d7
refs/heads/master
2022-12-24T03:04:13.571912
2020-10-06T07:20:34
2020-10-06T07:20:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
19,048
java
package msmartpay.in.myWallet; import android.app.DatePickerDialog; import android.app.ProgressDialog; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.view.Menu...
[ "arpit.agarwal97@protonmail.com" ]
arpit.agarwal97@protonmail.com
59bad5934278fd729c589e87a38de033e621b4e9
a1b9c80402f033b5eee597444da8dc8ee74a5ea7
/src/Decorator/Decorator.java
b4350ee2f6643751ea7331ac28346cbf504a5bc8
[]
no_license
IlyaBorisov75/Patterns
21a77b3a237860fca785a0f77aeccc4b6ccb0142
86fa84c76c898e1a74304480559a889367f1e939
refs/heads/master
2020-04-18T14:22:11.904900
2019-01-25T17:38:10
2019-01-25T17:38:10
167,586,575
0
0
null
null
null
null
UTF-8
Java
false
false
160
java
package Decorator; public abstract class Decorator implements Text{ Text component; public Decorator (Text component) { this.component = component; } }
[ "candidate4.travelfactory@gmail.com" ]
candidate4.travelfactory@gmail.com
724e853667e892acc9c3c1eaa45ff0ecb038fe09
af1e1d7bc9601b309d2c54750851ab94ba1cd0a7
/app/src/test/java/com/studio/emacs/emacsmusicplayer/ExampleUnitTest.java
908d15a17cd4416cb580836c1865340dffdc7392
[]
no_license
ganesh-bhat/android-material-music-player
d882a7130f77f782b861df93c2121a44913f1099
345b4a02b620dea11fd71200e74cca8193a83942
refs/heads/master
2021-07-11T02:29:42.762601
2021-04-21T13:47:57
2021-04-21T13:47:57
100,839,845
2
0
null
null
null
null
UTF-8
Java
false
false
427
java
package com.studio.emacs.emacsmusicplayer; 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 { ...
[ "ganbhat@GANBHAT-LAP.oradev.oraclecorp.com" ]
ganbhat@GANBHAT-LAP.oradev.oraclecorp.com