blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 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 684M ⌀ | 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 132
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 28
values | content stringlengths 3 9.45M | authors listlengths 1 1 | author_id stringlengths 0 352 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f24a43f36f4f490e4827b59c278e2a7653e74e1c | 667f6048e2235ac1c79e4293204a4af5e7fcf5dc | /src/main/java/monnef/core/external/javassist/bytecode/SignatureAttribute.java | 2e5bb26c67949c6a59b51491525a445bed3b82d4 | [] | no_license | mnn/monnefcore | 980d1093d49a60827dd4d42a0be0d660c757d0d3 | 9091c5e6c94cd413069797fc45646514e50e81f5 | refs/heads/master | 2021-01-23T13:59:15.490686 | 2014-12-04T17:06:55 | 2014-12-04T17:06:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 34,702 | java | /*
* Javassist, a Java-bytecode translator toolkit.
* Copyright (C) 1999- Shigeru Chiba. All Rights Reserved.
*
* 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. Alternatively, the contents of th... | [
"moen@366.hopto.org"
] | moen@366.hopto.org |
0deb3d28f307ca2df59114c0d320eb4cbaeb75f8 | 94979810799868172fc73d8a16fc7cc630cf7f30 | /gc/CMS.java | 7010caff06000b278065b9f744ca4b6bfdd2eb73 | [] | no_license | shitsurei/JVM | 6abce231355b0e077e16a121a5c0c6a1796b6b90 | 850d88bf11b6e8f513d38d5e1f7fb62a8691bbd3 | refs/heads/master | 2021-01-03T17:32:38.683448 | 2020-03-10T03:47:20 | 2020-03-10T03:47:20 | 240,170,861 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,982 | java | package gc;
/**
* 05
* 枚举根节点:当执行系统停下来之后并不需要一个不漏的检查所有执行上下文和全局引用的位置,虚拟机能够直接得知存放对象引用的地方,Hotspot中通过OopMap这一数据结构实现
* OopMap:
* 安全点(SafePoint):在OopMap的帮助下Hotspot可以快速完成GC Root枚举,但是每条指令都生成OopMap空间成本较高,因此只在“安全点”记录;即程序执行过程中并非可以在任何位置暂停进行GC,只有到达安全点才可以
* 【安全点既不能太少(GC等待时间太长)又不能太多(运行负载高),选定标准:“是否具有让程序长时间运行的特征”,例如方法跳转、循环跳转、异常跳转等... | [
"lfgewj21345@163.com"
] | lfgewj21345@163.com |
da5b4f81bef4d8707c531b27b7f184fb4346e02e | 73f8f8634e5d179ef32762ad953eeacbacb5a4db | /Thinking in Java(Fourth Edition)/chapter15/generator/coffee/Coffee.java | 8e6cd37599f240368fc0914623e4246b8ad2e213 | [] | no_license | yueban/java | 46c1a41d86da424d16563a538b3cc5a87d3c002a | 1023e5ae3cbba7db403a9b46fd8b1dafc82107c8 | refs/heads/master | 2021-01-25T04:02:54.017486 | 2014-11-21T02:47:46 | 2014-11-21T02:47:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 198 | java | package generator.coffee;
public class Coffee{
private static long counter = 0;
private final long id = counter++;
public String toString(){
return getClass().getSimpleName() + " " + id;
}
} | [
"fanbaizhou@adeaz.com"
] | fanbaizhou@adeaz.com |
8dbce498111449c9e9fc5c222fccdb9056755804 | e44941d8e08cc06a5ae762517f088323dd47b05e | /L20-inheritance2/src/lesson20/inreitance2/Wolf.java | 3cfd6f4f5853fb6aad2300583d4c8773b24b6339 | [] | no_license | amitrofanov82/ItStepSharedWS | cf5ceb3389a04651ebb67038e008f89dadc2ddf7 | 5fe0a9bffaca4d1bfb695d1c0c69d8f7427c0ae4 | refs/heads/master | 2020-03-21T21:01:33.156587 | 2018-12-20T18:34:42 | 2018-12-20T18:34:42 | 139,042,600 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 707 | java | package lesson20.inreitance2;
public final class Wolf extends Animal{
final static String S_FIELD = null;
final static String S_FIELD2 = "str";
final static Object S_FIELD3 = new Cat();
final static int S_FIELD4 = 4;
final Object oField = new Cat();
public Wolf() {
}
final public void makeSound() {
... | [
"mitrofanov_a@itstep.lan"
] | mitrofanov_a@itstep.lan |
fa9b1f273ffe7aa82f8c1fe26b4d01afc5fbced7 | d01ddc583cd4077dcf8cf338fcf2897908daa4ad | /jooby/src/main/java/org/jooby/internal/routes/CorsHandler.java | ef51180e8f9da00cdb9f98c5825ec70123656901 | [
"Apache-2.0"
] | permissive | gustvn/jooby | 61656793a2a8e753d962dffe414a8c668735c94c | d039d466be272c0c35a8ca9c78df4e04a27fc2f5 | refs/heads/master | 2021-01-24T16:48:43.300086 | 2015-07-30T19:42:29 | 2015-07-30T19:42:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,057 | 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... | [
"espina.edgar@gmail.com"
] | espina.edgar@gmail.com |
a3379cc83228d8eee56e12161c2f6e53ff8cde48 | 85b13379de8d4142d5df878f916ff288f085e18e | /Printing n odd numbers/Main.java | e1f2243193546008c3ac63e21133e02b5fe381df | [] | no_license | THAMIZHINI/Playground | 7dd0e30f69431186567712b8dcb04c46f294c379 | dea7d940bc7cb120cae9d8440da417a14112e1bf | refs/heads/master | 2020-06-01T11:56:23.147870 | 2019-06-14T10:06:23 | 2019-06-14T10:06:23 | 190,771,518 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 145 | java | #include <stdio.h>
int main() {
int n;
scanf("%d",&n);
for ( int i=1;i<=2*n;i++)
{
if(i%2==1)
printf("%d\n",i);
}
return 0;
} | [
"51488008+THAMIZHINI@users.noreply.github.com"
] | 51488008+THAMIZHINI@users.noreply.github.com |
4db3ace075e368e63592cb4566acec3a3c3d5756 | 0cc6bc0a0c92b9903b163a7aeb4f013c1a9fd795 | /google-speech-protobuf/src/main/java/greco/DecoderEndpointerStreamParamsOuterClass.java | 288b8980cf6e43056dff61da715353fe2d14fca4 | [] | no_license | jackz314/SpeechRecognizer | fe34254727ae44ee3ddd83daad873257df1ac078 | 07ba8ec2a158830b37000bb3750a4f7c622b12d0 | refs/heads/master | 2023-04-08T09:24:19.079178 | 2021-04-12T23:55:33 | 2021-04-12T23:55:33 | 320,767,241 | 3 | 2 | null | null | null | null | UTF-8 | Java | false | true | 97,247 | java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: speech/greco3/decoder_endpointer/decoder_endpointer_stream_params.proto
package greco;
public final class DecoderEndpointerStreamParamsOuterClass {
private DecoderEndpointerStreamParamsOuterClass() {}
public static void registerAllExtensions(
... | [
"zhangmengyu10@gmail.com"
] | zhangmengyu10@gmail.com |
8fe3b03a5aaaa1a8df7af96bf60f2a8712e9b2e1 | 91c9cedc8ea067bdb719538031c7e4bf8d8cf6a3 | /src/ShineyObjects.java | a83319e0b3d819b77608406f335157790df19060 | [] | no_license | TJHL/Level_1 | 8cc0148ea5efa71e4413d75a3d1eb3a63279a3af | 2f9ad3dbf0888e2a97d1376e10f1f061679093b8 | refs/heads/master | 2020-04-06T12:14:32.820204 | 2016-10-01T18:59:01 | 2016-10-01T18:59:01 | 36,262,585 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 931 | java | import java.net.URL;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;
import javax.swing.JOptionPane;
public class ShineyObjects {
public static void main(String[] args) {
// 2. Ask the user how many shiny objects they want
String O= JOption... | [
"tobylaskowski@WTS11.local"
] | tobylaskowski@WTS11.local |
09609a078b9566e2f49df9cda126c4d0df7d9a91 | 44316a54755e5ee4118a3e82352094ea3a35358f | /no.sintef.bvr.table.resolution/src/no/sintef/bvr/table/resolution/custom/VirtualVClassifierImpl.java | 73a9ac03f6303138ae17380150d28d665bb6cccb | [] | no_license | vassik/bvr | 98a811ae7d21fbe5ea0701d04891d28b129f9e9b | 3fa1a48d401aa29fabcd5ea4153c696e7e39da0e | refs/heads/master | 2020-05-25T13:35:27.784701 | 2015-04-29T13:22:36 | 2015-04-29T13:22:36 | 34,623,094 | 0 | 0 | null | 2015-04-26T17:41:13 | 2015-04-26T17:41:12 | null | UTF-8 | Java | false | false | 2,854 | java | /**
*/
package no.sintef.bvr.table.resolution.custom;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import bvr.BvrPackage;
import bvr.VSpecResolution;
import bvr.impl.VSpecReso... | [
"Anatoly.Vasilevskiy@sintef.no"
] | Anatoly.Vasilevskiy@sintef.no |
eae104ab7031310a2fa88dac9f88acd618c97083 | ff3a0f87565e7b5ce523a59a29072b175a95fbd4 | /Reltrabcfg/src/main/java/br/com/agrofauna/model/Empresa.java | a81c1cb1e92c65c8cc2af091ce73f27b010b4999 | [] | no_license | wesleyhsm/ControleUsuarios | f1861129af9f14a69134fbbb50b7031ecc685359 | a319701d52f156cf5cd0530e8e256d6e41773932 | refs/heads/master | 2021-01-20T09:54:46.471416 | 2017-05-04T19:13:26 | 2017-05-04T19:13:26 | 90,299,633 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,082 | java | package br.com.agrofauna.model;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
import javax.persistence.Column;
import javax.persistence.DiscriminatorValue;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.NamedQueries;
import javax.persistence.... | [
"wesleyhsm@hotmail.com"
] | wesleyhsm@hotmail.com |
8be6e3cda3aa0c7af1a6ce2500dca93a5d414cc3 | 1159309a7bfffc255fa6d550c25df6a3dd7974b0 | /maven/release/src/main/java/org/release/service/UserService.java | 5e0daf566e0d84cba0a92cfe3f884c97aaa1dfb2 | [] | no_license | KBLGC/study-repository | d2ccfba6943f50badad37f2a21d46ec15974cc6f | 55f4ec5744adfccc318b4e489cb0e6881d6981db | refs/heads/master | 2020-03-29T21:43:27.313975 | 2018-11-19T10:53:31 | 2018-11-19T10:53:31 | 150,383,416 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 144 | java | package org.release.service;
import org.release.entity.User;
public interface UserService {
public User getUserById(Long id);
}
| [
"2996547275@qq.com"
] | 2996547275@qq.com |
bc79e6bfd66bbe05a80e6ac0c49030ef899a165f | f1e0b152f2b41b3f16dcbfea13c0a23dc3325008 | /modules/MgkPortlet/MgkPortlet-api/src/main/java/com/mgk/portlet/service/PersonServiceUtil.java | d4ccebde91af47a4945cecfe7a94a8edc484ca2f | [] | no_license | 021Mgk/liferay-portlet-mgk | 9aa1b3d1fc1a46bbd67da3fae2c6034e88f813f5 | 25564484d628b30f7a7446a5847a47f0eb7ec3d5 | refs/heads/master | 2023-08-15T13:27:40.330736 | 2021-09-16T07:48:54 | 2021-09-16T07:48:54 | 401,022,694 | 0 | 1 | null | 2021-09-16T07:48:55 | 2021-08-29T11:19:17 | Java | UTF-8 | Java | false | false | 2,144 | java | /**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any la... | [
"mgk.021@gmail.com"
] | mgk.021@gmail.com |
3b7aadab8a9614ee0300dd6667baaaec0a3c6116 | 1aa4e4f5354f85c9f5d0a653280fa75a48d9061f | /app/src/main/java/com/example/saket/blockcaller/Blacklist.java | 198e935921081104ae0098fa19bde1e8bca57ac2 | [] | no_license | saket147/BlockCaller | 9b013acda53b6c86f06d34d09fe6358e95516cb4 | e11f9d64684197178b0dfca36870f2c42991e57d | refs/heads/master | 2021-06-05T17:14:39.865695 | 2016-10-14T22:20:50 | 2016-10-14T22:20:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,117 | java | package com.example.saket.blockcaller;
/**
* Created by saket on 15-Oct-16.
*/
public class Blacklist {
// Two mapping fields for the database table blacklist
public long id;
public String phoneNumber;
// Default constructor
public Blacklist() {
}
// To easily create Blacklist object... | [
"saket19954@gmail.com"
] | saket19954@gmail.com |
88d64d84ff3ceb26ff09d3aeb3d591dbc664c539 | 1318f833a081b169f60a4002e1a629d65f652b22 | /src/main/java/com/widget/apitest/Widget.java | 1e1ccbcae8f5afb1f6c9988f3c013e157f60c38d | [] | no_license | JSiie/widgetapi_test | 7537a8cb2c500f92d6d27528f28fbd54a8232910 | 4b68eea60cc4c261cfa4e37805528dbfb37d2246 | refs/heads/master | 2022-12-01T01:34:07.506686 | 2020-08-15T15:43:12 | 2020-08-15T15:43:12 | 287,637,748 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,229 | java | package com.widget.apitest;
import java.util.Comparator;
import java.util.Map;
import java.util.UUID;
import java.time.Instant;
import java.time.ZoneId;
import java.time.ZonedDateTime;
public class Widget {
//UUID is pratically unique. id could also be an atomic counter. But in case of a distributed system ... | [
"me-gitlab@jonathan-sanchez.com"
] | me-gitlab@jonathan-sanchez.com |
3d46059c1e191742e8e5c38dd7cbe3e91c4c9ff2 | 0ea4b7df1934507f2f98bfef98a171071bed14dc | /ArgsSeprator.java | ca8ce9bdd0bddcc690241dd23a00de3fb6ef14f9 | [] | no_license | vishnumishra/wc_java | b99dfe35bd66e581abe805256d28e8b991bba734 | e501098620fa92d52e392362429e792f62a80275 | refs/heads/master | 2016-09-06T19:31:19.643997 | 2015-02-20T15:04:24 | 2015-02-20T15:04:24 | 30,903,175 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 818 | java | import java.io.File;
public class ArgsSeprator {
public String[] files;
public String[] flags;
private String[] argvs;
public ArgsSeprator(String[] argv){
this.argvs = argv;
this.files = getFiles();
this.flags = getFlags();
};
private boolean isValidFlag(String str){
String validFlags[] = {"-l","-L",... | [
"vishnu143mishra@gmail.com"
] | vishnu143mishra@gmail.com |
c9e5dd292a95beef2c9e8a48a4076a9859d5f8c3 | bfb18fb441a97e4091eba85b0afff6d4d254337c | /2.JavaCore/src/com/javarush/task/task15/task1503/Solution.java | a2ce54acc6cab9dbfc54c4ff0453232d4ca972e1 | [] | no_license | HappyRomio/JavaRushTasks | 75a184f890e08d8b821594e65bbd4f8a5ac3df4b | 4e0936eb6faacf170042b3a20ded5a589698486c | refs/heads/master | 2021-04-17T09:55:07.472906 | 2020-03-23T13:37:31 | 2020-03-23T13:37:31 | 249,435,804 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,463 | java | package com.javarush.task.task15.task1503;
/*
ООП - машинки
*/
public class Solution {
public static void main(String[] args) {
new Solution.LuxuriousCar().printlnDesire();
new Solution.CheapCar().printlnDesire();
new Solution.Ferrari().printlnDesire();
new Solution.Lanos().printl... | [
"maltsevroma@rambler.ru"
] | maltsevroma@rambler.ru |
086f0d0a6ea076f813a0e0e7c004e1693b8a4cca | d2ca913dfff1a2faee30101feee5395fbcaf598d | /app/src/main/java/com/oddcn/screensharetobrowser/recorder/RecordService.java | 4a3d17b345b33b2cff6e7c7b515c391e2d52790a | [
"Apache-2.0"
] | permissive | jedsada-gh/screen-share-to-browser | 13a39996aa8847c74ab3064dba5a5c54c7d3b18b | 48eebd1fae6532f92204bf5683e614911c15cb88 | refs/heads/master | 2023-05-25T06:19:42.774406 | 2019-01-02T07:57:52 | 2019-01-02T07:57:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,834 | java | package com.oddcn.screensharetobrowser.recorder;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.PixelFormat;
import android.hardware.display.DisplayManager;
import android.hardware.display.VirtualDisplay;
import android... | [
"oddzheng@126.com"
] | oddzheng@126.com |
7cb655e62792873dacb8ca032f7f4e8c8f57b6e1 | eb5e537de5ecd144b9efcd34e5d6734f871f01d9 | /mycode/mavencode/cocktail-service/src/main/java/com/liquidpresentaion/cocktailservice/services/AmazonClient.java | fad6613d7fc0419dfc68324bb0de1aee1dfa96ff | [] | no_license | tbiinfotech/pipeline | 42a3a3a6182a1ef66563b1849d0d25265205987d | 5cc43f64e50c32ae272f271e9de689fe14f11356 | refs/heads/master | 2023-08-09T18:29:04.612334 | 2020-02-20T07:07:22 | 2020-02-20T07:07:22 | 241,816,436 | 0 | 0 | null | 2023-07-23T06:15:17 | 2020-02-20T07:05:10 | Java | UTF-8 | Java | false | false | 3,260 | java | package com.liquidpresentaion.cocktailservice.services;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Date;
import javax.annotation.PostConstruct;
import org.springframework.beans.factory.annotation.Value;
import org.springfr... | [
"root@ip-172-31-86-77.ec2.internal"
] | root@ip-172-31-86-77.ec2.internal |
3893c52bd484ccd851b9f9f5948669a21642775a | c5215075d6e2e91cb4f6cbe7706e3b379d111185 | /src/main/java/com/lcc/service/impl/RolePermissionsServiceImpl.java | 051cfece919a4422fbb9e34a5d99e8830a18fe42 | [] | no_license | liangchengcheng/springmvc_admin_master | 59e378271c5120a6fa18dbd12b771c3321fb4489 | d57dece5045e4c457250c066b8a83a8a372a31d5 | refs/heads/master | 2021-01-12T07:05:06.173532 | 2016-12-24T06:16:35 | 2016-12-24T06:16:35 | 76,905,713 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,807 | java | package com.lcc.service.impl;
import java.util.List;
import com.lcc.bean.Result;
import com.lcc.bean.entity.RcRolePermissions;
import com.lcc.dao.RolePermissionsDao;
import com.lcc.service.RolePermissionsService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Ser... | [
"1038127753@qq.com"
] | 1038127753@qq.com |
385abbd3bafab21c11d337020da301450621b1df | e6d716fde932045d076ab18553203e2210c7bc44 | /bluesky-pentaho-kettle/engine/src/main/java/org/pentaho/di/trans/steps/monetdbagilemart/MonetDBRowLimitException.java | 9224432eb3d5e508b9b27a2e961659d272770fe3 | [] | no_license | BlueCodeBoy/bluesky | d04032e6c0ce87a18bcbc037191ca20d03aa133e | 6fc672455b6047979527da9ba8e3fc220d5cee37 | refs/heads/master | 2020-04-18T10:47:20.434313 | 2019-01-25T03:30:47 | 2019-01-25T03:30:47 | 167,478,568 | 6 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,719 | java | /*! ******************************************************************************
*
* Pentaho Data Integration
*
* Copyright (C) 2002-2013 by Pentaho : http://www.pentaho.com
*
*******************************************************************************
*
* Licensed under the Apache License, Version 2.0 (th... | [
"pp@gmail.com"
] | pp@gmail.com |
248ccad401aff8752c9068621ff29fab3f0a2866 | 38517e4228e08bf295776219c6b213f6a074d9fb | /src/main/java/pjatk/project/Model/PriceValidator.java | 99dd273d84a3573f79e6d8cb5d8d70704c85f7ea | [] | no_license | s20156/poprawa_poj | a26cf93a129b52647124387585cd3484c8897812 | 12c9a17066c4ecd0c79da83de2ba190b168fd2b0 | refs/heads/master | 2023-05-08T17:04:14.600066 | 2020-06-13T11:30:56 | 2020-06-13T11:30:56 | 271,972,679 | 0 | 0 | null | 2021-06-04T22:20:31 | 2020-06-13T08:47:00 | Java | UTF-8 | Java | false | false | 412 | java | package pjatk.project.Model;
import javax.validation.ConstraintValidator;
import javax.validation.ConstraintValidatorContext;
public class PriceValidator implements ConstraintValidator<Price, Double> {
@Override
public void initialize(Price Price) {}
@Override
public boolean isValid(Double price, Con... | [
"s20156@pjwstk.edu.pl"
] | s20156@pjwstk.edu.pl |
4cf779a18b5c65f523b869c1eb7ba86ddeda4e85 | f9fcde801577e7b9d66b0df1334f718364fd7b45 | /icepdf-5.0.3/icepdf/core/src/org/icepdf/core/pobjects/graphics/ImagePool.java | 3d2a78bb889fecd987e5d505e06a5e2e3fac0650 | [
"Apache-2.0"
] | permissive | numbnet/icepdf_FULL-versii | 86d74147dc107e4f2239cd4ac312f15ebbeec473 | b67e1ecb60aca88cacdca995d24263651cf8296b | refs/heads/master | 2021-01-12T11:13:57.107091 | 2016-11-04T16:43:45 | 2016-11-04T16:43:45 | 72,880,329 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,761 | java | /*
* Copyright 2006-2013 ICEsoft Technologies 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 ... | [
"patrick.corless@8668f098-c06c-11db-ba21-f49e70c34f74"
] | patrick.corless@8668f098-c06c-11db-ba21-f49e70c34f74 |
15fb0f1198ba99d2ceb62ccc9d1216b2cbe190c0 | 0a4131ea64c6c70148cc3dde4b87274a88f68e5b | /app/src/main/java/com/marco/santdelivery/MainActivity.java | 6bb4c3cc31ec134a21c1163862c4834ffb82d86a | [] | no_license | MarcoAntonioMamani/appcliente | 68dabfe25d2165774e4cfde183ad237015c13e36 | 301e7f6c6834275e53984da3dbacb7a415c0ff94 | refs/heads/master | 2022-09-24T09:37:19.916760 | 2020-06-01T02:45:55 | 2020-06-01T02:45:55 | 268,303,023 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 14,048 | java | package com.marco.santdelivery;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.Manifest;
import android.app.AlertDialog;
import android.arch.lifecycle.ViewModelProviders;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
im... | [
"marcoantoniomamanichura@gmail.com"
] | marcoantoniomamanichura@gmail.com |
f916b6f19fe7963af1feec2ef236542f77c0a9fa | 5862355bdd793c8fca35ab7fd559adffa7c1d16e | /src/test/java/com/test/DependencyGroupsTestUsingAnnotation.java | 670f8e7f650cded10f534db4faf06a899b0134ba | [] | no_license | toddlerya/LearnTestNG | 37d6120d76acaa320e2e31f4c8f2b36d14e9bbb8 | 68c254b4666131a8bcbdd0d7b2332d79c311f883 | refs/heads/master | 2021-01-05T21:27:39.794913 | 2020-02-22T16:05:24 | 2020-02-22T16:05:24 | 241,139,805 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 936 | java | package com.test;
import com.demo.MessageUtil;
import org.testng.Assert;
import org.testng.annotations.Test;
/**
* @Author evi1
* @Create 2020/2/18 15:09
*/
public class DependencyGroupsTestUsingAnnotation {
String message = "Thor";
MessageUtil messageUtil = new MessageUtil(message);
@Test(groups = {... | [
"toddlerya@gmail.com"
] | toddlerya@gmail.com |
bb729bd65f640f93c77056bec450d05093422872 | 0a8c35c200dd0b817979abd5913ef8fe468b7224 | /app/src/main/java/com/example/archek/gamesinfo/PrefsConst.java | bac45d94bcc4f6e99250627d86edbeca2e39267f | [] | no_license | ArchkWay/GamesInfo | ec37486512c9785d486da0b9492f2db37a026dc4 | c2eb3b7b421ded195d37c802f9a9e6e54175cac1 | refs/heads/master | 2020-03-22T04:57:32.839642 | 2018-09-21T10:02:32 | 2018-09-21T10:02:32 | 139,532,171 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 236 | java | package com.example.archek.gamesinfo;
public interface PrefsConst {
int SETTING_DEFAULT_AMOUNT = 10;
String SETTINGS_GAME_AMOUNT = "SETTINGS_GAMES_AMOUNT";
String SETTINGS_COMPANIES_AMOUNT = "SETTINGS_COMPANIES_AMOUNT";
}
| [
"Ovchinnikowork@gmail.com"
] | Ovchinnikowork@gmail.com |
e601b7385b9e74dc57d2d0b1162c73c1db7aa0e1 | f02d639343b03162226143600e47af59a4338d27 | /src/main/java/dev/webapi/repository/CollaborateurRepository.java | 0483140ed44f0d16806a161158e929317cbb2eb7 | [] | no_license | hmerciol/sirh-gestion-personnel-webapi | 7e7392711f25623e3db694b41baf17e4b55bcbca | 4c83a8241f16c22a28eb59c395a7bd2dca85cc0c | refs/heads/master | 2021-05-02T12:06:41.510915 | 2018-02-08T13:46:07 | 2018-02-08T13:46:07 | 120,736,746 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 228 | java | package dev.webapi.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import dev.webapi.entite.Collaborateur;
public interface CollaborateurRepository extends JpaRepository<Collaborateur, Integer> {
}
| [
"li.henri@merciol.fr"
] | li.henri@merciol.fr |
626e9e09c53559568767f814660ac05b6c0f4f99 | 12e507dd7b7c5e8d379a8b8fb3c71ea367228414 | /src/main/java/com/nam/_000/acmp_0006/Main.java | 8c82e16885ec50791fb425aedcbafe8fbc40cb0f | [] | no_license | YershovAleksandr/Java_020_ACMP | 20f4be6627da6fb6b8f499d1f57eabb58da343f3 | 0349206072fcb289fb46cc50c3f7a83412e04db0 | refs/heads/master | 2020-03-30T01:25:03.686715 | 2019-02-16T18:01:17 | 2019-02-16T18:01:17 | 150,574,834 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,566 | java | package com.nam._000.acmp_0006;
import java.io.PrintWriter;
import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner in = new Scanner(System.in);
PrintWriter out = new PrintWriter(System.out);
String step = in.nextLine();
if (!isCorrectValue(... | [
"namstudionsk@gmail.com"
] | namstudionsk@gmail.com |
0b52bb906c2da04f88e62aa63de068928d41c74c | e096c758789d6091351d922a8f30f6f6fa5ed60c | /src/com/nv/youNeverWait/user/bl/validation/DoctorValidator.java | a1cdaf7b8efbe4ffeecd44b2695025b4c44c9cb4 | [] | no_license | netvarth/netmdportal | 0487f5221bdc6f7a0e9156f96d122dcea42ff191 | a60171d76e82b02fbf074db4a7dd2814a10d0866 | refs/heads/master | 2021-03-16T09:54:50.043949 | 2016-08-04T10:53:34 | 2016-08-04T10:53:34 | 63,756,828 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,668 | java | /**
* DoctorValidator.java
*
* Dec 19, 2012
*
* @author Asha Chandran
*/
package com.nv.youNeverWait.user.bl.validation;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import com.nv.youNeverWait.common.Constants;
import com.n... | [
"manikandan@33b5678d-7e6b-764b-8695-d616d715c8b5"
] | manikandan@33b5678d-7e6b-764b-8695-d616d715c8b5 |
4d5faaa58e43ba47234d6e39298ff21c7effddda | 7101fb712143092126af62835223dbc22394c08d | /app/src/main/java/it/unimib/librichepassione/SearchDetailFragment.java | b0fb5bec2519d6d092ec989f9246f5922af93838 | [] | no_license | gmele9/LibriChePassione | 31a9af7228a93dad42bfb65237cedf5a0f3eea9c | f8a3eb86152c9c1ae836a312165aa80a5e863b67 | refs/heads/master | 2022-11-28T15:48:06.137113 | 2020-07-16T15:46:04 | 2020-07-16T15:46:04 | 277,797,985 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,175 | java | package it.unimib.librichepassione;
import android.app.AlertDialog;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
import ... | [
"g.mele9@campus.unimib.it"
] | g.mele9@campus.unimib.it |
b2bdcf36f1ecb47f7291a0520beb5f2fa991c9b2 | b4cd00e9241dc52d97ae6052bf8b3b8c1adef350 | /tes-tsvc/src/main/java/com/qingqing/test/client/PassportPiClient.java | 9ccea9279458ea50cb506d45fc4f9760f3123ebf | [] | no_license | AntinZhu/QingTest | 17aa1a8dbcaceb1de32a9d7d26688cd167ffef1d | 6b4863db50b3e75f3b4570c5f387a1bcd5cf99f0 | refs/heads/master | 2022-06-29T11:38:35.367432 | 2021-08-18T02:32:40 | 2021-08-18T02:32:40 | 146,688,664 | 2 | 1 | null | 2022-06-22T19:15:01 | 2018-08-30T03:06:18 | JavaScript | UTF-8 | Java | false | false | 1,860 | java | package com.qingqing.test.client;
import com.qingqing.api.passort.proto.PassportLoginProto.PassportLoginResponse;
import com.qingqing.api.passort.proto.PassportLoginProto.PassportTkLoginRequestV2;
import com.qingqing.api.passort.proto.PassportQueryProto.PassportQueryUserInfoRequest;
import com.qingqing.api.passort.pro... | [
"zhujianxing@changingedu.com"
] | zhujianxing@changingedu.com |
264aa8aee030de451e17a5bbd8eb93299de7b7dd | 9216ec7959de16732284c87372fe8ab388b5e384 | /service/hive/src/main/java/org/saarus/service/sql/io/TableRCFileWriter.java | ee4e7a95016e00b25e7b1c8252a3e731e9d5debc | [] | no_license | tuan08/Saarus | 9d4c3061052bea8dd0d79a2301d62966a33860ac | b7d6fca9ffe71ab813a58b44c002590772e1aeab | refs/heads/master | 2020-07-15T11:34:04.654042 | 2015-02-15T12:34:20 | 2015-02-15T12:34:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,808 | java | package org.saarus.service.sql.io;
import java.io.IOException;
import java.util.Iterator;
import java.util.Map;
import java.util.Properties;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.hive.ql.io.RCFile;
imp... | [
"tuan08@gmail.com"
] | tuan08@gmail.com |
e80109a0a4d096c0fee9040f91176265d553b525 | b8f3536f21400859ea8163963c27dc090b96a9bf | /src/Enums/CookingInstruction.java | 6b0653ce43347e8b2d9bd3b8e1474023068caaae | [] | no_license | Awesomium40/PizzaOrderingGUI | 2cd2738720a803df841c93d3e97e72fcf796e3d6 | 051c5bf7d5dfa041ef84da12928de1225576e4ff | refs/heads/main | 2023-06-20T11:37:27.016010 | 2021-07-14T02:41:27 | 2021-07-14T02:41:27 | 124,742,361 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 298 | java | package Enums;
public enum CookingInstruction
{
NORMAL, LIGHT_BAKE, WELL_DONE;
private static final String[] names = {"Normal Bake", "Light Bake", "Well Done"};
public boolean isDefault()
{
return this.ordinal() == 0;
}
public String toString()
{
return names[this.ordinal()];
}
}
| [
"justin.walthers@hotmail.com"
] | justin.walthers@hotmail.com |
028263e3fca846d3a55a015ee5b550f1d8c8bbf2 | 4ea067acb246d315612ec24697f0c8739820a51a | /app/src/main/java/com/example/lhilf/leistungensammler/CameraActivity.java | 899c1059557f30539a11bf87fe225c300c02316b | [] | no_license | Luke004/gerichtesammler | 6da1f6203d0b3bc7e817c2be3d038e6acc0ae2c8 | acee27765aab9252e72105fb744f923ab9f2ac8c | refs/heads/master | 2022-12-08T17:22:57.777088 | 2020-08-31T14:44:41 | 2020-08-31T14:44:41 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,853 | java | package com.example.lhilf.leistungensammler;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import java.io.File;
import java.io.IOException;
import io.fotoapparat.Fotoapparat;
import io.fotoapparat.result.PendingResult;
import io... | [
"lukas.hilfrich@mni.thm.de"
] | lukas.hilfrich@mni.thm.de |
6b8659a60f5903589a16e7aaa19df38b401cec7e | 64bbfaab56176144560f000418fb3cb35e5eaff9 | /src/main/java/com/uniovi/UvisClient/validator/WalletFormValidator.java | 7bff75719c5bb5fc4a0e7cbd2651f323f4486bca | [] | no_license | PelayoDiaz/UvisClient | 56253a8b67da05ad5c5e2e5486e39182f56bba4e | 64047a27403ec40db703694ab98afad6d148a9ee | refs/heads/master | 2022-12-15T11:45:25.313050 | 2019-11-20T21:07:08 | 2019-11-20T21:07:08 | 191,362,104 | 0 | 0 | null | 2022-12-04T21:16:23 | 2019-06-11T11:56:01 | CSS | UTF-8 | Java | false | false | 1,444 | java | package com.uniovi.UvisClient.validator;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.validation.Errors;
import org.springframework.validation.ValidationUtils;
import org.springframework.validation.Validator;
import com.unio... | [
"UO251000@uniovi.es"
] | UO251000@uniovi.es |
1ade226a3b3f66c332774d2d3cc9228682275b39 | c22461e080d694ab8495288995210223e4211b4a | /NeighborhoodSustainability/app/src/main/java/creu/neighborhoodsustainability/InformationDisplay.java | 16d0913da232593a1d367cf846dc150cf9f0e5af | [] | no_license | HalcyonAura/CREU | 938ad278cd3f3447f08b989f02d2d0cf002af86f | bc925b39a5571a3a0d8ed84c7d8cbe7dc44b3860 | refs/heads/master | 2021-01-21T11:36:54.284050 | 2018-05-06T01:59:16 | 2018-05-06T01:59:16 | 102,019,421 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,290 | java | package creu.neighborhoodsustainability;
import android.content.Intent;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v4.app.FragmentStatePagerAdapter;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.To... | [
"laplace95@gmail.com"
] | laplace95@gmail.com |
785013f80a756aa2d5847208afcaaebf40a8f813 | e25797fe32281f11f3f773ab72949d88b80291e6 | /src/controller/login.java | 7bbd1cacfca116b6dcd24a111f2d46cdbe9cf832 | [] | no_license | yylou15/Internet_plus | 807d8beb308a8aa6ae1b7dd14448a6dd985c8588 | edeac4fe3c041ececc2db586ae2098865914d448 | refs/heads/master | 2020-05-16T05:01:34.722003 | 2019-05-03T02:07:10 | 2019-05-03T02:07:10 | 182,799,597 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,579 | java | package controller;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Alert;
import javafx.scene.control.TextField;
import javafx.stage.Stage;
public class login {
@FXML
private TextField username;
@FXML
private T... | [
"louyuanyang@outlook.com"
] | louyuanyang@outlook.com |
48bff4deb0290cec8c8ef3763ca2e116c09351ae | 18543d61b93bf20680ef4960c78c842552d2c830 | /AbstractTree.java | 540c0772d23581b9a7cc6f5d9153472d63475b0d | [] | no_license | Vazyri/stupid-fucking-morsey-translator | 98f6ae029a609d3e4ba8ac960b87195d62c21523 | 64dbc14a2c6bad4071452d065c839c53a79ab555 | refs/heads/main | 2023-05-26T02:52:22.520135 | 2021-06-03T03:58:12 | 2021-06-03T03:58:12 | 373,373,426 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,268 | java | import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
/**
* Morsey
* AbstractTree abstract class of generic type K implements Tree of generic type K
* ElementIterator static inner class of generic type K implements Iterator of generic type K
* @author Von Jamora
*/
public abstract cla... | [
"46606935+Vazyri@users.noreply.github.com"
] | 46606935+Vazyri@users.noreply.github.com |
798cde5205996caa33e4848617845dc04ee44321 | 29b7d5f853966195f2534514a79d1866b5f0881e | /src/main/java/com/example/pedidos/controller/dto/PedidoDto.java | b4236d6bbf0eb4ee0bb7bce4bb9f5a705926bbf0 | [] | no_license | ruhangon/spring-pedidos | c29aab47780ffbea25b2ba9dc02c1ba55652ba7f | ea658a8cb2dd51b0792f830ff99c2ce72cad7c5a | refs/heads/master | 2023-06-19T03:24:09.520305 | 2021-07-09T22:21:41 | 2021-07-09T22:21:41 | 382,085,822 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 701 | java | package com.example.pedidos.controller.dto;
import java.time.LocalDate;
import java.util.List;
import java.util.stream.Collectors;
import com.example.pedidos.model.Pedido;
import lombok.Getter;
@Getter
public class PedidoDto {
private Long id;
private String nome;
private String descricao;
private String marca;... | [
"ruhan.goncalves@gmail.com"
] | ruhan.goncalves@gmail.com |
d1f1f34f58997012761431fd464e7281d30b4d13 | ca070e4ae34a73de18ef17d3dd009f4ed7f488a6 | /2.2.3/sources/android/support/v7/widget/AppCompatEditText.java | 125076b1c4199d0d481e47d2189d0792236f01b5 | [] | no_license | stven0king/InstantRun-ApkParse | 611c49fc56852d2e1538b477b1670813808e7316 | 5bc938ab615ae6bb3c4941f65b6c2c6d7d30a8d5 | refs/heads/master | 2020-03-17T20:21:20.221813 | 2018-05-18T05:21:52 | 2018-05-18T05:21:52 | 133,905,354 | 4 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,487 | java | package android.support.v7.widget;
import android.content.Context;
import android.content.res.ColorStateList;
import android.graphics.PorterDuff.Mode;
import android.graphics.drawable.Drawable;
import android.support.annotation.DrawableRes;
import android.support.annotation.Nullable;
import android.support.annotation.... | [
"tanzhenxing@58ganji.com"
] | tanzhenxing@58ganji.com |
666df82dc8fd20fa16571ceecfd6fbffc6359ec3 | d977ad2b740b1bed5514810512d694acc0f95778 | /Module 2/src/_qly_Sdt/commons/FileUtils.java | 715a81c3276db6ae13bd129b8d1488e9fcc0ca80 | [] | no_license | quoctrung1012/C0720G1-TruongQuocTrung | 37385f3b81e02ffd014e408926ac5be17b928041 | 68de69a5126db4d591d6f97063d7eaaaff272596 | refs/heads/master | 2023-02-19T10:17:27.000968 | 2021-01-19T02:37:02 | 2021-01-19T02:37:02 | 282,783,074 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,315 | java | package _qly_Sdt.commons;
import _qly_Sdt.models.TelephoneDirectory;
import java.io.*;
import java.util.ArrayList;
import java.util.List;
public class FileUtils {
static FileWriter fileWriter;
static BufferedWriter bufferedWriter;
static FileReader fileReader;
static BufferedReader bufferedReader;
... | [
"quoctrung1012@gmail.comgit config --global user.name quoctrung1012"
] | quoctrung1012@gmail.comgit config --global user.name quoctrung1012 |
12da7cc2aecf06bf4610ccab160e83390b96dfec | d56c589262e9338ec9b917a954aeff798b01bd29 | /app/src/test/java/bit/ihainan/me/bitunionforandroid/ExampleUnitTest.java | 4dbc8f8a6bbd2c382658f69e5dc5f4756c12aaf9 | [] | no_license | ztlm/BITUnion-for-Android | d7f2682739b06796c923fab3ebd8fb98e8c738a7 | 9aeb38ea27915a314df71df2f2f85b61b95a59bd | refs/heads/master | 2021-01-12T21:36:07.255189 | 2016-03-20T14:03:57 | 2016-03-20T14:03:57 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 340 | java | package bit.ihainan.me.bitunionforandroid;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* To work on unit tests, switch the Test Artifact in the Build Variants view.
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(... | [
"ihainan72@gmail.com"
] | ihainan72@gmail.com |
ef44a569bb16581ab6af79bd3dcad8fe2b35b5b2 | 76cc84817463d57da6ebfce3cc998b54f0ce608f | /src/Task03/Scanner_Practice.java | a3bdaec5c8c9b28f8a807230917f03215f51a2c7 | [] | no_license | IssB20/Day3-Repo | 0c19301b13ebcb51351f34440ec7d1e9e17a1bdc | 99bfb2966afe65307bd93bc2f94da23b16e14ed9 | refs/heads/main | 2023-01-04T23:14:05.231470 | 2020-10-31T14:55:14 | 2020-10-31T14:55:14 | 308,898,843 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 456 | java | package Task03;
import java.util.Scanner;
public class Scanner_Practice {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter your first number:");
int num1 = scan.nextInt();
System.out.println("enter you second number:");
... | [
"islem_ouiddir@yahoo.fr"
] | islem_ouiddir@yahoo.fr |
d929ec9956b736103a30cbe6a81ee724b8329dc3 | 4e409edb21bb1cd47b0d787cd6a03a8d9cf3f3d3 | /SummerProject/src/main/java/pages/Programs.java | 7f51941c3a98abb287c5bce8bb1fe0a8338325cb | [] | no_license | aman1310verma/TESTING-proj | 9aa14796632050b72db55c385c80b2d9c856d6c4 | 28ca8f7103aafb11eb2e01526b77ebaf1c8966fc | refs/heads/master | 2023-03-17T11:13:09.886333 | 2021-02-21T15:57:43 | 2021-02-21T15:57:43 | 340,939,301 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,719 | java | package pages;
import java.util.ArrayList;
import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
public class Programs {
WebDriver driver;
//Constructor that will be automatically called as soon as the object of the class is created
pu... | [
"aman1310verma@gmail.com"
] | aman1310verma@gmail.com |
b5f36d5b59970d4626e4662239822ecf09a2d3dc | c5d93c0a4db767ba5333edf0b57767fa9b253f3c | /src/test/java/runners/ParallelRunner.java | 740a1f54b4e1ff74aa82e678ca3fab8453fc2c32 | [] | no_license | girijadeo/MRIautomation | b8c6729427dada26abd0b2a396fe31701fa2f08a | d26f78142df2d28905731106379486d8a4546ef3 | refs/heads/master | 2020-03-29T08:23:50.689956 | 2018-09-21T04:18:54 | 2018-09-21T04:18:54 | 149,709,045 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,827 | java | package runners;
import com.cognizant.Craft.DriverScript;
import com.cognizant.framework.selenium.*;
import com.cognizant.framework.FrameworkParameters;
/**
* Class to facilitate parallel execution of test scripts
* @author Cognizant
*/
class ParallelRunner implements Runnable {
private final SeleniumTestParame... | [
"32549451+girijadeo@users.noreply.github.com"
] | 32549451+girijadeo@users.noreply.github.com |
6377eeff013acaf4fe858c0c1f5b781a2b90ee97 | 667129f3278213ebe621ff2c67b400755d294d62 | /aTalk/src/main/java/org/atalk/impl/neomedia/rtp/remotebitrateestimator/RemoteBitrateEstimatorAbsSendTime.java | 2941c3dac2b844d4193c5e30b977178134debbd1 | [
"Apache-2.0"
] | permissive | rutura/atalk-android | 6f196d85d4a431a73bb65778700c63d86c2e067b | b4705cecb64b8f8c41ae18e0e6ab0ba64e44580e | refs/heads/master | 2021-05-14T01:22:19.579096 | 2018-01-14T05:05:57 | 2018-01-14T05:05:57 | 116,563,805 | 1 | 0 | null | 2018-01-07T12:31:11 | 2018-01-07T12:31:11 | null | UTF-8 | Java | false | false | 26,509 | java | /*
* Copyright @ 2015 Atlassian Pty Ltd
*
* 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 ag... | [
"cmeng.gm@gmail.com"
] | cmeng.gm@gmail.com |
db7bf89c22e432b1dc4d1213b43086724dc5eab0 | ef8e7192cc0366cad6aec24fb00187d7e1bc954d | /comet/CoCoLauncher/src/com/iLoong/launcher/SetupMenu/Actions/DesktopAction.java | 5fefd9367c65a9b1a86e17b0f079c0f3d9988b85 | [] | no_license | srsman/daima111 | 44c89d430d5e296f01663fcf02627ccc4a0ab8fd | b8c1fb8a75d390f6542c53eaec9e46c6c505f022 | refs/heads/master | 2021-01-22T16:31:23.754703 | 2015-03-26T05:40:59 | 2015-03-26T05:40:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 24,853 | java | package com.iLoong.launcher.SetupMenu.Actions;
import java.io.File;
import java.io.IOException;
import java.util.Calendar;
import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.content.Shar... | [
"liangxiaoling@cooee.cn"
] | liangxiaoling@cooee.cn |
496eaae2551c71576d1898d83efea13ecdf6a84c | fbcc22b603fdcfff37dfdf4da4c69b0096a44fa3 | /springboot/SpringBoot-shiro/SpringBoot-Shiro-Vue/back/src/main/java/com/heeexy/example/config/exception/GlobalExceptionHandler.java | 1b671326cee275e65c79361e72f32a253e2d1f27 | [] | no_license | chunchengmeigui/dalyNote | 0d4b40866ce142ec915f9aadb587f79bafe96b3a | deb9a4a634952d05e4a5a34bebc8cc51294a70b6 | refs/heads/master | 2021-06-15T07:10:48.307819 | 2021-04-23T09:54:03 | 2021-04-23T09:54:03 | 175,994,544 | 3 | 0 | null | 2020-12-14T15:45:13 | 2019-03-16T16:13:05 | Java | UTF-8 | Java | false | false | 3,064 | java | package com.heeexy.example.config.exception;
import com.alibaba.fastjson.JSONObject;
import com.heeexy.example.util.CommonUtil;
import com.heeexy.example.util.constants.ErrorEnum;
import org.apache.shiro.authz.UnauthenticatedException;
import org.apache.shiro.authz.UnauthorizedException;
import org.slf4j.Logger... | [
"d903321643"
] | d903321643 |
b494f24246eb705c5cec191ad769b9711e8aabdb | 919cb1eb0e9b0cc8605f909764f018172bcb3063 | /app/src/main/java/com/example/toshiba/ternakku/ui/Startup.java | 2a6a715fc02f968c8f8d8b89037d7711d7012b6f | [] | no_license | asywalulfikri/ternakku | 94d668f4edbef85b3a88b38330e4e522fe7fb228 | 8f9a92fff22b7f9bdce69a54a0805567c6d0186b | refs/heads/master | 2016-08-12T03:15:28.712963 | 2015-12-28T03:21:52 | 2015-12-28T03:21:52 | 47,543,057 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,956 | java | package com.example.toshiba.ternakku.ui;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.widget.EditText;
im... | [
"fikri@fupei.com"
] | fikri@fupei.com |
0bc3edbde77d1bde3ea5a3c8cbecfed58dfbf378 | 8b656bbb29caa5a9538e9932d36c8267bd4af221 | /GroupProject1/test/HareTest.java | c725bbe129c26176ff6918206ddbcea887bbbadb | [] | no_license | croznik/programmingskills2 | 90416599502db24311645d6524da331718679294 | 9af19e4faafebd70afb0163bd5582c820d6b3039 | refs/heads/master | 2021-03-12T20:40:52.942288 | 2014-11-07T13:36:03 | 2014-11-07T13:36:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,074 | java | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package testing;
import groupproject.*;
import org.junit.*;
import static org.junit.Assert.*;
/**
*
* @author Main
*/
public class HareTest {
private Hare hare = new Hare();
private static double TOLERANCE = 1e... | [
"Main@main-Satellite-C660.(none)"
] | Main@main-Satellite-C660.(none) |
4e508e17bd26c890f56e957b818e5dc2dae53d61 | 578a45a81f619d07be0b8ac615e8f92abf7b93bf | /src/main/java/com/thoughtworks/model/Jail.java | aeca72c4a8fae1bd4404c5b5ac89d68ec73d38f6 | [] | no_license | nigamkartik96/monopoly | d9629c4d3a06b992a220e11d5812ff254d52173e | c63b3ac43f3c7d3c8d0bec0f40100c963789c9bb | refs/heads/master | 2020-09-03T17:37:18.620697 | 2019-11-04T14:40:03 | 2019-11-04T14:40:03 | 219,522,501 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 679 | java | package com.thoughtworks.model;
import com.thoughtworks.constants.Constants;
import com.thoughtworks.game.Board;
public class Jail extends Cell {
@Override
public void doAction(Player player, Board board) {
if (player.getMoney().getAmount() < Constants.JAIL_FINE) {
player.subMoney(Constant... | [
"kartik.nigam@paytm.com"
] | kartik.nigam@paytm.com |
fd90f648bb782b36e03acc6e8e5c63ae49d961b8 | 3fbe8559e6690c360c4948521170df29a771c095 | /SLA/src/main/java/com/inapp/cms/utils/RandomString.java | eda4403705e0d90afd0e8c549e783ba06a4a7721 | [] | no_license | cibye221b/SLA | b6ddf25b7f5fa8d72b6ea2b2e06d4068e0af2132 | 624468806873e324546b5c2cb1670ea33d412a6e | refs/heads/master | 2020-12-11T03:38:30.447001 | 2016-09-03T10:21:07 | 2016-09-03T10:21:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 810 | java | package com.inapp.cms.utils;
/**
* @author Jinesh George
*/
import java.util.Random;
public class RandomString {
private static char[] symbols;
static {
StringBuilder tmp = new StringBuilder();
for (char ch = '0'; ch <= '9'; ++ch)
tmp.append(ch);
for (char ch = 'a'; ch <= 'z'; ++ch)
... | [
"root@localhost.localdomain"
] | root@localhost.localdomain |
bb3b0c7f74cd528b026f5d32889e653fffb30fee | 439e0946983d314ed674ffec4e6a1e55a32d9bde | /app/src/main/java/com/digital/assignment/ValueFormatter.java | 26299bde28a85136cb2e8ebc1efeee5a26c5e2c7 | [] | no_license | MehmoodU-stratagile/ili.assignment | ed842f6dd7ab1c84e2a6a07c99eb91f07d695d2c | f0dc96e0f9b6cd30fb309b7e5ebd589b73494126 | refs/heads/main | 2023-03-01T09:23:30.065940 | 2021-02-12T07:51:44 | 2021-02-12T07:51:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,850 | java | package com.digital.assignment;
import com.github.mikephil.charting.components.AxisBase;
import com.github.mikephil.charting.data.BarEntry;
import com.github.mikephil.charting.data.BubbleEntry;
import com.github.mikephil.charting.data.CandleEntry;
import com.github.mikephil.charting.data.Entry;
import com.github.mikep... | [
"36883202+Mehmood-usman@users.noreply.github.com"
] | 36883202+Mehmood-usman@users.noreply.github.com |
cf9e38356cdc9bb2d5cf3bc6f5c3dedf6e532a84 | 19f7e40c448029530d191a262e5215571382bf9f | /decompiled/instagram/sources/p000X/DD9.java | b81edb45a2f6db7c41d9296c77926e31a87b0d3e | [] | no_license | stanvanrooy/decompiled-instagram | c1fb553c52e98fd82784a3a8a17abab43b0f52eb | 3091a40af7accf6c0a80b9dda608471d503c4d78 | refs/heads/master | 2022-12-07T22:31:43.155086 | 2020-08-26T03:42:04 | 2020-08-26T03:42:04 | 283,347,288 | 18 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,393 | java | package p000X;
import com.facebook.react.uimanager.BaseViewManager;
import java.nio.ByteBuffer;
/* renamed from: X.DD9 */
public final class DD9 extends DDK implements C29869DEe {
public final void ABR(ByteBuffer byteBuffer, int i) {
int A00 = DD3.A00(byteBuffer, i, 0);
if (A00 != 0) {
... | [
"stan@rooy.works"
] | stan@rooy.works |
629fb4fee87cc4d8cb3dbf57516d04dcb04fcfaf | dd01522057d622e942cc7c9058cbca61377679aa | /hybris/bin/platform/bootstrap/gensrc/de/hybris/platform/acceleratorservices/data/RequestContextData.java | 8707071e4001def71b524714a83db83a816acc4b | [] | no_license | grunya404/bp-core-6.3 | 7d73db4db81015e4ae69eeffd43730f564e17679 | 9bc11bc514bd0c35d7757a9e949af89b84be634f | refs/heads/master | 2021-05-19T11:32:39.663520 | 2017-09-01T11:36:21 | 2017-09-01T11:36:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,065 | java | /*
* ----------------------------------------------------------------
* --- WARNING: THIS FILE IS GENERATED AND WILL BE OVERWRITTEN!
* --- Generated at 25 Aug 2017 4:31:24 PM
* ----------------------------------------------------------------
*
* [y] hybris Platform
*
* Copyright (c) 2000-2016 SAP SE
* All rig... | [
"mashimbyek@gmail.com"
] | mashimbyek@gmail.com |
7a477ddfad68dde9a04c363eb6a6ea2b8a26f938 | ef57e360945d470583da667567b9befc3215ca80 | /Lorry-master/app/src/main/java/name/marinchenko/lorryvision/util/net/NetView.java | 2e2ff4921633b8e210e7e17de3a23cde4be2c565 | [] | no_license | drill2010/LorryVision | a0e34ed6b8129408496481c7fc6d9efb9d0ce6c9 | 35e14507939257e65851c2430768b81ce078fb00 | refs/heads/master | 2020-04-15T02:15:58.861164 | 2019-02-24T13:07:03 | 2019-02-24T13:07:03 | 164,308,247 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,747 | java | package name.marinchenko.lorryvision.util.net;
import android.os.Bundle;
import java.util.ArrayList;
import java.util.List;
/**
* NetView contains data for viewing in the networks list.
*/
public class NetView {
public static String BUNDLE_KEY_LIST_SSID = "bundle_key_list_ssid";
public static String BUND... | [
"drill2010@yandex.ru"
] | drill2010@yandex.ru |
49cb643999df005228f462b1d8dda2055bde584f | 0fbd372915d09df44cf65271beae89a97d2fcdf2 | /src/main/java/com/hermes/infrastructure/dataaccess/services/CargoServiceImpl.java | 0c26522c83358a2bd870e60e09beea4c4270f0f1 | [] | no_license | netcrackerschool/hermes | 799811ff882ae857e707a4aab829d04fcb2b8daa | 381bec35232c8ac6962b12884d40f552392ceb1c | refs/heads/master | 2021-08-08T04:24:54.086142 | 2017-11-09T15:22:48 | 2017-11-09T15:22:48 | 110,107,630 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 334 | java | package com.hermes.infrastructure.dataaccess.services;
import com.hermes.domain.cargo.AbstractCargo;
/**
* 05.10.15.
*/
public class CargoServiceImpl extends GenericServiceImpl<AbstractCargo> implements CargoService {
public CargoServiceImpl(GenericRepository<AbstractCargo> repository) {
super(reposit... | [
"azanoviv02@gmail.com"
] | azanoviv02@gmail.com |
43739054330747ae96669338b8dd575553059302 | eeab34a5c9fd86be3fa22816842755c1098b284b | /arquillian-recorder-reporter/arquillian-recorder-reporter-impl/src/main/java/org/arquillian/recorder/reporter/impl/ReporterLifecycleObserver.java | 67f07c36f4d745ae241c6027292a5a46c414a8a3 | [
"Apache-2.0"
] | permissive | mattfred/arquillian-recorder | 889df4494ecf6029f0fb31021c19e0cb6e602b0b | b117d5802ab809275b27caf168de791dfba440ac | refs/heads/master | 2020-02-26T13:59:58.999600 | 2015-07-13T14:51:00 | 2015-07-13T14:51:00 | 38,843,571 | 0 | 0 | null | 2015-07-09T20:29:31 | 2015-07-09T20:29:30 | null | UTF-8 | Java | false | false | 12,893 | java | /*
* JBoss, Home of Professional Open Source
* Copyright 2014, Red Hat, Inc. and/or its affiliates, and individual
* contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* y... | [
"matthew.frederick@cru.org"
] | matthew.frederick@cru.org |
2555796136c5ad995574c4318f3ee1ff6998c64b | d8a24c4ee1406b4eef85c33ec852e133c51809c2 | /mifuns-facade-system/src/main/java/com/mifuns/system/facade/entity/Role.java | 05dca3bd2887c7a8d78299c2c5b1731df1b9864d | [] | no_license | cancheung/mifuns-project | 71626b8be76552bfca47c511872116e82f89c4eb | d27e64f8b00d6102b0c9dfa6873fd75bad893de8 | refs/heads/master | 2021-01-18T17:53:58.147052 | 2017-03-13T03:17:52 | 2017-03-13T03:17:52 | 86,821,972 | 1 | 0 | null | 2017-03-31T13:27:12 | 2017-03-31T13:27:12 | null | UTF-8 | Java | false | false | 3,994 | java | package com.mifuns.system.facade.entity;
import com.mifuns.common.page.PageBean;
import java.util.Date;
public class Role extends PageBean {
/**
*
* sys_role.role_id
*
* @mbggenerated
*/
private Long roleId;
/**
* 角色
* sys_role.role_name
*
* @mbggenerated
... | [
"miguangying@01zhuanche.com"
] | miguangying@01zhuanche.com |
2eb4b67737ad60f5bf67734c6be4882eb76d3801 | dc1dbb7e5a4b95bf44170d2f51fd08b3814f2ac9 | /data_defect4j/preprossed_method_corpus/Math/106/org/apache/commons/math/analysis/UnivariateRealIntegrator_setMaximalIterationCount_40.java | ba8399c48c8d00135ce328384028244d2017ef99 | [] | 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 | 512 | java |
org apach common math analysi
interfac univari real integr algorithm
version revis date
univari real integr univariaterealintegr
set upper limit number iter
high iter count converg problem
reason vari wide case user
advis
code converg except convergenceexcept code thrown number
exceed
param c... | [
"hvdthong@gmail.com"
] | hvdthong@gmail.com |
5a304ba707dea4761bca6553de95e760e4b7cc58 | c6de84d4fa400856bc1420cc1269024b97eb4fa0 | /dynamic_programming/LongestCommonSubsequence.java | b6a123e4677307ad0422674e27189112d5ee02c5 | [] | no_license | princewillzz/algorithms_and_data_structures | 1ce662546f550c696485398d3a7058ed83b91925 | abb3d6daef91bbb208885fa831d3eb768a8b8aa8 | refs/heads/master | 2021-10-08T04:15:01.676592 | 2021-10-03T11:27:46 | 2021-10-03T11:27:46 | 253,177,833 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,391 | java | import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class LongestCommonSubsequence {
public static void main(String argv[]) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String str = br.readLine().trim(... | [
"princewillz2013@gmail.com"
] | princewillz2013@gmail.com |
a9c2d26dc86e9fb6723b44056e2d60324cfc7bcc | f85f9ca71ccb631bba986635ba31439146c86faf | /P3_Patrones_Java/src/main/java/ec/edu/ups/Expression.java | bdc50bf2f9e314d73b02fa3c9c6701c3e99a6beb | [] | no_license | Jhon14DEA/P1_ProgramacionGenerica | 93f63a6857a74cb8b13100fb364c1e1f11bf4f6e | 4aa5feec43ddf2a2ff431edd2963e7a68be7e325 | refs/heads/master | 2023-01-24T16:07:48.326216 | 2020-12-04T00:21:41 | 2020-12-04T00:21:41 | 312,735,996 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,199 | 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 ec.edu.ups;
/**
*
* @author ASUS
*/
public abstract class Expression {
public abstract String one();
... | [
"64903359+Jhon14DEA@users.noreply.github.com"
] | 64903359+Jhon14DEA@users.noreply.github.com |
1207cf96b4725dfc84f584d68d5123df86be89ae | c6341ffd87bb65eba6ad0bd60e17b959a0cd7469 | /src/test/java/com/chocol/arithmetic/aug2021/Day8Test.java | 3ccbf14aa9ad66fa69f5ec946b69bd9c5040e634 | [] | no_license | MrChocol/arithmetic-upgrade | 34cdaa85ee28141e2c31a26d527f9034175a12fa | dac9170adda3117923d081e321c7590d8f651ce4 | refs/heads/master | 2023-08-01T05:38:20.566556 | 2021-09-27T14:46:20 | 2021-09-27T14:46:20 | 374,708,795 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,806 | java | package com.chocol.arithmetic.aug2021;
import org.junit.Test;
import org.springframework.boot.test.context.SpringBootTest;
/**
* Description:
*
* @author 陈力
* @date 2021/6/8
* @since
*/
@SpringBootTest
public class Day8Test {
@Test
public void test01() {
int[] nums = {1, 3, 5, 7, 9};
in... | [
"314159715@qq.com"
] | 314159715@qq.com |
63512ef2e8919ed7ecc3daa78e93148fe69c93f9 | 2c4cc13e6089758b6088d1aad563ae98fbc11a59 | /engine-config/src/main/java/com/datacloudsec/config/tools/DateUtil.java | 9c6828c9f909c0710c12448bd632485a8ff0ca98 | [
"MIT"
] | permissive | gumizy/flume-collector | df84cbad25255d5ffa78d3c7c9f567af8cd82c57 | d392ece035623365e2ec6c770f5cb621a0dd9ca5 | refs/heads/master | 2020-04-29T02:29:00.460976 | 2019-04-01T08:28:17 | 2019-04-01T08:28:17 | 175,769,409 | 6 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,021 | java | package com.datacloudsec.config.tools;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Locale;
public class DateUtil {
private static final Locale[] locales = {Locale.CHINA, Locale.ENGLISH};
/**
* 格式化日期
*
* @pa... | [
"guozhenyu@datacloudsec.com"
] | guozhenyu@datacloudsec.com |
e54aa3fa7eb7a548ad6272156c82654d932d1ab7 | eb5f5353f49ee558e497e5caded1f60f32f536b5 | /org/omg/CORBA/UShortSeqHelper.java | 2a423d8b9904c6dc3b96d0cc2f9350e8216ad7e7 | [] | no_license | mohitrajvardhan17/java1.8.0_151 | 6fc53e15354d88b53bd248c260c954807d612118 | 6eeab0c0fd20be34db653f4778f8828068c50c92 | refs/heads/master | 2020-03-18T09:44:14.769133 | 2018-05-23T14:28:24 | 2018-05-23T14:28:24 | 134,578,186 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 1,783 | java | package org.omg.CORBA;
import org.omg.CORBA.portable.InputStream;
import org.omg.CORBA.portable.OutputStream;
public abstract class UShortSeqHelper
{
private static String _id = "IDL:omg.org/CORBA/UShortSeq:1.0";
private static TypeCode __typeCode = null;
public UShortSeqHelper() {}
public static void i... | [
"mohit.rajvardhan@ericsson.com"
] | mohit.rajvardhan@ericsson.com |
619a1aa89abe22bc6ffefbaf96f5852f3a467b41 | ab673fd010e3970a3cd26024244a5eb4bf43cb93 | /app/src/main/java/com/xuexiang/xuidemo/fragment/expands/MaterialDesignFragment.java | 7a820c43034632091e2337d78bb2c9b9b6ac9df5 | [
"Apache-2.0"
] | permissive | dandycheung/XUI | 9cbd03a7f28c2cdd3a05fbcfafc8e57688f5d102 | 111e6008ccd97978d892c6807be1a50f544908ee | refs/heads/master | 2023-07-11T08:00:08.614364 | 2023-06-25T17:40:30 | 2023-06-25T17:40:30 | 239,179,628 | 0 | 0 | Apache-2.0 | 2023-06-29T18:19:32 | 2020-02-08T18:08:35 | Java | UTF-8 | Java | false | false | 3,842 | java | package com.xuexiang.xuidemo.fragment.expands;
import com.xuexiang.xpage.annotation.Page;
import com.xuexiang.xpage.core.PageOption;
import com.xuexiang.xuidemo.R;
import com.xuexiang.xuidemo.activity.MaterialDesignThemeActivity;
import com.xuexiang.xuidemo.activity.SettingsActivity;
import com.xuexiang.xuidemo.base.B... | [
"xuexiangjys@163.com"
] | xuexiangjys@163.com |
72469fbde5698ca574537e1de26d4f5580d17340 | bac5385d871c037f992e6c9466c6f371d1ab3be7 | /test/java/com/donald/tests/PaymentDAOTests.java | 8f17c7e7f062d1434ebd585cf6efa03c548f8903 | [] | no_license | devwithdonald/Car_Dealership_Project | 0327646bbe80444457c836f2dcb26e5a3f376366 | cae2d39be6e64794a2c33864a6b89252ba0c7202 | refs/heads/master | 2022-09-24T14:05:08.782805 | 2019-06-18T19:13:56 | 2019-06-18T19:13:56 | 190,090,404 | 1 | 0 | null | 2022-09-08T01:00:56 | 2019-06-03T22:22:30 | Java | UTF-8 | Java | false | false | 989 | java | package com.donald.tests;
import static org.junit.Assert.assertEquals;
import java.util.List;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import com.donald.sqldao.PaymentPostgresDAOImpl;
import com.donald.users.Payment;
public c... | [
"hend.donald@gmail.com"
] | hend.donald@gmail.com |
04c3ac77551ad3a54a85c88531ff0303ed4a17dd | e27942cce249f7d62b7dc8c9b86cd40391c1ddd4 | /modules/adwords_appengine/src/main/java/com/google/api/ads/adwords/jaxws/v201702/mcm/AccountLabelServiceInterfacemutate.java | 871d10b63295e44b7ea07805d0ddd508212eebe3 | [
"Apache-2.0"
] | permissive | mo4ss/googleads-java-lib | b4b6178747d25d16ae6aa0c80d80ee18a2dfe01a | efaa9c3bd8a46a3ed4b00963dc9760c6dd8bd641 | refs/heads/master | 2022-12-05T00:30:56.740813 | 2022-11-16T10:47:15 | 2022-11-16T10:47:15 | 108,132,394 | 0 | 0 | Apache-2.0 | 2022-11-16T10:47:16 | 2017-10-24T13:41:43 | Java | UTF-8 | Java | false | false | 3,453 | java | // Copyright 2017 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... | [
"jradcliff@users.noreply.github.com"
] | jradcliff@users.noreply.github.com |
42d9a2b060bacafffe587c6cc85627208c24673b | 8a562f84ab27d847d89841851d3f904f2e684f35 | /app/src/main/java/com/example/androidui/viewholder/ViewHolder.java | 70764ded6b5eb8c1ac3c3e6ed5526a50d09aeca7 | [] | no_license | OMP1024/AndroidUI | 1f98c64a9f23dda0453dcd27bdea65d6592fde9c | 60b3406407cc456a3fa81f1326323c40e6d84dda | refs/heads/master | 2020-09-26T00:07:18.678383 | 2020-02-17T12:11:56 | 2020-02-17T12:11:56 | 226,118,638 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,748 | java | package com.example.androidui.viewholder;
import android.app.Activity;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androi... | [
"wangbo@newsinpalm.com"
] | wangbo@newsinpalm.com |
57545f67b0a3558aadfbc9d2b75ca0ba77cbfac8 | 8b51ce5f66cbc7236faac4a9a205a58321cc7ee3 | /JavaSample/src/try_catch_sample/throws_sample.java | 3e7611319d0dc73c8f2ca78e85b15ba0bcdb0c41 | [] | no_license | ayolabboy/java-study- | 36836849d383c51506e257aa898f017fc4968a4c | 7b4b116662b098dbebb84dbbec137bf78d6146da | refs/heads/master | 2022-12-25T06:37:03.864710 | 2020-03-03T14:24:02 | 2020-03-03T14:24:02 | 235,958,304 | 1 | 0 | null | 2022-12-16T15:25:07 | 2020-01-24T07:32:00 | JavaScript | UTF-8 | Java | false | false | 367 | java | package try_catch_sample;
public class throws_sample {
public static void main(String[] args) {
int a = 10;
int b= 0;
try {
int k = divide(a,b);
System.out.println(k);
}catch(ArithmeticException e){
System.out.println(e.toString());
}
}
public static int divide(int a, int b) thr... | [
"dong0901@gmail.com"
] | dong0901@gmail.com |
8a05cbb299d054947900824366c5a9f1a1549c34 | 95e944448000c08dd3d6915abb468767c9f29d3c | /sources/com/p280ss/android/ugc/aweme/challenge/p1084c/C23678f.java | ff9fa9abe89c19c5078978a353b5a998e03e7106 | [] | no_license | xrealm/tiktok-src | 261b1faaf7b39d64bb7cb4106dc1a35963bd6868 | 90f305b5f981d39cfb313d75ab231326c9fca597 | refs/heads/master | 2022-11-12T06:43:07.401661 | 2020-07-04T20:21:12 | 2020-07-04T20:21:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,713 | java | package com.p280ss.android.ugc.aweme.challenge.p1084c;
import android.os.Message;
import android.text.TextUtils;
import android.util.Log;
import com.google.common.collect.C17777bq;
import com.p280ss.android.ugc.aweme.base.C23397p;
import com.p280ss.android.ugc.aweme.challenge.api.ChallengeApi;
import com.p280ss.androi... | [
"65450641+Xyzdesk@users.noreply.github.com"
] | 65450641+Xyzdesk@users.noreply.github.com |
8355b1adf17cf8b4befcc9cd1c0d3a51c2aa21b8 | ba7279b2abcd1a3630e464777d8ab219cbcd09b5 | /app/src/main/java/com/renyu/androidcommonlibrary/activity/RetrofitActivity.java | 1e65921a6517a92e36d12740b2605262a2656db9 | [] | no_license | mingfenghappy/AndroidCommonLibrary | 29995f66edc5c3e031c89bd5699e516a99d43c4a | eb0a8841ade570ed079f1b455875be03d0dcad74 | refs/heads/master | 2020-03-25T02:09:52.729433 | 2018-07-24T09:36:47 | 2018-07-24T09:36:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,630 | java | package com.renyu.androidcommonlibrary.activity;
import android.graphics.Color;
import android.widget.Toast;
import com.renyu.androidcommonlibrary.ExampleApp;
import com.renyu.androidcommonlibrary.bean.AccessTokenResponse;
import com.renyu.androidcommonlibrary.api.RetrofitImpl;
import com.renyu.androidcommonlibrary.d... | [
"Yuren2@hotmail.com"
] | Yuren2@hotmail.com |
d707217a55f81033dd02c0353c560780915f288b | 3854926ac8f6c69228e3a6b5a3de15322c2de946 | /Week_01/HelloClassLoader.java | 2bde36ccccf6d299fd1c5bac4dedb442b05216d1 | [] | no_license | thomas-fan/JAVA-000 | c3bca4b492f3881b5b060021342deb6d8f45eba0 | 8984bf02dff8acdb1b33a7aaff39fdc1f7a2fe9e | refs/heads/main | 2022-12-31T11:02:38.871504 | 2020-10-20T01:44:15 | 2020-10-20T01:44:15 | 303,265,212 | 0 | 0 | null | 2020-10-12T03:15:00 | 2020-10-12T03:14:59 | null | UTF-8 | Java | false | false | 1,677 | java | import java.io.*;
import java.lang.reflect.Method;
public class HelloClassLoader extends ClassLoader {
public static void main(String[] args) throws Exception {
HelloClassLoader myClassLoader = new HelloClassLoader();
final Class<?> hello = myClassLoader.findClass("Hello");
Method sayHello ... | [
"zhangfan@thomas-fan.com"
] | zhangfan@thomas-fan.com |
134afb042d284b1eeac22b9514c61fba46bc0957 | d28a6288bc313b8f0459fceba2ec6e5a9bbec752 | /zsgc-parent/zsgc-core/src/main/java/com/zsgc/core/model/Bank.java | 01362e8f4252c77d8dc63086eb8ab25006c986da | [] | no_license | WalkingSouls/zsgc | 2db9fa2a08339c56a61854b7e6474a36f0e7b080 | 203ce8dcb1bee1d3859cf9e670c74d858f46bbd6 | refs/heads/master | 2020-05-20T03:54:25.273039 | 2019-05-07T09:34:02 | 2019-05-07T09:34:02 | 185,370,071 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,792 | java | package com.zsgc.core.model;
import com.calanger.common.dao.AbstractPO;
public class Bank extends AbstractPO {
private static final long serialVersionUID = 1L;
private java.lang.Integer id;
private java.lang.String name;
private java.lang.String code;
private java.lang.String icon;
private ja... | [
"15739297124@163.com"
] | 15739297124@163.com |
83c11d289a1955cb56af44bbea44c685f588237c | e48985fdf73f191445798e79ae2813e987cb150c | /src/ch08/_09_SpreadMain.java | 4fb98b5fc014b919d296dfee845b29e962179362 | [] | no_license | behappyleee/JavaTutorial | 755212831fb2a79f614dbac3449118ab0b326633 | 83519e877fd8f236165ae0d672a0d5cbcce99366 | refs/heads/master | 2023-03-06T08:00:41.856955 | 2021-02-17T13:28:47 | 2021-02-17T13:28:47 | 339,708,368 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 410 | java | package ch08;
public class _09_SpreadMain {
public static void main(String[] args) {
_09_SpreadArgs var = new _09_SpreadArgs();
var.callArg("샌드위치","연어스테이크" , "샐러드" , "ABC쥬스" ,"고구마"); //컴파일 시점에 배열이 생성됨(갯수는 상관x ==> 매개변수로 점3개를 줌 ...)
var.callArg2("홍길동" , 60, 50 , 40);
}
}
| [
"dhfhfkwhdk@naver.com"
] | dhfhfkwhdk@naver.com |
4dc41787c1f780a6a24e9f9382db634a6e3de715 | 859f4ac4af996bfe2bb803d68fe72668d8c0d84e | /src/main/java/com/msp/givn/entity/PostType.java | 55373baa06bf5c2a37ad2af92d60644178cfb6b4 | [] | no_license | chaulong78/givn | 467187cdae19e97cf271f5d81d62d64cb271cb04 | 22666ab92173e4102f8bc60fe615d97d92109ae7 | refs/heads/master | 2020-04-26T09:47:24.647473 | 2019-03-13T07:15:25 | 2019-03-13T07:15:25 | 171,267,346 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 437 | java | package com.msp.givn.entity;
import lombok.Data;
import javax.persistence.*;
@Entity
@Table(name = "post_type")
@Data
public class PostType {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private int id;
@Column(name = "name")
private String name;
@Column... | [
"chaulongdbp7@gmail.com"
] | chaulongdbp7@gmail.com |
6443048d407998ebd0e0eedae0e87afc74af7cf8 | c8818ae02043a41118094ede25aa5f57213752c1 | /app/src/main/java/com/amihealth/amihealth/Models/UserGeneral.java | 93479c5345fe2df9fc2dc91e4e2166d577d586aa | [] | no_license | nielsen29/AmIhealth_v2.0 | 4556b30aae43debd333626e04b3410c173075abd | 0c8d8734f16b1c9710eacab233f601936df5282e | refs/heads/master | 2021-05-13T18:04:56.381219 | 2019-06-02T13:48:25 | 2019-06-02T13:48:25 | 116,850,596 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,193 | java | package com.amihealth.amihealth.Models;
/**
* Created by amihealthmel on 08/07/17.
*/
public class UserGeneral {
public String nombre;
public String cedula;
public String apellido;
public String fecha_nacimiento;
public int sexo;
public int id_etnia;
public String getNombre() {
... | [
"mel29nielsen@gmail.com"
] | mel29nielsen@gmail.com |
7fbe586f9987881e4f0efda0aace05080f826eda | eef87b979d9d76465c8f026119b1c3a94268f36f | /src/main/java/com/oracle/xmlns/communications/ncc/_2009/_05/_15/pi/CCSCD1CHG.java | 7b44804e0555c92825de4d78ecef58d3ce58f6b5 | [] | no_license | amoiseyenko/crm | 57f9a383bd17b705225b27d771bcffe3d7c40abe | 85f757ba4071e462550f41ea1640eb7a1350cbb2 | refs/heads/master | 2016-09-06T19:34:44.046127 | 2015-08-06T10:45:39 | 2015-08-06T10:45:39 | 40,299,133 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 15,681 | 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: 2015.06.28 at 05:35:4... | [
"artem.moiseenko@hys-enterprise.com"
] | artem.moiseenko@hys-enterprise.com |
cd3d23cfd1cb23c157100d03f84c7d216caf5d71 | b4ba2cca922bcef1f3cd18fc033c7c7f0561f11a | /src/main/java/fi/vamk/e1900320/northwind/entity/PurchaseOrderDetails.java | cb400d4ec086116d0d0579d29595f49b4e4b2477 | [] | no_license | AlonaTsk/northwind | 10d6d1cdf46a8f211805171b4e3f7d20694fb11b | 3e96af01ef3811b0f5e707666a39d008c1a44c8a | refs/heads/main | 2023-03-17T10:27:40.291308 | 2021-02-28T13:12:12 | 2021-02-28T13:12:12 | 343,108,128 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,030 | java | package fi.vamk.e1900320.northwind.entity;
import java.sql.*;
import javax.persistence.*;
import lombok.Data;
@Data
@Entity(name = "fi.vamk.e1900320.northwind.entity.PurchaseOrderDetails")
@Table(name = "purchase_order_details")
public class PurchaseOrderDetails {
@Id
@GeneratedValue(strategy = GenerationType.ID... | [
"aliona2709@icloud.com"
] | aliona2709@icloud.com |
6502308533663c3e963055591309334672104f43 | ee565366a225df85ebdf322370a8dd7fcbf0e111 | /gmall-base/src/main/java/cn/chinatax/josewu/base/bean/Zsxx.java | 920a56996bd98fefc80c3c3d3e70180605a3c758 | [] | no_license | chinatax/gmall | fdcdc822b9c3977daaca7b3395e3e855900784a4 | d34bc4fd1a0c48d1ded8703e67b26291c80eb288 | refs/heads/master | 2022-06-22T20:41:31.613002 | 2019-08-24T03:50:07 | 2019-08-24T03:50:07 | 200,834,489 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,111 | java | package cn.chinatax.josewu.base.bean;
import java.io.Serializable;
import java.math.BigDecimal;
public class Zsxx implements Serializable {
private Long id;
private Short xh;
private String dq;
private BigDecimal jfrsSntq;
private BigDecimal jfjsSntq;
private BigDecimal jfjeSntq;
pri... | [
"446702119@qq.com"
] | 446702119@qq.com |
a7885bc87e9296d6c372c570762d0f6f35e2ba0c | 43e53df958e4eae4c1af68845afad4111947479b | /app/src/androidTest/java/com/example/sehernurese/gezginapp/ExampleInstrumentedTest.java | 08b774d9b64cfd9a5edb2deb8d056d17cc46133b | [] | no_license | ZuleyhaSehernurEse/GezginApp | 45260501d5fb04c75a03ab135996f5e1f17c292a | a348b8de764f8f2c319101e9a4c004d456956e54 | refs/heads/master | 2020-05-16T05:43:17.407899 | 2019-04-22T16:19:19 | 2019-04-22T16:19:19 | 182,824,202 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 750 | java | package com.example.sehernurese.gezginapp;
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 ... | [
"313926@ogr.ktu.edu.tr"
] | 313926@ogr.ktu.edu.tr |
795bbea092cf9b34e0eeffd9b8fb32622721746b | 48fd0b689f9cdb660ad06a191107e14d47542fd8 | /Ada55/src/MinimumLogicStep.java | d1b1ccfa2bd459e215633a8565d881cbc0199ba5 | [
"MIT"
] | permissive | chiendarrendor/AlbertsAdalogicalAenigmas | 3dfc6616d47c361ad6911e2ee4e3a3ec24bb6b75 | c6f91d4718999089686f3034a75a11b312fa1458 | refs/heads/master | 2022-08-28T11:34:02.261386 | 2022-07-08T22:45:24 | 2022-07-08T22:45:24 | 115,220,665 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,134 | java | import grid.graph.GridGraph;
import grid.logic.LogicStatus;
import grid.puzzlebits.Direction;
import java.awt.*;
import java.util.Set;
// this class explores the behavior of the regions of the grid that we
// know are connected by paths.
public class MinimumLogicStep extends CommonLogicStep {
public MinimumLogicS... | [
"chiendarrendor@yahoo.com"
] | chiendarrendor@yahoo.com |
5269df4c52f5de01cea33e811d5f30a19f886f98 | baa08c46ff681b957217b0f8c06434986fbeb8e9 | /Java OOP/b_Inheritance/person/Person.java | fbea39d2a9f35c1251c031037a8d3128a4ce35ea | [] | no_license | anayankova/SoftUni-Software-Engineering | c4b06034995e4da28f2ce7550b5d9a87fd0c59b6 | 377063b55a5a044f9f4954108366fa3989abdd2d | refs/heads/master | 2022-06-24T17:58:58.121622 | 2020-04-05T09:30:38 | 2020-04-05T09:30:38 | 186,245,186 | 1 | 0 | null | 2022-06-21T03:04:59 | 2019-05-12T11:16:44 | Java | UTF-8 | Java | false | false | 321 | java | package b_Inheritance.person;
public class Person {
private String name;
private int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() {
return this.name;
}
public int getAge() {
return this.age;
}
}... | [
"anayankova91@gmail.com"
] | anayankova91@gmail.com |
942069aef56bd7fcdf586b8f5fd58601f8f39843 | 1ecae42ff90c437ce67b217b66856fee393e013f | /.JETEmitters/src/org/talend/designer/codegen/translators/business/marketo/TMarketoListOperationBeginJava.java | 9ae02b2e3eaca6ac82b573a01bce53f27e4cbf8b | [] | no_license | dariofabbri/etl | e66233c970ab95a191816afe8c2ef64a8819562a | cb700ac6375ad57e5b78b8ab82958e4a3f9a09a7 | refs/heads/master | 2021-01-19T07:41:08.260696 | 2013-02-09T11:57:12 | 2013-02-09T11:57:12 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,651 | java | package org.talend.designer.codegen.translators.business.marketo;
import org.talend.core.model.process.INode;
import org.talend.core.model.process.ElementParameterParser;
import org.talend.core.model.metadata.IMetadataTable;
import org.talend.core.model.process.IConnection;
import org.talend.core.model.process.I... | [
"danilo.brunamonti@gmail.com"
] | danilo.brunamonti@gmail.com |
479b887b3642e7bf2c94fae5819bf3482f8217c3 | 96263713168150f58c3fe5b508570cd05ce4a70d | /src/com/cook/www/demo2.java | a7ff72ebfc9c513c8ec948c85887ed0a59b1a50c | [] | no_license | juejueisgood/test | 40018f34764c085e3d3c8a3d854a9f7732227424 | cd7cb5f6f07f0eee1fb4fcfc32ba77eb1c6c31bc | refs/heads/master | 2021-01-21T23:20:16.735810 | 2017-06-24T04:25:54 | 2017-06-24T05:16:30 | 95,226,860 | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 1,308 | java | package com.cook.www;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Date;
import javax.servlet.ServletException;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
... | [
"juejueisgood@163.com"
] | juejueisgood@163.com |
2db4df00a76c59e5060c4123f5429927bac962db | 26ea60ddcf4f3f682025ba5a1120c0cc269c8d6e | /app/src/main/java/my/zzm/minan/model/Call.java | df3e204a895abf39e538a9e0a0833a63d29b4e0d | [] | no_license | alexandaking/MinAn | dec8f146b044563b0f0cd61da4ad475a7f1bb8ac | 4ecdb6bd4de633d90cd9eeb5704a881810f97666 | refs/heads/master | 2021-09-03T01:31:59.744829 | 2018-01-04T15:51:35 | 2018-01-04T15:51:35 | 116,269,564 | 3 | 1 | null | null | null | null | UTF-8 | Java | false | false | 413 | java | package my.zzm.minan.model;
/**
* Created by AlexanDaking on 17/7/3.
*/
public class Call {
public String title;
public String desc;
public String imgurl;
public String href;
public String mask;
@Override
public String toString() {
return "Call [title=" + title + ", desc=" + des... | [
"wangjian0716@hotmail.com"
] | wangjian0716@hotmail.com |
4e93313644d4c687fc1f4b9b55d3ff79b0813d0f | 8e77ed1d11d3ee6486976bdc6b7c5c1043c4d6df | /src/cn/com/oims/service/IEyelxdzxService.java | d92e5498c5955fc196783f3e960f3b7dc5234a20 | [] | no_license | 498473645/OIMS | e553f266629b7baf0e0dc31bd50edcd534c83c21 | 4477b5882e6478c3cac44c83a2d2539eb98e887a | refs/heads/main | 2023-08-07T04:41:21.592563 | 2021-09-23T03:10:21 | 2021-09-23T03:10:21 | 409,429,603 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 409 | java | package cn.com.oims.service;
import cn.com.oims.dao.pojo.Eyelxdzx;
import java.io.Serializable;
import org.springframework.stereotype.Service;
@Service
public interface IEyelxdzxService {
void updateEyelxdzx(Eyelxdzx paramEyelxdzx);
Serializable saveEyelxdzx(Eyelxdzx paramEyelxdzx);
Eyelxdzx selectEyelxdz... | [
"545455716@qq.com"
] | 545455716@qq.com |
9304bc36c140c0dd7e21488e746d1f0723110990 | 0b627ad6d2575c6d54ff4cda086dd8e01aa700fc | /encryption-decription/src/main/java/com/verinite/filegenerator/controller/GenerateTokenController.java | 774c990dca540aeb40b78ea90bdfaf59d5fbf7be | [] | no_license | Indrajeetsingh-Verinite/HistoryEncryptionTokenModule | 8b6345bdde07896e7c86cfcc383387db73d34bfb | e3be412e155145abd3bbd769bd8cb99ebd055843 | refs/heads/master | 2023-04-05T08:28:18.371522 | 2021-04-09T06:18:36 | 2021-04-09T06:18:36 | 356,155,665 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,209 | java | package com.verinite.filegenerator.controller;
import java.security.NoSuchAlgorithmException;
import java.security.spec.InvalidKeySpecException;
import com.nimbusds.jose.JOSEException;
import com.verinite.filegenerator.authentication.ConvertKeys;
import com.verinite.filegenerator.authentication.GenerateToken;
import... | [
"indrajeet@VERINITE1.local"
] | indrajeet@VERINITE1.local |
19af8085180925ee8cbb7b0bb928451f21b98a65 | 60466de9cedb17661d691069b1486d11f139b8dd | /KevinA-Assignments/03-java-spring/01-spring-fundamentals/03-hello-human/src/test/java/com/kevin/hello/ApplicationTests.java | 91c287a165e5a0f701f16649db816c0efd2f5245 | [] | no_license | Kevin-Anderson13/java-bootcamp | babc91cafbb2b2237d416ce039708758371866f6 | 31676760b0459d488852fc7b24ff923540fddc38 | refs/heads/main | 2023-06-27T13:23:34.875456 | 2021-08-03T07:09:31 | 2021-08-03T07:09:31 | 392,224,185 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 201 | java | package com.kevin.hello;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class ApplicationTests {
@Test
void contextLoads() {
}
}
| [
"kevinand1113@gmail.com"
] | kevinand1113@gmail.com |
2a7b1e9266892bdc9ceaa4fb2279433667e3c11a | 986905768e2b11f431fdc895488a8e27b098d14d | /src/main/java/com/defysope/controller/DashboardController.java | 6bd74be5876cc1b867ab6149ecd45f18ee93bf72 | [] | no_license | bangalore-geek/myprj | 2e2b80329535f5df680fdeaabb6376effa2f3f6c | 5f99150e3f016cc2198af62e783fda34d994f1c1 | refs/heads/master | 2021-01-17T05:25:28.783390 | 2015-09-20T08:30:52 | 2015-09-20T08:30:52 | 33,488,696 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,552 | java | package com.defysope.controller;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import net.sf.json.JSONObject;
import org.apache.commons.lang.BooleanUtils;
import org.slf4j.LoggerFactory;
import org.... | [
"rathordeepak16@gmail.com"
] | rathordeepak16@gmail.com |
5a92423acf846f09dedbed3022d012f6c9c918d5 | fb12d15af0214af5532d58faba92480522569aac | /src/main/java/com/redhat/training/ad364/model/Student.java | 386383d2be2ba9fdc9b75e519773ab2b4283f8ae | [] | no_license | finmahon/rules364-5.4-opt | f23d26489e2a13462eb0feec7172cd047f1b4bf4 | 74461071f53b5dd1e27bbaefcdc8b4554d2301e6 | refs/heads/master | 2023-07-03T20:45:46.520982 | 2021-08-10T23:12:20 | 2021-08-10T23:12:20 | 394,797,982 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,525 | java | package com.redhat.training.ad364.model;
import java.util.List;
import java.util.Objects;
public class Student {
private String name;
private Boolean eligibleForFinanceAid;
private Boolean appliedForFinanceAid;
private List<Grade> grades;
public Student() {}
public Student(String name, List<... | [
"student@workstation.lab.example.com"
] | student@workstation.lab.example.com |
0fdad9f539c80a680a5f13b33b4fd5e3fa510abc | bf8d8b0032982cbac8879691697c5361cf6f2e9a | /src/ZuoShen/Basic_class8/Code_04_Print_All_Permutations.java | 8e1b6e447603f3ba0b669656b67d36fc8c589f56 | [] | no_license | ddisacoder/ForBishi | 41b2819708c798f61c41ef9629582053eb3c1c80 | 63d8770deb754ee7585b64503d98c4418159c6d3 | refs/heads/master | 2020-07-15T19:53:20.015429 | 2019-10-06T11:17:56 | 2019-10-06T11:17:56 | 205,637,373 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,387 | java | package ZuoShen.Basic_class8;
import java.util.HashSet;
public class Code_04_Print_All_Permutations {
public static void printAllPermutations1(String str) {
char[] chs = str.toCharArray();
process1(chs, 0);
}
public static void process1(char[] chs, int i) {
if (i == chs.length) {
System.out.println(Stri... | [
"861573320@qq.com"
] | 861573320@qq.com |
b24c20dc5776b78b8f7461f451481d33f6833658 | ce44e9fec5f4ee3eff79c3e6fbb0064fbb94753d | /main/geo/test/boofcv/alg/distort/TestAddRadialNtoN_F64.java | 39b4e086370c5266320b00b67859c810e323e159 | [
"Apache-2.0"
] | permissive | wsjhnsn/BoofCV | 74fc0687e29c45df1d2fc125b28d777cd91a8158 | bdae47003090c03386b6b23e2a884bceba242241 | refs/heads/master | 2020-12-24T12:34:02.996379 | 2014-06-27T21:15:21 | 2014-06-27T21:15:21 | 21,334,100 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,544 | java | /*
* Copyright (c) 2011-2013, Peter Abeles. All Rights Reserved.
*
* This file is part of BoofCV (http://boofcv.org).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www... | [
"peter.abeles@gmail.com"
] | peter.abeles@gmail.com |
f90eefbda453e7cc79960eb136e664559bb91bf1 | 79be286d62804776986eb65c541e08618e41abe9 | /app/src/main/java/com/mirkowu/baselibrarysample/api/TestService.java | 7f4faa4517c07280ed400b76d3b883c8c019709d | [] | no_license | phpzysw/BaseLibrary | 6f6772da5d5222f32a7ed147abb9538ce8d295ab | a64f614d6867ff5a6081fda26c823b071ded3a84 | refs/heads/master | 2020-04-28T04:03:39.201713 | 2019-03-08T04:23:00 | 2019-03-08T04:23:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 654 | java | package com.mirkowu.baselibrarysample.api;
import com.mirkowu.baselibrarysample.bean.GoodsBean;
import com.softgarden.baselibrary.network.BaseBean;
import java.util.List;
import io.reactivex.Observable;
import retrofit2.http.POST;
import retrofit2.http.Url;
public interface TestService {
/**
* 测试接口
... | [
"709651717@qq.com"
] | 709651717@qq.com |
ce1f61f70d557b217c43cf9944a2cce7226ffd44 | ceef55f93a25ea3a5a9be2132e11508d035f7132 | /java-qi4j/marc-grue/dcisample_b/src/test/java/com/marcgrue/dcisample_b/context/test/booking/BookNewCargoTest.java | de36bc59fdb05f68aec02bf9b3696427c5478c6a | [
"Apache-2.0"
] | permissive | zeng910910903/dci-sample | 72032b40a243290228ea43b7d8c13c5f31d5118e | 780a8bf0f969163941e5e48d2a200314e883bd42 | refs/heads/master | 2020-05-17T23:56:30.912327 | 2011-11-27T16:51:31 | 2011-11-27T16:51:31 | null | 0 | 0 | null | null | null | null | WINDOWS-1250 | Java | false | false | 6,119 | java | package com.marcgrue.dcisample_b.context.test.booking;
import com.marcgrue.dcisample_b.bootstrap.test.TestApplication;
import com.marcgrue.dcisample_b.context.interaction.booking.BookNewCargo;
import com.marcgrue.dcisample_b.data.entity.CargoEntity;
import com.marcgrue.dcisample_b.data.factory.exception.CannotCreateCa... | [
"marc@grue.info"
] | marc@grue.info |
1ddc505d60930171608f390a8f9f0ad62b173d82 | 0c66d0562f1aa58af7f6379ff031220234a4816a | /src/Samepackage/Same.java | 7dfb3abae1afef40f46a8d52d87f0bf9cb06a5df | [] | no_license | parkchangju12/java_work | 2ec23634b61b26d1a9c06573f8605cdfaf46e878 | 95a8f496575b359c657a97e38737c0f42337bc01 | refs/heads/master | 2023-06-07T11:19:30.607942 | 2021-07-06T02:22:34 | 2021-07-06T02:22:34 | 363,104,738 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 291 | java | package Samepackage;
public class Same {
private void _private() {
System.out.println("private");
}
void _default() {
System.out.println("default");
}
protected void _protected() {
System.out.println("protected");
}
public void _public() {
System.out.println("public");
}
}
| [
"jusu0369@naver.com"
] | jusu0369@naver.com |
a02b5b156042899e65b5708527795b62b010b313 | 366a05b3253bba82fb5b783512022ccc17cf7683 | /RightBigSpikedTreeMiddleRight.java | 605af28a23ede079d7558b10a97cfdec552c0d83 | [] | no_license | Pasterian/Dead-Pixels | 13367884a5b773746bb9fac0a28ebec70ca1f319 | dbc8a340038a5c9d2e2cd774b27cd42a53d3358a | refs/heads/master | 2023-03-09T22:18:53.867394 | 2021-02-24T01:11:43 | 2021-02-24T01:11:43 | 341,737,440 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 548 | java | import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
/**
* Write a description of class RightBigSpikedTreeMiddleRight here.
*
* @author (your name)
* @version (a version number or a date)
*/
public class RightBigSpikedTreeMiddleRight extends Tile
{
/**
* Act - do whatever the... | [
"lw518@kent.ac.uk"
] | lw518@kent.ac.uk |
8f72eb54963bbc823fc70e6b37786d9ca0e3ce78 | 541d32ad782cb551c7c4aa689008023fc4b9cc7f | /app/src/main/java/my/edu/tarc/madassignment/QRCodeActivity.java | 5c5e78548863443465790cc61c9f4821250665af | [] | no_license | LeeMunKit/MADassignment | fd2e5878f554bf1dad89915514c19fb00a4b080e | dae1c47d071bd17b2d2a12cb5b28704ef398112e | refs/heads/master | 2021-05-05T22:16:17.232631 | 2018-01-05T07:11:13 | 2018-01-05T07:11:13 | 116,116,966 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 652 | java | package my.edu.tarc.madassignment;
/**
* Created by ASUS on 19/11/2017.
*/
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ListView;
public class ... | [
"jackboy5177@gmail.com"
] | jackboy5177@gmail.com |
027c01eebd67fccc618480180513b3630f97fbbd | 5493ddc87a45e52cf5c290f7acfc0ce72439ec15 | /app/src/main/java/com/mondyxue/xrouter/demo/interceptor/LoginInterceptor.java | f59111e70495bb9c950b2b956570ef6977109045 | [] | no_license | mapleskip/XRouter | aa32d5dbc0bcf466bce1e79a9e44cf7e7c174ce5 | 912d80cb9e1b123de58936f925393dbe846266f9 | refs/heads/master | 2021-01-01T18:36:23.328860 | 2017-07-25T11:39:05 | 2017-07-25T11:39:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,925 | java | package com.mondyxue.xrouter.demo.interceptor;
import android.support.annotation.NonNull;
import com.alibaba.android.arouter.facade.Postcard;
import com.alibaba.android.arouter.facade.annotation.Interceptor;
import com.alibaba.android.arouter.facade.callback.InterceptorCallback;
import com.alibaba.android.arouter.fac... | [
"mondyxue@gmail.com"
] | mondyxue@gmail.com |
bf1926eb163f2403c967feaa339f0f77fab281b4 | 1374237fa0c18f6896c81fb331bcc96a558c37f4 | /java/com/winnertel/ems/epon/iad/bbs4000/gui/r400/DeviceBaseQosMapTablePanel.java | d8f5c3c44c7952efb86a8d9606d5bf8d693abcc2 | [] | no_license | fangniude/lct | 0ae5bc550820676f05d03f19f7570dc2f442313e | adb490fb8d0c379a8b991c1a22684e910b950796 | refs/heads/master | 2020-12-02T16:37:32.690589 | 2017-12-25T01:56:32 | 2017-12-25T01:56:32 | 96,560,039 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,070 | java | /**
* Created by Zhou Chao, 2010/5/26
*/
package com.winnertel.ems.epon.iad.bbs4000.gui.r400;
import com.winnertel.ems.epon.iad.bbs4000.mib.r400.DeviceBaseQosMapTable;
import com.winnertel.em.framework.IApplication;
import com.winnertel.em.framework.gui.swing.UPanel;
import com.winnertel.em.standard.util.gui.layout... | [
"fangniude@gmail.com"
] | fangniude@gmail.com |
144795189b00ec2e9e3a3d486dbf2a6dbb53b41b | 9b15ca35add3763427813837008e5a259403211b | /android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java | 79a7be2f4165dd3d8b74a7cc6ee53e4857f0c602 | [] | no_license | Milimeter/aewebshop_employee | 2b554d3e13cb0d65fc18fddc29585f46b6202321 | 8781dbb1762039b10093b515034f73ae572d868e | refs/heads/main | 2023-06-07T14:18:23.199477 | 2021-07-02T14:38:39 | 2021-07-02T14:38:39 | 381,045,293 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,224 | java | package io.flutter.plugins;
import androidx.annotation.Keep;
import androidx.annotation.NonNull;
import io.flutter.Log;
import io.flutter.embedding.engine.FlutterEngine;
/**
* Generated file. Do not edit.
* This file is generated by the Flutter tool based on the
* plugins that support the Android platform.
*/
@K... | [
"razaqolad300@gmail.com"
] | razaqolad300@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.