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
e153eabe4e41b060323636da530032858d244494
37b4d0ca1efc9d5e366e1a466be3f0ce676bd21f
/RadixSort.java
307505d93b10b0cc7f6fb93e7dee9b67cf8b97f8
[]
no_license
steven-liu48/CSC172-lab7
23e0a4c699b76d746ad865f72fe5c0b5f1c7fb05
501540f58ec855ae13ac71cc9d86351a81134df7
refs/heads/master
2022-10-12T05:01:12.292728
2020-06-14T11:48:46
2020-06-14T11:48:46
272,178,767
0
0
null
null
null
null
UTF-8
Java
false
false
15,106
java
//Lab 7 //Lab Partners: //Xiaoxiang "Steven" Liu //xliu102@u.rochester.edu //MW 6:15PM - 7:30PM //Grant Yap //gyap@u.rochester.edu //MW 2:00 - 3:15PM import java.io.OutputStreamWriter; import java.io.PrintWriter; import java.io.UnsupportedEncodingException; import java.util.Locale; public class RadixSort{ //Ba...
[ "xiaoxiang.liu48@gmail.com" ]
xiaoxiang.liu48@gmail.com
85e68e14db13bce4866c912367b97a0f208fd0c1
0e7e98d2a18b569072f6c97cd06219fb980726d4
/dashda-src/src/main/java/com/dashda/data/entities/UserRolePermission.java
0313ffff44878f8b5aeedbee13d674eff88ed6f1
[]
no_license
islamarabsoft/dashda
3eded7ba5312f472525939873decf150c13ae32d
3e7bf7cbd9f10aad799f918563dbd46bc7740e8f
refs/heads/master
2022-12-05T02:56:02.506186
2019-08-19T14:24:18
2019-08-19T14:24:18
125,328,862
1
0
null
2022-11-24T07:13:24
2018-03-15T07:30:12
JavaScript
UTF-8
Java
false
false
1,532
java
package com.dashda.data.entities; // Generated Apr 4, 2018 2:50:44 PM by Hibernate Tools 5.2.8.Final import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import static javax.persistence.GenerationType.IDENTITY; import javax.persi...
[ "islamarabsoft@gmail.com" ]
islamarabsoft@gmail.com
d2f53bc787bfe57d412f8c029c095ccf0570e1ee
a385178586d1b1998af5e116dc8a739d0c4d2712
/src/lesson6/Main.java
dd0182abc52e1e51c5421b8dbeaf47170aadf4a3
[]
no_license
Xolodoc/javaJunior
22740370992300318f4ed22526cc003e22299cb8
854c3937ac6623d82ece0e9c56185255293e73a0
refs/heads/master
2023-01-06T04:28:27.733712
2020-11-10T18:36:01
2020-11-10T18:36:01
309,758,283
0
0
null
null
null
null
UTF-8
Java
false
false
334
java
package lesson6; public class Main { public static void main(String[] args) { // for (int i = 1; i < 10; i++){ // System.out.println(i); // } //то же самое только вайл int i = 1; while(i < 10){ System.out.println(i); i++; } } }
[ "lawrenspiter@gmail.com" ]
lawrenspiter@gmail.com
658d84fa07c9045f350cd78881e1f461f4e5fa2d
e94bddc529328b4b428bb08efe40953d2eda8524
/shortestPath.java
8c0380963fcb479d171ab73c569a32d848c79313
[]
no_license
lalanimaulik/Hackerrank_Questions-
bcdbf4318118f34fd1b5f21213a2b3d3d78f089a
a5bcde752c1abd923145c362720d1ea45cadf92c
refs/heads/master
2021-05-01T22:29:55.202313
2017-01-02T17:54:14
2017-01-02T17:54:14
77,364,618
0
0
null
null
null
null
UTF-8
Java
false
false
11,606
java
import java.io.*; import java.util.*; class Edge{ Node nodeName; int cost; Edge(Node node, int pathCost){ nodeName = node; cost = pathCost; } } class Node{ private static int objectCounter = 0; static ArrayList<Node> exists =new ArrayList<Node>(); public String state; public int totalCost; public Linke...
[ "lalanimaulik@gmail.com" ]
lalanimaulik@gmail.com
b6accbcfe5b98b764e7d28a3d0357b4e04d14e28
3bacbcbce8672037e89edf0a60b1e8440ebece7a
/Login/app/src/main/java/org/androidtown/login/profile.java
73997ea33bb2041cf8f8bbadf87a0fee7e0d7a5a
[]
no_license
hankug1234/styx-app
69742c65c49ecfbe7a1bdb2ac39623ee102e64c8
f15aa61618c1b1fc157ae69ae295059d1740a9e7
refs/heads/master
2022-11-20T11:45:24.569471
2019-06-05T04:10:19
2019-06-05T04:10:19
null
0
0
null
null
null
null
UTF-8
Java
false
false
8,324
java
package org.androidtown.login; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget...
[ "hankug1234.gihub.io" ]
hankug1234.gihub.io
c08965f70f4b68c0014d1d65d9e6de3b7927662c
6a3eb524adaa404980351c8b70182c94ed6a6b54
/MC_Custom_PDS/src/com/mc_custom/pds/commands/RegionRegenCommand.java
89fb19b89b85470715b3ebe1cd69b1c1381e0db2
[]
no_license
cetaSYN/MC_Custom
63791d76cb37fc173738e5250a5e5da69da2d17a
ae2f093ea68ae9b7604132fb050a5a19c9e24c98
refs/heads/master
2022-06-08T04:07:45.864870
2019-10-14T22:35:29
2019-10-14T22:35:29
194,199,411
1
1
null
2022-05-20T21:01:27
2019-06-28T03:22:58
Java
UTF-8
Java
false
false
2,008
java
package com.mc_custom.pds.commands; import com.mc_custom.core.commands.BaseCommand; import com.mc_custom.core.commands.MC_CustomCommand; import com.mc_custom.core.exceptions.InvalidArgumentException; import com.mc_custom.core.exceptions.NotOnlineException; import com.mc_custom.core.exceptions.TooFewArgumentsException;...
[ "46914689+cetaSYN@users.noreply.github.com" ]
46914689+cetaSYN@users.noreply.github.com
0ca7581a8e7d534624b49f8b3f2f55a51d417e0e
32fa46c18df63074015ef7c879d0c3c2974ce24d
/Copytom_Project/src/copytom-back/src/main/java/org/iesalixar/copytom/controller/MessageResponse.java
86714992e5564b13d5ef7dac91c49a65b353b2f4
[]
no_license
juangccd/Proyecto-DAW-Copytom-Papeleria
53eccba248d13d0ff27be4aab3c2eb7dc809f8c9
9d4cdd0a27970b31820016388787592d17ec6664
refs/heads/master
2023-06-01T22:57:05.514150
2021-06-18T17:16:15
2021-06-18T17:16:15
null
0
0
null
null
null
null
UTF-8
Java
false
false
161
java
package org.iesalixar.copytom.controller; public class MessageResponse { public MessageResponse(String string) { // TODO Auto-generated constructor stub } }
[ "juangccd@gmail.com" ]
juangccd@gmail.com
76bc4aa1410c5160728b0c3f860f4a78d4785377
feb433459ea515572353aae822de0f31ffcb4350
/app/build/generated/not_namespaced_r_class_sources/debug/r/androidx/legacy/coreutils/R.java
ee2f1d104abfdb058b20b826e4f0763b28f017cb
[]
no_license
PrachiBhosale18/Internship-Management
7f3042bc1d3b38a7ddda970ddbe74dff6554320f
d6d4ad5d7e18935317ff01c5127c1bc6e8924c8f
refs/heads/master
2022-12-11T08:07:23.462323
2020-07-17T10:14:02
2020-07-17T10:14:02
280,391,912
0
0
null
null
null
null
UTF-8
Java
false
false
10,456
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * gradle plugin from the resource data it found. It * should not be modified by hand. */ package androidx.legacy.coreutils; public final class R { private R() {} public static final class attr { private attr...
[ "prachibhosale1807@gmail.com" ]
prachibhosale1807@gmail.com
43cca76326819c789764274332d6d7ff69236401
824a75bb05ae7c697166b5ee59436114cc9210d4
/reports/src/TotalAmountOfPayments.java
e7964f1bb0cf7eddf7419f64bfdc9d123d19f825
[]
no_license
raghuvr7/birep1
df2cdeb1864126d4fecccda8fa8706325f3408a6
7fcf3b6d8a31d12907b8ea85d874940b002dd6b1
refs/heads/master
2021-01-17T04:44:23.792212
2015-08-28T09:16:32
2015-08-28T09:16:32
41,537,932
0
1
null
null
null
null
UTF-8
Java
false
false
2,120
java
import java.io.FileWriter; import java.io.IOException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import javax.servlet.RequestDispatcher; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import...
[ "admin@admin-PC" ]
admin@admin-PC
53690534b65f9128e62c3947e7abb1cc8bba54d9
1d440ec8e8c9ea900d31109639b52d7a620b3568
/ex003/src/main/java/org/zerock/mapper/ReplyMapper.java
a2e3e85333d65d923073187dc4b86b72ac584709
[]
no_license
Dohyung7/Spring-Project
657a05050f895c5b9a85ce6b1bb41b49bd665a87
1869310f9b21689d7d4eee8a54120b680211174f
refs/heads/master
2022-12-01T20:14:26.501684
2020-06-14T01:04:29
2020-06-14T01:04:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
479
java
package org.zerock.mapper; import java.util.List; import org.apache.ibatis.annotations.Param; import org.zerock.domain.Criteria; import org.zerock.domain.ReplyVO; public interface ReplyMapper { public int insert(ReplyVO vo); public ReplyVO read(Long bno); public int delete (Long rno); public int update(R...
[ "52536929+Dohyung7@users.noreply.github.com" ]
52536929+Dohyung7@users.noreply.github.com
9d44c680414c1628bc98e6af5b595b5289381184
c633e2bcdc7d7535d4673eed4de3584763dff21b
/vehicles/src/main/java/br/unifacisa/map/vehicles/VehiclesApplication.java
2edb036ec564267dd1f1b20d709a9d17f9d8a529
[]
no_license
joaobosconff/Spring-Cloud
bae6508ce60fe6b8ad077d83c74f1729926fdef1
ba5fac209b7aed425d6fd012574ac50ac5758cc5
refs/heads/master
2021-08-16T20:54:23.303028
2019-11-27T17:55:53
2019-11-27T17:55:53
224,314,597
0
0
null
null
null
null
UTF-8
Java
false
false
410
java
package br.unifacisa.map.vehicles; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; @SpringBootApplication @EnableEurekaClient public class VehiclesApplication { public static v...
[ "joaobosconff03@gmail.com" ]
joaobosconff03@gmail.com
9d1d7c563c45a84c9fb9132f095c135f2651f5df
c8d4a2c71be0ba81a66356c63ada23a9b5505c56
/src/main/java/com/umanizales/apibatallanaval/model/NodoDE.java
80df42c7403208534881b3c6695e77947fb56cf4
[]
no_license
YonAristizabal/ApiBatallaNaval
5f8345bd220a2cf951d0a9d8686e939277b780e6
faf1897b0cc73cd8020e92e7444deaca0a2e2d11
refs/heads/master
2023-05-19T04:19:52.069253
2021-06-04T23:46:36
2021-06-04T23:46:36
369,825,271
0
0
null
null
null
null
UTF-8
Java
false
false
339
java
package com.umanizales.apibatallanaval.model; import lombok.Getter; import lombok.Setter; import java.io.Serializable; @Getter @Setter public class NodoDE implements Serializable { private Object dato; private NodoDE siguiente; private NodoDE anterior; public NodoDE(Object dato) { this.dato...
[ "ygaristizabal81046@umanizales.edu.co" ]
ygaristizabal81046@umanizales.edu.co
89683804cb841de59c6878d41847c0f6163ba812
01563cf663b502102e22b73bd3ff6a16dde701d0
/src/main/java/com/jk51/modules/common/gaode/GaoDeInvokingException.java
63a750cd8aeb9cfdebdfbd2f589857f57577edbc
[]
no_license
tomzhang/springTestB
17cc2d866723d7200302b068a30239732a9cda26
af4bd2d5cc90d44f0b786fb115577a811d1eaac7
refs/heads/master
2020-05-02T04:35:50.729767
2018-10-24T02:24:35
2018-10-24T02:24:35
null
0
0
null
null
null
null
UTF-8
Java
false
false
208
java
package com.jk51.modules.common.gaode; /** * 高德调用异常 */ public class GaoDeInvokingException extends RuntimeException { public GaoDeInvokingException(Exception e) { super(e); } }
[ "gaojie@51jk.com" ]
gaojie@51jk.com
256ef52ecc84feaf81c440c14e1b4e205ae2b6a0
5ef0b4d230dc5243225d149efb44cdcdd2ffea9d
/trunk/tm/src/tm/javaLang/parser/SimpleNode.java
9bead9bf8da58835259af074cd603899172bedb3
[ "Apache-2.0" ]
permissive
kai-zhu/the-teaching-machine-and-webwriter
3d3b3dfdecd61e0fb2146b44c42d6467489fd94f
67adf8f41bb475108c285eb0894906cb0878849c
refs/heads/master
2021-01-16T20:47:55.620437
2016-05-23T12:38:03
2016-05-23T12:38:12
61,149,759
1
0
null
2016-06-14T19:22:57
2016-06-14T19:22:57
null
UTF-8
Java
false
false
4,373
java
// Copyright 1998--2010 Michael Bruce-Lockhart and Theodore S. Norvell // // 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 /...
[ "theodore.norvell@gmail.com" ]
theodore.norvell@gmail.com
4cbf1c66a6ba1e482438d2a963d5ad7186283def
776f7a8bbd6aac23678aa99b72c14e8dd332e146
/src/com/upsight/android/analytics/event/content/UpsightContentViewEvent$Builder.java
5257e1278c95fa65114857f0791c8a54779513d7
[]
no_license
arvinthrak/com.nianticlabs.pokemongo
aea656acdc6aa419904f02b7331f431e9a8bba39
bcf8617bafd27e64f165e107fdc820d85bedbc3a
refs/heads/master
2020-05-17T15:14:22.431395
2016-07-21T03:36:14
2016-07-21T03:36:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,197
java
package com.upsight.android.analytics.event.content; import com.upsight.android.analytics.event.UpsightPublisherData.Builder; import com.upsight.android.analytics.internal.AnalyticsEvent.Builder; public class UpsightContentViewEvent$Builder extends AnalyticsEvent.Builder<UpsightContentViewEvent, UpsightContentViewE...
[ "reverseengineeringer@hackeradmin.com" ]
reverseengineeringer@hackeradmin.com
139a415c29bb8557c83d9caa8134d81e0803ae3d
021d38058a0f97e703b1a2891ae9e4c413a7a386
/Week4/ServletFilterExample/src/com/journaldev/servlet/filters/RequestLoggingFilter.java
7dcc179239e817ce59dd602ae4aa14eb1c6c94f4
[]
no_license
nhunguyen76/BE_Novahub_Internship_Nhu
f48db0674ceb31d08b093046dc2398adc8a3ef6d
dbe0054be4d835756b2e3e7604ac18b3d71a33d6
refs/heads/master
2021-09-02T12:20:31.025978
2018-01-02T15:05:14
2018-01-02T15:05:14
113,452,430
0
0
null
null
null
null
UTF-8
Java
false
false
1,758
java
package com.journaldev.servlet.filters; import java.io.IOException; import java.util.Enumeration; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.FilterConfig; import javax.servlet.ServletContext; import javax.servlet.ServletException; import javax.servlet.ServletRequest;...
[ "ntqn960607@gmail.com" ]
ntqn960607@gmail.com
470d48ff5c528118bb82f00f66cd2c2f7fff1e16
fba8af31d5d36d8a6cf0c341faed98b6cd5ec0cb
/src/main/java/com/alipay/api/domain/AlipayOpenMiniBaseinfoMultiQueryModel.java
4ad1137eac47e1319a14fe421e758d8381d8c787
[ "Apache-2.0" ]
permissive
planesweep/alipay-sdk-java-all
b60ea1437e3377582bd08c61f942018891ce7762
637edbcc5ed137c2b55064521f24b675c3080e37
refs/heads/master
2020-12-12T09:23:19.133661
2020-01-09T11:04:31
2020-01-09T11:04:31
null
0
0
null
null
null
null
UTF-8
Java
false
false
847
java
package com.alipay.api.domain; import com.alipay.api.AlipayObject; import com.alipay.api.internal.mapping.ApiField; /** * 小程序查询多端基础信息 * * @author auto create * @since 1.0, 2019-09-16 11:49:26 */ public class AlipayOpenMiniBaseinfoMultiQueryModel extends AlipayObject { private static final long ser...
[ "ben.zy@antfin.com" ]
ben.zy@antfin.com
bc087410c676c0867e3a84801e3fddd91a07e1b4
1a9f35a866d337d919158c2f049b4a9de3690550
/Week5/src/hust/soict/hedspi/lab02/Bai4/mainFunction.java
289ece96363d7b0f84fa9767fdc9ba98b78d5fa8
[]
no_license
krazezt/OOP-Assignments
174bc64edbe7837c66f7dee5096acb393b4b357f
98b14284f0456eb511898b7b33d6cecad2eadbe6
refs/heads/master
2023-04-22T00:24:41.526255
2021-05-10T13:44:19
2021-05-10T13:44:19
342,141,082
0
0
null
2021-03-08T13:36:58
2021-02-25T06:07:12
Java
UTF-8
Java
false
false
752
java
package hust.soict.hedspi.lab02.Bai4; import java.util.Scanner; public class mainFunction { public static void main(String[] args) { Scanner a = new Scanner(System.in); System.out.print("Nhap so phan tu cho mang : "); int n = a.nextInt(); System.out.print("Nhap cac phan tu cua mang ...
[ "quan5555qt@gmail.com" ]
quan5555qt@gmail.com
66e337dd1f9600d113a296c36c2e3150d354f263
a85d2dccd5eab048b22b2d66a0c9b8a3fba4d6c2
/rebellion_h5_realm/java/l2r/gameserver/randoms/Visuals.java
b9d0566a7d712047e5246d10b7a0b99ae487f905
[]
no_license
netvirus/reb_h5_storm
96d29bf16c9068f4d65311f3d93c8794737d4f4e
861f7845e1851eb3c22d2a48135ee88f3dd36f5c
refs/heads/master
2023-04-11T18:23:59.957180
2021-04-18T02:53:10
2021-04-18T02:53:10
252,070,605
0
0
null
2021-04-18T02:53:11
2020-04-01T04:19:39
HTML
UTF-8
Java
false
false
10,404
java
package l2r.gameserver.randoms; import l2r.gameserver.Config; import l2r.gameserver.ThreadPoolManager; import l2r.gameserver.data.xml.holder.NpcHolder; import l2r.gameserver.instancemanager.ReflectionManager; import l2r.gameserver.model.GameObjectsStorage; import l2r.gameserver.model.Player; import l2r.gameser...
[ "l2agedev@gmail.com" ]
l2agedev@gmail.com
7c0456fcaaadd1fedf2f1a052a0b808f194b45d7
b4154ea225367eb46f13524693006bb2febd6268
/MavenProject/src/test/java/com/testng/PriorityDemo.java
013f944d3c569f40da0911ee6af3d7cf3433cf0d
[]
no_license
karthicksiva9625/InterviewPrograms
83c7f440d8188a776b06fd61bd969076466e344d
5936dfa6c49c7c74e6f986cfda2e62754a3e7b0f
refs/heads/master
2023-03-01T11:22:51.672026
2021-02-01T12:06:25
2021-02-01T12:06:25
334,622,092
0
0
null
null
null
null
UTF-8
Java
false
false
520
java
package com.testng; import org.testng.annotations.Test; public class PriorityDemo { @Test(priority =5 ) private void fifthrank5() { System.out.println("RANK5"); } @Test(priority = 3) private void thirdrank3() { System.out.println("RANK3"); } @Test(priority = 1) private void firstrank1() { System.ou...
[ "karthickrs9625@gmail.com" ]
karthickrs9625@gmail.com
1624b52f1b4e75a08ae4e2402dbfa4a0c258ee4b
1cbbf013476acb9d835175ed08a6b20e4b07de33
/src/main/java/edu/kis/powp/jobs2d/command/OperateToCommand.java
4f69bb44d1ab34057fc98a1c15ff6406e007cee7
[]
no_license
Tachulek/powp_jobs2d_project
425ce36abc950e9384b20d204d421898f52f249e
9a847108d7079f4c1af1a514bfa33d7b7ec5f31b
refs/heads/master
2020-08-06T22:47:59.287963
2019-11-15T15:02:26
2019-11-15T15:02:26
213,188,293
0
0
null
2019-10-06T14:59:05
2019-10-06T14:59:04
null
UTF-8
Java
false
false
410
java
package edu.kis.powp.jobs2d.command; import edu.kis.powp.jobs2d.Job2dDriver; public class OperateToCommand implements DriverCommand { int x; int y; Job2dDriver job2dDriver; public OperateToCommand(Job2dDriver j) { // TODO Auto-generated constructor stub job2dDriver = j; } @Override public void execut...
[ "Dawid.Jany@Harman.com" ]
Dawid.Jany@Harman.com
8c9fb979bf55abc6d56789549970b6eae9fd26a8
77882ab3cd9bffcae5c26628cf976256472aadb8
/src/com/tc/servlet/SignUpdateServlet.java
2a482590fb370cd5de691242d0786552024c38b1
[]
no_license
superma1997/Supermabox
8adbb4bc137464e4357116ffa82488b41ae2389e
293785af655cf074ea42e84918d17e81311f4f24
refs/heads/master
2022-11-12T22:47:56.386400
2020-07-10T09:36:14
2020-07-10T09:36:14
278,551,647
0
0
null
null
null
null
GB18030
Java
false
false
1,869
java
package com.tc.servlet; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.sun.security.ntlm.Client; import com.tc....
[ "2108627927@qq.com" ]
2108627927@qq.com
122332c92694991f9c640c8ff06c9b5b377dbc3f
ed79b79fb7e6e2b42f3017daddccbc7c7e9e7da9
/src/com/sbs/example/jspCommunity/controller/UsrHomeController.java
c48d1f4fcb59bdf1cc590b06e81a0ef7495e5598
[]
no_license
ParHanSung/jspCommunity
d0ad48e9bbea261886f5dae1daf755f9042ae6af
2ba42a58ae44778f50da43a5f3c7d69345006b3c
refs/heads/master
2023-06-10T21:27:12.637717
2021-06-30T01:51:57
2021-06-30T01:51:57
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,064
java
package com.sbs.example.jspCommunity.controller; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import com.sbs.example.jspCommunity.container.Container; import c...
[ "qbj700@gmail.com" ]
qbj700@gmail.com
873d1765903d90975859c9dc1b63720b84299656
ff7dc108d9998ee6fd2227b919745ef6e2e68651
/src/test/java/com/directori/book/springboot/domain/posts/PostsRepositoryTest.java
0f231f3a00dc5665b9f3a2583731e42f917dcd15
[]
no_license
alicesister1/springboot2-webservice
f997623231208bab6108002a3eff7deb1ddc5ce0
26b34b530d0ce0cc73c6e0c6d968bbfd4a169472
refs/heads/master
2023-03-19T06:34:30.947729
2022-02-06T15:18:06
2022-02-06T15:18:06
237,974,516
0
0
null
2023-03-02T19:59:01
2020-02-03T13:42:48
Java
UTF-8
Java
false
false
1,772
java
package com.directori.book.springboot.domain.posts; import java.time.LocalDateTime; import org.junit.After; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test...
[ "alicesister1@gmail.com" ]
alicesister1@gmail.com
6969988b33ce00ea364deee9c5108c01789ec23a
f9f585676cd3d0dea29bf8c25a7f92a1d4ed9ed1
/SisEscolarView/src/br/com/sisescolar/viewmantemendereco/ConsultaEnderecoView.java
4db8b2705d5a09b423d07f22028706dd4eac3068
[]
no_license
ElianeCosta/SisEscolar
00e42df2330f79401b322b4f437d9478a02a00fe
89b0971f4e0233c87f278d2b24308ee55325ee7e
refs/heads/master
2023-07-03T07:25:06.667676
2021-08-10T03:14:18
2021-08-10T03:14:18
394,509,720
0
0
null
null
null
null
UTF-8
Java
false
false
7,866
java
package br.com.sisescolar.viewmantemendereco; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.util.List; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JOpti...
[ "elianesc.2008@gmail.com" ]
elianesc.2008@gmail.com
ed73310965d0ffb4301a1796dd645b70a56a1af9
15c25a734c863701c2eeccd1288309aa7c18ed3d
/src/Tela_principal/JogosExtras.java
8b12e63a38a1248b53cd7065443387793f3e9548
[]
no_license
JamersonIFRN/IFlife
a71ca9aa8a530fb77e208db5e1eb7906662a22eb
761f4848c130f6ff6d501fad9edbbe662df714f4
refs/heads/master
2021-01-13T02:06:05.644167
2015-08-23T15:22:27
2015-08-23T15:22:27
40,974,956
0
0
null
null
null
null
ISO-8859-1
Java
false
false
21,901
java
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Tela_principal; import Sudoku.TelaSudoku; import AcheOErro.PrincipalAcheOErro; import CacaPalavras.PrincipalCaca; import Cozinha.TelaCozinha; import Forca.PrincipalForca; import JogoDaVelha.JogoDaVelha; import J...
[ "20121054010231@IP265883.ifrn.local" ]
20121054010231@IP265883.ifrn.local
556bf9a501c916352a8de204899ba55eacfa58df
3fe179d2bac62ba518819827b0b7e30a2b46c119
/src/main/java/applicatie/model/klant.java
a5230eeec1509084551ac89f155b23ffb5c7ddb6
[]
no_license
EduardGarritsen/IPASS
76bc5206cb43b09fb5339c0e8b2c01c3adf486b2
ebad04c53bf3c4ad9a88fab119c77b1e741b4a13
refs/heads/master
2020-03-21T04:54:11.825817
2018-06-28T17:57:43
2018-06-28T17:57:43
138,132,548
0
0
null
null
null
null
UTF-8
Java
false
false
1,001
java
package applicatie.model; public class klant { private int klant_Id; private String naam; private String wachtwoord; private String email; public klant() { } public klant(int klant_Id, String naam, String wachtwoord, String email) { this.klant_Id = klant_Id; this.naam = naam; this.wachtwoord = wa...
[ "eduard.garritsen@student.hu.nl" ]
eduard.garritsen@student.hu.nl
094d1c941b5aeffbf12444eeebebd8ce55ab3167
583c24d3c400dac3418575a6e15a077873590dc0
/exception/NombrePlacesMaxException.java
19980e70f114a71210c30a0c3574d24b64e6aecb
[ "MIT" ]
permissive
KenAdBlock/parking
448cdc25e4822b91e3b77e933d77507dc13da663
232b863703f90939e0737eb3f37123fe4250e16e
refs/heads/master
2021-01-15T11:07:37.054468
2015-01-13T17:54:26
2015-01-13T17:54:26
null
0
0
null
null
null
null
UTF-8
Java
false
false
157
java
package parking.exception; public class NombrePlacesMaxException extends Exception{ private static final long serialVersionUID = 1836286394929112339L; }
[ "naokiboo@gmail.com" ]
naokiboo@gmail.com
6872f6c53cb5a788d11e4403365edf1def9421c2
7f20b1bddf9f48108a43a9922433b141fac66a6d
/csplugins/trunk/toronto/jm/cy3-stateless-taskfactory/api/property-api/src/main/java/org/cytoscape/property/SimpleCyProperty.java
0cf3e66ab92be7795adcb8504e0cc56e0c130648
[]
no_license
ahdahddl/cytoscape
bf783d44cddda313a5b3563ea746b07f38173022
a3df8f63dba4ec49942027c91ecac6efa920c195
refs/heads/master
2020-06-26T16:48:19.791722
2013-08-28T04:08:31
2013-08-28T04:08:31
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,621
java
package org.cytoscape.property; import java.util.Properties; /** * A simple implementation of CyProperty&lt;Properties&gt; suitable for * general purpose use. * @CyAPI.Final.Class */ public final class SimpleCyProperty implements CyProperty<Properties> { /** Core Cytoscape Property (Cytoscape System Propert...
[ "jm@0ecc0d97-ab19-0410-9704-bfe1a75892f5" ]
jm@0ecc0d97-ab19-0410-9704-bfe1a75892f5
95c9f5b3fed6f9848069c002b8f1af751325ca00
5a254336d5d79c9383129c46a1d007ace6f7e30a
/src/java/play/learn/java/design/factory_kit/FactoryKitDemo.java
5ccaf10774b43f45c009fbfdd471fabe6bede55b
[ "Apache-2.0" ]
permissive
jasonwee/videoOnCloud
837b1ece7909a9a9d9a12f20f3508d05c37553ed
b896955dc0d24665d736a60715deb171abf105ce
refs/heads/master
2023-09-03T00:04:51.115717
2023-09-02T18:12:55
2023-09-02T18:12:55
19,120,021
1
5
null
2015-06-03T11:11:00
2014-04-24T18:47:52
Python
UTF-8
Java
false
false
544
java
package play.learn.java.design.factory_kit; // https://java-design-patterns.com/patterns/factory-kit/ public class FactoryKitDemo { public static void main(String[] args) { WeaponFactory factory = WeaponFactory.factory(builder -> { builder.add(WeaponType.SWORD, Sword::new); builder.add(WeaponTyp...
[ "peichieh@gmail.com" ]
peichieh@gmail.com
e03eed1c52a7eb82c0b1eadc5a17c94db781f2b7
297006c3aa2f9ca9eca0f314c5283a7b1b216db3
/src/main/java/com/hnzj/democ1/web/HelloController.java
d25c6e8858b6292e8ff8bbad32bd1bff29df258c
[]
no_license
hnzhouzhoujay/spring-boot-learning
334f243fbe846a5b6afbcd27e03618eb0ec3056d
293c70a78f12634867562458611e37ffc03b160e
refs/heads/master
2020-03-09T21:48:01.070373
2018-04-13T00:32:51
2018-04-13T00:32:51
129,018,872
0
0
null
null
null
null
UTF-8
Java
false
false
597
java
package com.hnzj.democ1.web; import com.hnzj.democ1.config.ConfigBean; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * Created by 周杰 on 2018/4/2. */ @RestController publ...
[ "418087535@qq.com" ]
418087535@qq.com
c1cd2ed15ba8d265a0cec3f9a5b65de273c8db0e
0358db754f1433876d2e2f3304ac2859945977f0
/APIGatewayWahSis/src/apigatewaywahsis/service/CustomersServlet.java
f086f2e766da7dfb4e2b1b0663e2d6bdb65b453e
[]
no_license
khacquanht/pms-service-protocol
dfc006e7bea38ea6e1bce7df5a8a777ce3e121a2
d806cbb36d2db8ca76d02af3ac9070d43e6cd5ad
refs/heads/master
2022-08-29T02:14:48.749191
2020-05-26T15:18:19
2020-05-26T15:18:19
267,077,447
0
0
null
null
null
null
UTF-8
Java
false
false
3,869
java
package apigatewaywahsis.service; import apigatewaywahsis.common.CommonModel; import apigatewaywahsis.common.DefinedName; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import com.service_wahsis.customer_service.CustomersHandler; import com.wahsis.lib.auth.SessionManager; ...
[ "khacquanht96@gmail.com" ]
khacquanht96@gmail.com
5b5b152f2afb0655f88bbef52a81903b9c7228dd
aeccb2f3d1acf3fc18341c94cfb98b4edd6b6ccd
/src/main/java/cn/nuaa/gcc/handler3/MyEncoderProtocol.java
b813069017b86c9d7a5580e6f194c0b364e96c33
[]
no_license
gcczuis/IMOnNetty
5e13eec172ae7f2c7dd81f0a55efc5a635ced8aa
da47ef2cc6ea5465c6fb367fe91fa328365cd497
refs/heads/master
2022-06-24T04:00:25.951763
2019-05-23T02:05:17
2019-05-23T02:05:17
187,950,760
3
0
null
2022-06-17T02:10:05
2019-05-22T02:47:20
Java
UTF-8
Java
false
false
569
java
package cn.nuaa.gcc.handler3; import io.netty.buffer.ByteBuf; import io.netty.channel.ChannelHandlerContext; import io.netty.handler.codec.MessageToByteEncoder; /** * {@author: gcc} * {@Date: 2019/4/1 10:36} */ public class MyEncoderProtocol extends MessageToByteEncoder<MyProtocol> { @Override ...
[ "gcc950226@outlook.com" ]
gcc950226@outlook.com
44ab5f502001bfbbf321187ce576355d8b08cd2f
add11a2387c208c124808bde43d3f22e43a59ea8
/B79SpringMVCWelcomeApp/src/com/uttara/spring/MVCService.java
8901cda7c36f3685c3295cb5cd607654cc2e3547
[]
no_license
balajisundaramm/Eclipse-Projects
a79cab9851fec0aa9e50051290fc41c87a549285
e45888343b5a942d2d52eecdb6fe3dc8e2e8c049
refs/heads/master
2021-09-04T06:29:45.136011
2018-01-16T17:54:51
2018-01-16T17:54:51
117,720,112
0
0
null
null
null
null
UTF-8
Java
false
false
111
java
package com.uttara.spring; public interface MVCService { public String getWelcomeMessage(InputBean bean); }
[ "balajitpgit13@gmail.com" ]
balajitpgit13@gmail.com
e8afff096395aacfb207ddcc0604f85ab93128fc
2af2f1fa23e8b0544ee192980508c9f691d6b93d
/lab3NewWay/src/com/company/MatrixSum.java
5c3ed83524a99452d6be7ec86795f3086455a89c
[]
no_license
floreaadrian/Pdp
ab6b98ccc8822cba5c4003ec348df97bef8fdf86
709b43abbd063d9794a3825023fbe8946187cd23
refs/heads/master
2020-08-28T23:08:27.380429
2019-12-17T21:04:16
2019-12-17T21:04:16
217,848,561
0
0
null
null
null
null
UTF-8
Java
false
false
1,948
java
package com.company; import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; public class MatrixSum implements Runnable { private int matrixSize = 5000; private int[][] a = new int[matrixSize][matrixSize]; private int[][] b = new int[matrixSize][matrixSize]; private int[][]...
[ "florea.adrian.paul@gmail.com" ]
florea.adrian.paul@gmail.com
aa815516db885124e2dc5b4ee9c020f03aa38ba1
75285e1323d0ad988df32aff6e9cbbfda1f4cd07
/java/my-app2/src/main/java/com/kafkastart/ConsumerDemoWithThread.java
9f11a6d1d9d954b82515c3c88d285093feecca1a
[]
no_license
yuyatinnefeld/kafka
fd09bdad26edd552641f7b78e0be89c0cdb1e388
aaa0cf8af711a6cd9472cc3b3c695f6a5e218220
refs/heads/master
2023-05-31T05:39:28.323053
2021-06-02T15:59:58
2021-06-02T15:59:58
364,687,979
0
0
null
null
null
null
UTF-8
Java
false
false
4,388
java
package com.kafkastart; import org.apache.kafka.clients.consumer.ConsumerConfig; import org.apache.kafka.clients.consumer.ConsumerRecord; import org.apache.kafka.clients.consumer.ConsumerRecords; import org.apache.kafka.clients.consumer.KafkaConsumer; import org.apache.kafka.common.errors.WakeupException; import org.a...
[ "yuyatinnefeld@gmail.com" ]
yuyatinnefeld@gmail.com
0f9f62497e94193afff20eef8a56c132612a7e06
0ad447bdf143262f30589057496ed7c6e3a23792
/src/main/java/io/github/manfredpaul/hipstermaps/ApplicationWebXml.java
f7f18b075a6d2470b5b32e0018e21fd65a8df755
[]
no_license
BulkSecurityGeneratorProject/hipstermaps
78cf3f838ac67b0647e86313a3315dc4b5f2c28f
e89d40a3b8669a5bfc8242db2c2401a05caa1d6e
refs/heads/master
2022-12-14T14:17:08.515937
2017-08-07T15:05:34
2017-08-07T15:05:34
296,585,448
0
0
null
2020-09-18T10:10:39
2020-09-18T10:10:39
null
UTF-8
Java
false
false
853
java
package io.github.manfredpaul.hipstermaps; import io.github.manfredpaul.hipstermaps.config.DefaultProfileUtil; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.boot.web.support.SpringBootServletInitializer; /** * This is a helper Java class that provides an alternative to ...
[ "jhipster-bot@users.noreply.github.com" ]
jhipster-bot@users.noreply.github.com
3059b6e3f7efcf09e6aa2b29f833da508ecca793
6eaf14b64ecacbb8545ed5559578715dfc59d3a3
/GroupA/10-3-IntentAdder1/app/build/generated/not_namespaced_r_class_sources/debug/r/android/support/compat/R.java
fdc3aa75e2694f55373353cfc185801af0806ac8
[]
no_license
GMIT-mmurray/MAD21
d0168f0294de8e184c7126d872c573fa73947a5d
eb62dd6c22bcedd73b6b0e7ba785b95110ee9a23
refs/heads/main
2023-03-02T20:39:58.742166
2021-02-12T19:18:13
2021-02-12T19:18:13
331,926,821
0
0
null
null
null
null
UTF-8
Java
false
false
10,453
java
/* AUTO-GENERATED FILE. DO NOT MODIFY. * * This class was automatically generated by the * gradle plugin from the resource data it found. It * should not be modified by hand. */ package android.support.compat; public final class R { private R() {} public static final class attr { private attr() ...
[ "michael.murray@gmit.ie" ]
michael.murray@gmit.ie
e56d6eb494fa69af6612019022d35f2cb6562cc8
e1082e523d373b0458ba63fe30e42610666d3371
/shop-user/src/main/java/quick/pager/shop/service/client/UserClientService.java
842d98776cb5eeb7d698eb41a050be648080e78a
[ "MIT" ]
permissive
goodsmile/spring-cloud-shop
73a8cdefac48b429e534c0890ed7e486a2fd46be
9e6fa2651ba592adff82ecaa818038cbbe845521
refs/heads/master
2020-05-05T10:13:24.695353
2019-03-31T07:10:10
2019-03-31T07:10:10
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,345
java
package quick.pager.shop.service.client; import com.github.pagehelper.PageHelper; import com.github.pagehelper.PageInfo; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import quick.pager.shop.StationLetter; import quick.pager.shop.Us...
[ "siguiyang1992@outlook.com" ]
siguiyang1992@outlook.com
556c990f9cc4d6db55743780bf01393c041d6198
442d07f8f38598dbf012e6ce88fd2f6e6cc5c039
/src/com/company/observer/Button.java
cc1ebbe0cfd01d723a54ae3db15f75dc40530c83
[]
no_license
chanhoGod/DesignPattern_Example
91f358e398af9c14e88e941e59b8c29fd971c010
a181c1b48a43c7a70f21f4d51aa72fb5f9c7eb12
refs/heads/master
2023-06-19T05:36:21.298361
2021-07-21T08:39:06
2021-07-21T08:39:06
388,019,171
0
0
null
null
null
null
UTF-8
Java
false
false
396
java
package com.company.observer; public class Button { private String name; private IButtonListener buttonListener; public Button(String name){ this.name = name; } public void click(String message){ buttonListener.clickEvent(message); } public void addListener(IButtonListen...
[ "cksgh3422@gmail.com" ]
cksgh3422@gmail.com
4f7dddb6c8d671df9ece51709a773d7cf31bf051
72b8fb3e1e180ee270e9f6d2da8249b0251c36e7
/services/CountryInfoService/src/com/custom_profile_deploy/services/countryinfoservice/CountryCurrency.java
a2d3fbaf3c6dcec5cb6ea4f8421981bf1fee6909
[]
no_license
wavemakerapps/test_ENT_127
e074fd4101d6785d9b1bea23cd4061b7fcc96c73
5e5c27c10308c9156bb045b2cef81df6ccbddacb
refs/heads/master
2020-05-09T23:19:14.056214
2019-04-15T13:56:53
2019-04-15T13:56:53
181,498,290
0
0
null
null
null
null
UTF-8
Java
false
false
1,887
java
/*Copyright (c) 2016-2017 profiles.com All Rights Reserved. This software is the confidential and proprietary information of profiles.com You shall not disclose such Confidential Information and shall use it only in accordance with the terms of the source code license agreement you entered into with profiles.com*/ p...
[ "sairama.bonala@wavemaker.com" ]
sairama.bonala@wavemaker.com
da76db3b4346936a6ed5c3261af80c35f44b22c8
d8772960b3b2b07dddc8a77595397cb2618ec7b0
/rhServer/src/main/java/com/rhlinkcon/repository/requisicaoPessoal/RequisicaoPessoalCandidatoRepository.java
031439d59b7a62898b9c2b6a5fe7b88628c91e60
[]
no_license
vctrmarques/interno-rh-sistema
c0f49a17923b5cdfaeb148c6f6da48236055cf29
7a7a5d9c36c50ec967cb40a347ec0ad3744d896e
refs/heads/main
2023-03-17T02:07:10.089496
2021-03-12T19:06:05
2021-03-12T19:06:05
347,168,924
0
1
null
null
null
null
UTF-8
Java
false
false
446
java
package com.rhlinkcon.repository.requisicaoPessoal; import java.util.List; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; import com.rhlinkcon.model.RequisicaoPessoalCandidato; @Repository public interface RequisicaoPessoalCandidatoRepository extends ...
[ "vctmarques@gmail.com" ]
vctmarques@gmail.com
a78569c0c14a64911f9f67a035d067943f7b0dc4
149db0d2c48b2fa2d93dd0aad70b6203eceeb44d
/src/java/controller/UsuarioController.java
fce56f5e25b034d31193ad6d0a1d692a4b9dec9b
[]
no_license
grossiwm/old-school-blog-servlet
577aa6423c71d32fa8febe5570cd9a3a1137c1f8
0401f655aec74f3f5ce59eadc7d486ad7fa96908
refs/heads/master
2023-01-28T13:16:50.950183
2020-12-11T02:45:55
2020-12-11T02:45:55
311,480,706
0
0
null
null
null
null
UTF-8
Java
false
false
6,370
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 controller; import enums.PapelUsuario; import model.Usuario; import java.io.IOException; import java.util.List; import java.ut...
[ "gabriel.rossi@fattoriaweb.com.br" ]
gabriel.rossi@fattoriaweb.com.br
c98dd8f0c666464297063c45ccc4956816d34c0c
2a1dc269275c25ede3b9baf1fb1a6a61cefd75e6
/src/bank/server/Server.java
0e2e49e375f9cb6d2645eb0145df83482cc2ac95
[]
no_license
Maheliusz/Middleware
4dcc5b7964c6dc329d4819210d3c855be69d48ad
7147b511234757c11e874c390da4a87b1e07b51d
refs/heads/master
2020-03-16T21:55:09.281855
2018-05-11T10:27:04
2018-05-11T10:27:04
133,019,388
0
0
null
null
null
null
UTF-8
Java
false
false
4,689
java
package bank.server; import Bank.grpc.*; import Bank.grpc.Currency; import bank.server.ice.AccountFactoryI; import com.zeroc.Ice.Communicator; import com.zeroc.Ice.ObjectAdapter; import com.zeroc.Ice.Util; import io.grpc.ManagedChannel; import io.grpc.ManagedChannelBuilder; import io.grpc.stub.StreamObserver; import ...
[ "miczak96@gmail.com" ]
miczak96@gmail.com
9f6695c56caad6bb8cc6c20614b25c9c982c6460
5ce466adc7791d81166d0ee12d8bc981bf3440cd
/code/gwtia-ch17-deferredbinding/src/com/manning/gwtia/ch17/client/ExamplePanel.java
accf4ea2b1d30979146225a42976d1be31661f22
[]
no_license
govelogo/gwtinaction2
72b00b5c86434380297ad3ced2624db9dc5fa65c
749b00b7b6e4a140dd6635dc0939a6293161a224
refs/heads/master
2020-03-27T00:53:16.259871
2013-11-06T19:57:43
2013-11-06T19:57:43
13,943,794
3
1
null
null
null
null
UTF-8
Java
false
false
3,530
java
package com.manning.gwtia.ch17.client; import com.google.gwt.core.client.GWT; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.logical.shared.ResizeEvent; import com.google.gwt.event.logical.shared.ResizeHandler; import com.google.gwt.resources.client.ClientBundle; import com.google.gwt....
[ "govelogo@gmail.com" ]
govelogo@gmail.com
5e0cf79f32407c8c169b36d3c74af3bbe3ad7270
e27db8a6f6218a6599873afea70f3d8597716cb7
/SSM_ERP/src/main/java/com/kk/domain/DeviceMaintain.java
2c8bb3c4077ad02d34321eb91074eb474b65bbed
[]
no_license
kangjunfeng/java_ssm_erp
b8f9465caa2a9d2521369558eb4205a6228a65de
353d7de13dbb5093682a54944ce18cf642be7e10
refs/heads/master
2021-01-25T06:45:51.300071
2017-06-16T09:27:15
2017-06-16T09:27:15
93,610,457
4
3
null
null
null
null
UTF-8
Java
false
false
2,337
java
package com.kk.domain; import java.math.BigDecimal; import java.util.Date; import javax.validation.constraints.Max; import javax.validation.constraints.Size; public class DeviceMaintain { @Size(max=40, message="{id.length.error}") private String deviceMaintainId; private String deviceFaultId...
[ "admin@admindeMac-mini.local" ]
admin@admindeMac-mini.local
237f25cc64f722a66e73c0c13c67cdc66c1e7f90
037825656b87177b534996c9e602a947a6144331
/app/src/main/java/com/codepath/apps/restclienttemplate/ComposeActivity.java
0d8f204f69ab3aeb80e9a48be5d49bfe16c56f92
[ "Apache-2.0", "MIT" ]
permissive
latifatozoya/TwitterApp
dd7ffb99839e6026e31f6ce6d76be7d82b75b018
85f7a753571dddb5e0f46e659bdc80f7d591ad89
refs/heads/master
2020-03-22T04:29:42.255974
2018-07-07T01:49:49
2018-07-07T01:49:49
139,502,341
0
0
null
null
null
null
UTF-8
Java
false
false
1,554
java
package com.codepath.apps.restclienttemplate; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.EditText; import com.codepath.apps.restclienttemplate.models.Tweet; import com.loopj.android.http.JsonHttpResponseHand...
[ "latifat@fb.com" ]
latifat@fb.com
0008c9e8bdde763c61e7066b1fd63dde28c5a054
52ab0a2ffe662773686ba4b3a358d2554ed47361
/trunk/Source/StudentApp/src/main/java/com/lk/std/service/DistrictServiceImpl.java
bc9561d96745c184651c953a86b1db87aed6cda5
[]
no_license
udenisilva/sms1
9c4b0d1b4f9e7b523e7e706b194999de5a355e00
7be2fe3eff6e4d656fb4bec843418b4c81d77dc4
refs/heads/master
2021-01-22T02:40:59.407914
2017-02-02T07:07:37
2017-02-02T07:07:37
81,063,614
1
0
null
null
null
null
UTF-8
Java
false
false
664
java
/** * */ package com.lk.std.service; import java.util.List; import javax.transaction.Transactional; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.lk.std.dao.DistrictRepository; import com.lk.std.model.District; @Service @Transactional p...
[ "dhiripitiy001@SWD-L-038.lk.aap.ad.pwcinternal.com" ]
dhiripitiy001@SWD-L-038.lk.aap.ad.pwcinternal.com
77c225a025d5757d07b541711683e6bd7c3ba15c
8c37843ccb333d721510348be9128c96d2292cfb
/SpringBoot-Shiro-Vue-master/back/src/main/java/com/heeexy/example/controller/GoodsViewController.java
4abfd09d844b1d139afd52f3a33aff9da3896316
[ "MIT" ]
permissive
annieshym/springbootShiro
5ef32bad06fece711da050077c0ed21408b9d894
0fee1625ad915217144f93f4bb69ebae630243bb
refs/heads/master
2023-03-19T16:57:46.159398
2021-01-08T08:04:23
2021-01-08T08:04:23
null
0
0
null
null
null
null
UTF-8
Java
false
false
767
java
package com.heeexy.example.controller; import com.alibaba.fastjson.JSONObject; import com.heeexy.example.service.GoodsViewService; import com.heeexy.example.util.CommonUtil; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import javax.servlet.http.HttpS...
[ "1003896506@qq.com" ]
1003896506@qq.com
c7dbb82d409c18c965ab6518f5dc8699f86ceeb1
07e051f924d73a47f353dbee540d98d6c223ab94
/androidApp/app/src/main/java/com/fancontroller/joep/fan/FanControl/Fan.java
093187cee8de559b23725e972c639af0e21b62b1
[]
no_license
JoepSchyns/StandAlone_RTC_BT_Fancontroller
4c00543967c3d1b4f2769503d9ad50d5ca2f0fac
43fd1a78d7a8b54b95d85e7dbd224de18243cece
refs/heads/master
2021-01-20T08:19:31.571808
2017-08-25T17:37:58
2017-08-25T17:37:58
90,130,041
0
0
null
null
null
null
UTF-8
Java
false
false
4,966
java
package com.fancontroller.joep.fan.FanControl; import android.bluetooth.BluetoothAdapter; import android.bluetooth.BluetoothDevice; import android.content.Context; import android.content.Intent; import android.util.Log; import com.fancontroller.joep.fan.activities.Home; import com.fancontroller.joep.fan.services.Devi...
[ "joepschyns@gmail.com" ]
joepschyns@gmail.com
e1edc95d4a128dc9942093e938e477bd6dc7a880
e9ced737e78fae8d99aeb3e38cdff6878a753770
/src/Recursion/TowerofHanoi.java
e556fe9899d83ca1dde750ef7d916ce5fdf38779
[]
no_license
Sarthakbajaj0323/Pepcoding
004b45af7b9d479ef77ad99631de091dd14da75b
5f991725e734e3b635533102d364f803e408cee9
refs/heads/master
2023-06-25T23:49:42.684990
2021-07-27T11:35:56
2021-07-27T11:35:56
389,958,746
0
0
null
null
null
null
UTF-8
Java
false
false
776
java
package Recursion; import java.util.*; public class TowerofHanoi { public static void main(String[] args) { Scanner s =new Scanner(System.in); int n =s.nextInt(); int t1d=s.nextInt(); int t2d=s.nextInt(); int t3d=s.nextInt(); TowerofHanoi(n,t1d,t2d,t3d); } p...
[ "iamsarthakbaja23@gmail.comm" ]
iamsarthakbaja23@gmail.comm
dbafed2292703b25257aa7db5b9e45499ec68a3c
907975ab978e67df02938d12530e373ef0f402c8
/ContextApp/src/main/java/com/github/migi_1/ContextApp/client/ActiveClientState.java
16ed7ef6ea8f022a84f2018161cde18dc3cbf9b4
[]
no_license
LMiljak/ContextMigi-1
5879e6d5f749347856786874ea63311438a3148c
f57d3121264a0e1941b82d19a5fc63d3d31dcd9f
refs/heads/master
2021-01-21T16:04:50.051665
2016-06-25T11:08:05
2016-06-25T11:08:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
686
java
package com.github.migi_1.ContextApp.client; import com.jme3.network.Client; /** * A client state for when the client is active. */ public class ActiveClientState extends ClientState { /** * Constructor for ActiveClientState. * * @param client * The client that this state represents. ...
[ "lmiljak@student.tudelft.nl" ]
lmiljak@student.tudelft.nl
7c4f5f91ce92526c1fe7a1772471fca5fc0180cb
bd1915077c74230e0f389b649c032d0ca206029e
/src/test/java/com/jabaddon/book/fp4jd/funtions/Function1VoidTest.java
7d59a053455039d526c949321e3ae4118164256d
[]
no_license
abadongutierrez/functionalProg4JavaDevs
7beb2c7630a126065e17d0382002401ec179215c
27b26da5eaf21f1964c5aa17f55ff3542e769472
refs/heads/master
2016-09-06T01:02:49.905469
2012-04-21T23:27:14
2012-04-21T23:27:14
null
0
0
null
null
null
null
UTF-8
Java
false
false
831
java
package com.jabaddon.book.fp4jd.funtions; import org.hamcrest.CoreMatchers; import org.junit.Test; import java.util.ArrayList; import java.util.List; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertThat; import static org.junit.matchers.JUnitMatchers.hasItems; public class Function1...
[ "abadon.gutierrez@gmail.com" ]
abadon.gutierrez@gmail.com
ea7acfe7b3cae83cfafce9aa75f37326e66b432b
167c6226bc77c5daaedab007dfdad4377f588ef4
/java/ql/test/stubs/netty-4.1.x/io/netty/handler/codec/http/multipart/HttpDataFactory.java
70acdf0a0ff1d2e5841d5c9b02570cad5b01ca99
[ "Apache-2.0", "MIT" ]
permissive
github/codeql
1eebb449a34f774db9e881b52cb8f7a1b1a53612
d109637e2d7ab3b819812eb960c05cb31d9d2168
refs/heads/main
2023-08-20T11:32:39.162059
2023-08-18T14:33:32
2023-08-18T14:33:32
143,040,428
5,987
1,363
MIT
2023-09-14T19:36:50
2018-07-31T16:35:51
CodeQL
UTF-8
Java
false
false
1,017
java
// Generated automatically from io.netty.handler.codec.http.multipart.HttpDataFactory for testing purposes package io.netty.handler.codec.http.multipart; import io.netty.handler.codec.http.HttpRequest; import io.netty.handler.codec.http.multipart.Attribute; import io.netty.handler.codec.http.multipart.FileUpload; imp...
[ "joefarebrother@github.com" ]
joefarebrother@github.com
4eb22a6093012457fb9f20ab416271994e045a60
6ec0174a9ef182f6c7ccd38ed67ddb7811072cc7
/src/main/java/com/myvicino/configuration/AdminConfiguration.java
dda1fa9fd6a2b3b8961f8deaa767fe2a8aa754a0
[]
no_license
pradeepkaushal/admin
160521c984704bfe1b3ad99515f5acc9d35aed00
c2ab2668f43eea9faad4c43128ce8f4d2f585116
refs/heads/master
2021-01-25T06:37:22.391347
2015-08-02T19:42:14
2015-08-02T19:42:14
40,090,552
0
0
null
null
null
null
UTF-8
Java
false
false
2,290
java
package com.myvicino.configuration; import com.myvicino.core.Template; import com.fasterxml.jackson.annotation.JsonProperty; import com.google.common.collect.ImmutableMap; import io.dropwizard.Configuration; import io.dropwizard.db.DataSourceFactory; import org.hibernate.validator.constraints.NotEmpty; import javax....
[ "pradeep.kaushal@flipkart.com" ]
pradeep.kaushal@flipkart.com
25f5ad50d2731c8b16336ea40e8675c46af27d12
ba737fa030e48712226c6b225cf1ea2ca76acfb7
/switchaccess/src/main/java/PPMTrie.java
35c394b9dcc81bcfb176ff6a9aa0122870bc53f1
[ "Apache-2.0" ]
permissive
ttoommbb/talkback
c0528a3b030d35420226541663b72231d8f706bc
99a0106ec79b6f0b18f10f71cc8e0a380f26e2f5
refs/heads/master
2020-05-30T15:19:06.253108
2019-06-03T02:40:43
2019-06-03T02:40:43
189,814,451
0
0
null
2019-06-02T06:52:25
2019-06-02T06:52:25
null
UTF-8
Java
false
false
16,044
java
/* * Copyright (C) 2015 Google 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 ...
[ "cbrower@google.com" ]
cbrower@google.com
5e0bb99704cf38df82b5411a68c1ef3da395aba9
7ca3100e7dc3fdbd82e083604b0c44b67b69e4de
/backend/src/main/java/com/devsuperior/dslearnbds/services/exceptions/ResourceNotFoundException.java
359ba519e04c2ac55c49dcb770cc4d1ae9b6a88e
[]
no_license
rqguzman/dslearn-bootcamp-reboot
26e091eeb579a2c458ddb01d29a5a0d3e8d58c54
ba4440daf539fca1763f238139a730aa3ff6905a
refs/heads/main
2023-08-28T20:32:31.734265
2021-10-04T15:14:47
2021-10-04T15:14:47
410,929,314
0
0
null
null
null
null
UTF-8
Java
false
false
258
java
package com.devsuperior.dslearnbds.services.exceptions; public class ResourceNotFoundException extends RuntimeException { private static final long serialVersionUID = 1L; public ResourceNotFoundException(String msg) { super(msg); } }
[ "rafael.guzman@outlook.com" ]
rafael.guzman@outlook.com
1f3b0c32e49c9787cb2d6b1874f954532bbf6dfe
0450ee79a68e76df4e73072fd5905eb28e4b3206
/src/main/java/com/space/model/Ship.java
a0b468f1d4aef4626e6bb1dac8dfb42e8230882c
[]
no_license
AleksCrow/cosmoport
5dbb24fa6eb7df6f514d95029fff2f9eea746cd3
974fceffb27aab49c6c9a57e8e804a89cff3c4ec
refs/heads/master
2022-12-22T09:30:20.803751
2019-10-08T09:35:50
2019-10-08T09:35:50
211,522,428
0
0
null
2022-12-16T00:35:15
2019-09-28T15:36:26
JavaScript
UTF-8
Java
false
false
4,268
java
package com.space.model; import org.hibernate.validator.constraints.Range; import javax.persistence.*; import javax.validation.constraints.*; import java.sql.Date; import java.util.Calendar; import java.util.Objects; @Entity @Table(name = "ship") public class Ship { @Id @GeneratedValue(strategy = Generation...
[ "Qwerton00@gmail.com" ]
Qwerton00@gmail.com
159fb74fd819950f12f7b830a1a5d5487bbbd839
03dc380cc3c5ed77a048be1f3806685c63a3bc75
/src/main/java/com/sha/serverproductmanagement/controller/AdminController.java
408251cbbd4a4a26115090ad8e85b80a6a3b3e09
[]
no_license
SaharukOleg/server-product-management
6c99892839b33a028b57d603dd0aa2766134f20f
9a48ee761522f87ebdf05d4fee9a0683a38bbc04
refs/heads/master
2020-11-28T06:22:23.738507
2019-12-30T10:39:47
2019-12-30T10:39:47
229,727,536
1
0
null
null
null
null
UTF-8
Java
false
false
4,102
java
package com.sha.serverproductmanagement.controller; import com.sha.serverproductmanagement.model.Product; import com.sha.serverproductmanagement.model.Role; import com.sha.serverproductmanagement.model.StringResponse; import com.sha.serverproductmanagement.model.User; import com.sha.serverproductmanagement.service.Pro...
[ "saharukoleg1@gmail.com" ]
saharukoleg1@gmail.com
a54a88b8a462df3631e405b24fa96bbc5829ca8e
e42afd54dcc0add3d2b8823ee98a18c50023a396
/java-dialogflow-cx/proto-google-cloud-dialogflow-cx-v3beta1/src/main/java/com/google/cloud/dialogflow/cx/v3beta1/ExportFlowRequest.java
dd657269bcb90146eb5867e55a10c52f57365fd4
[ "Apache-2.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
degloba/google-cloud-java
eea41ebb64f4128583533bc1547e264e730750e2
b1850f15cd562c659c6e8aaee1d1e65d4cd4147e
refs/heads/master
2022-07-07T17:29:12.510736
2022-07-04T09:19:33
2022-07-04T09:19:33
180,201,746
0
0
Apache-2.0
2022-07-04T09:17:23
2019-04-08T17:42:24
Java
UTF-8
Java
false
false
33,898
java
/* * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
[ "neenushaji@google.com" ]
neenushaji@google.com
9673353a263784eaf75e76c20ea4612c2a32e3a7
afba7955718844d9a74515168f8bd8e728ec27ba
/src/main/java/eu/matejkormuth/starving/items/drinks/Sprite.java
627c47224530a8790f8906d95c83ebba39a084d8
[ "BSD-2-Clause" ]
permissive
dobrakmato/starving3
5af7dcc0d7391938c4b28e0ac72a78e88a3454b0
fda627c56c657be25ee8c675aabf6bdd4079dab7
refs/heads/master
2022-06-21T21:05:09.492105
2020-10-13T09:01:09
2020-10-13T09:01:09
39,527,933
0
1
NOASSERTION
2022-06-21T00:46:52
2015-07-22T20:11:50
Java
UTF-8
Java
false
false
1,667
java
/** * Starving - Bukkit API server mod with Zombies. * Copyright (c) 2015, Matej Kormuth <http://www.github.com/dobrakmato> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistrib...
[ "dobrakmato@gmail.com" ]
dobrakmato@gmail.com
a6aaa40594f7d677c5ea714a9a264dcc50636516
26f2bd9fd4b182150cc4da95bb58d4362ec216ed
/src/iulie_2018/AutomaticCar.java
821f5ca927d2fa2d2b1f0dfb9c7bbba6d46bcc14
[]
no_license
ot3107487/licenta-oop
56105b927470d0af6522e0aeb534f7096844fd61
4cd380a354cbfcca396a92a5120363d3548b9016
refs/heads/master
2020-06-12T14:18:47.413095
2019-06-28T20:02:02
2019-06-28T20:02:02
194,326,876
0
0
null
null
null
null
UTF-8
Java
false
false
475
java
package iulie_2018; public class AutomaticCar extends Car { private int additionalPrice; public AutomaticCar(int basePrice, String model, int additionalPrice) { super(basePrice, model); this.additionalPrice = additionalPrice; } @Override public int getPrice() { return supe...
[ "Gygabyte12" ]
Gygabyte12
fd41708088c59bc7c73ced57b56219531723b05c
1a55eaebf9af70712ffb4fb662799ec6b312bc29
/AutoWol/src/com/ibus/autowol/ui/NetworkSpinnerAdapter.java
e18f2f8e8937c7a0fc26df6068f8eed9622117c4
[]
no_license
Ib01/autowol
2ee8028f5aa9b6281dac5f2d342d73706b496325
6b6d988504e063405c96c37a0593dd435c0fd884
refs/heads/master
2021-01-19T14:12:40.910139
2014-04-10T23:58:47
2014-04-10T23:58:47
41,653,409
0
0
null
null
null
null
UTF-8
Java
false
false
2,174
java
package com.ibus.autowol.ui; import java.util.List; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.BaseAdapter; import android.widget.SpinnerAdapter; import android.widget.TextView; import com.ibus.autowol.R; import com.ibus.autowol.back...
[ "ib.ross01@gmail.com" ]
ib.ross01@gmail.com
facacb7d1bcf1978ad4c165daa94bd5193f9015b
a6572ef214f1f3a2a548269fec38b8002c1a2f73
/src/main/java/com/socialmedia/demo/service/UserService.java
9f70f69494bbde963abd828b794f0d64dd1f248f
[]
no_license
bortiznine/Social-Media-Project-API
7b8dd4a82232931ed3f31c704dc5583dee02529a
24a41abc0417724e962aa1db5aa556b2144371a2
refs/heads/master
2023-04-28T06:01:48.750039
2021-05-12T14:53:06
2021-05-12T14:53:06
356,338,477
1
2
null
null
null
null
UTF-8
Java
false
false
4,001
java
package com.socialmedia.demo.service; import com.socialmedia.demo.exception.InformationExistException; import com.socialmedia.demo.exception.InformationNotFoundException; import com.socialmedia.demo.model.Request.LoginRequest; import com.socialmedia.demo.model.Request.PasswordRequest; import com.socialmedia.demo.model...
[ "bortiznine@gmail.com" ]
bortiznine@gmail.com
2952fc724334b6d013a6fd94579c036803f002e8
c800aefa78c525f25b014b176e48aeab9181d27d
/src/java/it/csi/portril/portrilweb/frontend/controllers/compilatore/LoginController.java
1fc267d45f245d1cf868288698944230a62213fe
[]
no_license
regione-piemonte/portrilev-portrilweb
6cfe0771c408bc9efad902b20d896341f55e821c
4567e729d9975ec1a91d3e60b3dbd69c7eb55b8d
refs/heads/master
2023-01-03T22:33:08.137380
2020-11-02T13:54:09
2020-11-02T13:54:09
307,353,326
0
1
null
null
null
null
UTF-8
Java
false
false
5,271
java
/* *SPDX-FileCopyrightText: Copyright 2020 | Regione Piemonte *SPDX-License-Identifier: EUPL-1.2 */ package it.csi.portril.portrilweb.frontend.controllers.compilatore; import it.csi.portril.portrilweb.business.interfaces.BusinessGestioneUtentiCompilatori; import it.csi.portril.portrilweb.business.interfaces.compilator...
[ "michele.perdono@csi.it" ]
michele.perdono@csi.it
22483f20953d22c67b4606e785fc18660b0e1ce2
208ba847cec642cdf7b77cff26bdc4f30a97e795
/x/src/main/java/org.wp.x/ui/posts/PostPreviewFragment.java
21cb24079852ad3c5936f45b578b0419764953f9
[]
no_license
kageiit/perf-android-large
ec7c291de9cde2f813ed6573f706a8593be7ac88
2cbd6e74837a14ae87c1c4d1d62ac3c35df9e6f8
refs/heads/master
2021-01-12T14:00:19.468063
2016-09-27T13:10:42
2016-09-27T13:10:42
69,685,305
0
0
null
2016-09-30T16:59:49
2016-09-30T16:59:48
null
UTF-8
Java
false
false
4,943
java
package org.wp.x.ui.posts; import android.app.Fragment; import android.content.Context; import android.os.Bundle; import android.text.TextUtils; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.webkit.WebView; import org.wp.x.R; import org.wp.x.WordPress; imp...
[ "cedric.champeau@gmail.com" ]
cedric.champeau@gmail.com
fb46ee2d2775f7ebaecfd6f912cfab0c4bcf28fd
208ba847cec642cdf7b77cff26bdc4f30a97e795
/m/src/main/java/org.wp.m/widgets/WPSwitch.java
1da3fc83c221ec920ba63d8e9efb32cf6b2ebc68
[]
no_license
kageiit/perf-android-large
ec7c291de9cde2f813ed6573f706a8593be7ac88
2cbd6e74837a14ae87c1c4d1d62ac3c35df9e6f8
refs/heads/master
2021-01-12T14:00:19.468063
2016-09-27T13:10:42
2016-09-27T13:10:42
69,685,305
0
0
null
2016-09-30T16:59:49
2016-09-30T16:59:48
null
UTF-8
Java
false
false
609
java
package org.wp.m.widgets; import android.content.Context; import android.support.v7.widget.SwitchCompat; import android.util.AttributeSet; public class WPSwitch extends SwitchCompat { public WPSwitch(Context context) { super(context); } public WPSwitch(Context context, AttributeSet attrs) { ...
[ "cedric.champeau@gmail.com" ]
cedric.champeau@gmail.com
ae848fe0a97fd258bb46a28f4e330582512a6089
052571a538b9bd721011b309ab2990afd0c46ec7
/src/main/java/com/dici/javafx/components/Resources.java
9d710599bf4eb9fbdb3e7ea48fb51c497cc63a3a
[]
no_license
Dicee/dici-utils
662d36c5325c07cdd54689f52a8cdf71252a329e
2f55b51f1b83709734df46af938c6515655b427a
refs/heads/master
2021-08-06T16:44:59.805366
2020-06-06T19:51:12
2020-06-06T19:51:12
42,023,590
2
0
null
null
null
null
UTF-8
Java
false
false
254
java
package com.dici.javafx.components; final class Resources { public static final String STOP_INACTIVE_ICON = "resources/stopInactive.gif"; public static final String STOP_ACTIVE_ICON = "resources/stopActive.png"; private Resources() { } }
[ "dcourtinot@gmail.com" ]
dcourtinot@gmail.com
afcf7f5665451e8daf8a5b21297b8a1bebb9934a
bb993b12a4a295ee876e1b5a54e82fc309c6f646
/Spring_Demo_Annotations-3/src/org/jay/springannotations/DrawingAppAnnotations.java
15ce68abe94310e3dbe4edf71ce34ffeedbaadc6
[]
no_license
Jayvardhan-Reddy/Spring-Kaushik
e4c55b2c2c407886b61a1663250e013a56ec93f8
52a79f2d28e9a77276aa224c3cd5e0ee0e6f6274
refs/heads/master
2020-03-27T12:23:58.302748
2018-08-29T06:07:58
2018-08-29T06:07:58
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,520
java
package org.jay.springannotations; import org.springframework.context.ApplicationContext; import org.springframework.context.support.AbstractApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class DrawingAppAnnotations { public static void main(String[] ar...
[ "33086172+Jayvardhan-Reddy@users.noreply.github.com" ]
33086172+Jayvardhan-Reddy@users.noreply.github.com
90d445c5a6cbf20c86a8ed5fcc46edc791e3212d
2ca21159209a8e6e37fcc5eecd53770898eb302c
/src/main/java/org/apache/solr/explorer/client/core/manager/solr/search/DefaultSearchManager.java
644d417ac5d74fc8f26617ea8130d3b63b3fff6c
[ "Apache-2.0" ]
permissive
renovate-bot/cominvent-_-solr-explorer
c75776c55189eff2722706dbcccbd37baac750cd
c3192d744da3877ec4b90f0b4ebef16ecf1578c9
refs/heads/master
2023-03-20T03:08:50.593493
2013-03-03T23:52:13
2013-03-03T23:52:13
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,083
java
/* * Copyright 2011 SearchWorkings.org * * 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...
[ "jan.git@cominvent.com" ]
jan.git@cominvent.com
af3cf84c373efe63ced70beb1a4d4e36185e5145
df143b78aa9bebd416c8e0c207c6de558178d777
/bootweb/trunk/bootweb-websocket/src/main/java/com/example/bootweb/websocket/config/WebSocketConfig.java
548c0d50d11877b4e70277d06a18ebd32ad49fa0
[ "MIT" ]
permissive
121666751/xplus
82b1f208f801a19be0759405f2038332add9d18f
b1fc1b8fcc6886da1e15e3ff559d4659d627c2a1
refs/heads/master
2021-08-19T20:54:04.338427
2017-11-27T10:57:42
2017-11-27T10:57:42
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,003
java
package com.example.bootweb.websocket.config; import org.springframework.context.annotation.Configuration; import org.springframework.messaging.simp.config.MessageBrokerRegistry; import org.springframework.web.socket.config.annotation.AbstractWebSocketMessageBrokerConfigurer; import org.springframework.web.socket...
[ "huxiong888@163.com" ]
huxiong888@163.com
a65eb3ca9d7f89f885ce9de3c2e8ce9cadbd06c1
a75abb3100b46707dc9ec0a6ce33d4f61487b10b
/src/main/java/edu/berkeley/path/next/TestDisruptor/RunTest.java
7d79b5afb8e4cde6aeb1aef1758c1e37b93d879f
[]
no_license
MauriceManning/ReactorDisruptorProto
c6bde52735616de3c40161270d497fa57ac208cd
5aaa4d536f431d5b13a738201f501f5bc4956e29
refs/heads/master
2021-01-22T14:33:39.073008
2015-03-12T18:41:27
2015-03-12T18:41:27
32,094,959
0
0
null
null
null
null
UTF-8
Java
false
false
1,699
java
package edu.berkeley.path.next.TestDisruptor; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.sp...
[ "maurice.manning@gmail.com" ]
maurice.manning@gmail.com
eba45da665fdd30e467cee9834b6ea66f48a90a2
b6d8de40417600ab0d0f56bf0532d25c8ab32244
/SimpleAlgo/src/algo1213/Code03_PolynomialC.java
35e37160b6ef963268a9ed055a720c14ee9865b3
[]
no_license
Hoan1993/DailyAlgo
54cc201299f95ee4e4ee2102924110295597abc2
a46c5eb1857dc462cd792133371fe39fdc10728d
refs/heads/master
2021-02-04T16:42:56.766440
2020-03-29T11:46:00
2020-03-29T11:46:00
243,687,746
0
0
null
null
null
null
UTF-8
Java
false
false
129
java
package algo1213; public class Code03_PolynomialC { char name; Code03_Term [] terms = new Code03_Term[100]; int nTerm = 0; }
[ "sist@DESKTOP-3J6RDRE" ]
sist@DESKTOP-3J6RDRE
a96c1ada85178e257d4d7a862531db7585410e85
23b844665678da29bf60125a7db7787762213384
/app/src/main/java/com/dhcc/visa/ui/view/user/ForgetPwdFragment.java
3143a2b793734f87fc1c19671f2a28aa62b73423
[]
no_license
TonyLituo/VisaVer1
fb190e51a84ab410f8d775e2d22cb9d9234f709f
779d7edfa65123fe807225f266039e60697fa67c
refs/heads/master
2021-01-19T07:15:14.342835
2017-04-07T09:51:02
2017-04-07T09:51:02
87,531,189
0
0
null
null
null
null
UTF-8
Java
false
false
159
java
package com.dhcc.visa.ui.view.user; /** * Created by Lituo on 2017/4/6 0006. 13:06 . * Mail:tony1994_vip@163.com */ public class ForgetPwdFragment { }
[ "1439804563@qq.com" ]
1439804563@qq.com
ee7ccef9aefcdbee24bb34c81557876919490b38
507760aa49344b087af3cc1c266a5b60a7b66533
/src_test/com/alex/http/activity/GetTestActivity.java
f951d835b3ba3d41a7f4a2b2cc39f708d4f307c5
[]
no_license
luxudonge/android-ahttp
aed95ad47d3a2d51b2ede833bf49d65254e4c01c
f543d9ba64fbe986afe5dd8a60d371f4af4a5bd1
refs/heads/master
2020-05-18T21:35:32.379613
2013-11-15T09:27:55
2013-11-15T09:27:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,234
java
package com.alex.http.activity; import android.app.Activity; import android.app.ProgressDialog; import android.content.DialogInterface; import android.content.DialogInterface.OnCancelListener; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; im...
[ "luxudonge@gmail.com" ]
luxudonge@gmail.com
ef1fb7753af44ae67cb9763de1fbc605b18fde54
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/9/9_21ea110a6c347d7563676e26a817391e7f3d4867/PojoTest/9_21ea110a6c347d7563676e26a817391e7f3d4867_PojoTest_t.java
458354a7c55d58e15b43f2b039b1a783b52c8fb2
[]
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,398
java
package net.java.messageapi; import static org.junit.Assert.*; import java.util.ArrayList; import javax.xml.bind.annotation.XmlElement; import net.java.messageapi.pojo.Pojo; import net.java.messageapi.pojo.PojoProperty; import org.junit.Test; import com.google.common.collect.Lists; public class P...
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
60d717d11d60ee2bc3cd41dab0bd8a203450222d
0bff529c184813c9d38e67287dc09314679ea150
/components/registry/org.wso2.carbon.registry.admin.api/src/main/java/org/wso2/carbon/registry/admin/api/resource/ICustomUIService.java
6750db03aaf83bd40eba9c8ceb6eb8f6e803df42
[ "Apache-2.0" ]
permissive
wso2/carbon-registry
06083122c9f56bc82d917cbea2baad6c64d78757
16d853878e79b833e17842c24eda684d6ac5684a
refs/heads/master
2023-09-05T02:46:42.536411
2023-07-27T06:26:02
2023-07-27T06:26:02
16,100,959
44
195
Apache-2.0
2023-08-10T04:37:32
2014-01-21T11:42:25
Java
UTF-8
Java
false
false
1,420
java
/* * Copyright (c) 2005-2009, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at * * http://www.ap...
[ "eranda@wso2.com" ]
eranda@wso2.com
02c4b02387cee166e9f563809d0db806ca222d34
a1256217535e3dfa0b167d5ecb22ea9154f10654
/src/design/pattern/visitor/Employee.java
c9ceb0c69b3e2be6861114ab49c0535dba495976
[]
no_license
GradyX/demo
dfc21b3ab1f79675fc76b6b85b64316eb4c6ef49
1a943959e7630826ef727c02178df209feb4c1ac
refs/heads/master
2020-04-11T02:52:09.160683
2019-04-22T08:47:16
2019-04-22T08:47:16
156,525,995
0
0
null
null
null
null
UTF-8
Java
false
false
569
java
package design.pattern.visitor; public abstract class Employee { public abstract void accept(Department handle); } class FulltimeEmployee extends Employee { public void accept(Department handle) { // TODO Auto-generated method stub System.out.println("full time employee"); handl...
[ "GTinker@163.com" ]
GTinker@163.com
5171292a041eb93de7beb2481c1d2cbfebb218ca
677f7dbceb78f9b256ffb2577042754450513efc
/code-blocks-designpattern/src/main/java/org/code/blocks/designpattern/j2ee/frontcontroller/FrontController.java
463383b3c8d1448e159011bd46886eb6330157eb
[]
no_license
darwindu/code-blocks
d36e2b0461e51f578b8d3c03b6f24812f0b9c324
6a7ee29763f8ee4d9a2d250b2f23d81876c08904
refs/heads/master
2022-11-15T11:09:51.622257
2022-11-09T06:16:34
2022-11-09T06:16:34
184,182,317
3
3
null
null
null
null
UTF-8
Java
false
false
773
java
package org.code.blocks.designpattern.j2ee.frontcontroller; /** * @author darwindu * @date 2019/12/11 **/ public class FrontController { private Dispatcher dispatcher; public FrontController(){ dispatcher = new Dispatcher(); } private boolean isAuthenticUser(){ Syst...
[ "252921602@qq.com" ]
252921602@qq.com
8c605216fa9de6cd6f4cf417231a174f73124c91
12b0cf9f35e9b426c009089311efc2a88f12eebb
/src/main/java/com/vot/ahgz/config/mybatisConfig.java
b8b5159cbe9fdc1059dd8a918e6cb50fb933b2e0
[]
no_license
renliyun/ahgz
8febc9d7b1eb8c13a59047e00093cc0d2ba4138f
0f6e38f073862aa6d2f3d8b28c986ae18df77b7f
refs/heads/master
2023-04-16T21:48:08.372742
2021-02-26T09:20:36
2021-02-26T09:20:36
319,641,664
0
0
null
null
null
null
UTF-8
Java
false
false
238
java
package com.vot.ahgz.config; import org.mybatis.spring.annotation.MapperScan; import org.springframework.context.annotation.Configuration; @Configuration @MapperScan(basePackages = "com.vot.ahgz.mapper") public class mybatisConfig { }
[ "renliyun@live.cn" ]
renliyun@live.cn
0f374caa46e858c14beb71b46bc66dc32c53067f
03643772e2186b06a4742ea765a7568d9efce01b
/src/main/java/exceptions/UselessException.java
42f3c0b7208bff3261d1400f19aec6f40a8e6097
[]
no_license
redwarewolf/uselessui
5717ae30397421980a12cf9ba0215fbf0df28894
5b3dad666a10924863abeb9407c8c364faa1f1fe
refs/heads/master
2020-04-30T12:28:39.315280
2019-03-20T22:36:47
2019-03-20T22:36:47
176,827,467
0
0
null
null
null
null
UTF-8
Java
false
false
233
java
package main.java.exceptions; public class UselessException extends RuntimeException { private static final long serialVersionUID=-6970046309270823472L; public UselessException(String message) { super(message); } }
[ "pedro.jara@wolox.com.ar" ]
pedro.jara@wolox.com.ar
6a65edd714261fe7176aac0b92b09c1c98dcdf11
7245264294a62f36fecff4a48b0234f08c655a54
/app/src/main/java/com/project/reader/ui/widget/utils/ViewUtils.java
6cb75f0ee07e75e1ab048f796dbf3bdae5c9958e
[]
no_license
Tghoul-b/SimpleReader
a9a84ba32d3bf7ae69f5cab2e66f2d3958d0697c
c391673b4108e5baac25d3a5239807c184dc3b17
refs/heads/master
2023-08-13T05:48:27.773551
2021-10-11T03:27:14
2021-10-11T03:27:14
353,972,364
1
0
null
null
null
null
UTF-8
Java
false
false
724
java
package com.project.reader.ui.widget.utils; import android.view.View; /** * Created by anlia on 2017/12/12. */ public class ViewUtils { /** * 测量、设置View默认宽高 * @param defaultSize * @param measureSpec * @return */ public static int measureSize(int defaultSize,int measureSpec) { ...
[ "917602350@qq.com" ]
917602350@qq.com
6eeac1b3c3060004c14a2c43567999415fac5e7d
e3f23416903d0d72d23c4e76e6e6a6dd8498fafd
/app/src/main/java/sy/bishe/ygou/delegate/friends/contanct/ContanctDelegate.java
747d17edbf6e96896ccf6b5db7aafd55861b2403
[]
no_license
lbc111/ygou-client
90b78f08fcf046597cfcd367f072f1adcc17607e
df8c4957d8b7b4229f06bfa9e9476b663542f995
refs/heads/master
2023-03-22T08:48:47.184222
2020-06-16T11:53:48
2020-06-16T11:53:48
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,685
java
package sy.bishe.ygou.delegate.friends.contanct; import android.annotation.SuppressLint; import android.graphics.Color; import android.os.Bundle; import android.util.Log; import android.view.View; import androidx.annotation.Nullable; import androidx.appcompat.widget.AppCompatImageView; import androidx.appcompat.widge...
[ "shenyi_97@163.com" ]
shenyi_97@163.com
3feb2c25eeb7af409bb3a76d94e1372fe821ab4a
bfdc22f1e2cecf0198107ae9e36dad14ef3d2f74
/com.tsekas.metamodel.tests/src/language/foundation/relationship/tests/RelationshipExample.java
46370fdb695d3e1efe225865d2bf630471e6a3ca
[]
no_license
zoetsekas/xenia
e12dac6a5e3866643f7b6a1262f6569f71823516
4e34999fb8e35f3dbf142fd817e9631133ad5ee2
refs/heads/master
2021-01-01T04:29:20.366377
2018-06-05T12:05:01
2018-06-05T12:05:01
57,205,185
0
0
null
null
null
null
UTF-8
Java
false
false
3,297
java
/** */ package language.foundation.relationship.tests; import java.io.File; import language.foundation.relationship.RelationshipPackage; import org.eclipse.emf.common.util.Diagnostic; import org.eclipse.emf.common.util.URI; import org.eclipse.emf.ecore.EObject; import org.eclipse.emf.ecore.resource.R...
[ "Zoe@192.168.1.72" ]
Zoe@192.168.1.72
4d09618b93a0468f851b8c2045967ab657186c33
cf246306708d4293dfd0a68bb66ebd4ecbacd814
/src/com/company/Main.java
9f95cc5dbf9668ad6a25e8274d93ecbc74e94d7a
[]
no_license
armashkaise/Example
20502aeda50bd7a3976f7879267b77bec2b7c8a0
668aef8cd6f606ffd4228dd6e72694b32a1f525a
refs/heads/master
2020-09-14T06:53:50.808764
2019-11-21T00:55:06
2019-11-21T00:55:06
223,056,521
0
0
null
null
null
null
UTF-8
Java
false
false
425
java
package com.company; public class Main { static int i=5; int j; static{ System.out.println("static inicializer"); } { System.out.println("inicializer"); } Main(){ i++; System.out.println("constructor"); } static void method(){ System.out.println("static method"); } public static void main(Strin...
[ "forts912@gmail.com" ]
forts912@gmail.com
e5b99a1548ae92baad6a1850c08b471e9218c15e
43c8072646f4b67baa117d40c92461e3d7c009a7
/src/main/java/com/testamq/config/JmsConfiguration.java
dad8cbfd1a04c714daecf5ddd07ac52d77a972f3
[]
no_license
wifior/amqdemo
6f5f6cef8aa1dad599bba94419695d11e61375d2
423ae892fee3dd7e1a2f511c8f00c83dad074784
refs/heads/master
2021-07-07T22:35:33.359339
2019-07-13T07:26:00
2019-07-13T07:26:00
196,691,901
0
0
null
2020-10-13T14:33:22
2019-07-13T07:24:44
Java
UTF-8
Java
false
false
2,371
java
package com.testamq.config; import org.apache.activemq.ActiveMQConnectionFactory; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import...
[ "45944979@qq.com" ]
45944979@qq.com
3d8a7d526ee487c2566f689692aee77dedaee271
719ce6eb26de83a335025a764e6219705deea13d
/MRU/src/main/java/x3/player/mru/surfif/messages/SurfMsgToolInf.java
78d93d45a5e1e70bdfeb1a769caf240fd99552d5
[]
no_license
tonylim01/MSF-MF
2afce43ed4f13ccbed905dce895ebbd488709c3b
ee7b59a3888c1143ad57668550d2cff28a5cd685
refs/heads/master
2020-04-07T12:10:00.833983
2018-07-17T01:52:53
2018-07-17T01:52:53
158,356,440
0
0
null
null
null
null
UTF-8
Java
false
false
778
java
package x3.player.mru.surfif.messages; import com.google.gson.annotations.SerializedName; public class SurfMsgToolInf { public static final String MSG_NAME = "tool_inf"; @SerializedName("inf_type") private String infType; @SerializedName("tool_id") private int toolId; @SerializedName("app_in...
[ "Lua@Seungwooui-MacBook.local" ]
Lua@Seungwooui-MacBook.local
7a14bbc41aa475035d7ba3f81c85e8f63ca34134
156d0ebf112982d5dfd3f42d9a0f33a6ef19fa41
/DesgnPatterns/observer-pattern-app/src/com/techlabs/observer/frames/test/TestWelcomeFrame.java
2c7f439edf669acec91863c130ab82b86c991c2c
[]
no_license
pratikchaurasia/Swabhav-techlabs
a822f2e1360c2477dcf22af66c93364c125a30e5
a9772837af88741cbc101f7295c8c40e42823f77
refs/heads/master
2018-10-22T17:04:19.077601
2018-07-22T15:47:58
2018-07-22T15:47:58
119,146,314
0
0
null
null
null
null
UTF-8
Java
false
false
220
java
package com.techlabs.observer.frames.test; import com.techlabs.observer.frames.WelcomeFrame; public class TestWelcomeFrame { public static void main(String args[]){ WelcomeFrame welcome = new WelcomeFrame(); } }
[ "pratikchaurasia@outlook.com" ]
pratikchaurasia@outlook.com
60d6efba815acbedf037c037c9313a987cc93132
cd634c1aa04653b3a6ce9712b90aeb1aefe7f5b2
/src/com/imooc/drdc/action/StudentAction.java
e6d617ae12871d44f172f6879f292408e6249a79
[]
no_license
wujunyucg/WebExcel
a3e1e791b9d9120557079ee4a182693d9f9595e7
b6bc8f6dba15c2224ef92591528fd02941813c75
refs/heads/master
2020-05-25T20:27:45.755604
2017-03-02T14:21:02
2017-03-02T14:21:02
83,686,140
1
0
null
null
null
null
GB18030
Java
false
false
3,993
java
package com.imooc.drdc.action; import java.io.IOException; import java.io.UnsupportedEncodingException; import java.lang.reflect.Method; import java.util.List; import javax.servlet.ServletOutputStream; import javax.servlet.http.HttpServletResponse; import net.sf.json.JSONArray; import org.apache.poi.hss...
[ "1318543125@qq.com" ]
1318543125@qq.com
ac955b7e90735818f7e6b6cb613f96710b59515a
fdc5c96351aaaadfca1aade7cb3fe04c3829333c
/app/src/main/java/com/dat/barnaulzoopark/ui/animals/animalsfragment/AnimalsFragment.java
a1a16a97a62022ee328bc3b677e5e2d2cf4af810
[]
no_license
jintoga/Barnaul-Zoopark
b5689058ab365961e63059d3f7f687d728ad2802
a2280cc4e601afae92e391f68b5365a123423d2f
refs/heads/master
2021-04-18T23:45:51.146694
2017-06-07T17:31:41
2017-06-07T17:31:41
50,792,159
1
0
null
null
null
null
UTF-8
Java
false
false
6,607
java
package com.dat.barnaulzoopark.ui.animals.animalsfragment; import android.os.Bundle; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.support.design.widget.AppBarLayout; import android.support.design.widget.CoordinatorLayout; import android.support.design.widget.Tab...
[ "jintoga123@yahoo.com" ]
jintoga123@yahoo.com
6484677728a8b329b6091ee83ee496ec3733038b
b5153be915d94d1232a4fdebf1464b50809c361a
/src/main/java/com/amazonaws/services/ec2/model/transform/CreateDhcpOptionsRequestUnmarshaller.java
a9eb76552049cc3521ce860077dddb6de4da5c88
[ "Apache-2.0" ]
permissive
KonishchevDmitry/aws-sdk-for-java
c68f0ee7751f624eeae24224056db73e0a00a093
6f8b2f9a3cd659946db523275ba1dd55b90c6238
refs/heads/master
2021-01-18T05:24:52.275578
2010-05-31T06:20:22
2010-05-31T06:20:22
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,492
java
/* * Copyright 2010 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "licens...
[ "aws-dr-tools@amazon.com" ]
aws-dr-tools@amazon.com
8c9a77ca3d401aad040e4070287df6bf076aa1dd
0a5e76f8d32fb9fa1361073b5880040e88c62555
/src/main/java/com/juma/vms/manage/transport/controller/TransportController.java
15995f223488d51e8e6b73c43318d78735a4ffac
[]
no_license
SunGitShine/vms-manage
9ec6a23cc2ddff0736bad4ece89938b8d96c4585
13d9512cef8baa637e48316c115a0d5e373848d2
refs/heads/master
2022-07-22T00:25:57.724361
2019-08-22T09:52:29
2019-08-22T09:52:29
203,765,012
0
0
null
2022-06-29T17:35:42
2019-08-22T09:51:19
Java
UTF-8
Java
false
false
4,042
java
package com.juma.vms.manage.transport.controller; import java.util.List; import java.util.Map; import javax.annotation.Resource; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.spri...
[ "xieqiang02@jumapeisong.com" ]
xieqiang02@jumapeisong.com
f6dcdf81d8338517948f2b59a4c720b6ba0a257f
03655b44af133192a3fc728020205248b523efb2
/Problems/Vowel or not/src/Main.java
47085fa2bc3f518b2ce5268299af85db8f32be3a
[]
no_license
ivanovatata/Simple-Chatty-Bot
5d3953ec0b40d391f078a52bac2b98caeefdde3d
74b990956acd66a22f7f1aa50e9e0079209bed11
refs/heads/master
2022-11-10T02:02:23.949157
2020-06-19T19:11:43
2020-06-19T19:11:43
273,566,623
0
0
null
null
null
null
UTF-8
Java
false
false
564
java
import java.util.Scanner; public class Main { public static boolean isVowel(char ch) { String vowels = "aeiouAEIOU"; for (int i = 0; i < vowels.length(); i++) { if (ch == (char) vowels.charAt(i)) { return true; } } return false; } /*...
[ "testmail@email.com" ]
testmail@email.com
48d285fe3d70780cb77f6a5eabfebdd361ca964d
f3e53ba76eedb08056c550ea1eb01b5e021aa96f
/app/src/main/java/com/syl/androidauthoritativeguide/module/TrueFalse.java
5c3ea467d7be5a20e38ac294569db868756615e6
[]
no_license
Icarours/AndroidAuthoritativeGuide
7ebdb0ba26dc1d7a1baca5152b0249d0b3362c61
e3e03401258d14e41c7457bcfe3cd3f0664aade3
refs/heads/master
2021-05-16T13:57:29.491429
2018-01-18T00:04:09
2018-01-18T00:04:09
117,907,735
0
0
null
null
null
null
UTF-8
Java
false
false
626
java
package com.syl.androidauthoritativeguide.module; /** * Created by Bright on 2018/1/16. * * @Describe * @Called */ public class TrueFalse { private int mResId; private boolean mDefaultVale; public TrueFalse(int resId, boolean defaultVale) { mResId = resId; mDefaultVale = defaultVale;...
[ "j376787348@163.com" ]
j376787348@163.com
81716b8682dd3d1e0325b6c834a4f20851d0bd16
cb3f0944c24d16f72b6ac5ccf1a8d8f8c001b20e
/app/src/main/java/com/shhb/supermoon/pandamanager/model/PhoneInfo.java
79acd657051a926bd7dc8e02ff9ee65f26c7350a
[]
no_license
istaru/PandaManager
aa7206d7200e752858172ce7d4b45dd89525a346
62710fab76ca8b386ccfcf247443c358aee772fa
refs/heads/master
2020-04-07T06:59:03.671933
2018-03-07T09:19:12
2018-03-07T09:19:12
124,190,767
0
0
null
null
null
null
UTF-8
Java
false
false
10,585
java
package com.shhb.supermoon.pandamanager.model; import android.app.Activity; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; import android.net.wifi.WifiInfo; import android.net.wifi.WifiManager; import android.telephony.TelephonyManager; import com.alibaba.fastj...
[ "979903291@qq.com" ]
979903291@qq.com
b78ab4dea19914f2f8664130b5d7157f053d3ee9
7f41c1ded184a2653a23d4a061e3e492dccfe27e
/src/main/java/UserInputNumbers.java
52d98fd0e92342ccb2c4b79e50b94bdd71a4c2a8
[]
no_license
chrisrappa/java_unity_section5exercises
050a0b374b9b3a04d9e1bcbe5f6bd5c50df05fd4
b1f9212917197a7d8cde2da3df78a9e87945f137
refs/heads/main
2023-06-08T07:30:00.670962
2021-06-28T21:42:20
2021-06-28T21:42:20
379,637,434
0
0
null
null
null
null
UTF-8
Java
false
false
618
java
import java.util.Scanner; public class UserInputNumbers { public static int SumInputNumbers() { int sum = 0; int counter = 0; int numInputs = 10; Scanner scanner = new Scanner(System.in); while(numInputs > 0){ counter += 1; System.out.println(MessagePrompt(counter)); int in...
[ "christianrappa@rappac-a01.vmware.com" ]
christianrappa@rappac-a01.vmware.com
6d1c672eac0e81181cedce0dec0e712874765175
a136b56fee37bd19a054d0056118a4eaf9411e04
/app/src/main/java/org/ualr/mobileapps/sneakercalendar/ui/signup/SignupFormState.java
3d56576dfa15833c3816b42ade895a71c843d25c
[ "MIT" ]
permissive
Matthewaj/MobileAppsFinal
9c6c1d5830bd16c9c7f25c75492cb1e8045c9cce
b458f160b24d99e0b1eee8c61fb0ece861edd07c
refs/heads/main
2023-02-07T09:54:25.725000
2020-12-15T13:58:15
2020-12-15T13:58:15
318,353,209
0
0
MIT
2020-12-04T00:04:22
2020-12-04T00:04:21
null
UTF-8
Java
false
false
884
java
package org.ualr.mobileapps.sneakercalendar.ui.signup; import androidx.annotation.Nullable; public class SignupFormState { @Nullable private final Integer usernameError; @Nullable private final Integer passwordError; private final boolean isDataValid; SignupFormState(@Nullable Integer usernam...
[ "denver@dsl-leapbox" ]
denver@dsl-leapbox
480553e426b0b74d431b1316eaf1950fab29b03c
5f600b70069114f80e0275980c1aac72686467b5
/webappproject/src/com/example/myNewProject/client/Webappproject.java
41bf823211fbb16d2063db8da42c4d39c193de0e
[]
no_license
bennimo/newwebapp
c8e6714e123d61ecdb1e8e3ee37830b3900bc7dd
22b8c9956b2302800f91c9f9c06d87333c988c4a
refs/heads/master
2021-01-20T20:07:52.647640
2016-06-30T11:32:42
2016-06-30T11:32:42
62,245,633
0
0
null
null
null
null
UTF-8
Java
false
false
1,792
java
package com.example.myNewProject.client; import com.example.myNewProject.shared.FieldVerifier; import com.google.gwt.core.client.EntryPoint; import com.google.gwt.core.client.GWT; import com.google.gwt.event.dom.client.ClickEvent; import com.google.gwt.event.dom.client.ClickHandler; import com.google.gwt.even...
[ "bennjanii@yahoo.com" ]
bennjanii@yahoo.com
92546eaf62707223416b657c4471e7f59050dd86
4298ee51eac5fe0d05497a9b046a0089aeceffa7
/app/src/main/java/nik/com/insta/Utils/UserListAdapter.java
6b9b08998abd0caccc994561638a2bfc9d23f1d4
[]
no_license
cmFodWx5YWRhdjEyMTA5/Instagram-Clone
1b5a473c66523476c365fd816c0903405577c7ff
afc358036f9813f9bb2403ef96e69d51a2c6580f
refs/heads/master
2020-03-30T04:56:07.173348
2017-09-24T08:47:07
2017-09-24T08:47:07
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,625
java
package nik.com.insta.Utils; import android.content.Context; import android.support.annotation.LayoutRes; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import a...
[ "ravipatel84184@gmail.com" ]
ravipatel84184@gmail.com
172608a80e47a4500ba18d5f44cbe93b26077f56
0b0c91fee0976a0ce13fb2a870db35cfe72ea8e8
/src/compiladordibujos/Rectangulo.java
dc15ab61c3721fd634724e2c2bc7436135abf560
[]
no_license
Manuel-Angel/AnalizadorSintactico
d8d80411ff14a6b710491815a9067ab7ce1cdd21
7f67dd75c21d4b525f746e2c05382d2c3dd0c011
refs/heads/master
2020-12-28T00:02:09.310729
2015-01-07T01:27:45
2015-01-07T01:27:45
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,288
java
package compiladordibujos; import java.awt.Color; import java.awt.Graphics; class Rectangulo implements Dibujable{ private boolean fondo; private int x; private int y; private int ancho; private int alto; private Color color; public Rectangulo(){ ...
[ "ingluisperez.m@outlook.com" ]
ingluisperez.m@outlook.com