blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
7
390
content_id
stringlengths
40
40
detected_licenses
listlengths
0
35
license_type
stringclasses
2 values
repo_name
stringlengths
6
132
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
539 values
visit_date
timestamp[us]date
2016-08-02 21:09:20
2023-09-06 10:10:07
revision_date
timestamp[us]date
1990-01-30 01:55:47
2023-09-05 21:45:37
committer_date
timestamp[us]date
2003-07-12 18:48:29
2023-09-05 21:45:37
github_id
int64
7.28k
684M
star_events_count
int64
0
77.7k
fork_events_count
int64
0
48k
gha_license_id
stringclasses
13 values
gha_event_created_at
timestamp[us]date
2012-06-11 04:05:37
2023-09-14 21:59:18
gha_created_at
timestamp[us]date
2008-05-22 07:58:19
2023-08-28 02:39:21
gha_language
stringclasses
62 values
src_encoding
stringclasses
26 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
128
12.8k
extension
stringclasses
11 values
content
stringlengths
128
8.19k
authors
listlengths
1
1
author_id
stringlengths
1
79
7fd528005ff2452b6ffae2e8460b57fea70a5489
1b73e8efd1ec9fbdd2c32162eaf0f8ce30666d08
/Mosima/Projet_Calibration_M2/src/apache/commons/math3/optimization/univariate/BracketFinder.java
5d02c5f7228bfd6091d474c1a563126c849afd4d
[]
no_license
dtbinh/M2_Androide
060db9575aa10b8ab0a9707db3e34cc64f5d0e03
a828b7ff477470c8e00c012dd36d61df2ef7d910
refs/heads/master
2020-06-16T05:02:29.653270
2016-11-29T11:54:24
2016-11-29T11:54:24
75,243,702
1
0
null
2016-12-01T01:38:37
2016-12-01T01:38:36
null
UTF-8
Java
false
false
7,942
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 ...
[ "keithdae@gmail.com" ]
keithdae@gmail.com
42c92dec38934fce22612a9f0d862a7e010e4a06
65e94aa9f4a75cad9157615b52b99c8c7f642825
/LeeC/739_DailyTemperatures/Solution.java
2d0da547df0f7dab121befc1346f7e8ce84d5bce
[]
no_license
fengdanhuang/Program_Example_fred
23e55624d8e0177789f79bce65af1acc84d78dea
519fc66f11d2e1b9bb8fb7f9668e1cfba93bc0ef
refs/heads/master
2021-06-26T12:09:54.342485
2019-08-15T18:08:57
2019-08-15T18:08:57
114,918,947
0
0
null
2019-08-14T06:01:26
2017-12-20T18:34:44
Java
UTF-8
Java
false
false
898
java
import java.util.*; class Solution { public int[] dailyTemperatures(int[] T) { for (int i=0; i<T.length; i++) System.out.print(T[i] + " "); System.out.println(); int[] ans = new int[T.length]; Stack<Integer> stack = new Stack<>(); for (int i = T.le...
[ "chaofeng@Chaos-MacBook-Pro.local" ]
chaofeng@Chaos-MacBook-Pro.local
2188b25c43bb1ebe3cf09c1dcdd21cb304592a06
31f5db098ebd2e848dc2e8a62b37311575b8a2dd
/java lecture/Labs/Ex10_Thread/Ex10_Sync_Thread.java
4f1b23c8be81a1b80a7dcefab767aa8750deb295
[]
no_license
jinkwang2018/lecture-note
7bce8ab5b96201231617e2ecc0af543c8334ea4b
cc2b5f41c46102320882c5b64d29a6424a33a83b
refs/heads/master
2021-06-24T21:10:49.341707
2019-03-22T08:20:38
2019-03-22T08:20:38
177,101,162
1
0
null
null
null
null
UHC
Java
false
false
1,598
java
//은행계좌를 하나 가지고 있다 //은행계좌를 통해 입금, 출금 처리를 할 수 있다 //친구 5명(똑같은 카드) //동시에 계좌 출금 ('동시'라는 말은 쓰레드를 쓰겠다!의 의미) //통장 1000만원 //ATM 기기에서 동시에 출금 //개발자 //누군가 [출금 ~ 행위] 끝날때 까지 LOCK 통해서 자원 보호 class Account{ //계좌 int balance = 1000; //잔액 synchronized void withDraw(int money) { //출금 System.out.println("고객 : " + Thread.currentThr...
[ "36331994+jinkwang2018@users.noreply.github.com" ]
36331994+jinkwang2018@users.noreply.github.com
f67b156227c74b0cca850fd8106a78bf53319750
a4bcf8e1035996c46b977fe596fb45fbb643c87d
/org/neustupov/innerclasses/multiextends/MultiImpl.java
5e67c97d1f131c45a7860c1729858a636fa5f7e9
[]
no_license
neustupov/deeper-into-the-core-java8
6c7ae2f9310088a99c0ba471d35b9a18d923006f
b28ea3a3d289cbc25d9e012b5d6d7a518c61d3c6
refs/heads/master
2023-01-04T10:37:37.930049
2020-10-27T17:52:10
2020-10-27T17:52:10
293,753,233
0
0
null
null
null
null
UTF-8
Java
false
false
235
java
package neustupov.innerclasses.multiextends; public class MultiImpl { static void takesD(D d){} static void takesE(E e){} public static void main(String[] args) { Z z = new Z(); takesD(z); takesE(z.makeE()); } }
[ "neustupov@yandex.ru" ]
neustupov@yandex.ru
eae9ef63c673d4da8df1184190e7ca56404cd805
dc1dbb7e5a4b95bf44170d2f51fd08b3814f2ac9
/data_defect4j/preprossed_method_corpus/Time/11/org/joda/time/tz/ZoneInfoCompiler_addToBuilder_797.java
7297a0cc3e994eb1ad3404d637c6da17be8283e5
[]
no_license
hvdthong/NetML
dca6cf4d34c5799b400d718e0a6cd2e0b167297d
9bb103da21327912e5a29cbf9be9ff4d058731a5
refs/heads/master
2021-06-30T15:03:52.618255
2020-10-07T01:58:48
2020-10-07T01:58:48
150,383,588
1
1
null
2018-09-26T07:08:45
2018-09-26T07:08:44
null
UTF-8
Java
false
false
2,083
java
org joda time compil olson zone info zoneinfo databas file binari file time zone databas link date time zone builder datetimezonebuild construct encod compil data file link zone info provid zoneinfoprovid load encod file convert back link date time zone datetimezon object ...
[ "hvdthong@gmail.com" ]
hvdthong@gmail.com
f80c9d553dc81b94ba1afa83d80f7d4e4e08d444
261053ece2f16bdd98cfacb9782d50068d289d91
/default/ovms/ovms-visual/ovms-sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/repository/metric/MetricsRepository.java
91034543295696d27494404bd04aaee2dd25fcc1
[]
no_license
jiangdm/java
0e271a2f2980b1bb9f7459bb8c2fcb90d61dfaa9
4d9428619247ba4fa3f9513505c62e506ecdaf3b
refs/heads/main
2023-01-12T15:15:18.300314
2020-11-19T09:43:24
2020-11-19T09:43:24
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,169
java
package com.alibaba.csp.sentinel.dashboard.repository.metric; import java.util.List; /** * Repository interface for aggregated metrics data. * * @param <T> type of metrics * @author Eric Zhao */ public interface MetricsRepository<T> { /** * Save the metric to the storage repository. * * @par...
[ "ovms@email.com" ]
ovms@email.com
35bf414dfe64b7a60dd3c4f330ab07b362f5e52e
db2f073c877a98c2e642e10203e4883af98caf43
/app/src/main/java/com/example/flag1/MainActivity.java
b7e788376a86736ec840b8c630632ea729468edb
[]
no_license
pavlentytest/Flag1
ca223138a29f58b57e4b752ad37fe991dccc4a30
8f2751931aaccc54efc7ecf6e912289cd460f2b2
refs/heads/master
2020-07-12T01:00:57.962003
2019-08-27T10:34:58
2019-08-27T10:34:58
204,680,133
0
0
null
null
null
null
UTF-8
Java
false
false
515
java
package com.example.flag1; import android.media.MediaPlayer; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedIn...
[ "impetus@yandex.ru" ]
impetus@yandex.ru
3fc5ffd8562f5373e2b95b006f556c2d08c76807
952102f4edd1d755285ec96f41003859d47e8859
/app/src/main/java/com/example/pluginproject/hook/ams/AmsProxyActivity.java
ee2313eb262241c7c9b5aebc83cefd022fdf4e1a
[]
no_license
bryanrady/PluginProject
807253ea268c4a718247118b7486371611d97a7b
2ba50b5e48836b4075bb2361c455ea29e610f8ac
refs/heads/master
2022-08-25T14:01:03.659392
2020-05-15T01:38:33
2020-05-15T01:38:33
262,954,993
0
0
null
null
null
null
UTF-8
Java
false
false
322
java
package com.example.pluginproject.hook.ams; import android.app.Activity; import android.os.Bundle; import androidx.annotation.Nullable; public class AmsProxyActivity extends Activity { @Override protected void onCreate(@Nullable Bundle savedInstanceState) { super.onCreate(savedInstanceState); } ...
[ "bryanrady@163.com" ]
bryanrady@163.com
52c372b182d65678b9e22da5c27f6941e460b575
d7f6025a48c714d8076965934483aead94a5e489
/example/src/main/java/com/zq/shop/web/service/IFileService.java
6901c7a2d36d2d7b1d759959bae173e179a6b901
[]
no_license
zhangqian666/shop-back-java
4d87f8b7c1d4c1f3649a7b304d137746c6c8a68a
88b6ac55dbe26127cfe261e052bd118e905722d3
refs/heads/master
2022-12-28T17:20:38.841173
2020-04-03T09:03:31
2020-04-03T09:03:31
129,877,330
22
4
null
2022-12-05T23:42:21
2018-04-17T09:08:16
Java
UTF-8
Java
false
false
456
java
package com.zq.shop.web.service; import com.zq.core.restful.ServerResponse; import org.springframework.web.multipart.MultipartFile; import java.util.List; /** * @Author 张迁-zhangqian * @Data 2018/4/21 下午7:05 * @Package com.zq.shop.web.service **/ public interface IFileService { ServerResponse<String> upload...
[ "415677303@qq.com" ]
415677303@qq.com
02538313dbdf0c7a648161d95e4b07b5ce91404e
9654f4ae1ca6e3bd31565ae814f0a3edd96c3168
/src/main/java/be/aga/dominionSimulator/cards/Border_VillageCard.java
f4646cad5a76ffa8fb19a163d905c934781a1549
[]
no_license
danieljbrooks/DominionSim
3cd17fbd93a1fb0b9fa6782d151b65180ec65209
23b5697876bf21e1f8ad607ccc391001c686784a
refs/heads/master
2021-01-23T14:31:29.977254
2017-05-11T12:12:53
2017-05-11T12:12:53
102,690,613
1
0
null
2017-09-07T04:16:33
2017-09-07T04:16:33
null
UTF-8
Java
false
false
2,325
java
package be.aga.dominionSimulator.cards; import be.aga.dominionSimulator.DomCard; import be.aga.dominionSimulator.DomCost; import be.aga.dominionSimulator.enums.DomCardName; import be.aga.dominionSimulator.enums.DomCardType; public class Border_VillageCard extends DomCard { public Border_VillageCard () { sup...
[ "jeroen_aga@yahoo.com" ]
jeroen_aga@yahoo.com
c216c8e126764d42655f5e2a7d2887092e79bcb5
3a0a67612ec09535bb840397ee2cf258e8d8655f
/51bjxc-supervise-tcp/src/main/java/com/bjxc/supervise/netty/MessageDecoder.java
59d4f803dc6b553bf62685bdc3da1831fb84cb90
[]
no_license
moodpo/TimeSystemTCP
5c4ad21d5051f779b0528af978c72ecd85050947
a33d1344c3d1c28a45114c233237c8a16feba271
refs/heads/master
2020-04-12T01:14:06.281063
2017-09-24T11:51:27
2017-09-24T11:51:27
null
0
0
null
null
null
null
UTF-8
Java
false
false
4,802
java
package com.bjxc.supervise.netty; import java.util.List; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.bjxc.supervise.http.crypto.JSPTConstants; import io.netty.buffer.ByteBuf; import io.netty.buffer.Unpooled; import io.netty.channel.ChannelHandlerContext; import io.netty.handler...
[ "1317147280@qq.com" ]
1317147280@qq.com
a11503fae48aac8db4299f2c129d050acb6262d4
e1e5bd6b116e71a60040ec1e1642289217d527b0
/H5/L2_Scripts_com/L2_Scripts_Revision_20720_2268/dist/gameserver/data/scripts/quests/_10292_SevenSignsGirlOfDoubt.java
6d291764d98a8a7d071c3b6d3578cae3802b18be
[]
no_license
serk123/L2jOpenSource
6d6e1988a421763a9467bba0e4ac1fe3796b34b3
603e784e5f58f7fd07b01f6282218e8492f7090b
refs/heads/master
2023-03-18T01:51:23.867273
2020-04-23T10:44:41
2020-04-23T10:44:41
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,630
java
package quests; import org.apache.commons.lang3.ArrayUtils; import l2s.commons.util.Rnd; import l2s.gameserver.model.Player; import l2s.gameserver.model.entity.Reflection; import l2s.gameserver.model.instances.NpcInstance; import l2s.gameserver.model.quest.QuestState; import l2s.gameserver.utils.ReflectionUtil...
[ "64197706+L2jOpenSource@users.noreply.github.com" ]
64197706+L2jOpenSource@users.noreply.github.com
bb6ca9762643450a2687c45d643893759a6e440f
dccaf61ebcb7f9d85f4ec127439768b9809419ec
/common/src/main/java/x/common/util/stream/ByteSupplier.java
4c608301705131667a8ae93c30557a84f4c19a32
[]
no_license
ccolorcat/XArchitecture
9e9f7a4c8dcae5a4f1ae1b402292b5afb163facf
d827e96938454140b88351a9a23d463cb225b4be
refs/heads/master
2023-03-18T15:09:36.846331
2021-03-08T03:52:58
2021-03-08T03:52:58
344,747,305
0
0
null
null
null
null
UTF-8
Java
false
false
1,495
java
package x.common.util.stream; import androidx.annotation.NonNull; import java.io.BufferedInputStream; import java.io.IOException; import java.io.InputStream; import java.util.Arrays; import x.common.util.Utils; /** * Author: cxx * Date: 2020-05-21 * GitHub: https://github.com/ccolorcat */ public final class Byt...
[ "xx.ch@outlook.com" ]
xx.ch@outlook.com
79e5031b222ec4cb3853b13b3d7d18558266dabd
b01332bd1b0eac2adb901ce121b0ba481e82a126
/beike/ops-order/src/main/java/com/meitianhui/order/entity/HongbaoOrder.java
0a25777df307e63f939d447865c9e05a6c5c9f67
[]
no_license
xlh198593/resin
5783690411bd23723c27f942b9ebaa6b992c4c3b
9632d32feaeeac3792118269552d3ff5ba976b39
refs/heads/master
2022-12-21T00:17:43.048802
2019-07-17T02:13:54
2019-07-17T02:13:54
81,401,320
0
2
null
2022-12-16T05:02:24
2017-02-09T02:49:12
Java
UTF-8
Java
false
false
4,898
java
package com.meitianhui.order.entity; import java.io.Serializable; import java.math.BigDecimal; import java.util.Date; /** * 礼券专区订单信息 * * @author Tiny * */ public class HongbaoOrder implements Serializable { /** * */ private static final long serialVersionUID = 1L; /** 订单标识 **/ private String order_id;...
[ "longjiangxia@la-inc.cn" ]
longjiangxia@la-inc.cn
b7eb0c699fb7fbd60749565d4d60afda7f25ef35
85fdcf0631ca2cc72ce6385c2bc2ac3c1aea4771
/src/minecraft/net/minecraft/src/ItemSandStone.java
7d0f85d85807d807ccb135f002521d923e5baaa5
[]
no_license
lcycat/Cpsc410-Code-Trip
c3be6d8d0d12fd7c32af45b7e3b8cd169e0e28d4
cb7f76d0f98409af23b602d32c05229f5939dcfb
refs/heads/master
2020-12-24T14:45:41.058181
2014-11-21T06:54:49
2014-11-21T06:54:49
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,048
java
package net.minecraft.src; public class ItemSandStone extends ItemBlock { private Block field_77893_a; public ItemSandStone(int par1, Block par2Block) { super(par1); field_77893_a = par2Block; setMaxDamage(0); setHasSubtypes(true); } /** * Gets ...
[ "kye.13@hotmail.com" ]
kye.13@hotmail.com
3a446f6b9f2ba5360aaca65739e94a0d9850b2f6
c52532293fb4ce4e2c7d49fa0d1f3f24bd23021b
/app/src/main/java/com/dev/lishabora/Adapters/NotificationsAdapter.java
e548bbe6c69251c33bb870b33fad90eb50c2da30
[]
no_license
erickogi/zaidi_android
882c0443c565cd1d47afa2af229a375a2d11c93e
c283125fe7e6c6db0f9fa9cab89d27b10f794cb6
refs/heads/master
2022-10-10T02:11:14.366388
2020-01-03T09:46:06
2020-01-03T09:46:06
230,906,269
0
0
null
null
null
null
UTF-8
Java
false
false
2,172
java
package com.dev.lishabora.Adapters; import android.content.Context; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import com.dev.lishabora.Adapters.ViewHolders.NotificationViewHolder; import com.dev.lishabora.Models.Notifica...
[ "erickogi14@gmail.com" ]
erickogi14@gmail.com
96e21215e8c8a226719670f6495260e2315c3b8d
c458fe10e1d8aef4c53d0f6e3cacaf7617ca4e9d
/AdvanceJava_ntaj114_Final/FilterApp3-DoublePosting-Solution/src/com/nt/filter/SessionTokenFilter.java
067a238d109ac18af90d9fce4e881cf2f00f043a
[]
no_license
aakulasaikiran/AdvanceJava
53c64c75eaf7f8581bcf8f067f828402c4a3a6a8
b702d4295b93ae82748cc2ca6052841c794208e6
refs/heads/master
2020-03-23T17:50:39.602290
2018-07-22T08:45:02
2018-07-22T08:45:02
141,878,302
0
0
null
null
null
null
UTF-8
Java
false
false
1,733
java
package com.nt.filter; import java.io.IOException; import java.util.Random; import javax.servlet.Filter; import javax.servlet.FilterChain; import javax.servlet.RequestDispatcher; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import javax.servlet.anno...
[ "aakulasaikiran@gmail.com" ]
aakulasaikiran@gmail.com
50312f55d5055a2c066473861b623eb3e5593f68
b23404e272db01f2bf46320565c11b9e02cf0c61
/joy/pas/src/main/java/web/com/hunthawk/reader/page/util/DetailPageField.java
e8551e085f373efd755a961b6be2c33bec6a0a2a
[]
no_license
brucesq/brucedamon001
95ab98798f1c29d722a397681956c24ff4091385
92ab181f90005afffb354d10768921545912119c
refs/heads/master
2021-05-29T09:35:05.115101
2011-12-20T05:42:28
2011-12-20T05:42:28
32,131,555
0
1
null
null
null
null
UTF-8
Java
false
false
565
java
/** * */ package com.hunthawk.reader.page.util; import java.io.Serializable; /** * @author BruceSun * */ public class DetailPageField implements Serializable { /** * */ private static final long serialVersionUID = 7923017203629034638L; private String title; private String value; ...
[ "quanzhi@8cf3193c-f4eb-11de-8355-bf90974c4141" ]
quanzhi@8cf3193c-f4eb-11de-8355-bf90974c4141
03c57037eeca958511fe9bba4254e02179d0801a
4812a838507d3c7032b3c11b75013e9122e0351e
/CommonLibrary/src/com/nd/hilauncherdev/kitset/fileselector/IconBrowserDialog.java
dce9b2310bc0b573e540c5409ab2317b191af0fb
[]
no_license
pikingdom/MyProject004
81b8859c4e2009d8ccb55fd349fefb301fed4966
d19f45971c37da3272616b0a15f998ac2cd57905
refs/heads/master
2020-03-24T23:12:23.464671
2018-08-01T08:35:59
2018-08-01T08:35:59
143,123,333
0
0
null
null
null
null
UTF-8
Java
false
false
5,833
java
package com.nd.hilauncherdev.kitset.fileselector; import java.io.File; import java.io.FileFilter; import java.util.ArrayList; import java.util.List; import android.app.Activity; import android.app.AlertDialog; import android.content.Context; import android.os.Environment; import android.view.View; import android.view...
[ "zhenghonglin@felink.com" ]
zhenghonglin@felink.com
682469e5eeb3597c2d2890b80a5ba284ef95a240
623b8eb08aa8c4a7679cc20b0728844f801f9ce6
/src/main/java/com/xiaoyi/bis/user/bean/OrderBean.java
8ebb08590b723de09a456632d0b8e8bb5438c478
[]
no_license
LiuYPGitHub/xiaoyi2
e8a9ef1b63161804e742d5ac08819cc2b97ed3f7
f713cfe91d5b6bc8102876e644e503666f028a34
refs/heads/master
2022-07-10T08:26:01.686314
2019-12-12T02:48:34
2019-12-12T02:48:34
227,505,173
0
0
null
null
null
null
UTF-8
Java
false
false
982
java
package com.xiaoyi.bis.user.bean; import lombok.Data; import lombok.ToString; import java.io.Serializable; import java.util.Date; /** * @Description:用户订单 * @Author:kk * @Date:2019/10/28 10:35 */ @Data @ToString public class OrderBean implements Serializable { private static final long serialVersionUID = 1L;...
[ "Philo@DESKTOP-OPRVRF1" ]
Philo@DESKTOP-OPRVRF1
5acb51636a8c290f5b13820fda05b92dd0ce747e
8a240443a2c9822042cca9e5a113cf2994ab0c23
/templates/googlesamples-mvp-contentproviders/app/src/main/java/com/example/android/architecture/blueprints/todoapp/data/source/local/TasksPersistenceContract.java
85d0997240d4c840497b64a15e87cd76b55cba63
[ "MIT" ]
permissive
androidstarters/androidstarters
946373f0b5789aff6c055429d9e54ec30f6f7998
f5f430dce500e6f722ca7c6e43372891a5832586
refs/heads/develop
2020-12-02T21:17:21.952070
2017-07-23T18:57:37
2017-07-23T18:57:37
96,288,465
2
0
null
2017-07-23T09:10:30
2017-07-05T07:12:23
Java
UTF-8
Java
false
false
3,412
java
/* * Copyright 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 applic...
[ "ravidsrk@gmail.com" ]
ravidsrk@gmail.com
606b44ed78609995897bf94138fdaead723a5439
ed5159d056e98d6715357d0d14a9b3f20b764f89
/test/irvine/oeis/a014/A014407Test.java
0e71f595dcad4ef4b60cf877850ebbfa336f0558
[]
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
195
java
package irvine.oeis.a014; import irvine.oeis.AbstractSequenceTest; /** * Tests the corresponding class. * @author Sean A. Irvine */ public class A014407Test extends AbstractSequenceTest { }
[ "sairvin@gmail.com" ]
sairvin@gmail.com
24154019c452f3708c36962691a5add8f327b2c5
ab8a34e5b821dde7b09abe37c838de046846484e
/twilio/sample-code-master/api/v2010/account/read-example-2/read-example-2.7.x.java
08ac76a5c3bd67c0dcdb6d2a7b4b4fb1ef88079f
[]
no_license
sekharfly/twilio
492b599fff62618437c87e05a6c201d6de94527a
a2847e4c79f9fbf5c53f25c8224deb11048fe94b
refs/heads/master
2020-03-29T08:39:00.079997
2018-09-21T07:20:24
2018-09-21T07:20:24
149,721,431
0
1
null
null
null
null
UTF-8
Java
false
false
716
java
// Install the Java helper library from twilio.com/docs/java/install import com.twilio.Twilio; import com.twilio.base.ResourceSet; import com.twilio.rest.api.v2010.Account; public class Example { // Find your Account Sid and Token at twilio.com/console public static final String ACCOUNT_SID = "ACXXXXXXXXXXXXX...
[ "sekharfly@gmail.com" ]
sekharfly@gmail.com
8b14e8dde7eb9c40e9f26acf0c90e818955d7afe
a9eed5b15e6e6d9f2102b6785188661a742cd9ba
/src/com/osrs/game/content/skill/herblore/Potion.java
77ec80020a627f7291f142432db0c85957beb870
[]
no_license
KillTheKingBeTheKing/Regicide
124fadfb76fcc59b6721b71eeb20fb83fb25c7fa
80e35f5f80104b9d796e8cddf6b524f993a8829d
refs/heads/master
2020-04-11T09:58:06.610776
2018-12-29T13:04:44
2018-12-29T13:05:48
161,698,024
0
0
null
null
null
null
UTF-8
Java
false
false
4,271
java
package com.osrs.game.content.skill.herblore; import com.osrs.game.model.Item; public enum Potion { AGILITY(new Item(3032), 34, 80, new Item(2998), new Item(2152)), ANTI_VENOM(new Item(12905), 87, 120, new Item(5954), new Item(12934, 15)), ANTI_VENOM_PLUS(new Item(12913), 94, 125, new Item(12907), new Item(...
[ "KillTheKingBeTheKing@hotmail.com" ]
KillTheKingBeTheKing@hotmail.com
8e80fec9f418d220dcb105b2f27400acb9d0ea68
c81dd37adb032fb057d194b5383af7aa99f79c6a
/java/kotlin/jvm/internal/IntSpreadBuilder.java
b8a58df944a4441a8ecf61794f8321f09ee49268
[]
no_license
hongnam207/pi-network-source
1415a955e37fe58ca42098967f0b3307ab0dc785
17dc583f08f461d4dfbbc74beb98331bf7f9e5e3
refs/heads/main
2023-03-30T07:49:35.920796
2021-03-28T06:56:24
2021-03-28T06:56:24
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,611
java
package kotlin.jvm.internal; import com.tapjoy.TJAdUnitConstants; import kotlin.Metadata; @Metadata(bv = {1, 0, 3}, d1 = {"\u0000\u001e\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0010\u0015\n\u0000\n\u0002\u0010\b\n\u0002\b\u0003\n\u0002\u0010\u0002\n\u0002\b\u0004\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020...
[ "nganht2@vng.com.vn" ]
nganht2@vng.com.vn
53f9b7e18cd6b6283941b0395024232dd03ca729
74cfab08989e819f13eddc791aca7f3728dcdc1e
/jstl/src/com/iot/test/test/DBConTest.java
722981a23612ef254d29b28494b130800420270e
[]
no_license
Rambo7578/jstl1
31489afd23432595867adf11abf5a54da94cb45f
0ff2a59e9b7fb9aee61c054bf580da0e43464ee1
refs/heads/master
2021-05-11T12:32:50.283940
2018-01-22T09:47:30
2018-01-22T09:47:30
117,660,462
0
0
null
null
null
null
UTF-8
Java
false
false
548
java
package com.iot.test.test; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; public class DBConTest { public static Connection getCon() { String url = "jdbc:mariadb://localhost:3306/iot2"; String user = "root"; String password = "r1r2r3"; Connection con = n...
[ "DJA@DJA-PC" ]
DJA@DJA-PC
fdc4ef56b8fe9c9532c7221a7cfa23196a8ab87d
5c0a5d1e3685720e5fa387a26a60dd06bb7c6e4a
/group-unusable/market-processor/src/main/java/com/spark/bitrade/service/LatestTradeCacheService.java
3abd6b1c05d3f48572a541292fa00ad72955cf04
[]
no_license
im8s/silk-v1
5d88ccd1b5ed2370f8fba4a70298d1d14d9a175d
ff9f689443af30c815a8932899a333dfc87f6f12
refs/heads/master
2022-06-20T13:08:01.519634
2020-04-28T02:56:50
2020-04-28T02:56:50
null
0
0
null
null
null
null
UTF-8
Java
false
false
3,176
java
package com.spark.bitrade.service; import com.spark.bitrade.entity.ExchangeTrade; import com.spark.bitrade.ext.LimitQueue; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.Collections; import java.util.List...
[ "huihui123" ]
huihui123
b7da74ca39c87c1bc47c60dc8f6048bd8eb1ec09
dc1dbb7e5a4b95bf44170d2f51fd08b3814f2ac9
/data_defect4j/preprossed_method_corpus/Math/31/org/apache/commons/math3/distribution/UniformIntegerDistribution_getSupportUpperBound_120.java
39d2069c1de5a552cc938803632441bed6185857
[]
no_license
hvdthong/NetML
dca6cf4d34c5799b400d718e0a6cd2e0b167297d
9bb103da21327912e5a29cbf9be9ff4d058731a5
refs/heads/master
2021-06-30T15:03:52.618255
2020-10-07T01:58:48
2020-10-07T01:58:48
150,383,588
1
1
null
2018-09-26T07:08:45
2018-09-26T07:08:44
null
UTF-8
Java
false
false
538
java
org apach common math3 distribut implement uniform integ distribut href http wikipedia org wiki uniform distribut discret uniform distribut discret wikipedia version uniform integ distribut uniformintegerdistribut abstract integ distribut abstractintegerdistribut ...
[ "hvdthong@gmail.com" ]
hvdthong@gmail.com
4d8c61610f41c649ba49b2624c5152c2991eb25b
36155fc6d1b1cd36edb4b80cb2fc2653be933ebd
/lc/src/LC/SOL/FindtheDuplicateNumber.java
41a11c7ce0c713d1f08bc0c435aec14304107cd4
[]
no_license
Delon88/leetcode
c9d46a6e29749f7a2c240b22e8577952300f2b0f
84d17ee935f8e64caa7949772f20301ff94b9829
refs/heads/master
2021-08-11T05:52:28.972895
2021-08-09T03:12:46
2021-08-09T03:12:46
96,177,512
0
0
null
null
null
null
UTF-8
Java
false
false
517
java
package LC.SOL; public class FindtheDuplicateNumber { class Solution { public int findDuplicate(int[] nums) { if (nums.length <= 1) return -1; int slow = 0, fast = 0; do { slow = nums[slow]; fast = nums[nums[fast]]; } while (fa...
[ "Mr.AlainDelon@gmail.com" ]
Mr.AlainDelon@gmail.com
115eb15a14860cd7e480237521a4376a91566781
0af8b92686a58eb0b64e319b22411432aca7a8f3
/single-large-project/src/test/java/org/gradle/test/performancenull_29/Testnull_2872.java
525525f8668a2ffe49d1a40d934e3338138bbb7e
[]
no_license
gradle/performance-comparisons
b0d38db37c326e0ce271abebdb3c91769b860799
e53dc7182fafcf9fedf07920cbbea8b40ee4eef4
refs/heads/master
2023-08-14T19:24:39.164276
2022-11-24T05:18:33
2022-11-24T05:18:33
80,121,268
17
15
null
2022-09-30T08:04:35
2017-01-26T14:25:33
null
UTF-8
Java
false
false
304
java
package org.gradle.test.performancenull_29; import static org.junit.Assert.*; public class Testnull_2872 { private final Productionnull_2872 production = new Productionnull_2872("value"); @org.junit.Test public void test() { assertEquals(production.getProperty(), "value"); } }
[ "cedric.champeau@gmail.com" ]
cedric.champeau@gmail.com
3284624345a5ee47f6d74b8e31db4c0d221b8b5d
f77d04f1e0f64a6a5e720ce24b65b1ccb3c546d2
/zyj-hec-master/zyj-hec/src/main/java/com/hand/hec/bpm/dto/PageTagTextfield.java
33506e346de99e20d3ae85316ee6282ab4869496
[]
no_license
floodboad/zyj-hssp
3139a4e73ec599730a67360cd04aa34bc9eaf611
dc0ef445935fa48b7a6e86522ec64da0042dc0f3
refs/heads/master
2023-05-27T21:28:01.290266
2020-01-03T06:21:59
2020-01-03T06:29:37
null
0
0
null
null
null
null
UTF-8
Java
false
false
982
java
package com.hand.hec.bpm.dto; /** * Auto Generated By Code Generator * Description: */ import com.hand.hap.mybatis.annotation.ExtensionAttribute; import com.hand.hap.system.dto.BaseDTO; import org.hibernate.validator.constraints.Length; import org.springframework.stereotype.Component; import javax.persistence.Id;...
[ "1961187382@qq.com" ]
1961187382@qq.com
ee0ae1b366a88b228bc3456f22be95efea3a79ca
8af1164bac943cef64e41bae312223c3c0e38114
/results-java/google--guice/76c24b172e5c4c4b6d51c10dd5c1f491a4033157/after/InjectionRequestProcessor.java
3995762b1f8f415ced133ce839dea75275857b7a
[]
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
3,846
java
/** * Copyright (C) 2008 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
[ "fraczwojciech@gmail.com" ]
fraczwojciech@gmail.com
298426cb4995c3d091548d3c3c61907359fe4272
ce32decef039a586855c362381003d21d1ab3342
/modules/flowable-spring-boot/flowable-spring-boot-starters/flowable-spring-boot-autoconfigure/src/main/java/org/flowable/spring/boot/FlowableAutoDeploymentProperties.java
4f1d684018cc656d96b4949adec48b3d905fd2c5
[ "Apache-2.0" ]
permissive
flowable/flowable-engine
fa5fb5c29a453669887bee7874ca6d73fd2663c7
7bd4ee8b7374b43dcdd517a26afa14e6806f40e4
refs/heads/main
2023-08-31T03:55:26.415399
2023-08-29T11:53:55
2023-08-29T11:53:55
70,780,002
7,040
2,775
Apache-2.0
2023-09-14T16:51:30
2016-10-13T07:21:43
Java
UTF-8
Java
false
false
5,829
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...
[ "filip.hrisafov@gmail.com" ]
filip.hrisafov@gmail.com
789a1d28e457dff74db53635ae5c1aa5e1c95b13
b31a156fba44254548ee8123535b4a319bfd9eb8
/event/src/main/java/com/tutorialspoint/MainApp.java
753d067b2ac5e49265742b2b36790fe518440fb2
[]
no_license
FerryboatSeranade/qucik-start-anything
8a5edcbb078e9c3c413f303a6b3c9f947fbed3d9
97da8e663ab01b6b82da0f621d846ad9e8ba870a
refs/heads/master
2023-01-06T13:34:08.423134
2020-10-29T18:51:50
2020-10-29T18:51:50
308,078,448
0
0
null
null
null
null
UTF-8
Java
false
false
566
java
package com.tutorialspoint; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class MainApp { public static void main(String[] args) { ConfigurableApplicationContext context = new ClassPathXmlApplicat...
[ "123456" ]
123456
532c8e2e3bec187833d42833784ea3351a222326
de2e77a2d79fd6599b718f3bc6b5b93b2341d1d7
/hfut-fr/src/main/java/edu/hfut/fr/image/processing/morphology/Thicken.java
c91b6c29aeeb45458ef966fef7efcf2e825f3896
[]
no_license
education-service/hfut-face-plate
0100c91c401d7cb72c3cd11f9ae4aa87e1ee172f
094d865d060f8a10ba6f162ff35d4ec5d9a012d1
refs/heads/master
2016-09-11T07:07:15.740260
2015-11-29T13:40:51
2015-11-29T13:40:51
30,165,805
0
1
null
null
null
null
UTF-8
Java
false
false
994
java
package edu.hfut.fr.image.processing.morphology; import org.openimaj.image.FImage; import org.openimaj.image.pixel.ConnectedComponent; import org.openimaj.image.processor.ImageProcessor; import org.openimaj.image.processor.connectedcomponent.ConnectedComponentProcessor; /** * 模糊部分 * * @author Jimbo */ public clas...
[ "wanggang@zxisl.com" ]
wanggang@zxisl.com
5a6c7c3aadc4890fb5c95cbe43779ffd5daf4934
163cb357430bb51eceab9e186d1a9da6f492b45c
/jOOQ-master/jOOQ-test/src/test/java/org/jooq/test/h2/generatedclasses/tables/TExoticTypes.java
73870742f8d13ffea35de1cc8b65d6f6770af818
[ "Apache-2.0" ]
permissive
saminray/mostafa
33b6b19f133d1eeca6b98a861fc130380d876e37
eccbad998d9e047c9c6e324dada5a6a90469d8a1
refs/heads/master
2020-03-29T12:28:50.741551
2018-09-22T18:12:53
2018-09-22T18:12:53
149,901,430
1
0
null
null
null
null
UTF-8
Java
false
false
2,561
java
/** * This class is generated by jOOQ */ package org.jooq.test.h2.generatedclasses.tables; /** * This class is generated by jOOQ. */ @java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class TExoticTypes extends org.jooq.impl.TableImpl<org.jooq.test.h2.generatedclasses.tables.records.TExoticType...
[ "ms.shafeian@gmail.com" ]
ms.shafeian@gmail.com
44aa96f096e59162b3a1fd556e91e4efdc2d691b
ac68b309495d823bf081d168c4a013095c76b1fd
/HubbleBackend/src/com/hubble/hubblebackend/postgressql/model/EventTagRawId.java
b3df177513b6bff6489ee287a475f73d50957ec3
[]
no_license
hmehrotra/hubble
f6d726b8a9d7deed94f67893c3c44c2763be88c3
3762613ed351d3fd4b31c369c3f10b33c06edf70
refs/heads/master
2016-08-04T14:16:38.080270
2015-09-21T00:22:10
2015-09-21T00:22:10
12,354,502
0
0
null
2015-08-30T00:45:27
2013-08-25T05:18:10
HTML
UTF-8
Java
false
false
1,342
java
package com.hubble.hubblebackend.postgressql.model; // Generated Sep 7, 2015 5:12:35 PM by Hibernate Tools 3.4.0.CR1 /** * EventTagRawId generated by hbm2java */ public class EventTagRawId implements java.io.Serializable { private int event; private int editor; private int tag; public EventTagRawId() { } p...
[ "hmehrotra@apple.com" ]
hmehrotra@apple.com
ad2418fc3ffd5ddcd1ee29e807c2e430e4e7caf8
0a6336496abdb49a8fbcbbbcad581c850356f018
/src/test/java/org/openapitools/client/model/TransactionRequestBroadcastedTest.java
ff44b2198106452f77e0cb7ca502dd9c3fffe5d4
[]
no_license
Crypto-APIs/Crypto_APIs_2.0_SDK_Java
8afba51f53a7a617d66ef6596010cc034a48c17d
29bac849e4590c4decfa80458fce94a914801019
refs/heads/main
2022-09-24T04:43:37.066099
2022-09-12T17:38:13
2022-09-12T17:38:13
360,245,136
5
1
null
null
null
null
UTF-8
Java
false
false
2,207
java
/* * CryptoAPIs * Crypto APIs is a complex and innovative infrastructure layer that radically simplifies the development of any Blockchain and Crypto related applications. Organized around REST, Crypto APIs can assist both novice Bitcoin/Ethereum enthusiasts and crypto experts with the development of their blockchain...
[ "kristiyan.ivanov@menasoftware.com" ]
kristiyan.ivanov@menasoftware.com
5b37f283020e2dcd7894639afdbcc0f944dc3c62
f96fe9258e983db03783d3c2fc0ffbc6574f49c8
/src/main/java/com/camunda/consulting/client/model/ParseExceptionDto.java
801d7f87b2c4bb031895f873715c2dd21f69f475
[]
no_license
lucascalsilva/camunda-rest-client-spring
cf22464bc76ad8d5cf01bb0b970d162c12dbc89f
a94a5b1948f234d8d0da9ece0d4b65ca6f4ca23b
refs/heads/master
2022-12-19T23:47:32.846799
2020-09-20T13:05:57
2020-09-20T13:05:57
297,077,809
0
0
null
null
null
null
UTF-8
Java
false
false
4,824
java
/* * Camunda BPM REST API * OpenApi Spec for Camunda BPM REST API. * * The version of the OpenAPI document: 7.13.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ package com.camunda.consul...
[ "lucasc.alm.silva@gmail.com" ]
lucasc.alm.silva@gmail.com
cc575acbeb473ccdfac444347e5974b8fd72c296
421f0a75a6b62c5af62f89595be61f406328113b
/generated_tests/no_seeding/2_a4j-net.kencochrane.a4j.beans.ShoppingCart-1.0-7/net/kencochrane/a4j/beans/ShoppingCart_ESTest.java
61f254bb81044203bf5014cb20bf0ee0ca61f089
[]
no_license
tigerqiu712/evosuite-model-seeding-empirical-evaluation
c78c4b775e5c074aaa5e6ca56bc394ec03c2c7c6
11a920b8213d9855082d3946233731c843baf7bc
refs/heads/master
2020-12-23T21:04:12.152289
2019-10-30T08:02:29
2019-10-30T08:02:29
null
0
0
null
null
null
null
UTF-8
Java
false
false
655
java
/* * This file was automatically generated by EvoSuite * Mon Oct 28 20:27:51 GMT 2019 */ package net.kencochrane.a4j.beans; 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(Evo...
[ "pderakhshanfar@bsr01.win.tue.nl" ]
pderakhshanfar@bsr01.win.tue.nl
8e944eaf3a3a076bb1a4822c8c9bfbcee16fb0ba
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_5630113748090880_0/java/kuma2016/Small.java
67d35f13f68fb606faa7d7cb43296b9fba8c91b5
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
Java
false
false
2,266
java
package year2016.r1a.b; import java.io.File; import java.io.PrintWriter; import java.util.ArrayList; import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Scanner; public class Small { static boolean IS_DEBUG = false; public static void main(String[]...
[ "alexandra1.back@gmail.com" ]
alexandra1.back@gmail.com
60b9281d2bff3d3df35e169f70bec19dd2d853be
dec5367d964672b7020ce90a548ac3788acd1e24
/app/src/main/java/com/example/administrator/expressuserclient/http/network/HeaderInterceptor.java
bee039992cf26b00ed2a7b208516152645f3ed23
[]
no_license
xyj155/ExpressUserClient
8585192184c5adb1837917ad62adb6a7dbf3587c
4293f3034f3486e079cbf6a639d3438388896e3e
refs/heads/master
2020-03-25T08:17:18.856876
2018-09-30T06:44:38
2018-09-30T06:44:38
143,605,630
29
3
null
null
null
null
UTF-8
Java
false
false
631
java
package com.example.administrator.expressuserclient.http.network; import java.io.IOException; import okhttp3.Interceptor; import okhttp3.Request; import okhttp3.Response; /** * Created by $wu on 2017-08-04 上午 10:28. * okhttp的拦截器添加header */ public class HeaderInterceptor implements Interceptor { @Override ...
[ "1789780841@qq.com" ]
1789780841@qq.com
b6a3719869cd0b6b063257e521323246976df373
f5b1b1fd906429545471ff597c2d7b32ffe8e9ec
/GPISfxc/GPISfxc/src/com/sfxc/service/CourtDealInfoService.java
453e2d428de3117e27fc4e787ae283f9ec08be03
[]
no_license
qiupengwei0828/code
71fe936136727be1c312ca720dff1acab7596217
91ace50d775c8d79c425363e0473a3d93f98d422
refs/heads/master
2021-05-14T01:35:44.801805
2018-01-27T02:57:41
2018-01-27T02:58:02
116,566,974
2
0
null
null
null
null
UTF-8
Java
false
false
182
java
package com.sfxc.service; import com.base.service.BaseService; import com.sfxc.entity.CourtDealInfo; public interface CourtDealInfoService extends BaseService<CourtDealInfo>{ }
[ "1940519031@qq.com" ]
1940519031@qq.com
cf151368ca62ca2813b5d3503823ed037aabbb04
7ecb62c9161efa44fb667be866afbed213e30985
/base-observer-design/src/main/java/com/base/demo/design/service/LotteryService.java
4586deda00f853dd9ceb0ae35e0d641fe4f0055f
[]
no_license
chenxiban/base-demo-design
58fb55f2345916ef7227f4318b08737d70bb6df7
721fb476bd99853f3d2320e3d2c5d666dc4145e9
refs/heads/master
2023-06-28T06:30:51.386346
2021-08-02T08:19:19
2021-08-02T08:19:19
380,394,708
1
0
null
null
null
null
UTF-8
Java
false
false
585
java
package com.base.demo.design.service; import com.base.demo.design.result.LotteryResult; /** * @Description: 定义接口 * @BelongsProject: base-demo-design * @BelongsPackage: com.base.demo.design.service * @Author: ChenYongJia * @CreateTime: 2021-07-03 15:46 * @Email: chen87647213@163.com * @Version: 1.0 */ public i...
[ "chen867647213@163.com" ]
chen867647213@163.com
08f64c447933ed6a96e47addca9fb0be263e25cd
889e7eb5648e208b77da170fe2ba45e84dbbca27
/silicone/src/main/java/net/catchpole/silicone/resource/ResourceProperties.java
50fa72c6c11ddb10a129e80bb113f0c977743cab
[ "Apache-2.0" ]
permissive
slipperyseal/silicone
2edbec8229248163604a5fbf64618f1e63c9301e
bce852dc3cecee6d5ab31147afd176e72d3dcb51
refs/heads/slippery
2021-01-13T01:42:21.618422
2020-10-07T04:44:20
2020-10-07T04:44:20
20,959,108
0
0
Apache-2.0
2020-10-13T06:48:20
2014-06-18T10:59:48
Java
UTF-8
Java
false
false
1,165
java
package net.catchpole.silicone.resource; // Copyright 2014 catchpole.net // // 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 //...
[ "christian@catchpole.net" ]
christian@catchpole.net
83c1ccd20847294a9eee7a1096aa5ab35a047663
e1f8708de413414391029511800ba61123b74b84
/app/src/main/java/top/yundesign/fmz/UI/activity/ForgetActivity.java
990627c85b056ef31b3410c093e586ed886298de
[]
no_license
liushiyun8/FmzShop
5bf979f599294f0c57af38ac8984306655d335ac
4e5f06e958859dd8e695f8f96a72d7c12d447da1
refs/heads/master
2020-03-22T14:24:26.037596
2018-08-11T01:24:14
2018-08-11T01:24:17
140,176,971
0
0
null
null
null
null
UTF-8
Java
false
false
648
java
package top.yundesign.fmz.UI.activity; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import top.yundesign.fmz.App.AppActivity; import top.yundesign.fmz.R; public class ForgetActivity extends AppActivity { @Override protected void onCreate(Bundle savedInstanceState) { sup...
[ "764512727@qq.com" ]
764512727@qq.com
0582a1f927ce8fce3e771373157a25913fa6c266
e6513b3665e005f1ebd9bf040a553f26000e47c9
/parkClientServer/src/main/java/com/starnetsecurity/parkClientServer/service/DiscountService.java
6de80a6b1d7eb688be72479e87797d4e4c994c57
[]
no_license
wwwK/PMS-VEHICLE
4be0d750f5cff48c684abd0f2d1e02c3cd1b1c36
b1231abfb95cd5d759c472a27943b867d4b48832
refs/heads/master
2023-07-15T09:55:53.560357
2020-05-09T02:02:38
2020-05-09T02:02:38
null
0
0
null
null
null
null
UTF-8
Java
false
false
574
java
package com.starnetsecurity.parkClientServer.service; import java.util.List; import java.util.Map; /** * Created by JAMESBANG on 2018/3/20. */ public interface DiscountService { List GetDisCountInfoList(String discountType,Integer start,Integer length); Long GetDiscountListCount(String discountType); ...
[ "chenbinbin.af@star-net.cn" ]
chenbinbin.af@star-net.cn
920f8095489029ac22ac7bdea925658a05d57a40
6305f25ace1a7854b3fda0c7ef45169262a85393
/dsearch-all/dsearch-api/src/main/java/com/mall/dsearch/vo/PlainProduct.java
361d1a882c747342cfe0c4d71a0b66f1442fb92b
[]
no_license
18435753200/company_sqw
118dc4da41fec51abdc37b60d739063bc748f104
f28f68dbdcef128debf860f3da8f24bd9784bd4d
refs/heads/master
2022-12-25T07:40:02.825797
2018-08-10T10:25:31
2018-08-10T10:25:31
142,100,894
0
2
null
2022-12-16T02:28:04
2018-07-24T03:44:53
Java
UTF-8
Java
false
false
8,350
java
package com.mall.dsearch.vo; import java.io.Serializable; import java.math.BigDecimal; import java.util.List; /** * 商品概要属性 * @author DOUBLELL * */ public class PlainProduct implements Serializable{ private static final long serialVersionUID = 5824468317741299992L; private String pid; private String pname; pri...
[ "2581890372@163.com" ]
2581890372@163.com
82a6ae34c675ad325488b049e8ca89bcae6b4aa7
c37d2a36312534a55c319b19b61060649c7c862c
/app/src/main/java/com/spongycastle/operator/bc/BcSignerOutputStream.java
978a4b88be09089322e821fa1bd500e95fd05fc7
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
trwinowiecki/AndroidTexting
f5626ad91a07ea7b3cd3ee75893abf8b1fe7154f
27e84a420b80054e676c390b898705856364b340
refs/heads/master
2020-12-30T23:10:17.542572
2017-02-01T01:46:13
2017-02-01T01:46:13
80,580,124
0
0
null
null
null
null
UTF-8
Java
false
false
899
java
package com.spongycastle.operator.bc; import java.io.IOException; import java.io.OutputStream; import com.spongycastle.crypto.CryptoException; import com.spongycastle.crypto.Signer; public class BcSignerOutputStream extends OutputStream { private Signer sig; BcSignerOutputStream(Signer sig) { ...
[ "trw0511@gmail.com" ]
trw0511@gmail.com
f9dfe0bd9badeb933e6ac47fa990ad00350b08a9
e1e5432cd329c500635c4b532fc84ad04b8d89f6
/src/main/java/com/cdfg/helppost/dao/CustaddrlistDao.java
58a44200234198cfd241c1121a7543509b7d1863
[]
no_license
cdfwangchong/helppost
cc386c1384086df0fc372a1fc613a790e3dc3a54
d73dc494058073f4fd18bbaa28fc5e5552ac2a31
refs/heads/master
2023-04-06T19:15:54.855502
2021-04-12T05:48:30
2021-04-12T05:48:30
311,284,600
0
0
null
null
null
null
UTF-8
Java
false
false
462
java
package com.cdfg.helppost.dao; import com.cdfg.helppost.pojo.dto.Custaddrlist; import com.cdfg.helppost.pojo.dto.InsertCustAddrDto; import org.springframework.stereotype.Repository; import java.math.BigDecimal; import java.util.List; @Repository public interface CustaddrlistDao { int updateByPrimaryKey(List<Stri...
[ "you@example.com" ]
you@example.com
d7eb6308c17448e1bb14bf8c61c3d40b181fc525
fa93c9be2923e697fb8a2066f8fb65c7718cdec7
/sources/com/avito/android/remote/model/text/AttributedTextCreatorImpl.java
8236f43bf01103d8c561ccbcbaf433830b35f13d
[]
no_license
Auch-Auch/avito_source
b6c9f4b0e5c977b36d5fbc88c52f23ff908b7f8b
76fdcc5b7e036c57ecc193e790b0582481768cdc
refs/heads/master
2023-05-06T01:32:43.014668
2021-05-25T10:19:22
2021-05-25T10:19:22
370,650,685
0
0
null
null
null
null
UTF-8
Java
false
false
1,604
java
package com.avito.android.remote.model.text; import com.avito.android.deep_linking.links.DeepLink; import kotlin.Metadata; import kotlin.jvm.internal.Intrinsics; import org.jetbrains.annotations.NotNull; import t6.n.d; @Metadata(bv = {1, 0, 3}, d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\...
[ "auchhunter@gmail.com" ]
auchhunter@gmail.com
db37930357a6cd3cd0399b48cf4ed04b8d87d601
6dfea62d9cc7f9c656e17cf1ee03c40dde30e563
/expandablelistview-master2/src/androidTest/java/com/example/expandablelistview_master/ExampleInstrumentedTest.java
a1ac58ee6d000bb1949a6740a7dfbf8da773089f
[]
no_license
duboAndroid/MyExpandableListView
f8df428512b9716240a28c0bd73e49bd41c0a81c
339b2d29bf84473c5288e1ad67c4abc97f7c9c75
refs/heads/master
2021-08-14T18:02:05.431197
2017-11-16T11:22:11
2017-11-16T11:22:11
110,531,113
0
0
null
null
null
null
UTF-8
Java
false
false
778
java
package com.example.expandablelistview_master; 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 exec...
[ "277627117@qq.com" ]
277627117@qq.com
2bf7449088a74fef1a5552d76605850525dffe93
dc1dbb7e5a4b95bf44170d2f51fd08b3814f2ac9
/data_defect4j/preprossed_method_corpus/Math/59/org/apache/commons/math/linear/AbstractRealVector_advance_557.java
ab8fed5cc626d6d67a3b883e52d74fa6ff4ccf15
[]
no_license
hvdthong/NetML
dca6cf4d34c5799b400d718e0a6cd2e0b167297d
9bb103da21327912e5a29cbf9be9ff4d058731a5
refs/heads/master
2021-06-30T15:03:52.618255
2020-10-07T01:58:48
2020-10-07T01:58:48
150,383,588
1
1
null
2018-09-26T07:08:45
2018-09-26T07:08:44
null
UTF-8
Java
false
false
907
java
org apach common math linear basic implement method link real vector realvector version revis date abstract real vector abstractrealvector real vector realvector ...
[ "hvdthong@gmail.com" ]
hvdthong@gmail.com
df2f69784e1e5a9c68be2134db14a64ee5dea5d2
0e8cc4d0b219fd078e9921328b6e31169e6c49d5
/storyboard-main/src/main/java/com/lexicalscope/sb/main/JettyWebRequest.java
08cf0b15c55348a2486c3ae1c6ac9472bdd35542
[]
no_license
lexicalscope/storyboard
02841aab9bb4bcef7d7aaf5bf2529e52979ec897
8e00c4e31f5afac5d1cb5338f711a76129963992
refs/heads/master
2016-09-10T18:53:03.509582
2014-07-03T15:25:54
2014-07-03T15:25:54
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,823
java
package com.lexicalscope.sb.main; import java.util.HashMap; import java.util.Iterator; import javax.servlet.http.Cookie; import javax.servlet.http.HttpServletRequest; import org.eclipse.jetty.server.Request; import com.lexicalscope.sb.http.WebRequest; public class JettyWebRequest implements WebRequest { private...
[ "lexicalscope@gmail.com" ]
lexicalscope@gmail.com
b6e88f2640d18ddb56990849cfec1ad1233a7408
3bb9e1a187cb72e2620a40aa208bf94e5cee46f5
/mobile_catalog/src/ong/eu/soon/ifx/element/NextDt.java
3b752254adb7c6c0446c1356279cb0fc3f51abdf
[]
no_license
eusoon/Mobile-Catalog
2e6f766864ea25f659f87548559502358ac5466c
869d7588447117b751fcd1387cd84be0bd66ef26
refs/heads/master
2021-01-22T23:49:12.717052
2013-12-10T08:22:20
2013-12-10T08:22:20
null
0
0
null
null
null
null
UTF-8
Java
false
false
133
java
package ong.eu.soon.ifx.element; import ong.eu.soon.ifx.basetypes.IFXDateTime; public class NextDt extends IFXDateTime { }
[ "eusoon@gmail.com" ]
eusoon@gmail.com
4360c47adfa41eaed17412560251718859097044
b9c6b0c5a34d55ffe9e43e2a1275b09b3b1ed9d8
/src-gen/main/java/net/opengis/citygml/vegetation/_2/ObjectFactory.java
3375ca3b3119165db96c78ec9d1bd4195dbbff73
[ "LGPL-3.0-only", "Apache-2.0" ]
permissive
nls-jajuko/citygml4j
c0d2051218ab9eca97915668901cd7435d4aefc3
ebbd22846e4ab36140b72fe76500af2cc9901b9e
refs/heads/master
2021-11-19T16:00:00.899899
2021-09-25T15:52:28
2021-09-25T15:52:28
235,549,623
0
0
Apache-2.0
2020-01-22T10:28:25
2020-01-22T10:28:24
null
UTF-8
Java
false
false
7,109
java
// // Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 generiert // Siehe <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a> // Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. // Generiert: 2019.0...
[ "cnagel@virtualcitysystems.de" ]
cnagel@virtualcitysystems.de
388357e151c37cc8281b0d99f47e23ba23aa501b
78f7fd54a94c334ec56f27451688858662e1495e
/partyanalyst-service/trunk/src/main/java/com/itgrids/partyanalyst/service/ICtpCasteReportService.java
fcda78dc8d95de2c684fce6f160ede621da33abc
[]
no_license
hymanath/PA
2e8f2ef9e1d3ed99df496761a7b72ec50d25e7ef
d166bf434601f0fbe45af02064c94954f6326fd7
refs/heads/master
2021-09-12T09:06:37.814523
2018-04-13T20:13:59
2018-04-13T20:13:59
129,496,146
1
0
null
null
null
null
UTF-8
Java
false
false
932
java
package com.itgrids.partyanalyst.service; import com.itgrids.partyanalyst.dto.SurveyCompletionDetailsVO; import com.itgrids.partyanalyst.dto.SurveyStatusVO; import com.itgrids.partyanalyst.dto.VoterHouseInfoVO; import com.itgrids.partyanalyst.excel.booth.VoterVO; public interface ICtpCasteReportService { ...
[ "itgrids@b17b186f-d863-de11-8533-00e0815b4126" ]
itgrids@b17b186f-d863-de11-8533-00e0815b4126
d9395ead239c1a872ca5bd60ce6ff1c17b25d5e1
e45d3d18dd33e192a44db1f0d7d3a23b8c3d1069
/buddha-manager/src/main/java/com/zhenhappy/ems/manager/dto/QueryHistoryInfo.java
cf1b77345088be866901068472879c766c2b6b04
[]
no_license
wangxdxicec/buddhafair
da6a53acd68397a7773e7032dd2d96523bc60738
ad452a745a28a7289a12b2ed1b548fc5c0ea2b55
refs/heads/master
2021-01-23T06:35:40.127689
2017-06-01T07:54:06
2017-06-01T07:54:06
93,030,904
0
1
null
null
null
null
UTF-8
Java
false
false
4,269
java
package com.zhenhappy.ems.manager.dto; import java.util.Date; /** * Created by wangxd on 2016-07-15. */ public class QueryHistoryInfo extends EasyuiRequest { private Integer id; private String address; //地址 private String company; //公司名 private String contact; //联系人 private String mob...
[ "wangxd@xicec.com" ]
wangxd@xicec.com
c4c8a461eb627051820645b8ee127fdf1b6dfea0
e39c181577de3ffd341ddbbe54c60afb72bd9fe9
/src/main/java/io/tchepannou/kiosk/api/service/ArticleService.java
ba632e2f45e298c00cd805ce8f6a40e49055af54
[]
no_license
htchepannou/kiosk-api
aca2f0dd7e7f5dacd36951370996861f74cf016f
993499b32cd290c6e2027d9b7dd5afa3d16bb943
refs/heads/master
2020-12-04T16:41:54.963434
2017-04-17T01:17:55
2017-04-17T01:17:55
67,501,715
0
1
null
2017-04-02T05:17:20
2016-09-06T11:27:10
Java
UTF-8
Java
false
false
2,740
java
package io.tchepannou.kiosk.api.service; import com.google.common.collect.ArrayListMultimap; import com.google.common.collect.Multimap; import io.tchepannou.kiosk.api.model.ArticleModel; import io.tchepannou.kiosk.api.model.ArticleModelList; import io.tchepannou.kiosk.api.model.ImageModel; import io.tchepannou.kiosk.p...
[ "htchepannou@expedia.com" ]
htchepannou@expedia.com
01b8d31128ad55bcc957588530b4aa1922477901
62b27ffb9d320335d5149ecfb97642ce9cf60a53
/AcerComputer.java
0142de408e77662d50338ca07fc720a8e95a8e13
[]
no_license
twx31420/s3s160-2
51035103f7c17ac6d46d1b35bf2961db4f90498d
d2ed1ffbbd983b611d643c220711c4027a6705c0
refs/heads/master
2023-02-26T09:27:19.904797
2021-02-03T05:47:51
2021-02-03T05:47:51
335,522,718
0
0
null
null
null
null
UTF-8
Java
false
false
1,074
java
package edu.nf.ch01; public class AcerComputer { //属性 private String size; private String color; private String cpu; private String memory; //行为方法 public void play(){ System.out.println("playing……"); } public void work(){ System.out.println("working……"); } ...
[ "3073239759@qq.com" ]
3073239759@qq.com
528ce335fd37897f6951a6441edf77d61dfc5bc0
31db60fe49ef7d31f3fc29221a69b97c19c59bb3
/src/main/resources/oracle-db/kv-18.1.19/src/oracle/kv/impl/admin/plan/StopServicesPlan.java
c2bcf71481565c2fcafc45da594a9fb4f323c039
[ "Apache-2.0", "Zlib", "MIT", "CC0-1.0", "FSFAP", "BSD-3-Clause" ]
permissive
joelnewcom/embeddedOracleKv
d39cc4db1aa26962d7a1c721b87aa55a23124c3e
138d23c66ae91d8e367b5456e4c5ab85dc47fcdc
refs/heads/master
2021-06-25T20:24:13.850335
2019-06-02T19:43:27
2019-06-02T19:43:27
134,009,219
0
0
Apache-2.0
2020-10-13T01:06:34
2018-05-18T22:19:51
Java
UTF-8
Java
false
false
5,711
java
/*- * Copyright (C) 2011, 2018 Oracle and/or its affiliates. All rights reserved. * * This file was distributed by Oracle as part of a version of Oracle NoSQL * Database made available at: * * http://www.oracle.com/technetwork/database/database-technologies/nosqldb/downloads/index.html * * Please see the LICENS...
[ "joel.neukom@gmx.ch" ]
joel.neukom@gmx.ch
910db18c807dbdb602db9ecae8fc3f8816aae021
fa91450deb625cda070e82d5c31770be5ca1dec6
/Diff-Raw-Data/2/2_77af147a9bc063808d1b096dedb763d357cae933/PageNode/2_77af147a9bc063808d1b096dedb763d357cae933_PageNode_s.java
4f2d13f9baffb3c6f31f05efcce3fb54d87dc497
[]
no_license
zhongxingyu/Seer
48e7e5197624d7afa94d23f849f8ea2075bcaec0
c11a3109fdfca9be337e509ecb2c085b60076213
refs/heads/master
2023-07-06T12:48:55.516692
2023-06-22T07:55:56
2023-06-22T07:55:56
259,613,157
6
2
null
2023-06-22T07:55:57
2020-04-28T11:07:49
null
UTF-8
Java
false
false
6,485
java
/* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1 * The contents of this file are subject to the Mozilla Public License Version * 1.1 (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.mozilla.org/MPL/ * * Software ...
[ "yuzhongxing88@gmail.com" ]
yuzhongxing88@gmail.com
34d14f4b8fa8f96563e3c2c2e91eb818e8161e49
b7870b53936737c68c2b884031fa348c96ead1fc
/terracotta/bootstrap/src/main/java/org/terracotta/modules/ehcache/async/scatterpolicies/ItemScatterPolicy.java
48c3fb431bda3b96092294500d661e9ef5a9353f
[]
no_license
plotor/ehcache
2d723f7677e168f288231b8114643ee8c1cafcd3
b85964a31dfbc6cc07aea1e4de629a1489ea3fb9
refs/heads/master
2022-11-17T18:05:11.332699
2020-07-10T08:09:41
2020-07-10T08:09:41
263,926,502
1
0
null
2020-07-01T19:16:04
2020-05-14T13:43:07
Java
UTF-8
Java
false
false
546
java
/* * All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved. */ package org.terracotta.modules.ehcache.async.scatterpolicies; import java.io.Serializable; public interface ItemScatterPolicy<E extends Serializable> { /** * Returns a bucket index in the range 0 to (count - 1) to...
[ "zhenchao.wang@hotmail.com" ]
zhenchao.wang@hotmail.com
e92edfef8c5dee580ac62b13b7a4c7e5a9dbf9ef
a9b1990af8011e7c4aeb6ba656a26acacd4317f7
/src/test/java/io/geekshop/common/fsm/FSMTest.java
f4c777f4c8a635d4c0e6473e184a78350855ad1c
[ "MIT" ]
permissive
gl5/geekshop
82357b014923cef8a90541edd1f34fc800bd8a2c
5ae8e42cbf2d23ed5cf099bbee3dedd962e7de7c
refs/heads/main
2023-02-23T02:05:29.468813
2021-01-14T06:06:22
2021-01-14T06:06:22
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,891
java
/* * Copyright (c) 2020 GeekShop. * All rights reserved. */ package io.geekshop.common.fsm; import org.junit.jupiter.api.Test; import static org.assertj.core.api.Assertions.assertThat; import static org.mockito.Mockito.*; /** * Created on Dec, 2020 by @author bobo */ public class FSMTest { @Test public...
[ "bobo@spring2go.com" ]
bobo@spring2go.com
25a0a54163f2ce34c02ac9c2888278c6a262e9e4
5ed0ce6a5bf847ab1bcc99cb9b005e5bd1334067
/src/org/codehaus/jackson/annotate/JsonIgnoreType.java
6f4520f864809674722e95a1d7642cb0fb3a9148
[]
no_license
nikitakoselev/Alpha2Sdk
10b0b83cba67d19d49191caa73e67c9f899664ad
ed2efdb5db0ea3a9271c9ebd351bf789b6ba0d37
refs/heads/master
2023-04-10T22:19:30.954805
2021-04-20T20:59:34
2021-04-20T20:59:34
null
0
0
null
null
null
null
UTF-8
Java
false
false
355
java
package org.codehaus.jackson.annotate; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @JacksonAnnotation public @interface JsonIgnoreType { ...
[ "dave@davesnowdon.com" ]
dave@davesnowdon.com
d656ceca09fe0162e6714a5169c81dd033b8b0dd
81ae03175fa4708a57fac059bdcc3669232a9021
/SILSAGEJB/ejbModule/ec/edu/uce/silsag/ejb/persistence/entities/ModuloDTO.java
315217801d5f1dfa32d7f99c21ebc30c370f412b
[]
no_license
Idonius/rsp
0889965b83b0adaff0a9a0406ab60db9672500ee
bb7dbbcad047fd2cf1c2e4a07e3c1135f555534a
refs/heads/master
2020-04-25T12:21:30.005604
2015-08-22T00:43:11
2015-08-22T00:43:11
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,807
java
package ec.edu.uce.silsag.ejb.persistence.entities; import java.io.Serializable; import javax.persistence.*; import java.util.List; /** * The persistent class for the bem_modulo database table. * */ @Entity @Table(name="bem_modulo") @NamedQuery(name="ModuloDTO.findAll", query="SELECT m FROM ModuloDTO...
[ "fensefernando@gmail.com" ]
fensefernando@gmail.com
0372689eb4a761655af3b6f59ef60d03bb48718f
208bcf6661c42f5f24b4a8cd363722c8c07bf3b7
/src/RoomPO.java
d3032397a3e28137877aa26323684ce86ccc7fdf
[]
no_license
songxinjianqwe/HibernateTest
815ffadd8355cc58841fa0c7f816cf51ba74ce42
1569b14e2918af04283f98bf96a3c5dc87d85dc4
refs/heads/master
2021-01-20T05:26:55.251944
2016-11-22T13:09:09
2016-11-22T13:09:09
74,250,164
0
0
null
null
null
null
UTF-8
Java
false
false
2,096
java
import java.io.Serializable; import util.type.RoomType; public class RoomPO implements Serializable { /** * */ private static final long serialVersionUID = 1L; private HotelPO hotel; private RoomType type; private int roomNum; private double roomValue; public RoomPO(HotelPO hotel, RoomType type, int ro...
[ "songxinjianzx@163.com" ]
songxinjianzx@163.com
f1245f638c8c17464d8ccb425bd9a87c6ba3585b
54d212428f7464ab5238a5aac134281d81405bba
/src/main/java/com/mokylin/cabal/modules/welfare/web/WelfareSpecialConfigController.java
38b5cfa73e5d367c62021c419c59a26a019eedb5
[]
no_license
qq289736032/admin-tools-new
846efcf7f69ddf625a6ee4987ec322e81a6e363d
9494ea5f63f277a4eef28c1da9c8bc292eda49b8
refs/heads/master
2021-05-09T21:41:18.998840
2018-01-25T01:14:39
2018-01-25T01:14:39
118,733,281
1
0
null
null
null
null
UTF-8
Java
false
false
3,287
java
package com.mokylin.cabal.modules.welfare.web; import java.math.BigInteger; import java.util.Date; import java.util.Map; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springfram...
[ "289736032@qq.com" ]
289736032@qq.com
8b99c3caa71f760ed2a1f6f88bdce3b5faef2397
b00c54389a95d81a22e361fa9f8bdf5a2edc93e3
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ProxyWriter.java
8b617d85249aa9132bf48416f11464a1f64ea3d7
[]
no_license
mirek190/x86-android-5.0
9d1756fa7ff2f423887aa22694bd737eb634ef23
eb1029956682072bb7404192a80214189f0dc73b
refs/heads/master
2020-05-27T01:09:51.830208
2015-10-07T22:47:36
2015-10-07T22:47:36
41,942,802
15
20
null
2020-03-09T00:21:03
2015-09-05T00:11:19
null
UTF-8
Java
false
false
3,647
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 ...
[ "mirek190@gmail.com" ]
mirek190@gmail.com
e19b22facecb59dc8883d38e07320bf8e49ab68e
471a1d9598d792c18392ca1485bbb3b29d1165c5
/jadx-MFP/src/main/java/com/google/android/gms/fitness/data/zzo.java
6c167822594801a741bb22a5848568be9f213902
[]
no_license
reed07/MyPreferencePal
84db3a93c114868dd3691217cc175a8675e5544f
365b42fcc5670844187ae61b8cbc02c542aa348e
refs/heads/master
2020-03-10T23:10:43.112303
2019-07-08T00:39:32
2019-07-08T00:39:32
129,635,379
2
0
null
null
null
null
UTF-8
Java
false
false
1,744
java
package com.google.android.gms.fitness.data; import android.os.Parcel; import android.os.Parcelable.Creator; import com.google.android.gms.common.internal.safeparcel.SafeParcelReader; public final class zzo implements Creator<Device> { public final /* synthetic */ Object[] newArray(int i) { return new Dev...
[ "anon@ymous.email" ]
anon@ymous.email
f07028bba90c23849fdd15e8f36ef4a0781bcda6
2f05bf264bd87f533803906811ffc89685688dba
/Java_006_Applictation/src/com/callor/apps/App_03A.java
b1a494c0987aa7bfc13a2abe2a6b7921f4906a90
[]
no_license
dkdud8140/Biz_403_2021_03_Java
3d6a9cf8cd692b78047606665fd888a8ca6ed80f
a24f241a8d12e13c9d6a8a6be78a6b66e5856c31
refs/heads/master
2023-06-23T03:51:46.025661
2021-07-26T08:35:43
2021-07-26T08:35:43
348,207,335
0
0
null
null
null
null
UTF-8
Java
false
false
607
java
package com.callor.apps; import java.util.Random; public class App_03A { public static void main(String[] args) { Random rnd = new Random() ; int[] intNums = new int[20] ; // 요소 : 배열의 몇 번째 값 // 위치 : 배열의 몇 번째 // 첨자 : 배열의 몇 번째 인가를 알려주는 값 for(int i = 0 ; i < intNums.length ; i ++) { ...
[ "cho.ay4@gmail.com" ]
cho.ay4@gmail.com
c0d5bbcd64adca011ff4bcf39e0c1c73aed90d9c
76852b1b29410436817bafa34c6dedaedd0786cd
/sources-2020-07-19-tempmail/sources/com/google/android/gms/internal/measurement/zzmf.java
07442e08c7ee39dd4f80d9553505588454708414
[]
no_license
zteeed/tempmail-apks
040e64e07beadd8f5e48cd7bea8b47233e99611c
19f8da1993c2f783b8847234afb52d94b9d1aa4c
refs/heads/master
2023-01-09T06:43:40.830942
2020-11-04T18:55:05
2020-11-04T18:55:05
310,075,224
0
0
null
null
null
null
UTF-8
Java
false
false
899
java
package com.google.android.gms.internal.measurement; /* compiled from: com.google.android.gms:play-services-measurement-impl@@17.4.3 */ public final class zzmf implements zzmc { /* renamed from: a reason: collision with root package name */ private static final zzcv<Boolean> f9779a; /* renamed from: b ...
[ "zteeed@minet.net" ]
zteeed@minet.net
d27b5577b42237319a932098955d0b03d97e8a89
333d52d079e15cacc51358dfdb5b5dc8b4314129
/src/backjoon/No_15596.java
c94fc0125e2c536fce93c3907dcf2cc3ebed0643
[]
no_license
limwoobin/algorithm-study
c5bb5f942be3a60b9f8800b07fb671af4fd59629
045819025512382bb0840eb9af75ba11e17f8bf7
refs/heads/master
2021-08-22T03:20:16.420498
2021-01-07T11:39:57
2021-01-07T11:39:57
241,326,339
1
0
null
null
null
null
UTF-8
Java
false
false
197
java
package backjoon; public class No_15596 { long sum(int[] a) { long ans = 0; for(int i=0; i<a.length; i++) { ans = ans + a[i]; } return ans; } }
[ "drogba02@naver.com" ]
drogba02@naver.com
bd88732fb27b7fce80f5e17b36839cb56e93de09
6675a1a9e2aefd5668c1238c330f3237b253299a
/2.15/dhis-2/dhis-web/dhis-web-maintenance/dhis-web-maintenance-datadictionary/src/main/java/org/hisp/dhis/dd/action/indicatorgroup/ShowIndicatorGroupEditorAction.java
580aecf01ac0d9587a171f2356f69a4a22327bd4
[ "BSD-3-Clause" ]
permissive
hispindia/dhis-2.15
9e5bd360bf50eb1f770ac75cf01dc848500882c2
f61f791bf9df8d681ec442e289d67638b16f99bf
refs/heads/master
2021-01-12T06:32:38.660800
2016-12-27T07:44:32
2016-12-27T07:44:32
77,379,159
0
0
null
null
null
null
UTF-8
Java
false
false
3,596
java
package org.hisp.dhis.dd.action.indicatorgroup; /* * Copyright (c) 2004-2014, 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...
[ "[sagarb.4488@gmail.com]" ]
[sagarb.4488@gmail.com]
98b8ef04c6ef956cc8d768e48415755617a5e442
9358108f386b8c718f10c0150043f3af60e64712
/integrella-microservices-producer-fpml/src/main/java/com/integrella/fpML/schema/GenericProduct.java
802545b57941577bfdd503c63f02e9c120df5a59
[]
no_license
kashim-git/integrella-microservices
6148b7b1683ff6b787ff5d9dba7ef0b15557caa4
f92d6a2ea818267364f90f2f1b2d373fbab37cfc
refs/heads/master
2021-01-20T02:53:03.118896
2017-04-28T13:31:55
2017-04-28T13:31:55
89,459,083
0
0
null
null
null
null
UTF-8
Java
false
false
3,691
java
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2017.04.26 at 04:...
[ "Kashim@192.168.47.69" ]
Kashim@192.168.47.69
bf67df9797bbe80c5138ff2cc11e5524486a35df
bf0a5acf1bba30568dacb655a2a5aa4fe2c78d85
/test/com/shroggle/logic/site/SiteCreatorOrUpdaterMock.java
c7f37fbdaf32f30fafaa9f8a554fee0647b3828f
[]
no_license
shroggle/Shroggle
37fd3a8e264b275b948f05d1bfe100744bb85973
4e3c3c67c55772ca914f12f652cf6023512be615
refs/heads/master
2016-09-06T03:50:14.602344
2011-10-31T22:58:04
2011-10-31T22:58:04
2,683,810
0
0
null
null
null
null
UTF-8
Java
false
false
1,520
java
/********************************************************************* * * * Copyright (c) 2007-2011 by Web-Deva. * * All rights reserved. * * ...
[ "don@shefer.us" ]
don@shefer.us
c2100a5467312dc4e9d5156275927ef177f8b0b7
ed1a2c1dfcc050b1a1a013776794227f7ec2e8d6
/easyrules-samples/src/main/java/org/easyrules/samples/rulePriority/AgeRule.java
426e8cb4c080df7236c0ae5299d9c2ccdf87d1b1
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
leobrambillaglb/easy-rules
75c12a9c566d54b39f2a668c0e9707307a4a244f
30095e3772b7ce06c614724893ce5c29f38efdae
refs/heads/master
2020-05-29T11:35:23.083843
2015-06-25T19:32:57
2015-06-25T19:32:57
38,074,413
1
0
null
2015-06-25T21:10:41
2015-06-25T21:10:41
null
UTF-8
Java
false
false
960
java
package org.easyrules.samples.rulePriority; import org.easyrules.annotation.Action; import org.easyrules.annotation.Condition; import org.easyrules.annotation.Priority; import org.easyrules.annotation.Rule; /** * A rule class that marks a person as adult if it's age is greater than 18. * * @author Mahmoud Ben Hass...
[ "md.benhassine@gmail.com" ]
md.benhassine@gmail.com
7f49ae3533e54d8f617573a95454bc217f399f96
f44bc5d8f1088c84c624e9ad6ecab913b4ba1577
/src/main/java/com/onarandombox/MultiverseCore/commands/ScriptCommand.java
65491ef48ccdf5ed0f45cb56701b563d00b98257
[]
no_license
berti2k1/Multiverse-Core
3babb712155aaa18a8fa2822ce71267c710dc30e
2b80ca80ae033fe1be946c4dc4194298080326ed
refs/heads/master
2021-01-18T10:07:52.071404
2012-07-26T02:10:06
2012-07-26T02:10:06
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,363
java
/****************************************************************************** * Multiverse 2 Copyright (c) the Multiverse Team 2011. * * Multiverse 2 is licensed under the BSD License. * * For more information please check the README.md file included * ...
[ "farachan@gmail.com" ]
farachan@gmail.com
cfe96d8a7177c24d4bb6b220358095d4da6a8a6b
e77dd8f5c01d3f576b06f55b68ddc52e2d00518a
/acme4j-client/src/test/java/org/shredzone/acme4j/exception/AcmeRetryAfterExceptionTest.java
90752226d7191196db7b378bffebf264d5275cff
[ "Apache-2.0" ]
permissive
JSong1024/acme4j
3053369702d9dd8ae788301f8ed81b02f58bf3ae
55afe7697f05f62776d1526a9084f553c62560bb
refs/heads/master
2020-04-27T05:20:26.598259
2019-02-26T16:36:46
2019-02-26T16:36:46
174,078,704
1
0
Apache-2.0
2019-03-06T05:37:08
2019-03-06T05:37:07
null
UTF-8
Java
false
false
1,437
java
/* * acme4j - Java ACME client * * Copyright (C) 2016 Richard "Shred" Körber * http://acme4j.shredzone.org * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * This program is distributed in the hope that it will be useful,...
[ "github@shredzone.org" ]
github@shredzone.org
0502b58ee628d41a3a65d9dd4fb341a2fc275bea
3ffb38de9bb465c62b91f9a0ce4ed2d8e9b45d16
/参考项目/04--Activity/10-PreferenceActivity/app/src/main/java/com/example/isszym/newpreferenceactivity/PreferenceActivity.java
4b78557457f966830a7d60f15e8d5aa7123cca14
[]
no_license
zzfd97/Android-Development
442cd93918f744906631f5a2c0d71555cd781a3f
86f2f67e43af81eb4b6722b0893037ead8f3044d
refs/heads/master
2023-03-10T10:00:43.467529
2021-01-05T08:53:04
2021-01-05T08:53:04
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,104
java
package com.example.isszym.newpreferenceactivity; import android.app.FragmentManager; import android.app.FragmentTransaction; import android.content.SharedPreferences; import android.os.Bundle; import android.preference.PreferenceManager; import android.support.v7.app.AppCompatActivity; import android.view.View; impor...
[ "739741104@qq.com" ]
739741104@qq.com
98bcf0d41281c2a9da8b163081a68b6b2ff94af7
80c66c984ce60bc7d17e02d04507b87b2cc684ff
/net/minecraft/inventory/Slot.java
e15e58ef8854b88783d2d1f09da1ec06b4c9d3a2
[ "WTFPL" ]
permissive
MinecraftModdedClients/Resilience-Client-Source
26d9ed318a41797660e05ed89df24d37fd48482e
4a3b2bd906f17b99be9e5eceaf9d6fcfc1470c01
refs/heads/master
2022-12-31T23:28:15.559468
2020-10-02T12:01:18
2020-10-02T12:01:18
39,420,083
111
45
WTFPL
2020-10-02T12:01:19
2015-07-21T02:41:38
Java
UTF-8
Java
false
false
4,195
java
package net.minecraft.inventory; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; import net.minecraft.util.IIcon; public class Slot { /** The index of the slot in the inventory. */ private final int slotIndex; /** The inventory we want to extract a slot from. */ ...
[ "admin@timo.de.vc" ]
admin@timo.de.vc
16a8221be9dba3e439c488f1eab9fddb31fdfeee
34c3b0887f71165a6d4a533bc06ffa2624c2dc10
/summer-alipay-core/src/main/java/com/alipay/api/domain/Coupon.java
739b10a2cc75673459edb7255b95ed950cf0a40d
[]
no_license
songhaoran/summer-alipay
91a7a7fdddf67265241785cd6bb2b784c0f0f1c4
d02e33d9ab679dfc56160af4abd759c0abb113a4
refs/heads/master
2021-05-04T16:39:11.272890
2018-01-17T09:52:32
2018-01-17T09:52:32
120,255,759
1
0
null
2018-02-05T04:42:15
2018-02-05T04:42:15
null
UTF-8
Java
false
false
3,723
java
package com.alipay.api.domain; import com.alipay.api.AlipayObject; import com.alipay.api.internal.mapping.ApiField; /** * 商户红包 * * @author auto create * @since 1.0, 2016-10-26 17:43:39 */ public class Coupon extends AlipayObject { private static final long serialVersionUID = 2225417116892947996L; /** * 当前可...
[ "1467237221@qq.com" ]
1467237221@qq.com
5cc1d051e9d95e12f8cdfa44a66b5bf5daa23eab
ef2ebaf44b17fe2be46cc3be1b374f12e565d3d9
/basketstats/basketstats-dal/src/test/java/info/colleoni/basketstats/service/AttachmentTypeServiceTest.java
24311a0212d3a4908886b357e2fc546d577a87d9
[]
no_license
andrea-colleoni/JBasketStats
3f7a1e045ca84c264b12a08d66f19cd0909b3272
cd05f8114af16566f5044d0885bf75c3ab4b8a7c
refs/heads/master
2016-09-06T20:18:32.451450
2013-03-26T14:28:05
2013-03-26T14:28:05
null
0
0
null
null
null
null
UTF-8
Java
false
false
1,509
java
/** * */ package info.colleoni.basketstats.service; import info.colleoni.basketstats.domain.AttachmentType; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; i...
[ "andrea@colleoni.info" ]
andrea@colleoni.info
9f0b88daa144b4821cf2dbc00d56ba837c5fe6bd
4f8dfcdd6f1494b59684438b8592c6c5c2e63829
/DiffTGen-result/output/patch2-Lang-45-Jaid-plausible/Lang_45_2-plausible_jaid/target/0/17/evosuite-tests/org/apache/commons/lang/WordUtils_ESTest_scaffolding.java
dbe74e0fb0afcbbc53d2cbfa5a075c98d63fbabd
[]
no_license
IntHelloWorld/Ddifferent-study
fa76c35ff48bf7a240dbe7a8b55dc5a3d2594a3b
9782867d9480e5d68adef635b0141d66ceb81a7e
refs/heads/master
2021-04-17T11:40:12.749992
2020-03-31T23:58:19
2020-03-31T23:58:19
249,439,516
0
0
null
null
null
null
UTF-8
Java
false
false
4,441
java
/** * Scaffolding file used to store all the setups needed to run * tests automatically generated by EvoSuite * Mon Mar 30 02:06:18 GMT 2020 */ package org.apache.commons.lang; import org.evosuite.runtime.annotation.EvoSuiteClassExclude; import org.junit.BeforeClass; import org.junit.Before; import org.junit.Aft...
[ "1009479460@qq.com" ]
1009479460@qq.com
fd8ce730f883414df14b632b4a8817ef7faad232
a8378b15a6907870056c1696ae463e950a46fbe5
/src/alg44/Solution.java
86afbdf88b3c4f9b9968bcdb8f6782914cf6721e
[]
no_license
CourageDz/LeetCodePro
38a90ad713d46911b64c893c7fcae04fb0b20791
d0dfeab630357c8172395ff8533e38b5fb9498c5
refs/heads/master
2020-03-28T14:18:58.656373
2020-03-18T05:00:12
2020-03-18T05:00:12
148,476,780
0
0
null
null
null
null
UTF-8
Java
false
false
1,152
java
package alg44; import sun.java2d.pipe.SolidTextRenderer; import java.util.Arrays; public class Solution { public boolean isMatch(String s, String p) { int n=s.length(); int m=p.length(); boolean match[][]=new boolean [n+1][m+1]; match[0][0]=true;//两个字符串都为0,所以匹配 for (int i ...
[ "39013348@qq.com" ]
39013348@qq.com
b1b9377bcfde39e01177e53c6d45c6a27b486b57
ddbb70f9e2caa272c05a8fa54c5358e2aeb507ad
/rimcart/src/main/java/com/rimdev/rimcart/entities/Application.java
0a934e74dc7df980b435fd0d92a705732f465f86
[]
no_license
ahmedhamed105/rimdev
1e1aad2c4266dd20e402c566836b9db1f75d4643
c5737a7463f0b80b49896a52f93acbb1e1823509
refs/heads/master
2023-02-05T15:18:20.829487
2021-04-04T08:10:19
2021-04-04T08:10:19
228,478,954
1
0
null
2023-01-11T19:57:52
2019-12-16T21:27:44
JavaScript
UTF-8
Java
false
false
5,554
java
package com.rimdev.rimcart.entities; import java.io.Serializable; import java.util.Collection; import javax.persistence.Basic; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; impor...
[ "ahmed.elemam@its.ws" ]
ahmed.elemam@its.ws
a52f5b6c638ca96c6fa964fb1a1b7081bca0d208
52349a56924e127c783d70cceaefe6cf9e46f46b
/ews-ms-api/src/main/java/microsoft/exchange/webservices/data/InternetMessageHeaderCollection.java
e73a285d590f7ddc6ac41c3a699a45e1cb165faf
[]
no_license
floriankammermann/java-microsoft-exchange-webservice-access
0f6eee1214689be4e1f421414d5592c5ea017080
f4f0c94caf29e8bd38e068282414ac20af70cdcd
refs/heads/master
2016-09-05T23:48:28.635612
2011-10-04T07:12:54
2011-10-04T07:12:54
2,326,818
5
1
null
null
null
null
UTF-8
Java
false
false
2,057
java
/************************************************************************** * copyright file="InternetMessageHeaderCollection.java" company="Microsoft" * Copyright (c) Microsoft Corporation. All rights reserved. * * Defines the InternetMessageHeaderCollection.java. **************************************...
[ "florian.kammermann@gmail.com" ]
florian.kammermann@gmail.com
7d14222c809b13d6cbb3b5253355b58a06012e7d
df09ca38cb7ded65a443788b6acdfd1eb6d00602
/EtownPublic/app/src/main/java/chennaicitytrafficapplication/prematix/com/etownpublic/Model/Birth_Death/RelegionBean.java
8fcafc6b56b7c72e0380aa1f21be3aac4d30eb83
[]
no_license
Ashoksennan/AndroidTeam
28289b2896fc23934056d0c7fb12a45702174475
bd1fd1c9bda4a63c8686384eb5b949dc15f1f7d9
refs/heads/master
2020-04-04T10:01:06.419063
2018-08-16T13:53:28
2018-08-16T13:53:28
null
0
0
null
null
null
null
UTF-8
Java
false
false
744
java
package chennaicitytrafficapplication.prematix.com.etownpublic.model.Birth_Death; /** * Created by Admin on 8/6/2018. */ public class RelegionBean { private int mReligioncode; private String mReligionName; public RelegionBean(int mReligioncode, String mReligionName) { this.mReligioncode = mReli...
[ "iniyan455@gmail.com" ]
iniyan455@gmail.com
6ac2e96a5e0e14f8b63a596cbc46c8f3ad7bd935
534409d21c3bb5e80983b4836fb8e2fcf931bd26
/app/src/main/java/com/nilhcem/droidconit/data/database/dao/SpeakersDao.java
432b58762fc6551ccde169c8717dc58100e70475
[ "Apache-2.0" ]
permissive
Nilhcem/droidconit-2016
76701403d56849069003f9e5af53050f82a39ba6
b5feb0807f500cccf1168e50d5aa01af17496995
refs/heads/master
2016-08-12T15:59:11.490731
2016-04-07T19:34:25
2016-04-07T19:34:25
53,884,862
0
1
null
null
null
null
UTF-8
Java
false
false
1,872
java
package com.nilhcem.droidconit.data.database.dao; import com.nilhcem.droidconit.data.app.AppMapper; import com.nilhcem.droidconit.data.database.DbMapper; import com.nilhcem.droidconit.data.database.model.Speaker; import com.nilhcem.droidconit.utils.Preconditions; import com.squareup.sqlbrite.BriteDatabase; import jav...
[ "nilhcem@gmail.com" ]
nilhcem@gmail.com
c289cdd454647a5eaa244c795ca53b8f4f8a0382
74d9fcd2da2933a81fea197a41f194379cf76706
/src/main/java/shadows/ench/anvil/asm/AnvilTransformer.java
2c81cc672c9879765756acff9bcc540f96f6d1db
[ "MIT" ]
permissive
CplPibald/Apotheosis
0da76c4b69b4ea7619501e18fbd8a10f3846fb6d
8b3122b5001bbb556615e48ea9bae0dd22e514bf
refs/heads/master
2022-04-17T03:24:07.175853
2020-04-16T01:29:32
2020-04-16T01:29:32
256,077,470
0
0
MIT
2020-04-16T01:24:19
2020-04-16T01:24:19
null
UTF-8
Java
false
false
4,998
java
package shadows.ench.anvil.asm; import org.objectweb.asm.ClassReader; import org.objectweb.asm.ClassWriter; import org.objectweb.asm.Opcodes; import org.objectweb.asm.tree.AbstractInsnNode; import org.objectweb.asm.tree.ClassNode; import org.objectweb.asm.tree.FieldInsnNode; import org.objectweb.asm.tree.JumpInsnNode;...
[ "Bward7864@gmail.com" ]
Bward7864@gmail.com
d28a31c103c1a0928791bcb89a05817c02a4432a
c16ea32a4cddb6b63ad3bacce3c6db0259d2bacd
/google/ads/googleads/v5/googleads-java/gapic-googleads-java/src/test/java/com/google/ads/googleads/v5/services/AdGroupAudienceViewServiceClientTest.java
fb19c8d287754d203bc66290245f58cb9d243f06
[ "Apache-2.0" ]
permissive
dizcology/googleapis-gen
74a72b655fba2565233e5a289cfaea6dc7b91e1a
478f36572d7bcf1dc66038d0e76b9b3fa2abae63
refs/heads/master
2023-06-04T15:51:18.380826
2021-06-16T20:42:38
2021-06-16T20:42:38
null
0
0
null
null
null
null
UTF-8
Java
false
false
6,158
java
/* * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
[ "bazel-bot-development[bot]@users.noreply.github.com" ]
bazel-bot-development[bot]@users.noreply.github.com
083a9439aa45678c06476ae1c353955d5c8c01fb
65e8643b58205f92cd56fad16d421115a188a1a3
/com.mymoney/src/mu.java
07feebb764514f4a1fdfc3ae47139fb439c3abb0
[]
no_license
goodev/liudongbaoproject
f2b0b0a22a1fd8c2ab5611ad0279e26b998c4e3d
72e585884d0a6f5765383f20f388303b11a1f0ad
refs/heads/master
2021-01-10T10:47:33.250578
2012-06-03T10:11:51
2012-06-03T10:11:51
50,891,250
0
0
null
null
null
null
UTF-8
Java
false
false
723
java
import android.view.animation.Animation; import android.view.animation.Animation.AnimationListener; import android.widget.ScrollView; import com.mymoney.ui.report.ReportActivity; public class mu implements Animation.AnimationListener { public mu(ReportActivity paramReportActivity) { } public voi...
[ "liudongbaollz@gmail.com" ]
liudongbaollz@gmail.com
cc7992d20e889e78b6cf570a20bf7c3b1a09d377
3c6f4bb030a42d19ce8c25a931138641fb6fd495
/hk-api-services/src/test/java/com/hongkun/finance/api/controller/payment/BankControllerTest.java
fe2032c30cecb83e142aefbf185932cbb6cc8c75
[]
no_license
happyjianguo/finance-hkjf
93195df26ebb81a8b951a191e25ab6267b73aaca
0389a6eac966ee2e4887b6db4f99183242ba2d4e
refs/heads/master
2020-07-28T13:42:40.924633
2019-08-03T00:22:19
2019-08-03T00:22:19
null
0
0
null
null
null
null
UTF-8
Java
false
false
2,717
java
package com.hongkun.finance.api.controller.payment; import com.hongkun.finance.api.controller.BaseControllerTest; import org.junit.Test; import java.util.HashMap; import java.util.Map; /** * @Description : 银行卡维护测试类 * @Project : finance * @Program Name : com.hongkun.finance.api.controller.payment.BankControllerTe...
[ "zc.ding@foxmail.com" ]
zc.ding@foxmail.com
39c089a853fa134baf0de07251eb7a11d1a859e7
063f3b313356c366f7c12dd73eb988a73130f9c9
/erp_ejb/src_contabilidad/com/bydan/erp/contabilidad/util/CentroCostoConstantesFuncionesAdditional.java
c4631d1cefb88e86dee1e7b87406a12d97ee7b85
[ "Apache-2.0" ]
permissive
bydan/pre
0c6cdfe987b964e6744ae546360785e44508045f
54674f4dcffcac5dbf458cdf57a4c69fde5c55ff
refs/heads/master
2020-12-25T14:58:12.316759
2016-09-01T03:29:06
2016-09-01T03:29:06
67,094,354
0
0
null
null
null
null
UTF-8
Java
false
false
1,629
java
/* * ============================================================================ * GNU Lesser General Public License * ============================================================================ * * BYDAN - Free Java BYDAN library. * Copyright (C) 2008 * * This library is free software; you can redistribu...
[ "byrondanilo10@hotmail.com" ]
byrondanilo10@hotmail.com
33bb4d9bae83c525e3e2d70025c805b399874a84
6fd7064ecaba12969ce60eae7569d93b9be18b43
/flinkx-executor/src/test/java/com/guoliang/flinkx/executor/test/TestRun.java
6b14d36b340255f088ae56eabe3064d48b7fbe6a
[ "Apache-2.0" ]
permissive
kuyusea/LarkMidTable
a5b7d540c34be91f30bce7e821f6ca9fad694c75
1556c47dcd0fc0727185aaa586c4241d1124cb70
refs/heads/master
2022-12-24T18:45:27.788073
2020-10-11T16:29:50
2020-10-11T16:29:50
null
0
0
null
null
null
null
UTF-8
Java
false
false
149
java
package com.guoliang.flinkx.executor.test; /** * * @Author: LarkMidTable * @Date: 2020/9/16 19:36 * @Description: **/ public class TestRun { }
[ "wxgzgl@gmail.com" ]
wxgzgl@gmail.com
9b4b9e5f2d42ce876780d1a24b029f9e025e1fce
fe06f97c2cf33a8b4acb7cb324b79a6cb6bb9dac
/java/po/EHU_EVERTER/IT5117mPo.java
2e00564e8dc762af8ed0a89f90d4a431c1ef6a26
[]
no_license
HeimlichLin/TableSchema
3f67dae0b5b169ee3a1b34837ea9a2d34265f175
64b66a2968c3a169b75d70d9e5cf75fa3bb65354
refs/heads/master
2023-02-11T09:42:47.210289
2023-02-01T02:58:44
2023-02-01T02:58:44
196,526,843
0
0
null
2022-06-29T18:53:55
2019-07-12T07:03:58
Java
UTF-8
Java
false
false
936
java
package com.doc.common.po; public interface IT5117mPo { String getControlno(); void setControlno(final String controlno); String getGcodate(); void setGcodate(final String gcodate); String getWarehouseno(); void setWarehouseno(final String warehouseno); String getSenderid(); void setSenderid(...
[ "jerry.l@acer.com" ]
jerry.l@acer.com
866f4ed451407f6cad3f7482a8223a9805dbceb5
79e576b531e8069bd648ad18d7f9e8c5d98bb10b
/app/src/main/java/com/aglhz/yicommunity/main/parking/contract/CarportContract.java
41e3dd1b4be50d4ab905579f55c5ebb558ee05e1
[]
no_license
ackj/YiCommunityAndS1
c53cab4df9b67d89f2a875ddf303f5daec2ce790
93701523782c18896c552fc6c235c834a5903f9c
refs/heads/master
2021-09-08T10:47:13.786769
2018-03-09T09:24:21
2018-03-09T09:24:21
105,245,194
0
0
null
2018-02-28T12:06:14
2017-09-29T07:51:38
Java
UTF-8
Java
false
false
736
java
package com.aglhz.yicommunity.main.parking.contract; import cn.itsite.abase.mvp.contract.base.BaseContract; import com.aglhz.yicommunity.common.Params; import com.aglhz.yicommunity.entity.bean.CarportBeam; import rx.Observable; /** * @author leguang * @version v0.0.0 * @E-mail langmanleguang@qq.com * @time 20...
[ "langmanleguang@qq.com" ]
langmanleguang@qq.com
7f2af4a492aa9405e46353b50ddf32e393b12dfe
5148293c98b0a27aa223ea157441ac7fa9b5e7a3
/Method_Scraping/xml_scraping/NicadOutputFile_t1_beam/Nicad_t1_beam3871.java
1e736cea4e4669743d0c4b7dacd87eb590ed699c
[]
no_license
ryosuke-ku/TestCodeSeacherPlus
cfd03a2858b67a05ecf17194213b7c02c5f2caff
d002a52251f5461598c7af73925b85a05cea85c6
refs/heads/master
2020-05-24T01:25:27.000821
2019-08-17T06:23:42
2019-08-17T06:23:42
187,005,399
0
0
null
null
null
null
UTF-8
Java
false
false
419
java
// clone pairs:15392:80% // 21868:beam/sdks/java/core/src/main/java/org/apache/beam/sdk/io/range/ByteKey.java public class Nicad_t1_beam3871 { public boolean equals(Object o) { if (o == this) { return true; } if (!(o instanceof ByteKey)) { return false; } ByteKey other = (...
[ "naist1020@gmail.com" ]
naist1020@gmail.com
61b4ce4aaab674ab22e2d4fc239b53bc4a31b6ab
4180f974f68c3a44c957a9c3714b308a80fb7697
/nbdemetra-ui/src/test/java/ec/nbdemetra/ui/demo/impl/Grid2Factory.java
8e2d7cbb626bad5f829f46e24ddc2ba9c8fe1cd8
[]
no_license
MFatihTuzen/jdemetra-app
7c3594601a33b032416db78e92a8212822d147b8
d6304de4c65e77e71195e939e5aceba8f1b42830
refs/heads/master
2022-09-04T07:53:55.595427
2015-01-12T09:01:53
2015-01-12T09:01:53
null
0
0
null
null
null
null
UTF-8
Java
false
false
5,716
java
/* * Copyright 2013 National Bank of Belgium * * Licensed under the EUPL, Version 1.1 or – as soon they will be approved * by the European Commission - subsequent versions of the EUPL (the "Licence"); * You may not use this work except in compliance with the Licence. * You may obtain a copy of the Licence ...
[ "philippe.charles@nbb.be" ]
philippe.charles@nbb.be
ca03d4ad59ebbf99c9e05a8ab41012908fe5c995
7af846ccf54082cd1832c282ccd3c98eae7ad69a
/ftmap/src/main/java/taxi/nicecode/com/ftmap/generated/package_4/Foo144.java
b43d09a68d9cfd7c1ec7617c9972fe96d4daddb6
[]
no_license
Kadanza/TestModules
821f216be53897d7255b8997b426b359ef53971f
342b7b8930e9491251de972e45b16f85dcf91bd4
refs/heads/master
2020-03-25T08:13:09.316581
2018-08-08T10:47:25
2018-08-08T10:47:25
143,602,647
0
0
null
null
null
null
UTF-8
Java
false
false
269
java
package taxi.nicecode.com.ftmap.generated.package_4; public class Foo144 { public void foo0(){ new Foo143().foo5(); } public void foo1(){ foo0(); } public void foo2(){ foo1(); } public void foo3(){ foo2(); } public void foo4(){ foo3(); } public void foo5(){ foo4(); } }
[ "1" ]
1