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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
97da1386c9ade798b121939e1d56b6e07ec2a32e | 6b9e9f1c5e018ed8c60143b017df7bea80ad88f8 | /leetcode_notes/leetcode_cn/0801.使序列递增的最小交换次数/0801-使序列递增的最小交换次数.java | e06055eefb1676ed93cc03f7f251ba378adbfe59 | [] | no_license | sunlate/java_notes | 80057574d81864f823a8fe3ecf1db19c22561975 | ea195c9ddaa94d829d438c8d47348d7ebbf19004 | refs/heads/master | 2020-12-31T22:53:06.951147 | 2020-02-06T03:23:40 | 2020-02-06T03:23:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 842 | java | class Solution {
// 801
// Reference: wangzi6147 from leetcode
public int minSwap(int[] A, int[] B) {
// Time: O(n) Sapce: O(1)
if(A == null || B == null || A.length != B.length) return -1;
int swapRecord = 1, fixRecord = 0;
for(int i = 1; i < A.length; i ++) {
if... | [
"rli@uei.com"
] | rli@uei.com |
b82127cd4d2b5d0ade2ed5db55cfc2a8d18adea8 | dbd405eed0f4a621d2ebcf5d8a879aaee69136e8 | /main/user-refs/src/main/java/org/osforce/connect/dao/discussion/TopicCategoryDao.java | b6831e5623bfa5756f4808b821941c010c476e34 | [] | no_license | shengang1978/AA | a39fabd54793d0c77a64ad94d8e3dda3f0cd6951 | d7b98b8998d33b48f60514457a873219776d9f38 | refs/heads/master | 2022-12-24T02:42:04.489183 | 2021-04-28T03:26:09 | 2021-04-28T03:26:09 | 33,310,666 | 0 | 1 | null | 2022-12-16T02:29:57 | 2015-04-02T13:36:05 | Java | UTF-8 | Java | false | false | 362 | java | package org.osforce.connect.dao.discussion;
import org.osforce.connect.entity.discussion.TopicCategory;
import org.osforce.spring4me.dao.BaseDao;
/**
*
* @author gavin
* @since 1.0.0
* @create Feb 12, 2011 - 8:10:46 AM
* <a href="http://www.opensourceforce.org">开源力量</a>
*/
public interface TopicCategoryDao ex... | [
"shengang1978@hotmail.com"
] | shengang1978@hotmail.com |
ddf52bcbd11cfaa35bca0b78a890bc4f060c729c | 025ec5b4ada8ba77cc8c844af33533e60583bc4d | /generics/solution/ex30/Ex30.java | a36566ba687091060c301ac732a21e84995ed029 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | shalk/TIJ4Code | 3ec3aa1772d6c145fba5f8c44fcab20744624db8 | 23190a4a810b675c5320d37d716ab02835745600 | refs/heads/master | 2021-01-21T14:08:09.536617 | 2017-11-13T07:18:43 | 2017-11-13T07:18:43 | 59,626,801 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,012 | java | package generics.solution.ex30;
import generics.Holder;
import static net.mindview.util.Print.*;
class Holders {
public static <T> Holder<T> generator( T t) {
Holder<T> h = new Holder<T>();
h.set(t);
return h;
}
}
public class Ex30 {
public static void main(String[] args) {
Holder<Integer> h1... | [
"xshalk@163.com"
] | xshalk@163.com |
bcb35b90b42ff3c54dd3198fbd1604fbf2912b2c | 03122bad70999d1638dcaac5bd5d598682793c08 | /src/test/java/Testcase/Railways/TestBase.java | 7470f2f50c03155a3af8d50f0b3b4b883f28f53e | [] | no_license | Nguyenlenhatquang98/NguyenQuang_Railway_Automation | cccd60d520b06312512ebbed5eb804142225463f | 1b6872af66eb1107648f708a4e8e6869ec791008 | refs/heads/master | 2023-06-17T01:05:24.382520 | 2021-07-16T08:55:23 | 2021-07-16T08:55:23 | 381,327,195 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,087 | java | package Testcase.Railways;
import Common.Common.Utilities;
import Common.Constant.Constant;
import Common.WebDriverManager.WebDriverManager;
import Model.Account;
import Model.Ticket;
import PageObjects.Railways.*;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
public class Test... | [
"nguyenlenhatquang98@gmail.com"
] | nguyenlenhatquang98@gmail.com |
5cf896aa724993acb3b7feda522b00ba07abd7ae | a6a2dc933b03e70ee9d8f6e8610a9a4c28f90b8d | /src/main/java/app/entity/Department.java | ac622983087cea5401c05854dd6585c2dabc08ce | [] | no_license | bganem/applus | f08eead342410b3c7b4d9a5cec89b16acdd12bb9 | fb006e44546ee502746dd92af3e64b0f893d2f69 | refs/heads/master | 2020-04-07T21:41:43.021934 | 2018-11-22T18:30:32 | 2018-11-22T18:30:32 | 158,737,611 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,776 | java | package app.entity;
import java.io.*;
import javax.persistence.*;
import java.util.*;
import javax.xml.bind.annotation.*;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonFilter;
import cronapi.rest.security.CronappSecurity;
import org.eclipse.persistence.annotations.*;... | [
"bruno_ganem@msn.com"
] | bruno_ganem@msn.com |
1125bc58e4b6bc1174e15ae1e426edf22bcdd8f6 | 1702ba89c092d0533f374925e8e06797184a189a | /webgephi-server/src/main/webapp/WEB-INF/classes/cz/cokrtvac/webgephi/webgephiserver/core/annotations/Available.java | 69f9932777e35c48fa465fc77d19d48df24f14e9 | [] | no_license | Beziks/webgephi | f5f5dd5d8cb6c255d9bb5778804b1bbdbb61a390 | 9897d1a0cb0f3c353c0e316d93a4111786beb41d | refs/heads/master | 2020-04-28T08:25:00.638261 | 2014-06-26T17:10:27 | 2014-06-26T17:10:27 | 16,778,684 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 505 | java | package cz.cokrtvac.webgephi.webgephiserver.core.annotations;
import javax.inject.Qualifier;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* User: Vaclav Cokrt, beziks@gmail.com
* Date: 4.6.13
* ... | [
"beziks@gmail.com"
] | beziks@gmail.com |
e8d1aa10af3745f6c2a8e9a87408b6197f919537 | ff7e44516bf81dae4c803f6f6f62ea05d33f9177 | /slaesvenky/src/main/java/com/mnt/esales/bean/ReportBean.java | ba9fda84d869716fa2357a827cee1cf21479da58 | [] | no_license | venkateshpavuluri/esales | 8e461ee6bab493d361434f28cdac74bd45cc395f | dac0f65187b8ebe258e2705df15f32dbcfe9c8c1 | refs/heads/master | 2016-09-16T02:56:34.248773 | 2014-08-10T13:11:31 | 2014-08-10T13:11:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,447 | java | /**
*
*/
package com.mnt.esales.bean;
/**
* @author Devi
*
*/
public class ReportBean {
private String date;
//daily Sales Report loc wise
private String sdate;
private String branchId;
private String billId;
private String billDate;
private String mobileNo;
private String totalMrp;... | [
"pavuluri.venki@gmail.com"
] | pavuluri.venki@gmail.com |
4f1eadea69498640edaf05eeae3eced6f95fda01 | a08ee5b29e2c3de30148dfeeee6b33302b610e14 | /JC_Lesson5/AppData.java | b7de79c4ef1f15a340e6680d118577fa1d26d563 | [] | no_license | LoveZakharova/GB_2.8 | 9438b36a79678bbf074eabe8582b60eac712d535 | 10579e972bf701f9d286cd1c2b5802765612cd2a | refs/heads/master | 2023-09-02T12:15:29.487761 | 2021-11-21T15:08:49 | 2021-11-21T15:08:49 | 428,719,566 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,339 | java | package JC_Lesson5;
import java.io.*;
public class AppData {
private static class Table implements Serializable {
public String[] header;
private int[][] data;
public Table(String header, int data) {
this.header = header;
this.data = data;
}
public... | [
"zakharovalove@mail.ru"
] | zakharovalove@mail.ru |
997cddd07eea121c141c36737e853dcf75a139d2 | 4bcb1aca03adb06f579383eedd1e8e2174ea609f | /microservice-file-upload/src/main/java/com/catalpa/example/controller/FileUploadController.java | 8bc37e412e5ea7c68b0badeeb5d20f497b49d5ae | [] | no_license | bruce-wan/spring-cloud-study | 9ecff7a2daa6f1fa092e2dedfe0c8b7584926860 | e52613aaf82a8f74c51cfac7f47600e6b6d130ff | refs/heads/master | 2021-07-07T07:39:51.582384 | 2017-09-29T09:27:50 | 2017-09-29T09:27:50 | 105,093,474 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,097 | java | package com.catalpa.example.controller;
import org.springframework.util.FileCopyUtils;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation... | [
"165646633@qq.com"
] | 165646633@qq.com |
310e38f9f64bf57d61ddab4f26d562bd05b154e3 | 036728cfb446121a8521d292418c0a9616b999cf | /src/test/java/com/niuliuplay/BlogApplicationTests.java | 478ea4a8a33507d002b90d72ef5f7be00130a3d0 | [] | no_license | niuliuplay/blog | c66c70d8d6a4996440db6a712010c4e849407aad | f0f1b90ce71a92c7468077eda62c2bd8dda807c6 | refs/heads/master | 2020-03-19T21:14:37.849057 | 2018-06-27T06:43:59 | 2018-06-27T06:43:59 | 136,933,900 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 329 | java | package com.niuliuplay;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class BlogApplicationTests {
@Test
public void contextLoads()... | [
"liuhuihail@163.com"
] | liuhuihail@163.com |
dc01aa6fc8869c3e1b9d73fb125eec87c91a3c1d | 3053ca682e4feaf51836b74f53791cfd41c9363d | /src/main/java/com/feng/work/schedule/service/ScheduleService.java | 3d1cce5320ea5268318e71f78702a6341bdda97f | [] | no_license | fengzheng88/ssm | d2ebefc48565def503ebafc27f421bc583c85fa1 | 34bd41f4085e7aade042f1ab42594ce82e1b1eb9 | refs/heads/master | 2021-06-25T07:46:26.627297 | 2017-08-23T11:19:31 | 2017-08-23T11:19:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 336 | java | package com.feng.work.schedule.service;
import com.feng.work.entity.ScheduleEntity;
import java.util.List;
import java.util.Map;
/**
* Created by jarry on 2017/6/20.
*/
public interface ScheduleService {
public List<ScheduleEntity> getAllSchedule();
public List<ScheduleEntity> findByCondition(Map<String, ... | [
"383165400@qq.com"
] | 383165400@qq.com |
74c07bd478d01e35b979673195f023fd55b9212c | 97ce318718b129a93e69e4b0490447ba13f9f4ca | /src/main/java/com/epam/springadvanced/domain/enums/TicketState.java | 57bc3f69ffd16ff3d320657737e7cd344f24ade4 | [] | no_license | addonin/spring-advanced | 8f639d47ccc4f616312a7ec62b0404198b283821 | 40c89dd521d0c0146853e9b8d74eef4932fb888a | refs/heads/master | 2022-12-16T14:10:43.237999 | 2022-04-17T19:54:55 | 2022-04-17T19:54:55 | 54,463,786 | 0 | 0 | null | 2022-12-06T17:23:06 | 2016-03-22T09:48:09 | Java | UTF-8 | Java | false | false | 139 | java | package com.epam.springadvanced.domain.enums;
/**
* @author dimon
* @since 27/03/16.
*/
public enum TicketState {
FREE, BOOKED
}
| [
"dmitrii.adonin@gmail.com"
] | dmitrii.adonin@gmail.com |
4d4a4821f6aa1026659b361ef9120db277bdfc2b | f2f8ef12fdb58c4965ab7594543c3bad9c522992 | /src/main/java/com/tinkerpop/blueprints/pgm/impls/tg/TinkerElement.java | dcbcf67515dccac0f9008f4d82537800d1023931 | [
"BSD-3-Clause"
] | permissive | germanviscuso/blueprints | 7c08e7f6db7930cd549e92f63ea4c5ba6b4f8a8d | 1e04d2bc7be0835aed19130d8525f2fc9f81782c | refs/heads/master | 2020-05-20T13:11:38.546867 | 2011-04-06T23:54:04 | 2011-04-06T23:54:04 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,733 | java | package com.tinkerpop.blueprints.pgm.impls.tg;
import com.tinkerpop.blueprints.pgm.Edge;
import com.tinkerpop.blueprints.pgm.Element;
import com.tinkerpop.blueprints.pgm.impls.StringFactory;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
/**
* @author Marko A. Rodriguez (http://markorodrigue... | [
"okrammarko@gmail.com"
] | okrammarko@gmail.com |
7ccdc1c2ea2f3dd69ff1393afadfdfd78f02cbbe | 7ced4b8259a5d171413847e3e072226c7a5ee3d2 | /Workspace/InterviewBit/Two Pointers/remove-duplicates-from-sorted-array.java | 3e2168101ebb41c583cab45c7c30a450a55d626d | [] | no_license | tanishq9/Data-Structures-and-Algorithms | 8d4df6c8a964066988bcf5af68f21387a132cd4d | f6f5dec38d5e2d207fb29ad4716a83553924077a | refs/heads/master | 2022-12-13T03:57:39.447650 | 2020-09-05T13:16:55 | 2020-09-05T13:16:55 | 119,425,479 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 355 | java | public class Solution {
public int removeDuplicates(ArrayList<Integer> a) {
int i,j,ival=a.get(0),jval=a.get(0);
for(i=1,j=1;j<a.size();j++){
jval=a.get(j);
if(ival!=jval){
a.set(i,jval);
i++;
ival=jval;
}
}
... | [
"tanishqsaluja18@gmail.com"
] | tanishqsaluja18@gmail.com |
ce10d56b1de7e1f9bc8114b1a8c21bfce4173e8c | b75487ea56426c906b6bd9442a1714efff9ab889 | /src/main/java/com/ss/oauth2/model/AuthenticationWebRequest.java | 21da135fee4f70d4b748694f77892300616c984c | [] | no_license | SimplifySalary/ms-oauth2 | 33cb68145872a5387355547728204c1261f797ee | 55bf49fb869321d94e3938fd81e4049b58403d8f | refs/heads/master | 2020-07-24T09:04:58.170243 | 2019-10-03T15:36:08 | 2019-10-03T15:36:08 | 207,876,325 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 526 | java | package com.ss.oauth2.model;
import lombok.Data;
import java.io.Serializable;
/**
* @author biandra
*/
@Data
public class AuthenticationWebRequest implements Serializable {
private String nombre_canal;
private String rut;
private String digito_verificador;
private String clave_x;
private Strin... | [
"maxi.britez@redb.ee"
] | maxi.britez@redb.ee |
5980d11ce96e3570990ae63fbc4e102e6df7c2e4 | 35c611b97fa3ec607dae9e7fdbb27d5c7df8fb43 | /bqmobile/native/android/bqmobile/src/com/yonyou/ump/BQLoginPageActivity.java | 53db9153f8b7ec73b09effc7570872cfadeded28 | [] | no_license | wangqzh/umbqmobile | 7f480396415268add252d2754fe4f2b6f8ce8b07 | 8e067c3a4d57c6a40f5b08b89c6433b02ed11c55 | refs/heads/master | 2021-01-13T01:44:31.497150 | 2014-04-30T09:10:02 | 2014-04-30T09:10:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 13,016 | java | package com.yonyou.ump;
import com.yonyou.uap.um.base.*;
import com.yonyou.uap.um.common.*;
import com.yonyou.uap.um.third.*;
import com.yonyou.uap.um.control.*;
import com.yonyou.uap.um.core.*;
import com.yonyou.uap.um.binder.*;
import com.yonyou.uap.um.runtime.*;
import com.yonyou.uap.um.lexer.*;
import com.yonyou.... | [
"27696830@qq.com"
] | 27696830@qq.com |
7cefc7b713e9e24649fd40393eafb43b9f873198 | 306c665cbe4c9680eca8ae58c331752d5c4aea2b | /03-big_data_sxt3/src/com/sxt/transformer/mr/nu/MyNewInstallUserMapper.java | eec6820860d957f9812b10d7ce8e3a855fc60c35 | [] | no_license | ldp1063891253/logpro | 0804b9a3214a917de31ba81e0c1198b2a524757f | a66b81f6390aecad219a4de3b35e899b9620a00c | refs/heads/master | 2020-09-20T23:58:44.727519 | 2019-11-28T09:57:18 | 2019-11-28T09:57:18 | 224,622,381 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,138 | java | package com.sxt.transformer.mr.nu;
import com.sxt.common.DateEnum;
import com.sxt.common.EventLogConstants;
import com.sxt.common.GlobalConstants;
import com.sxt.common.KpiType;
import com.sxt.transformer.model.dim.StatsCommonDimension;
import com.sxt.transformer.model.dim.StatsUserDimension;
import com.sxt.transforme... | [
"15525743169@163.com"
] | 15525743169@163.com |
270fd715d40af318bb105581ac489214219c7bc5 | 53bab11f379b3e625d872b9dd8670dc12e487a1f | /oauth2-server-resource/src/main/java/personal/starzonecn/example/oauth2/resource/config/security/CustomAuthenticationEventPublisher.java | 8e05d0d3e8d59e37eb57a5e0f2ad3c59af5a8881 | [] | no_license | StarzoneCN/demo-oauth2 | 68b6a0d69143bdbc9561e04c3d513e355bc843bf | 1d1eacd8c4ec2f1772eea1c9d769e83eafc793df | refs/heads/master | 2021-10-11T22:51:19.991721 | 2019-01-30T08:22:37 | 2019-01-30T08:22:37 | 111,632,715 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 950 | java | package personal.starzonecn.example.oauth2.resource.config.security;
import org.springframework.context.annotation.Primary;
import org.springframework.security.authentication.AuthenticationEventPublisher;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.AuthenticationEx... | [
"lihongxing@bluemoon.com.cn"
] | lihongxing@bluemoon.com.cn |
d04749b3975f153b358fe59330517606c8680e59 | 09af2ede97941c613967de9d9d37f8773a828f90 | /src/test/java/Junit5/InterfacesTest.java | d3008a0fff9bec9849b66906d36348c149e548e0 | [] | no_license | fermt18/poc-junit5 | dcee522d81cb11118c4f023cf4d45278b0cb081a | c0e6017db8fafa7936ab7727c96d64f093d3554f | refs/heads/master | 2022-12-30T11:25:06.153448 | 2019-12-30T09:32:21 | 2019-12-30T09:32:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 490 | java | package Junit5;
import static org.junit.jupiter.api.Assertions.assertEquals;
import Junit5.TestInterfaces.TestInterfaceDynamicTestsDemo;
import Junit5.TestInterfaces.TestLifeCycleLogger;
import Junit5.TestInterfaces.TimeExecutionLogger;
import org.junit.jupiter.api.Test;
class InterfacesTest implements Test... | [
"ferran.montes@mango.com"
] | ferran.montes@mango.com |
2deb07e2b0dc512eaf893ffbe3f55cbbae603a85 | fe1c558c833798ccbff90b215705612ef7aae3cb | /shiro-example-chapter23-client/src/main/java/com/github/zhangkaitao/shiro/chapter23/client/ClientRealm.java | a6800a2be98006de71884c3c48300149ff25ae77 | [] | no_license | rulinggbc/shiro-example | 66af0e82f2cb9507afd93864c8d9ef1cc73df2b0 | 74deebfd5605445e21c351095f3779e7c62d1449 | refs/heads/master | 2021-01-21T07:45:19.756250 | 2014-03-14T07:45:54 | 2014-03-14T07:46:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,677 | java | package com.github.zhangkaitao.shiro.chapter23.client;
import com.github.zhangkaitao.shiro.chapter23.remote.PermissionContext;
import com.github.zhangkaitao.shiro.chapter23.remote.RemoteServiceInterface;
import org.apache.shiro.authc.AuthenticationException;
import org.apache.shiro.authc.AuthenticationInfo;
import org... | [
"zhangkaitao0503@gmail.com"
] | zhangkaitao0503@gmail.com |
4ee5332bcc428e01c6d87aec0e87c602a9b485e8 | 6816f603e920677b6b1094270909efd68fb5f767 | /automatas/proyecto/Analizador lexico- sintactico/GUICompilador/src/guicompilador/GUICompiladorC.java | c43ba6935b995c48fe48695255129cd953a413bb | [] | no_license | LuisEnriqueSosaHernandez/Automatas-Compilador | f7f4a147a2a6ff830c8019f2b3fc7bc14fb6f4bc | 6a49b5f34b2d838d9ac250f1bb549454b55a6606 | refs/heads/master | 2021-01-25T01:03:29.035351 | 2018-03-04T21:38:13 | 2018-03-04T21:38:13 | 94,718,631 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 17,130 | 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 guicompilador;
import java.io.BufferedReader;
import java.io.DataInputStream;
import java.io.FileInputStream;
import java.io.... | [
"kiquesasuke@gmail.com"
] | kiquesasuke@gmail.com |
5c8dd04c57ff3e7572d11742030bdef073394ac0 | e62526bbf7f1f3ffb3dbfb781e59cd2a9480889a | /ad-service/ad-search/src/main/java/com/jh/search/controller/SponsorFeignController.java | 82668a0f8043e9e9b67fc2141260fa4530782dcf | [] | no_license | 457376245/ad-system | e5611499d9a9df132a6aef39feafc8ada1ddb98c | cdef272896415c97e11f3c5397681b053f8ce82d | refs/heads/master | 2023-02-08T22:29:17.666351 | 2021-01-02T12:54:05 | 2021-01-02T12:54:05 | 325,498,200 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 935 | java | package com.jh.search.controller;
import com.jh.common.exception.AdException;
import com.jh.common.vo.CommonResponse;
import com.jh.search.service.feign.SponsorFeign;
import com.jh.sponsor.entity.AdPlan;
import com.jh.sponsor.vo.AdPlanGetRequest;
import org.springframework.web.bind.annotation.PostMapping;
import org.s... | [
"457376245@qq.com"
] | 457376245@qq.com |
677d1f43ac3fad4500d35769f5cf311579c4c748 | e50a8e9ebbfde544faffb6e9432a115b95894e4e | /app/src/main/java/com/jason/www/utils/LogUtils.java | 6dd053da32698fdc2f1a48d0f48cbcbe487b88f6 | [] | no_license | Jason0501/WanAndroid | 60baa51de93de5b86b3e52d4826f3e09546489ec | 7f977372994c53f8c0ed6250aa82a631403d6b35 | refs/heads/master | 2023-03-11T00:51:23.918695 | 2021-02-26T06:26:21 | 2021-02-26T06:26:21 | 284,658,719 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 860 | java | package com.jason.www.utils;
import android.util.Log;
import com.jason.www.BuildConfig;
/**
* @author:Jason
* @date:2020/7/28 10:48
* @email:1129847330@qq.com
* @description:
*/
public class LogUtils {
private static final String TAG = "WanAndroid";
public static void i(String log) {
i(TAG, log... | [
"1129847330@qq.com"
] | 1129847330@qq.com |
298e6c76f31d6a1a78e2e9862b2d3c49a41b2d6c | bcbb14fbca8cae5386c0dcb8f15d36c830931d91 | /src/no/systema/overview/ufortolledeoppdrag/controller/UoppdragGateController.java | c748e1de97f55e7afaa96e4a91cc5ff037b32d92 | [] | no_license | SystemaAS/espedsg | b4457ce5e5ea6fe56efd8475db82b33e443089d3 | 6ce983826a1e696c11ff568a298bde9cf8d91d53 | refs/heads/master | 2020-04-05T18:29:45.311582 | 2018-04-25T08:10:48 | 2018-04-25T08:10:48 | 53,931,392 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 19,406 | java | package no.systema.overview.ufortolledeoppdrag.controller;
import java.io.File;
import java.util.*;
import org.apache.log4j.Logger;
import org.springframework.validation.BindingResult;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.stereotype.Controller;
import org.springframework.web... | [
"oscar@systema.no"
] | oscar@systema.no |
ce1ddcecca2771e4632c10da1c34c12f96739a98 | f59579d76a8a5beceeb000998ec608b0c3e894ba | /runner/src/main/java/org/ananas/runner/kernel/job/JobRepository.java | b601c146dcefb07ffd744654d97f187a362986c2 | [
"Apache-2.0"
] | permissive | y44k0v/ananas-desktop | 9a081e68b932daa4f2d8ad20dc61dca62105af57 | 129d05b27eb89059e70916c86cc74d32c8dd5f4f | refs/heads/master | 2022-06-05T01:21:49.752408 | 2019-08-15T00:11:22 | 2019-08-15T00:11:22 | 202,634,275 | 0 | 0 | Apache-2.0 | 2022-05-12T01:29:14 | 2019-08-16T01:11:08 | Java | UTF-8 | Java | false | false | 687 | java | package org.ananas.runner.kernel.job;
import java.util.List;
import java.util.Set;
public interface JobRepository {
/**
* Get job by id
*
* @param id
* @return
*/
Job getJob(String id);
/**
* Get all jobs
*
* @return
*/
Set<Job> getJobs(int offset, int n);
/**
* Get jobs by ... | [
"daily.bhou@gmail.com"
] | daily.bhou@gmail.com |
5f32110238cb557f22ee6fce8610f4177ba5f38c | dde5f1e7014502d92331a9dd56c1c9ee3f8590df | /src/RestTesting.java | 877014c4d30ffa9130cd54a5b401bd39defaa641 | [] | no_license | sanjeet1211/newpipeline | 23e627cca48412e06810e69c88bf9b41ae6065da | c82ab6a401a0c15b92e1bff4a139d4e818c25dca | refs/heads/master | 2023-04-27T12:39:27.742340 | 2019-07-08T04:42:44 | 2019-07-08T04:42:44 | 194,469,500 | 0 | 0 | null | 2023-04-14T17:50:16 | 2019-06-30T03:09:22 | HTML | UTF-8 | Java | false | false | 615 | java | import java.util.Map;
import org.json.simple.JSONObject;
import org.testng.annotations.Test;
import io.restassured.RestAssured;
import io.restassured.response.Response;
import io.restassured.specification.RequestSpecification;
/**
*
*/
/**
* @author sanjeet
*
*/
public class RestTesting {
... | [
"sanjeet.k.thakur@gmail.com"
] | sanjeet.k.thakur@gmail.com |
642470397be210cd562640578c0b6ed0cbc27868 | b8662467ce3c2e583b929e5e34b64eac7f4d3b84 | /src/main/java/be/aga/dominionSimulator/cards/SacrificeCard.java | cac133507ebe89675ba6f3b44c04badbd44d70a5 | [
"MIT"
] | permissive | Geronimoo/DominionSim | 2c6d913aabde60b28435a1d6a273d0960e159670 | 6dca3383be3ec9ca7ee140c0e9c4b71ca1c0a26e | refs/heads/master | 2022-07-22T23:26:17.572128 | 2022-07-20T10:07:54 | 2022-07-20T10:07:54 | 66,362,907 | 44 | 21 | MIT | 2020-10-13T07:25:10 | 2016-08-23T11:58:23 | Java | UTF-8 | Java | false | false | 3,629 | java | package be.aga.dominionSimulator.cards;
import be.aga.dominionSimulator.DomCard;
import be.aga.dominionSimulator.enums.DomCardName;
import be.aga.dominionSimulator.enums.DomCardType;
import java.util.ArrayList;
import java.util.Collections;
public class SacrificeCard extends DomCard {
public SacrificeCard() {
... | [
"jeroen_aga@yahoo.com"
] | jeroen_aga@yahoo.com |
bad8ce79398ebef53fd7090ed49c5ebd5e290d92 | aa5da795e0feddd514f30ef29b3d26f5acd8d4cc | /app/src/main/java/com/example/dikshantmanocha/saddarestaurant/MenuActivity.java | 1b8a4ace1ff1b91198eee9afec57e7821e476907 | [] | no_license | dikshant097/SaddaRestaurant | bba55ebf8f03472d0bcb38ec5ffdc976828de4f5 | 621cda9e561f1826c87e8790c29228c4e50dc530 | refs/heads/master | 2020-03-20T15:41:42.279046 | 2018-08-12T10:20:43 | 2018-08-12T10:20:43 | 137,519,359 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,312 | java | package com.example.dikshantmanocha.saddarestaurant;
import android.annotation.SuppressLint;
import android.content.Context;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.design.widget.AppBarLayout;
import android.support.design.... | [
"manocha.dikshant@gmail.com"
] | manocha.dikshant@gmail.com |
b8b21a29723c5939444a75bf94728137f1788108 | d1a5906be47219bcdba185c885540e6adfb1c0a3 | /app/src/main/java/ru/ustyantsev/konus/utils/Log.java | 2d5681a3b3a55a9735044debfb10cd18abf5732a | [] | no_license | romust/konus | 8e0516eea19fed95e1dca3c97711b7937e2b0a77 | 0c4f260928530679275d0ae9baece89c2b5caea2 | refs/heads/master | 2020-03-15T20:45:47.210652 | 2018-07-02T17:23:35 | 2018-07-02T17:23:35 | 132,340,317 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,598 | java | package ru.ustyantsev.konus.utils;
import android.text.TextUtils;
public final class Log {
public static void l() {
android.util.Log.d(getLocation(), "");
}
public static void d(String msg) {
android.util.Log.d(getLocation(),/* getLocation() + */msg + " ---------------------------------... | [
"schoolarts9ru@gmail.com"
] | schoolarts9ru@gmail.com |
a615fafe4e08ca6b3e322b52622bc920d45b2978 | 08c17ec05b4ed865c2b9be53f19617be7562375d | /aws-java-sdk-sesv2/src/main/java/com/amazonaws/services/simpleemailv2/model/transform/PutDedicatedIpWarmupAttributesRequestMarshaller.java | a4a5013e3cba2e2c472a4d2e6d5f8ebd104b888d | [
"Apache-2.0"
] | permissive | shishir2510GitHub1/aws-sdk-java | c43161ac279af9d159edfe96dadb006ff74eefff | 9b656cfd626a6a2bfa5c7662f2c8ff85b7637f60 | refs/heads/master | 2020-11-26T18:13:34.317060 | 2019-12-19T22:41:44 | 2019-12-19T22:41:44 | 229,156,587 | 0 | 1 | Apache-2.0 | 2020-02-12T01:52:47 | 2019-12-19T23:45:32 | null | UTF-8 | Java | false | false | 2,495 | java | /*
* Copyright 2014-2019 Amazon.com, Inc. or its affiliates. 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. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "licen... | [
""
] | |
04bde5a46d40d7879bdfe51f8e3de5fda5949b0d | ba62e69addff5271ea34a75229e2d0f45cd28e64 | /FMP_api_java/src/main/java/com/madhouse/fmp/common/SimpleValidateMsg.java | b1c7a4c730843c0df00f992c9d3c775659a3ca4d | [] | no_license | evoup/fmp | 56653e5a1f870993baf18736e42c622d6748ff29 | 78d2156e823e13faae0008dda35b8e8b2e755a64 | refs/heads/master | 2021-01-25T07:35:18.952405 | 2015-07-30T05:37:15 | 2015-07-30T05:37:15 | 31,296,854 | 0 | 3 | null | null | null | null | UTF-8 | Java | false | false | 367 | java | package com.madhouse.fmp.common;
public class SimpleValidateMsg {
private final String err_name;
private final String err_msg;
public SimpleValidateMsg(String err_name, String err_msg) {
this.err_name = err_name;
this.err_msg = err_msg;
}
public String getErr_name() {
return this.err_name;
}
public Str... | [
"evoup@localhost.localdomain"
] | evoup@localhost.localdomain |
0da4e6157a4f3fbeac5f0a2ec8539654cfd9b41b | c054aec95bad4cf4a05a196b394e81e0dbceda1f | /src/media/frontend/components/Details.java | 66bc04fc84f237444eecb2b5826e246487b6e355 | [] | no_license | soerenreichardt/DB3 | 9b346d706dc2841fb8311857251a9a0bfc88ef06 | c9353c5b625c33de17dd7c4040cd85fe1ef1f5b3 | refs/heads/master | 2021-05-27T05:55:40.261844 | 2014-09-25T19:12:03 | 2014-09-25T19:12:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,039 | java | package media.frontend.components;
import java.util.List;
import java.util.ArrayList;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.Toolkit;
import java.awt.datatransfer.Clipboard;
import javax.swing.*;
import media.definitions.MediaDbInterface;
import media.definitions.Off... | [
"soer3nreichardt@googlemail.com"
] | soer3nreichardt@googlemail.com |
3b564b0b42ce6c0950edc2d9b0aa277891050fba | c6cb5aa8a115a4f85d0b6506d612029a5ed27380 | /src/main/java/pdetection/BodyDetection.java | eed8af8bb76f53e023abc16a87e7fc9c6c267060 | [] | no_license | tmuryn/pdetection | 9ac88926f36164c9c9d6367da3e995250e679140 | 215e3a0b0897e7f96d0c7a53749da6f99d2496b8 | refs/heads/master | 2020-04-24T14:16:10.363836 | 2013-04-16T12:33:05 | 2013-04-16T12:33:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,632 | java | package pdetection;
import com.googlecode.javacv.FrameGrabber;
import com.googlecode.javacv.cpp.opencv_objdetect;
import static com.googlecode.javacv.cpp.opencv_core.*;
import static com.googlecode.javacv.cpp.opencv_highgui.*;
import static com.googlecode.javacv.cpp.opencv_imgproc.CV_BGR2GRAY;
import static com.googl... | [
"tmuryn@gmail.com"
] | tmuryn@gmail.com |
770ce8040ff1435a46a0c5d0b4a513abf2662096 | 087669942a42ec85d1e88e42a0f27a9501992a50 | /app/src/main/java/com/liuwei1995/red/util/permission/Request.java | d192ac61515829409403ff27ff54df4d07750833 | [] | no_license | liuwei1995/Red | b968830714c57291488ea97536f8848571ab1067 | 21d52922eba8b71bf3920ce9bbc7c5753c476e11 | refs/heads/master | 2021-01-20T14:40:06.179312 | 2018-03-09T05:33:30 | 2018-03-09T05:33:30 | 90,644,889 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,230 | java | package com.liuwei1995.red.util.permission;
import android.support.annotation.NonNull;
/**
* Created by liuwei on 2017/5/3
*/
public interface Request<T extends Request> {
/**
* Here to fill in all of this to apply for permission, can be a, can be more.
*
* @param permissions one or more permis... | [
"liuwei9502@163.com"
] | liuwei9502@163.com |
b000f408518f19ee9be6643c801712b3eceb02f9 | cfb6c48444586e99653f2b5a90d94eb772985240 | /MyEthics/src/app/src/main/java/com/hunter/owen/myethics/PurchasesFragment.java | 54245651c5c62c144ea9ba9822f2cbeab7d3a792 | [] | no_license | owen-hunter1/4630f2020 | ee551e37f6ce654d2bdd16042a2009ae144c885c | 6c3159b2f5a77fb2f0f850e9a005843f0d996ecb | refs/heads/master | 2023-01-31T00:40:45.620342 | 2020-12-15T21:41:13 | 2020-12-15T21:41:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,121 | java | package com.hunter.owen.myethics;
import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android... | [
"70711604+owen-hunter1@users.noreply.github.com"
] | 70711604+owen-hunter1@users.noreply.github.com |
2a84f548c244cfa32278cbdd7289c6f026151d66 | 35cfd2b759a13d4576b02e067335aea93b288a93 | /app/src/main/java/edu/gsu/httpcs/mobileappfinal/Fragments/PageFragment.java | 8476236501c032aa2a53dbbfa773a07b50692560 | [] | no_license | spri0/MobileAppFinal | 80cf0ff9930b4213d78b744330360ef9d660b0ed | 40789ab8a88e6ed4106b91bbfced612036eee27d | refs/heads/master | 2021-01-01T06:29:51.922153 | 2017-07-17T11:10:15 | 2017-07-17T11:10:15 | 97,439,547 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,045 | java | package edu.gsu.httpcs.mobileappfinal.Fragments;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import edu.gsu.httpcs.mobileappfinal.R;
/**
* A simple {@link Fragment} subclass.
*/
... | [
"yungboke@gmail.com"
] | yungboke@gmail.com |
ba53b93c6577e14d2595265f80d186dbb9fdc680 | 7e1a576f0f6121ebad169a51703adf903790e2b2 | /output/PPerformanceMeasure.java | eb4dbeca04a759f03c7f88df0bafd4cc5ee6b564 | [
"Apache-2.0"
] | permissive | thuhiensp/Generator | 5e118d868bb68b96070bc07d8f97108b87c18fcd | 808cf825247825a0ca8efeb7a46a66ca394f3a97 | refs/heads/master | 2022-05-26T22:49:35.910572 | 2019-09-27T16:02:56 | 2019-09-27T16:02:56 | 211,355,898 | 0 | 0 | null | 2022-05-20T21:10:04 | 2019-09-27T16:03:41 | Java | UTF-8 | Java | false | false | 1,089 | java | /*
* Copyright 2019 SmartTrade Technologies
* Pony SDK
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appl... | [
"hle@smart-trade.net"
] | hle@smart-trade.net |
e186acfbab64e79d7dfcaf5864078bd95cc17d32 | 535e1dc621b26542047b973d9b3122a94ce5c2e9 | /src/main/java/msb/class11/Code03_PrintAllPermutations.java | 691a3be99cbfc84e0a664fafdb190b8d47bbab64 | [] | no_license | zhangshuang007/algorithm_basic | f2dd93966278eacb5e1b7c6605c6009b552e0905 | 561b6f610d8e24b312b0242a058775a75b912bc1 | refs/heads/master | 2023-05-31T04:54:07.396387 | 2021-06-28T02:41:16 | 2021-06-28T02:41:16 | 380,870,642 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,688 | java | package msb.class11;
import java.util.ArrayList;
import java.util.List;
/**
* 1、打印一个字符串的全部排列
* 2、打印一个字符串的全部排列,要求不要出现重复的排列(分支限界)
* @Author zhangshuang
* @Date 2021/6/1 10:49
*/
public class Code03_PrintAllPermutations {
public static ArrayList<String> permutation(String str) {
ArrayList<String> res = new Arra... | [
"sz19870213@126.com"
] | sz19870213@126.com |
96aaa4f1ffc0dc2e0505b695ff063bae53bab5fc | 460b2f0def829ceb74f95f3f6270bf325990bd27 | /app/src/main/java/de/java/testtodelete/SecondActivity.java | 2f521ccac0be83245bcb8ba2d20786b505018a14 | [] | no_license | AIRAT1/Android2DZ1 | 7360244cb1bc898278df7f742889f2d9c487db3c | ecc166620ac952ead9083543d93f7fcd4519d229 | refs/heads/master | 2016-09-01T15:41:31.370162 | 2016-02-21T09:16:31 | 2016-02-21T09:16:31 | 51,813,932 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,119 | java | package de.java.testtodelete;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.ContentValues;
import android.content.DialogInterface;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.View;
import android.view... | [
"ayrat1@mail.ru"
] | ayrat1@mail.ru |
f7f165e1070a60f1db0d87aa7d6a71930368feea | 7396d2675360a510d4a06529119d9cbf91902123 | /src/main/java/com/blazartech/products/blazarsql/components/gui/ProfileManagerPanel.java | bc48ea543af5bd36309e0d643133b8c05d474771 | [] | no_license | drsaaron/BlazarSQL | 307248de0e789cae378894305dcaced52da4902c | 4c4ee5c291de1f155ded86b5511f7d8fbc6376a1 | refs/heads/master | 2023-08-05T21:58:01.534038 | 2023-07-31T22:17:57 | 2023-07-31T22:17:57 | 139,463,212 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,612 | java | /*
* ProfileManagerPanel.java
*
* Created on April 12, 2004, 11:05 AM
*/
package com.blazartech.products.blazarsql.components.gui;
import com.blazartech.products.blazarsql.components.profile.ConnectionProfile;
import javax.swing.JPanel;
import org.springframework.beans.factory.InitializingBean;
import org.springf... | [
"scottaaron@northwesternmutual.com"
] | scottaaron@northwesternmutual.com |
7ae41fb175b201f63278a4aa89c998f8e35594fb | 047e8ed9425e902a4c9cd89e89b0356c5ed13654 | /src/com/jeztech/repomanager/dao/StorageKeepDao.java | f0701968b3d6b594956bb7bb630928a97546ede0 | [] | no_license | vdustleo/ReposityManager | b41f184a0010d0a58c7ce3750cde9d477a1180c4 | 0fd619887602c61f46d81549fd603ae878252a87 | refs/heads/master | 2021-09-01T14:27:28.043925 | 2017-12-27T13:10:16 | 2017-12-27T13:10:16 | 115,521,511 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,126 | java | package com.jeztech.repomanager.dao;
import java.util.List;
import java.util.Map;
import com.jeztech.repomanager.model.StorageInfo;
public interface StorageKeepDao {
/**
* 添加一个项目
*/
public void addItem(StorageInfo info);
/**
* 删除一个项目
*/
public void deleteItem(StorageInfo info);
/**... | [
"vdust.leo@163.com"
] | vdust.leo@163.com |
e7b6b0d061037e6aa5cac434515e93e619063f26 | 1ae1abd2b2c39a862aad47eaf8afa85e958302dd | /ippse-mblog-web/src/main/java/com/ippse/mblog/web/oauth/OkUserConfig.java | 8f29259459278c922226612d46c330e3e713b3ec | [] | no_license | mahaorong/mblog | 5963eea5111317f9fb0506ea9dcef289633ed5ab | debfa389a09b45bd6f70fff0440f0f6b57183a07 | refs/heads/master | 2023-03-05T09:01:17.252973 | 2019-06-24T02:18:15 | 2019-06-24T02:18:15 | 193,416,215 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,310 | java | package com.ippse.mblog.web.oauth;
import java.util.HashSet;
import java.util.Set;
import org.apache.commons.lang3.StringUtils;
import com.fasterxml.jackson.annotation.JsonView;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
publi... | [
"931380187@qq.com"
] | 931380187@qq.com |
20ada650022ef988dbaf40e6a6be89a5dc1a1702 | bc5b77e4247c632b786cf50ca5ee378eff9739dc | /app/src/main/java/digiwizards/sih/com/tollpay/service/LocationReceiveService.java | 1523ffa09dc877e89d707679c618d9ec5e2bc66f | [] | no_license | singhania1408/TollPay | 40e00b9e31df813f3d12804294115d285d266398 | 33fb920b29107d8d849b9dfa7a01b2c8c1436f25 | refs/heads/master | 2021-01-23T04:33:43.887014 | 2017-03-28T20:29:11 | 2017-03-28T20:29:11 | 86,208,938 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,439 | java | package digiwizards.sih.com.tollpay.service;
import android.app.IntentService;
import android.content.Intent;
import android.content.Context;
import android.location.Location;
import android.util.Log;
import android.widget.Toast;
import com.google.android.gms.location.LocationResult;
import java.util.List;
import s... | [
"abhisinghania14@gmail.com"
] | abhisinghania14@gmail.com |
6b3731d9b8cf185e0ba8cda3ab3218162380a2da | d4a7ce72523ddc27c3d71811b1af410b12bfc709 | /src/icrud/PersonDBRepository.java | 157f6d6eee5c92eb13635a818d4b402fecd10930 | [] | no_license | martinp98/herokutest | 9b501943ce23f4ff385d3463bafc4dcaa92ffc5c | 9d8bac09970d1f2f43c8ec87c2c90e25935dbb70 | refs/heads/master | 2023-01-19T23:29:09.875527 | 2020-09-04T07:19:00 | 2020-09-04T07:19:00 | 316,603,378 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 312 | java | package icrud;
public class PersonDBRepository implements ICrud {
@Override
public void create(Person p) {
}
@Override
public Person read(int id) {
return null;
}
@Override
public void update(Person p) {
}
@Override
public void delete(int id) {
}
}
| [
"clbo@kea.dk"
] | clbo@kea.dk |
473f413c7ecb0850258c13e76d8e54eff31784f5 | 58c0529be1ee5ad274292184cc0fc19c7d0e0fd2 | /HHTask/.svn/pristine/b4/b4b5584acf333a139aa7c575feb0afd7bb3d9058.svn-base | fe6b28f8a0e03ddd31fb8b73dc9d33519b8b86ec | [] | no_license | hbliyafei/nianfojishu | 6dc348fdca415d2e7aa328c76f0cbfb9b3aba9c3 | 0a8a125e661f0d582245a4c2586d57f85e496399 | refs/heads/master | 2023-03-17T15:03:03.247703 | 2019-05-14T07:56:20 | 2019-05-14T07:56:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,586 | package com.task.entity.menjin;
import java.io.Serializable;
/**
* 门禁历史记录表
*
* @author Li_Cong 表名 ta_mj_AccessRecords 所有进出记录(后台自动添加)
*/
public class AccessRecords implements Serializable {
private static final long serialVersionUID = 1L;
private Integer id;
private String recordType;// 开门验证类型(车牌/验证码/员工卡)
pr... | [
"horsexming.sina.com"
] | horsexming.sina.com | |
65bfffda58cb20cfd39ba7f2f2bb076fe8ee426e | 16081ed52f66b4970fb2e05029e179826ee7c927 | /hbaseMapReduce/src/main/java/com/gtensor/stack/HDFS/HadoopOper.java | cd22a6521eb4064ce326ed01bccc650ce26a20a7 | [] | no_license | 0xqq/Hbase-bulk-load | 412e04daad3e81d043ae7b8728aef239462b957b | 214498bcc31ffd96398f1fae6e3d9c4a7a80aa13 | refs/heads/master | 2020-03-26T08:48:18.843050 | 2018-07-29T08:47:56 | 2018-07-29T08:47:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 438 | java | package com.gtensor.stack.HDFS;
import java.io.IOException;
import com.gtensor.stack.readprop.PropReader;
public class HadoopOper {
public static void main(String[] args) {
try {
//直接在配置文件中设置传入数据的源地址和目的地址即可
HadoopUtil.uploadFile(PropReader.Reader("src_csv"),PropReader.Reader("dst_scv"));... | [
"18811106069@163.com"
] | 18811106069@163.com |
2904552507cfe37f36b7af697c15e024ea967f36 | c6b040f28bbd10c17cb0cd1c55fd4432b7dbebd8 | /DesignMode/src/com/cyw/singleton/Singleton.java | e96d38259ba4e0b5ca82e63b2b24044ef5406a93 | [] | no_license | AGipsy/CywLeetCode | 904d5cf78e9c53ed6ced2621059e93a194fdb669 | fc139b00c2100a0ed7e3c82aa271be996d0def61 | refs/heads/master | 2022-01-30T21:30:23.930250 | 2016-06-05T09:53:58 | 2016-06-05T09:53:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,399 | java | package com.cyw.singleton;
/**
* 单例模式,是设计模式中使用最为普遍的模式之一。
* 是一种对象创建模式,确保一类一对象。好处是:
* 1、对于频繁的使用的队象,可以省略很多创建所花费的时间。尤其是对于那些重量级的对象
* 2、由于new操作的次数减少,对系统的内存的使用频率也会降低,降低GC压力。
* 核心是:通过一个接口,返回唯一的对象实例。
* 缺点是,不会延迟加载。即是说,在其他地方若用到该类时候,单例也会被加载
* @author cyw
* The first mode of singleton.
*/
public class Singleton {
/**
*... | [
"2927096163@qq.com"
] | 2927096163@qq.com |
91dd4c9cd576f4692e66b53252aa8c91ccc84e82 | 39d4c8cffed09f7d2e7cf1598d10209cf74d926d | /Lottery/app/src/main/java/com/international/wtw/lottery/activity/mine/ForgetPwd1Activity.java | d0cf005461a8fd6264008af7217082b45c9423dc | [] | no_license | a12791602/newlottery | e257ad8d293bcfa76a7e8ada2f387168b68e658d | c34a0f6e7cbbd6e3f765d97e9d6164f5e892489f | refs/heads/master | 2022-02-15T23:27:12.940385 | 2019-07-30T06:44:00 | 2019-07-30T06:44:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,414 | java | package com.international.wtw.lottery.activity.mine;
import android.content.Intent;
import android.support.v4.util.ArrayMap;
import android.text.TextUtils;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import com.google.gson.Gson;
import com.i... | [
"jason19990099@gmail.com"
] | jason19990099@gmail.com |
b4c4cd8111fafe1381eaa339e1fee90bf5845dec | cceb4e618ce4ccf7a20ae1e6a2a0b53cf5924a19 | /src/main/java/cn/bestsec/dcms/platform/api/model/Statistics_QueryFileListRequest.java | b20964748efcfbe2e694afab595cf54166fd5e89 | [] | no_license | zhanght86/dcms | 9843663cb278ebafb6f26bc662b385b713f2058d | 8e51ec3434ffb1784d9ea5d748e8972dc8fc629b | refs/heads/master | 2021-06-24T16:14:09.891624 | 2017-09-08T08:18:39 | 2017-09-08T08:18:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 612 | java | package cn.bestsec.dcms.platform.api.model;
import cn.bestsec.dcms.platform.api.support.CommonRequestFieldsSupport;
/**
* 自动生成的API请求/响应Model类,不要手动修改
*/
public class Statistics_QueryFileListRequest extends CommonRequestFieldsSupport {
private String token;
public Statistics_QueryFileListRequest() {
... | [
"liu@gmail.com"
] | liu@gmail.com |
3e0654e4b18bc7c0a211b1b772580aa97702ed50 | a60b6afcc5afa48babfa1574255dd90861791047 | /microservice-bibliotheque/src/main/java/fr/oc/bibliotheque/microservicebibliotheque/MicroserviceBibliothequeApplication.java | d568180fe52fc13e8e6bcf5393ccf7ab12da4416 | [] | no_license | YoannR09/microservice_bibliotheque | 346a28b00281a9a1a9ae2c1ca7022dd72e2169d8 | 0550e097f3c1319451df36ad72a3c614e85b3221 | refs/heads/master | 2020-06-08T18:11:52.985312 | 2019-06-24T09:29:33 | 2019-06-24T09:29:33 | 193,279,912 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 372 | java | package fr.oc.bibliotheque.microservicebibliotheque;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MicroserviceBibliothequeApplication {
public static void main(String[] args) {
SpringApplication.run(Micr... | [
"el-rambo-poto@hotmail.fr"
] | el-rambo-poto@hotmail.fr |
a8f9a06c6aecd65f7fba47180fae0e04dcdd3e1d | a9ec31d5a39d45a8f29c3c94f08a55cb2e354ada | /src/sowon/week17/quiz7_2455.java | cff15c52754f92e74f18b0f5626e13771cf3cd21 | [] | no_license | beyondAwesomeDev/Rhythming-Algorithm | 9a70efe328bba3bf12cb97f8b3c8ccf7bba3ae51 | 844f5e25e49930b9d725cc10d25a21d99a188490 | refs/heads/main | 2023-07-05T19:17:08.099454 | 2021-08-30T00:01:32 | 2021-08-30T00:01:32 | 322,190,708 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,051 | java | package sowon.week17;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
// https://www.acmicpc.net/problem/2455
// 지능형 기차
public class quiz7_2455 {
public static void main(String[] args) throws IOException {
//sol memory 11484 runtime 80
BufferedReader br = new Bu... | [
"sowonkim177@gmail.com"
] | sowonkim177@gmail.com |
e84d3faad16fad80240eaa1f9afe11887b130d72 | fd3c5791407993da6acec9b33f8dce3e38fb6245 | /CodingChallenges/OOPMasterChallengeExercise/src/com/company/Main.java | b064b4caab49043b4697b1ca9e5a7b919fe48d35 | [] | no_license | IanHefflefinger/JavaProgrammingMasterclassForSoftwareDevelopers | 0eb91b95cfdf082830e98b8b4d146ffeaa1bb32c | 29595b5ac73262b4fa6d695250779ab1ceb6eb9f | refs/heads/main | 2023-04-02T15:34:40.467473 | 2021-04-05T15:40:22 | 2021-04-05T15:40:22 | 331,090,492 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 410 | java | package com.company;
public class Main {
public static void main(String[] args) {
Hamburger hamburger = new Hamburger("regular", "beef", 6);
hamburger.setName("Ian's burger");
// hamburger.showPrice();
hamburger.setLettuce(true);
hamburger.setOnion(true);
hamburger.s... | [
"ian.hefflefinger@snhu.edu"
] | ian.hefflefinger@snhu.edu |
c5f02593cc089c48af858fb15f1151f149f4c099 | dc0b8cc424a03783bcff15f07cc3fa6fbd674c83 | /src/main/java/facebookIntegration/FacebookDataCollector.java | b1f466aafa9ba86105b86c0e226428f2771ce8cf | [] | no_license | Ioankall/TripAgenda-Data-Collector | f3ed0428ed1b9cb3c85e421874c20ce1aeb6756f | c78413bad554b185cf140108510f1ea2aefaa6ec | refs/heads/master | 2021-05-01T14:51:46.779827 | 2018-02-10T15:09:21 | 2018-02-10T15:09:21 | 121,025,538 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,969 | java | package facebookIntegration;
import com.mongodb.client.MongoDatabase;
import static com.mongodb.client.model.Filters.eq;
import facebook4j.FacebookException;
import java.util.TreeMap;
import org.bson.Document;
import utilities.StringComparator;
public class FacebookDataCollector {
private TreeMap<Stri... | [
"ioankall@csd.auth.gr"
] | ioankall@csd.auth.gr |
0cc1f17cdb40accdda8b9264978b654160747f3b | 2afa84afd05852b0d859d1da3a161b59ca2846cf | /NetLogov6.1/src/LPSolverExtension.java | 7dca43afcf5627dda54c3fa747bf13358e227a57 | [] | no_license | cstaelin/NetLogoLPSolver | e86f3a28622440a006489fbb7c5d3c0db5a4348e | 559e2ae433f4ab4c8a6d04f82994c68c266de70b | refs/heads/master | 2020-09-11T18:24:10.982117 | 2019-11-24T15:15:42 | 2019-11-24T15:15:42 | 222,151,974 | 0 | 0 | null | 2019-11-16T19:55:48 | 2019-11-16T19:55:48 | null | UTF-8 | Java | false | false | 5,897 | java | /**
* LPSolverExtension is the wrapper for the extension.
*
* @author AFMac
* @version 3.0.0 Updated for NetLogo v6.1 by Charles Staelin
*/
package org.nlogo.extensions.lpsolver;
import java.io.File;
import org.nlogo.api.Context;
import org.nlogo.api.ExtensionException;
import org.nlogo.api.LogoException;
import ... | [
"cstaelin@smith.edu"
] | cstaelin@smith.edu |
c1e3a7cac401af656895e37330de7fb1d32ba70f | 04b2d359fa36d9f12e529c255a1fa768acf01281 | /ContractNet/src/mas/onto/Tender.java | 163ba0a521c2b0775e2e0cf63b525635ae1fefde | [] | no_license | predan20/mas-project | b1aa391229db75fac957d1cc976fe778719a1266 | 2fbfa04d37613b6283ee18fff05b4007116b2fdd | refs/heads/master | 2021-01-23T06:19:57.810937 | 2010-04-23T21:47:12 | 2010-04-23T21:47:12 | 38,443,551 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 951 | java | package mas.onto;
import jade.content.Predicate;
import java.util.List;
public class Tender implements Predicate {
private List<ConfigTender> subtenders = null;
private int totalPrice;
public Tender() {}
public Tender(List<ConfigTender> subtenders) {
this.subtenders = subtenders;
... | [
"alex.pankov@a5adaed8-e0dc-11de-ae3c-8df03fb1c7b4"
] | alex.pankov@a5adaed8-e0dc-11de-ae3c-8df03fb1c7b4 |
ecadf28538cbfa567e41783972dbb9a0fff179fb | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/19/19_638b92702566e7ac3ca9e73a93b0f403bebf0dc7/BaseInterface/19_638b92702566e7ac3ca9e73a93b0f403bebf0dc7_BaseInterface_s.java | d6d4cb01cab11bc9f6c29f401d5b4db328b3ad47 | [] | 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 | 973 | 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"... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
788e41cb11e0fd2dd55eab56209c1064461d91d8 | ca030864a3a1c24be6b9d1802c2353da4ca0d441 | /classes5.dex_source_from_JADX/com/facebook/graphql/model/GraphQLEventTicketActionLink__JsonHelper.java | d3121efa1814a7ff1ce5f4829029b07345c084d6 | [] | no_license | pxson001/facebook-app | 87aa51e29195eeaae69adeb30219547f83a5b7b1 | 640630f078980f9818049625ebc42569c67c69f7 | refs/heads/master | 2020-04-07T20:36:45.758523 | 2018-03-07T09:04:57 | 2018-03-07T09:04:57 | 124,208,458 | 4 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,773 | java | package com.facebook.graphql.model;
import com.facebook.debug.fieldusage.FieldAccessQueryTracker;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonToken;
/* compiled from: image_uri */
public final class GraphQLEventTicketActionLink__JsonHelper {
public static boolean m7292a(Gra... | [
"son.pham@jmango360.com"
] | son.pham@jmango360.com |
421b1ce0456e84b8e166591f3a54e457c156df88 | 1a83f3f213dca04890764ac096ba3613f50e5665 | /src/main/java/io/server/game/event/impl/NpcClickEvent.java | c8ba020c25e6604dfcb112de9afb3372638ee3dc | [] | no_license | noveltyps/NewRunityRebelion | 52dfc757d6f784cce4d536c509bcdd6247ae57ef | 6b0e5c0e7330a8a9ee91c691fb150cb1db567457 | refs/heads/master | 2020-05-20T08:44:36.648909 | 2019-05-09T17:23:50 | 2019-05-09T17:23:50 | 185,468,893 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 389 | java | package io.server.game.event.impl;
import io.server.game.event.Event;
import io.server.game.world.entity.mob.npc.Npc;
public class NpcClickEvent implements Event {
private final int type;
private final Npc npc;
public NpcClickEvent(int type, Npc npc) {
this.type = type;
this.npc = npc;
}
public int getTy... | [
"43006455+donvlee97@users.noreply.github.com"
] | 43006455+donvlee97@users.noreply.github.com |
8bc1557bdc6802965d0e1681c8fc00533c60392d | 7e8646dba681e41a0c478b6d0c01dd93e514a99d | /part-II-A/src/IRedBlackTreeDate.java | 6cf1f81f3925653b1d6988823ccfc309b7b374c1 | [] | no_license | ManosTs/project | c9e3cf6013e9b6f1179c83bb990cff59e1b7019f | f48da4fca7b1f6f95b16621f4438437146fa7953 | refs/heads/master | 2023-04-16T21:26:22.971920 | 2021-05-02T09:41:45 | 2021-05-02T09:41:45 | 363,615,181 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 204 | java | import java.util.Date;
public interface IRedBlackTreeDate {
void insert(Record data);
void printTree();
void search(Date key);
void modifyVolume(Date key);
void deletion(Date key);
}
| [
"mtsiorbas@gmail.com"
] | mtsiorbas@gmail.com |
2080720e5f5fee2eafb34b6aed88aecc209b9031 | 72ba968fe4501c806d6309a6bc8fc4543de43d74 | /threes/mutantes/generation-1/mutant-0/threes/ThreesController/move_up/COI/239/threes/ThreesController.java | e60f08d1cec4775747efe068139a2f9d8e4f7da4 | [] | no_license | cesarcorne/threes | 010c0ef7e1760531e99be1d331269f35489b17e2 | b7d56d9bdb149292decf7fa6c5d1f30726e445ae | refs/heads/master | 2021-01-01T04:35:22.141150 | 2016-05-20T15:10:12 | 2016-05-20T15:10:12 | 58,375,189 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 13,313 | java | package threes;
import java.io.IOException;
import java.util.LinkedList;
import java.util.Map;
public class ThreesController {
//Stores the Threes board
private ThreesBoard board;
//Stores the next tile that will appear in the board.
private int nextTileValue;
//Stores the rows that move duri... | [
"cesarmcornejo@gmail.com"
] | cesarmcornejo@gmail.com |
02f10acfaa4544f09140b10ac49ae727173531de | 8b29767fe7b4fe845edb788da9a0934376e28f5f | /Obstacle.java | 82fce0fafcee09c5874807929d691df4282e85b0 | [] | no_license | cyvanoort/Flood-Control-2015 | 68dd4d2c244e934859e850a6b011efd71bbfdc76 | c2b619a57c7fa9c07859acf9c9f54a3ed9edb907 | refs/heads/master | 2020-04-06T08:36:25.300400 | 2014-03-28T09:56:46 | 2014-03-28T09:56:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 410 | java | import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
public class Obstacle extends Game3
{
private int snelheid;
public static int speed = -4;
public void act()
{
drive();
}
public void drive()
{move(snelheid);
}
public void setSnelheid(int x)
... | [
"cyvan@live.nl"
] | cyvan@live.nl |
1a36c8581b043c6410581e31f380fba23bf223c1 | 220f30c1619d3c0eae10ecb6b721dfb13b18bc23 | /app/src/main/java/com/cuileikun/androidbase/javaactivity/twenty/day20_DiGui/DiGuiDemo.java | 1e91bc33dbf692a2b7b09263e5e118af212a5347 | [] | no_license | cuileikun/AndroidBase | d07d484b7c84e3538baeb9bf9a58c063788fb7ea | 376e8f6f6d2b34c70167ea788dd67013db2cb306 | refs/heads/master | 2021-01-20T00:56:20.937349 | 2017-07-03T13:48:05 | 2017-07-03T13:48:05 | 89,213,523 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,603 | java | package com.cuileikun.androidbase.javaactivity.twenty.day20_DiGui;
/*
* 递归:方法定义中调用方法本身的现象
*
* 方法的嵌套调用,这不是递归。
* Math.max(Math.max(a,b),c);
*
* public void show(int n) {
* if(n <= 0) {
* System.exit(0);
* }
* System.out.println(n);
* show(--n);
* }
*
* 注意事项:
* A:递归一定要有出口,否则就是死递归
* B:递归的次数不... | [
"583271702@qq.com"
] | 583271702@qq.com |
b45ab88e286c3f210c3411fb173d4c2e914e99ca | d0aca62ae8d4dc0aa22a9c7923d62bc10ae3c25f | /src/SpaceInvade/com/SpaceInvaders.java | ca81621dd9920ced324bf5f9ab96354821e3a268 | [] | no_license | okbarton/tictac | 98c429b167251b6fafebcbc7941565e59e4c339e | 0d404b7c36ec19ae77b6c72a6743cc66fe9feaed | refs/heads/master | 2020-12-30T06:52:55.807159 | 2020-06-19T02:11:21 | 2020-06-19T02:11:21 | 238,899,239 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 638 | java | package SpaceInvade.com;
import java.awt.EventQueue;
import javax.swing.JFrame;
public class SpaceInvaders extends JFrame {
public SpaceInvaders() {
initUI();
}
private void initUI() {
add(new Board());
setTitle("Space Invaders");
setSize(Commons.BOARD_WIDTH, Commons.... | [
"ingramkieran45@gmail.com"
] | ingramkieran45@gmail.com |
2f25e22f6e763faec2d275b5fc5281a8a31cc6a5 | 78c1564a351e35bad1abae4189ebcbb17c23d986 | /common/src/main/java/org/linfa/micro/common/msg/BaseResponse.java | 7a2fdee17916e23456c57521bf556f325a7e6c91 | [] | no_license | orglinfa/micro-security | 50a354e648aeb032686c8f32f9582fb109343fbe | c5e9f9aaf7ee16445be7ab39cffca96019a9de0f | refs/heads/master | 2020-03-16T20:54:23.532736 | 2018-05-11T02:23:41 | 2018-05-11T02:24:16 | 132,977,004 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 567 | java | package org.linfa.micro.common.msg;
public class BaseResponse {
private int status = 200;
private String message;
public BaseResponse(int status, String message) {
this.status = status;
this.message = message;
}
public BaseResponse() {
}
public String getMessage() {
... | [
"lingfeian@aliyun.com"
] | lingfeian@aliyun.com |
c9915e29d052df8f5d775a0f64f695b51a0c410c | 12d02f6c5d5949941a6be39132495d59a4376de1 | /src/kh/com/a/dao/OrderDao.java | e1d611a429da5de88cc854695e130f68d1412c9b | [] | no_license | seongjincho/ikeyo | f0fc529cdb99548f394739c26b85f072a983812a | d91ea311a10b7010dd34a19fa421e62ad31e3cf0 | refs/heads/master | 2023-02-28T05:42:02.875205 | 2022-08-07T06:32:31 | 2022-08-07T06:32:31 | 189,535,095 | 0 | 0 | null | 2023-02-22T07:28:19 | 2019-05-31T05:49:08 | Java | UTF-8 | Java | false | false | 1,042 | java | package kh.com.a.dao;
import java.util.List;
import kh.com.a.model.CartDto;
import kh.com.a.model.Order_Dto;
import kh.com.a.model.Order_Sub_Dto;
import kh.com.a.model.ProductDto;
public interface OrderDao {
// 하나만 주문
public List<CartDto> oneOrderlist(int seq);
// p리스트
public List<ProductDto> ... | [
"jasonyp@daum.net"
] | jasonyp@daum.net |
e6195c4887b95bdc7ccbd7974d0560bf4cdfcb30 | 6fbcc1482880f94fd9cffaf680d963910290a1ec | /uitest/src/com/vaadin/tests/components/combobox/ComboBoxLargeIconsTest.java | 407ab7aa048ab38ab10a97a8d82841beba6251c6 | [
"Apache-2.0"
] | permissive | allanim/vaadin | 4cf4c6b51cd81cbcb265cdb0897aad92689aec04 | b7f9b2316bff98bc7d37c959fa6913294d9608e4 | refs/heads/master | 2021-01-17T10:17:00.920299 | 2015-09-04T02:40:29 | 2015-09-04T02:40:29 | 28,844,118 | 2 | 0 | Apache-2.0 | 2020-01-26T02:24:48 | 2015-01-06T03:04:44 | Java | UTF-8 | Java | false | false | 2,044 | java | package com.vaadin.tests.components.combobox;
import org.junit.Test;
import org.openqa.selenium.Keys;
import org.openqa.selenium.interactions.Actions;
import com.vaadin.testbench.By;
import com.vaadin.testbench.elements.NativeSelectElement;
import com.vaadin.tests.tb3.MultiBrowserTest;
import com.vaadin.tests.tb3.new... | [
"review@vaadin.com"
] | review@vaadin.com |
b9d542d55160379c30ef2f7f9e701e91b91bb648 | d16f17f3b9d0aa12c240d01902a41adba20fad12 | /src/leetcode/leetcode13xx/leetcode1310/Solution.java | 319747df2cb5c50a52fa1afbb4c5c6f36fa44abd | [] | no_license | redsun9/leetcode | 79f9293b88723d2fd123d9e10977b685d19b2505 | 67d6c16a1b4098277af458849d352b47410518ee | refs/heads/master | 2023-06-23T19:37:42.719681 | 2023-06-09T21:11:39 | 2023-06-09T21:11:39 | 242,967,296 | 38 | 3 | null | null | null | null | UTF-8 | Java | false | false | 488 | java | package leetcode.leetcode13xx.leetcode1310;
public class Solution {
public int[] xorQueries(int[] arr, int[][] queries) {
for (int i = 1; i < arr.length; i++) {
arr[i] ^= arr[i - 1];
}
int[] ans = new int[queries.length];
for (int i = 0; i < queries.length; i++) {
... | [
"mokeev.vladimir@gmail.com"
] | mokeev.vladimir@gmail.com |
56a9407e720dd77fcfcc9e1e3554d573566fdf6f | d780010fdf0263f6355358823d2ee4db91760206 | /final/src/update.java | 0191b81fbfe834bac78e834f8c21b928776b6248 | [] | no_license | Acid23/jobportalmanagement | a0a94482ceb1fd3d33e7031b588e432ab7e294a8 | 012b2a9d660f8dc881ed33bff4092229a0afd347 | refs/heads/master | 2020-07-25T18:27:19.406507 | 2019-09-27T13:05:19 | 2019-09-27T13:05:19 | 208,385,976 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 750 | java | import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
public class update {
public static void main(String[] args) throws IllegalAccessException, ClassNotFoundException, InstantiationException {
// TODO Auto-generated method stub
try {
Class.forNam... | [
"mdasifbaba23@gmail.com"
] | mdasifbaba23@gmail.com |
740f6dc39ddf317a7cad7d1dc230d01902810c60 | 933502518fb37f1c16c89210274deeef31b91949 | /src/main/java/servlet/CustomerServlet.java | c1ec76e17a13af231a9ffdf9a317370ea8af2268 | [] | no_license | IrinaMuimarova/web4 | 7d2a8ce51aedb0f0ee1fe62b4c2b4a45ce3ec3f9 | 5908fd8a3a1081a2fb9dd8b96bbc421953bee299 | refs/heads/master | 2022-08-01T02:07:45.451278 | 2019-12-19T15:23:42 | 2019-12-19T15:23:42 | 229,029,917 | 0 | 0 | null | 2022-07-07T22:12:03 | 2019-12-19T10:22:30 | Java | UTF-8 | Java | false | false | 1,091 | java | package servlet;
import com.google.gson.Gson;
import model.Car;
import service.CarService;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.sql.SQLException... | [
"mui.irisa@gmail.ru"
] | mui.irisa@gmail.ru |
8a85926ec582af20a517e752658470ea594cc838 | e9d64b479a6800f5b7c6b2ff34377c083d767fde | /src/main/java/hwp/sqlte/Id.java | 33fecdd67763fbf4f50a34ffb16416adfeb6b191 | [] | no_license | hewuping/sqlte | 89bffd7b6b70640dcdcf8c24095e0acf55e128dd | 285db2453664fa85c6b5635522d62f8079470b78 | refs/heads/master | 2023-04-17T21:26:34.480681 | 2023-04-10T09:50:23 | 2023-04-10T09:50:23 | 81,050,404 | 3 | 1 | null | 2018-11-02T10:08:09 | 2017-02-06T05:16:34 | Java | UTF-8 | Java | false | false | 428 | java | package hwp.sqlte;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
/**
* @author Zero
* Created by Zero on 2017/8/13 0013.
*/
@Documented
@Target({F... | [
"897457487@qq.com"
] | 897457487@qq.com |
cb503dff3db94aee39194aef3d2eff92882bbb83 | 6590f0de2fd9fd23c9bae21913d26f78b0d9c433 | /shadowsocks-java-common/src/main/java/com/shadowsocks/common/encryption/impl/BlowFishCrypt.java | 38f7873ec0c0db1e414ea23aa64303ab5e774da7 | [
"MIT"
] | permissive | iceflag/shadowsocks-java | f424775f48b52fba5ba6069b38ac6129be1e5102 | 80cbb1cc774b1d273c6b71b8a5d45b040e6e2826 | refs/heads/master | 2020-03-10T16:23:24.899127 | 2018-04-12T15:42:19 | 2018-04-12T15:42:19 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,049 | java | package com.shadowsocks.common.encryption.impl;
import com.shadowsocks.common.encryption.CryptBase;
import org.bouncycastle.crypto.StreamBlockCipher;
import org.bouncycastle.crypto.engines.BlowfishEngine;
import org.bouncycastle.crypto.modes.CFBBlockCipher;
import javax.crypto.SecretKey;
import javax.crypto.spec.Secr... | [
"0haizhu0@gmail.com"
] | 0haizhu0@gmail.com |
8e1f76de5033dcbe0e1d6492997cadf199e42d43 | 2a679e1fcf931961ffd7541bcac7797c77aa39f1 | /wf-iot-common/src/main/java/com/warpfuture/util/PageUtils.java | 743058065cb54ede4755a981daa2339e7a9cbb45 | [] | no_license | kmmao/wf-iot | a1163892d1e6038d72d6412c3e557bfc0a2d8160 | f9a5592bdc533030e062940eb439b99a2367817c | refs/heads/master | 2021-09-24T09:44:44.740167 | 2018-10-07T15:15:05 | 2018-10-07T15:15:05 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,886 | java | package com.warpfuture.util;
import com.warpfuture.constant.PageConstant;
import com.warpfuture.entity.HistoryDataPageModel;
import com.warpfuture.entity.PageModel;
/** Created by fido on 2018/4/19. 分页工具 */
public class PageUtils {
/**
* 用于计算mongodb分页时跳过的数据数量
*
* @param pageIndex
* @param pageSize
*... | [
"xhhscau2015@163.com"
] | xhhscau2015@163.com |
d689c02cf98f1fbd53137c40f5c8d78d2f9cbb88 | cb8675e86443334a519fddfd5c976c7f5db04de8 | /core/src/com/microbasic/sm/part2/DepthMapShader.java | 7a7f90842e2825070c8ca20dc67f8399e5552e66 | [] | no_license | mumeka/shadow-mapping | 065700113080f2a9166bf928c24cf30f23270bcb | 030f14783b6a72adc3fdf0437b164634a60aad17 | refs/heads/master | 2021-01-17T09:09:35.943375 | 2015-07-07T17:15:32 | 2015-07-07T17:15:32 | 38,611,455 | 0 | 0 | null | 2015-07-06T10:08:05 | 2015-07-06T10:08:05 | null | UTF-8 | Java | false | false | 2,105 | java | package com.microbasic.sm.part2;
import com.badlogic.gdx.graphics.Camera;
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.g3d.Attributes;
import com.badlogic.gdx.graphics.g3d.Renderable;
import com.badlogic.gdx.graphics.g3d.Shader;
import com.badlogic.gdx.graphics.g3d.attributes.BlendingAttribu... | [
"haedri@gmail.com"
] | haedri@gmail.com |
2bef6ecc635468f7b7af6a3352289baaf54f818d | ef2aaf0c359a9487f269d792c53472e4b41689a6 | /documentation/design/essn/SubjectRegistry/edu/duke/cabig/c3pr/webservice/iso21090/TELEmail.java | 4db9843cf8d79b61f74bba650e221172bc1d8e50 | [] | no_license | NCIP/c3pr-docs | eec40451ac30fb5fee55bb2d22c10c6ae400845e | 5adca8c04fcb47adecbb4c045be98fcced6ceaee | refs/heads/master | 2016-09-05T22:56:44.805679 | 2013-03-08T19:59:03 | 2013-03-08T19:59:03 | 7,276,330 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 830 | java |
package edu.duke.cabig.c3pr.webservice.iso21090;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for TEL.Email complex type.
*
* <p>The following schema fragment specifies the expected content contain... | [
"kruttikagarwal@gmail.com"
] | kruttikagarwal@gmail.com |
02ffa5953cc9a2f742c2548caac520d69886519c | 450ba3d5fd973a8e0fb95be6eff9e728d27c1921 | /redis/src/main/java/com/redis/RedisJava.java | 31fdf90ec4b95b03f29c7a5b070b43e9435bc3da | [] | no_license | wdfwolf3/Program | 642e20d9ad0fba73fab9556a4bbdcf463f9a775e | b3bbc4f01d2273bd111da74aa6b2ae96c588f6f1 | refs/heads/master | 2021-03-16T05:40:35.036392 | 2017-10-31T06:25:26 | 2017-10-31T06:25:26 | 91,561,064 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,245 | java | package com.redis;
import redis.clients.jedis.Jedis;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
public class RedisJava {
public static void main(String[] args) {
//连接本地的 Redis 服务
Jedis jedis = new Jedis("localhost");
System.out.println("连接成功");
//查看服务是... | [
"fwolff@vip.qq.com"
] | fwolff@vip.qq.com |
25dd16bb4d1196eec99c9dc7cb7508e5e2458369 | b2b0b3abcecde74006301d78f65d76709337a93f | /java-core/src/main/java/cn/van/kuang/java/core/thread/ThreadExecutor.java | 6f53d3d3ddd06a7ae7e2e01771c7c59d4fe010ef | [] | no_license | VanKuang/java-in-action | a124a43520e25f780281f605bece1278975ac9a7 | 04e4aad8522ef4d6e412a6ee77b32c65d17cebe1 | refs/heads/master | 2022-12-20T18:07:29.163087 | 2021-01-20T23:26:27 | 2021-06-27T01:46:09 | 60,387,728 | 9 | 3 | null | 2022-12-14T20:44:56 | 2016-06-04T01:42:33 | Java | UTF-8 | Java | false | false | 3,319 | java | package cn.van.kuang.java.core.thread;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.*;
public class ThreadExecutor {
private final static Logger logger = LoggerFactory.getLogger(ThreadExecutor.class);
private void tr... | [
"vanchee@qq.com"
] | vanchee@qq.com |
28ca16ad965b714d8774d8162da844368239a2f5 | 7e6774d5c0f8513203eb952fe7c3856058607635 | /src/main/java/com/codegym/model/MusicForm.java | 6c2b940a79ee00d7ba9dd75fbc47d1169cf132a0 | [] | no_license | ngnganh2207/Module4.Bai5.BT.XayDungUngDungNgheNhacDonGian | 3f38906fba7c364a30f75a8a1e87c958f8ff1997 | 549702594a56000df079f6855292da7cb908b97c | refs/heads/master | 2023-08-05T01:36:49.283007 | 2021-09-21T01:35:39 | 2021-09-21T01:35:39 | 408,653,790 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,264 | java | package com.codegym.model;
import org.springframework.web.multipart.MultipartFile;
public class MusicForm {
private Long id;
private String nameMusic;
private String author;
private String category;
private MultipartFile music;
public MusicForm() {
}
public MusicForm(Long id, String ... | [
"ngocanhnguyen2207@gmail.com"
] | ngocanhnguyen2207@gmail.com |
26948984df709e87e850e0c1ee31fe6206286a1a | 333ade37fa73f481dbabde1bbc6e84db2909aa75 | /nqs-common/src/main/java/com/acsno/common/service/impl/ProbeUpgradePackageServiceImpl.java | 1df947604190f63a67a90254e7e6767dc619fcb7 | [] | no_license | sunjiyongtc0/cloud-nqs-web | 3eeba476c615a2513833396d30d37f908546fa47 | 1fd93ea34089114b9a160224e38bc71782c45150 | refs/heads/master | 2023-01-31T14:12:25.374502 | 2020-12-04T06:34:39 | 2020-12-04T06:34:39 | 304,198,315 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 952 | java |
package com.acsno.common.service.impl;
import com.acsno.common.dao.ProbeUpgradePackageDao;
import com.acsno.common.entity.ProbeUpgradePackageEntity;
import com.acsno.common.service.ProbeUpgradePackageService;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.met... | [
"315541219@qq.com"
] | 315541219@qq.com |
84a2a77ddea91afa52eb39edfd68a5b661e0ec52 | c474b03758be154e43758220e47b3403eb7fc1fc | /apk/decompiled/com.tinder_2018-07-26_source_from_JADX/sources/com/facebook/ads/internal/view/C3377i.java | 13151e96bfc1ffa166c31a5fea26efc5c1b4aba7 | [] | no_license | EstebanDalelR/tinderAnalysis | f80fe1f43b3b9dba283b5db1781189a0dd592c24 | 941e2c634c40e5dbf5585c6876ef33f2a578b65c | refs/heads/master | 2020-04-04T09:03:32.659099 | 2018-11-23T20:41:28 | 2018-11-23T20:41:28 | 155,805,042 | 0 | 0 | null | 2018-11-18T16:02:45 | 2018-11-02T02:44:34 | null | UTF-8 | Java | false | false | 6,564 | java | package com.facebook.ads.internal.view;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.text.TextUtils;
import android.util.Log;
import android.widget.RelativeLayout.LayoutParams;
import com.facebook.ads.AudienceNetworkActivity;
import com.facebook.ads.internal.adapters.... | [
"jdguzmans@hotmail.com"
] | jdguzmans@hotmail.com |
29931752afc7126af188d121167464f98b6d7b4c | b863cd353be42f5c43efcd8c7feeb1b883efcbdb | /cloud-be/src/main/java/rs/raf/cloud/controllers/AuthenticationController.java | 197d2e5fec3babc739db0d29bf42ae413b730ffc | [] | no_license | 555SSOO/RAFCloud | 7e48659c7d8b4b702402c465cc898fa21b1cac05 | fea4bca4f83345bdcaa4e219932f4b653bfd9c76 | refs/heads/master | 2023-01-09T17:23:09.971876 | 2019-12-29T19:28:52 | 2019-12-29T19:28:52 | 229,423,046 | 0 | 0 | null | 2023-01-07T13:03:54 | 2019-12-21T12:16:44 | Java | UTF-8 | Java | false | false | 1,078 | java | package rs.raf.cloud.controllers;
import lombok.Getter;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springf... | [
"s.obradovic@msgnetconomy.net"
] | s.obradovic@msgnetconomy.net |
1fa88eae1715cad9f201cc6f4002b059e5fb94c1 | 0203c612b12f5247b05e8c575820de2a593212b7 | /Week12/Problem.11/src/p6/InsertionSort.java | a1bbf8f0693b06330425b348af135eb558f00e7c | [] | no_license | VeselinTodorov2000/Java-OOP-2021 | 72995291f00f22cc552c26abac093a2400bb669c | 98e4705de5e91bf9107d710f042fdc4b12cd064d | refs/heads/main | 2023-06-04T01:49:25.221947 | 2021-06-21T20:22:17 | 2021-06-21T20:22:17 | 342,679,554 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 853 | java | package p6;
import java.awt.*;
import java.util.ArrayList;
import java.util.Random;
public class InsertionSort {
public static <E extends Comparable<E>> void sort(ArrayList<E> list)
{
for (int i = 1; i < list.size(); i++)
{
E currentElement = list.get(i);
int j;
... | [
"slavovt@uni-sofia.bg"
] | slavovt@uni-sofia.bg |
93106787d0607ba037c54e9e238a4f52e44757a6 | f45437ae687e48e37e78cbfe7fba0ce0a112da2a | /src/main/java/esprima4java/ast/ThisExpression.java | fb35f3670b2a4cbd3db3b647d534a403ccaa9853 | [
"MIT"
] | permissive | qhanam/Esprima4Java | 13ee7a6f8d5bbaad74dcdddd66ab2c5307ce48ff | 88cc2633c8b3039f33fc5acb5a4ba855466e4235 | refs/heads/master | 2020-05-17T21:35:11.942937 | 2019-05-22T23:46:52 | 2019-05-22T23:46:52 | 183,975,923 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 340 | java | package esprima4java.ast;
import com.google.auto.value.AutoValue;
@AutoValue
public abstract class ThisExpression extends Node {
public static ThisExpression create() {
return new AutoValue_ThisExpression(NodeType.THIS_EXPRESSION);
}
@Override
public Node clone() {
return new AutoValue_ThisExpressi... | [
"qhanam@gmail.com"
] | qhanam@gmail.com |
3c53b8d4cec610fbaac737cd241d0512e351a83f | 10f9dfa99fbdc4172ad2b92101cc783e975fe732 | /src/main/java/com/zhlzzz/together/controllers/HomeController.java | c842ba5a8b1f706a56d66a97fe500922ed8cb305 | [] | no_license | liehuoren/together-api | d511c88445e79e0278440eb58fde9fef8ab3b587 | 0e4d0a54c0015d51bb5e102523c646f280dbedb1 | refs/heads/master | 2020-03-16T03:04:43.655287 | 2018-05-15T14:56:42 | 2018-05-15T14:56:42 | 132,479,867 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 417 | java | package com.zhlzzz.together.controllers;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HomeController {
@GetMapping(path = "/home")
@... | [
"1025798480@qq.com"
] | 1025798480@qq.com |
7a34b9b8aa8be253c4c304d4f951d6acad8917c2 | 8f5143154900dbb984b01c35dfcb5966e446d971 | /src/main/java/org/lanqiao/entity/Place.java | 46d6895a6cad84135cef575b7d33d7da89c32808 | [] | no_license | JacksonZhangHuaQuan/travel | c7dae57f9e998e8c4870bdd95b3aa2455837d4ec | e5aa65f9fca7fe440d58070923c730c7d2dd8316 | refs/heads/master | 2022-07-05T13:47:27.740673 | 2019-09-13T14:01:37 | 2019-09-13T14:01:37 | 208,279,449 | 0 | 0 | null | 2022-06-21T01:51:55 | 2019-09-13T14:19:06 | HTML | UTF-8 | Java | false | false | 1,583 | java | package org.lanqiao.entity;
public class Place {
private int place_id;
private int strategy_id;
private String place_name;
private String place_description;
public Place() {
}
public Place(int place_id, int strategy_id, String place_name, String place_description) {
this.place_id... | [
"867132963@qq.com"
] | 867132963@qq.com |
b2092b043d31d449b718e72830ff0cff2c03a77e | 6a7f18228f3315c04d50cfdf4a9f51c7ee802465 | /javaCourses/javaCourses/src/tp15_poo/Point.java | 72a9e82d421c102b7019cac72cdd9f9c4ec864c1 | [] | no_license | borisBelloc/Diginamic | 1815a449b5d166755dd9aa39531d13b6b15a3b10 | 075a7f2a4eab399b8ecd1bb27219203b6dfac23a | refs/heads/master | 2023-04-03T23:48:53.345171 | 2022-12-17T19:07:34 | 2022-12-17T19:07:34 | 212,615,191 | 0 | 0 | null | 2023-03-23T23:18:47 | 2019-10-03T15:35:20 | Java | UTF-8 | Java | false | false | 909 | java | package tp15_poo;
public class Point {
private final int INIT_X = 25;
private final int INIT_Y = 25;
private int x;
private int y;
public Point() {
super();
this.x = INIT_X;
this.y = INIT_Y;
}
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return... | [
"bb.itwork@gmail.com"
] | bb.itwork@gmail.com |
79889ea4b9bdacb1115216e945a630a491fcad82 | 74be4acb41789917e7120556f699d962d002495b | /src/main/java/com/kalli/Main.java | b3fbd1f13e941a934128ad85026ae785b24ba1d7 | [] | no_license | krantou/spring-boot-app | 2b9a7a610c8d383219afef2bba44fab50950c523 | 90cc8809451cc5c54410a0e6b449ba5039c10bd6 | refs/heads/master | 2023-01-12T18:35:06.562015 | 2020-11-11T11:44:02 | 2020-11-11T11:44:02 | 311,916,597 | 0 | 2 | null | 2020-11-11T11:37:42 | 2020-11-11T09:04:46 | Java | UTF-8 | Java | false | false | 747 | java | package com.kalli;
import com.kalli.model.Profiles;
import javafx.application.Application;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springf... | [
"kallirant@gmail.com"
] | kallirant@gmail.com |
727ceac8e2415b573beac4c82c5b6103cd2236a6 | 952a5ab97f537ccbd808fd02b94d9c8387d599d2 | /app/src/main/java/com/example/tnp/Activities/Dialogpojo.java | d94130ce5488dd09c6ac666c0582d2428b38d903 | [] | no_license | raghavendra9511/TNP | a34894e8f743dadfbe16d5b7082b5cbc003513d7 | 2f60fa3d8bea7cd0ced434edd0cb1b58132aae97 | refs/heads/master | 2023-02-05T10:24:08.785937 | 2020-12-22T10:12:49 | 2020-12-22T10:12:49 | 323,588,907 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,515 | java | package com.example.tnp.Activities;
public class Dialogpojo {
private String titles;
private String subjects;
private String types;
private String duedates;
private String descripts;
private String attatchmentd;
private String sections;
private String classe;
public void setTitles(... | [
"raghavendrabhosale7273@gmail.com"
] | raghavendrabhosale7273@gmail.com |
d8abbe3171da0cce4dc77d8faccb6b281c08b2cd | 5ce71c5202e7c77c53d3fbc447912fe30ad3ccdc | /src/main/java/net/ymate/platform/module/wechat/message/MusicOutMessage.java | 0d5d26d435403a526610b1939430a579e41e1ace | [
"Apache-2.0"
] | permissive | suninformation/ymate-module-wechat | 4cb526214198f611cb28579f2d8690788782ea6d | 42e31e770d857f7f3cf3af3c7adfd5fe33c7cabf | refs/heads/master | 2021-01-18T22:09:25.664111 | 2017-07-27T03:18:42 | 2017-07-27T03:18:42 | 17,754,253 | 3 | 3 | null | null | null | null | UTF-8 | Java | false | false | 2,405 | java | /*
* Copyright 2007-2107 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 required by ap... | [
"suninformation@163.com"
] | suninformation@163.com |
37d50c78b5b28a048da6771ee88614eea6cf5ede | 4e504c9e317ba0cc96b54d1366dd425f8360f80c | /VideoSDK/facecal/src/androidTest/java/com/hyq/hm/videosdk/ExampleInstrumentedTest.java | 5c3bc462df77b9aa02bb740ebdb03094519d880b | [
"Apache-2.0"
] | permissive | ranchohxk/VideoSdk | 0928773f15765d193e5de8a1f1cc97a806fdad92 | d609b966916074f1b5b2c09c618707473fa83ea0 | refs/heads/master | 2020-06-11T02:36:17.940527 | 2019-07-03T10:02:49 | 2019-07-03T10:02:49 | 193,823,580 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 727 | java | package com.hyq.hm.videosdk;
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 dev... | [
"15088133707@163.com"
] | 15088133707@163.com |
4362ddc3024c8a2da2542462c02ef68bd022545a | 377e5e05fb9c6c8ed90ad9980565c00605f2542b | /bin/platform/ext/platformservices/src/de/hybris/platform/order/daos/impl/DefaultZoneDeliveryModeDao.java | e06a9bac876b8abb9a59616fc0f5811fca82f079 | [] | no_license | automaticinfotech/HybrisProject | c22b13db7863e1e80ccc29774f43e5c32e41e519 | fc12e2890c569e45b97974d2f20a8cbe92b6d97f | refs/heads/master | 2021-07-20T18:41:04.727081 | 2017-10-30T13:24:11 | 2017-10-30T13:24:11 | 108,957,448 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,924 | java | /*
* [y] hybris Platform
*
* Copyright (c) 2000-2016 SAP SE
* All rights reserved.
*
* This software is the confidential and proprietary information of SAP
* Hybris ("Confidential Information"). You shall not disclose such
* Confidential Information and shall use it only in accordance with the
* terms of ... | [
"santosh.kshirsagar@automaticinfotech.com"
] | santosh.kshirsagar@automaticinfotech.com |
41bbe7f93b3edf7e8a76d921b9ed020900f03c7a | c92d53fb801b6c9ba721f8380320f6e609f496bc | /Ranger/src/mass/Ranger/Algorithm/DTW/FastDtw/DtwTest.java | 668ed1e118b5b81723b85d2ffea0bf6821617dfa | [
"MIT"
] | permissive | SilunWang/Ranger | 0d6977d787413a69928186c9a8ac67c2989fd889 | d0e9decf828afded57f41f648258182c48af0b00 | refs/heads/master | 2021-01-10T15:39:48.031282 | 2015-06-10T05:51:11 | 2015-06-10T05:51:11 | 36,784,591 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,519 | java | /*
* DtwTest.java Jul 14, 2004
*
* Copyright (c) 2004 Stan Salvador
* stansalvador@hotmail.com
*/
package mass.Ranger.Algorithm.DTW.FastDtw;
import mass.Ranger.Algorithm.DTW.FastDtw.dtw.DTW;
import mass.Ranger.Algorithm.DTW.FastDtw.dtw.TimeWarpInfo;
import mass.Ranger.Algorithm.DTW.FastDtw.timeseries.TimeSerie... | [
"wangsl11@mails.tsinghua.edu.cn"
] | wangsl11@mails.tsinghua.edu.cn |
92819c8e0fcd13f961f042a786a894fb3b4e3c3a | f6bff6be2db811988fa9f5dc10b3ec01e1ed87e9 | /src/main/java/com/trixpert/beebbeeb/data/to/CustomerDTO.java | b0d883e11f6c31a9835e0e625030d4e5ad1550e5 | [] | no_license | ihabTawffiq/BeebBeebForBata | 0e94a313489075fff1655dc30b1f35c1d89dcf94 | d6bb994e52fb5a301d8c2d15dc555f9b85a9dc08 | refs/heads/main | 2023-06-23T20:56:22.089059 | 2021-05-03T23:05:52 | 2021-05-03T23:05:52 | 382,465,013 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 492 | java | package com.trixpert.beebbeeb.data.to;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.util.List;
@Data
@AllArgsConstructor
@NoArgsConstructor
@Builder
public class CustomerDTO {
private Long id;
private UserDTO user;
private Strin... | [
"maxmya@outlook.com"
] | maxmya@outlook.com |
06932ce284c4d0230265fa100b28efe87d2cb95d | aa124892657938d6acc92cd1cbd101d056478e1a | /src/com/minecraftdimensions/bungeesuite/configlibrary/MemoryConfigurationOptions.java | 7361946383ec812af4f341da03bc39d248754215 | [] | no_license | timderspieler/BugeeSuite_1.13 | ab3092450cbb04fa4b54e563f97aab574596a41f | ebad4667a1e0fdaccdd14969de3db20565ecdfdb | refs/heads/master | 2020-05-26T11:32:40.289150 | 2019-05-23T11:22:21 | 2019-05-23T11:22:21 | 188,218,636 | 4 | 4 | null | null | null | null | UTF-8 | Java | false | false | 665 | java | package com.minecraftdimensions.bungeesuite.configlibrary;
public class MemoryConfigurationOptions extends ConfigurationOptions {
protected MemoryConfigurationOptions(MemoryConfiguration configuration) {
super(configuration);
}
@Override
public MemoryConfiguration configuration() {
ret... | [
"timderspieler@gmx.de"
] | timderspieler@gmx.de |
094c741787e2d19a6623e2564da9db12ddc155b6 | ba286d53520207ab25e782051190c4e0e0ca501e | /src/com/yanjin/demo2/Employee.java | 38a79708b945e84b4e077d7eb5ae80648db900e2 | [] | no_license | kaolajun/YanjinProject | ee60a5c90eb9d048a2d4d895878eede3ced06050 | a402d0171dbcd0e096ac768ae7de2d5e269533d0 | refs/heads/master | 2020-04-08T08:09:53.554225 | 2018-11-26T15:21:41 | 2018-11-26T15:21:41 | 159,167,785 | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 1,629 | java | package com.yanjin.demo2;
class Employee {
private int number;
private Department department;
private String name;
private String position;
private Employee leader;
private double salary;
public int getNumber() {
return number;
}
public void setNumber(int number) {
this.number = number;
... | [
"143046586@qq.com"
] | 143046586@qq.com |
4648a57d7b31b997db9e8ae905c54f5aec8d2692 | e0b01ac6a9f2a618488123ca9f1cc0c74c0e18f4 | /src/java/dao/PdfDAO.java | bc3ce512688d5795bf10a34242488aaeb6b47613 | [] | no_license | MaribelRamirez/TutoriasUnsis | 55b92ee4b5b4f4cb7f2f1dc7dc07f370a38a6290 | 73944e223ef5f9adcedeb7638c48ad8cbe6d3890 | refs/heads/master | 2021-06-26T00:09:29.722915 | 2019-05-17T22:55:03 | 2019-05-17T22:55:03 | 144,615,964 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,652 | java | package dao;
import model.ConnectionClass;
import VO.PdfVO;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
public class PdfDAO {
/*Metodo listar*/
public ArrayList<PdfVO> Listar_PdfVOReportes() {
ArrayList<PdfVO> list = new Arra... | [
"minemtza1401@gmail.com"
] | minemtza1401@gmail.com |
83669ce96548bed1d13cf3c3c12d14ed33c72e47 | 15a7b7a6dd66c8a6cde67f82a74f9fd8fe0b8208 | /DesignPatterns/PrototypeDesignPattern/src/com/sample/pp/runner/Runner.java | 2136728f34aa784945337b10f54471ab04395599 | [] | no_license | nonotOnanad/myRepo | 212cc423c92afb7be26dcc40fd47c0dfae9d2fe1 | 322845379ac2ae49ef4941747d3596cc104806cd | refs/heads/master | 2020-12-30T09:37:54.825111 | 2017-09-18T07:48:34 | 2017-09-18T07:48:34 | 20,316,608 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 548 | java | package com.sample.pp.runner;
import com.sample.pp.ShapeCache;
import com.sample.pp.abs.Shape;
public class Runner {
public static void main(String[] args) {
ShapeCache.loadCache();
Shape clonedShape = ShapeCache.getShape("1");
System.out.println("Shape : " + clonedShape.getType());
Shape... | [
"monanad@DPH01000823.corp.capgemini.com"
] | monanad@DPH01000823.corp.capgemini.com |
a2ad98fbb729f22901187022af0c3c7321ee0774 | 7ad843a5b11df711f58fdb8d44ed50ae134deca3 | /JDK/JDK1.8/src/javax/swing/plaf/nimbus/TabbedPaneTabPainter.java | 33bb5d9fa6051c12c41d6dbb0c43380781ccd522 | [
"MIT"
] | permissive | JavaScalaDeveloper/java-source | f014526ad7750ad76b46ff475869db6a12baeb4e | 0e6be345eaf46cfb5c64870207b4afb1073c6cd0 | refs/heads/main | 2023-07-01T22:32:58.116092 | 2021-07-26T06:42:32 | 2021-07-26T06:42:32 | 362,427,367 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 39,774 | java | /*
* Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package javax.swing.plaf.nimbus;
import java.awt.*;
import java.awt.geom.*;
import java.awt.image.*;
import javax.swing.*;
import javax.swing.Painter;
final cla... | [
"panzha@dian.so"
] | panzha@dian.so |
8448030cfa6cb6e5e0efcbda37424f2b5eb818e0 | 3c73a700a7d89b1028f6b5f907d4d0bbe640bf9a | /android/src/main/kotlin/lib/org/bouncycastle/crypto/params/RSAKeyParameters.java | eaf48750637cc689477ac43f6345863bf82f6e28 | [] | no_license | afterlogic/flutter_crypto_stream | 45efd60802261faa28ab6d10c2390a84231cf941 | 9d5684d5a7e63d3a4b2168395d454474b3ca4683 | refs/heads/master | 2022-11-02T02:56:45.066787 | 2021-03-25T17:45:58 | 2021-03-25T17:45:58 | 252,140,910 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,791 | java | package lib.org.bouncycastle.crypto.params;
import java.math.BigInteger;
public class RSAKeyParameters
extends AsymmetricKeyParameter
{
private static final BigInteger ONE = BigInteger.valueOf(1);
private BigInteger modulus;
private BigInteger exponent;
public RSAKeyParameters(
... | [
"princesakenny98@gmail.com"
] | princesakenny98@gmail.com |
374e92f8f95c47aba8f777025860f23f3bbd2770 | ebf9dce63d3328cd7ac74b5ed51821202e927049 | /app/src/main/java/com/example/tyson/transguard/About.java | 7d75606483adeca9077d9f464615c07834e48dac | [] | no_license | tysonseaborn/TransGuard | cc6f74b66657656c0dd7367b59acf77a4af4e633 | 69b746e9ea96ba1f5ecca74513fa63d8cae0e3ca | refs/heads/master | 2021-03-12T22:36:42.291913 | 2014-12-01T03:28:14 | 2014-12-01T03:28:14 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,039 | java | package com.example.tyson.transguard;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
public class About extends TransGuard {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setC... | [
"tysonseaborn@gmail.com"
] | tysonseaborn@gmail.com |
6a4c6fe90fe53139be21d58a9a8e6d9ca14b1d4a | 021d29ff6b61ea83d9abac2df7f9e6a23870e2b6 | /plugins/electric-irsim/src/main/java/com/sun/electric/plugins/irsim/SStep.java | bed0b9abb8f399663bd0ddc2bce93288a3c91929 | [] | no_license | MocSemag/Electric-VLSI | fbda0859b7fe789d56ac9c405d412f2710a427e7 | 338c7f87811c5d595e3aedc33c6613a8fe324ef6 | refs/heads/master | 2021-12-02T01:48:49.899708 | 2011-02-19T20:54:40 | 2011-02-19T20:54:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 28,900 | java | /* -*- tab-width: 4 -*-
*
* Electric(tm) VLSI Design System
*
* File: SStep.java
* IRSIM simulator
* Translated by Steven M. Rubin, Sun Microsystems.
*
* Copyright (C) 1988, 1990 Stanford University.
* Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and wi... | [
"nadezhin@b64ed6c1-75a8-e629-b1da-d0dae74a743a"
] | nadezhin@b64ed6c1-75a8-e629-b1da-d0dae74a743a |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.