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
4935cb5becce2a94110a95a5c069b9bdf44f103e
de265f93fb8e487d644bd7ab477bead552a96a37
/java/p072.java
174b3711c068e5e2024ab714f5b9342e4cd2ce91
[]
no_license
deepdc19/euler
5d114af7b1d0895ae9280e0b8335b73926a548cf
28f5230b6176770c7fd3e5c685467492b00601ff
refs/heads/master
2021-01-18T03:54:42.926400
2017-02-24T15:45:50
2017-02-24T15:45:50
85,776,206
0
0
null
null
null
null
UTF-8
Java
false
false
442
java
/* * Solution to Project Euler problem 72 * */ public final class p072 implements EulerSolution { public static void main(String[] args) { System.out.println(new p072().run()); } private static final int LIMIT = Library.pow(10, 6); public String run() { long sum = 0; int[] totients = Library.li...
[ "deepdeep.ac@gmail.com" ]
deepdeep.ac@gmail.com
b9bb1152ed4c1630e87820ec7ee56c83442c2ccb
e2980ceba7a60bf6b37a84d00ca582c96e67c1e6
/src/main/java/com/eickstaedtdjessica/workshopmongo/config/Instantiation.java
2a9344ae30bcd3115c4be2a52199e56443aeba09
[]
no_license
Djessica/workshop_spring_mongo
b5af5f71d61183e0cee9839b5175e63a408ce6ec
08c73342f8d5c804de91bc00c9e76015fbf6b7b2
refs/heads/master
2020-05-31T19:48:44.157625
2019-07-10T20:53:52
2019-07-10T20:53:52
190,461,848
0
0
null
null
null
null
UTF-8
Java
false
false
2,169
java
package com.eickstaedtdjessica.workshopmongo.config; import java.text.SimpleDateFormat; import java.util.Arrays; import java.util.TimeZone; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.CommandLineRunner; import org.springframework.context.annotation.Configuration; im...
[ "djessica.eickstaedt@compasso.com.br" ]
djessica.eickstaedt@compasso.com.br
62847f5da162e46bb39daa88e1378b80c1900b58
5483be3ef33f55b865aff5813d673a4ab7c8e187
/src/main/java/com/example/SpringCRUDUpdate/entity/CustomErrorType.java
e4e6bff37bb025ea23c1e91dcd0577db4219b262
[]
no_license
Mtt-linh/ExamIASF
a3f152a2fc2ad6f50828e9cd681511a8e538304f
3b6f70f54f5841f3ad040d6a7ea12a2bc50f5cc7
refs/heads/master
2023-04-01T06:57:00.341055
2021-04-02T03:30:01
2021-04-02T03:30:01
353,872,223
0
0
null
null
null
null
UTF-8
Java
false
false
285
java
package com.example.SpringCRUDUpdate.entity; public class CustomErrorType { private String errorMessage; public CustomErrorType(String errorMessage) { this.errorMessage = errorMessage; } public String getErrorMessage() { return errorMessage; } }
[ "maithuylinh2196@gmail.com" ]
maithuylinh2196@gmail.com
7fb7a870ca2d5b0f17e28a1b7de5e58c3e44def4
f4bc229c9afba3d2cee7b084abd42a5e3d06618b
/TimeTableGenerator/src/com/company/Division.java
a2525f5bc4ed1cd313174a35045cc6810309ff96
[]
no_license
Varun-Jethanandani/AutomaticTimeTableGenerator
bc8c33566f9ae23c7b7aeab081af3961622ca05f
dac149ad2afecec1b416c5faf9a573ffdbed36f8
refs/heads/master
2021-07-11T17:29:32.964609
2020-07-08T02:45:56
2020-07-08T02:45:56
173,763,090
1
0
null
null
null
null
UTF-8
Java
false
false
2,305
java
import java.util.Map; import java.util.ArrayList; import java.util.Random; import java.util.Set; import java.util.HashMap; public class Division{ String divisionName; public ArrayList<Subject> subjectList; String startTime; Map<Subject,Teacher> divSubTeacher; private Map<Teacher,Integer> subjectTeacher...
[ "varunjhd@gmail.com" ]
varunjhd@gmail.com
0095dac83e4e18d52bd8962b82a84ac38133d228
4f46ebe5e05645dc6a4a34a45d8ce60c08c74c57
/AccessSpecifiersTutorial/src/accessSpecifiersTutorial/PublicClassExample.java
676051727ca80d00c4a14268fe8be51f64f97f80
[]
no_license
VinuthCS/TekAndCo-Git
e533810e5250e09a08dc5667d7097f9857240235
27792a54953721ea51809c07eb9fd294db221347
refs/heads/master
2021-01-02T19:58:18.787823
2020-02-28T03:58:51
2020-02-28T03:58:51
239,777,149
0
0
null
null
null
null
UTF-8
Java
false
false
556
java
package accessSpecifiersTutorial; public class PublicClassExample { /*** * This class is used to demonstrate the scope of public * data member and method ***/ //Creating a private data member of type String public static String publicString = "Public Member of PublicClassExample"; //Creating a public me...
[ "vinuthcs90@yahoo.com" ]
vinuthcs90@yahoo.com
68ce3d8ce0b60956ade1347369582025742f281c
4193b23b6f01af0380c3fd2ef659400d432da2f1
/src/main/java/constant/MoveStatus.java
c38747c55e2876c7733ee91b9b8687b0eef5e47b
[]
no_license
erin0331/java-racingcar-precourse
f64c7f1639a04a993ed4916ae27c4e205f552113
086bc24082c58e82148726d2d825e921e99a4daa
refs/heads/master
2023-04-16T08:31:41.801829
2021-05-03T15:35:13
2021-05-03T15:35:13
362,803,557
0
0
null
2021-05-03T15:35:14
2021-04-29T12:06:11
Java
UTF-8
Java
false
false
109
java
package constant; public enum MoveStatus { STOP, GO; public boolean isGone() { return this == GO; } }
[ "ldmswjdl@naver.com" ]
ldmswjdl@naver.com
91d1a488e38e417643fe54d913de1f6753d0df9d
790462d83341c9a8e051f0b548078201165c7c75
/src/main/java/com/ks/hrms/core/context/DoSystemContext.java
5a3032b2e0736a2d09715d23715b09f8f762c4dd
[]
no_license
ModelKaiSir/HousingRentalMS
2eafc822e741ecd38f18b8bb8986137309c9c9e2
9b385c7339f7fe9958d2f935ff8692715b440d46
refs/heads/master
2022-12-22T00:48:20.841078
2019-10-25T10:59:35
2019-10-25T10:59:35
189,582,222
0
0
null
2022-12-16T08:00:29
2019-05-31T11:21:19
Java
UTF-8
Java
false
false
1,437
java
package com.ks.hrms.core.context; import com.ks.hrms.dao.SystemDao; import javafx.beans.property.SimpleStringProperty; import org.springframework.beans.factory.annotation.Autowired; public abstract class DoSystemContext implements AppContext{ static final String DEF_VER = "1.0.1"; protected SimpleStringProp...
[ "1028449330@qq.com" ]
1028449330@qq.com
0e06860f200f9f76c6cd1ab60a9f3462e0b71a36
0d80f3761882447faab4f419ad994fad3e27004b
/app/src/main/java/com/allintask/lingdao/ui/activity/user/AboutUsActivity.java
cca964be712e1f4f7f6dd2fa2270f1cf61b552c3
[ "Apache-2.0" ]
permissive
TanJiaJunBeyond/Allintask
f60330fb955bad704b30bfec250f67bccb0a039f
aa8e3ab7c2615e135f12a6a71cf7e5a9c297717d
refs/heads/master
2020-07-05T19:03:51.593867
2019-11-23T18:37:34
2019-11-23T18:37:34
202,739,684
5
2
null
null
null
null
UTF-8
Java
false
false
2,243
java
package com.allintask.lingdao.ui.activity.user; import android.graphics.Rect; import android.support.v7.widget.RecyclerView; import android.support.v7.widget.Toolbar; import android.view.View; import android.widget.TextView; import com.allintask.lingdao.R; import com.allintask.lingdao.presenter.user.AboutUsP...
[ "1120571286@qq.com" ]
1120571286@qq.com
b9ac530f6017c6a54c42a629be49a417825586a7
ba3077de3a763e1e0fa06f53fd299b1fa768aaac
/src/main/java/com/github/liaochong/myexcel/core/XSSFSaxReadHandler.java
3c69aaf819867f1363be600e1c6212e22d6566c6
[ "Apache-2.0" ]
permissive
liaochong/myexcel
0a5af43f0611afcd551a7f884d18d2aa5cd92b94
35ecd885a07fa6a4b91bf8c98ecf531cad8734f0
refs/heads/master
2023-08-05T05:09:29.996472
2023-07-29T06:38:49
2023-07-29T06:38:49
113,136,737
1,599
337
Apache-2.0
2023-07-28T10:39:43
2017-12-05T05:25:20
Java
UTF-8
Java
false
false
2,312
java
/* * Copyright 2019 liaochong * * 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 writin...
[ "liaochong@guahao.com" ]
liaochong@guahao.com
cd26e2742e66eb3040b3675ac16b5f34a5d73335
b288464d9f023eb2d0801871d97ba5e310c4b61b
/ImageSlider/src/main/java/com/hangox/slider/Transformers/DepthPageTransformer.java
ab96815e606062765f3d71a46675723be73e1b8d
[ "MIT" ]
permissive
hangox/AndroidImageSlider
08bac6f37d659967b50f95d90b996df194dc31ba
d8f259bd954bfed7ccf58262ecb33a8a31a04a88
refs/heads/master
2020-12-31T07:33:07.136399
2015-06-19T01:18:58
2015-06-19T01:18:58
34,798,574
0
0
null
2015-04-29T14:29:40
2015-04-29T14:29:39
null
UTF-8
Java
false
false
937
java
package com.hangox.slider.Transformers; import android.view.View; import com.nineoldandroids.view.ViewHelper; public class DepthPageTransformer extends BaseTransformer { private static final float MIN_SCALE = 0.75f; @Override protected void onTransform(View view, float position) { if (position <= 0f) { ...
[ "hango.liang@yanurse.com" ]
hango.liang@yanurse.com
f1cde36e41f5a62ea35164a4f49f4b8d7713bf1d
7f57b906a9b1b01e163afba710bd727fa8d3cb92
/src/main/java/org/zjn/myplant/service/MqttOutboundService.java
0007b86ce6dcf6328c31243e24faaf59966f2269
[]
no_license
hatshepsut-working/myplant
4c245cf62c63c036d4cddaa2bba62fad951e387b
241ef035f0bbbbe216cd72335d65e9c42990b4cb
refs/heads/master
2020-03-21T10:42:15.939194
2018-06-24T09:28:45
2018-06-24T09:28:45
138,466,376
0
0
null
null
null
null
UTF-8
Java
false
false
690
java
package org.zjn.myplant.service; import org.springframework.context.annotation.Bean; import org.springframework.integration.annotation.IntegrationComponentScan; import org.springframework.integration.annotation.ServiceActivator; import org.springframework.integration.mqtt.core.MqttPahoClientFactory; import org.springf...
[ "zhangjianan.mlle@foxmail.com" ]
zhangjianan.mlle@foxmail.com
145ddcc25301b12a2646649bb6a49d59bbcba0a7
7773ea6f465ffecfd4f9821aad56ee1eab90d97a
/plugins/sh/gen/com/intellij/sh/psi/impl/ShLiteralConditionImpl.java
e6d80091d4070b283bb4bc91da2dbcdd1bcff248
[ "Apache-2.0" ]
permissive
aghasyedbilal/intellij-community
5fa14a8bb62a037c0d2764fb172e8109a3db471f
fa602b2874ea4eb59442f9937b952dcb55910b6e
refs/heads/master
2023-04-10T20:55:27.988445
2020-05-03T22:00:26
2020-05-03T22:26:23
261,074,802
2
0
Apache-2.0
2020-05-04T03:48:36
2020-05-04T03:48:35
null
UTF-8
Java
false
true
2,110
java
// This is a generated file. Not intended for manual editing. package com.intellij.sh.psi.impl; import java.util.List; import org.jetbrains.annotations.*; import com.intellij.lang.ASTNode; import com.intellij.psi.PsiElement; import com.intellij.psi.PsiElementVisitor; import com.intellij.psi.util.PsiTreeUtil; import st...
[ "intellij-monorepo-bot-no-reply@jetbrains.com" ]
intellij-monorepo-bot-no-reply@jetbrains.com
6b1abc1bfbc0ad354f858057310f399cdfea54bb
4ec82e4d063194e16c1ce4473999ef908e41270c
/common-orm/src/main/java/jef/database/wrapper/populator/ResultSetExtractor.java
0850b1f68022c5d28d855888b7f1045a5589b0db
[ "Apache-2.0" ]
permissive
wecup/ef-orm
4ff0e41b03a9600de66c3b2492d8732af812119e
ca8e9a4ceff9181e1d2f5015650953d432bc36d0
refs/heads/master
2020-12-11T06:13:55.717959
2014-11-05T10:19:26
2014-11-05T10:19:26
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,344
java
/* * JEF - Copyright 2009-2010 Jiyi (mr.jiyi@gmail.com) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
[ "hzjiyi@gmail.com" ]
hzjiyi@gmail.com
a6cb06a1a210237ff9b89229e884cbade038785e
019212e4c454c97533f8069a81dc987e34ebeee6
/src/test/java/test/nebula/FooTest.java
1473d51fb742a352dcd3c1ac56eb006991e8427f
[]
no_license
nebula-plugins/buildscan-test
2fa7155f0184d8337175e999b516a7f83121809e
be21686775ea4a3b88b72893743f105d2f5ce0e5
refs/heads/master
2021-01-25T06:25:06.226281
2017-06-06T22:57:20
2017-06-06T22:57:20
93,569,457
0
0
null
null
null
null
UTF-8
Java
false
false
186
java
package test.nebula; import org.junit.Test; import static org.junit.Assert.*; public class FooTest { @Test public void canary() { assertEquals("1 == 1", 1,1); } }
[ "rspieldenner@netflix.com" ]
rspieldenner@netflix.com
a7f6ceb94ba275f7ddf48f38d598db1d4fc14182
a78ed654f82355aff8667d0e31f6dbab535c1997
/app/src/main/java/com/olebokolo/wordstack/core/events/StackDeleteCalledEvent.java
1f83e7b026875ba9463ffae91a184c1ca25d99b4
[]
no_license
apricoder/WordStack
d023e4d284a447721d79223494c9e76ab0e19885
e49c6196359e516b778ea32a53e0aa0dd30f7437
refs/heads/master
2022-05-24T11:11:38.968194
2017-04-07T20:46:50
2017-04-07T20:46:50
null
0
0
null
null
null
null
UTF-8
Java
false
false
374
java
package com.olebokolo.wordstack.core.events; import com.olebokolo.wordstack.core.model.Stack; import lombok.AllArgsConstructor; import lombok.Data; import lombok.EqualsAndHashCode; @Data @AllArgsConstructor(suppressConstructorProperties = true) @EqualsAndHashCode(callSuper = true) public class StackDeleteCalledEven...
[ "abkolodiychuk@gmail.com" ]
abkolodiychuk@gmail.com
541949c7b226a432f96c176db09744c88f9dc35f
f3b1219424deda912dad4bfaab810ed3d2dfcd64
/sitech-strategy-main/sitech-strategy-recommend/src/main/java/com/sitech/strategy/recommend/base/.svn/text-base/BaseClass.java.svn-base
376b0279db123bc5a1bc0d1d155a47b72a786d0a
[]
no_license
apollochen123/myPersonalworkspace
9cc47100eb4a7c31940261961f28962ddde27000
56cbf5593a53b0d1ab67dd8767b186517c24a600
refs/heads/master
2021-08-30T01:26:06.993935
2017-12-15T14:30:20
2017-12-15T14:30:20
97,134,885
0
0
null
null
null
null
UTF-8
Java
false
false
521
package com.sitech.strategy.recommend.base; import com.sitech.strategy.common.utils.LogSlf4jUtil; import com.sitech.strategy.common.utils.LogUtil; /** * 推荐中心基类 * @date: 2016-9-5 * @author: sunliang * @title: BaseClass * @version: 1.0 * @description: * update_version: update_date: update_author: update_note: */...
[ "apollo.chan@qq.com" ]
apollo.chan@qq.com
ef556ac483055e211d2d688a2a8cef88a14a7d6f
5034c8d7fe79b0c5855791fd6674bcd899f22d9d
/eureka_client_node_three/src/main/java/com/company/web/controller/controller/AddController.java
17f2676b4b400e16e780c3557c41d31dcb884087
[]
no_license
qingw/cloud-demo
00fe5ca3397ceae3515abcd4d919df9ad8d5d784
0a73c4619b9307290bfbcb3235378a27670da1ee
refs/heads/master
2021-01-15T12:37:31.602717
2017-02-07T12:30:21
2017-02-07T12:30:21
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,499
java
package com.company.web.controller.controller; import org.apache.log4j.Logger; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.cloud.client.ServiceInstance; import org.springframework.cloud.client.discovery.DiscoveryClient; import org.springframework.web.bind.annotation.Reques...
[ "zth390872451@gmail.com" ]
zth390872451@gmail.com
44e501ce8c02c120a1cc36372b1d24b38ed92d71
d41be80cccafe633ba382fcb0734758c13be1e73
/knowledge-store-parent/java-backend-module/src/main/java/com/exception/GenericException.java
39682f6819c35a1e56d6fd8158b4fd0c457ebf88
[]
no_license
anshulatasingh/Knowledge-store
d4d7ee746a40d4f87ac3b96a163f104cabaaa13a
2b131a54b0f6babc4ccad778bfda810c8eeba318
refs/heads/master
2021-01-22T11:10:45.090365
2017-07-03T05:45:45
2017-07-03T05:45:45
92,674,036
0
1
null
null
null
null
UTF-8
Java
false
false
515
java
package com.exception; public class GenericException extends RuntimeException{ /** * */ private static final long serialVersionUID = 1L; public GenericException(){ super(); } public GenericException(String classname, String message, Throwable thr){ super(classname+" : "+message,thr); } pub...
[ "anshulata.singh@live.com" ]
anshulata.singh@live.com
fe8e5bb1c5fd11cd445078fe18d5f81a8b8a994c
219b6bad8eafe89a5a800245d9e0e8f0a8ecee80
/app/src/main/java/com/hbl/sandbox1/RetroListFragment.java
ee171595ebf920778bdbd5e54e83ae96a20bccc0
[]
no_license
masterofpun-HBL/Sandbox1
36d98c8dd6cdc32394d66c0ce0795f1da4d6c339
ca88ceaf7250354b51cc55a8d1077034503246fd
refs/heads/master
2021-01-19T00:28:03.144018
2017-04-04T12:40:16
2017-04-04T12:40:16
87,172,909
0
0
null
null
null
null
UTF-8
Java
false
false
2,519
java
package com.hbl.sandbox1; import android.content.Context; import android.os.Bundle; import android.support.v4.app.Fragment; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import ...
[ "mail.rishiar.ora@gmail.com" ]
mail.rishiar.ora@gmail.com
88771aabcdf884efe0a36257533553727cc72a4d
6556a69b9e020c17309a3bd1c50eeb2e14a5c098
/gps/map/src/sasha/offline/info/Edge.java
a0a447eb7e437bb851b31b5b581d892cbd0a6270
[]
no_license
tomkek/projects
4dd4798fda72638dc3ff511cb07e63dca72025a4
ab0ab86f823ee500b4cab9c06e220bebcdc88354
refs/heads/master
2020-04-04T12:06:01.526688
2014-07-10T10:51:40
2014-07-10T10:51:40
null
0
0
null
null
null
null
UTF-8
Java
false
false
541
java
package sasha.offline.info; public class Edge { private long startPoint; private long endPoint; private double weight; public long getStart(){ return startPoint; } public long getEnd(){ return endPoint; } public void setStart(long newId){ startPoint = newId; } public void setEnd(long newId){ end...
[ "gusrakto@student.gu,se" ]
gusrakto@student.gu,se
00614abb5dee7f2ae150d3f3480dc66356eb76c1
1a7d0ccab7a221e94cdb941ec3f0190f1d18f973
/GIt/SpringBoot_Secure/src/main/java/com/boot/RestWithSpringBoot/security/ResourceServerConfiguration.java
4dfd9858e8f4f2013d59c667c1122bdd8850d93d
[]
no_license
ashish097/Spring-Boot-Projects
3800e266ba17930f824c0a582cc5a02a85562e18
06345a30c45911d80430817d1968cbf555307411
refs/heads/master
2020-03-26T21:09:57.587915
2018-08-20T05:47:12
2018-08-20T05:47:12
145,370,935
0
0
null
null
null
null
UTF-8
Java
false
false
1,288
java
package com.boot.RestWithSpringBoot.security; import org.springframework.context.annotation.Configuration; import org.springframework.security.config.annotation.web.builders.HttpSecurity; import org.springframework.security.oauth2.config.annotation.web.configuration.EnableResourceServer; import org.springframewor...
[ "noreply@github.com" ]
ashish097.noreply@github.com
43bb6bcb882e9eb68a2a132f6e96007abfdc42d9
5aa497634a2fbe6b3d3f2df3d532ba584f3e4334
/src/day07/Ex04.java
4fb846627b7a2d55db1729c2d9353f505aa61019
[]
no_license
ladieslog/day07
6c836fe66f5a5a5cd50f00068744f3082e0e121e
3d867ec11f702f0387ac33d1b8eef5001a6d6475
refs/heads/master
2023-06-29T22:26:43.344376
2021-08-02T04:39:17
2021-08-02T04:39:17
391,770,301
0
0
null
null
null
null
UHC
Java
false
false
535
java
package day07; import java.util.ArrayList; import java.util.Scanner; public class Ex04 { public static void main(String[] args) { Scanner input =new Scanner(System.in); ArrayList food =new ArrayList(); food.add("설탕"); food.add("소금"); food.add("라면"); food.add("계란"); System.out.println(food); System.ou...
[ "matia0529@gmail.com" ]
matia0529@gmail.com
9c097982b34fd76d68925c6e6a663ceb0b16ff38
bbf526bca24e395fcc87ef627f6c196d30a1844f
/longest-continuous-subarray-with-absolute-diff-less-than-or-equal-to-limit/Solution.java
4fd363f957bb21f105a5ffe54b9b8866da7b3845
[]
no_license
charles-wangkai/leetcode
864e39505b230ec056e9b4fed3bb5bcb62c84f0f
778c16f6cbd69c0ef6ccab9780c102b40731aaf8
refs/heads/master
2023-08-31T14:44:52.850805
2023-08-31T03:04:02
2023-08-31T03:04:02
25,644,039
52
18
null
2021-06-05T00:02:50
2014-10-23T15:29:44
Java
UTF-8
Java
false
false
795
java
import java.util.SortedMap; import java.util.TreeMap; class Solution { public int longestSubarray(int[] nums, int limit) { int result = 0; SortedMap<Integer, Integer> valueToCount = new TreeMap<>(); int beginIndex = 0; for (int endIndex = 0; endIndex < nums.length; ++endIndex) { ...
[ "charles.wangkai@gmail.com" ]
charles.wangkai@gmail.com
9be7babd996194b9df7c458e0a143775017de332
a7da47a2032dc6a58517598a348787c2a463b6f0
/Windsor/src/visibiltyTwo/v4.java
4a34032f635d336411b124ddc5a66bffad598d7f
[]
no_license
alvinmukiibi/college_java_projects
f86f4d147dc6f4a72c3a676a936e424daa5b27f0
fa2d88092aae6368b84a6558416902f5c76796ab
refs/heads/master
2020-09-27T09:55:02.733806
2019-12-07T10:06:01
2019-12-07T10:06:01
226,490,301
1
0
null
null
null
null
UTF-8
Java
false
false
520
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 visibiltyTwo; /** * * @author ALVIN */ public class v4 { public static void main(String args[]) { visibilit...
[ "mukikelly792@gmail.com" ]
mukikelly792@gmail.com
49cfe3dba1fc35852424650ae216cf46967c7fb7
dc0afaa5b63e1bf4ee195fa1bf56629a32d8d57a
/java/spring/first-drools/my-app/src/main/java/test/generated/tables/AirbusJobResultInfo.java
7e21befa8d19591c98444a87dc5c072209bb9122
[]
no_license
btpka3/btpka3.github.com
370e6954af485bd6aee35fa5944007aab131e416
e5435d201641a2f21c632a28eae5ef408d2e799c
refs/heads/master
2023-08-23T18:37:31.643843
2023-08-16T11:48:38
2023-08-16T11:48:38
8,571,000
19
19
null
2021-04-12T10:01:13
2013-03-05T03:08:08
Java
UTF-8
Java
false
true
9,373
java
/* * This file is generated by jOOQ. */ package test.generated.tables; import java.sql.Timestamp; import java.util.Arrays; import java.util.List; import javax.annotation.Generated; import org.jooq.Field; import org.jooq.Identity; import org.jooq.Index; import org.jooq.Name; import org.jooq.Schema; import org.jooq....
[ "btpka3@163.com" ]
btpka3@163.com
2119b65d73811174304d1e80771dbfadc230d4f1
1f513fcf30bbda468cfef3459ad55a9be25bb081
/vkefu03/src/main/java/com/yxm/web/entity/agent/Agent.java
7f68d8babda1c57831024566541f3bddd85b2677
[]
no_license
startshineye/vkefu
146cfef97f8af8d709d6e613afc58c5d6ee67237
ab77cab23756439213b35d6f5e8bd45a50c86aab
refs/heads/master
2021-03-19T06:20:33.513625
2017-10-29T15:50:43
2017-10-29T15:50:43
105,330,224
1
1
null
null
null
null
UTF-8
Java
false
false
1,619
java
package com.yxm.web.entity.agent; /** * 坐席 * @author yxm * @date 2017-6-12 */ public class Agent{ private String agentId;//坐席工号 private String agentName;//姓名 private String loginTime;// 登陆时间 private String status;// 当前状态 private String login;//登录与否(on:登录 off:注销) private String groups;// 技能组 private Integer s...
[ "13001955858@163.com" ]
13001955858@163.com
63d23e45e1e7a081c745d437104fbc57bf28bfb3
09bee98e15ee80879d6cc5004827c40d1fe463c5
/app/src/test/java/com/example/desy/todoapp/ExampleUnitTest.java
44f0f910f34c38941958a0725548057d1ee2591a
[ "Apache-2.0" ]
permissive
desyoo/ToDoApp_Project
e23f6ccf539eaf5308b273e881f582a2253857c4
e3615241baf0fb132a4a27eee79a7fecd9009207
refs/heads/master
2020-12-04T12:43:35.317532
2016-09-28T00:15:47
2016-09-28T00:15:49
67,841,736
0
0
null
null
null
null
UTF-8
Java
false
false
317
java
package com.example.desy.todoapp; 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); } }
[ "daneyoo@gmail.com" ]
daneyoo@gmail.com
0a881d650ca606b16a8ddeb070e9534d830019eb
d5e65d9bf89da249f66faba1d441abd07d05a8ed
/upaas/common/src/main/java/one/ulord/upaas/common/api/APIResult.java
49ba5851716c08ab2ef009782db9b3fbf2f50e52
[ "MIT" ]
permissive
UlordChain/Ulord-platform
de39b877ca6ff8885c170c461b1188422ba67be2
04ae23155373c13d68e984308e44bd40878a7eb8
refs/heads/master
2021-05-26T08:03:09.528299
2019-02-01T06:42:56
2019-02-01T06:42:56
128,003,018
28
4
MIT
2018-12-30T08:16:58
2018-04-04T03:40:12
JavaScript
UTF-8
Java
false
false
2,044
java
/** * Copyright(c) 2018 * Ulord core developers */ package one.ulord.upaas.common.api; import one.ulord.upaas.common.UPaaSErrorCode; /** * API Result * @author haibo * @since 5/26/18 */ public class APIResult { private int errorcode; private String reason; private Object result; public int get...
[ "yhb_yinhaibo@163.com" ]
yhb_yinhaibo@163.com
b53238727377b25e9de139648647bfbb90885db1
696aa05ec959063d58807051902d8e2c48a989b9
/ole-app/olefs/src/main/java/org/kuali/ole/coa/document/web/OrgDerivedValuesSetter.java
0b7170fc982156de27ce58443c7e0e320d98ac59
[]
no_license
sheiksalahudeen/ole-30-sprint-14-intermediate
3e8bcd647241eeb741d7a15ff9aef72f8ad34b33
2aef659b37628bd577e37077f42684e0977e1d43
refs/heads/master
2023-01-09T00:59:02.123787
2017-01-26T06:09:02
2017-01-26T06:09:02
80,089,548
0
0
null
2023-01-02T22:05:38
2017-01-26T05:47:58
PLSQL
UTF-8
Java
false
false
2,874
java
/* * Copyright 2007-2009 The Kuali Foundation * * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php * * Unless required by ap...
[ "sheiksalahudeen.m@kuali.org" ]
sheiksalahudeen.m@kuali.org
c3bae7895f239453162ad963d0f4b482f8234623
36bd08b7bc9c9f585bbc3277f6f99c3a9c2df4ce
/FengYeApp/src/com/alan/fengye/bean/PersonalCenterAttentionDrawboardCellData.java
bbf62abc1def64ddc280ef8d38dde59f8f00aae2
[]
no_license
Alan-GitHub/FengYe-Backend
ab3cdcf4b470c52d886219fc1141864259e315cf
3e221859a8e08b8d731aaa592745d1e14ccb1e2c
refs/heads/master
2020-03-15T12:35:18.557595
2018-06-11T14:52:25
2018-06-11T14:52:25
132,147,389
0
0
null
null
null
null
UTF-8
Java
false
false
2,192
java
package com.alan.fengye.bean; public class PersonalCenterAttentionDrawboardCellData { private String coverImageURL; private int coverImageWidth; private int coverImageHeight; private String drawboardName; private String descriptionText; private String ownerHeadIcon; private String ownerUserName; private int...
[ "584840653@qq.com" ]
584840653@qq.com
5bc4bd8d13285d378d551b40a507e78711bfe311
8d1c7fba7cd15f8a1e33fd27d11eefd1c67d579f
/src/test/java/com/google/devtools/build/lib/skyframe/rewinding/RewindingTest.java
af201a58e36c8154decf64c9426c3d7adbeeeed1
[ "Apache-2.0" ]
permissive
bazelbuild/bazel
5896162455f032efc899b8de60aa39b9d2cad4a6
171aae3f9c57b41089e25ec61fc84c35baa3079d
refs/heads/master
2023-08-22T22:52:48.714735
2023-08-22T18:01:53
2023-08-22T18:01:53
20,773,773
20,294
4,383
Apache-2.0
2023-09-14T18:38:44
2014-06-12T16:00:38
Java
UTF-8
Java
false
false
7,466
java
// Copyright 2022 The Bazel Authors. All rights reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by appl...
[ "copybara-worker@google.com" ]
copybara-worker@google.com
e4eda0c8199cc56f98f65e4cfdd7f44b61e123b1
086401d50df124164bc8c914c1d5b0710a0effb4
/jeecms/src/com/jeecms/cms/manager/assist/impl/CmsSiteFlowMngImpl.java
c8535c19c09f68fc9f1ce5f70a9f23d77824aa05
[]
no_license
leoRui/jeecms
2ba6453e8c4cfdec1b816a0d971e433c6964d97d
dcba632bd340f51beeaa761ebba614102d0f5282
refs/heads/master
2021-01-11T04:41:57.276283
2016-10-17T07:24:56
2016-10-17T07:24:56
71,110,852
3
0
null
null
null
null
UTF-8
Java
false
false
1,962
java
package com.jeecms.cms.manager.assist.impl; import java.sql.Timestamp; import java.util.Date; import java.util.List; import net.sf.ehcache.Ehcache; import net.sf.ehcache.Element; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.spring...
[ "Administrator@USERUSE-5P6AB6M" ]
Administrator@USERUSE-5P6AB6M
21de0fd8e8dcc4b1b21458f665cfb73d6346d539
1df555a191e7599d2abd8ec6a74a15e85dca686b
/src/com/prediction/HMM/HMMState/State.java
4597b806a589a10fee4786527d8e29c2ebb6e43f
[ "Apache-2.0" ]
permissive
mukeshjr/IDPrS
0c1fcb87033c795ab43ea2dfecac0a5ba99e0625
9339cf950bc3f60fef624739ffae0709321c8edb
refs/heads/master
2021-01-17T13:27:03.826321
2016-07-25T12:22:38
2016-07-25T12:22:43
55,954,006
0
0
null
2016-04-18T03:11:39
2016-04-11T08:15:09
null
UTF-8
Java
false
false
741
java
package com.prediction.HMM.HMMState; import java.util.Iterator; public class State extends StateComponent { double pi; int obsTypeNum; double[] emissionProb; public State(double pi, double[] emissionProb) { this.pi = pi; this.emissionProb = emissionProb; this.obsTypeNum = emis...
[ "mukesh271194@gmail.com" ]
mukesh271194@gmail.com
2aaab8d032a2b445540de8dbb70db9a241ff0251
71e3c3b07738023da5a8f35bded9fa096dd301db
/src/test/java/com/ravi/recipemongoapp/repositories/reactive/CategoryReactiveRepositoryTest.java
3be77b70f19361805f112f105e82b3d94a9add77
[]
no_license
vcheruk2/recipe-mongo-app
415f360263ffb89ce80ec287f6bcb4a8377d55fe
dc1a18ac33302030313e2a49bd3547f803188a17
refs/heads/master
2022-07-02T18:51:23.773663
2020-05-10T18:36:23
2020-05-10T18:36:23
261,025,439
0
0
null
2020-05-03T21:47:23
2020-05-03T21:35:04
Java
UTF-8
Java
false
false
1,201
java
package com.ravi.recipemongoapp.repositories.reactive; import com.ravi.recipemongoapp.domain.Category; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.data.mongo.DataMongoTest; ...
[ "vcheruk2@ncsu.edu" ]
vcheruk2@ncsu.edu
d0c79b60f51b9fafc8aaa52678dcc47e822c8022
f6869b90ec1252d8574c97deea2c4adadecace25
/base/src/main/java/com/rq/ctr/ui/FragmentSaveTabHost.java
1b27a136111a364bcb7c7f21343cb0ccf4ea61c2
[]
no_license
RomenQueen/BaseController
bfda3a7691f2bc8e3c98ae548549696e5329dad7
c5eb743a4e4692add2cfb7c27ffb5e5c90872a54
refs/heads/master
2020-09-24T13:00:03.044529
2020-06-16T12:48:16
2020-06-16T12:48:16
225,764,069
2
0
null
null
null
null
UTF-8
Java
false
false
12,056
java
package com.rq.ctr.ui; import android.content.Context; import android.content.res.TypedArray; import android.os.Bundle; import android.os.Parcel; import android.os.Parcelable; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.support.v4.app.Fragment; import android.s...
[ "rq08414947" ]
rq08414947
1b2fa8b6c17daab5f841a83f847ae565eb6956cb
ca4a62e938d6b0a9ce69ac34d38bbae5616c55af
/src/main/java/SAYAV2/SAYAV2/bussines/Alarma.java
feb67e5ebe96aa00814b3b76ab4636a315489211
[]
no_license
isaiasarza/Sayav
79c06ab002a26d6480664d0a9b836665d13d563b
c6081bb966b97a3e965b365952484c391de7bc7b
refs/heads/Mensajeria
2022-11-20T16:18:43.113137
2019-07-03T19:12:51
2019-07-03T19:12:51
70,096,571
0
0
null
2022-11-16T04:43:00
2016-10-05T20:25:39
Java
UTF-8
Java
false
false
1,120
java
package SAYAV2.SAYAV2.bussines; import java.util.ArrayList; import java.util.List; import SAYAV2.SAYAV2.model.DispositivoM; import SAYAV2.SAYAV2.model.Sector; import SAYAV2.SAYAV2.model.Usuario; public class Alarma { public static void notificar(Usuario usuario){ String mensaje = usuario.toString(); List<Sec...
[ "arza.isaias@gmail.com" ]
arza.isaias@gmail.com
45c6a63e59992633768aa8f8a0000d4bf00f7429
61053c06b471e778a866cef6d8afb802253e8aec
/fancyfoods-dept-chocolate/src/main/java/fancyfoods/chocolate/Chocolate.java
a1a5f58d18d8691522bd15306620825117db6508
[ "Apache-2.0" ]
permissive
jkorab/smx-ent-osgi
386f6b5b34a14ba995b0580ca9eeb61421405923
d1f0432aedf7f6f4857369c65eacb927ffba0328
refs/heads/master
2021-01-17T05:37:49.583233
2014-10-08T16:00:44
2014-10-08T16:00:44
null
0
0
null
null
null
null
UTF-8
Java
false
false
326
java
package fancyfoods.chocolate; import fancyfoods.food.Food; class Chocolate implements Food { @Override public String getName() { return "Chocolate"; } @Override public double getPrice() { return 1.49; } @Override public int getQuantityInStock() { return 20; ...
[ "jakub.korab@gmail.com" ]
jakub.korab@gmail.com
f78a944641c5a73f51ef7c1eff63ff9ed5d9264e
1e7e6f3b0a6d3945c0ed8de847bcd34f232dc92b
/src/main/java/ru/javaproject/loansystem/web/creaditapplicationlistproduct/CreditApplicationListProductAxaxController.java
791e1c4b952c16c0f3f01079c7dc218d1465e4a9
[]
no_license
bortmex/LoanSystem
c6f0d8156eadba63bfd78a4ab5150a8bdabdccd7
62858b966a5271835dc4330702274c43e85ede44
refs/heads/master
2018-09-30T18:58:40.808244
2018-06-07T20:40:35
2018-06-07T20:40:35
108,326,710
1
0
null
null
null
null
UTF-8
Java
false
false
705
java
package ru.javaproject.loansystem.web.creaditapplicationlistproduct; import org.springframework.web.bind.annotation.*; import ru.javaproject.loansystem.model.CreditApplicationListProduct; @RestController @RequestMapping("/ajax/user/credapplistprod") public class CreditApplicationListProductAxaxController extends Abst...
[ "alexanderogov@gmail.com" ]
alexanderogov@gmail.com
5ddf3cad03fb144623b199ce793dc435436798f8
bf3a2be2c285dc8083d3398f67eff55f59a590fb
/symja/src/main/java/edu/jas/gbmod/ModGroebnerBasePar.java
86ef5c8559fb8fd2037b8af730923b5049c6cc06
[]
no_license
tranleduy2000/symja_java7
9efaa4ab3e968de27bb0896ff64e6d71d6e315a1
cc257761258e443fe3613ce681be3946166584d6
refs/heads/master
2021-09-07T01:45:50.664082
2018-02-15T09:33:51
2018-02-15T09:33:51
105,413,861
2
1
null
2017-10-03T08:14:56
2017-10-01T02:17:38
Java
UTF-8
Java
false
false
1,171
java
/* * $Id$ */ package edu.jas.gbmod; import edu.jas.gb.GroebnerBaseAbstract; import edu.jas.gbufd.GBFactory; import edu.jas.structure.GcdRingElem; import edu.jas.structure.RingFactory; /** * Module Groebner Bases sequential algorithm. Implements Groebner bases and GB * test. * * @author Heinz Kredel * @depre...
[ "tranleduy1233@gmail.com" ]
tranleduy1233@gmail.com
713af0d0af21cd4c099d9676423cb7f065b3a348
25950ee0fe311b2762623e6e430cda73fdfb2302
/src/conexionHibernate/GuardaClientePrueba.java
08793266fae7065dbc51af47d08244fd7f8f7606
[]
no_license
AxelCCp/4-SPRING-CON-HIBERNATE
e8956983eb047619930c434fa7ea263baca62119
afda4c2317bd7998a0703bce184ea3fb3c6ade37
refs/heads/master
2023-07-14T19:40:23.393326
2021-09-06T15:06:43
2021-09-06T15:06:43
340,088,210
0
0
null
null
null
null
ISO-8859-3
Java
false
false
1,883
java
package conexionHibernate; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.cfg.Configuration; public class GuardaClientePrueba { public static void main(String []args) { //PASO 1: //CREAMOS OBJ SESSIONFACTORY PARA QUE LEA EL ARCHIVO DE CONFIGURACIÓN Y SEA CAPAZ DE CONST...
[ "hpmajin@outlook.es" ]
hpmajin@outlook.es
d8e29580a21fff11b012c708de1e39f36b282dd1
0dd0168da66b20a7a42ae759f039ed41d55d469e
/src/tetris/Field.java
08c9b3cb3b61d04e00ab33926a45b4e7386f80d9
[]
no_license
paha141/JavaRushProjects
5501d73a0097ec04dc612b58d620349835c59c05
5e858f141496435fd953c4151e8fd8332202d987
refs/heads/master
2023-04-25T04:01:23.587947
2021-05-14T14:07:41
2021-05-14T14:07:41
367,381,905
0
0
null
null
null
null
UTF-8
Java
false
false
4,495
java
package tetris; import java.util.ArrayList; /** * Класс Field описывает "поле клеток" игры Тетрис */ public class Field { //ширина и высота private int width; private int height; //матрица поля: 1 - клетка занята, 0 - свободна private int[][] matrix; public Field(int width, int height) { ...
[ "paha141rus@yandex.ru" ]
paha141rus@yandex.ru
8f81f3d0a1fcf0088f3bfd23d0a2c58ccb0f201d
cef93bc765c0d27c3afb4db45ec6ee2892630f90
/src/main/java/com/miamato/PropertyManager.java
b734123958bb34416731caeee39b9b3d34c3ec52
[]
no_license
KatiaAndrusiak/AT_HT_5
968de1293e446df2ecc0592d4d76c04fb61ae327
1d7612556fedb92d80375f925b79d903cab06edd
refs/heads/main
2023-04-18T04:51:46.991274
2021-04-27T12:32:35
2021-04-27T12:32:35
362,104,467
0
0
null
null
null
null
UTF-8
Java
false
false
1,310
java
package com.miamato; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.Properties; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; public class PropertyManager { private static final Logger logger = LogManager.getLo...
[ "katia.andru@gmail.com" ]
katia.andru@gmail.com
bce339519c27b47bb1552767289f33a075487da3
30e329ae5429df2145cccc4abc7b8434a8ef488f
/order_pay_detect/src/main/java/com/shuanghe/orderoaydetect/model/OrderResult.java
12a7ccf55184b0c9fcdc37bf56d14dd22ad40844
[]
no_license
yushuanghe/user_behavior_analysis
05d7bd2eb0d482eac3e44413be6a2d6cf8606799
6acdfce047d8a3c7b750f64886a530e778c5d672
refs/heads/master
2023-03-31T18:02:46.803494
2021-04-07T13:16:58
2021-04-07T13:16:58
351,168,838
0
0
null
null
null
null
UTF-8
Java
false
false
857
java
package com.shuanghe.orderoaydetect.model; import java.io.Serializable; /** * @author yushu */ public class OrderResult implements Serializable { private String orderId; private String resultMsg; public OrderResult(String orderId, String resultMsg) { this.orderId = orderId; this.resultM...
[ "yushuanghe92@outlook.com" ]
yushuanghe92@outlook.com
3e798f779f51e2e107a9fc903aafbf011b43d52d
7c199b111dca785773d51e264419ee0e9e48068f
/src/main/java/cn/mesie/dataStructure/list/Node.java
2bd4987672cace8fe8f0cebc3918599380d11129
[]
no_license
littlemesie/Javalearn
0e071f32340bcc67fd16957acd952c4aebf262ba
70c5b55815baf7b98977079e4d391b681e64b1e5
refs/heads/master
2020-04-27T01:21:35.086091
2019-05-19T14:45:17
2019-05-19T14:45:17
173,962,770
1
0
null
null
null
null
UTF-8
Java
false
false
400
java
package cn.mesie.dataStructure.list; /** * Created by 2019-03-24 13:45 * 结点类 * @author: mesie */ public class Node<T> { /**新元素与链表结合节点**/ Node<T> next; /**新元素数据**/ T data; public Node() { } public Node(T data) { this.data = data; } @Override public String toString(...
[ "littlemesie@163.com" ]
littlemesie@163.com
32b36d72e3f44545cdec3fba63d71ac46487d271
be278214be5034837eb1d3ed12ea877c701a6ac9
/app/src/main/java/com/example/droidcafe/OrderActivity.java
263e0203620392cd05667b66ba568dd62be33130
[]
no_license
Theosuccess/Droid_Cafe
1437e2a09d83ad8535fb79299b7852ce0745c841
b8de6f199292fa156c4010cd020af28568fd7f6a
refs/heads/master
2022-12-21T07:19:41.505246
2020-09-28T19:24:35
2020-09-28T19:24:35
299,410,472
0
0
null
null
null
null
UTF-8
Java
false
false
3,783
java
package com.example.droidcafe; import androidx.appcompat.app.AppCompatActivity; import androidx.fragment.app.DialogFragment; import android.app.DatePickerDialog; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; im...
[ "successtboy@gmail.com" ]
successtboy@gmail.com
9cc9293d054539dd2f828d2934e364313507f429
f3bb9e8806db3db77a8079988d74ffce847593f9
/org.alloytools.kodkod.core/src/main/java/kodkod/util/ints/AbstractSparseSequence.java
04516a8b317b93278fb9ca18f7bd92409a12101a
[ "MIT", "Apache-2.0" ]
permissive
danielleberre/org.alloytools.alloy
de673f3d078083f3a3d8c6e55b5d067404c4420d
dcc3d4d04ef7970dca35047cb3f51945922f9e8f
refs/heads/master
2021-04-03T04:49:03.932626
2018-03-12T07:35:13
2018-03-12T07:35:13
125,003,790
0
1
Apache-2.0
2018-03-13T06:34:15
2018-03-13T06:34:15
null
UTF-8
Java
false
false
14,059
java
/* * Kodkod -- Copyright (c) 2005-present, Emina Torlak * * 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 without limitation the rights * to use, copy, m...
[ "peter.kriens@aqute.biz" ]
peter.kriens@aqute.biz
498b2bbbad4efa7237d274bba6cbf7782ba3be1d
f43598db6001c9d6e40e71631fabfd0641cbcdb5
/dhis-2/dhis-services/dhis-service-reporting/src/test/java/org/hisp/dhis/visualization/impl/DefaultVisualizationServiceTest.java
f237ff2189ed66006af99d7cde4c9236c3ac1303
[ "BSD-3-Clause" ]
permissive
abyot/sun-pmt-234
e839850591393fba02fc1fa00f953724a810e66a
12e09e544e9a702b4511ef6cfc7025180a56bdd5
refs/heads/master
2023-03-08T18:17:27.860300
2022-12-03T10:37:12
2022-12-03T10:37:12
265,843,044
2
1
null
2023-02-22T08:28:52
2020-05-21T12:29:03
Java
UTF-8
Java
false
false
9,757
java
package org.hisp.dhis.visualization.impl; /* * Copyright (c) 2004-2020, University of Oslo * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the a...
[ "abyota@gmail.com" ]
abyota@gmail.com
ca92f84207b4641e73a8ea4cfe13f131b3cc17c0
ddd51aecb2c5c0055d14248e9a314579256ab8ee
/Stc.java
00c4f89d79a8d1a21b88f2e6996c474c4bceaa0d
[]
no_license
DiegoPortillo13/EDD_PRAC_EVA-2_16550508
f724b6e0cf65ad83a37eef7aab1fcf8da6af4ab3
b6b9d03e91d62a9d3fe330f5417f92f0918bcccb
refs/heads/master
2021-08-23T00:48:34.717804
2017-12-02T00:15:08
2017-12-02T00:15:08
112,797,558
0
0
null
null
null
null
UTF-8
Java
false
false
803
java
import java.util.Stack; /* * 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. */ /** * * @author Familia */ public class Stc { /** * @param args the command lin...
[ "noreply@github.com" ]
DiegoPortillo13.noreply@github.com
32b955a8195b4b70dd3dd8bae3cb1ecf7b3d173a
fafa9f6332c8725a4a0bc2cf602e0444ca0fea81
/person-command/src/main/java/org/bull/examples/karaf/person/command/ListPersonsCommand.java
c453d101e781ee95df29428da58792d5cec0ae9c
[]
no_license
guillaumelamirand/Karaf-POC
a37e65ea5ac3d2de45df80f6ea182083cdaeabd9
beaaa203c0dd746cb4cc74aca1bbf7acd1e0eb0b
refs/heads/master
2021-05-27T15:48:59.696878
2013-05-02T21:31:35
2013-05-02T21:31:35
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,641
java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
[ "guillaume.lamirand@gmail.com" ]
guillaume.lamirand@gmail.com
e33d6944fb979d76c7c59728adcf1a62a3fa9858
9abf822c4d16bbfb9852ddd955b10fdaf7605e20
/src/main/java/com/wj/bookmanager/utils/UuidUtils.java
dffc4d9801e1f7133885ee57e1f63368d5eb8697
[]
no_license
xhuwanjia/BookManager
979ea9b2f05faa79b4bfd2c932335358adc74b97
fb68a4d8fa82293ce2cb3ae1c2ada46aae85f0a5
refs/heads/master
2022-04-25T09:48:18.959380
2020-04-24T14:23:04
2020-04-24T14:23:04
258,528,328
0
0
null
null
null
null
UTF-8
Java
false
false
181
java
package com.wj.bookmanager.utils; import java.util.UUID; public class UuidUtils { public static String next(){ return UUID.randomUUID().toString().replace("-","a"); } }
[ "497496208@qq.com" ]
497496208@qq.com
edac6879e0c258115ae92bd0b427461751cfe65a
7694b874bf37c39173380706158f76931fa553ab
/app/src/androidTest/java/com/abhro/braintrainer/ExampleInstrumentedTest.java
dc78e1c429fb63bc835cbe0ac22dae34e985233f
[]
no_license
abhrodeep/BrainTrainer
421ee27fa9ce178bc2f64647279d5a74a04a19bf
ce09dc680a00a8d9d67019657b7f95fdc65cb7e2
refs/heads/master
2021-04-12T12:10:47.307667
2018-03-21T14:38:37
2018-03-21T14:38:37
126,191,290
0
0
null
null
null
null
UTF-8
Java
false
false
748
java
package com.abhro.braintrainer; 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 Andro...
[ "abhrodeepc07@gmail.com" ]
abhrodeepc07@gmail.com
62151c7167a4af09c923f2e60d091107d9b4d3a7
1f76574bb6012e681d5c6aa6e42781fe76691142
/src/java/Facade/AtencioncursoFacade.java
5a658578c84999ea4d6422c35d92823bb03d2fdc
[]
no_license
santiagorozo/POVG7
0bc821ae585ab9f685741adf7a589a27eba58d28
83b39b82859e97217663441885a7bc76b2af6f8a
refs/heads/master
2022-12-18T21:41:06.290910
2020-06-14T18:56:55
2020-06-14T18:56:55
272,268,596
0
0
null
2020-06-14T19:21:58
2020-06-14T19:21:57
null
UTF-8
Java
false
false
1,034
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 Facade; import Entidades.Atencioncurso; import java.util.List; import javax.ejb.Stateless; import javax.persistence.EntityMana...
[ "kesgroom@gmail.com" ]
kesgroom@gmail.com
904a12b7db4c6ee32ac7136d8c089c126465346b
59ee8e11931d794428a829e94b412c77eb339fac
/patrimonio-api/src/main/java/com/api/patrimonio/PatrimonioApiApplication.java
eec2646f9b5d9254c6a5e7731912aadebd6e2e00
[]
no_license
ealvess/App-Angular4-e-Spring-Boot
4aec7b8bb40bf7e8f3d1a1ceb9ef19e860d65ae9
2d4304111c209866b7d7428a2daf5c7d2910c0fb
refs/heads/master
2023-03-07T08:18:19.180442
2018-03-27T19:03:44
2018-03-27T19:03:44
127,032,515
0
0
null
2023-03-01T19:01:51
2018-03-27T18:56:12
TypeScript
UTF-8
Java
false
false
324
java
package com.api.patrimonio; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class PatrimonioApiApplication { public static void main(String[] args) { SpringApplication.run(PatrimonioApiApplication.class, args); ...
[ "everton10alves@gmail.com" ]
everton10alves@gmail.com
4fe130ccda76c908d75fbf7a1edcc8384d3b1451
334027b209869f2f1102efdd004f2a980c473401
/src/test/java/SampleClientTest.java
5a1835b76f501dfa9e7f362f93d61ca2196691fc
[ "Apache-2.0" ]
permissive
abhisheksontakke7/playground-basic
4f1f6454d0d977ae6a92b456c1d30c7983d7adf4
cb08b9dd37380d1e2aa3121e81c1e0dfdf42d28c
refs/heads/main
2023-04-19T00:51:42.832624
2021-05-04T12:58:31
2021-05-04T12:58:31
363,159,773
0
0
null
null
null
null
UTF-8
Java
false
false
419
java
import java.util.List; import org.junit.Test; import static org.junit.Assert.assertTrue; import com.playground.basic.util.FileUtil; public class SampleClientTest { @Test public void testMain() throws Exception{ FileUtil fileUtil = new FileUtil(); List<String> list = SampleClient.getFileContents("D:/test", "te...
[ "asontakke@momnetfeed.com" ]
asontakke@momnetfeed.com
236af6af1db3173cc35b958ad5e5658c92c031fd
30980517b45cdd0c4fb536f18cfc1f2588e86486
/rnd/create-lib/Android-lib/fb-like/src/main/java/com/inthecheesefactory/lib/fblike/widget/FBLikeView.java
4dcb7ab0ea02f343ec59b6f64b3c3fca8f37c9f5
[ "Apache-2.0" ]
permissive
prashant31191/alldemos
e05214dd4432febb7f68cfef528baaa1c757d7ac
fb3e323ade134a9b2bf17b57c7c2e0a37b121b64
refs/heads/master
2021-09-08T02:53:11.675499
2018-03-06T07:29:07
2018-03-06T07:29:07
113,139,996
0
0
null
null
null
null
UTF-8
Java
false
false
6,760
java
package com.inthecheesefactory.lib.fblike.widget; import android.annotation.TargetApi; import android.app.Activity; import android.content.Context; import android.content.Intent; import android.content.res.TypedArray; import android.os.Build; import android.support.annotation.Nullable; import android.support.annotatio...
[ "prashant.chovatiya@eliteinfoworld.com" ]
prashant.chovatiya@eliteinfoworld.com
76d80b3aed6a9344d3e13f669a68481b24d41f4b
a2e37e9fac245226ab9fe6bca9f9a0f3e9174059
/src/main/java/net/brewspberry/dao/SimpleYeastDAOImpl.java
51eab3087bc7b4711226955bf953e08009388be3
[]
no_license
biologeek/brewspberry-core
80ce27c807ee7555ddb08c0fb0a7b9e5b7c461ee
06184abec329e706d2b6f5127be1f2525a4db010
refs/heads/master
2021-01-21T03:46:12.907029
2016-05-08T12:34:52
2016-05-08T12:34:52
43,710,411
0
0
null
null
null
null
UTF-8
Java
false
false
3,014
java
package net.brewspberry.dao; import java.util.ArrayList; import java.util.List; import org.hibernate.HibernateException; import org.hibernate.Session; import org.hibernate.StatelessSession; import org.hibernate.Transaction; import net.brewspberry.business.IGenericDao; import net.brewspberry.business.beans.SimpleLevu...
[ "bob57050@hotmail.fr" ]
bob57050@hotmail.fr
de3d292bd6e08db7b89875f08da9bd8fec656da7
f7b077acebd54c792e772f952fff5f2c016c1e20
/SpringOpenProject/src/main/java/com/openproject/controller/member/MemberLogoutController.java
6cc982164944097a9b5211984f0353fb30aaadff
[]
no_license
JChan0102/OpenProjectSpring
f3f794316386c436838de4bd9fb704a000935780
402ce67ebd931a52676d86dcbe1cf67049be72f9
refs/heads/master
2020-04-01T20:31:52.754540
2018-12-06T10:11:25
2018-12-06T10:11:25
153,608,032
0
0
null
null
null
null
UTF-8
Java
false
false
426
java
package com.openproject.controller.member; import javax.servlet.http.HttpServletRequest; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class MemberLogoutController { @RequestMapping(value="/member/logout") public String delSessi...
[ "parkgkgk@naver.com" ]
parkgkgk@naver.com
f7127da5494965743d006efdf58cbf536d9cc4f1
9ef66583b9180936eee9169857f16c87bdfd76f8
/src/com/coursera/ita/rn/TopicoRN.java
b4ef1c8935466d8c7b469cddcd8fb67485a5641e
[]
no_license
leonardoleal/courseraITAForum
d8507ec392bb527562fa2ac29060ea76abb45eae
1232f74cff1781f5298e1505f0d0bb7c8d2635f1
refs/heads/master
2021-01-09T07:03:57.318425
2016-09-25T16:54:09
2016-09-25T17:02:12
68,427,891
0
0
null
null
null
null
UTF-8
Java
false
false
1,539
java
package com.coursera.ita.rn; import java.util.List; import com.coursera.ita.entity.Pontos; import com.coursera.ita.entity.Topico; import com.coursera.ita.exception.FalhaInserirTopico; import com.coursera.ita.exception.FalhaSelecionarTopico; import com.coursera.ita.persistence.TopicoPostgreDAO; import com.coursera.ita...
[ "leonardo@lealweb.com.br" ]
leonardo@lealweb.com.br
0a704bfad37b3da25668a117a64e05b5f410cb2f
d6d55de3037420a0c47f9c2a3d7ee74d4a1dc768
/container/openejb-core/src/main/java/org/apache/openejb/junit/ContainerRule.java
56224f954156725aaa34bd694124fbdce4b66e85
[ "Apache-2.0", "W3C-19980720", "W3C", "BSD-3-Clause", "CDDL-1.0", "MIT" ]
permissive
apache/tomee
9ae551e2f44d55b23d35a34aec392b86be2ca28e
a6acf05faf0931e71a45b52941d9b8e1ee7aa4c5
refs/heads/main
2023-08-25T11:56:17.487455
2023-08-08T14:27:16
2023-08-08T14:27:16
7,748,336
426
806
Apache-2.0
2023-09-05T20:52:17
2013-01-22T08:00:16
Java
UTF-8
Java
false
false
2,166
java
/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may ...
[ "rmannibucau@apache.org" ]
rmannibucau@apache.org
e368da4fdf309dd1f70f8a516a1a211e770dd732
5342e985f7c8b4606d393d2bd21e6a5cb543d079
/ADSProjSP17HoffmanTree/src/edu/ufl/alexgre/project/threestructure/FourWayHeap.java
d4ed16bfcafce0c6eac5723b75c3b74316f3bc05
[]
no_license
bugface/cop5536sp17HuffmanCoding
16c0b97c0dafdda14bf46aaa691cb027eb9e6083
fe6bccaac9f0f67d13c0c1abcdeba72e8dbc77d4
refs/heads/master
2021-06-17T15:28:19.526364
2017-05-16T15:06:44
2017-05-16T15:06:44
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,101
java
package edu.ufl.alexgre.project.threestructure; import java.util.ArrayList; public class FourWayHeap extends Heap{ ArrayList<HuffmanNode> heap = new ArrayList<HuffmanNode>(); private static final int dary = 4; @Override public void add(HuffmanNode node) { if(node == null) return; HuffmanNode fNode = no...
[ "yunxiache@gmail.com" ]
yunxiache@gmail.com
4055cff3b96448c690b66df1ed28398173c1bd9e
c5e7916e5c89f494135fffe1e2031c2d926a068a
/thuchanhtichmatranvachuyenvi/src/main/java/MAIN.java
c7f4a34b4eb1734e8c7d8aa0b252d8b0e5b3169c
[]
no_license
ngochuy2901/Lap-Trinh-Huong-Doi-Tuong
d7743c15fd84f533907609065937298ce5d7a826
3edfa4642e2acabe1b4721bee825baf0dcb39e56
refs/heads/master
2023-09-06T08:24:03.894339
2021-10-27T07:21:00
2021-10-27T07:21:00
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,198
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. */ /** * * @author huy */ import java.util.Scanner; public class MAIN { public static Scanner sc = new Scanner(System.in); pub...
[ "84649789+ngochuy2901@users.noreply.github.com" ]
84649789+ngochuy2901@users.noreply.github.com
b6b410574acf87949cf8d25e469bf84fd7db5771
ee0662bc9a4370d1dfda2906f7c8dc164def6b8d
/MortgageCalculator/src/com/example/mortgagecalculator/MainActivity.java
1fe99deafd468bdf0c32de702a6897390a971dfc
[]
no_license
HaiYangShen/331Homework2
b5641b11b54c3ed2484cdf18e38e49a872eea00d
2e5eee534722f129620bbffd79c9b37d146be1dd
refs/heads/master
2021-01-10T00:52:59.545264
2015-03-15T18:21:53
2015-03-15T18:21:53
32,276,224
0
0
null
null
null
null
UTF-8
Java
false
false
9,284
java
package com.example.mortgagecalculator; import android.app.Activity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import java.text.NumberFormat; // for currency formatting import android.text.Editable; // for EditText event handling import android.text.TextWatcher; // EditText li...
[ "seaforestshen@gmail.com" ]
seaforestshen@gmail.com
f3da532bb6612f47419e74aa22f87eb0aeab1888
2869fc39e2e63d994d5dd8876476e473cb8d3986
/Super_clutter/src/java/com/lvmama/clutter/service/client/v4_0_1/ClientUserServiceV401.java
5e2404d7b99984d5a743eb61c50be3dae138e741
[]
no_license
kavt/feiniu_pet
bec739de7c4e2ee896de50962dbd5fb6f1e28fe9
82963e2e87611442d9b338d96e0343f67262f437
refs/heads/master
2020-12-25T17:45:16.166052
2016-06-13T10:02:42
2016-06-13T10:02:42
61,026,061
0
0
null
2016-06-13T10:02:01
2016-06-13T10:02:01
null
UTF-8
Java
false
false
23,066
java
package com.lvmama.clutter.service.client.v4_0_1; import java.awt.image.BufferedImage; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.net.URL; import java.text.ParseException; import java.util.ArrayList; import java.util.Calendar; import java.util.Da...
[ "feiniu7903@163.com" ]
feiniu7903@163.com
a6e9bfa195b8c9fad298c7aaf1372ecafb8f4ad2
64283a30bc5d584ac0a66162d7268f48848d955b
/src/main/java/org/drw/ps/PatientServiceApplication.java
9256268dbfa3839963a7b47acbacf090db730877
[]
no_license
dumindarw/patient-service
6675c665bf2a292406790d3f7bd1de3fe7e4e162
462e8ac81232a6832f0c54d909b9cf56b7912ae7
refs/heads/main
2023-08-23T09:00:55.460699
2021-10-21T03:59:14
2021-10-21T03:59:14
419,574,435
0
0
null
null
null
null
UTF-8
Java
false
false
435
java
package org.drw.ps; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication //@NativeHint(trigger = FlywayAutoConfiguration.class) //@NativeHint(trigger = JdbcTemplateAutoConfiguration.class) public class PatientServiceApplication ...
[ "rajitha.wanninayake@mcmedisoft.com" ]
rajitha.wanninayake@mcmedisoft.com
1d98cdf35ca1f464fbc40a8266de6eec3ab2236c
ddcf1d31fb637d7144f51e89bc8b1bc0645d65bd
/src/main/java/cgd/hj/routines/Mhjj200a.java
d1d45c37b0ead1da15ff6edfc52bfcd96606c36c
[]
no_license
joao-goncalves-morphis/CodeGuru
6b90a2fed061941a7020d143d9167f7434880cd4
3643af0dc69ed5b8a09ba89311b9b3afd27ca0e1
refs/heads/master
2022-09-02T23:29:10.586712
2020-05-06T14:31:03
2020-05-06T14:31:03
259,694,187
0
0
null
2020-05-27T13:40:19
2020-04-28T16:36:36
Java
UTF-8
Java
false
false
244
java
package cgd.hj.routines; import cgd.framework.CgdExternalRoutine ; import morphis.framework.datatypes.annotations.Data ; /** * * migrated from [GH] * * @version 2.0 * */ public abstract class Mhjj200a extends CgdExternalRoutine { }
[ "joao.goncalves@morphis-tech.com" ]
joao.goncalves@morphis-tech.com
b5f72a1f594f94b27168d0d9cf0ea57d26e22e63
3af6590741c81b4f664fa9e824394b40953cfcf7
/app/src/main/java/com/archive/jordiie/onboardingscreen/onBoarding/screen4_fragment.java
6647f9edb3964f25382da950ee3111fe3ff29f3e
[]
no_license
abhinav-adtechs/project-archive-1.1
c9becff59508085e790b8e52e2e0a0ed84cc6fc4
510e7315de598cd974379c480afd83092cbbad31
refs/heads/master
2016-08-12T08:23:58.340344
2016-01-09T17:55:52
2016-01-09T17:55:52
47,389,953
1
0
null
null
null
null
UTF-8
Java
false
false
666
java
package com.archive.jordiie.onboardingscreen.onBoarding; import android.os.Bundle; import android.support.annotation.Nullable; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.archive.jordiie.onboardingscreen.R; /** * Created by jordiie on 22/9/15. */ public c...
[ "abhinav.adtechs@gmail.com" ]
abhinav.adtechs@gmail.com
8c0a70eea05b5f846b25cdd480b3428ac1a31466
81771d9ed4b802c6a9828ad46c1099b9ee495d62
/src/main/java/com/jxj/jdoctorassistant/health/PluseChartActivity.java
bf4f7506983845b6a4c2b4fc5896b831b300486d
[]
no_license
zeroys0/jdoctorassistant
7191252fb08d9de0ef1793dd4e259c23fa1dd92c
200b4906c440c248d5dbceca4242f0752791230b
refs/heads/master
2020-11-25T16:22:23.484459
2019-12-18T05:12:33
2019-12-18T05:12:33
228,753,094
0
0
null
null
null
null
UTF-8
Java
false
false
11,273
java
package com.jxj.jdoctorassistant.health; import android.app.Activity; import android.content.Context; import android.graphics.Color; import android.graphics.Paint.Align; import android.os.Bundle; import android.os.Handler; import android.os.Message; import android.util.Log; import android.view.View; import android.vie...
[ "370099094@qq.com" ]
370099094@qq.com
947f95972183b9fd7fe56a05ab3ddff4965b8c7c
963136bb46ab31b6a6ee2bb50e40afe996f1a386
/src/main/java/com/lardi/dal/impl/RecordDaoMysqlImpl.java
2219cc64d1bd5767d4e13379aae5efb544f1b01a
[]
no_license
koorneeyy/PhoneBook
d9e48b3bd1d937e86ccfd5824eb178f68cd1110e
42ef1cce9c4e2b10108ed174375374be81cd2d5d
refs/heads/master
2021-01-11T08:00:20.050072
2016-10-27T20:25:39
2016-10-27T20:25:39
72,136,478
0
0
null
null
null
null
UTF-8
Java
false
false
6,936
java
package com.lardi.dal.impl; import com.lardi.config.ConnectToDB; import com.lardi.dal.interfaces.RecordDaoInterface; import com.lardi.dal.pojo.RecordPojo; import org.apache.log4j.Logger; import java.sql.*; import java.util.ArrayList; import java.util.List; public class RecordDaoMysqlImpl implements RecordDaoInterface...
[ "koorneeyy@yandex.ru" ]
koorneeyy@yandex.ru
9c655874972d5b6ce547bb9edb51359a385cc41f
f44b2451b532495c8148a1f4ac30429477293ff0
/src/main/java/org/mule/module/dxpath/i18n/DxpathMessages.java
c729b780f1c36e910c11406bf43de8183de14582
[ "Apache-2.0" ]
permissive
skjolber/mule-module-dxpath
fe03f3c95875fc0d9fdc0a9dfb241ea8c7d9fc49
e6d478749fc8a141f053144e56e8904171fd4c55
refs/heads/master
2021-01-23T03:21:42.589243
2014-10-06T20:44:13
2014-10-06T20:44:13
11,876,052
1
0
null
null
null
null
UTF-8
Java
false
false
1,040
java
/*************************************************************************** * * This file is part of the 'dxpath mule module' project at * https://github.com/skjolber/mule-module-dxpath * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the...
[ "thomas.skjolberg@gmail.com" ]
thomas.skjolberg@gmail.com
50d2fc86e55367dec6f7b32cd48ddbfe3c42327c
22c8113b0ecba4a2d9bae43602a168e8838be662
/wechat/client/app/src/main/java/cn/john/sy1027/User.java
959cdb507d34ca4b9b46bedae53d54559018b76d
[]
no_license
ZYX223/chatter
b8091125e74bc176648f0619479fdb1cd997e8a1
b5d574c9ac2657210df1b58ca0de375463e0bd9c
refs/heads/master
2020-04-17T18:17:36.671679
2019-01-22T15:28:18
2019-01-22T15:28:18
166,819,974
1
0
null
null
null
null
UTF-8
Java
false
false
395
java
package cn.john.sy1027; public class User { private String uname; private String upassword; public String getUname() { return uname; } public void setUname(String uname) { this.uname = uname; } public String getPassword() { return upassword; } public void...
[ "zhangyuxinxhu@163.com" ]
zhangyuxinxhu@163.com
7fb388962d6a13dc2183d20a900d944aff1d3ac3
05b3e5ad846c91bbfde097c32d5024dced19aa1d
/JavaProgramming/src/ch07/exam09/CarExample.java
c2fc29a8bf87111cb0cc0a0786bbc5723fe2397b
[]
no_license
yjs0511/MyRepository
4c2b256cb8ac34869cce8dfe2b1d2ab163b0e5ec
63bbf1f607f9d91374649bb7cacdf532b52e613b
refs/heads/master
2020-04-12T03:05:29.993060
2016-11-17T04:34:51
2016-11-17T04:34:51
65,808,570
0
0
null
null
null
null
UTF-8
Java
false
false
511
java
package ch07.exam09; public class CarExample { public static void main(String[] args) { Car car = new Car(); //Car 객체 생성 for(int i=1; i<=5; i++){ int problemLocation = car.run(); if(problemLocation != 0){ System.out.println(car.tires[problemLocation-1].location+" HankookTire로 교체"); ...
[ "hypermega22@gmail.com" ]
hypermega22@gmail.com
9b980b20a52edc81270527826577eaf0153a5c6f
bbe3ad0628695cd1d51bfa60e3117f6fb362db24
/src/app/abms/comprobante/pago/PagoFiltroView.java
fdc3dd6893bd47b1a1dcdf3a066ee116631313e6
[]
no_license
pgarello/inmobiliaria
c23731f5f7b151fcfdb77904af74be39b5904e00
c9e2a2848d4a716db1800d511be466cbd7602c13
refs/heads/master
2023-08-04T10:05:53.132028
2021-02-01T15:19:28
2021-02-01T15:19:28
61,242,269
0
0
null
null
null
null
ISO-8859-1
Java
false
false
11,195
java
package app.abms.comprobante.pago; import java.util.Date; import app.busquedas.inmueble.InmuebleFindListadoView; import app.busquedas.persona.PersonaFindListadoView; import ccecho2.base.CCColumn; import ccecho2.base.CCLabel; import ccecho2.base.CCButton; import ccecho2.base.CCCheckBox; import ccecho2.base.CCDateFie...
[ "pgarello@gmail.com" ]
pgarello@gmail.com
21a4f5c04b1306c2bd39d4a3dcaeb3a595d19e54
797b64bde877aa077fe74330d02806abcca218f4
/app/src/main/java/com/itis/android/lessontwo/ui/comicslist/ComicsListView.java
48e5d116994a1383bef51f5dd575c582344650c8
[]
no_license
AlexTilinina/lessonTwo
0fbbc4eec9d40b8117c157730b4206f20e40ade5
fd9c7c8c1e3d0361cc3a4d9838632aea45a04824
refs/heads/master
2021-01-25T14:16:18.052869
2018-04-03T18:38:34
2018-04-03T18:38:34
123,674,624
0
1
null
2018-04-03T18:38:35
2018-03-03T08:40:53
Java
UTF-8
Java
false
false
977
java
package com.itis.android.lessontwo.ui.comicslist; import android.support.annotation.NonNull; import com.arellomobile.mvp.MvpView; import com.arellomobile.mvp.viewstate.strategy.AddToEndSingleStrategy; import com.arellomobile.mvp.viewstate.strategy.OneExecutionStateStrategy; import com.arellomobile.mvp.viewstate.strat...
[ "shaihrazievnail@mail.ru" ]
shaihrazievnail@mail.ru
0b5349605f45999e1871c47b93323812fcff3235
97faab88539c707483d7de5aaedbf7e1a551889e
/src/com/leetcode/NumberCompliment.java
42b14b3cb23b623b54205eab3625c80101c9239d
[]
no_license
syedirfan33/ProblemSolving
83cf047c1f08ed089553401e61561e7e560e4712
07f0e565f3f6d39d10d3464f2aafe5b6de6bc3e5
refs/heads/master
2023-08-15T12:53:53.922113
2021-09-25T04:04:26
2021-09-25T04:04:26
261,063,747
1
1
null
null
null
null
UTF-8
Java
false
false
342
java
package com.leetcode; public class NumberCompliment { public int findComplement(int num) { if (num == 0) return 1; int i = 0; int res = 0; while (num > 0) { int mul = num % 2 == 1 ? 0 : 1; res += mul * Math.pow(2, i++); num /= 2; } ...
[ "syed.irfan@maybank.com" ]
syed.irfan@maybank.com
79edef627e941ec8b048820b96259990a037b4a6
5398527005bd31bb3f507709e74283fb1979680b
/core/src/ru/geekbrains/stargame/screen/GameScreen.java
64a57bab8907b8a505bc93561ee56ca9bd402649
[]
no_license
MishanyG/StarGame
7e2b7c23186f16a1ce69c39937bd51f09e42127b
2fd66dd5b48d12e755802d1fe90f8e9023a56ebe
refs/heads/master
2021-08-01T17:02:18.196061
2021-07-26T13:45:22
2021-07-26T13:45:22
248,732,644
0
0
null
null
null
null
UTF-8
Java
false
false
11,233
java
package ru.geekbrains.stargame.screen; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.audio.Music; import com.badlogic.gdx.audio.Sound; import com.badlogic.gdx.graphics.GL20; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.TextureAtlas; import com.badlogic.gdx.math.Vector2; import ...
[ "flatron_777@mail.ru" ]
flatron_777@mail.ru
0749aa7b781fa7f9e32540d509c1d424316cf2d9
0d4f05c9909695a166e97b8958680945ea5c1266
/src/minecraft/net/minecraft/entity/IEntityLivingData.java
dcda910b718e06583665a8a3db6af344b48881ca
[]
no_license
MertDundar1/ETB-0.6
31f3f42f51064ffd7facaa95cf9b50d0c2d71995
145d008fed353545157cd0e73daae8bc8d7f50b9
refs/heads/master
2022-01-15T08:42:12.762634
2019-05-15T23:37:33
2019-05-15T23:37:33
null
0
0
null
null
null
null
UTF-8
Java
false
false
78
java
package net.minecraft.entity; public abstract interface IEntityLivingData {}
[ "realhcfus@gmail.com" ]
realhcfus@gmail.com
939656ff1c2e25982d1b8f38905eafa5ab91e533
5e3fad491f274d8348f25086ecd5d89ec59c0b53
/Pathfinder-master/app/src/main/java/com/group12/utils/PermissionChecker.java
6efa9b603d0d59a4669e728e76c2a5766ffda60d
[]
no_license
wallnutc/pathfinding-UI
6bc7034345fb3919d124d9dd124e956774c8d7b6
58c4a4e1efd8f12de6c23110cdd1fc40e7ec3c0b
refs/heads/master
2021-04-05T18:58:01.213210
2020-04-10T15:17:03
2020-04-10T15:17:03
248,589,258
0
1
null
null
null
null
UTF-8
Java
false
false
951
java
package com.group12.utils; import android.app.Activity; import android.content.pm.PackageManager; import android.widget.Toast; import androidx.core.app.ActivityCompat; import androidx.core.content.ContextCompat; public class PermissionChecker { public static boolean checkPermission(Activity activity,String permi...
[ "cian.wallnutt1@ch.abb.com" ]
cian.wallnutt1@ch.abb.com
ac5543bb5d56ae891b7b1531b3a1d08e7d436b87
eebe7ea49de7cccdb44b6ec1d56e79d4ec3726e3
/2019.11/2019.11.14 - Educational Codeforces Round 76 (Rated for Div. 2)/CDominatedSubarray.java
874e9361c2d074eb23ed68c8ff70f1a37bb219f2
[]
no_license
m1kit/cc-archive
6dfbe702680230240491a7af4e7ad63f372df312
66ba7fb9e5b1c61af4a016f800d6c90f6f594ed2
refs/heads/master
2021-06-28T21:54:02.658741
2020-09-08T09:38:58
2020-09-08T09:38:58
150,690,803
0
0
null
null
null
null
UTF-8
Java
false
false
970
java
package dev.mikit.atcoder; import dev.mikit.atcoder.lib.io.LightScanner; import dev.mikit.atcoder.lib.io.LightWriter; import dev.mikit.atcoder.lib.debug.Debug; import java.util.HashMap; import java.util.Map; public class CDominatedSubarray { private static final int MOD = (int) 1e9 + 7; public void solve(i...
[ "mikihito0906@gmail.com" ]
mikihito0906@gmail.com
da3958529d8081d3d47040800d75fed2adb212ab
d59c531c1d9d69eda37b00a1b3b526516f2cba37
/src/main/java/com/easypump/model/common/HttpResponseStatusEnum.java
8bd0ee185a1bea667b78f7ddaea1471fe6feac56
[ "MIT" ]
permissive
juliuspetero/easypump-server
badceda7c3b4cdd2c05b1cb55b163780de981b70
1b67ca46614c03a139b580aa3927cc11bf5159a9
refs/heads/main
2023-07-10T03:30:57.127805
2021-08-22T22:18:19
2021-08-22T22:38:09
398,912,924
0
0
null
null
null
null
UTF-8
Java
false
false
125
java
package com.easypump.model.common; public enum HttpResponseStatusEnum { SUCCESS, FAILED, PENDING, UNKNOWN }
[ "juliuspetero360@gmail.com" ]
juliuspetero360@gmail.com
445f2c2829bb163861128d25991d82d5c0952a39
3d711f583c23a4f3c2cad7b518ec202db3e58d86
/src/java/dataDAO/ProductDAO.java
6d1d2c865bfba8be5a21e56108e175f58889842f
[]
no_license
doanhhoang7798/A
7a541b4faedc0fdeaf5277a2db6b9085685164d5
263cca78fbd4dba5b2eccf4f2064cef8e146ad70
refs/heads/master
2022-04-26T08:52:00.041199
2020-04-28T22:06:28
2020-04-28T22:06:28
259,761,850
0
0
null
null
null
null
UTF-8
Java
false
false
4,334
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 dataDAO; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLExceptio...
[ "doanhhoang7798@gmail.com" ]
doanhhoang7798@gmail.com
752fd33a958c57211adac7d01536ef0fe479faaa
79073777d07f5a2c26ea976247f50c1835c5d38e
/src/main/java/com/canerkorkmaz/monopoly/constants/BoardConfiguration.java
ae9a280416d2f3b68491ed2da252601db7fef5fe
[ "Apache-2.0", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
YigitErturk/Comp302-Fall2018-Monopoly-Individual
d70aa65ca9a951e42cd5770002e447f7fbffd7b4
c634e24e6f6276ce80c67a3f53d451be17fa1b87
refs/heads/master
2020-06-11T17:27:25.495535
2018-12-24T12:35:08
2018-12-24T12:35:08
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,110
java
package com.canerkorkmaz.monopoly.constants; import com.canerkorkmaz.monopoly.data.model.*; import java.awt.*; import java.util.Arrays; import java.util.Collections; import java.util.List; public final class BoardConfiguration { private BoardConfiguration() { } public static final Color BLUE = new Colo...
[ "info@canerkorkmaz.com" ]
info@canerkorkmaz.com
6ce326b26e82f6d301771683dc252ea0c4ca1d7a
c5bfae1d6f8dff8ff9a22f1f8370e54b2ca3cd3b
/app/src/androidTest/java/com/iigo/diceloadingview/ExampleInstrumentedTest.java
a869c9ceca4bb752adfa7069c56c21e1ebf21bea
[ "MIT" ]
permissive
newPersonKing/DiceLoadingView
3a041580d2bf4758cf826b4f3cb3af08cd50b916
7cfbafc1de6f9d3d67a91393fa3bb919ec19431f
refs/heads/master
2023-03-15T11:49:17.769562
2018-12-28T02:20:36
2018-12-28T02:20:36
null
0
0
null
null
null
null
UTF-8
Java
false
false
732
java
package com.iigo.diceloadingview; 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 Androi...
[ "729717222@qq.com" ]
729717222@qq.com
0d452944d77d24dbf7c7fa70e98363c5f714621b
ed5159d056e98d6715357d0d14a9b3f20b764f89
/src/irvine/oeis/a322/A322460.java
8b25c1cb49b32a321ad4bf61991390b2fc1368a2
[]
no_license
flywind2/joeis
c5753169cf562939b04dd246f8a2958e97f74558
e5efd6971a0062ac99f4fae21a7c78c9f9e74fea
refs/heads/master
2020-09-13T18:34:35.080552
2019-11-19T05:40:55
2019-11-19T05:40:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
438
java
package irvine.oeis.a322; // Generated by gen_linrec.pl - DO NOT EDIT here! import irvine.oeis.LinearRecurrence; /** * A322460 Sum of n-th powers of the roots of <code>x^3 + 95*x^2 - 88*x - 1</code>. * @author Georg Fischer */ public class A322460 extends LinearRecurrence { /** Construct the sequence. */ publ...
[ "sean.irvine@realtimegenomics.com" ]
sean.irvine@realtimegenomics.com
f539c6b0ed60af62f835f6b96ea44ded6214cbfc
5d968f9ceab6b118a65e107cfddd503af3807a9a
/City.java
f0672bc6cf2db2381edd328053ac3cc05ea6e682
[]
no_license
Dodyputra/Tugas
2e1e2f42469121b7d11233cccf8385d3d26c825c
8cced46fedb6eb77e8bf6597c28f9392f864525f
refs/heads/master
2021-03-24T13:01:00.855779
2017-09-26T03:02:01
2017-09-26T03:02:01
104,828,963
0
0
null
null
null
null
UTF-8
Java
false
false
960
java
package com.smk.bi.ticketing.model; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; /** * // TODO Comment */ // Nama Dody putra // NIS 16.10.1.067 @Entity @Table(name = "city")...
[ "noreply@github.com" ]
Dodyputra.noreply@github.com
db837f72875ba801c892eafa6517a846c90dbd85
7b733d7be68f0fa4df79359b57e814f5253fc72d
/projects/sitemanage/src/main/java/com/percussion/packagemanagement/IPSStartupPkgInstaller.java
62099c968ef3d567c273ff6d23f9254fd5d92efb
[ "LicenseRef-scancode-dco-1.1", "Apache-2.0", "OFL-1.1", "LGPL-2.0-or-later" ]
permissive
percussion/percussioncms
318ac0ef62dce12eb96acf65fc658775d15d95ad
c8527de53c626097d589dc28dba4a4b5d6e4dd2b
refs/heads/development
2023-08-31T14:34:09.593627
2023-08-31T14:04:23
2023-08-31T14:04:23
331,373,975
18
6
Apache-2.0
2023-09-14T21:29:25
2021-01-20T17:03:38
Java
UTF-8
Java
false
false
799
java
/* * Copyright 1999-2023 Percussion Software, 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 applicabl...
[ "nate.chadwick@gmail.com" ]
nate.chadwick@gmail.com
158fd64c7527cf3a470e5f17d740ebeac09303f7
f5db18eff6a5cdf0d8fff32864a761b69e591f70
/Production.java
89e0bb0343aa34ade67d4bf02c9e1138d31b0431
[]
no_license
kotvagoudoungou/pro
25dc8d2016b20db04cd80104e14337f80e5ac6d5
d0a8f0ff569779f721072fca8faa76aa88831dad
refs/heads/master
2021-08-17T01:53:44.146150
2017-11-20T16:55:47
2017-11-20T16:55:47
111,438,137
0
0
null
null
null
null
UTF-8
Java
false
false
889
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 miniprojet; /** * * @author emmanuel */ public class Production extends Employe{ public int nombreUnite...
[ "noreply@github.com" ]
kotvagoudoungou.noreply@github.com
86c39e8acf88a7da68e9e5ba7815805515d3f375
33c6ab5ad73c3e560a32beec9df23f030df59dd5
/app/src/main/java/com/whitebird/parcel/Transporter/TransporterProfile/ActTransProfileDisplay.java
83096d3ce9da150bc09379cacde864a8f9ac8de2
[]
no_license
amsmid/Parcel
126f693d4e60171186cc6895f1a2c764f4b1c878
9d36c1c738577cb2ee3f01a95e30b4f8d772b9d8
refs/heads/master
2020-03-19T06:00:44.686775
2017-04-12T08:15:34
2017-04-12T08:15:34
135,982,719
0
1
null
2018-06-04T06:49:41
2018-06-04T06:49:41
null
UTF-8
Java
false
false
3,896
java
package com.whitebird.parcel.Transporter.TransporterProfile; import android.content.Intent; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.Menu; import android.view.MenuItem; import android.widget.TextView; import com.whitebird.parcel.Owner.Profile.ProfileActivity.EditP...
[ "akharegirish@gmail.com" ]
akharegirish@gmail.com
62e69fa74b86ce35ea2a59cdd6c916862f553d2e
0ac7c33b0bfd133885a89d64c637cd48aa176fca
/app/src/main/java/com/findtech/threePomelos/home/presenter/UserFragmentPresent.java
9e284f04e93dacf421da8295ad856011f870997c
[]
no_license
AlexTiti/threeGrapefruit
8f6a19f70eece257ec021a7c4f5b5ffda51be0cd
be5b549e1c1112a0eb77893cc27c787703b306b4
refs/heads/master
2020-03-18T12:11:59.833602
2018-06-26T11:17:26
2018-06-26T11:17:36
134,657,804
0
0
null
null
null
null
UTF-8
Java
false
false
7,656
java
package com.findtech.threePomelos.home.presenter; import android.content.Context; import android.graphics.Bitmap; import android.view.animation.CycleInterpolator; import com.findtech.threePomelos.R; import com.findtech.threePomelos.database.OperateDBUtils; import com.findtech.threePomelos.entity.BabyInfoEntity; impor...
[ "18238818283@sina.cn" ]
18238818283@sina.cn
eec84bb67b3dd4570dc9f39badcf7b48f6901cc7
81f6f7871e464e96464710f5ee1e381047bf47c2
/Desktop/Gradle Packages/Shuftipro /shuftipro/src/main/java/com/shutipro/sdk/custom_views/CameraPreview.java
e14f59c4729148ad4d53d640d67747169386a75f
[]
no_license
Saudali009/learning
f2136508440188ff56401f7757f1433a936efe47
0a6b1cd58fa049d99cb274aaf712a24b6f19028d
refs/heads/master
2020-04-28T05:10:02.714614
2019-03-11T13:48:49
2019-03-11T13:48:49
175,009,419
0
0
null
null
null
null
UTF-8
Java
false
false
5,600
java
package com.shutipro.sdk.custom_views; import android.content.Context; import android.content.res.Configuration; import android.hardware.Camera; import android.util.Log; import android.view.SurfaceHolder; import android.view.SurfaceView; import com.shutipro.sdk.utils.Screens; import java.io.IOException; import java....
[ "support@shuftipro.com" ]
support@shuftipro.com
0482981843e05422d591f352f9d35196e1670461
962d9282046eb504f4027d9161e73b2729202e58
/Doctor Suggestion/Admin.java
f51e01b7afac67d73e9810c2b9e8c683862a6220
[]
no_license
MusabbirIslam/Doctor-Suggestion-Java-
15931d9131d27706b685db145040e3c272a669b3
3f2271cd90433cfd80a2c2b6d75f119d8a125fdb
refs/heads/master
2020-05-07T18:04:58.748784
2019-04-11T10:27:13
2019-04-11T10:27:13
180,753,675
1
0
null
null
null
null
UTF-8
Java
false
false
1,473
java
import java.awt.*; import java.awt.event.*; import javax.swing.*; import javax.swing.text.*; import java.text.*; import java.util.Arrays; class Admin extends JFrame implements ActionListener{ private JPasswordField passwordField; private JLabel passwordLavel; private JButton submitButton; private char [] passwor...
[ "islammusabbir@gmail.com" ]
islammusabbir@gmail.com
c89a7fa61113d25068a16207200e601dd17153db
5439076995fdcbbca55a80ea58317d37f66d8823
/TechAJain/src/patterns/decorator/ColumnPopupDecorator.java
f69d26a1bb5c84318328451a978ccc3ed130636f
[]
no_license
akasjain/datastructure
8b29b73ea1a18417b372a151e216252d90854c0a
b090eb8139c65fe30a84a767609e23c359e76fe5
refs/heads/master
2021-04-27T09:38:38.888301
2020-08-29T10:24:21
2020-08-29T10:24:21
122,518,810
0
0
null
null
null
null
UTF-8
Java
false
false
404
java
package patterns.decorator; public class ColumnPopupDecorator extends ColumnDecorator { public ColumnPopupDecorator(Report report) { super(report); } @Override public String getFirstColumnData() { return designPopup(super.getFirstColumnData()); } private String designPopup(St...
[ "akasjain@adobe.com" ]
akasjain@adobe.com
5a7f67007116faaaca66e9da7c1e49eeba561b22
2358ad6ebfaf9ccc04efde767873f9a1538d2e8b
/Module1/bean/AppProducts.java
54180da5868d97556807a03fa5531877d9e5e1e2
[]
no_license
Shwetha-PS/TY_CG_HTD_BangaloreNovember_JFS_ShwethaPS
1984724f491c4bd2e393581845beb43e91cdd041
491a6ca336def7c87baaab933964ab8e341b829e
refs/heads/master
2023-01-11T03:00:51.062160
2020-06-10T13:36:45
2020-06-10T13:36:45
225,846,329
0
0
null
2023-01-07T19:00:40
2019-12-04T11:02:02
Java
UTF-8
Java
false
false
181
java
package com.capgemini.module1.bean; import com.capgemini.module1.controller.HomePage; public class AppProducts { public static void main(String[] args) { HomePage.home(); } }
[ "shwethaps366@gmail.com" ]
shwethaps366@gmail.com
2c3e7dd5ea34602ab7890e1d2fbbadb5de2d6194
61236b5bd10434aaeba8802f935b861ca1b41624
/android/app/src/main/java/com/entertainerJatt/app/android/adapters/viewholder/RecyclerHeaderViewHolder.java
19486dd5d81a69c8cf515a19170f81c9c75cc1e5
[]
no_license
Entaitainerjatt/app
b2d0450e2bc6ee5af120e5508f3700ac2a2d877a
4c306e84075188befb30e1786f8437976092dc17
refs/heads/master
2021-01-20T10:18:24.833714
2017-05-05T06:42:18
2017-05-05T06:42:18
90,342,416
0
0
null
null
null
null
UTF-8
Java
false
false
294
java
package com.entertainerJatt.app.android.adapters.viewholder; import android.support.v7.widget.RecyclerView; import android.view.View; public class RecyclerHeaderViewHolder extends RecyclerView.ViewHolder { public RecyclerHeaderViewHolder(View itemView) { super(itemView); } }
[ "noreply@github.com" ]
Entaitainerjatt.noreply@github.com
ac3751a0d4a595880d8afadc67b975cc3c391723
dc653c8937a75b5de7cb3175a02b13585a04750b
/src/com/xiaweizi/design/p05_adapter/classadapter/VoltAdapter.java
6c05e193e149943679ca445cfe9c7506d3caf931
[]
no_license
xiaweizi/DesignPattern
34fcbda645fd4c806cab2dc0fbe5c95479ecdc98
3b7a6c225316ddd7560deeeb075d6ea39fa2d7e6
refs/heads/master
2020-03-22T17:35:21.878235
2018-07-13T10:17:43
2018-07-13T10:17:43
140,403,302
0
0
null
null
null
null
UTF-8
Java
false
false
379
java
package com.xiaweizi.design.p05_adapter.classadapter; /** * <pre> * author : xiaweizi * class : com.xiaweizi.design.p05_adapter.classadapter.VoltAdapter * e-mail : 1012126908@qq.com * time : 2018/07/11 * desc : * </pre> */ class VoltAdapter extends Volt220 implements Volt5{ @Over...
[ "1012126908@qq.com" ]
1012126908@qq.com
382fea74f8ca8be3b9d1ed8b9d7d6a93eaa89bcf
7094b816ca6eb0d4752de8a75f155311ed56e52b
/three_bears/quotor-academy/quotor-academy-biz/src/main/java/com/quotorcloud/quotor/academy/controller/TestController.java
5bd86cafc855a0d05a73e36605d621de8736d466
[]
no_license
a97659096/quotor
ebce8bb5a61d082abf882aabff4d7a5e167c4da7
7ebe9a3ef906110fb155114a199351dd033a3b17
refs/heads/master
2023-08-10T05:33:02.055405
2019-12-25T01:23:07
2019-12-25T01:23:07
229,431,115
0
0
null
2023-07-23T00:58:58
2019-12-21T13:27:33
Java
UTF-8
Java
false
false
767
java
package com.quotorcloud.quotor.academy.controller; import com.quotorcloud.quotor.academy.service.TestDataService; import com.quotorcloud.quotor.common.core.util.R; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.b...
[ "97659096@qq.com" ]
97659096@qq.com
8398e47b9dec45b2cce89f54d71cff0cff1c1a0f
1c98a3c20845a9d795e2b8acbc7fd0e6939c3aaa
/src/main/java/com/tiago/cursomc/repositories/CidadeRepository.java
9a9584d0ade8a2f3bd5f969d7448db00ffd916d2
[]
no_license
Tiagohs199/cursomc
b3e779620fba9dfae6c7b68973a59be26d4360c8
dc717e854f4fcf8aa55814fbc29c451b1e55b91a
refs/heads/master
2023-09-05T15:10:32.402300
2021-11-02T15:45:17
2021-11-02T15:45:17
385,086,048
0
0
null
null
null
null
UTF-8
Java
false
false
286
java
package com.tiago.cursomc.repositories; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; import com.tiago.cursomc.domain.Cidade; @Repository public interface CidadeRepository extends JpaRepository<Cidade, Integer> { }
[ "tiagohs.199@gmail.com" ]
tiagohs.199@gmail.com
0aad188fccf47aad3fd8e7aa89b44d5a0ce8c5a9
a730dfef2622fb77e790d150b601f0ad223f156d
/src/ru/dager/storage/AbstractFileStorage.java
f86e7f95dbf61b1b35896d444249e732ff9cd956
[]
no_license
DagerPro/basejava
5c6c8b2e5f2b82ea9be45fa03c98f7a4e0db19c1
32d210255d3e3a13fb81661273395f108065e80b
refs/heads/master
2020-04-05T18:19:38.710855
2019-01-05T21:49:13
2019-01-05T21:49:13
157,097,176
0
0
null
null
null
null
UTF-8
Java
false
false
3,011
java
package ru.dager.storage; import ru.dager.exeption.StorageException; import ru.dager.model.Resume; import java.io.*; import java.util.ArrayList; import java.util.List; import java.util.Objects; public abstract class AbstractFileStorage extends AbstractStorage<File> { private File directory; protected abstra...
[ "kdamir_ram@mail.ru" ]
kdamir_ram@mail.ru
e03eb45609a86eb46465f8a4b2a70d2a7dc2698b
30380706e9ca4d682c650725209e75f5a772a63f
/ALGO3/Cappo/tarea6/ejercicio1/Puntos1.java
b78a6806a1cec339d0254f1df6fe04d3e2a5e73c
[]
no_license
CamilaAlderete/Caja
333be260c29d217bdee318a9e6d90954d99ad759
c0ea1b675240c181c5a997859bb648a43d333d94
refs/heads/master
2023-08-21T21:00:47.193095
2021-04-24T01:14:38
2021-04-24T01:14:38
361,040,457
0
0
null
null
null
null
UTF-8
Java
false
false
469
java
/* G16 Luis Pereira Eric Ruiz Diaz Trabajo hecho con la participacion y cooperacion de G03 */ public class Puntos1 implements Comparable<Puntos1>{ public int x; public int y; Puntos1(int px,int py){ this.x=px; this.y=py; } @Override public int compareTo(final Puntos1 punto1){ if ( (t...
[ "alderetecami996@gmail.com" ]
alderetecami996@gmail.com
5eb41ff36b8d9650b11493154efc133ae84e9d40
1284d1bf621fd21afcc9bec698d471e86146395b
/java-fundamentals/src/com/adruy/collections/SortingMapByValue.java
1f7be607b90fb3f6e4823eb749331f796d5ff8ed
[]
no_license
adi4387/Learning
7d64aec3dc70f0558753674e5e3f4dfa3c6ac28d
d3d7651e23f32d95350c6e4d82a348f0e28a92ae
refs/heads/main
2023-03-04T10:44:02.466759
2023-02-10T04:18:45
2023-02-10T04:18:45
303,966,053
0
0
null
null
null
null
UTF-8
Java
false
false
1,480
java
package com.adruy.collections; // Java program to sort hashmap by values import java.util.HashMap; import java.util.LinkedHashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; public class SortingMapByValue { // function to sort hashmap by values public static Map<String, Intege...
[ "aditya.singh1@tesco.com" ]
aditya.singh1@tesco.com
de3c47aeceb00e4bb46744468ae2977c40b00faa
038eb3f5b90365c4f9f19d1f2db3f9baf4e047c2
/app/src/main/java/com/example/android/moviestrends/MainActivity.java
b0783a36c138c6daf6c4a56bf82007a5c8442efc
[]
no_license
pravs0510/MoviesTrends
f57cc88ac9a471c6fd3f21df0299de8eb4ecd44f
554f087c26350e95e0cbb4a51add5a4db0adfb96
refs/heads/master
2020-05-26T06:15:43.949862
2015-11-23T23:33:17
2015-11-23T23:33:17
41,284,139
0
0
null
null
null
null
UTF-8
Java
false
false
2,890
java
/* * Copyright (C) 2013 The Android Open Source Project */ package com.example.android.moviestrends; import android.content.Intent; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import com.example.android.moviestrends.AdapterPackage.ArrayObj; public class MainActivity extends AppCompa...
[ "avalur.praveena@gmail.com" ]
avalur.praveena@gmail.com