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
a66af1a2db1de29b054ebb550cc23921fd5a0c22
1d928c3f90d4a0a9a3919a804597aa0a4aab19a3
/java/ExoPlayer/2019/8/ExoMediaDrm.java
ca776267aa83f0561f9982dcb8d6103c44eb59d5
[]
no_license
rosoareslv/SED99
d8b2ff5811e7f0ffc59be066a5a0349a92cbb845
a062c118f12b93172e31e8ca115ce3f871b64461
refs/heads/main
2023-02-22T21:59:02.703005
2021-01-28T19:40:51
2021-01-28T19:40:51
306,497,459
1
1
null
2020-11-24T20:56:18
2020-10-23T01:18:07
null
UTF-8
Java
false
false
8,380
java
/* * Copyright (C) 2016 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
[ "rodrigosoaresilva@gmail.com" ]
rodrigosoaresilva@gmail.com
d62a42bea809d87ec63f5ed25d936c3a76ee9338
d4a865d00a85c9192d065f5e49013ffa66a13029
/app/src/main/java/com/frank/gameoflife/utils/GameConfig.java
d28e0cedfe0de37bc522dc19b32366c007651e7b
[]
no_license
FrankNT/GameOfLife
774227867c3c6abd8391319ac1780670eab271b7
f546cb6f6e05bec35e23565627b30e71093f2593
refs/heads/master
2021-01-10T17:16:22.276734
2016-04-25T16:37:55
2016-04-25T16:37:55
53,074,482
0
0
null
null
null
null
UTF-8
Java
false
false
238
java
package com.frank.gameoflife.utils; /** * Created by TrongPhuc on 2/27/16. */ public class GameConfig { public static final long SLEEP_TIME = 400L; public static final int WIDTH = 20; public static final int HEIGHT = 20; }
[ "mrtrongphuc@gmail.com" ]
mrtrongphuc@gmail.com
40c6dcc566db196b0a201ff50e3aa216aa025f7d
16558dfe1930c4cb7ec8a52ec086d1d1a7b1a565
/video_admin/src/main/java/org/n3r/idworker/RandomCodeStrategy.java
f3195e7543c98a81f4408777b54eaee676bc4c55
[]
no_license
xuhuiling00/spring_study
5a6559be624bc822a1f9e33ce0102aafa84cae16
47718ba84a84abdec9af62ed890c8a5e75d7334e
refs/heads/master
2023-03-13T19:18:10.186299
2021-03-06T14:35:36
2021-03-06T14:35:36
336,457,779
0
0
null
null
null
null
UTF-8
Java
false
false
140
java
package org.n3r.idworker; public interface RandomCodeStrategy { void init(); int prefix(); int next(); void release(); }
[ "68549255+xuhuiling00@users.noreply.github.com" ]
68549255+xuhuiling00@users.noreply.github.com
fb299df94b8bb8e1da6e05e0d6cef9f514aaa206
bdc69e64a6ef7a843a819fdb315eb4928dc77ce9
/library/src/main/java/com/eqdd/library/base/CommonActivity.java
f3060da23b5ba51a5e64ac2f0161d02dc75d132b
[]
no_license
lvzhihao100/Project
f1d3f0d535ceae42db9415b368b6fe9aa7ee6200
9d7fe365c92cc7500b89e2febcfd4c7a666d251a
refs/heads/master
2021-01-25T08:13:35.673848
2017-06-08T10:18:22
2017-06-08T10:18:22
93,736,138
0
0
null
null
null
null
UTF-8
Java
false
false
651
java
package com.eqdd.library.base; import android.os.Bundle; import com.eqdd.common.base.BaseActivity; import com.eqdd.library.bean.User; import com.eqdd.library.utils.GreenDaoUtil; /** * Created by lvzhihao on 17-5-30. */ public abstract class CommonActivity extends BaseActivity { public User user; private ...
[ "1030753080@qq.com" ]
1030753080@qq.com
6e7c5074ed3a4764890005c936297572372a33a9
4fdb8a52a5251c3757fa3b739c9b36138d7f9302
/CodingStudy/src/Chapter7/Question9/CircularArray.java
e989db02c433453f6d5f7bace7e9b37a886ad7d6
[]
no_license
dkyou7/CodingStudy
b9cca607a143430490e4496a439302a332a6e023
b4708b0877d92c1195339553b18b720d031b0853
refs/heads/master
2021-10-10T00:29:43.751342
2018-12-09T09:35:30
2018-12-09T09:35:30
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,216
java
package Chapter7.Question9; import java.util.Iterator; public class CircularArray<T> implements Iterable<T>{ private T[] items; private int head =0; public CircularArray(int size) { items = (T[])new Object[size]; } private int convert(int index) { if(index < 0) { index += items.length; } return (h...
[ "koola97620@nate.com" ]
koola97620@nate.com
fc2bd5e417e256cd6141d58a94b0742bef4589e7
128d8aaf1cbec7d40ef163fdac2a90d4a1bb9b6b
/src/day23_Arrays/ArraysUtility.java
f7e7887f62ed0a894ac5aedd64ee1339d20e6c7f
[]
no_license
ikramazim/JavaProgramming_B23
5131cf3d7ef254d5e94d5d9ab543f948220b9a65
f3dfbf5cc3e5bdc3f4a72300b96409ea96b84fc5
refs/heads/master
2023-06-25T14:37:28.695319
2021-07-26T17:09:33
2021-07-26T17:09:33
389,715,210
0
0
null
null
null
null
UTF-8
Java
false
false
1,950
java
package day23_Arrays; import java.util.Arrays; public class ArraysUtility { public static void main(String[] args) { // toString int[] array = {1,2,3,4,5,6}; System.out.println(array); System.out.println( Arrays.toString(array) ); String[] array2 = new String[5]; ...
[ "ikramazim@hotmail.com" ]
ikramazim@hotmail.com
2a75a706cde2179d824123d129cf06951fbfc66b
3e2d9327ea2b56e3e4bad33c1831c979d68087dc
/src/test/java/io/refugeescode/hackboard/web/rest/errors/ExceptionTranslatorIntTest.java
60f41343ff26cc54d4a5e52ba9ec82e4784c9ca7
[]
no_license
ImgBotApp/hackboard
96504cd52faec5beb9aaf8c9623d2a8e485c517b
85fe78964f0a8606ae90ac1579760b1791b2edda
refs/heads/master
2021-06-29T18:31:27.626471
2018-06-22T11:59:37
2018-06-22T11:59:37
138,436,233
6
2
null
2020-10-01T15:09:48
2018-06-23T21:56:42
Java
UTF-8
Java
false
false
6,513
java
package io.refugeescode.hackboard.web.rest.errors; import io.refugeescode.hackboard.HackboardApp; import org.junit.Before; 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.sprin...
[ "rainer.hahnekamp@gmail.com" ]
rainer.hahnekamp@gmail.com
1f83cd06fb02b09f8c9e4c35fc497d75ef494ffa
fb62880dab2320a60c408e319a87edc9ee9412c2
/app/src/main/java/orders/appup_kw/newsapp/adaper/ViewPagerAdapter.java
b36b601be59c104925a37f5ab409f887226f73d5
[]
no_license
Danila-software-engineer/News-app
af0b3d45ff48141e5b910ce72017828ea7b48eb1
b152296571a6df6c16fef5faa1f16c0be1b67978
refs/heads/master
2023-02-25T23:08:56.526573
2021-01-28T12:56:10
2021-01-28T12:56:10
332,864,125
0
0
null
null
null
null
UTF-8
Java
false
false
751
java
package orders.appup_kw.newsapp.adaper; import androidx.fragment.app.Fragment; import androidx.fragment.app.FragmentManager; import androidx.fragment.app.FragmentStatePagerAdapter; import java.util.List; import orders.appup_kw.newsapp.fragment.ScreenSlidePageFragment; public class ViewPagerAdapter extends FragmentSt...
[ "dendor0101@gmail.com" ]
dendor0101@gmail.com
84c64d825a04704ee20548803e4ca9365cf6112e
668f48c793537392b36a48e031edb27aa6ecd0aa
/src/smalljvm/classfile/instruction/store/LASTORE.java
3b640fde9b89c9584afa60c3e7d33ebbe884bd54
[]
no_license
linlinjava/smalljvm
f4bae2981be15e6e704a9276186cab0d7d2c4aad
7f3ebc0618522dac7580da7f20e8ba4e43bddbd3
refs/heads/master
2021-08-29T17:20:37.584110
2017-10-17T08:51:18
2017-10-17T08:51:20
114,249,025
7
2
null
null
null
null
UTF-8
Java
false
false
489
java
package smalljvm.classfile.instruction.store; import smalljvm.classfile.Instruction; /** * Created by junling on 2017/3/31. */ public class LASTORE implements Instruction { public byte op; @Override public byte opcode(){ return 0x50; } @Override public String strcode (){ r...
[ "linlinjavaer@gmail.com" ]
linlinjavaer@gmail.com
9cc385318b11474e2f3eb6b161b22f1b2f492e54
289ccab4d3f159ff8fbd3bb8ade62515c7c6f978
/fut-desktop-app-backend/fut-domain/src/main/java/com/fut/desktop/app/domain/UserDataInfo.java
edc9cc3baebf02aa33d379ef5076561929df833b
[]
no_license
Majed93/FUT-Desktop-App
36c39c395332d2a706996a1f06fec110185f9254
19e988bf8cd2817a50437bceedf3a28783cef7d6
refs/heads/master
2023-02-28T17:11:51.813057
2021-02-09T21:10:02
2021-02-09T21:10:02
284,470,498
0
1
null
2020-08-02T16:26:38
2020-08-02T13:48:27
Java
UTF-8
Java
false
false
448
java
package com.fut.desktop.app.domain; import com.fasterxml.jackson.annotation.JsonFormat; import lombok.Getter; import lombok.Setter; import java.util.List; @Getter @Setter @JsonFormat public class UserDataInfo { private String displayName; private String lastLogin; private String lastLogout; privat...
[ "majed_monem@hotmail.com" ]
majed_monem@hotmail.com
2179d16b15ec9901f2bf69d2e67c237a52a6e027
3e95ab54656a4a885f620327c805677320fc6a0c
/ConvertidorNumerosRomanos/src/convertidornumerosromanos/ConvertidorNumerosRomanos.java
f6a1bf6f02ffb54872ee14532e21e7d95e0b921f
[]
no_license
HerreraErick/ConvertidorNumerosRomanos
b04fa19fc860d0578b07efe4f6e36629c808a132
dbff6c19742ee2260d8497d2acc66a085dae4f20
refs/heads/master
2020-04-01T16:42:47.103556
2018-10-17T04:58:37
2018-10-17T04:58:37
153,394,288
0
0
null
null
null
null
UTF-8
Java
false
false
2,861
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 convertidornumerosromanos; import javax.swing.JOptionPane; /** * * @author Erick Ushiromiya */ public class Con...
[ "noreply@github.com" ]
HerreraErick.noreply@github.com
8f9b9399ab7ba033a6830f3cb6238835f98b45f0
c15a55caac69b0f99e54d8c15a2b0abf32e68099
/launcher3/src/main/java/com/android/launcher3/allapps/AllAppsContainerView.java
931e58dd6475c393fdc647d46fe403221b36c963
[ "Apache-2.0" ]
permissive
xiejin740640431/ElderlyLauncher
b13a85bc6e020884fb4191adbb0c0c05b8cdb434
13fe007563f6d3a8c51913f5cf06e54073ff464b
refs/heads/master
2020-04-09T06:34:02.428418
2018-12-03T02:18:20
2018-12-03T02:18:20
160,118,355
2
2
null
null
null
null
UTF-8
Java
false
false
24,562
java
/* * Copyright (C) 2015 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
[ "740640431@qq.com" ]
740640431@qq.com
34dfbcf3f2b9d96303c643845df3f9309a9d7f26
87417c4f1e1d29a9976c4795bf5703174c9cb719
/arrinv.java
4b99bfab7efbefd221c6b52e42b5789337741dbb
[]
no_license
Harshulagarwal/CB-CRUX-JAVA
2342461ef5a72f8c8243ef96c299dc8b14c52298
edeee2bdbcebcef499dbdefb07f8c11964df96a1
refs/heads/master
2020-03-22T19:44:52.805797
2018-07-11T08:59:09
2018-07-11T08:59:09
140,548,097
0
0
null
null
null
null
UTF-8
Java
false
false
521
java
package harshul; import java.util.Scanner; public class arrinv { public static void main(String[] args) { // TODO Auto-generated method stub inverse(); } public static void inverse() {int j=0;double s=0; Scanner obj=new Scanner(System.in); int n1=obj.nextInt(); int a[]=new int[n1]; f...
[ "noreply@github.com" ]
Harshulagarwal.noreply@github.com
06be3f747a34086c953bf88a29a16d232934d23b
efa88f2206d92262c5aeced76f2e1ff4fa9670c1
/src/studio/hdr/lms/dao/IBaseHibernateDAO.java
a324534ce8a1659e87f664580f41c9af59257c51
[]
no_license
hdr33265/LMS
961f179dbaeaf4fb356f8218f9e87cb7261778ec
fe46a6d7cc8b5138aa7b2b409c34390fedada5ad
refs/heads/master
2016-08-11T01:03:30.749757
2013-03-31T04:39:16
2013-03-31T04:39:16
null
0
0
null
null
null
null
UTF-8
Java
false
false
218
java
package studio.hdr.lms.dao; import org.hibernate.Session; /** * Data access interface for domain model * @author MyEclipse Persistence Tools */ public interface IBaseHibernateDAO { public Session getSession(); }
[ "huangdunren@sina.com" ]
huangdunren@sina.com
fd2f46a4a2ec55f18023a3db3e74f3f072c436d3
829a84ecd7ad2782591e7a54fdbff6af07546728
/src/polymorphism/music/Wind.java
481cd6eafa9bb1210f3e5c8b3110480db4cf6895
[]
no_license
oubl23/thinkinginjava
24a3c8d9b2e96f52b289b9ad42a6f1762e1cd017
b1be7e063b3332d151db1a2afa0be5b69656f5fc
refs/heads/master
2021-01-11T11:17:55.755828
2016-11-17T14:21:48
2016-11-17T14:21:48
72,738,511
0
0
null
null
null
null
UTF-8
Java
false
false
186
java
package polymorphism.music; /** * Created by dabao on 2016/10/27. */ public class Wind extends Instrument { public void play(Note n) { System.out.println("Wind.play()" + n); } }
[ "1059210376@qq.com" ]
1059210376@qq.com
e012eeeb25a369f2eaa80bf786e939bfb2b45485
678eba9d03b2404bda49eeb8f979a8ca793246cf
/game/src/main/java/lujgame/anno/net/packet/NetPacketProcImpl.java
1d02915be6dbd199cb61e599bf9453bbc8c53859
[]
no_license
lowZoom/LujGame
7456b6c36ce8b97a5b755c78686830bad3fb47cd
5675751183e62449866317f17c63e21a523e6176
refs/heads/master
2020-04-05T08:53:27.638143
2018-03-25T10:12:55
2018-03-25T10:12:55
81,704,611
2
2
null
null
null
null
UTF-8
Java
false
false
8,885
java
package lujgame.anno.net.packet; import com.google.common.collect.ImmutableMap; import com.squareup.javapoet.ClassName; import com.squareup.javapoet.FieldSpec; import com.squareup.javapoet.JavaFile; import com.squareup.javapoet.MethodSpec; import com.squareup.javapoet.ParameterizedTypeName; import com.squareup.javapoe...
[ "david_lu_st@163.com" ]
david_lu_st@163.com
9532663c1b60362815190be04322537f0d6be313
74e72d6e52673882b276e8b296a037481f490abc
/src/com/manage/service/impl/OrderService.java
2f0dcc2c6b6d4fd2c5645a36d5dd97e6713cf011
[]
no_license
javalipan/CS_ShopManage
22524b2c4220bbad8ba06b014bb51a5a7a55834f
5a7ed1094265f76c3ff44b9fe77c5caed24f01ce
refs/heads/master
2021-08-07T23:38:35.713586
2020-04-11T13:31:05
2020-04-11T13:31:05
150,222,860
0
0
null
null
null
null
UTF-8
Java
false
false
3,191
java
package com.manage.service.impl; import java.util.List; import java.util.Map; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.manage.dao.mapper.OrderMapper; import com.manage.dao.model.Order; import com.manage.dao.model.OrderExample; ...
[ "javalipan@qq.com" ]
javalipan@qq.com
0756e3c70e0c50c93b6e7978a4643814b7e2ea94
94039628301a2c19604cfba4aaeeec55c2af21a8
/src/main/java/com/camelone/excalibur/FileMessageStore.java
77a75189dec3577b4a3b1194d6c15d65831de38a
[]
no_license
hzbarcea/camelone
3399b5ad73018de0b10deb18834bd2d582daa1e4
0b5448321b107dc1f51ddf83aaf98283472bc4db
refs/heads/master
2021-01-01T20:12:28.329750
2013-06-12T19:03:45
2013-06-12T19:03:45
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,044
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...
[ "hzbarcea@gmail.com" ]
hzbarcea@gmail.com
ef353da7d95b69288982150cf50d15f97ba1c936
076634b253da21a5d3ad40b30790e5f441313c93
/VotingCentral/JavaSource/com/votingcentral/model/enums/VCUserLinkStateEnum.java
2c859d7265d2f0f88fa3027bc38db5c40dfcf176
[]
no_license
hnalagandla/votingcentral
ac5cc64cbaa8910ed8921f557715720e423a829a
bb6570fea2ee0e90ebef9c0cfcda2471f9312acf
refs/heads/master
2021-01-13T02:08:18.239901
2014-01-23T21:32:59
2014-01-23T21:32:59
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,627
java
/* * Created on May 22, 2007 * * TODO To change the template for this generated file go to * Window - Preferences - Java - Code Style - Code Templates */ package com.votingcentral.model.enums; import java.util.Iterator; import java.util.ListIterator; import com.votingcentral.util.enums.BaseEnum; /*...
[ "harish_ng@yahoo.com" ]
harish_ng@yahoo.com
539f5c93c6a0ee46079a2ba9bbebf8076694b19f
be73270af6be0a811bca4f1710dc6a038e4a8fd2
/crash-reproduction-moho/results/XWIKI-14227-4-12-NSGA_II-WeightedSum:TestLen:CallDiversity/com/xpn/xwiki/store/migration/AbstractDataMigrationManager_ESTest.java
e4e3327e0084785f50b9587875b895c60cdee49b
[]
no_license
STAMP-project/Botsing-multi-objectivization-using-helper-objectives-application
cf118b23ecb87a8bf59643e42f7556b521d1f754
3bb39683f9c343b8ec94890a00b8f260d158dfe3
refs/heads/master
2022-07-29T14:44:00.774547
2020-08-10T15:14:49
2020-08-10T15:14:49
285,804,495
0
0
null
null
null
null
UTF-8
Java
false
false
592
java
/* * This file was automatically generated by EvoSuite * Sat Jan 18 18:29:39 UTC 2020 */ package com.xpn.xwiki.store.migration; import org.junit.Test; import static org.junit.Assert.*; import org.evosuite.runtime.EvoRunner; import org.evosuite.runtime.EvoRunnerParameters; import org.junit.runner.RunWith; @RunWith...
[ "pouria.derakhshanfar@gmail.com" ]
pouria.derakhshanfar@gmail.com
442f9b40a7d711bbd96253c2b30c4509a1c6782a
ca8843436b3151ed6de8053fb577446a7ae2e424
/src/main/java/org/healthship/jira/client/model/ContainerForRegisteredWebhooks.java
9618ec17d4768523a2ca46b402909b02db0a49dd
[]
no_license
HealthSHIP/hs-os
f69c08e4af1dac68464eecbdefb000c4fda806b3
a00c64940076437f3d110d5d8ac8b6316d4a79c7
refs/heads/master
2022-12-28T02:35:04.714619
2020-10-16T13:02:39
2020-10-16T13:02:39
304,629,073
0
0
null
null
null
null
UTF-8
Java
false
false
4,290
java
/* * Copyright (c) 2020 Ronald MacDonald <ronald@rmacd.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 requi...
[ "ronald@rm-mba.local" ]
ronald@rm-mba.local
e5595ba83952d2febe3964a1f04b1a884b273674
7de3c619f6b10f2b36ccdf5f4e864bf0d3e3c1f5
/app/src/main/java/com/nerdcastle/nazmul/pettycash/Util.java
93a95a2f48d77afe3c2586a0838440fa575a9482
[]
no_license
mdNazmulHasan/PettyCash
e891d859103758da7b608feb819fb481eb1033f0
1ccafbe29d014506925177950d190e8e3a5374eb
refs/heads/master
2021-01-21T13:41:20.548124
2016-05-03T05:21:39
2016-05-03T05:21:39
53,309,990
0
0
null
null
null
null
UTF-8
Java
false
false
190
java
package com.nerdcastle.nazmul.pettycash; /** * Created by Nazmul on 3/8/2016. */ public class Util { public static final String baseURL="http://dotnet.nerdcastlebd.com/PettyCash/"; }
[ "najmul.hasan10@gmail.com" ]
najmul.hasan10@gmail.com
b3c4e1057df2b4a4e8ddfa380b551d5ec6747b9c
7e90a7dcf87b77e7f38659aea946551162cf6a40
/modules/flowable-app-rest/src/main/java/org/flowable/rest/servlet/ContentDispatcherServletConfiguration.java
9bc416bc038ebeeebead912eaa008293a1bdb28a
[ "Apache-2.0" ]
permissive
propersoft-cn/flowable-engine
a09e8b2493bb1c4bbdbf83bad085135a317c80ee
fc31003d2f32f6954565502dc8a4cc505500c147
refs/heads/proper-6.2.1
2021-05-09T21:56:51.854651
2018-11-15T08:37:30
2018-11-15T08:37:30
118,738,227
0
8
Apache-2.0
2019-06-06T01:49:22
2018-01-24T08:49:14
Java
UTF-8
Java
false
false
1,139
java
/* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed...
[ "tijs.rademakers@gmail.com" ]
tijs.rademakers@gmail.com
e9c818e643c6a63ecd95f651d8c88a321ba4a6fe
078fa13d52ccbbb8aade6dbd5206078cfff50003
/deweyHis/src/com/dewey/his/param/dao/ChargeRuleSettingDAO.java
fa88b6252567e70792a627c56bab27dff65da643
[]
no_license
kevonz/dewey
c30e18c118bf0d27b385f0d25e042c76ea53b458
b7155b96a28d5354651a8f88b0bd68ed3e1212a9
refs/heads/master
2021-01-18T08:55:34.894327
2012-10-27T08:59:10
2012-10-27T08:59:10
null
0
0
null
null
null
null
UTF-8
Java
false
false
633
java
package com.dewey.his.param.dao; import org.hibernate.Query; import org.springframework.stereotype.Repository; import com.dewey.his.param.model.ChargeRuleSetting; import common.base.dao.hibernate3.Hibernate3Dao; @Repository("chargeRuleSettingDAO") public class ChargeRuleSettingDAO extends Hibernate3Dao{ public Ch...
[ "kevonz@live.com" ]
kevonz@live.com
583d176d05fbe8efa2bc7a099839833e140ea7be
689a573e6f76d06f8ee7dc992b114d266027c0cf
/mobile/src/main/java/com/example/kimbe/sunshine/MainActivity.java
89a255d4a51f77c0fafc94046fbef23ff9811b82
[]
no_license
littlesparksf/Sunshine
78ce14a4c760e55467ae23d0f557d77d03f650ea
542a1f64f45f8b7b77001dfa7c4dfccd3cab8a02
refs/heads/master
2021-01-10T08:44:58.944681
2016-04-09T04:57:46
2016-04-09T04:57:46
55,826,824
0
0
null
null
null
null
UTF-8
Java
false
false
1,945
java
/* * Copyright (C) 2014 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by app...
[ "kimberly@littlesparkmedia.com" ]
kimberly@littlesparkmedia.com
0ef94a74f865cf6fd4c200af6ce559a5c2483801
465d34afbe38feba4c5b9fb37f78306a0559962e
/warcraft/src/br/unitins/wow/dao/ItemDAO.java
3231538061171278f3eb804f0984b2d533821490
[]
no_license
zhydani/projeto-topicos-jsf
d370de0984ab93d94baef75de8851d2a849d85a9
ec7020bec48c1eb203804ad703bd5efb7c8db80f
refs/heads/master
2023-08-08T14:40:39.993536
2019-11-20T02:40:15
2019-11-20T02:40:15
222,834,989
0
0
null
2023-07-22T22:06:28
2019-11-20T02:38:08
Java
UTF-8
Java
false
false
4,383
java
package br.unitins.wow.dao; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.util.ArrayList; import java.util.List; import br.unitins.wow.model.Classe; import br.unitins.wow.model.Origem; import br.unitins.wo...
[ "noreply@github.com" ]
zhydani.noreply@github.com
6c2585af490b4f5fc2585ff2e0f55adb92b14896
0b93651bf4c4be26f820702985bd41089026e681
/modules/dfp_appengine/src/main/java/com/google/api/ads/dfp/jaxws/v201802/ContentMetadataTargetingErrorReason.java
5394f361a5a96278065b3b4c7d3de2ccd06cd15b
[ "Apache-2.0" ]
permissive
cmcewen-postmedia/googleads-java-lib
adf36ccaf717ab486e982b09d69922ddd09183e1
75724b4a363dff96e3cc57b7ffc443f9897a9da9
refs/heads/master
2021-10-08T16:50:38.364367
2018-12-14T22:10:58
2018-12-14T22:10:58
106,611,378
0
0
Apache-2.0
2018-12-14T22:10:59
2017-10-11T21:26:49
Java
UTF-8
Java
false
false
1,986
java
// Copyright 2018 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law...
[ "api.cseeley@gmail.com" ]
api.cseeley@gmail.com
18bb3495c807309061322bd459e96c99feb609f2
50ee0e449f842c70c756bcca1af845dfe3701072
/src/Campaign.java
2aa9249071c8e0437795f877fc2df36ca0d8c24e
[]
no_license
andvlin/ExHTTPClient
6f78e1ea661012e02711719a12f31cce3390e63f
c7e176292b65d89d663175fadb8c3b2b59f091d6
refs/heads/master
2020-03-23T10:09:25.616938
2018-07-18T11:53:42
2018-07-18T11:53:42
141,428,258
0
0
null
null
null
null
UTF-8
Java
false
false
428
java
public class Campaign { public float cpm; public int id; public String start_date; public String name; public int clicks; public int views; public Campaign(float cpm, int id, String name, String start_date) { this.cpm = cpm; this.id = id; this.name = name; this.start_date = start_date; } public Str...
[ "andyvlin@gmail.com" ]
andyvlin@gmail.com
62c203dd3496eb5e87c432f8fc2943d82b768bf1
c5ca42f9de6a0d743bf2f9b4f3af8d391741b6fe
/SistemaConsultas3/src/main/java/br/ufscar/dc/dsw/controller/ProfissionalRestController.java
a44968f1dee7cf8b906e98fe40f0feb725068fbe
[]
no_license
amandapmn/Web1
f44f9d661a82f81df74e88fb0c56bc8507db9e93
14d6b422200540baac73568b033452508568de11
refs/heads/main
2023-06-08T06:30:48.261714
2021-06-30T10:01:08
2021-06-30T10:01:08
366,761,844
0
2
null
2021-05-25T12:13:57
2021-05-12T15:23:28
Java
UTF-8
Java
false
false
4,462
java
package br.ufscar.dc.dsw.controller; import java.io.IOException; import java.util.List; import java.util.Map; import org.json.simple.JSONObject; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springf...
[ "nathan.oliveirasc17@gmail.com" ]
nathan.oliveirasc17@gmail.com
db4eb1a2466d65a521529302cbbb80de820febdc
b494132d4e9574fba3598a39153900911e07931c
/LeagueManager_Project2/src/LeagueManager.java
cf504bd54a35ddc5e1c1237ee975c8a2ce7b4a20
[]
no_license
Taflah/LeagueManager
1f569ceeefdf95f89c1e31ede14125baef1dccb4
36d1f86e878a17ea403b04be6a259a11c6a80dec
refs/heads/master
2021-05-11T14:47:12.220902
2018-01-16T16:50:44
2018-01-16T16:50:44
117,712,160
0
0
null
null
null
null
UTF-8
Java
false
false
469
java
import com.teamtreehouse.model.Player; import com.teamtreehouse.model.Players; import com.teamtreehouse.model.Prompter; import java.io.IOException; public class LeagueManager { public static void main(String[] args) throws IOException { Player[] players = Players.load(); Prompter prompter = new ...
[ "noreply@github.com" ]
Taflah.noreply@github.com
43eed3bf2da6fc703657d19521c9fca9d6a75460
02ea43c90973437de5e9776b48e0ecbd5e54d790
/src/DecoratorPattern/Decorator.java
df5be83e6e0a5ab71e28e008f78874928be625bb
[]
no_license
glumes/DesignPattern
bdc68ed2620e79dc0c63611ad65456a5e8a09644
5af79a2aa92b3fac247aa80db2a7290b8ed965c5
refs/heads/master
2021-01-12T12:16:20.277141
2017-01-18T03:04:07
2017-01-18T03:04:07
72,402,820
0
1
null
null
null
null
UTF-8
Java
false
false
334
java
package DecoratorPattern; /** * Created by zhaoying on 2016/12/16. */ public abstract class Decorator implements Component{ private Component mComponent ; public Decorator(Component mComponent) { this.mComponent = mComponent; } @Override public void operate() { mComponent.opera...
[ "zhaoying9402@gmail.com" ]
zhaoying9402@gmail.com
33a5f669f74f1f39f25ebb267620108ebbe3a4c8
8233fd0f7800f7341987ec4072867412c64d133c
/server/common/dao/src/main/java/org/kaaproject/kaa/server/common/dao/impl/LogSchemaDao.java
101e25750dc97c96ac66a679313c9b8e1b8b1214
[ "Apache-2.0" ]
permissive
aiyi/kaa
73e2ab0216f4d2406e82d8e3870c1ea02fcb9903
0ba0ee9d5513751e1cf25baa33f273fb4e863acd
refs/heads/master
2020-12-24T13:52:57.960839
2014-08-04T14:55:22
2014-08-04T15:03:26
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,688
java
/* * Copyright 2014 CyberVision, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agr...
[ "ashvayka@cybervisiontech.com" ]
ashvayka@cybervisiontech.com
a1cdf57488810f7cf1b16e923369a7db7e309306
5fe8047266a1147e6ce5a2ce21be93468db0dd4f
/src/test/java/com/example/library/mode/repository/BookRepositoryTest.java
4c4aa9646ae5a44c2a578fa729cf7368e6afe818
[]
no_license
caiusmuniz/library-api
1963d81eeb501ffe05623403c4117cbc94cafef3
ca377def05a7f0ee6cd8da0d5113119f0e8cbbf1
refs/heads/master
2023-05-27T21:22:13.113709
2021-06-10T18:12:18
2021-06-10T18:12:18
375,771,785
0
0
null
null
null
null
UTF-8
Java
false
false
2,838
java
package com.example.library.mode.repository; import com.example.library.model.entity.Book; import com.example.library.model.repository.BookRepository; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.springframework.beans.factory...
[ "caius.muniz@gmail.com" ]
caius.muniz@gmail.com
5198f3bc491c5e942a2e51ddb14e85325bed5537
31b23283e8f6be897b4dfc79e615acec1c39b234
/src/main/java/com/obd/mapper/pid/PIDInformationMaker.java
e31d18e68aa732e62e4df2ffeea324970fbaaba8
[ "Unlicense" ]
permissive
deshanchathusanka/obd-java-kit
135cbd56373a587a2e6fd4171f771d5e83f41cdd
81d4b85d62f016a2489c86d3a5bfd434d504bb36
refs/heads/master
2022-05-26T13:00:38.186311
2020-03-01T06:26:51
2020-03-01T06:26:51
242,566,718
0
0
Unlicense
2022-05-20T21:28:46
2020-02-23T18:13:49
Java
UTF-8
Java
false
false
9,460
java
package com.obd.mapper.pid; import com.obd.mapper.VehicleDetailsStoreMan; import com.obd.mapper.operation.HexUtils; import org.apache.commons.codec.binary.Hex; /** * Created by Deshan on 10/13/16. */ public class PIDInformationMaker { String[] obdRequirmentArray={ "", "OBD II (Californi...
[ "d.chathusanka@gmail.com" ]
d.chathusanka@gmail.com
d842ee8a24379c55fb7009732f444eca6a2fe989
6b544d1fb7640e1f81916ba2f8f9083f9b77ced5
/KitapOneriUzmanSistem_1_1/src/kitaponeriuzmansistem/KitapOneriUzmanSistem.java
a6658263ef452e4c06c2678c1d988a30e5f5e5ab
[]
no_license
muhendisaysee/kitap-oneri-uzman-sistem
551f3019f4c8be0ca05d65998a05d4ffe982f009
337efe08146680d57c8aceea91f135c9bb133638
refs/heads/master
2021-03-26T17:33:54.943706
2020-03-16T14:48:25
2020-03-16T14:48:25
247,726,462
2
0
null
null
null
null
UTF-8
Java
false
false
949
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 kitaponeriuzmansistem; import javafx.application.Application; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; impor...
[ "56216719+muhendisaysee@users.noreply.github.com" ]
56216719+muhendisaysee@users.noreply.github.com
2ec50bf8350840b39d47e66b549e57272103a60b
6baa09045c69b0231c35c22b06cdf69a8ce227d6
/modules/adwords_appengine/src/main/java/com/google/api/ads/adwords/jaxws/v201603/cm/AdCustomizerFeedServiceInterfaceget.java
b1c9212cdf0f2708cf551c741fe13f6f2dbea6d2
[ "Apache-2.0" ]
permissive
remotejob/googleads-java-lib
f603b47117522104f7df2a72d2c96ae8c1ea011d
a330df0799de8d8de0dcdddf4c317d6b0cd2fe10
refs/heads/master
2020-12-11T01:36:29.506854
2016-07-28T22:13:24
2016-07-28T22:13:24
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,920
java
package com.google.api.ads.adwords.jaxws.v201603.cm; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * * Returns a list of AdCustomizerFeeds that meet the s...
[ "jradcliff@users.noreply.github.com" ]
jradcliff@users.noreply.github.com
a9d47502c9819fd412b40fbd416f65d755800d61
27e5eb73bafde21167cd66b61a91ff27e39c639b
/src/main/java/org/fergonco/music/mjargon/model/SongLine.java
f7aed1d9379c29ae7c1a028952b27469ce53fe41
[]
no_license
fergonco/MusicJargon
1ef1a2010dd89004a135dcf6db7d402ade4b79a0
c5de7d5e5ba078570c58bb7108b49e32cff0f3b5
refs/heads/master
2021-01-20T11:47:51.983436
2019-04-14T20:15:47
2019-04-14T20:15:47
101,690,324
1
0
null
null
null
null
UTF-8
Java
false
false
365
java
package org.fergonco.music.mjargon.model; import org.fergonco.music.midi.Dynamic; public interface SongLine { boolean isBarline(); Bar[] getBars(); boolean isTempo(); double getTempo(); boolean isRepeat(); int getTarget(); boolean isDynamics(); Dynamic[] getDynamics(); void validate(Model model, int...
[ "fernando.gonzalez@geomati.co" ]
fernando.gonzalez@geomati.co
8d1f07fc9519c26056369da183123830ee7b0f56
a7bd32eac5b9923256ab273a4d1be5bc1871ab97
/ATM livro java como programar deitel/src/Transaction.java
85a799d804e6e520729f9b6051ed94d53f9a7cf6
[]
no_license
rogertecnic/workspace-java
e17f0ac604fb7a48b48e2652d2781113922ccef1
d626d62f082fbf3683f9cab29dcab50e42e1ed8f
refs/heads/master
2020-07-02T14:27:38.262840
2017-05-06T01:07:14
2017-05-06T01:07:14
74,300,014
0
0
null
null
null
null
UTF-8
Java
false
false
2,246
java
// Transaction.java // Abstract superclass Transaction represents an ATM transaction public abstract class Transaction { private int accountNumber; // indicates account involved private Screen screen; // ATM's screen private BankDatabase bankDatabase; // account info database // Transaction const...
[ "roger_tecnic@hotmail.com" ]
roger_tecnic@hotmail.com
b79c630ce8c52522a282b1e43e8e434bbe49e970
1cbefa0d6358368cd40c130eabb4ab7120822c63
/app/src/androidTest/java/com/smasite/mimascota/ExampleInstrumentedTest.java
79b9a22c37f99b243064730421a75ce2e393094f
[]
no_license
JuanAraiza/MiMascota130517
273c506750e67330adc24289a3894f69ec8945d2
f58505d579bdcf991823c7a62465703c44e7a0cd
refs/heads/master
2020-12-30T15:54:34.149009
2017-05-13T15:22:24
2017-05-13T15:22:24
91,183,447
0
0
null
null
null
null
UTF-8
Java
false
false
746
java
package com.smasite.mimascota; 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 Androi...
[ "jaraza15@gmail.com" ]
jaraza15@gmail.com
7b5410e4c114715ee964d1effead688df473ec1c
5887acadd7a0f2e042c39338e41e3eb962398b16
/Discrete Mathematics/Lab05_Automata/A_WordAcceptDka.java
5d84c75b9d8867f1102a8acd8bf10bd9f58a6200
[]
no_license
andrey-star/itmo-labs
bd23560c2873245cfde96b9b5d49766036850740
79bb67dc2a4134355dec9fa8ce5f82840fc72a99
refs/heads/master
2023-01-06T12:11:26.824877
2022-12-28T20:08:46
2022-12-28T20:08:46
218,313,068
6
1
null
null
null
null
UTF-8
Java
false
false
1,428
java
import java.io.*; import java.util.Arrays; public class A_WordAcceptDka { public static void main(String[] args) throws IOException { BufferedReader in = new BufferedReader(new InputStreamReader(new FileInputStream("problem1.in"))); String s = in.readLine(); String[] line = in.readLine().trim().split(" +"); ...
[ "fastrazor2000@gmail.com" ]
fastrazor2000@gmail.com
ef9f5dce3bb64710005b491a61755e6165d444f5
814169b683b88f1b7498f1edf530a8d1bec2971f
/mall-search/src/main/java/com/bootx/mall/config/ElasticSearchConfig.java
3352bddef2a99219af39d31d557d5bf2b42c034b
[]
no_license
springwindyike/mall-auth
fe7f216c7241d8fd9247344e40503f7bc79fe494
3995d258955ecc3efbccbb22ef4204d148ec3206
refs/heads/master
2022-10-20T15:12:19.329363
2020-07-05T13:04:29
2020-07-05T13:04:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
833
java
package com.bootx.mall.config; import org.apache.http.HttpHost; import org.elasticsearch.client.RequestOptions; import org.elasticsearch.client.RestClient; import org.elasticsearch.client.RestHighLevelClient; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuratio...
[ "a12345678" ]
a12345678
8297f115791bec08dee79fd792e4688359a9e649
c885ef92397be9d54b87741f01557f61d3f794f3
/results/Gson-16/com.google.gson.internal.$Gson$Types/BBC-F0-opt-70/tests/27/com/google/gson/internal/$Gson$Types_ESTest.java
73b81795572fde6821b337b02ebac12898581ef6
[ "CC-BY-4.0", "MIT" ]
permissive
pderakhshanfar/EMSE-BBC-experiment
f60ac5f7664dd9a85f755a00a57ec12c7551e8c6
fea1a92c2e7ba7080b8529e2052259c9b697bbda
refs/heads/main
2022-11-25T00:39:58.983828
2022-04-12T16:04:26
2022-04-12T16:04:26
309,335,889
0
1
null
2021-11-05T11:18:43
2020-11-02T10:30:38
null
UTF-8
Java
false
false
637
java
/* * This file was automatically generated by EvoSuite * Sat Oct 23 04:58:28 GMT 2021 */ package com.google.gson.internal; import org.junit.Test; import static org.junit.Assert.*; import org.evosuite.runtime.EvoRunner; import org.evosuite.runtime.EvoRunnerParameters; import org.junit.runner.RunWith; @RunWith(EvoR...
[ "pderakhshanfar@serg2.ewi.tudelft.nl" ]
pderakhshanfar@serg2.ewi.tudelft.nl
17afc8a5b44523a307caf2feeaa45af0bd9c5072
19e6ca9b34a063985f417ecf02e60a08fa56d50d
/service-azure/src/main/java/com/example/demo-azure-spring-cloud/SourceExample.java
7eef2c10f2365ccac7d6da4616331e23e947a35a
[]
no_license
fabianorosa1/demo-azure-spring-cloud
5bafe27f1985512a3bbbfa5e1f4f5b2891476a0c
2461c18b4150f6e2c15985f45c121027c9b7f044
refs/heads/master
2020-04-06T18:19:58.423106
2018-11-15T10:36:17
2018-11-15T10:36:17
157,694,313
0
0
null
null
null
null
UTF-8
Java
false
false
879
java
package com.example.demo-azure-spring-cloud; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.cloud.stream.annotation.EnableBinding; import org.springframework.cloud.stream.messaging.Source; import org.springframework.messaging.support.GenericMessage; import org.springframework...
[ "fabianorosa1@gmail.com" ]
fabianorosa1@gmail.com
67dbc5cf3b61f9f66e309c0394f30deb9f576748
13dd186b1a87191c91e6f16375e9fa60962e2037
/server/sundeinfo.core/src/main/java/com/sundeinfo/core/token/Token.java
5f3be98df4cf680bfb5730f35609dece96d1dd4a
[]
no_license
libiao1205/WenXin
b019233e0eca4be5643491a85a085ea5fa3a09e5
ed7dc18f10a69bb04cb4eebf0a2211c018fb5f6f
refs/heads/master
2022-11-30T12:42:06.616151
2020-08-18T10:36:28
2020-08-18T10:36:28
286,409,937
0
1
null
null
null
null
UTF-8
Java
false
false
307
java
package com.sundeinfo.core.token; import org.springframework.web.bind.annotation.Mapping; import java.lang.annotation.*; @Target({ElementType.METHOD,ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented @Mapping public @interface Token { TokenType[] types() default {TokenType.ALL}; }
[ "15137327109@163.com" ]
15137327109@163.com
0ed76af0db04d587dd937b3151829b6c73fc5743
685e3097d073a5a948e26f15936897a126cfabdd
/FindAnagramMappings/Solution.java
0d0921cc1da4d7f00213f98c456e6429146824d7
[]
no_license
flyPisces/LeetCodeSolution
2ae0b48c149bb1eb20c180647feaabd392120e4e
e4399fc8791491082934b634a60caa2a1e350fbd
refs/heads/master
2021-01-10T22:36:23.241283
2020-08-22T07:01:38
2020-08-22T07:01:38
69,706,033
1
0
null
null
null
null
UTF-8
Java
false
false
1,056
java
package FindAnagramMappings; import java.util.*; /** * Given two lists Aand B, and B is an anagram of A. B is an anagram of A means B is made by * randomizing the order of the elements in A. We want to find an index mapping P, from A to B. A mapping P[i] = j means the ith element in A appears in B at index j. ...
[ "!Pat381mort686" ]
!Pat381mort686
ae80460a1f5a3a5abda8976a2413a425365271e7
fc459675a329244b920bdc37375f72286c0f3d2e
/src/main/java/com/merlin/merlinsblog/po/Type.java
dba4208486bdfeb2f6bc5399313729aabd331734
[ "MIT" ]
permissive
DustMerlin/MerlinsBlog
2a6f8fa8194b9400493086b718af3df86ca17f81
48437c1dbc723b4ef1eb0b4d369feba1ed377cc0
refs/heads/master
2023-02-12T09:39:15.858972
2021-01-08T09:13:03
2021-01-08T09:13:03
295,615,783
1
0
null
2020-09-23T08:27:34
2020-09-15T04:38:30
Java
UTF-8
Java
false
false
2,107
java
package com.merlin.merlinsblog.po; import javax.persistence.*; import javax.validation.constraints.NotBlank; import java.util.ArrayList; import java.util.List; //import org.hibernate.validator.constraints.NotBlank; //此处的校验功能已废弃,需要使用以下依赖才能完成相应的功能 //import javax.validation.constraints.NotBlank; 使用这种写法 //博客地址 caorui.net/...
[ "1723978237@qq.com" ]
1723978237@qq.com
47ac1f768e15dda8bf12fef69d6b71b8115362fc
2ea623cad50e022623f4189ad638abae49e205ee
/clients/1.28.0/google-api-services-servicebroker/v1alpha1/com/google/api/services/servicebroker/v1alpha1/ServiceBroker.java
2c30073b23039ced1ac73eae6bc5ce80cee9046a
[ "Apache-2.0" ]
permissive
andrey-qlogic/google-api-java-client-services
88f5f9bbecd422f9ed133c59a982f5b4189589c8
dbdb7736dafa70c9af5f19ebda02d51aed4892b1
refs/heads/master
2020-04-22T17:10:45.164078
2019-02-13T15:14:15
2019-02-13T15:14:15
170,531,797
1
0
null
2019-02-13T15:32:53
2019-02-13T15:32:53
null
UTF-8
Java
false
false
151,499
java
/* * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under t...
[ "noreply@github.com" ]
andrey-qlogic.noreply@github.com
9cd4378f909362bf2d78c2443bbfeeefb113a02b
896cca57024190fc3fbb62f2bd0188fff24b24c8
/2.7.x/choicemaker-cm/choicemaker-modeling/com.choicemaker.cm.matching.en.us.train/src/main/java/com/choicemaker/cm/matching/en/us/train/name/NameGrammarTrainer.java
27f0ffbdb61b4227ff349e8e9fe7f2e56138e195
[]
no_license
fgregg/cm
0d4f50f92fde2a0bed465f2bec8eb7f2fad8362c
c0ab489285938f14cdf0a6ed64bbda9ac4d04532
refs/heads/master
2021-01-10T11:27:00.663407
2015-08-11T19:35:00
2015-08-11T19:35:00
55,807,163
0
1
null
null
null
null
UTF-8
Java
false
false
1,937
java
/* * Copyright (c) 2001, 2009 ChoiceMaker Technologies, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License * v1.0 which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html...
[ "rick@rphall.com" ]
rick@rphall.com
834f245b3cd69787c5927a91a19c0e2e3aa182b2
63330b7c9232b828a91dee24044353c082e83658
/Java_023_ScoreManager/src/com/callor/score/files/FileReader_01.java
03e705122aae11b6bd92ed64a1263eaf0c70eb46
[]
no_license
ksoyoun02/Biz_2021_01_403_java
0dbc110eaff86b25b1a0d4e4ad3b9a4b22ea8a68
d37e9511d943bec308f77fab81c9ac876307fd8a
refs/heads/master
2023-06-07T17:16:34.789399
2021-06-27T07:40:49
2021-06-27T07:40:49
334,835,412
0
0
null
null
null
null
UTF-8
Java
false
false
2,338
java
package com.callor.score.files; import java.io.BufferedReader; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; import java.util.List; import com.callor.score.model.ScoreVO; import com.callor.score.values.Values; public class FileReader_01 { p...
[ "ksoyoun95@naver.com" ]
ksoyoun95@naver.com
7e8265ee3d103946f2f5dda1e5a2b2cd01e38564
5b4553efa42bfc8992795cbf5de5eda7a876701b
/src/main/java/org/killbill/billing/plugin/dwolla/util/JsonHelper.java
fc56b80b8cefa9467e7f6472f77d3243735016ef
[ "Apache-2.0" ]
permissive
matias-aguero-hs/killbill-dwolla-plugin
dfef27e9e21128e0523a980d9de21d5c463b6d44
c8548430f32de0c743cd7edfe6988002bea5a42c
refs/heads/master
2020-05-30T13:56:01.690884
2016-10-11T18:01:45
2016-10-11T18:01:45
66,856,403
0
0
null
2016-08-29T15:35:09
2016-08-29T15:35:09
null
UTF-8
Java
false
false
1,550
java
/* * Copyright 2016 The Billing Project, LLC * * The Billing Project 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.apache.org/licenses/LICENSE-2.0 *...
[ "matias.aguero@hootsuite.com" ]
matias.aguero@hootsuite.com
fda0db885f98c1a95dc1cfa8e4de666ec0271915
dc0b8d47d0f59f3d2c7bab3a03573ddb388440cf
/src/main/java/pl/ioprojekt/wypozyczalniarowerow/service/BikeService.java
63c1562aa9e6d0e6cc2a70f3456db43c8da15e58
[]
no_license
OskWal048/wypozyczalniarowerow
5a714a4eb55f6dfdb3ab1c435be8b5b2b33a879d
e6c98d2f26ded56238487a938b0ed9773027eba6
refs/heads/master
2023-03-08T02:24:05.512972
2021-02-23T11:20:35
2021-02-23T11:20:35
321,037,808
1
0
null
null
null
null
UTF-8
Java
false
false
715
java
package pl.ioprojekt.wypozyczalniarowerow.service; import org.javatuples.Pair; import pl.ioprojekt.wypozyczalniarowerow.entity.Bike; import java.time.LocalDate; import java.util.List; public interface BikeService { List<Bike> findAll(); Bike findById(int id); void save(Bike bike); List<String> f...
[ "oskar2walczak@gmail.com" ]
oskar2walczak@gmail.com
bee81679f62d11ab0f8937af74749d01efbbf8f9
19e0171e2f512d3d6e64497ce818872da3b7c78e
/source/server/nourriture-web/src/main/java/edu/bjtu/nourriture_web/restfulservice/CustomerRestfulService.java
2be6506a5160f907dc1dfaba300db3828a521ea1
[]
no_license
FreeDao/nourriture
6639ce9190f29ecef81b833a3bdd4a7492c81046
3075e2a117272b51adb1a4f5239635035d45888c
refs/heads/master
2021-01-18T09:18:05.921836
2014-12-19T07:47:19
2014-12-19T07:47:19
null
0
0
null
null
null
null
UTF-8
Java
false
false
19,190
java
package edu.bjtu.nourriture_web.restfulservice; import java.util.List; import javax.ws.rs.DELETE; import javax.ws.rs.DefaultValue; import javax.ws.rs.FormParam; import javax.ws.rs.GET; import javax.ws.rs.POST; import javax.ws.rs.PUT; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; ...
[ "wanbabb1@126.com" ]
wanbabb1@126.com
ee4dffee968bfb052cb53c6a01c779ae31a9bc8a
1b422ba91dc8315ba0f6ecdcb5b4c96d6da37524
/src/com/jude/controller/TaskController.java
0ca8491323700e41b71bdffc8460e12d240770cb
[ "Apache-2.0" ]
permissive
hairlun/customer-visit-web
b02580196e97b746588c2a888685b2fc2463b794
b9200f78abe3a33710503c43af6211d524164221
refs/heads/master
2020-04-15T13:38:36.221967
2016-12-22T02:15:00
2016-12-22T02:15:00
59,732,623
0
0
null
null
null
null
UTF-8
Java
false
false
10,782
java
package com.jude.controller; import com.jude.entity.Customer; import com.jude.entity.CustomerManager; import com.jude.entity.RecordDetail; import com.jude.entity.Task; import com.jude.json.JSONObject; import com.jude.service.CustomerManagerService; import com.jude.service.CustomerService; import com.jude.serv...
[ "hairlun@qq.com" ]
hairlun@qq.com
7df511032924ab6c1ac712203a2c386205d85728
1dee501f84622ef0d515e0b32b064320f5649792
/biz.db/src/main/java/com/leeon/biz/db/module/servicelocator/AbstractServiceLocator.java
112b1b74cd547d0a09497a9b077787d83d69a8a7
[]
no_license
lunatiKoid/spring-mvc-ibatis-web
37ccf0c6b106377174ad9895c0feadc06ad2deb4
53e2dabc457a003f17d51f06a27231fa1d9981b8
refs/heads/master
2021-01-10T07:38:35.633959
2015-06-07T02:35:39
2015-06-07T02:35:39
36,935,938
0
0
null
null
null
null
UTF-8
Java
false
false
936
java
package com.leeon.biz.db.module.servicelocator; import org.springframework.beans.BeansException; import org.springframework.beans.factory.BeanFactory; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; /** * Created by liang.yaol on 5/1/1...
[ "liang.yaol@alibaba-inc.com" ]
liang.yaol@alibaba-inc.com
a9809ed622a07eeb0678a1d8fa75046171920c6b
c97dffb0478522877f1a1c188a823296c75e1b87
/self_spring_read_demo/src/main/java/com/learn/springread/springevent/UserRegisterEvent.java
41ab06fefe96651da10d6291c4abf0e229d0656e
[]
no_license
zoro000/2021_learn_project
1e728a30b381dc3af104631d90e5466abc665962
464c58e19fddaa1860880f3c0cfc3e8086fd9b4d
refs/heads/master
2023-07-14T00:55:52.997305
2021-08-21T13:18:55
2021-08-21T13:18:55
null
0
0
null
null
null
null
UTF-8
Java
false
false
509
java
package com.learn.springread.springevent; import org.springframework.context.ApplicationEvent; /** * autor:liman * createtime:2021/6/6 * comment: */ public class UserRegisterEvent extends ApplicationEvent { /** * Create a new {@code ApplicationEvent}. * * @param source the object on which the e...
[ "657271181@qq.com" ]
657271181@qq.com
a08b85d1d425fa4c974a4a703a0dc5dbf3d1efbb
62b2e22d3870bad991ec4602d475c0029a549fe9
/ArdGuild/src/team/creativecode/ardguild/manager/events/GuildLeaveEvent.java
f766718ee350a3ec6a387fd3d6060796e0b25046
[]
no_license
TiveCS/ArdGuild
7c7a30844b60e58128eb00307729aaaf715caa02
b26bd48e8ba8068c1fd26f94ac72def6da7fb4b5
refs/heads/master
2020-04-22T00:06:49.853744
2019-02-14T10:51:14
2019-02-14T10:51:14
169,968,184
0
0
null
null
null
null
UTF-8
Java
false
false
89
java
package team.creativecode.ardguild.manager.events; public class GuildLeaveEvent { }
[ "noreply@github.com" ]
TiveCS.noreply@github.com
35383cad7f684d9b5e3150c610899e939159d5ef
69072dc8587d053542783dcf594118a07ae97f4a
/ancun-data-subscribe-mybatis/src/main/java/com/ancun/common/persistence/mapper/dx/EntUserInfoMapper.java
cd745ed7fa7ad5fd25a5329df1589b4888c06af8
[]
no_license
hejunling/boss-dts
f5dac435796b95ada7e965b60b586eb9a45f14b9
fa4f6caef355805938412e503d15f1f10cda4efd
refs/heads/master
2022-12-20T12:35:41.683426
2019-05-23T12:21:15
2019-05-23T12:21:15
94,403,799
1
2
null
2022-12-16T03:42:19
2017-06-15T05:40:09
Java
UTF-8
Java
false
false
1,101
java
package com.ancun.common.persistence.mapper.dx; import com.ancun.common.persistence.model.dx.EntUserInfo; import com.ancun.common.persistence.model.master.BizTimerConfig; import org.apache.ibatis.annotations.Param; import tk.mybatis.mapper.common.Mapper; import java.util.List; public interface EntUserInfoMa...
[ "hechuan@ancun.com" ]
hechuan@ancun.com
7f7ef93e553fb6b28350f815e73c1dce3354db30
0d9fe88bf842079e7702ddde96d9a4a5e31cccdd
/app/src/main/java/com/maiyu/hrssc/home/activity/applying/adapter/YWCPageAdapter.java
1b9002902397b91bbfae30c627f3e2caf45487b9
[]
no_license
xiongningwan/hrssc
859fbcbc84474f915288d4fa61c30e2556f42cce
b3b727a5f9736a73e54878c4903f6911c2da70af
refs/heads/master
2021-01-23T00:06:39.304993
2017-08-31T07:17:15
2017-08-31T07:17:15
85,697,183
0
0
null
null
null
null
UTF-8
Java
false
false
4,015
java
package com.maiyu.hrssc.home.activity.applying.adapter; import android.content.Context; import android.content.Intent; import android.support.v7.widget.RecyclerView; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.TextView; import com.maiyu.hrssc.R; import ...
[ "222" ]
222
a159a28e2a00c768d9144c7bfb345b843bc662e9
b6390dea167513d6a41666ea5612009b20ba0623
/07_OnetoOneUni/src/com/cg/jpastart/entities/Main.java
1f744e9f09c0a10b1024162d0fceb7689f1df349
[]
no_license
bhargavi-123/jdbcprojects
5406180fcb6f130271d4fbb01b0695cc47528bf6
a4aa88b6744a0d354a2578928e7a51fddbee0911
refs/heads/master
2020-04-05T15:28:18.899573
2018-11-10T10:16:43
2018-11-10T10:16:43
156,969,287
0
0
null
null
null
null
UTF-8
Java
false
false
718
java
package com.cg.jpastart.entities; import javax.persistence.EntityManager; import javax.persistence.EntityManagerFactory; import javax.persistence.Persistence; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub EntityManagerFactory emf = Persistence.createEn...
[ "noreply@github.com" ]
bhargavi-123.noreply@github.com
7404e82b59481a77df171b3ac820aa1b8ed9b34e
0103f095c4280cdc0e98cf425b7b06a053bcc502
/src/il/ac/shenkar/ToDoList/TaskAlarmManager/AlarmReceiver.java
62036dd22171fac5ff68337b5c85d998b49660cc
[]
no_license
eranaltay/FinalProject
c236fc88d778e04a9fa91951f575bbb1455a55b1
074646f962a83a000397a60c7f474e56002d6952
refs/heads/master
2016-09-06T11:33:09.449820
2013-03-17T08:43:49
2013-03-17T08:43:49
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,925
java
/* * AlarmReceiver.java * * Copyright 2013 Eran Altay * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 1.13 of the License, or * (at your option) any later version. * ...
[ "eranaltay@gmail.com" ]
eranaltay@gmail.com
9b7011c9f7f1f720d6469d4f0870a32d72a6cd6b
a85740bfb7def38be54ed1425b7a4a06f9bdcf6a
/mybatis-generator-systests-ibatis2-java5/target/generated-sources/mybatis-generator/mbg/test/ib2j5/generated/hierarchical/dao/PkfieldsblobsDAO.java
eca0df3fb1c094b3d9e24ee1a9217503ef9247d0
[ "Apache-2.0" ]
permissive
tianbohao1010/generator-mybatis-generator-1.3.2
148841025fa9d52bcda4d529227092892ff2ee89
f917b1ae550850b76e7ac0c967da60dc87fc6eb5
refs/heads/master
2020-03-19T07:18:35.135680
2018-06-05T01:41:21
2018-06-05T01:41:21
136,103,685
0
0
null
null
null
null
UTF-8
Java
false
false
4,081
java
package mbg.test.ib2j5.generated.hierarchical.dao; import java.util.List; import mbg.test.ib2j5.generated.hierarchical.model.Pkfieldsblobs; import mbg.test.ib2j5.generated.hierarchical.model.PkfieldsblobsExample; import mbg.test.ib2j5.generated.hierarchical.model.PkfieldsblobsKey; import mbg.test.ib2j5.generated.hiera...
[ "unicode1027@163.com" ]
unicode1027@163.com
ce0b5ecc20203703a180bbf45dcd33e6f8bd24a9
f18ecaea4fded21e5c6be80289c87d99838b65a7
/os-pm-main/src/main/java/com/jukusoft/os/pm/main/Application.java
2bf75caf902e7d3f0462b450eaa1e55fe43c06e5
[ "Apache-2.0" ]
permissive
JuKu/os-pm-tool
30b12b64b0e24787a844c49660f7f1875e45e58f
689f7cd1c898648493b4f50876b1b93a87f43551
refs/heads/master
2020-06-20T07:31:44.981546
2019-07-15T18:09:35
2019-07-15T18:09:35
197,044,081
0
0
null
null
null
null
UTF-8
Java
false
false
477
java
package com.jukusoft.os.pm.main; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; @SpringBootApplication(scanBasePackages = "com.jukusoft.os.pm") public class Applic...
[ "kuenzel.justin@t-online.de" ]
kuenzel.justin@t-online.de
0b603b413a0c3cc64c376f74ea6bab1c9c2cb01a
cd63684aed7c31493c5c14bc7cef0d0508048dac
/server/src/main/java/com/thoughtworks/go/server/service/JobResolverService.java
d48029f3d9ba6170189613befd0297fe5b5f22d3
[ "MIT", "Apache-2.0" ]
permissive
zzz222zzz/gocd
cb1765d16840d96c991b8a9308c01cb37eb3ea7c
280175df42d13e6cd94386a7af6fdac966b2e875
refs/heads/master
2020-05-09T20:25:48.079858
2019-04-15T02:53:33
2019-04-15T02:53:33
181,407,372
1
0
Apache-2.0
2019-04-15T03:41:28
2019-04-15T03:41:26
null
UTF-8
Java
false
false
1,445
java
/*************************GO-LICENSE-START********************************* * Copyright 2014 ThoughtWorks, 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...
[ "godev@thoughtworks.com" ]
godev@thoughtworks.com
f659277e84d0effb665042248f7379b1b212d35e
b8dbde714f888308b79123d19c2e87def4afed88
/src/java/org/apache/cassandra/utils/ByteBufferUtil.java
55dbceb91efca7cffc09c09fe05ba2b5357e32ce
[ "Apache-2.0", "LicenseRef-scancode-public-domain" ]
permissive
eddy20062010/apache-cassandra
38d077113a3d5d2058a1ff0ff2f290e409ec3ff8
62c27b226620a1e7dac88e2695e3fcd33f541aa5
refs/heads/master
2021-01-21T08:24:58.736708
2013-11-12T13:10:53
2013-11-12T13:10:53
null
0
0
null
null
null
null
UTF-8
Java
false
false
14,622
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 ...
[ "oa@odnoklassniki.ru" ]
oa@odnoklassniki.ru
86ae2c831384508cd677041ffee71e97dde8b72d
065c1f648e8dd061a20147ff9c0dbb6b5bc8b9be
/eclipsejdt_cluster/15815/tar_0.java
0f1bf48b2a34124dbe91afe11e29396705792314
[]
no_license
martinezmatias/GenPat-data-C3
63cfe27efee2946831139747e6c20cf952f1d6f6
b360265a6aa3bb21bd1d64f1fc43c3b37d0da2a4
refs/heads/master
2022-04-25T17:59:03.905613
2020-04-15T14:41:34
2020-04-15T14:41:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,406
java
package org.eclipse.jdt.internal.core.search.indexing; /* * (c) Copyright IBM Corp. 2000, 2001. * All Rights Reserved. */ import org.eclipse.jdt.core.JavaCore; import org.eclipse.jdt.internal.compiler.*; import org.eclipse.jdt.internal.core.index.*; import org.eclipse.jdt.internal.compiler.impl.CompilerO...
[ "375833274@qq.com" ]
375833274@qq.com
996cca68020f1f4cab70d79091ae2b647ffe4dea
1eb67e3a7bda49814855d4958b82c1e5d878a3fa
/app/src/main/java/com/example/allu/srp_psnacet/Layout_handler/Org_list.java
7b68ce6fd0312974674a90882213130aeb5d7480
[]
no_license
Alluajay/SRP
5ca8dd6d6ff470868436d178fb20cfe8c4868029
57aacb80bf43877e777a1f81500996569b7a4f56
refs/heads/master
2020-09-13T09:34:05.736711
2016-09-15T18:02:42
2016-09-15T18:02:42
67,407,394
0
0
null
null
null
null
UTF-8
Java
false
false
5,471
java
package com.example.allu.srp_psnacet.Layout_handler; import android.content.Intent; import android.os.Bundle; import android.support.design.widget.FloatingActionButton; import android.support.design.widget.Snackbar; import android.support.v7.widget.DefaultItemAnimator; import android.support.v7.widget.GridLayoutManage...
[ "alludajay@gmail.com" ]
alludajay@gmail.com
51777346195e20431019a51a4495afe94aa5e575
2fbd01a415130b738726b00817f236df46e0c52b
/MDPnPBloodPump/src/main/java/rosetta/MDC_DIM_MICRO_G_PER_M_SQ_PER_MIN.java
c7d0bb096e755560ea35335ae219941de39442e4
[]
no_license
DylanBagshaw/CPM
e60c34716e6fcbccaab831ba58368485d472492f
c00ad41f46dae40800fa97de4279876c8861fbba
refs/heads/master
2020-03-11T20:05:47.618502
2018-09-13T16:08:35
2018-09-13T16:08:35
130,227,287
0
0
null
null
null
null
UTF-8
Java
false
false
450
java
/* WARNING: THIS FILE IS AUTO-GENERATED. DO NOT MODIFY. This file was generated from .idl using "rtiddsgen". The rtiddsgen tool is part of the RTI Connext distribution. For more information, type 'rtiddsgen -help' at a command shell or consult the RTI Connext manual. */ package rosetta; publi...
[ "dmbagshaw@yahoo.com" ]
dmbagshaw@yahoo.com
28c8162acb6e7359a82e2d854464873eced804f1
d7c5121237c705b5847e374974b39f47fae13e10
/airspan.netspan/src/main/java/Netspan/NBI_17_5/Inventory/NodeResetForcedColdFactoryResponse.java
5b3085dcccca0f19b883c2161c6d5db77582dcfa
[]
no_license
AirspanNetworks/SWITModules
8ae768e0b864fa57dcb17168d015f6585d4455aa
7089a4b6456621a3abd601cc4592d4b52a948b57
refs/heads/master
2022-11-24T11:20:29.041478
2020-08-09T07:20:03
2020-08-09T07:20:03
184,545,627
1
0
null
2022-11-16T12:35:12
2019-05-02T08:21:55
Java
UTF-8
Java
false
false
1,926
java
package Netspan.NBI_17_5.Inventory; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous ...
[ "ggrunwald@airspan.com" ]
ggrunwald@airspan.com
e979dd55c61731334feea623ba6083e56a33ec03
98f43214d6056c6687673a84f6aee4c0898c9f88
/trunk/f1-distribuito/src/log/java/Driver.java
5816204e4d714c4a43a6f62ed37966acc3599294
[]
no_license
BGCX067/f1sim-scd-svn-to-git
cfb226c467c4bb93f6d27b7fce0c6bafa62366f0
07adf304b9ed2972be6b4fe0d25aaa4e51ab8123
refs/heads/master
2016-09-01T08:52:31.912713
2015-12-28T14:15:56
2015-12-28T14:15:56
48,833,928
0
0
null
null
null
null
UTF-8
Java
false
false
3,951
java
import java.util.Date; /** * * @author daniele */ public class Driver implements Comparable{ private String name; private short id; private String team; private short position; private short currentLap; private int currentSegment; private float maxSpeed; private float Speed = 0; ...
[ "you@example.com" ]
you@example.com
0f4300156a3037e5ab3310857a0034524dfec1d1
40cd4da5514eb920e6a6889e82590e48720c3d38
/desktop/applis/apps/bean/bean_games/pokemonbean/src/main/java/aiki/beans/abilities/AbilityBeanMultEvtRateSecEffectOwnerGet.java
a089a2e8b5c9aba259618b7c8369e4fde90ae017
[]
no_license
Cardman/projects
02704237e81868f8cb614abb37468cebb4ef4b31
23a9477dd736795c3af10bccccb3cdfa10c8123c
refs/heads/master
2023-08-17T11:27:41.999350
2023-08-15T07:09:28
2023-08-15T07:09:28
34,724,613
4
0
null
2020-10-13T08:08:38
2015-04-28T10:39:03
Java
UTF-8
Java
false
false
409
java
package aiki.beans.abilities; import aiki.beans.PokemonBeanStruct; import code.bean.nat.*; import code.bean.nat.RtSt; import code.bean.nat.*; public class AbilityBeanMultEvtRateSecEffectOwnerGet implements NatCaller{ @Override public NaSt re(NaSt _instance, NaSt[] _args){ return new RtSt(( (AbilityBean...
[ "f.desrochettes@gmail.com" ]
f.desrochettes@gmail.com
1859f557a4e78cb63230b49c5bcd298acdd012f9
f207f8c663b1abd0af23e10e243fa31e67a881af
/app/src/main/java/com/example/danilserbin/baking/ui/view/MainView.java
667fd56caa8f0d89d4487b744ea2d4fbc0c2f7b9
[]
no_license
OlegSheliakin/BakingApp
b5afb7558f11c7c7594b2787e6944996eb470148
f9e3a4ea81aecb1f7eefeedb5c7489b0155636e1
refs/heads/master
2021-08-15T20:45:39.212285
2017-11-18T08:12:41
2017-11-18T08:12:41
111,188,064
0
0
null
null
null
null
UTF-8
Java
false
false
252
java
package com.example.danilserbin.baking.ui.view; import com.example.danilserbin.baking.model.pojo.Recipe; import java.util.List; public interface MainView { void fill(List<Recipe> recipes); void showError(String s); void updateWidget(); }
[ "oshelyakin@smedialink.com" ]
oshelyakin@smedialink.com
90b5e7d85971c5b080eb8d064a6e81b30176b8d4
defd4ffeb636a0a238d84d554348c61b77294a39
/src/main/java/stupaq/cloudatlas/messaging/MessageListener.java
55ffa65e46ad8f4c544d5be0eccf35df5adcb67a
[]
no_license
stupaq/cloud-atlas
8927f47be20a8a8dac366015ce2da24ae335f3e5
4ffb3397ff2f2c3876c51c72fb9818b7b5159493
refs/heads/master
2021-01-17T12:30:39.539203
2014-06-22T08:26:53
2014-06-22T08:26:53
null
0
0
null
null
null
null
UTF-8
Java
false
false
851
java
package stupaq.cloudatlas.messaging; import com.google.common.base.Preconditions; import com.google.common.util.concurrent.ListeningExecutorService; public interface MessageListener { Class<?> contract(); public ListeningExecutorService executor(); public static abstract class AbstractMessageListener implemen...
[ "mateuszmachalica@gmail.com" ]
mateuszmachalica@gmail.com
dfd3ae68ba41fe6b316e0a41fec96f284920f4f4
9e084510fe512bb613d9e4d61052cdaeb5b21e9e
/src/main/java/com/example/pojo/Passage.java
9139359069ac063bca93b6947af450cbd0f3246e
[]
no_license
zixiaoshuixin/salephone-java
753f3cb3664f3e4d8bfc84703a93c6dff1cceb38
7e998eb001919991b812e6e4c967c06333775c66
refs/heads/master
2023-03-22T10:07:24.743171
2021-03-02T12:18:07
2021-03-02T12:18:07
343,754,361
0
0
null
null
null
null
UTF-8
Java
false
false
2,413
java
package com.example.pojo; import java.util.Date; public class Passage { /* * 文章标识符 */ private String postID; /** * 文章标题 */ private String postTitle; /** * 文章内容 */ private String postText; /** * 浏览人数 */ private int postPageviews; /** * 文章合成语音URL地址 */ private String postAudio; ...
[ "1843122304@qq.com" ]
1843122304@qq.com
08e911ee54a8db9db5de20283e565c708299579c
435666caea9b28a9ea78b9daf9aad6a0afb88eb0
/day_2/Solution5.java
d4a609bdde6161c0dde46391c25cf18c03be10a0
[]
no_license
kohegen/geecon2019
ad3bdc86dd252fc36249a6c3865439b99289de1f
1abdddbf46db5426e9a56e6567002b6a18aee72a
refs/heads/master
2020-06-10T21:05:34.128170
2019-06-25T22:36:10
2019-06-25T22:36:10
193,747,244
0
0
null
null
null
null
UTF-8
Java
false
false
2,457
java
package day_2; import java.util.Collections; import java.util.List; import java.util.stream.Collectors; public class Solution5 { public static void main(String[] args) { // is a composite natural number with an even number of digits, // that can be factored into two natural numbers each with ...
[ "wilczek256@gmail.com" ]
wilczek256@gmail.com
e376c8fde483898bda14e4bd992050fb17c0d6f4
8af1164bac943cef64e41bae312223c3c0e38114
/results-java/JetBrains--intellij-community/d79b719bc730f529a522c83fe8bcb0e243faa76d/after/PyParameterListImpl.java
94e7d9dcaf048befc050978bc544725fbc07122d
[]
no_license
fracz/refactor-extractor
3ae45c97cc63f26d5cb8b92003b12f74cc9973a9
dd5e82bfcc376e74a99e18c2bf54c95676914272
refs/heads/master
2021-01-19T06:50:08.211003
2018-11-30T13:00:57
2018-11-30T13:00:57
87,353,478
0
0
null
null
null
null
UTF-8
Java
false
false
5,085
java
package com.jetbrains.python.psi.impl; import com.intellij.lang.ASTNode; import com.intellij.psi.PsiElement; import com.jetbrains.python.PyElementTypes; import com.jetbrains.python.psi.*; import com.jetbrains.python.psi.stubs.PyParameterListStub; import com.jetbrains.python.toolbox.ArrayIterable; import org.jetbrains....
[ "fraczwojciech@gmail.com" ]
fraczwojciech@gmail.com
82a66e7d1f419b95b6398437b3f077d51f7b0b1a
9bbe56fc6d8fbbc9af8e1401e75b5a6fd4683a8b
/FinalLCRANN/app/src/androidTest/java/com/example/android/finallcrann/ExampleInstrumentedTest.java
2c0c1e0212fd54e9c5a1698234c9750256779546
[]
no_license
lcrann12/lcrannCsci372
9260f969c388432d47bfd9214147bdb378f13586
5dc5f01b9c81ae144d423eaa405221dfb32a7637
refs/heads/master
2021-05-08T11:17:12.749477
2018-05-10T23:39:43
2018-05-10T23:39:43
119,888,771
0
0
null
null
null
null
UTF-8
Java
false
false
763
java
package com.example.android.finallcrann; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an...
[ "android@yoda.cs.widener.edu" ]
android@yoda.cs.widener.edu
7502eebde0f2b56f9bf1be94f50c870ef997ed93
201636f109d8de3d3dab649367c161afc61dfa7a
/Distributed-Whiteboard/src/whiteboard/comms/WhiteboardInterface.java
aa864d8435e0cdc47ac635965b044ab803e251ec
[]
no_license
kabi/Distributed-Whiteboard
12b3d0cf769b99df2f25ea499b9fb5fc95c669a7
3028e317c712eec9278192377407b9d31908cb67
refs/heads/master
2021-01-16T20:48:12.894470
2011-10-12T14:52:41
2011-10-12T14:52:41
2,431,286
1
0
null
null
null
null
UTF-8
Java
false
false
1,175
java
package whiteboard.comms; import java.rmi.Remote; import java.rmi.RemoteException; import java.util.ArrayList; import whiteboard.object.AWhiteboardObject; // Remote interface for the server to be able to access the client methods public interface WhiteboardInterface extends Remote { /** * Synchronizes the ...
[ "Kabi@Kabiz" ]
Kabi@Kabiz
25eaa3ce17d3691ec17fa4d0bf33138736a3ffdd
1c126f978f9a01c751837ea7a6cb42823dceb140
/app/src/main/java/br/com/asb/activity/BackupSQLActivity.java
702a910d150d8e3c471d7957c09cda91669ac3ce
[]
no_license
Felssca/Burn_out
30b3fbbb1465ce2f45fd1914ea22df09cb9ceec2
77b88d64b8c538a96515c9292db7ca16a84a9d14
refs/heads/master
2022-11-12T19:27:35.175713
2020-06-29T04:15:19
2020-06-29T04:15:19
265,431,879
0
0
null
null
null
null
UTF-8
Java
false
false
7,197
java
package br.com.asb.activity; import android.Manifest; import android.app.Activity; import android.content.Intent; import android.content.pm.PackageManager; import android.net.Uri; import android.os.Bundle; import android.os.Environment; import android.support.v4.app.ActivityCompat; import android.support.v4.content.Co...
[ "felipessca@gmail.com" ]
felipessca@gmail.com
591993f76a121ac0692f5cee7f5ff1d56a6c6cdc
19be38a4b7606c9a320b0feee5c4443672c4d57b
/src/androidTest/java/com/example/listview1/ExampleInstrumentedTest.java
1feab0bd5155e55b5f7b231ce397b8787171cf89
[]
no_license
lriveraEjercicios/AndroidListView1
94e472862c29afe788dd0bf9ce5b4dccfe0caaf8
290c41653bb74fcd25f9c34b52a290f48965e187
refs/heads/master
2020-06-05T05:38:20.792709
2019-06-19T08:43:20
2019-06-19T08:43:20
192,332,128
0
0
null
null
null
null
UTF-8
Java
false
false
752
java
package com.example.listview1; 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 ...
[ "noreply@github.com" ]
lriveraEjercicios.noreply@github.com
74c9673244155396aee3b2dda8622d2d3b9c7a5e
84c697df35ca32253229b6a9fa6c0f1e9cce4723
/dyson/src/main/java/com/artigile/homestats/sensor/dyson/model/DysonPureCoolData.java
0b97d54ca9774e567eb93dd704c11e51abbd9b3a
[]
no_license
ioanbsu/homestats
925c6269020322fda1beae987fea36eab2f956f7
4835d62cc0f8d00b0114a1fe787d934f9238fd39
refs/heads/master
2021-01-18T14:20:12.023339
2020-02-27T04:04:49
2020-02-27T04:04:49
32,686,455
4
0
null
null
null
null
UTF-8
Java
false
false
1,133
java
package com.artigile.homestats.sensor.dyson.model; import java.time.Instant; /** * Dyson pure cool data. */ public class DysonPureCoolData { public final SensorData currentSensorData; public final State currentState; public final Instant lastRefreshed; public DysonPureCoolData(final Builder builde...
[ "ibahdanau@fitbit.com" ]
ibahdanau@fitbit.com
124dc3fb3d1e307df2373b7602e2b0aeb02cc3a2
3e49e08ed83b5e3be344a07a7764cc458fe5510c
/Server/src/main/java/view/graphics/SettingController.java
1fec3957a4a2f08b0ab477244790693266c4ecda
[]
no_license
Advanced-Programming-2021/project-team-09
9f48a0f714e7127df54dd8f9dc700d29698c0fc0
796b3fcb104191d141f8e0572d400bde23282687
refs/heads/main
2023-06-28T13:38:22.147328
2021-07-21T20:08:01
2021-07-21T20:08:01
355,936,327
0
1
null
null
null
null
UTF-8
Java
false
false
3,526
java
package view.graphics; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.fxml.FXML; import javafx.fxml.Initializable; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.Slider; import javafx.scene.control.ToggleButton; import java...
[ "73402569+Mir-Abedi@users.noreply.github.com" ]
73402569+Mir-Abedi@users.noreply.github.com
b89dd4b592221b2ed8d7e9d83464b5ce25ca1a54
275c5bda1294283cb7c007fea0b6d1a43761e2bb
/raven-compiler/src/main/java/org/raven/antlr/ast/Return.java
ef929504d250afd56f22e60643995eb510e5f573
[ "MIT" ]
permissive
BradleyWood/Raven-Lang
5956bd480bc14d4481969dfec79312a66576855e
8ad3bf166a33b71975f2b87ba8ec67245289fad3
refs/heads/master
2021-07-10T22:03:25.246892
2019-01-06T10:24:12
2019-01-06T10:24:12
102,515,994
2
0
MIT
2018-07-03T17:56:53
2017-09-05T18:27:34
Java
UTF-8
Java
false
false
862
java
package org.raven.antlr.ast; import java.util.Objects; public class Return extends Statement { private final Expression value; public Return(final Expression value) { this.value = value; } public Expression getValue() { return value; } @Override public void accept(final...
[ "bradley.wood@uoit.net" ]
bradley.wood@uoit.net
5ea3826b40b35ab691be6bf7037e3133a93741a6
32b72e1dc8b6ee1be2e80bb70a03a021c83db550
/ast_results/zxing_zxing/core/src/main/java/com/google/zxing/ResultPoint.java
8b26fd132c620eac19341926de7a40c6b48fddca
[]
no_license
cmFodWx5YWRhdjEyMTA5/smell-and-machine-learning
d90c41a17e88fcd99d543124eeb6e93f9133cb4a
0564143d92f8024ff5fa6b659c2baebf827582b1
refs/heads/master
2020-07-13T13:53:40.297493
2019-01-11T11:51:18
2019-01-11T11:51:18
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,521
java
// isComment package com.google.zxing; import com.google.zxing.common.detector.MathUtils; /** * isComment */ public class isClassOrIsInterface { private final float isVariable; private final float isVariable; public isConstructor(float isParameter, float isParameter) { this.isFieldAccessExpr ...
[ "matheus@melsolucoes.net" ]
matheus@melsolucoes.net
9eeaf8eb1d5fa069354e21d3cbf29bb755365e9b
2298c4b740fd996c0538840fb3a0fa76cb0d0ded
/src/main/java/com/team/manage/common/util/secert/DESSecret.java
7a2c9c8a7f9f6887306c4bf0ab79e3dee2da4192
[]
no_license
EliteCollection/server
50756146eea75dfd91fa8658fd94b58b0797d28e
0f843b338fc523b235b8fe49939dec49840e7324
refs/heads/feature-v1.0.0
2022-07-09T12:48:30.083657
2019-06-05T08:25:54
2019-06-05T08:25:54
166,790,373
3
0
null
2022-06-17T02:03:30
2019-01-21T09:56:13
Java
UTF-8
Java
false
false
5,123
java
package com.team.manage.common.util.secert; import com.team.manage.enums.SecretType; import sun.misc.BASE64Decoder; import sun.misc.BASE64Encoder; import javax.crypto.Cipher; import javax.crypto.SecretKey; import javax.crypto.SecretKeyFactory; import javax.crypto.spec.DESKeySpec; import java.security.Key; import java...
[ "yutc93@qq.com" ]
yutc93@qq.com
476a24864fd92aa8fecf97fbe63074fba3dec4d6
d0536669bb37019e766766461032003ad045665b
/jdk1.4.2_src/javax/swing/text/BoxView.java
691289929caf1c57a8ea57fbba23de9d7b727e7e
[]
no_license
eagle518/jdk-source-code
c0d60f0762bce0221c7eeb1654aa1a53a3877313
91b771140de051fb843af246ab826dd6ff688fe3
refs/heads/master
2021-01-18T19:51:07.988541
2010-09-09T06:36:02
2010-09-09T06:36:02
38,047,470
11
23
null
null
null
null
UTF-8
Java
false
false
40,645
java
/* * @(#)BoxView.java 1.59 03/01/23 * * Copyright 2003 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package javax.swing.text; import java.io.PrintStream; import java.util.Vector; import java.awt.*; import javax.swing.event.DocumentEvent; import ja...
[ "kzhaicn@e8197d6f-d431-fb3f-3203-916d138821fd" ]
kzhaicn@e8197d6f-d431-fb3f-3203-916d138821fd
0baab6b7238d0271f9159618efa7a1b5ac1b2ebe
3f6904ddd220e0cc9d17a95b546fbec146f18e43
/src/WeekThree/VisitAction.java
d25086db81fe7c924193384af9c514a67be3b05a
[]
no_license
dlnrodriguez/CSC180-class
1e5cc6ded72ecfada0f73f02d2c6b5373bf86cf8
1c55a533588d3eee18896f72785d22639d2ba5b2
refs/heads/master
2020-05-29T14:39:15.405690
2016-08-22T20:28:25
2016-08-22T20:28:25
62,110,443
0
0
null
null
null
null
UTF-8
Java
false
false
118
java
package WeekThree; /** * Created by DLN on 8/3/16. */ public interface VisitAction { void visit(String url); }
[ "dylonrodriguez.phd@gmail.com" ]
dylonrodriguez.phd@gmail.com
393a9a4fb6589a81ec91270339b926adf11bb71c
2be4eac50faddb7170b9008ccdfc3175a86d70f5
/src/ajmas74/daylighttracker/MapLayer.java
e6bd5bcc1a883e29cb37eaacb473886e866d8517
[]
no_license
ajmas/Daylight-Tracker
004895997dd795e47fc69a9977c54bf5b631320c
efff4a053b0285bac610ea16767df7cc9ca9aafd
refs/heads/master
2020-05-18T16:59:53.999561
2012-04-06T20:15:05
2012-04-06T20:15:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
944
java
package ajmas74.daylighttracker; import java.util.Date; import java.awt.*; public interface MapLayer { //would implementing an applet type interface be useful //with init, stop, refresh, etc? /** Get the short name of the layer */ public String getShortName(); /** Get the long name of the l...
[ "andrejohn.mas@gmail.com" ]
andrejohn.mas@gmail.com
8757873a2597bfecd0e4d56034a64411372bbde4
aa3202384507fc99d83cfa3e3f957a9f16de1dc6
/src/forms/PnFabricante.java
a082c5fbb3b053229b71e3bbc722b055d7e61cb9
[]
no_license
vilmarschmelzer/poo2-rick
61f99c06e79fe41af5bd44ca4c68b075ca02e42b
9e8dcef655794e9b8a06cca19091355c4d5b03e2
refs/heads/master
2021-01-23T21:36:19.458854
2013-12-19T11:35:56
2013-12-19T11:35:56
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,736
java
package forms; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.text.ParseException; import java.util.ArrayList; import javax.swing.JFormattedTextField; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JScrollPane; import javax.swing.JTable; import javax.swing....
[ "vilmarsss@gmail.com" ]
vilmarsss@gmail.com
329d6348e76b24f0d4449d5c6b95175fca0de599
52f80c552ed5c18a7b6662244f7ea0708ba65869
/MyApplication4/app/src/main/java/com/example/myapplication/Model/User.java
62876d740978ab54c73032cc7e368d037df55ac0
[]
no_license
mrbossgame/Music-app-mobile
dbcd4cd4e80b280d65481140305496dc43345a63
2dbfa40fc1be2c3115a0fa2b1b738076ac2fdc3c
refs/heads/master
2022-10-05T10:14:29.290339
2020-06-06T15:36:27
2020-06-06T15:36:27
270,020,616
0
0
null
null
null
null
UTF-8
Java
false
false
1,279
java
package com.example.myapplication.Model; import com.google.gson.annotations.Expose; import com.google.gson.annotations.SerializedName; public class User { @SerializedName("idUser") @Expose private String idUser; @SerializedName("TenUser") @Expose private String tenUser; @SerializedName("P...
[ "boylapdi.kr@gmail.com" ]
boylapdi.kr@gmail.com
1945834c8dc5374833e469a5f484077aa3f82c2b
2935dbf542f4798e6046d460f093bd83a4579deb
/src/net/ion/radon/cload/problems/CompilationProblem.java
570137cb732b70a8298b9121a329d8d672a0c111
[]
no_license
bleujin/aradon311
2a3d8c8d89956a34d2ce0ca322d14da0dde2ac0b
0d94113b398d5e70379068ef533479f09d7c1778
refs/heads/master
2020-04-12T03:09:56.589488
2017-02-17T05:41:02
2017-02-17T05:41:02
22,242,059
1
1
null
null
null
null
UTF-8
Java
false
false
1,882
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 ...
[ "bleujin@gmail.com" ]
bleujin@gmail.com
eaa7e87b17f87f52b0d6586d01eacbaa36d7f4ea
2b675fd33d8481c88409b2dcaff55500d86efaaa
/infinispan/core/src/test/java/org/infinispan/distribution/DistSyncCacheStoreNotSharedNotConcurrentTest.java
c352a41471a892a7d05cac6929da8202e83fd6a9
[ "LGPL-2.0-or-later", "Apache-2.0" ]
permissive
nmldiegues/stibt
d3d761464aaf97e41dcc9cc1d43f0e3234a1269b
1ee662b7d4ed1f80e6092c22e235a3c994d1d393
refs/heads/master
2022-12-21T23:08:11.452962
2015-09-30T16:01:43
2015-09-30T16:01:43
42,459,902
0
2
Apache-2.0
2022-12-13T19:15:31
2015-09-14T16:02:52
Java
UTF-8
Java
false
false
1,472
java
/* * JBoss, Home of Professional Open Source * Copyright 2012 Red Hat Inc. and/or its affiliates and other contributors * as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a * full listing of individual contributors. * * This copyrighted material is made avail...
[ "nmld@ist.utl.pt" ]
nmld@ist.utl.pt
447ceb0cd3eb19b3b843f0b848bd0b4a93a5e684
34e55a7531813c219c191f084196ebfe0d3d0b4c
/level07/lesson04/task04/Solution.java
67eb9d27fa5b21f1cd75b52a536f4fdd584433df
[]
no_license
bezobid/javarush
c5b8f09e78bc7020c00810ea4a82267ea30dab9f
20a8b7e90a14a406b4fa02fc1b75707297d06428
refs/heads/master
2021-01-21T06:53:33.411811
2017-05-17T15:16:28
2017-05-17T15:16:28
91,590,091
0
0
null
null
null
null
UTF-8
Java
false
false
1,061
java
package com.javarush.test.level07.lesson04.task04; import java.io.BufferedReader; import java.io.InputStreamReader; /* Массив из чисел в обратном порядке 1. Создать массив на 10 чисел. 2. Ввести с клавиатуры 10 чисел и записать их в массив. 3. Расположить элементы массива в обратном порядке. 4. Вывести результат на э...
[ "sugubo@gmail.com" ]
sugubo@gmail.com
62df924ca94683969fc47e4ed0b88fbf8e0c4f31
e9a6574e6ec50c39a6923ade3743da1401776f6f
/Training/src/Threads/ThreadsBasics/Problem.java
781163616db92064499dd10552d54d02936c1dad
[]
no_license
bardas-oleksandr/Homeworks_All
bc1a6658c5c70aca94c5a5345ba42f00caf9de40
bf24021afcb4d0287469762761fdfff1d816a329
refs/heads/master
2020-04-28T06:47:36.046027
2019-03-11T19:34:51
2019-03-11T19:34:51
175,071,275
0
0
null
null
null
null
UTF-8
Java
false
false
901
java
package Threads.ThreadsBasics; import Interfaces.IProblem; public class Problem implements IProblem { @Override public void solve() { System.out.println("EXAMPLE #1"); Thread thread = Thread.currentThread(); System.out.println(thread); thread.setName("My thread"); thr...
[ "iskander0119@gmail.com" ]
iskander0119@gmail.com
0f19642adfc8ee3d5b6ee43e4b7475b214eb2c8f
477e1a631bd4e093d511b9ea3f53a7a4807c4d1e
/Android实现悬浮式顶部和底部标题栏效果/MyTitleBar02/src/com/yangyu/mytitlebar02/MentionActivity.java
a0c9b9a999c187cee8fe85fe86155d181b84cb6a
[]
no_license
sunnyvv/Mixingdrinks
765fe22f00bc96cbeeefc130f504ed980d3e55e6
d98b994833be6422da3412d2741fa85cd21aa5ba
refs/heads/master
2021-01-18T11:23:15.551258
2015-01-04T09:25:43
2015-01-04T09:25:43
28,742,889
0
0
null
2015-01-03T12:14:15
2015-01-03T12:14:14
null
IBM852
Java
false
false
377
java
package com.yangyu.mytitlebar02; import android.app.Activity; import android.os.Bundle; /** * @author yangyu * ╣Ž─▄├Ŕ╩÷ú║╠ßđĐActivityĎ│├Š */ public class MentionActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.lay...
[ "qingtiangw@163.com" ]
qingtiangw@163.com
c247de930a5655c0db83046b28675364b12e212a
be73270af6be0a811bca4f1710dc6a038e4a8fd2
/crash-reproduction-moho/results/XWIKI-14227-10-22-NSGA_II-WeightedSum:TestLen:CallDiversity/com/xpn/xwiki/store/migration/AbstractDataMigrationManager_ESTest.java
f56dc66621094b643df23fe99c6df7608be571a6
[]
no_license
STAMP-project/Botsing-multi-objectivization-using-helper-objectives-application
cf118b23ecb87a8bf59643e42f7556b521d1f754
3bb39683f9c343b8ec94890a00b8f260d158dfe3
refs/heads/master
2022-07-29T14:44:00.774547
2020-08-10T15:14:49
2020-08-10T15:14:49
285,804,495
0
0
null
null
null
null
UTF-8
Java
false
false
592
java
/* * This file was automatically generated by EvoSuite * Sat Jan 18 19:13:13 UTC 2020 */ package com.xpn.xwiki.store.migration; import org.junit.Test; import static org.junit.Assert.*; import org.evosuite.runtime.EvoRunner; import org.evosuite.runtime.EvoRunnerParameters; import org.junit.runner.RunWith; @RunWith...
[ "pouria.derakhshanfar@gmail.com" ]
pouria.derakhshanfar@gmail.com
2324030454bd9b84349040b4317e330dbed6ead0
6b2ac9d51867059829797e2be084e952287932a0
/WebApplication1/src/java/com/Msg.java
41dc82290eba2827474a51a4d98f4e3d734aa420
[]
no_license
salu2303/The-Classy-Events
6be0fe445eb1e5f882f3d70992a82d5a617cc47e
ebcca7ac8b8f7955643f0376bf99b9426ec286f9
refs/heads/master
2022-11-14T18:58:23.794055
2020-06-19T16:41:39
2020-06-19T16:41:39
273,541,097
0
0
null
null
null
null
UTF-8
Java
false
false
4,907
java
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com; import java.io.IOException; import java.io.PrintWriter; import java.sql.Connection; import java.sql.DriverManager; import...
[ "saloni230301@gmail.com" ]
saloni230301@gmail.com
2382c06840d87d5f86819ed9d3e0936fb4e83940
fadd499cb9c1e8085958670c2e698606f176048f
/src/main/java/flink2hive.java
35cd880075e0b90db513bf593a3648df9d729810
[]
no_license
SChao625/flinkStreaming
eaf8781aa039ecff3181f6576576090be554cde8
22a552447bd0c12f23b91a963f02d0fe01c8b3c8
refs/heads/master
2022-12-06T05:29:14.215783
2020-09-03T06:26:12
2020-09-03T06:26:12
292,482,177
0
0
null
null
null
null
UTF-8
Java
false
false
1,445
java
import org.apache.flink.streaming.api.environment.StreamExecutionEnvironment; import org.apache.flink.table.api.EnvironmentSettings; import org.apache.flink.table.api.Table; import org.apache.flink.table.api.TableEnvironment; import org.apache.flink.table.api.java.StreamTableEnvironment; import org.apache.flink.table....
[ "shancaho0625@163.com" ]
shancaho0625@163.com
8ee78b38b275efd10b7421de8861fca5d07600f7
55787868f10d29caf64dede77ce5499a94c9cad8
/java/springbootvue/official/chapter09/rediscache/src/main/java/org/sang/rediscache/Book.java
86fc74e8c240abddc88f3fd71dbede6fed399ea0
[]
no_license
JavaAIer/NotesAndCodes
d4d14c9809c871142af6a6eec79b61ea760d15fb
83ebbc0ee75d06ead6cb60ec7850989ee796ba6f
refs/heads/master
2022-12-13T02:27:01.960050
2019-12-24T01:57:10
2019-12-24T01:57:10
158,776,818
3
1
null
2022-12-09T10:11:57
2018-11-23T03:32:43
Java
UTF-8
Java
false
false
791
java
package org.sang.rediscache; import java.io.Serializable; public class Book implements Serializable { private Integer id; private String name; private String author; @Override public String toString() { return "Book{" + "id=" + id + ", name='" + name + '\''...
[ "cuteui@qq.com" ]
cuteui@qq.com
1cb90feeb863ae2dbb706007168672842bf19531
f738ca66a5bd4122df3fc1d6355aa094cfbe180f
/day16_String/substring_Practice.java
0da071ff9919dc976807163004f158d2a7b17cb0
[]
no_license
ElkemEmet/GitPractice
a7fd6ca33157882dabf772db7e53bb6f8c126bba
a06ce556b78248fa498a3b81ca5da3bd7f839191
refs/heads/master
2022-12-08T02:09:49.828056
2020-08-05T03:13:44
2020-08-05T03:13:44
285,164,255
0
0
null
null
null
null
UTF-8
Java
false
false
1,158
java
package day16_String; import java.util.Scanner; /*1. Ask user to enter two words. Print first word without its first character then print the second word without its first character. Input: apple banana Output: ppleanana */ public class substring_Practice{ public stat...
[ "elkem131@gmail.com" ]
elkem131@gmail.com
414e4af4ba9f1ebbd12515c182297e8122f719db
54a24781a7a09311456cb685f63f0e6d2bab4bab
/src/l1j/server/server/clientpackets/C_TaxRate.java
667c4f3f3417d70e5644e68eca75fa365982ebd1
[]
no_license
crazyidol9/L1J-KR_3.80
b1c2d849a0daad99fd12166611e82b6804d2b26d
43c5da32e1986082be6f1205887ffc4538baa2c6
refs/heads/master
2021-08-16T13:50:50.570172
2017-11-20T01:20:52
2017-11-20T01:20:52
111,041,969
0
0
null
2017-11-17T01:24:24
2017-11-17T01:24:24
null
UHC
Java
false
false
2,024
java
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WIT...
[ "wantedgaming.net@gmail.com" ]
wantedgaming.net@gmail.com