blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 410 | content_id stringlengths 40 40 | detected_licenses listlengths 0 51 | license_type stringclasses 2
values | repo_name stringlengths 5 132 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 80 | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 131
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 9.45M | extension stringclasses 32
values | content stringlengths 3 9.45M | authors listlengths 1 1 | author_id stringlengths 0 313 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ea21a5f09c9e5f391deec34dd1f8e6738f5c3bad | 7b5d325e2d29bb0c2aa1fc714828705236fa1a06 | /src/_822/IsUgly.java | e9edf5fd673679d1c1c981d83a80fb3df629ac57 | [] | no_license | qued3er/leetcode | eb3ef0aa10f2ebf49aa66187260f1b9f78c73a74 | 2135a26e7eab269d5fdf333932ca6a9846471f3c | refs/heads/master | 2023-01-02T15:28:37.888480 | 2020-11-02T08:34:38 | 2020-11-02T08:34:38 | 290,907,537 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 720 | java | package _822;
/**
* @author li
* @Title:
* @Description:
* @date 2020/8/2217:07
*/
public class IsUgly {
public boolean isUgly(int num) {
//如何判断一个数能够被2/3整除看他对该数取余是否为0
while((num&0x00000001)==0){
//为什么除不行
// num=num/2;
num=num>>1;
}
while(num%3... | [
"51198987+qued3er@users.noreply.github.com"
] | 51198987+qued3er@users.noreply.github.com |
bdbf961095920b0b93103f1f68819baf9832d8cb | bc8e436ad945cc075b9d47869e82529d972969b6 | /ocsp-qa/src/main/java/org/xipki/ocsp/qa/benchmark/HttpClient.java | 8f5db7f3ea60e47d17737be7a7d19ed078e0037d | [
"Apache-2.0"
] | permissive | etsangsplk/xipki | 283ac407756c2856a91e01787db271f8a92bb4b0 | 230365bf7e5686b83a186e2bebcef49c08b55887 | refs/heads/master | 2020-03-18T13:16:57.382344 | 2018-05-24T05:19:10 | 2018-05-24T05:19:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,881 | java | /*
*
* Copyright (c) 2013 - 2018 Lijun Liao
*
* 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 a... | [
"lijun.liao@gmail.com"
] | lijun.liao@gmail.com |
5f232312f771a016b2d1577e69fabd001e892abf | 792361f175acea714ba5b10c58e679e27ea59d9b | /Lab_2/CrypArgumentException.java | 51d45c4af35a8c0aeacf5cf732ecd02a3be00f16 | [] | no_license | NigelNelson/Software_Component_Design | ceb9ef0106e034ac67dddc9d31d126d6d4d4ca46 | c972807df66ed34c35b792c30c0e8853855b3cb9 | refs/heads/main | 2023-03-14T19:03:07.558635 | 2021-03-08T23:41:34 | 2021-03-08T23:41:34 | 345,816,684 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 599 | java | package nelsonni;
/**
* This class represents an error that happens while running the CrypStick program.
*
* By using it, we are able to distinguish between errors that our code generates
* and general Java errors that we do not anticipate.
*/
public class CrypArgumentException extends IllegalArgumentExce... | [
"noreply@github.com"
] | NigelNelson.noreply@github.com |
abad9e86f152fa7682bc3f010bb893fa3bd5a095 | b6d520e087d98a3d667e126902add293adfb8431 | /src/二叉搜索树_BST/映射_map/printer/Strings.java | dbcf7d3ba9b40a87b7b01904cdf3d4dad5ec52a6 | [] | no_license | zyh2316549044/data_structure | 04821e88890c3a6b74aa13b65c14b73b3ff0689e | 50f4dc8c5a99e1844c7b4df9d5da3718b3623cf3 | refs/heads/master | 2022-06-14T06:17:47.778717 | 2020-05-07T05:25:11 | 2020-05-07T05:25:11 | 261,954,212 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 439 | java | package 映射_map.printer;
public class Strings {
public static String repeat(String string, int count) {
if (string == null) return null;
StringBuilder builder = new StringBuilder();
while (count-- > 0) {
builder.append(string);
}
return builder.toString();
}
public static String blank(int length) {... | [
"zhangyihan@163.cn"
] | zhangyihan@163.cn |
5d45704e71e60eb199835cd6d9ddc9c243e112a2 | f426273c8c6546bc90b699bd3644c646721704ab | /src/main/java/com/example/course/model/converters/BankParseIn.java | b01a34ca660e349e38b24a007e6d8cf93dd70844 | [] | no_license | argosumy/RestServise | 9a4eb8625b7253f5dfaf87105eefeae47a7fe21c | 74b722d94abfb00dac4a07f5a5a4d0ec5d1cf8d1 | refs/heads/master | 2021-03-16T16:10:17.242285 | 2020-12-28T12:00:50 | 2020-12-28T12:00:50 | 246,916,695 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 568 | java | package com.example.course.model.converters;
import com.example.course.model.exchange.Exchange;
import org.json.JSONException;
import org.xml.sax.SAXException;
import javax.xml.parsers.ParserConfigurationException;
import java.io.IOException;
public interface BankParseIn {
public Exchange parserXmlDom(String xml... | [
"argosumy@gmail.com"
] | argosumy@gmail.com |
10cb0ce0e74c8cf72a17f9e70ae870ccb5f55098 | 77e2db8319e06e09e3e42ed73a48c21c9858d2ef | /studios/icvfx/pipeline-local/src/com/intelligentcreatures/pipeline/plugin/WtmCollection/v1_0_0/stages/NukeReadStage.java | 2ef905dc309f48226403a8fbf43b22196323bc96 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | JimCallahan/Pipeline | 8e47b6124d322bb063e54d3a99b3ab273e8f825e | 948ea80b84e13de69f049210b63e1d58f7a8f9de | refs/heads/master | 2021-01-10T18:37:22.859871 | 2015-10-26T21:05:21 | 2015-10-26T21:05:21 | 21,285,228 | 10 | 2 | null | null | null | null | UTF-8 | Java | false | false | 4,751 | java | // $Id: NukeReadStage.java,v 1.5 2008/03/23 05:09:58 jim Exp $
package com.intelligentcreatures.pipeline.plugin.WtmCollection.v1_0_0.stages;
import com.intelligentcreatures.pipeline.plugin.WtmCollection.v1_0_0.*;
import us.temerity.pipeline.*;
import us.temerity.pipeline.builder.*;
import us.temerity.pipeline.build... | [
"jim@temerity.us"
] | jim@temerity.us |
ddd651670fc5741760befe71fc01ff1ef0b99862 | a12962dda3ab01d5bb40472c74a6f132b96cdc41 | /smarthome_wl_simplify--/src/main/java/com/fbee/smarthome_wl/adapter/EquesArlarmAdapter.java | 675396cb3ed0377c93b77ef988b1159ce3ac1b00 | [] | no_license | sengeiou/smarthome_wl_master1 | bfc6c0447e252074f52eec71f09711f1258e8d5f | f69359df5e38d9283741621f82f5f17ae0b58c86 | refs/heads/master | 2021-10-10T02:13:34.351874 | 2019-01-06T12:51:56 | 2019-01-06T12:51:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,105 | java | package com.fbee.smarthome_wl.adapter;
import android.content.Context;
import android.net.Uri;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.CheckBox;
import android.widget.ImageView;
import android.widget.TextView;... | [
"418265421@qq.com"
] | 418265421@qq.com |
f6ff641050cfb28147b60edab80807450fe0e4db | aa63e6cc382dcd1603f4d4950c5da06f8c8815a4 | /java7-fs-dropbox/src/main/java/com/github/fge/fs/dropbox/attr/DropboxBasicFileAttributes.java | 7caa16f322b9b6522f4c99b84e83d43cf5f29d4b | [] | no_license | fge/java7-filesystems | d205fd20a21a917bf38ab28a862fd914700a6f6c | f54355190e5e1f565b3187eb59087d51c6346fbc | refs/heads/master | 2023-03-28T19:11:08.489416 | 2015-12-19T17:25:26 | 2015-12-19T17:25:26 | 47,763,462 | 7 | 2 | null | null | null | null | UTF-8 | Java | false | false | 1,092 | java | package com.github.fge.fs.dropbox.attr;
import com.dropbox.core.v2.DbxFiles;
import com.github.fge.fs.api.attr.attributes.AbstractBasicFileAttributes;
import java.nio.file.attribute.FileTime;
import java.util.Date;
public final class DropboxBasicFileAttributes
extends AbstractBasicFileAttributes
{
private fi... | [
"fgaliegue@gmail.com"
] | fgaliegue@gmail.com |
ac8c0b784d3b0a30575f5cfb05a65181898b7c98 | 5b18c2aa61fd21f819520f1b614425fd6bc73c71 | /src/main/java/com/sinosoft/claimzy/util/BLGetMaxNo.java | 05f2ea964d77eab86380297b32d55f580e21706f | [] | no_license | Akira-09/claim | 471cc215fa77212099ca385e7628f3d69f83d6d8 | 6dd8a4d4eedb47098c09c2bf3f82502aa62220ad | refs/heads/master | 2022-01-07T13:08:27.760474 | 2019-03-24T23:50:09 | 2019-03-24T23:50:09 | null | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 1,821 | java | package com.sinosoft.claimzy.util;
import java.text.DecimalFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import com.sinosoft.utility.error.UserException;
/**
* 获得上传批次类
* @author yewenxiang
*
*/
public class BLGetMaxNo {
public String getMaxNo(String groupNo) throws UserException, Exceptio... | [
"26166405+vincentdk77@users.noreply.github.com"
] | 26166405+vincentdk77@users.noreply.github.com |
00d3cf2f8c9b134e114df07c7ea31922cf628123 | 8e44449fe51ea8afc88a6025c0199be4671a9bd1 | /smartcontract/billing-contract/src/main/java/ru/leadersofdigitalsvo/billingcontract/BillContext.java | 3ef086cdb4c9fd47e953eace385d208277987b00 | [] | no_license | bukhmastov/leadersofdigitalsvo | 7756f5f94b6b7d03efdad4106dbe76789c7918f2 | 3bac8928418f13852589da9261fbf7fbaf176031 | refs/heads/master | 2023-07-22T05:20:15.530476 | 2021-09-05T02:33:38 | 2021-09-05T02:33:38 | 402,870,453 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 355 | java | package ru.leadersofdigitalsvo.billingcontract;
import org.hyperledger.fabric.contract.Context;
import org.hyperledger.fabric.shim.ChaincodeStub;
public class BillContext extends Context {
public BillContext(ChaincodeStub stub) {
super(stub);
this.billList = new BillList(this);
}
... | [
"bukhmastov-alex@ya.ru"
] | bukhmastov-alex@ya.ru |
fd1b52bedefac04e9ae6500a4d7238a03fde4f1c | bb6cf94ffcea85bfb06f639f2c424e4ab5a24445 | /BECE/rcm-rest_gf/src/main/java/com/yk/rcm/pre/service/impl/PreMeetingInfoService.java | b0969b1dfad3bff84b2a63d6e32658c0b5a8a6b5 | [] | no_license | wuguosong/riskcontrol | 4c0ef81763f45e87b1782e61ea45a13006ddde95 | d7a54a352f8aea0e00533d76954247a9143ae56d | refs/heads/master | 2022-12-18T03:12:52.449005 | 2020-03-10T15:38:39 | 2020-03-10T15:38:39 | 246,329,490 | 0 | 0 | null | 2022-12-16T05:02:28 | 2020-03-10T14:53:15 | JavaScript | UTF-8 | Java | false | false | 4,842 | java | package com.yk.rcm.pre.service.impl;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource;
import org.bson.Document;
import org.bson.types.ObjectId;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
impor... | [
"493473498@qq.com"
] | 493473498@qq.com |
cf2c0fc4121c4dbc55f813dc404ff45f87a050c5 | d287fd77e5c61d1305a8799998024152dc1646c1 | /src/OOP/Nested/Type/Easy/Question1/Application.java | 46d8e604a8aa650048cf1255d3ab1657ec7f0b15 | [] | no_license | Prilipko/quizzes | 2ae980c2b6fab7a6724e542174b1a0cf5bf0c49b | fc6e1a2353416afab9e2109f3beb9947561fa439 | refs/heads/master | 2016-08-12T14:33:55.675912 | 2015-12-17T20:58:15 | 2015-12-17T20:58:41 | 48,197,573 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 463 | java | package OOP.Nested.Type.Easy.Question1;
//В данном примере:
public class Application {
public void f() {
X x = new X();
}
public static class X {
}
}
//A. создается anonymous inner class
//B. создается not anonymous inner class
//C. создается anonymous static nested class
//>D. создается not... | [
"prilipko.alexander@gmail.com"
] | prilipko.alexander@gmail.com |
a6e34464e7325143e7f1accd5ed3d44921c0d54b | 20873bf3eec5b00f5bbe6756b7a4a1c993663588 | /app/src/main/java/com/android/solulabtest/utils/LocationAddress.java | e3250aea8ee26f53c26ed3e548c5be9398a207b7 | [] | no_license | fesu/SoluLabTest | 57382e33d19ca4d2d420c54c8f5d54e8cf7c65d0 | d0196abd5338a680427b224fa8051c8bb849f1cd | refs/heads/master | 2020-08-06T04:52:49.145446 | 2019-10-10T12:04:38 | 2019-10-10T12:04:38 | 212,841,788 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,013 | java | package com.android.solulabtest.utils;
import android.content.Context;
import android.location.Address;
import android.location.Geocoder;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.util.Log;
import java.io.IOException;
import java.util.List;
import java.util.Locale;... | [
"taifaisal57@gmail.com"
] | taifaisal57@gmail.com |
6aeda817a132f3effb2473fac14b8bf7e0177136 | b5f0af4f76c754aa5f4f4e24282ee30d9d667420 | /Test_list2/app/src/main/java/com/chadfunckes/test_list2/View_Adapters/MainExpandableListAdapter.java | 434e7681b13bcd927934611d426a5e7529892b36 | [] | no_license | ChadFunckes/MasterListAPP | 65739f83b6465aa76ea12e7daec6d7bea2e9ca95 | 396e45c6011a77f7c9dbf92b8211b2e784bd998b | refs/heads/master | 2020-12-11T05:45:14.302018 | 2016-06-23T01:24:24 | 2016-06-23T01:24:24 | 48,305,732 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,452 | java | package com.chadfunckes.test_list2.View_Adapters;
import java.util.HashMap;
import java.util.List;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.graphics.Paint;
import android.graphics.Typeface;
import android.util... | [
"chad.funckes@ucdenver.edu"
] | chad.funckes@ucdenver.edu |
284f91130270d16b284c33289bf0a9675236ce42 | 60a2be704f988c4d6005cbe5fd990dcd722546eb | /informatorio-parent/informatorio-persist/src/main/java/org.informatorio.site.persist/exceptions/NoStudentException.java | 2ee2a2f624d5681ab33cdc20812b976508b3c49b | [] | no_license | dariov21/informatorioVirtual | 53b7ff684740e0d3c887f1a53f9d4ad8e439148e | bc1cabcdbaf1def7bc4a923e7ab60be5e34f561a | refs/heads/master | 2021-01-23T16:41:23.663465 | 2013-01-14T00:12:31 | 2013-01-14T00:12:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 256 | java | package org.informatorio.site.persist.exceptions;
/**
* Created with IntelliJ IDEA.
* User: nico
* Date: 06/01/13
* Time: 12:38
* To change this template use File | Settings | File Templates.
*/
public class NoStudentException extends Exception{
}
| [
"nicolasroig88@hotmail.com"
] | nicolasroig88@hotmail.com |
a23029773b7bfa51c9e47264cac940d51143d95d | 35754739a031d157ed5bcb8074a66de0e44ba486 | /maven_rich/src/main/java/src/map/Hospital.java | 74605db925f240c53c3828903803206e5f0a1e85 | [] | no_license | almazhou/RichGameSourceCode | 902ba215e2f2eaf868de8bcb91ea41d71ec363be | bd357242648d591c7533db68b21c13717516768f | refs/heads/master | 2016-09-05T18:43:16.648151 | 2013-05-14T12:03:35 | 2013-05-14T12:03:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 413 | java | package src.map;
import src.player.Player;
public class Hospital extends LandForm {
Hospital(int index){
super("H",index);
}
@Override
public void PassByImpact(Player player) {
if(player.getTimeInHospital()>0) {
System.out.println(this.name+">玩家仍然在医院养病!还有"+player.getTimeIn... | [
"zx_new@126.com"
] | zx_new@126.com |
125068732c2a78d3d734ca72c11ae660fc25c831 | e437dbcd6430fbbae3efa57f94d9846eef664f26 | /src/main/java/Licht/Kronleuchter.java | 6e14e1bc006f2cce5acdd6111b70baafdffe44c0 | [] | no_license | slimouGit/TTD | 4afe2ef15e7352f13038cedac9b5e9969ae42cc0 | 9b8f63500847947271dfc2295f721537a90eba75 | refs/heads/master | 2022-04-12T21:03:08.596906 | 2020-02-23T11:28:57 | 2020-02-23T11:28:57 | 190,848,146 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 393 | java | package Licht;
public class Kronleuchter implements Licht{
private boolean an = false;
public boolean isAn() {
return false;
}
public void schalteAus() {
this.an = false;
System.out.println("Der Kronleuchter geht aus.");
}
public void schalteAn() {
this.an = true;
Sys... | [
"box@slimou.net"
] | box@slimou.net |
19f2fa7191fa390b314f38339d45ebbacd8b15a1 | ec286a5e1f4c330f30596753c45e4b8d4c111294 | /src/main/java/com/ppdai/riches/adminanalysis/service/sys/impl/UserServiceImpl.java | 0433d15e2dd1d118713582d142eb6908cdd3ee6a | [] | no_license | wu05281/admin-web | 733d83a78db04345b3aa522c87c0edfc4763e88d | 568c65fbedeb645ca14d986ef2e59a863065636f | refs/heads/master | 2021-01-01T03:36:32.791912 | 2016-05-25T07:31:52 | 2016-05-25T07:31:52 | 59,634,099 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,314 | java | package com.ppdai.riches.adminanalysis.service.sys.impl;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annota... | [
"wubo@ppdai.com"
] | wubo@ppdai.com |
c920c9f7deff1a34d083be9b3af508ac5c957eb9 | 228d1530c99c6275602fcc3ed7cb3f7f21a827c6 | /src/main/java/io/pacworx/atp/autotrade/domain/binance/BinanceTickerStatistics.java | aff4f47fc00b45f6d3099b4c342dc41208d0d945 | [] | no_license | packowitz/atp-api | 4cdd684ff79e2f5065cc8943cf59899430b9d18e | d935798119d4ab23adc7dc99d055fd8aaf0aaed1 | refs/heads/master | 2021-01-13T07:21:50.345172 | 2018-06-06T23:00:00 | 2018-06-06T23:00:00 | 71,520,660 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,169 | java | package io.pacworx.atp.autotrade.domain.binance;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* 24 hour price change statistics for a ticker.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class BinanceTickerStatistics implements Comparable<BinanceTickerStat... | [
"pavel.karlik@seznam.cz"
] | pavel.karlik@seznam.cz |
e488505abee1d0aab3743d9a3ff9c4d0314b1fe0 | bdc1587caa1bbb78635b0ecba2872b0bbaa4d122 | /service-consumer/src/test/java/com/dingjianjun/ServiceConsumerApplicationTests.java | fb14ba9496d8ca41a0b9220a043c61a0d0342976 | [] | no_license | jianjunding234/springcloud-tech-stack | 641c219e33005ba4d5d9bbcf505748b6aa008faa | e9b38c22924144af6b2e9d2a21af61aee18654c2 | refs/heads/master | 2023-05-25T08:11:43.834562 | 2020-05-28T01:50:15 | 2020-05-28T01:50:15 | 254,527,511 | 0 | 0 | null | 2021-06-04T02:39:37 | 2020-04-10T02:39:32 | Java | UTF-8 | Java | false | false | 225 | java | package com.dingjianjun;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class ServiceConsumerApplicationTests {
@Test
void contextLoads() {
}
}
| [
"1040494502@qq.com"
] | 1040494502@qq.com |
9e5695eeccf619eca1f4d666b3587a844879de2c | 67d8a47036fb3e7a788dab265f1e63f6ec453ba3 | /src/main/java/botmanager/bots/suggestionbox/commands/ReactionManagerCommand.java | 99718602ed4f051ff4f9ff07a106e28e87b622c0 | [] | no_license | phammalex/BotManager | d4793b5897c56aab4a1942ee28f8791505d5e61e | ad6c17b3d13b46205b770d9bfd47d85281766308 | refs/heads/master | 2022-12-25T00:28:42.912926 | 2020-10-11T17:31:32 | 2020-10-11T17:31:32 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,897 | java | package botmanager.bots.suggestionbox.commands;
import botmanager.bots.suggestionbox.SuggestionBox;
import botmanager.bots.suggestionbox.generic.SuggestionBoxCommandBase;
import net.dv8tion.jda.api.entities.Message;
import net.dv8tion.jda.api.events.Event;
import net.dv8tion.jda.api.events.message.guild.react.GuildMes... | [
"="
] | = |
82c89a7134a47aef7628055ac795c039870c13ef | 9b9115a8885fada6db04b66c0d4f8223bc04e39c | /src/main/java/com/hugomage/aquafina/entity/ManOWarEntity.java | 48bd82842633f8b1f16cd2969f685ec66b48ceef | [] | no_license | HugoMage/Aquafina | 12ef2baaeb9f8305d5606c5be66f0cbb1d887595 | 01d482a6d719663406e3ee6ff92fd5ff0056c3e9 | refs/heads/main | 2023-09-03T12:36:04.044241 | 2021-11-06T14:15:18 | 2021-11-06T14:15:18 | 411,448,409 | 1 | 0 | null | 2021-10-15T00:03:59 | 2021-09-28T21:51:39 | Java | UTF-8 | Java | false | false | 6,576 | java | package com.hugomage.aquafina.entity;
import com.hugomage.aquafina.registry.RegistryHandler;
import net.minecraft.entity.EntityType;
import net.minecraft.entity.ILivingEntityData;
import net.minecraft.entity.MobEntity;
import net.minecraft.entity.SpawnReason;
import net.minecraft.entity.ai.attributes.AttributeModifier... | [
"cody.koelliker@outlook.com"
] | cody.koelliker@outlook.com |
5aa5a900552789db4cff79888b98d0009e157fff | ddfa7b37825c51930866745ff9f63e2ec45ed45a | /src/date.java | 53fb55968be598592659f2f5073b7a5a0006f3e3 | [] | no_license | rajdeepd192/Ticket_Booking_v2.0 | 8af3fd16487b2df4ad48bf394164c09ccbb17557 | 4f1fa8f6cda5d539090b3118de99ffcf8d3f3aad | refs/heads/master | 2023-01-10T14:00:04.762225 | 2020-11-08T11:39:22 | 2020-11-08T11:39:22 | 311,049,011 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,332 | java | import java.util.Calendar;
import java.util.Date;
import java.io.*;
public class date
{
int yy,mm,dd;
boolean f;
public void displ()throws IOException
{
Calendar c=Calendar.getInstance();
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
for(;;)
{
... | [
"rajdeepd192@gmail.com"
] | rajdeepd192@gmail.com |
8bf3a8a5cc022cfff85ef49badf45dcd10bb2dc6 | 1fd854156079cdb1cb5b7b69708ecd9045691a4e | /app/src/main/java/pl/eduweb/podcastplayer/UserStorage.java | 3655d73bedc2b035535f63825bec1d59a89a8bf7 | [
"Apache-2.0"
] | permissive | smdremedy/PodcastPlayer | 426aad5b2ad2b989fb0956592666649b32ba9a97 | 5147b39fdfcf74d457b569ba51d8dbcac95915c6 | refs/heads/master | 2020-07-02T08:10:26.908668 | 2016-08-30T21:53:46 | 2016-08-30T21:53:46 | 66,980,536 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,867 | java | package pl.eduweb.podcastplayer;
import android.content.SharedPreferences;
import pl.eduweb.podcastplayer.api.UserResponse;
/**
* Created by Autor on 2016-07-06.
*/
public class UserStorage {
public static final String SESSION_TOKEN = "sessionToken";
public static final String USERNAME = "username";
p... | [
"sylwek.madej@gmail.com"
] | sylwek.madej@gmail.com |
0fdf88498d96ef3469167ca614ad3166b0e95c5e | d9b2af84bce701e122641fe57636c39ad6b95ab9 | /src/impl/Factory.java | 0a284cb5bc4b118d8be51d777be4337b010469df | [] | no_license | sg279/W03PracticalExtension | 77feceea541d013641a7f6dd453e8fe2994a5a1d | ce7e12b7be2fa3f8f1fb6abb6f99b683f931321a | refs/heads/master | 2020-03-30T06:53:53.161291 | 2018-10-02T09:03:16 | 2018-10-02T09:03:16 | 150,898,011 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,303 | java | package impl;
import interfaces.*;
/**
* This class implements a singleton factory.
*
*/
public final class Factory implements IFactory {
private static IFactory factoryInstance = null;
private Factory() {
}
/**
* Method which returns an instance of the singleton Factory class.
* @re... | [
"54mgold@gmail.com"
] | 54mgold@gmail.com |
ec60880185c77d76e312dc8bf969c54bb385da8b | 005553bcc8991ccf055f15dcbee3c80926613b7f | /generated/com/guidewire/_generated/typekey/ValidationLevelInternalAccess.java | 8c33e5f5d2fa208db880ad482ee4be081497edad | [] | no_license | azanaera/toggle-isbtf | 5f14209cd87b98c123fad9af060efbbee1640043 | faf991ec3db2fd1d126bc9b6be1422b819f6cdc8 | refs/heads/master | 2023-01-06T22:20:03.493096 | 2020-11-16T07:04:56 | 2020-11-16T07:04:56 | 313,212,938 | 0 | 0 | null | 2020-11-16T08:48:41 | 2020-11-16T06:42:23 | null | UTF-8 | Java | false | false | 716 | java | package com.guidewire._generated.typekey;
@javax.annotation.processing.Generated(value = "com.guidewire.pl.metadata.codegen.Codegen", comments = "ValidationLevel.eti;ValidationLevel.eix;ValidationLevel.etx")
@java.lang.SuppressWarnings(value = {"deprecation", "unchecked"})
public class ValidationLevelInternalAccess {
... | [
"azanaera691@gmail.com"
] | azanaera691@gmail.com |
d79cd640c370e45547675bb45cee8d89184e0b5f | 609f726c4360957d1332b38896cf3fab8c1ba5de | /oxUtil/src/main/java/org/gluu/util/Triple.java | 9238c314999ebf0a5190a43825323fe661bd9277 | [
"MIT"
] | permissive | GluuFederation/oxCore | f2a3749710a61c0471c9347e04d85121deb9537e | 918ea9cbf7ad7d4a4a9d88108ef0c2f36cbcf733 | refs/heads/master | 2023-08-08T00:36:31.395698 | 2023-07-17T19:58:42 | 2023-07-17T19:58:42 | 18,150,075 | 15 | 16 | MIT | 2023-07-18T18:22:14 | 2014-03-26T19:00:16 | Java | UTF-8 | Java | false | false | 2,116 | java | /*
* oxCore is available under the MIT License (2008). See http://opensource.org/licenses/MIT for full text.
*
* Copyright (c) 2014, Gluu
*/
package org.gluu.util;
/**
* @author Yuriy Zabrovarnyy
* @version 0.9, 26/11/2012
*/
public class Triple<A, B, C> {
private A first;
private B second;
priva... | [
"Yuriy.Movchan@gmail.com"
] | Yuriy.Movchan@gmail.com |
1bb0db4916da397aac9da1b8dfaa51fa2a54d624 | 8adc4e0536ebf07054ba0acdbf0b2c2b987c267a | /xmy/xmy-user-service/src/main/java/com/zfj/xmy/user/service/wap/impl/WapShoppingCardServiceImpl.java | ca064a127df04c4bc3c2ce2a9cd2652dafbcce90 | [] | no_license | haifeiforwork/xmy | f53c9e5f8d345326e69780c9ae6d7cf44e951016 | abcf424be427168f9a9dac12a04f5a46224211ab | refs/heads/master | 2020-05-03T02:05:40.499935 | 2018-03-06T09:21:15 | 2018-03-06T09:21:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,032 | java | package com.zfj.xmy.user.service.wap.impl;
import java.math.BigDecimal;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.zfj.xmy.common.ReqData;
import com.zfj.xmy.common.Req... | [
"359479295@qq.com"
] | 359479295@qq.com |
5df578fe1f960a990b70904f44462d5d77d29e08 | eb001b418927ca4f04b39539eedb696cb3c0fd1f | /tranthian/src/main/java/com/example/tranthian/entity/Book.java | ad4e378215168a65fc71ff9d4119daaf0117c481 | [] | no_license | tranthian-snake/EADExam | f4225ee5ab9af774687880c7c1e12f0586fc9903 | 8a0e8b956f8f885a21d3985ff91988e6a1d86cd2 | refs/heads/master | 2023-05-31T05:44:29.745044 | 2021-06-19T12:04:12 | 2021-06-19T12:04:12 | 378,392,109 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,525 | java | package com.example.tranthian.entity;
import javax.persistence.*;
@Entity
@Table(name = "book")
public class Book {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private int book_id;
@Column(name = "name")
private String name;
@Column(name = "author")
private Str... | [
"noreply@github.com"
] | tranthian-snake.noreply@github.com |
0f8701cf2cf73fa077e5f7ae01ca184078c87987 | 8c994ce51119ed095038b34c21cc6cde5993d70a | /classi/Mar09/src/beppe/Mar09.java | 5a76c344ffa944d6ce6e5873ccf42cc65c484d0c | [] | no_license | joker92/java | f0350a9f91832a28fd3db21658a82d2ea93351e3 | 531c89a63778ef943111c7080b3f901ab340c9a6 | refs/heads/master | 2021-01-18T23:50:59.058593 | 2016-07-06T13:29:07 | 2016-07-06T13:29:07 | 51,456,640 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,526 | 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 beppe;
import java.util.ArrayList;
/**
*
* @author svilupposw
*/
public class Mar09 {
public static void mai... | [
"euroseuff@gmail.com"
] | euroseuff@gmail.com |
f3f90268ecbad4b269664217614877879f1b6ca2 | 8f6007d3687bb5596fe0b3941b3374213ed68293 | /pizzahut/pizzahutstorefront/web/testsrc/com/pizzahutstore/storefront/controllers/cms/PurchasedCategorySuggestionComponentControllerTest.java | d82729b37344d2926c48becb5eb7aabf773ddb97 | [] | no_license | vamshivushakola/Pizzahut | 6ccc763ca6381c7b7c59b2f808d6c4f64b324c08 | b3e226a94e9bc04316c8ea812e32444287729d73 | refs/heads/master | 2021-01-20T20:18:12.137312 | 2016-06-14T12:19:08 | 2016-06-14T12:19:08 | 61,121,176 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,669 | java | /*
* [y] hybris Platform
*
* Copyright (c) 2000-2015 hybris AG
* All rights reserved.
*
* This software is the confidential and proprietary information of hybris
* ("Confidential Information"). You shall not disclose such Confidential
* Information and shall use it only in accordance with the terms of the
* li... | [
"vamshi.vushakola@gmail.com"
] | vamshi.vushakola@gmail.com |
2e7af4f0d218044f38984a31ba517798f418a41e | f61b6f98bd7b7b1f38f6b44621f660c06925c2d8 | /src/main/java/com/project/basic/conf/MessageSourceUtil.java | d777afda725ee4ac016e8459a1a04c12ed65045b | [] | no_license | pro-open/common-basic | c8f2312dc7421d9fedf649175970051a53e34419 | 2dc4bc914b94f81c37457cded63fb702bc1e3c43 | refs/heads/master | 2020-04-04T00:27:37.105214 | 2019-04-04T15:41:11 | 2019-04-04T15:41:11 | 155,650,582 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,571 | java | package com.project.basic.conf;
import java.util.Locale;
import javax.annotation.Resource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.MessageSource;
import org.springframework.context.i18n.LocaleContextHolder;
import org.springframework.stereotype.Component;
/**
* 国... | [
"liubao19860416@163.com"
] | liubao19860416@163.com |
33f7a94014f318b5fff5b81bfa8c9108d4b58254 | e570a7ed32f60936d03db9399faefff581b9904b | /shubh-chintak-backend-common/src/main/java/org/shubhchintak/common/dto/RoleDTO.java | 132f29620fd91781d3d1694dac8869da22024f41 | [] | no_license | sudhanshu11a/shubh-chintak-backend | eee63f4ffd2f74bb7f9a1f9d654887da2cf9b83b | 9e574bbaf02e0836fe6768d6a839adf28d851f63 | refs/heads/master | 2021-01-19T00:21:25.287315 | 2019-01-07T05:58:15 | 2019-01-07T05:58:15 | 87,160,703 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 609 | java | /**
*
*/
package org.shubhchintak.common.dto;
import org.shubhchintak.common.enums.RoleEnum;
/**
* @author sudhanshusharma
*
*/
public class RoleDTO extends BaseDTO {
/**
*
*/
private static final long serialVersionUID = 5267413300561228850L;
private RoleEnum roleName;
private String description;
... | [
"sudhanshusharma@sudhanshu4081.Nagarro.local"
] | sudhanshusharma@sudhanshu4081.Nagarro.local |
5a3bdcc98f74c854b414b74428abb5513dd0c3dd | dc1dbb7e5a4b95bf44170d2f51fd08b3814f2ac9 | /data_defect4j/preprossed_method_corpus/Math/63/org/apache/commons/math/linear/SingularValueDecompositionImpl_getNorm_243.java | 8354c9d5bdb3d450fd55c0529150693c88bb8fba | [] | 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 | 783 | java |
org apach common math linear
calcul compact singular decomposit matrix
singular decomposit matrix set matric
sigma time sigma time
time matrix time orthogon matrix sigma
time diagon matrix posit element time
orthogon matrix orthogon
min
version revis date
singular decomposit impl singularvalu... | [
"hvdthong@gmail.com"
] | hvdthong@gmail.com |
0c282ac5b16a21eb99b96f6e5e6aa3e1a8a84a05 | 66ef83660729980ca40171c591750ff8eb517a3d | /src/main/java/com/jayden/mall/controller/SmsHomeRecommendSubjectController.java | b891ec0d26247ee69b89d7e5fa06a6130c8b368c | [] | no_license | BruceLee12013/mall | b24bab18109fcbd715d9683d88b4f18742d1a957 | 8838a1f2a3a39c0f2cc089e392ece53e8695bea9 | refs/heads/master | 2023-01-18T16:46:46.619486 | 2020-11-11T09:37:49 | 2020-11-11T09:37:49 | 311,924,301 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,172 | java | package com.jayden.mall.controller;
import com.jayden.mall.common.ApiRestResponse;
import com.jayden.mall.exception.BusinessExceptionEnum;
import com.jayden.mall.model.pojo.SmsHomeRecommendSubject;
import com.jayden.mall.service.SmsHomeRecommendSubjectService;
import io.swagger.annotations.Api;
import io.swagger.annot... | [
"brucelee_123@163.com"
] | brucelee_123@163.com |
40894391076e30efee5ab6b9c1feb8e2c92fafa5 | 67bc401a6b72850d4c4dfd62c7bcdc62419b0fa3 | /src/main/java/com/amazingfour/crms/dao/BaseDao.java | fa1a095a12ff35abd7c52c04a399e89e9cbb4a99 | [] | no_license | Dicky-pong/CloudResource | 813bf64ec97f41c19b51f0a85771ec05c0029843 | c7429d3b0809b3d61cbcc0239b65771aea5e86f9 | refs/heads/master | 2022-12-21T15:18:45.311970 | 2019-06-16T15:35:32 | 2019-06-16T15:35:32 | 166,563,888 | 0 | 0 | null | 2022-12-16T04:31:33 | 2019-01-19T15:48:57 | JavaScript | UTF-8 | Java | false | false | 610 | java | package com.amazingfour.crms.dao;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
/**
* Created by Huy on 2016-01-08.
*/
public interface BaseDao<T,ID extends Serializable> {
//查询所有
public List<T> find(Map<String, Object> map); //map可以存放一些其它数据,如用于分页查询的start(起始页)和size(每页数量)
//... | [
"383882946@qq.com"
] | 383882946@qq.com |
e2d18603702fb41f1811c1323e94f43e5db22791 | f6e2cf5e64e1047d3f2f6f583845c63f31781959 | /eurekaserver/src/main/java/com/yao/controller/HelloController.java | c8032029fbf891fda8f2ae8505aac1e1ad8c4636 | [] | no_license | shanyao19940801/SpringCloudDemo | b0746d78cc5982070f896f30b821fdef0d9e03a7 | a21fdf3b10b68fb14fa6d5ee38e41fea268bb6c0 | refs/heads/master | 2020-03-24T21:20:20.269867 | 2018-08-12T15:08:47 | 2018-08-12T15:08:47 | 143,026,532 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 309 | java | package com.yao.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@RequestMapping("/")
public String index() {
return "Greetings from Spring boot";
}
}
| [
"sqshanyao@163.com"
] | sqshanyao@163.com |
c6bd922a1e18d115d8f2ec7ee0cff3571f2f5a3f | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/34/34_5d5c5181ac5a3e5a09681f897811dab32aed1013/Project/34_5d5c5181ac5a3e5a09681f897811dab32aed1013_Project_t.java | 85b34df25bf7a3320e8e63c6feda26d58a095dd4 | [] | 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 | 44,289 | java | /*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distributio... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
7065fa2e5355d0d4f99cf2ccbbff02802395896f | c1a4318e8f43ebbc9185f0246a192677589c6712 | /actividadSiete/actividadSiete/src/actividadSiete/main.java | 7072415a2948a28c9733d7be8b68bc75773842fe | [] | no_license | Jeanette-Mosqueda/intrucciones-de-control | 97dddd3c5da5eace32611c99660a632495744822 | 2131e4c7cc6e0fd96eb68b46327c10a15680e6c5 | refs/heads/main | 2023-01-01T05:26:00.106558 | 2020-10-27T05:35:14 | 2020-10-27T05:35:14 | 307,595,343 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,718 | java | package actividadSiete;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class main {
public static BufferedReader entrada= new BufferedReader(new InputStreamReader(System.in));
public static void main(String[] args) throws IOException {
... | [
"noreply@github.com"
] | Jeanette-Mosqueda.noreply@github.com |
ad33d4d1729d86fe05d7b78129855beeb5a51f0d | ce2813f714d83602ee9b3b237c7304446ae741da | /src/LINTCODE11/LINTCODE1040.java | d28ac8cb62fbb2977b450c8e25278dbbffca831f | [] | no_license | tmhbatw/LINTCODEANSWER | bc54bb40a4826b0f9aa11aead4d99978a22e1ee8 | 7db879f075cde6e1b2fce86f6a3068e59f4e9b34 | refs/heads/master | 2021-12-13T16:38:05.780408 | 2021-10-09T16:50:59 | 2021-10-09T16:50:59 | 187,010,547 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 836 | java | package LINTCODE11;
public class LINTCODE1040 {
/*Description
* 整数数组arr(存在相同元素),将其拆分成一些“块”(分区),
* 并单独对每个块进行排序. 连接它们之后,结果为升序数组.
* 可以划分最多多少块?
* */
public int maxChunksToSorted(int[] arr) {
int count=0;
for(int i=0;i<arr.length;i++){
int max=Integer.MIN_VALUE;
... | [
"1060226998@qq.com"
] | 1060226998@qq.com |
f388530907e31318a575335944c20b843e2e4d27 | 7679d05a14ac2d55ca87199a57e8d63f0950c89f | /src/main/java/com/wdw/wrpc/service/impl/CalculateImpl.java | 2effafecab243dc7143c28c12aa88b9c1f7de02c | [
"MIT"
] | permissive | wdw87/wRpc | aa858f7c6c9c6747431ad3ff4aa3e4c72aedcbcf | 0d79d746aa38aa13797d7d201e03699d2f310f93 | refs/heads/master | 2022-07-03T12:42:33.900415 | 2020-06-30T14:40:49 | 2020-06-30T14:40:49 | 248,723,506 | 13 | 0 | MIT | 2022-06-17T03:00:57 | 2020-03-20T10:04:56 | Java | UTF-8 | Java | false | false | 301 | java | package com.wdw.wrpc.service.impl;
import com.wdw.wrpc.service.CalculateInterFace;
public class CalculateImpl implements CalculateInterFace {
@Override
public int add(int a, int b) {
return a + b;
}
@Override
public int dec(int a, int b) {
return a - b;
}
}
| [
"694439986@qq.com"
] | 694439986@qq.com |
ea5d10949c212fc8dda8d53abe3da6a9498e5b0a | bc1fc2c53840c91c2f0af706e0b628d6e8a7367c | /design-pattern-core/src/main/java/com/liuhuan/study/design/creational/prototype/Client.java | 3acef9cd2c7bf190566cd7f8c460dd67f9ad4f9c | [
"Apache-2.0"
] | permissive | cliuhuan/design-pattern | 64933b884946c1323bb9ffade4cae85b62f8a65e | e0582c53aacd505e5e696d8dd0b804f5fbdce503 | refs/heads/master | 2022-11-21T09:58:43.776903 | 2020-07-27T03:51:15 | 2020-07-27T03:51:15 | 282,788,810 | 1 | 0 | null | null | null | null | GB18030 | Java | false | false | 893 | java | package com.liuhuan.study.design.creational.prototype;
/**
* 原型模式
*/
public class Client {
public static void main(String[] args) {
System.out.println("原型模式完成对象的创建");
Sheep sheep = new Sheep("tom", 1, "白色");
sheep.friend = new Sheep("jack", 2, "黑色");
Sheep sheep2 = (Sheep)sheep... | [
"wb-lh494916@cainiao.com"
] | wb-lh494916@cainiao.com |
5a3d9ae76ea6eab8b5fb16e9c63de81919e84e32 | a27ebf74ca6d60337ce4f451a2059fcedf29042d | /src/com/ssiot/remote/data/ControlController.java | f4586ec380dabd2866ee384eccb1abca59ca210e | [] | no_license | ldseop/jurong | 04f2964314a0f093486bbaa85a719b439bf3db19 | 90024ce325c6ff551221b9deb025265e21c23b65 | refs/heads/master | 2021-01-19T22:43:35.454508 | 2016-01-18T04:48:31 | 2016-01-18T04:48:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,134 | java | package com.ssiot.remote.data;
import android.text.TextUtils;
import android.util.Log;
import com.ssiot.jurong.JuRongActivity;
import com.ssiot.remote.data.business.ControlActionInfo;
import com.ssiot.remote.data.business.ControlLog;
import com.ssiot.remote.data.model.ControlActionInfoModel;
import com.ssiot.remote.d... | [
"gejingbo@163.com"
] | gejingbo@163.com |
75950bd455b9530f2d25151204075e978fc8c9ec | 2f2acaf4b2ed2925ad3c82abda6c35783304645a | /FSM8/src/main/java/fr/keyser/n/fsm/State.java | b8b2b66eb57162f6bdaa0ac910e7dc3d119c8b09 | [] | no_license | pierrealainkeyser/FSM | aa2521e78a71fa73fb59e44a40748b70312d6562 | 61e89d538f84c7cc5d172e653708fc55181caece | refs/heads/master | 2021-06-11T15:14:35.778722 | 2019-09-19T10:42:07 | 2019-09-19T10:42:07 | 109,716,586 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,407 | java | package fr.keyser.n.fsm;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;
import java.util.stream.IntStream;
import java.util.stream.Stream;
public final class State {
private fi... | [
"pierrealain.keyser@gmail.com"
] | pierrealain.keyser@gmail.com |
c3acf1e32b31598bcbdb38d8d20d8594b39c91fb | a669c43c95809588e432cb000a953bdf5326dcd6 | /app/src/main/java/com/example/administrator/newss/adapter/ImageAdapter.java | 66db5a24a0cd05e7c54eac2c763bba0038343305 | [] | no_license | hanxunbu/ButterKnife | 870b95ca2515208796d2cd467075f4980fff2375 | 498cf347e48268d0de034be4bcfc9504d4e1ad00 | refs/heads/master | 2021-01-19T21:31:55.498317 | 2017-02-20T03:28:25 | 2017-02-20T03:28:25 | 82,511,224 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,877 | java | package com.example.administrator.newss.adapter;
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import com.example.administrator.newss.R;
import com.example.adm... | [
"hanxunbu@qq.com"
] | hanxunbu@qq.com |
6b21bdb042c9a0d3c04a6372ffb7ce42e4420a1e | 0fdcb6bb6acac8017d57973591319784c79daa9b | /src/CommandNodes/TurtleCommandNode.java | 66ec66fcb4c1d3140b677ba2af126e94f63c4a90 | [
"MIT"
] | permissive | ericl3/logo-IDE | dab053348aa290c24d0e58cd0fb47f05ee9ae160 | d2bceda2f173e86e138ab56484855f3663163c57 | refs/heads/master | 2020-05-09T20:19:38.484943 | 2019-04-15T03:05:50 | 2019-04-15T03:05:50 | 181,402,686 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,095 | java | package CommandNodes;
import Handlers.HandlerInterfaces.CommandHandlerInterface;
/**
* @author Mary Gooneratne
* Abstract CommandNode that serves as the framework for all CommandNodes that alter turtle properties
*/
public abstract class TurtleCommandNode extends CommandNode {
private int myChildrenIndex;
/... | [
"el172@duke.edu"
] | el172@duke.edu |
8bd8956c67778719aff0cfe79b884676c627ce25 | 90556a9e7527c78c44d02ce9920e4fee47c61d01 | /src/main/java/org/brapi/test/BrAPITestServer/serializer/CustomStringToEnumConverter.java | 6434e5b6f3969536dbc503e8fce04087a1adf0c3 | [
"MIT"
] | permissive | plantbreeding/brapi-Java-TestServer | 0f6cddb58b645294fca586a4b6068b68ffd6b911 | 5b600ca0fd130add5591101d39c5afd9d7b1cb06 | refs/heads/brapi-server-v2 | 2023-08-08T01:58:53.975315 | 2023-07-13T16:26:26 | 2023-07-13T16:26:26 | 109,435,642 | 5 | 7 | MIT | 2023-09-13T15:22:18 | 2017-11-03T19:35:24 | Java | UTF-8 | Java | false | false | 494 | java | package org.brapi.test.BrAPITestServer.serializer;
import org.springframework.core.convert.converter.Converter;
import io.swagger.model.WSMIMEDataTypes;
public class CustomStringToEnumConverter implements Converter<String, WSMIMEDataTypes> {
@Override
public WSMIMEDataTypes convert(String source) {
WSMI... | [
"ps664@cornell.edu"
] | ps664@cornell.edu |
4e14b7652030acf9f1db11822b4e9b4b72340250 | bd15574da9cbb62dc20188548ed8015df30e5a57 | /src/main/java/Routes/RouteObject.java | 8e3bdf77be0aaf389f00e1c999969d6b721f6555 | [] | no_license | tylerhoh/NoteApp | 99f691a27b334ffb2304746049a303765383a979 | 98b8e9aedc9d00b896d2237ab3c955afc4200612 | refs/heads/master | 2022-05-31T18:31:13.021669 | 2019-11-28T04:36:03 | 2019-11-28T04:36:03 | 221,534,765 | 0 | 0 | null | 2022-05-20T21:15:39 | 2019-11-13T19:23:23 | Java | UTF-8 | Java | false | false | 248 | java | package Routes;
import DAO.NoteHandler;
import DTO.Response;
public class RouteObject {
public Response localRes;
protected NoteHandler noteDatabase = NoteHandler.getDataBase();
public Response create(){
return null;
}
}
| [
"russ081999@gmail.com"
] | russ081999@gmail.com |
a2e061993b15e5145dc9ef61d87b22e8e4f5489f | d1b5c374c4ff545a81c5be777fbf891f7299eae4 | /src/main/java/ru/olgak/folks/api/search/EntityFieldFilter.java | b0ce86822c3ebad46d39d68e8e171e9e8ff409be | [] | no_license | blackberryP1e/Folks_practice | 7b11e05f7eea2a969bbb23575f9c009c57b84a80 | 0ce7b56546d0c1be8456cfd6272a969f0d9fd9af | refs/heads/master | 2022-11-30T23:43:55.200131 | 2020-01-20T15:30:02 | 2020-01-20T15:30:02 | 235,117,972 | 0 | 1 | null | 2022-11-24T03:40:15 | 2020-01-20T14:17:48 | Java | UTF-8 | Java | false | false | 3,649 | java | package ru.olgak.folks.api.search;
import java.util.regex.Pattern;
/**
* Класс <class>EntityFieldFilter</class>
*
* @author nikolaig
*/
public abstract class EntityFieldFilter<T> {
/** Значение фильтра */
protected T value;
/**
* Возвращает строковое представление значения фильтр... | [
"olgak@hflabs.ru"
] | olgak@hflabs.ru |
d408f2a0c09128ce020a6a20bd1beb9211cbad48 | c317857e05a4d3de4b1fac82fab5c48ae5fea99c | /src/BuilderDP/PackBuilder.java | 097bb6442f9c870cfc87df27251c094967bd2a56 | [] | no_license | victor0198utm/TMPS_Lab1 | 8b5e7100e4938c288d4b9d7ba2e6063c6048811d | 34295168e6d22b2d5461d38ba263c1c0aef61e4d | refs/heads/main | 2023-08-24T21:27:04.671979 | 2021-10-03T13:39:03 | 2021-10-03T13:39:03 | 413,064,340 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 688 | java | package BuilderDP;
import BuilderDP.CarTypes.Car;
import java.util.ArrayList;
import java.util.List;
public class PackBuilder {
private final List<Car> cars = new ArrayList<Car>();
public void addItem(Car car){
cars.add(car);
}
public float getCost(){
float cost = 0.0f;
for... | [
"victor0198@gmail.com"
] | victor0198@gmail.com |
462ab7b14bf4d6317ec4c3d0135498d55c4f532e | 82bda3ed7dfe2ca722e90680fd396935c2b7a49d | /app-meipai/src/main/java/com/arashivision/onecamera/exception/StorageFileNotExistException.java | 3659174ad26723ae0c7e1b874135ebaec2bb6f2c | [] | no_license | cvdnn/PanoramaApp | 86f8cf36d285af08ba15fb32348423af7f0b7465 | dd6bbe0987a46f0b4cfb90697b38f37f5ad47cfc | refs/heads/master | 2023-03-03T11:15:40.350476 | 2021-01-29T09:14:06 | 2021-01-29T09:14:06 | 332,968,433 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 199 | java | package com.arashivision.onecamera.exception;
public class StorageFileNotExistException extends CameraIOException {
public StorageFileNotExistException(String str) {
super(str);
}
}
| [
"cvvdnn@gmail.com"
] | cvvdnn@gmail.com |
a8f2eac8d16e17e41487294eec2024040e1c6d7d | 90be516983da819bdfe398d1ff0cb0e1aec8be67 | /src/main/java/com/deloitte/poc/searchprovider/repository/ProviderDao.java | abe8f230c93f04e4dd9a5d86ea99f84758e91ff3 | [] | no_license | venkateshbussa16/poc-searchProvider | ea2569e82cc784f00b3b8260bc4d48136a200e79 | 34e684cc05bca2d7967e72f76d2e4dc61e222eb7 | refs/heads/master | 2020-04-11T12:47:44.118038 | 2018-12-21T10:21:39 | 2018-12-21T10:21:39 | 161,792,564 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 866 | java | package com.deloitte.poc.searchprovider.repository;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.deloitte.poc.searchprovider.bean.Provider;
@Component
public class ProviderDao {
@Autowired
private ProviderReposit... | [
"rlakshmanbabu@deloitte.com"
] | rlakshmanbabu@deloitte.com |
273e49ba898c156a435b389c655371021833088c | 12d215c7d24a66204a21c3268967d94f22e27ebb | /src/org/whiskeysierra/impairedvision/Vision.java | 0887fd4b7b4fdb40f7c87ae1c290f0890f829e58 | [] | no_license | whiskeysierra/impaired-vision | f08c8e8f2bbd26582ba0e4d8b7203a128c644892 | 02d3d71bd8713836a943899cadbfc0cd8100bdee | refs/heads/master | 2016-09-06T11:59:57.897581 | 2011-09-28T10:14:10 | 2011-09-28T10:14:10 | 1,800,544 | 3 | 2 | null | null | null | null | UTF-8 | Java | false | false | 473 | java | package org.whiskeysierra.impairedvision;
import android.graphics.ColorFilter;
import android.hardware.Camera;
import com.google.common.base.Function;
interface Vision {
public static final Function<Vision, String> NAME = new Function<Vision, String>() {
@Override
public String apply(Vision visi... | [
"schoenborn@cosmocode.de"
] | schoenborn@cosmocode.de |
6268146c002538b1f9082c3d5e416bd1b103fcf4 | ea49a926a580b6089c9739f692c8436cfaf28e5e | /app/src/main/java/it/uniparthenope/fairwind/services/logger/SecureFilePacker.java | 362028dd35eb6b629e57a35a787045d3b2dc850e | [
"Apache-2.0"
] | permissive | OpenFairWind/fairwind | 556477772838cca1f8d6f5df4045d7847e264bce | c51ec332b370470993ca13d3775f9456ec6e87d5 | refs/heads/main | 2023-03-12T23:03:02.598774 | 2021-03-03T16:21:54 | 2021-03-03T16:21:54 | 344,184,734 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 340 | java | package it.uniparthenope.fairwind.services.logger;
import java.io.File;
import java.io.IOException;
import java.security.GeneralSecurityException;
/**
* Created by raffaelemontella on 28/06/2017.
*/
public interface SecureFilePacker {
public void pack(File source, File destination) throws IOException, GeneralS... | [
"raffaele.montella@uniparthenope.it"
] | raffaele.montella@uniparthenope.it |
b5032a0202bdaa3830f42c5ca29879d0f6e2e2c6 | 28823b037ca34bd377de9f67cec3553932aa3013 | /src/test/java/org/apache/ibatis/submitted/serializecircular/Attribute.java | 072c7addf2f80e4efa441c275b4c4997446ab18c | [
"Apache-2.0",
"BSD-3-Clause"
] | permissive | janforp/mybatis | 9240dea373aa7615ebb10fd44c5f0b02b8d6c0d0 | bd8dad6ef602e07c8cd14c5db79186071c5ff90b | refs/heads/master | 2022-07-08T19:43:24.594569 | 2020-04-04T14:31:56 | 2020-04-04T14:31:56 | 246,563,112 | 0 | 0 | Apache-2.0 | 2022-06-29T19:34:00 | 2020-03-11T12:20:26 | Java | UTF-8 | Java | false | false | 982 | java | /*
* Copyright 2012 the original author or authors.
*
* 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 req... | [
"zhucj@servyou.com.cn"
] | zhucj@servyou.com.cn |
9643dfc7238ff5794b1facda15a7b96e04c52041 | f69c9bcf2522e9dcd89373fcd1e9e70d60970871 | /src/main/java/com/ovopark/hikaricpprometheusdemo/controller/TestController.java | 9938605f789f251ad0e2edff79944fb2905352b5 | [] | no_license | MiskOoo/hikarip-prometheus-demo | 8a26e34930196a6372ac345d82d367792346554c | b7d613f61b4167b42ba434cbd115a3c8a05cf245 | refs/heads/master | 2023-02-02T02:24:27.021151 | 2020-12-18T08:25:46 | 2020-12-18T08:25:46 | 322,532,598 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,182 | java | package com.ovopark.hikaricpprometheusdemo.controller;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.ovopark.hikaricpprometheusdemo.bean.User;
import com.ovopark.hikaricpprometheusdemo.mapper.UserMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springfr... | [
"402301200@qq.com"
] | 402301200@qq.com |
c00c76dc39c94d437f09eabf7bf29b3a99c8e283 | 6e04886322ba4e3f501dde8d1226eb0f0c99f516 | /internal-backport/src/main/java/groovy/transform/NamedParams.java | cd2b0336e857fb426541b86ab1287f243208c9eb | [
"Apache-2.0"
] | permissive | wujunshen/spock | a6ee7d827ac13435440eb5cd18571e1f30f75eb6 | d751a0abd8d5a2ec5338aa10bc2d19371b3b3ad9 | refs/heads/master | 2020-06-12T06:40:20.996876 | 2019-03-26T13:47:48 | 2019-03-26T13:47:48 | 194,222,244 | 1 | 0 | Apache-2.0 | 2019-06-28T06:46:52 | 2019-06-28T06:46:51 | null | UTF-8 | Java | false | false | 1,321 | 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")... | [
"noreply@github.com"
] | wujunshen.noreply@github.com |
64c36b14fe5f40552604c128c6048ec6b11fca16 | b8fca8799590a0305c7a16fe54858e5694b3d02e | /src/main/java/com/qainfotech/maven/Tatoc/course/FrameDungeon.java | 5756098a7339466950b039a523828d51753c4772 | [] | no_license | DigvijayQAIT/Maven_Automation_Training | 5530b0b4c7c629e0c2bf80eb84b7e6375b6d37fc | da0a134268e3205f28559e1312ffd746ea140079 | refs/heads/master | 2020-03-21T01:33:55.475323 | 2018-06-21T17:37:20 | 2018-06-21T17:37:20 | 137,948,212 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 962 | java | package com.qainfotech.maven.Tatoc.course;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
public class FrameDungeon {
public boolean colorMatching(WebDriver driver) {
driver.switchTo().frame("main");
String boxOneColor = driver.findElement(By.id("answer")).getAttribute("class");
driver.s... | [
"digvijay.singh@qainfotech.com"
] | digvijay.singh@qainfotech.com |
1185e3fc9858989d5e935f261a3a7eeea997c385 | c634f8faa88acc4698a5ddbe6a86f15f5de3260d | /src/main/java/Intake2020/services/CsFAQServiceImpl.java | 7c852304830af9f401675f9d88689f407570323d | [] | no_license | changwng/WebPortpoilo | 6adaeb83f1bacc068c3f1711914f61f32ac8466f | e5dfd326cdacae12aac6908d9e3019139ec9f628 | refs/heads/master | 2023-01-19T23:36:55.463823 | 2020-11-23T08:43:54 | 2020-11-23T08:43:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,705 | java | package Intake2020.services;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import Intake2020.domain.dto.CsFAQDto;
import Intake2020.map... | [
"jungseeun@172.30.1.40"
] | jungseeun@172.30.1.40 |
10eddcf77b34e020d52a569c0ef1bd28d228d00d | 78cbd63ac9ae6f93f28ccc89f3650ef5525109aa | /app/src/main/java/com/example/movs_project/Model/Player.java | eb7a4f9085efa83870a81f4c6d66453026f9a818 | [] | no_license | r4ptus/Movs_Project | 0ade533f4f8f502165b5134035bddea25c12f276 | 61fc5975204bcb10ab10bb10a2ad6715dc18d155 | refs/heads/master | 2020-04-29T03:20:55.767010 | 2019-08-28T14:13:27 | 2019-08-28T14:13:27 | 175,805,647 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,696 | java | package com.example.movs_project.Model;
import java.io.Serializable;
public class Player implements Serializable {
private String id;
private String summonerName;
private String rank;
private String wlRatio;
private Long championPoints;
private int playerIcon;
private int championIcon;
... | [
"lee@familiehartwich.de"
] | lee@familiehartwich.de |
ac94969e6f8329b9905aa0551718d9d1cf7de664 | 7a157ff307823d28cd5438553ad23d01b16d4f7a | /core/src/main/java/com/se/algorithm/CheckSum.java | 5f58e4475f9b29b5d2e5d9d497063e97b288af8c | [] | no_license | ndqvinh2109/soft_dev_engineer | cce407c93b94b92c567f93640046369813a99e42 | 7336ad76abf1204938946619ee6c24995769d4a4 | refs/heads/master | 2020-03-27T10:10:27.617212 | 2020-03-07T12:31:04 | 2020-03-07T12:31:04 | 146,400,432 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,084 | java | package com.se.algorithm;
import java.io.UnsupportedEncodingException;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;
public class CheckSum {
/*
An array with two integers a and b that add up to a certain number
Sample Input
arr = {1,21,3,14,5,... | [
"ndqvinh2109@gmail.com"
] | ndqvinh2109@gmail.com |
39aa7743a56fa15d270c07a15accc8d4d8d85fd3 | 516fb367430d4c1393f4cd726242618eca862bda | /sources/com/google/android/gms/internal/ads/zzbii.java | 2294c8d9ed39fce1df182da7146c1706600ccdf4 | [] | no_license | cmFodWx5YWRhdjEyMTA5/Gaana2 | 75d6d6788e2dac9302cff206a093870e1602921d | 8531673a5615bd9183c9a0466325d0270b8a8895 | refs/heads/master | 2020-07-22T15:46:54.149313 | 2019-06-19T16:11:11 | 2019-06-19T16:11:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,279 | java | package com.google.android.gms.internal.ads;
import android.annotation.TargetApi;
import android.webkit.WebView;
import com.google.android.gms.common.util.PlatformVersion;
import com.google.android.gms.common.util.VisibleForTesting;
@zzark
final class zzbii {
@VisibleForTesting
private static Boolean zzfbi;
... | [
"master@master.com"
] | master@master.com |
55b6699fa078d3277b8b4cc419a72a018a06d58f | 3a5c12b45a772c13b3264da7655e19ab23f3e2c8 | /SessionScheduleManagementSystem_158175/src/com/cg/dao/ITrainingDAO.java | 3fc0eb810dcbda65548230f0d6fcad45c59ec168 | [] | no_license | niraj3124/final1 | 55d19e00bcead86fa1f5357de7f564a7397cd0b2 | a4bc1e7ef70919782b5c1254a2a02d4d5eff0c31 | refs/heads/master | 2020-04-01T09:09:38.756149 | 2018-10-15T06:21:52 | 2018-10-15T06:21:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 186 | java | package com.cg.dao;
import java.util.ArrayList;
import com.cg.bean.ScheduledSessions;
public interface ITrainingDAO {
ArrayList<ScheduledSessions> sessionsdatalist();
}
| [
"noreply@github.com"
] | niraj3124.noreply@github.com |
fa4f31e1f581f6414058c837ce99a7a91f4f8236 | 5a6a40fef89bcfc07f11be40647eb4e468b3ca6f | /framework-system/system-authorization-core/src/main/java/com/zwj/system/authorication/resource/entity/ResourceEntity.java | 0f065e40311a05a8831399c0e290e510123692bb | [] | no_license | Fribblezhu/zwj-framework | 76666f57244ca52a3e3092ea76902c445cde28c1 | ff7532536a534575a719d570bbec74089302a99c | refs/heads/master | 2022-12-21T14:45:08.639438 | 2019-08-25T11:45:51 | 2019-08-25T11:45:51 | 188,528,363 | 0 | 0 | null | 2022-12-10T05:28:51 | 2019-05-25T06:17:15 | Java | UTF-8 | Java | false | false | 1,895 | java | package com.zwj.system.authorication.resource.entity;
import com.zwj.framework.common.entity.simple.GenericSortStringIdEntity;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import javax.persistence.*;
import java.util.HashSet;
import java.util.Set;
/**... | [
"1106556175@qq.com"
] | 1106556175@qq.com |
7ed2c7f5dd8ca8f47cdbfdf3ec2136d6a351ad96 | f836a9a6229d6fec05fa44deb4b6d9915bdaabea | /XiaoYuanFenApp/app/src/main/java/com/theaty/xiaoyuan/WBShareActivity.java | a6b6a3f1da2e16dbf56d01a84c44487720df18ef | [
"Apache-2.0"
] | permissive | fugx/XiaoYuanFen | 40be36dd3a799ce02e488d2a9ead13d8be8cb2ec | 6b936f023601fc6058ba112266d06c72147a2b62 | refs/heads/master | 2020-04-10T22:48:21.471827 | 2019-09-15T13:01:55 | 2019-09-15T13:01:55 | 161,333,215 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 196 | java | package com.theaty.xiaoyuan;
import com.umeng.socialize.media.WBShareCallBackActivity;
/**
* Created by wangfei on 15/12/3.
*/
public class WBShareActivity extends WBShareCallBackActivity {
}
| [
"1662130346@qq.com"
] | 1662130346@qq.com |
ecdc0b326b4bfa6263027aec6e4147dc1aab7554 | 4abd603f82fdfa5f5503c212605f35979b77c406 | /html/Programs/hw7-2-diff/r04546014-117-0/Diff.java | 1e67e41ed72589bd9eb7cbee79b887a38e7274db | [] | no_license | dn070017/1042-PDSA | b23070f51946c8ac708d3ab9f447ab8185bd2a34 | 5e7d7b1b2c9d751a93de9725316aa3b8f59652e6 | refs/heads/master | 2020-03-20T12:13:43.229042 | 2018-06-15T01:00:48 | 2018-06-15T01:00:48 | 137,424,305 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,388 | java | import java.io.BufferedReader;
import java.io.FileReader;
public class HandPQ {
public static void main(String[] args) throws Exception {
try (BufferedReader br = new BufferedReader(new FileReader(args[0]))) {
String[] header = br.readLine().split("","");
int count = Inte... | [
"dn070017@gmail.com"
] | dn070017@gmail.com |
a0fb46c2f30da7d6f82c53f6156b699e7b7b8a7b | 83ee8fc629710f12911c858b036d36094540dfd4 | /src/main/java/com/ichaoge/pet/service/impl/PhotoAlbumLabelSortServiceImpl.java | fc13d737bb0ae31a3012b1a6d8e8ea1e60ca8ffc | [] | no_license | lchaoge/ichaoge-pet | 9736da2f825cb24beba3d43e50bc299c600244c9 | 80e17fbffd170a6997b61ed43e8599b8b9a222d1 | refs/heads/master | 2020-03-27T10:05:05.217989 | 2018-09-30T09:44:53 | 2018-09-30T09:44:53 | 144,673,370 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,815 | java | package com.ichaoge.pet.service.impl;
import com.ichaoge.pet.dao.mapper.PhotoAlbumLabelSortMapper;
import com.ichaoge.pet.domain.entity.PhotoAlbumImageExample;
import com.ichaoge.pet.domain.entity.PhotoAlbumLabelSort;
import com.ichaoge.pet.domain.entity.PhotoAlbumLabelSortExample;
import com.ichaoge.pet.domain.inputP... | [
"liuyong@wumart.com"
] | liuyong@wumart.com |
f1bef67fa56a5864a85840735d782107e8b3661f | 5ee94bb2987ce16eea872f4ad8e30427213382d5 | /src/main/java/com/qy/test/service/AuditEventService.java | 4fca78726a22ccf4c8fbf843b69fbeede4cf308c | [] | no_license | jiangzhixiao/jhipsterSampleApplication | 302435560a29d83cd9bebe0d725229a40adf66b6 | 90383670776ca5d8e0269e24073a3db4dd23c652 | refs/heads/master | 2021-08-18T23:41:38.198239 | 2017-11-24T07:15:58 | 2017-11-24T07:15:58 | 111,887,958 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,761 | java | package com.qy.test.service;
import com.qy.test.config.audit.AuditEventConverter;
import com.qy.test.repository.PersistenceAuditEventRepository;
import org.springframework.boot.actuate.audit.AuditEvent;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframe... | [
"jhipster-bot@users.noreply.github.com"
] | jhipster-bot@users.noreply.github.com |
c49083f63a58bbe207b8c84a191b9a3a510a2b57 | 81346305002f13a0e3ae8b45541ad92318d67a8e | /app/src/androidTest/java/calculator/charan/com/ExampleInstrumentedTest.java | c36b4dfd1ef8f968e0a1e2d14d52a14aeb4ba885 | [] | no_license | CharanRamasamy/Calculator_Application | 56d3f0f5bac076998d69121f35963317adf5b5ad | 14a5955da4665eb7edfdd6199a9f692174d35f53 | refs/heads/master | 2021-09-07T16:22:14.881363 | 2018-02-26T03:09:15 | 2018-02-26T03:09:15 | 122,810,335 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 743 | java | package calculator.charan.com;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android d... | [
"sr721595@dal.ca"
] | sr721595@dal.ca |
7ab3f05a3fab4b5f09ab8bd6ab10ef43a3bf18e3 | 8db683ef2d51905b802de02f4a53e9e16c87d5ec | /src/main/java/gwt/material/design/addins/client/pinch/events/OnZoomStartEvent.java | d91ca6e1692717fd0f9b7b04d9f88ae88dee8c4f | [
"Apache-2.0"
] | permissive | GwtMaterialDesign/gwt-material-addins | 9ed4a713bbd66a2f7971d8372825d9ee561a410a | 8b25a900f8855d043a32d581eae9e8a2eb21cedc | refs/heads/master | 2023-09-04T11:22:48.392326 | 2023-07-28T00:00:38 | 2023-07-28T00:00:38 | 46,502,665 | 40 | 57 | Apache-2.0 | 2023-07-28T00:00:40 | 2015-11-19T15:49:50 | JavaScript | UTF-8 | Java | false | false | 1,456 | java | /*
* #%L
* GwtMaterial
* %%
* Copyright (C) 2015 - 2022 GwtMaterialDesign
* %%
* 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
* ... | [
"kevzlou7979@gmail.com"
] | kevzlou7979@gmail.com |
26e09596e8d7159fc47b47d3c4e49bbb79b711e8 | 9ec0abada6f1930fc42f249ff60cd1a3b5f63bad | /src/buyersDetails.java | 250a5edb83969fbb7c472f080bd1b98a14595493 | [] | no_license | modiS24/Payment-Billing-System | b0764190ea589cb1f0cbcea11f4d7e699d8949ea | edd3d437ec02836b0fc5f44c3d339660264f9385 | refs/heads/master | 2022-11-27T10:52:14.077948 | 2020-08-06T10:37:47 | 2020-08-06T10:37:47 | 260,142,572 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 7,719 | java | import javax.swing.JTable;
import java.sql.*;
import javax.swing.JOptionPane;
import net.proteanit.sql.DbUtils;
import project.ConnectionProvider;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in th... | [
"noreply@github.com"
] | modiS24.noreply@github.com |
181eaf20af179b7ad386325a31b06246b75b85af | 32f38cd53372ba374c6dab6cc27af78f0a1b0190 | /app/src/main/java/com/amap/location/offline/b/b/c.java | 27ab0159268bf50b54494a84d62eecee1c3e3040 | [] | no_license | shuixi2013/AmapCode | 9ea7aefb42e0413f348f238f0721c93245f4eac6 | 1a3a8d4dddfcc5439df8df570000cca12b15186a | refs/heads/master | 2023-06-06T23:08:57.391040 | 2019-08-29T04:36:02 | 2019-08-29T04:36:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 534 | java | package com.amap.location.offline.b.b;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
/* compiled from: LocationDbOpenHelper */
class c extends SQLiteOpenHelper {
public void onUpgrade(SQLiteDatabase sQLiteDatabase, int i, int i2) {
... | [
"hubert.yang@nf-3.com"
] | hubert.yang@nf-3.com |
0a3f6ac926671b39fd4062ef8d76bda6af6c2127 | b261ec37d68557f3340e4265a05e27560f90034f | /android-navy/src/com/jonnyzzz/android/navy/CurrentWifis.java | 192fdb022da6d8346f0f88203476787ce43a1946 | [] | no_license | jonnyzzz/android-navy | ecfd5c1d4394955943a62d26d9814278f7c5f6b5 | e59f988747b11ff029c339fb31a30318559f82cf | refs/heads/master | 2021-01-21T06:55:29.486683 | 2013-05-17T22:01:05 | 2013-05-17T22:01:05 | 34,039,208 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 5,146 | java | package com.jonnyzzz.android.navy;
import android.app.Activity;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.net.wifi.ScanResult;
import android.net.wifi.WifiManager;
import android.os.Bundle;
import android... | [
"eugene.petrenko@gmail.com"
] | eugene.petrenko@gmail.com |
8d24361e708afe2fbfe7fb4347a3e4ce1be47b42 | 19836412c3b323e12ad3b9f105f0ff9b46a5a3d8 | /src/main/java/br/com/zupacademy/achiley/casadocodigo/shared/ExistsId.java | e97765fbc85d9ed55b26aa983774c1b9898692b0 | [
"Apache-2.0"
] | permissive | achileyd/orange-talents-06-template-casa-do-codigo | 8414014458c8e6e062da5bdeafc2ae6a66ceb594 | 12fc8fc925967c8da3f61088ba541a3b52174fff | refs/heads/main | 2023-06-16T23:41:33.231039 | 2021-07-06T23:17:46 | 2021-07-06T23:17:46 | 381,093,239 | 0 | 0 | Apache-2.0 | 2021-06-28T16:17:57 | 2021-06-28T16:17:57 | null | UTF-8 | Java | false | false | 693 | java | package br.com.zupacademy.achiley.casadocodigo.shared;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import javax.validation.Constraint;
import javax.validation.Pa... | [
"achileyd@gmail.com"
] | achileyd@gmail.com |
9c643661ea50ccab6f21016d15e100517f6ff77d | 8599e98dbb858029185fad43690cb94f113329e1 | /exercicosDiversos/src/TesteDeSelecao1.java | b8f8013f37a85f3d985a1bb0fa847207bcdb0e8c | [] | no_license | irandijunior1903/ExerciciosJava8 | bb4d08139c3382388886fbde91aba27cad977c52 | 111e158ef116a816a06e0bffdc461e6caafba5ca | refs/heads/master | 2021-04-06T05:25:02.390904 | 2018-03-14T19:45:43 | 2018-03-14T19:45:43 | 125,263,934 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 600 | java | import java.util.Scanner;
public class TesteDeSelecao1 {
public static void main(String []agrs) {
Scanner scan = new Scanner(System.in);
String [] numeros = scan.nextLine().split(" ");
int A = Integer.parseInt(numeros[0]);
int B = Integer.parseInt(numeros[1]);
int C = Integer.parseInt(numeros[2]);
in... | [
"irandi.machado@dce.ufpb.br"
] | irandi.machado@dce.ufpb.br |
bc3a3592c11e9a54b9fabadb68532d20ad1c105d | 96123253a553675c0d5a95902a4b21e3861fb70d | /FinancasPessoais/src/app/model/Despesa.java | ca8dca6d0b250bf002a2b29a83133de43df5dee5 | [] | no_license | diogocs1/FPessoais | f24626e23ad972d4cbb12004c2b248f736590750 | 0ecef2c9d443e13e1a453665ab0cedfa831cfa3e | refs/heads/master | 2021-01-01T19:39:10.709185 | 2014-03-20T12:59:00 | 2014-03-20T12:59:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,114 | java | package app.model;
import javafx.scene.control.Dialogs;
import app.logica.Verifica;
public class Despesa {
private int id;
private Usuario pessoa;
private String descricao;
private String vencimento;
private String status;
private String prioridade;
private double valor;
public Despesa (int id,Usuario pessoa... | [
"diogo@diogo-14F"
] | diogo@diogo-14F |
af1c3be9ad78d10358d26e6d87691d1c3dfb5ed2 | ef8c08782883cc81fa1ae1a57b44c1b6340db20d | /ev/endrov/flowBasic/logic/EvOpNotImage.java | 93d50d1b8817f051cdbd8aa61c0cad4cf40c77c8 | [] | no_license | javierfdr/Endrov-collaboration | 574b9973bfa1d63748c7ad79cbb7f552fba51f8f | c45cdae3b977cf3167701d45403d900b22501291 | refs/heads/master | 2020-05-21T11:42:29.363246 | 2010-09-20T15:24:02 | 2010-09-20T15:24:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 836 | java | /***
* Copyright (C) 2010 Johan Henriksson
* This code is under the Endrov / BSD license. See www.endrov.net
* for the full text and how to cite.
*/
package endrov.flowBasic.logic;
import endrov.flow.EvOpSlice1;
import endrov.imageset.EvPixels;
import endrov.imageset.EvPixelsType;
/**
* NOT a
* @author Johan He... | [
"mahogny@areta.org"
] | mahogny@areta.org |
b9d0fcf94e8caaa579c959f7c019ecb4810697d6 | e615101180a1d3e78cbd1d66162ec42b8999bb9c | /lims-integration/src/gen/java/clarity/com/genologics/ri/containertype/CalibrantWell.java | a977c1e60fded6ef56e413416329e85c4954bcaa | [] | no_license | espre05/test-projects | 7522a76d41e6e6a822d2475e8246aab1730f2e46 | 26120053987e7570f0697a7e80b395edc0899475 | refs/heads/master | 2021-01-18T21:29:49.198194 | 2016-04-26T20:26:55 | 2016-04-26T20:26:55 | 31,580,648 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,453 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// 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.07.18 at 10:21... | [
"pnatarajan"
] | pnatarajan |
978f9e105ea2b6f11ebba4f3fa020dfd59abd840 | eac0b43bd7bf55f9c59c6867cc52706f5a8b9c1c | /eshop-v3/eshop-promotion/src/main/java/com/zhss/eshop/promotion/api/PromotionService.java | 32c156204bcaceed12802727e6045f31bbf2558d | [] | no_license | fengqing90/Learn | b017fa9d40cb0592ee63f77f620a8a8f39f046b9 | 396f48eddb5b78a4fdb880d46ea1f2b109b707e4 | refs/heads/master | 2022-11-22T01:44:05.803929 | 2021-08-04T03:57:26 | 2021-08-04T03:57:26 | 144,801,377 | 0 | 3 | null | 2022-11-16T06:59:58 | 2018-08-15T03:29:15 | Java | UTF-8 | Java | false | false | 3,816 | java | package com.zhss.eshop.promotion.api;
import java.util.ArrayList;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.R... | [
"fengqing@youxin.com"
] | fengqing@youxin.com |
92643958690d4de2f3e1f36bf39d38cb87b425b2 | 240cd759084c2058000629ece5295db6ad3cd011 | /Cipher.java | 757a5606a794313741140c32f08516a56ccf0ccf | [] | no_license | SheshanVerma/KryptoNote | c0d0a2e47d46ec4bbeb11c903063a5c36be07407 | 8d74867df65d4bc98464d3a09b0181f6c240fa5d | refs/heads/main | 2023-03-06T12:35:29.951181 | 2021-02-18T19:05:55 | 2021-02-18T19:05:55 | 340,149,121 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,616 | java | package com.example.kryptonote;
public class Cipher {
private String key;
public static final String ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
public Cipher (String k)
{
this.key = k;
}
public String makePad(String note)
{
String pad = this.key;
for ... | [
"noreply@github.com"
] | SheshanVerma.noreply@github.com |
e4ee93d2cf2b2fb6dcef8746090aaab151ff48a6 | 063645fddba17020cfb5a6aecd553a73e6e7b368 | /src/main/java/demo/service/impl/LocationServiceImpl.java | cc828706ed60e4a2ac9a13cdf045be095483b4db | [] | no_license | huixiangye/running-location-service | 7ef8780dd0e13f88ee4811e3ae32151f3bb7b93e | 82c0e0710412c9b6e6e4fbdd9fdb22fef1260e30 | refs/heads/master | 2020-03-21T21:33:13.364247 | 2018-08-09T05:57:51 | 2018-08-09T05:57:51 | 139,069,820 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,389 | java | package demo.service.impl;
import demo.domain.Location;
import demo.domain.LocationRepository;
import demo.service.LocationService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.ste... | [
"hxy153530@gmail.com"
] | hxy153530@gmail.com |
7476a5b63d32dfc4461a8833ac8fdb221277ee32 | 8effa66fd73517132374fc16441f97780dcb3204 | /src/main/java/com/lujunjie/mediator/PartyMember.java | 8bf468b0e1d2c9575f14c22db261d80761140bdc | [] | no_license | Lujnjie/DemoDesignPatternt | 3230d0523d9cd8c16977a29d4c5e913e0435b222 | 77ad4d5efbd3f20fd4013c725a0aadb0717a9c0c | refs/heads/master | 2022-11-23T22:24:12.963854 | 2020-07-17T10:25:12 | 2020-07-17T10:25:12 | 278,973,912 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 167 | java | package com.lujunjie.mediator;
public interface PartyMember {
void joinParty(Party party);
void partyAction(Action action);
void act(Action action);
}
| [
"junjie.lu@showself.com"
] | junjie.lu@showself.com |
3d2cfc69bbdf3700e7b8b65c24ce0d461773e24e | 276bb8cca5c46a36a56f89a8e62497cf9399654e | /src/test/java/com/example/projectb/ProjectBApplicationTests.java | 625124c3675352f54cf5495af813ecd47b6d99b0 | [] | no_license | VMormoris/ProjectB | c04fe277ae0c600b01ab62875007f7af537bcb54 | e543aa4f352e970e6ef85fd0b22bc57996333526 | refs/heads/master | 2023-02-11T17:27:07.275684 | 2021-01-05T10:27:09 | 2021-01-05T10:27:09 | 326,952,414 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 214 | java | package com.example.projectb;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class ProjectBApplicationTests {
@Test
void contextLoads() {
}
}
| [
"vmormoris2014@gmail.com"
] | vmormoris2014@gmail.com |
6fafe97e7718b2a108234f581737d133b29791a0 | 32eadf6e58249fcc36492df12a956db2e11de86a | /test/generics/MS_2.java | c3ad0eeee5f7305b491698aaa35d8d1ade3ad47a | [] | no_license | saiema/MuJava | a9dd8f9a3180d6390ff3f18f28627af3c096c7c8 | a4e126f703f7c9ea8f9712e20ad903aea0eec4cf | refs/heads/master | 2022-09-19T03:00:35.748422 | 2022-09-12T18:04:32 | 2022-09-12T18:04:32 | 23,648,721 | 4 | 0 | null | 2019-04-17T12:14:56 | 2014-09-04T04:43:48 | Java | UTF-8 | Java | false | false | 196 | java | package generics;
import java.util.List;
public class MS_2 {
public void defMethod(List<Integer> param1){}
public void radiatedMethod() {
int i = 1;
int j = i++; //mutGenLimit 1
}
}
| [
"sgutierrez@dc.exa.unrc.edu.ar"
] | sgutierrez@dc.exa.unrc.edu.ar |
6ae630f8e544acf7b28e4b9e7ffdb2a6ca58bfc0 | 2309df7664bf6797884c629feeac1a702468b7c8 | /qunyingzhuan/src/main/java/com/mrrun/qunyingzhuan/ui/chapter6/view/ShadowView.java | 86fa0a6a5ab9075a911578dfed4cbba3b46956c8 | [] | no_license | 1218683832/QunYingZhuan | af5593ab6dc659ad3d3307cee08606c13def4e55 | 751683e5a0dcbbefc7994670f522b4508ab127f5 | refs/heads/master | 2021-01-25T09:52:37.624057 | 2018-02-28T18:23:35 | 2018-02-28T18:23:35 | 123,324,346 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,341 | java | package com.mrrun.qunyingzhuan.ui.chapter6.view;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.LinearGradient;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.graphics.PorterDuff;
impo... | [
"lipin@tclking.com"
] | lipin@tclking.com |
80bae3d8c9ae61177f560521537dd7d274402507 | c43b36b0b5082d47a886df96a0efefbc158e0c16 | /app/src/main/java/com/cogent/harikrishna/cogentcptopt/adapterClasses/Searchadapter.java | 7121c5bb5487b43ba27dc47d56d576c2f0715430 | [] | no_license | cptopt/cogentcptopt | 3fd5c60b91575f5966cf34542197bbd8452bbc03 | 2c04ff6fdda3c101a67472365fa755e72b531dda | refs/heads/master | 2021-01-09T06:15:01.816369 | 2016-08-20T09:15:48 | 2016-08-20T09:15:48 | 63,135,306 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,177 | java | package com.cogent.harikrishna.cogentcptopt.adapterClasses;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentStatePagerAdapter;
import com.cogent.harikrishna.cogentcptopt.subTabs.CompaniesTab;
import com.cogent.harikrishna.cogentcptopt.subTab... | [
"harikrishna516@hotmail.com"
] | harikrishna516@hotmail.com |
a45e9485bdee5b19d54773e526b04f134cfa4e71 | c213992f2840abf90f8b55ee4a5327827d57326a | /Library1_JSE2/src/library1/TBook.java | b47fcdaa2615f6fd178603bdd3c3612eb6b19f53 | [] | no_license | Koval92/ISM_Labs | 74ce7794fd65a3c21f7a1516f5e6be3b33baaaec | 688edad7bdeb3a7e88ab2aa362bbc20f1b5f8a2f | refs/heads/master | 2021-01-13T09:09:56.511041 | 2015-04-01T20:19:05 | 2015-04-01T20:19:05 | 32,418,250 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,732 | java | package library1;
import java.util.Date;
import java.util.Objects;
public class TBook {
private int number;
private TLoan loan = null;
TTitle_book mTitle_book;
public TLoan getLoan() {
return loan;
}
public void setLoan(TLoan loan) {
this.loan = loan;
}
public int ge... | [
"michal.kowalski1992@gmail.com"
] | michal.kowalski1992@gmail.com |
fde5027c87f2e024fec944c38dfd1c0076d015ba | d502ba2480aea84241f3bd98578a887849df9df8 | /karen.margaryan/StructuralPatterns/AdapterPattern/src/adapter/player/test/Main.java | b7e6f4a28df9372e8b4a5500715d0d0f6f743f9a | [] | no_license | synergytrainings/design-patterns | 821ba0e4c6c0c09ef892312256f6cdcf7e0736f4 | f0fd39de32c3f9f7f6b13377904a0c29589720bc | refs/heads/master | 2020-12-25T19:26:01.181499 | 2015-04-17T05:15:03 | 2015-04-17T05:15:17 | 25,835,095 | 4 | 3 | null | null | null | null | UTF-8 | Java | false | false | 311 | java | package adapter.player.test;
import adapter.player.MyUniversalPlayer;
public class Main {
public static void main(String[] args) {
MyUniversalPlayer universalPlayer = new MyUniversalPlayer();
universalPlayer.play("mp4", "PrideAndPrejudice.mp4");
universalPlayer.play("mp3", "AndreaBochelli.mp3");
}
}
| [
"mkaren84@yahoo.com"
] | mkaren84@yahoo.com |
5b5b82701bc0bd5daacfe01ec2060caf7e135f16 | 1e20b24cc8e09cc21fc4dc95ba2f89e20757e235 | /SpringMVC+Mybatis/Learn_Spring/src/dynamicProxy/UserBImpl.java | 2904cf1824a2ab0ed8c82b198fe768e81300a80a | [] | no_license | Cooper111/Spring_Note | b642d44c1fa9c483247a4a65a16a281940a10236 | 477ab1dd6a1d158342be90f6109e3396ca2a48b8 | refs/heads/master | 2020-12-03T21:39:27.008298 | 2020-02-06T19:01:14 | 2020-02-06T19:01:14 | 231,494,260 | 2 | 0 | null | null | null | null | GB18030 | Java | false | false | 274 | java | package dynamicProxy;
public class UserBImpl implements UserB{
@Override
public void save() {
System.out.println("正在保存B类用户……");
}
@Override
public void update() {
System.out.println("正在更新B类用户……");
}
}
| [
"635257243@qq.com"
] | 635257243@qq.com |
5ce46c58a0f6e2e20b0838532820875cf76ac7fe | 16416e8e889a80fb1c66e433085c1d9a3bc96d8f | /app/src/main/java/id/ac/unud1805551035/Mahasiswa.java | ebc1116d50f37836265db2d42edcada95ddc3c74 | [] | no_license | adyahoo/progmobRecycler | 992f8217816c5dd312cbd2c8e50da0740bba09e3 | 4e8c15690bc0c7ba45c65886cb121794f963ab4f | refs/heads/master | 2022-04-15T16:00:44.086104 | 2020-04-14T15:32:34 | 2020-04-14T15:32:34 | 255,646,740 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 662 | java | package id.ac.unud1805551035;
public class Mahasiswa {
private String nama;
private String nim;
private String email;
public Mahasiswa(String nama, String nim, String email){
this.nama = nama;
this.nim = nim;
this.email = email;
}
public String getNama(){
retur... | [
"maulidy.ady666@yahoo.com"
] | maulidy.ady666@yahoo.com |
82615f904f08b9f768aa05337397305492ed4ba6 | 4ebda563d15f6158647731b7fe15225ec4c6df52 | /src/main/java/com/guigu/restaurant/user/service/impl/UserServiceimpl.java | 903a18a425a3bf56ab54a9a70badb2595f5a76b8 | [] | no_license | guiguTest/RestaurantTest | f270b80bc417b49cd0e5ea52c669ea7adb0dca9d | c84177c31537b0806c3f6d92e38afef639cc7496 | refs/heads/master | 2021-09-10T05:46:35.606615 | 2018-03-21T07:57:33 | 2018-03-21T07:57:33 | 126,103,906 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,503 | java | package com.guigu.restaurant.user.service.impl;
import java.util.List;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
import com.guigu.restaurant.mapper.UserMapper;
import com.guigu.restaurant.po.User;
import com.guigu.restaurant.po.UserExample;
import com.guigu.restaura... | [
"yhtx-22@tx15"
] | yhtx-22@tx15 |
b73b7f244133efb372d574d2b36fc2de10de5c50 | 421f0a75a6b62c5af62f89595be61f406328113b | /generated_tests/model_seeding/51_jiprof-com.mentorgen.tools.profile.instrument.clfilter.CustomMultiClassLoaderFilter-0.5-8/com/mentorgen/tools/profile/instrument/clfilter/CustomMultiClassLoaderFilter_ESTest_scaffolding.java | 56d35a26be450bafe6aef6108bff2a4a1df40381 | [] | 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 | 582 | java | /**
* Scaffolding file used to store all the setups needed to run
* tests automatically generated by EvoSuite
* Tue Oct 29 16:19:11 GMT 2019
*/
package com.mentorgen.tools.profile.instrument.clfilter;
import org.evosuite.runtime.annotation.EvoSuiteClassExclude;
import org.junit.BeforeClass;
import org.junit.Befo... | [
"pderakhshanfar@bsr01.win.tue.nl"
] | pderakhshanfar@bsr01.win.tue.nl |
67f84cbfb68c20e4706e6092154bc0560dfd2683 | 0ca7e7d714da0bd969e381c92a46be74edf3219b | /src/com/jeecms/bbs/dao/impl/BbsMagicLogDaoImpl.java | a70afc4dbe7cf92fc923be1d703d6707a13fdf93 | [] | no_license | huanghengmin/jeebbs | 1bf6ba3eb2ab9fd3020b1230ccaf530cbc7c45f8 | cf8494cdfb1539f1503ff688dbbb23e203a67ee4 | refs/heads/master | 2020-12-31T05:55:32.737038 | 2016-04-18T08:09:59 | 2016-04-18T08:09:59 | 56,489,180 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 1,124 | java | package com.jeecms.bbs.dao.impl;
import org.springframework.stereotype.Repository;
import com.jeecms.bbs.entity.BbsMemberMagic;
import com.jeecms.bbs.dao.BbsMemberMagicDao;
import com.jeecms.common.hibernate3.Finder;
import com.jeecms.common.hibernate3.HibernateBaseDao;
import com.jeecms.common.page.Pagination;
@Rep... | [
"465805947@QQ.com"
] | 465805947@QQ.com |
4f46d601452ca1187c8cdba1958a20bb24e5c485 | 3fd2663253a02cca847eece4405a1df4e49ded48 | /src/main/java/com/uber/uberapi/exceptions/InvalidPassengerException.java | 8b209b9767564a6c6acf829a19a5688dfdd0f15d | [] | no_license | mrgarg2/uberapi | 26aec3beb0696af2be3a8a571cfcddf7c68855b4 | d785dce3903317e38f707ed1f11a1c51cb664a04 | refs/heads/main | 2023-01-22T15:01:09.330883 | 2020-11-28T10:07:28 | 2020-11-28T10:07:28 | 316,700,909 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 188 | java | package com.uber.uberapi.exceptions;
public class InvalidPassengerException extends UberException {
public InvalidPassengerException(String message) {
super(message);
}
}
| [
"sajal.garg@nagarro.com"
] | sajal.garg@nagarro.com |
63ce68d2ea5b500949541be737ccffaa74c1951c | 6febe2b8b5d327dcd4c8856a6ba366162b1ab8d4 | /src/main/java/cn/sp/GsAsyncMethodApplication.java | 499b499f738aaa117a5101e13b158b8d9424e9ee | [] | no_license | 2YSP/gs-async-method | 71412d18cf43e898bef6ba3b222c6fa3216da41b | 86b1900c8917d60c3c2a428bced378d8cd205e5a | refs/heads/master | 2021-09-05T04:07:56.871241 | 2018-01-24T03:07:36 | 2018-01-24T03:07:36 | 118,702,941 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 954 | java | package cn.sp;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Bean;
import org.springframework.scheduling.annotation.EnableAsync;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecuto... | [
"ship@ubox.cn"
] | ship@ubox.cn |
53115b97327d7868f9006bf7b9ca675f37e1a9e0 | abbc7c1c51e49c00c1a154cc72fbf685349690c7 | /EventHandling/Main.java | 7fbc2f3ef66c329a748de1194dc867ebecce153a | [] | no_license | MaheshHada/Popl-Assignments | 6a9ab3c6f7c75b1cb586c741a7a1a8c40eddb860 | 16287be07de27e65a0cf8c31903a652cf7f0c733 | refs/heads/master | 2021-07-24T15:49:50.826529 | 2017-11-06T01:41:00 | 2017-11-06T01:41:00 | 109,520,464 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 176 | java | import java.lang.*;
public class Main {
public static void main(String[] args) throws Exception {
new Tab("www.google.com", 10);
new Tab("www.amazon.com", 5);
}
}
| [
"maheshhada338@gmail.com"
] | maheshhada338@gmail.com |
e5e2f436c1ea74c9750fb36f427ba0e9120be7f7 | e7af8f145851cf0efd31f78b20bf85723f078ef3 | /src/main/java/be/ceau/chart/dataset/PieDataset.java | eee62b111023abd3ff3f5b869712b337824b25f7 | [
"Apache-2.0"
] | permissive | mdewilde/chart | 1b157c1357c90d873245360b7e64da281539d000 | 7d896c8c316a3c62bfcd0b75955bf92c559708cf | refs/heads/master | 2023-08-17T14:18:09.655883 | 2023-08-06T16:41:47 | 2023-08-06T16:41:47 | 37,681,702 | 115 | 56 | Apache-2.0 | 2023-08-06T16:20:22 | 2015-06-18T19:59:40 | Java | UTF-8 | Java | false | false | 2,272 | java | /*
Copyright 2023 Marceau Dewilde <m@ceau.be>
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 wr... | [
"m@ceau.be"
] | m@ceau.be |
b83316cc3cbff1a33a403b89ae37e80923ab025f | 40c08131c55eeb4e3ea91536358bc6cf3d029c22 | /1541. Minimum Insertions to Balance a Parentheses String.java | 78f9fbaf1dce9b84e7e4c8e58829cdb240716042 | [] | no_license | xueyaohuang/RoadToCodeFarmer | 8840c7761cc48b69c67991aca063762d3c3dfb46 | a08e5bd2dec3e6c38dab5893a324e2dd594f4e82 | refs/heads/master | 2022-08-31T19:33:22.568363 | 2022-08-10T03:10:45 | 2022-08-10T03:10:45 | 139,095,065 | 3 | 5 | null | 2021-09-29T06:44:02 | 2018-06-29T03:12:49 | Java | UTF-8 | Java | false | false | 2,252 | java | /*
Use a stack to keep opening brackets. If you face single closing ')' add 1 to the answer and consider it as '))'.
If you have '))' with empty stack, add 1 to the answer, If after finishing you have x opening remaining in the stack, add 2x to the answer.
*/
class Solution {
public int minInsertions(String s) {
... | [
"noreply@github.com"
] | xueyaohuang.noreply@github.com |
39f4aa6ed8ffbedacb2f77eeea54191c182a87f9 | 5a5c9d7f0e5047254d03c03814b13426b06dc7b3 | /src/com/jason/designPatterns/complex/observe/QuackObservable.java | ae402081244e36c841634545f93784c0985446f6 | [] | no_license | cheng-jason/DesignPatterns | 467a128f53672419fe897f2377fe2f6898729202 | ecb745e5ff3fe78ee3836ab7608f061723335a55 | refs/heads/master | 2020-03-08T07:33:03.174468 | 2018-12-20T06:44:20 | 2018-12-20T06:44:20 | 127,996,967 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 232 | java | package com.jason.designPatterns.complex.observe;
/**
* 观察者模式
* @author liuwch
* @creation 2018-8-29
*/
public interface QuackObservable {
public void registerObserver(Observer ob);
public void notifyObserver();
}
| [
"liuwancheng@inspur.com"
] | liuwancheng@inspur.com |
0cedc42b21f8293fb8058c55da63c332b7354b25 | 099c6a54225e9ba62ec13258f1b2773a3d238981 | /app/src/main/java/au/com/kbrsolutions/melbournepublictransport/adapters/StopsAdapter.java | fe39ed2d4268e4f84e0195c7f7c13195142da31c | [] | no_license | brugienis/Capstone-Project | 0e48a989add106af6bb219514ef39e2d6f76bbe3 | df855d45c22eed289a4a3669b9c4351135e5ddfd | refs/heads/master | 2020-05-21T22:15:48.503658 | 2018-01-09T05:53:46 | 2018-01-09T05:53:46 | 63,374,794 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,006 | java | package au.com.kbrsolutions.melbournepublictransport.adapters;
import android.content.Context;
import android.database.Cursor;
import android.support.v4.widget.CursorAdapter;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.wid... | [
"bohdan@rugienis.com"
] | bohdan@rugienis.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.