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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
32a08103f72f67a3536899760974b50d0d2e0c9a | d983bba0d6f6c645e6b1ef69dff43debf2c0dfd4 | /Semester I/other/Factorial.java | a64dcc1282d5571845f460f42f14414e37223b82 | [] | no_license | jdoiron94/Portfolio | 063e60d90b30d72f8e98abb44e417329959c8b51 | 081dca7955f23637a679a3ae2ee70d192c637d46 | refs/heads/master | 2016-09-06T21:46:05.558832 | 2016-01-06T01:02:10 | 2016-01-06T01:02:10 | 22,968,657 | 0 | 0 | null | 2015-11-07T13:54:50 | 2014-08-14T21:05:38 | Java | UTF-8 | Java | false | false | 894 | java | package semester_i.other;
import java.util.Scanner;
public class Factorial {
private static int getFactorial(int number) {
if (number == 0) {
return 0;
} else if (number < 0) {
return -1;
}
int sum = 1;
for (int i = number; i > 1; i--) {
... | [
"jdoiron@smcm.edu"
] | jdoiron@smcm.edu |
b8a4b285fa12e44a7a302a8318cab862429d3426 | f264a51cb395e5134b55723f15850ba7a1ad359b | /playstore/User.java | 58f413c08a7893e2519679b95bd052f9313af057 | [
"Apache-2.0"
] | permissive | PF-ASS2/PS-final | dddf7d56a0d6470ebdae7247550aae4b1209bb61 | 3e6fe061f0094eaa93e780917b9ae696268316d3 | refs/heads/master | 2020-03-17T20:06:00.530274 | 2018-05-18T02:39:38 | 2018-05-18T02:39:38 | 133,893,135 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,529 | java | package playstore;
import java.util.ArrayList;
//make return objects immutable --- look into this
public class User {
//variables
private String Id;
private String Name;
private String Phone_Number;
private int Balance = 0;
private OS o;
private boolean Ispremium = false;
private ArrayList<Co... | [
"noreply@github.com"
] | PF-ASS2.noreply@github.com |
e109c10c6171882ffb9728d775372222dc39ba00 | dcdfca0ebdf906192c81d56e04a7019bff441d83 | /app/src/main/java/net/xxhong/rosclient/ui/VideoActivity.java | 3b45b20e5387233dd12ffb44fe27962e0d0dac4d | [] | no_license | garciaraul85/jrosbridge | 046b4482c900a8a7c8a450f770d212fe13793f32 | edb99e3f5b6e7c7ebf8e0bc2ecbf5c886688a57c | refs/heads/master | 2020-03-29T17:44:35.722013 | 2018-09-24T22:54:57 | 2018-09-24T22:54:57 | 150,178,369 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,680 | java | package net.xxhong.rosclient.ui;
import android.app.Activity;
import android.graphics.Bitmap;
import android.os.Bundle;
import com.android.hp.ros.MessageHandler;
import com.android.hp.ros.message.BitmapFromCompressedImage;
import com.android.hp.ros.message.CompressedImage;
import com.android.hp.ros.rosbridge.ROSBrid... | [
"saulo.raul.garcia.casian@hp.com"
] | saulo.raul.garcia.casian@hp.com |
517235e5add4374e4fb7c7c45e0ec8f5a6a850bd | 1126abf20821964d5637affa4e1accabbd29d073 | /trendly/src/backend/TrendsCallable.java | 7df927d0c16f4e647613f34756d35f515d4b046c | [
"Apache-2.0"
] | permissive | googleinterns/Trendly | f8ee2839302a49f45b9429dcdd7a14277929faee | ae69ecab1e95032f98f0f15f80b90b81329085f9 | refs/heads/master | 2023-02-15T09:08:22.903680 | 2021-01-11T06:22:08 | 2021-01-11T06:22:08 | 289,083,077 | 0 | 2 | NOASSERTION | 2021-01-11T06:22:09 | 2020-08-20T18:43:03 | TypeScript | UTF-8 | Java | false | false | 1,062 | java | import java.io.IOException;
import java.util.concurrent.Callable;
/**
* For using TrendsAPIWrapper with threads (each TrendsCallable instance represents an asynchronous
* task which can be executed by a separate thread).
*/
public class TrendsCallable implements Callable<TrendsResult> {
String trendsFunction;
S... | [
"noreply@github.com"
] | googleinterns.noreply@github.com |
7aa0aca81d5cc99fa4411f1713462c1d3cc86358 | 99993cee373542810763c6a037db527b86b0d4ac | /fluent/src/main/java/io/kubernetes/client/openapi/models/V1beta1EventFluent.java | 669fa92ef2c423a0a0a609fd50aca0088a04e002 | [
"Apache-2.0"
] | permissive | saparaj/java | b54c355f2276ac7ac2cd09f2f0cf3212f7c41b2d | a7266c798f16ab01e9ceac441de199bd8a5a839a | refs/heads/master | 2023-08-15T19:35:11.163843 | 2021-10-13T16:53:49 | 2021-10-13T16:53:49 | 269,235,029 | 0 | 0 | Apache-2.0 | 2020-06-04T01:46:44 | 2020-06-04T01:46:43 | null | UTF-8 | Java | false | false | 10,896 | java | package io.kubernetes.client.openapi.models;
import com.google.gson.annotations.SerializedName;
import io.kubernetes.client.fluent.Nested;
import java.lang.String;
import java.lang.Deprecated;
import java.lang.Boolean;
import io.kubernetes.client.fluent.Fluent;
import java.lang.Integer;
import java.time.OffsetDateTime... | [
"bburns@microsoft.com"
] | bburns@microsoft.com |
c24dba1f31c8a5dbf55593de7db1a5c171367054 | 8330c94ad8ad5a654ce7222b7b45c431080f55de | /forkify-api-master/src/main/java/org/simran/resources/DishResource.java | 730c74dfcf4479d4f557ef0d8e4ea92cac759cad | [] | no_license | Deyashinidb/Forkify | ab1facc1d84915065a09f03bd6d4c2b0d90b37e5 | 0620048c8ac4c72ed6931150a8d7002b84ed8981 | refs/heads/master | 2023-01-19T02:30:12.671162 | 2020-11-20T03:10:02 | 2020-11-20T03:10:02 | 314,423,897 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 603 | java | package org.simran.resources;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import org.simran.model.Restaurant;
import org.simran.services.RestaurantService;
import java.util.List;
import javax.ws.rs.GET;
@Path("/dishes")
public class DishRes... | [
"noreply@github.com"
] | Deyashinidb.noreply@github.com |
b835c425c6c940fdc53918ed8d78434e11567ab8 | 6cd0a049b8cd98c28c57d76f3571cbdd29603544 | /src/main/java/com/go2/classes/business/service/mapping/ClassesCategoryServiceMapper.java | 27860d2c1ebb453cb96514d96f90b8937775bf7d | [] | no_license | nobun-com/tgc-server | 7e1fe6ad9079843e096194ed0d71098d93b46f8a | 2844d8bc7f951e370f999cc2402c3cb02dada860 | refs/heads/master | 2020-07-22T04:54:05.915319 | 2017-10-25T05:44:15 | 2017-10-25T05:44:15 | 94,343,294 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,280 | java | package com.go2.classes.business.service.mapping;
import org.modelmapper.ModelMapper;
import org.modelmapper.convention.MatchingStrategies;
import org.springframework.stereotype.Component;
import com.go2.classes.models.ClassesCategory;
import com.go2.classes.models.jpa.ClassesCategoryEntity;
@Component
public class ... | [
"mindnervestech@gmail.com"
] | mindnervestech@gmail.com |
1c9ff467278b9e6890fc0685d9c6600807c3b64a | 7831a13f5f04f8e5fbd48ed0ccc3c8f2735bac58 | /library/templates/mochafaces/src/main/java/org/mochafaces/taglib/resource/MetaResourceTag.java | 6569613d0a794c886c4b8aa401bcf3a4e1939cb8 | [] | no_license | nubiofs/mapfaces | 7a609ecc645b96d17e0ccefa23c0e91b8a94c400 | b546a3e3d61acd59b78f1611173a20fa2c9ec2e6 | refs/heads/master | 2020-05-25T19:23:39.658730 | 2010-01-08T16:20:43 | 2010-01-08T16:20:43 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,543 | java | /*
* MDweb - Open Source tool for cataloging and locating environmental resources
* http://mdweb.codehaus.org
*
* Copyright (c) 2007-2009, Institut de Recherche pour le Développement (IRD)
* Copyright (c) 2009, Geomatys
*
* This file is part of MDweb.
*
* MDweb is free software; you can redist... | [
"kdelfour@435c697f-6949-0410-9f2e-81b55f2b53f5"
] | kdelfour@435c697f-6949-0410-9f2e-81b55f2b53f5 |
b234e2a07ed94b285d3b76ccdf42e30060e2c41e | 4d0f2d62d1c156d936d028482561585207fb1e49 | /Ma nguon/zcs-8.0.2_GA_5570-src/ZimbraServer/src/java/com/zimbra/cs/index/ProxiedContactHit.java | 07d2caf6be4152ac9afe973e14e0d9074e3b47c8 | [] | no_license | vuhung/06-email-captinh | e3f0ff2e84f1c2bc6bdd6e4167cd7107ec42c0bd | af828ac73fc8096a3cc096806c8080e54d41251f | refs/heads/master | 2020-07-08T09:09:19.146159 | 2013-05-18T12:57:24 | 2013-05-18T12:57:24 | 32,319,083 | 0 | 2 | null | null | null | null | UTF-8 | Java | false | false | 1,371 | java | /*
* ***** BEGIN LICENSE BLOCK *****
* Zimbra Collaboration Suite Server
* Copyright (C) 2012
*
* The contents of this file are subject to the Zimbra Public License
* Version 1.3 ("License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www... | [
"vuhung16plus@gmail.com@ec614674-f94a-24a8-de76-55dc00f2b931"
] | vuhung16plus@gmail.com@ec614674-f94a-24a8-de76-55dc00f2b931 |
b7d561ae26acacc8d05148c514af5cedf8eea13c | afba7955718844d9a74515168f8bd8e728ec27ba | /src/main/java/eu/matejkormuth/starving/physical/mapped/MappedSetter.java | f3f515846b539951caad9b3919dd5c4ba89c2e9e | [
"BSD-2-Clause"
] | permissive | dobrakmato/starving3 | 5af7dcc0d7391938c4b28e0ac72a78e88a3454b0 | fda627c56c657be25ee8c675aabf6bdd4079dab7 | refs/heads/master | 2022-06-21T21:05:09.492105 | 2020-10-13T09:01:09 | 2020-10-13T09:01:09 | 39,527,933 | 0 | 1 | NOASSERTION | 2022-06-21T00:46:52 | 2015-07-22T20:11:50 | Java | UTF-8 | Java | false | false | 1,584 | java | /**
* Starving - Bukkit API server mod with Zombies.
* Copyright (c) 2015, Matej Kormuth <http://www.github.com/dobrakmato>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistrib... | [
"dobrakmato@gmail.com"
] | dobrakmato@gmail.com |
649222976a7cbe2bab1840b8527479b497b9c04c | 8b6b025408deed1d067ff8bd4ef3c536f9c79543 | /testkit-utilities/src/main/java/gov/nist/toolkit/testkitutilities/TestEnvConfig.java | 6a966f805e74e0b18b32deed569fceb09c2cdad8 | [] | no_license | usnistgov/iheos-toolkit2 | 96847a78a05ff4e86fb9ed78ab67db9851170f9d | 61b612a7378e1df32f8685ac13f1a14b1bf69002 | refs/heads/master | 2023-08-17T07:16:34.206995 | 2023-06-21T17:02:37 | 2023-06-21T17:02:37 | 61,730,404 | 48 | 29 | null | 2023-07-13T23:54:57 | 2016-06-22T15:32:13 | Java | UTF-8 | Java | false | false | 902 | java | package gov.nist.toolkit.testkitutilities;
import java.util.ArrayList;
import java.util.List;
public class TestEnvConfig {
static List<String> configOptions;
static List<String> logDirOptions;
static public String testkit = "/Users/bill/dev/testkit";
static {
configOptions = new ArrayList<String>();
confi... | [
"antoine.gerardin@nist.gov"
] | antoine.gerardin@nist.gov |
943149e9cc14d18384d80b34cb8416889451b4b8 | 79be998ccbe8eeec356e719bd5a32cace8444c46 | /persistence/src/main/java/today/smarthealthcare/ppv1/persistence/model/selfHealthCheck/SelfHealthCheck.java | 178c07e9cd8e75d584853935797dfc2f862ff635 | [] | no_license | smarthealthcaretoday/personal-portal-prototype-v1 | 8e837f76d57b18c9c097096727f12f6098f31028 | fd6e283e7ff41e323944b44ca7178de989d0b775 | refs/heads/master | 2021-09-03T10:20:52.229037 | 2018-01-08T10:34:00 | 2018-01-08T10:34:00 | 116,662,616 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,637 | java | package today.smarthealthcare.ppv1.persistence.model.selfHealthCheck;
import javax.persistence.*;
import java.util.Date;
/**
* @author: Vadim Nesmashnov
*/
@Entity
@Table(name = "SELFHEALTHCHECK")
public class SelfHealthCheck {
@Id
@GeneratedValue
private Long id;
@Column(name = "PATIENT_ID")
p... | [
"asv@smarthealthcare.today"
] | asv@smarthealthcare.today |
ca613ff24b46e565178fdbd999fdad4daaeaf607 | f20e12a8ed114eee984888cda0a01f43c52cb3a5 | /openfab-isa95-mesa-model/src/main/java/org/mesa/xml/b2mml_v0600/PersonNameType.java | b296d0264f40d3b03584be6f16c90f4a57fb9c6b | [] | no_license | skioppetto/openfab | 25f4dfd8a06d9fe6a087ca371c1cd13761f1a94b | a58e8a5cf48822be384f6db1139dedd917a4baa0 | refs/heads/master | 2021-09-14T22:59:31.944689 | 2018-05-21T16:32:34 | 2018-05-21T16:33:12 | 109,605,827 | 1 | 0 | null | 2018-05-06T08:39:36 | 2017-11-05T18:41:46 | Java | IBM852 | Java | false | false | 1,094 | java | //
// Questo file Ŕ stato generato dall'architettura JavaTM per XML Binding (JAXB) Reference Implementation, v2.2.8-b130911.1802
// Vedere <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Qualsiasi modifica a questo file andrÓ persa durante la ricompilazione dello schema di origine.
// Gene... | [
"skioppetto@HOME-VAIO"
] | skioppetto@HOME-VAIO |
c663595d1b5279d5b2de7d64c7f879de84033c8b | a6518a7a2cb8bfdd8bf6028c670dbdefd2cca508 | /mhvp-integrated-ptr/src/main/java/com/culiu/mhvp/integrated/ptr/pulltorefresh/PullToRefreshAdapterViewBase.java | 2d36b05279bf871107fca1b637ee4cac8615ba57 | [
"Apache-2.0"
] | permissive | XAVlER-S/MagicHeaderViewPager | 9609a0c99e4db09ea642f6184e71b842a36e2888 | 790213fbc796e3a8d7ec97b55217e40172ebae54 | refs/heads/master | 2022-04-06T10:33:14.730891 | 2020-02-26T18:59:13 | 2020-02-26T18:59:13 | 48,333,260 | 19 | 4 | null | null | null | null | UTF-8 | Java | false | false | 18,038 | java | /*******************************************************************************
* Copyright 2011, 2012 Chris Banes. 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... | [
"X.S.Xavier.S@gmail.com"
] | X.S.Xavier.S@gmail.com |
fda2fde6ef3eab9fda4142fcae93ffdf37dc8c73 | 9c4dd2c2e5255ac9a355aec335fbc914ee1e39c2 | /Testing/Junit5/src/test/java/by/pva/testing/testExamples/TestThirdPartyAssertion.java | bedcb0e4bc7f291e0219c3f66e93d2042164687c | [] | no_license | VAPortyanko/Learning | a8a79bc10b2eeb12c81f10198a0923e72d8002d4 | 23664bfe45eb12f717e3585eb7f84b729fa6397c | refs/heads/master | 2022-07-16T10:45:39.259839 | 2021-11-28T17:56:17 | 2021-11-28T17:56:17 | 88,914,568 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 476 | java | package by.pva.testing.testExamples;
import org.junit.jupiter.api.Test;
import by.pva.testing.classesForTesting.Calculator;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
public class TestThirdPartyAssertion {
privat... | [
"PortyankoWork@gmail.com"
] | PortyankoWork@gmail.com |
ce80a8480ceb56b1f8ce5aed4679544f7d8b567a | ee5855f849236715af65a631d4faffa1632148a7 | /src/main/java/com/wayne/bean/cycle/Main.java | 0618a71b0e8b5c710b97b33f0f3b2adc0773cacf | [] | no_license | WayneDiao/wayne-spring | c4d18db59f8424034b94d4f731ad052431b1d44f | 7eb227fe7bb6a12c65666d0fe6922886cde19b45 | refs/heads/master | 2020-03-27T09:09:01.052604 | 2018-09-11T14:38:32 | 2018-09-11T14:38:32 | 146,317,302 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 576 | java | package com.wayne.bean.cycle;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* @Author: wayne
* @Date: 2018/8/29
* @Description:
*/
public class Main {
public static void main(String[] args) {
ApplicationContext con... | [
"471295094@qq.com"
] | 471295094@qq.com |
3b67bff8d0351089e368d72e63a7885e73c5f4e4 | d6a1df43bc5aaadb10d831215b6110320d14af74 | /app01/src/main/java/com/tampro/app/service/ProjectManagerService.java | 4172658a24985493c9eb97ee4948cac054e46d26 | [] | no_license | xomrayno1/project-management | 399a5d277253fab023880bc59fde0b6e870806aa | 5b84387f449e0d5539fe6d7b909146d29042831a | refs/heads/main | 2023-01-23T00:17:57.310061 | 2020-12-11T18:33:17 | 2020-12-11T18:33:17 | 314,780,413 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 451 | java | package com.tampro.app.service;
import java.util.List;
import com.tampro.app.entity.ProjectManager;
public interface ProjectManagerService {
public void saveProjectManager(ProjectManager projectManager) throws Exception;
public void deleteProjectManager(ProjectManager projectManager) throws Exception;
List<... | [
"xomrayno5"
] | xomrayno5 |
67435077ccb251f230722a477de64514d6a008c3 | 8671eed16381452da0066fb4640dadd6b06f74c9 | /src/main/java/com/vzs/reactive/reactive/controller/HelloController.java | 52f9a0d2c3cc02989f521fb2ca71954ea0795707 | [] | no_license | vzsEdu/ReactorTest | 9e7f3f4dd47755e3dc46378a82343915d79f82e2 | 8231fcf479eb21d232f76e38ddafef09a9a3cc25 | refs/heads/master | 2020-04-15T01:40:50.371130 | 2019-01-09T03:01:46 | 2019-01-09T03:01:46 | 164,286,814 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,686 | java | package com.vzs.reactive.reactive.controller;
import com.google.common.collect.Lists;
import com.vzs.reactive.reactive.config.interceptor.CustomInterceptors;
import com.vzs.reactive.reactive.config.interceptor.MyInterceptor;
import com.vzs.reactive.reactive.controller.vo.MyResponse;
import com.vzs.reactive.reactive.jp... | [
"byao@coupang.com"
] | byao@coupang.com |
ea498ac347a61a6eb9c8e9ea84a7352e900850d5 | 477c2fac82ad7eabd1f4581cf6feba21083e6c00 | /app/src/main/java/com/khames/stickynotes/SignUpFragment.java | 4463617714963299a3c7e020bc30e50ae7b8f3ee | [] | no_license | AhmedKhames/StickyNotes | 6e7af96bc041078659cab78459fcee6fcd539050 | 91a0d1067362fb0706f525af1edb626c8a07a9c0 | refs/heads/master | 2020-05-17T02:23:04.087916 | 2019-04-25T14:35:22 | 2019-04-25T14:35:22 | 183,452,914 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,165 | java | package com.khames.stickynotes;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.text.TextUtils;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import and... | [
"midookhames8@gmail.com"
] | midookhames8@gmail.com |
2110c073b09f4c86eb68aa0d12869e49b060bfe5 | d019383372b7abb9f78e4088afc19607bb64b220 | /app/src/main/java/com/linsr/wanandroid/biz/register/RegisterContact.java | cd9e3327eea3f524513c15b41b7b2d7821cc2204 | [] | no_license | linsenrong666/TransportPlatform | 4ca1c6c268e2636af9f529af4716696333a73c16 | 8dc8586589cefbf724b5a3d55a855d717ac07908 | refs/heads/master | 2020-03-10T12:20:51.751631 | 2018-04-13T08:55:50 | 2018-04-13T08:55:50 | 129,375,961 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 457 | java | package com.linsr.wanandroid.biz.register;
/**
* Description
@author Linsr
*/
public interface RegisterContact {
interface View {
void setCode(String phone);
void setCodeBtn(boolean canClick,String text);
}
interface Presenter {
boolean paramsValid(String phone, String pwd1, St... | [
"linsenrong666@gmail.com"
] | linsenrong666@gmail.com |
db417e2ac6ef4688e2406b8f8dfeced85867e1b5 | 83b71168879c34ae05f0aa2862a256f09310e885 | /src/main/java/Method/Client/utils/Patcher/Events/EntityPlayerJumpEvent.java | 555ab53f2274f0206588bdbc9d92e9bebbb07917 | [
"WTFPL"
] | permissive | RaptorClientDevelopment/futrexclientsource | a31fe2b3870b69005e246c7fc593adf9af3d054b | 496f882911c7584fd93012862ad243008cd80bd5 | refs/heads/master | 2023-05-10T02:10:41.903094 | 2021-06-10T06:36:17 | 2021-06-10T06:36:17 | 372,707,546 | 5 | 3 | null | null | null | null | UTF-8 | Java | false | false | 562 | java | package Method.Client.utils.Patcher.Events;
import net.minecraftforge.fml.common.eventhandler.*;
import net.minecraft.entity.player.*;
@Cancelable
public final class EntityPlayerJumpEvent extends Event
{
private float jumpHeight;
private final EntityPlayer player;
public EntityPlayerJumpEvent(final E... | [
"ritomgamer123@gmail.com"
] | ritomgamer123@gmail.com |
3d921140ed3fc58545ec89d9951cc202fb5990b0 | a1ed915f1b20e282c390faf592360e5bf0eceaf6 | /app/src/main/java/com/example/user/myapplication/ItemsAdapters/Sevasa_cam4.java | 162e74d2f920f55d5e47ff7bc33f7db44a59c44b | [] | no_license | EdwinRos96/proyectofinal_moviles1 | cb13212bd2f56c5b790625e573e4d459526e342d | 191275e4d1ff01633f618f91ed9fb088bdc689c1 | refs/heads/master | 2020-06-23T18:27:13.467048 | 2016-12-12T05:43:31 | 2016-12-12T05:43:31 | 73,583,136 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 405 | java | package com.example.user.myapplication.ItemsAdapters;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import com.example.user.myapplication.R;
public class Sevasa_cam4 extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate... | [
"edwinros1996@gmail.com"
] | edwinros1996@gmail.com |
2617003de056f9475d41effac9173e7d637a8037 | 8c15bbfde823138ddb8917aa1720889043f629b5 | /app/src/test/java/com/activity/devibar/cartogo/ExampleUnitTest.java | 150c8849a5ea21e008e03bf791accef5ae791826 | [] | no_license | namaedevibar/CarToGo | e9a93141ee6cab3578d414bf89e7c0dc5f66f18d | 99b5fda36bdc8c722411b554bbfb30e5d894e4a3 | refs/heads/master | 2020-09-20T13:59:21.752964 | 2016-09-06T05:05:01 | 2016-09-06T05:05:01 | 67,474,043 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 321 | java | package com.activity.devibar.cartogo;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* To work on unit tests, switch the Test Artifact in the Build Variants view.
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() throws Exception {
assertEquals(4, 2 + 2);
}
... | [
"namaiidevibar@gmail.com"
] | namaiidevibar@gmail.com |
655a2e30577123dcb53386d59d9cd5a0e08b8f8f | c3fd811aff9e80eb46e5f87771a3ce714f2ddb17 | /src/test/java/com/mycompany/myapp/web/rest/errors/ExceptionTranslatorIntTest.java | ec360d782d954e89216acd5931ee279027154edc | [] | no_license | danielzhangcs/course-registration-sys | 78c47bd127b5b240438a466bf9a07bcfe0b91227 | 4174ea80f1685da95a134acc4a2005300be6c308 | refs/heads/master | 2023-01-20T13:06:38.403700 | 2019-09-26T04:50:51 | 2019-09-26T04:50:51 | 211,000,140 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,519 | java | package com.mycompany.myapp.web.rest.errors;
import com.mycompany.myapp.JiuzhangquanzhankeApp;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springfr... | [
"danielzhang@brandeis.edu"
] | danielzhang@brandeis.edu |
2e71683290a4570162e57dcf9712b131f4f559c8 | 51160e23c9b9dde5dbd18df9c4cafc8509ef30e5 | /app/src/main/java/com/sunmoon/helper/modules/search/SearchActivity.java | 5de00714f8a1971b875904202b36cb9fdaf76410 | [] | no_license | ChenSunMoon/SunMoonHelper | 9cbc5b6549408be556fde1c3baa84e33ccb4b972 | a2246e558d8ffe3119d8daa54c8ba63578c9be2f | refs/heads/master | 2020-12-24T06:19:02.533809 | 2020-07-31T03:02:33 | 2020-07-31T03:02:33 | 73,478,600 | 11 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,280 | java | package com.sunmoon.helper.modules.search;
import android.content.Intent;
import android.databinding.DataBindingUtil;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.KeyEvent;
import android.view.View;
import android.webkit.WebChromeClient;
import android.webkit.WebSettings;
i... | [
"chenmingming.2009@qq.com"
] | chenmingming.2009@qq.com |
7fa2ee306fb3eb7784922f0e481b8781fd2f2a44 | c8a9c55376b2b3fb49ed9f7c4122e4384d6ae5ae | /sample/src/main/java/com/example/robospock/tasks/StringAsycTask.java | 1be268f1bec1cafe8e16e973f580fafd329f2750 | [
"MIT"
] | permissive | nolia/RoboSpock | 0661f782a9dac5aa289ba4fc2f8c3780541c7ad3 | 3dd654a93f88de34cf434ce6bd39412d0786723e | refs/heads/master | 2020-04-06T06:24:00.638352 | 2016-05-05T15:56:51 | 2016-05-05T15:59:59 | 58,141,172 | 1 | 0 | null | 2016-05-05T15:29:17 | 2016-05-05T15:29:16 | Java | UTF-8 | Java | false | false | 655 | java | package com.example.robospock.tasks;
import android.content.Context;
import com.example.robospock.activity.TaskActivity;
public class StringAsycTask extends MyRoboAsycTask<String> {
/**
*
*/
private final TaskActivity taskActivity;
public StringAsycTask(final TaskActivity taskActivity, final C... | [
"pjakubczyk@applause.com"
] | pjakubczyk@applause.com |
71832c0dfbdf8306c2eae4fa136dda98577b7f66 | 03661000a84081a63c34c3172ab9d396c58cffef | /Problems/Squirrels and nuts/src/Main.java | 7faaeeecd226127ad8d06a54e6068aae301b6856 | [] | no_license | NC-O3/Simple-Chatty-Bot | b374c97986dcf6c6d7fd5d9a68ea98c03899457c | bda6296a35f682a19ee3178892459ec7d9b4808d | refs/heads/main | 2023-02-04T06:14:47.345261 | 2020-12-18T18:01:55 | 2020-12-18T18:01:55 | 322,669,104 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 371 | java | import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int numberOfSquirrels = scanner.nextInt();
int numberOfNuts = scanner.nextInt();
int divide = (numberOfNuts / numberOfSquirrels) * numberOfSquirrels;
... | [
"60147444+NC-O3@users.noreply.github.com"
] | 60147444+NC-O3@users.noreply.github.com |
3839d2112d2c56e0a320f4c908a9bac7cd0ff935 | 27c4df9bf9b34b3a1b3eeb9b9cde2c598ac1d645 | /app/src/main/java/com/example/skaic20200210/MainActivity.java | d7513202b12dab9481e41e2f33487d98307db9b0 | [] | no_license | kkmmrt/skaic20200210 | b6503e4359cccf2af4843628bc852b3471d3f0a7 | c4aab3783628fb182d2228b940edbd73fdc3bf3e | refs/heads/master | 2021-01-02T11:20:23.261583 | 2020-02-10T19:49:46 | 2020-02-10T19:49:46 | 239,599,113 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 339 | java | package com.example.skaic20200210;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activ... | [
"technikas@gmail.com"
] | technikas@gmail.com |
78fbeffb6feb1f1569599d9007f7cb9ae0347203 | ced8e69415b6988b9e3543f1a6280bac626fef0b | /src/main/java/com/example/game/resource/DemoClass.java | af4c8ffe960fb20ab8088cda0686693a7d74d01d | [] | no_license | Jubin9877/Game | 0c7def8d61bd2cda13987b04be7dbf00fb81ed14 | a82a8482ab6aa6f0866166cc57942b37f2933135 | refs/heads/master | 2021-01-23T16:05:21.216662 | 2017-09-08T12:58:24 | 2017-09-08T12:58:24 | 102,721,494 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 841 | java | package com.example.game.resource;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
public class DemoClass {
public static void main(String args[]) throws Exception {
// int values[] = new int[4];
// Object v... | [
"pateljubin92@gmail.com"
] | pateljubin92@gmail.com |
2a804e04bbca6664316f17681c5640162e960dee | db6ee2560283cbfb14ed278848f0564d9eb7e785 | /src/main/java/io/vertx/ext/hawkular/impl/DataPoint.java | b60f1e672990fcd439c7e979d69e5511ca5b91a7 | [
"Apache-2.0"
] | permissive | vert-x3/vertx-hawkular-metrics | 7dfcd1effd1be76b3ca86655eed488011a47aafe | 790cd7ca144eedc988f2788d126faea1cf9e7a13 | refs/heads/master | 2023-08-18T20:40:00.056075 | 2018-08-01T22:01:35 | 2018-08-01T22:01:35 | 46,127,760 | 11 | 12 | Apache-2.0 | 2018-07-04T16:09:29 | 2015-11-13T14:50:55 | Java | UTF-8 | Java | false | false | 1,112 | java | /*
* Copyright 2015 Red Hat, Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.o... | [
"tsegismo@redhat.com"
] | tsegismo@redhat.com |
4bfe877a77960274a5813872f26b5f6c21c092f8 | a4e1c05ad6e84ea98cc7ed210912c5f7037c8a04 | /Homework5-master/src/main/java/ua/servlets/controller/product/AddProductServlet.java | 9989b06afde672ad823ae6a8755d3009886a60a4 | [] | no_license | Mykola-L/JavaDeveloper7 | 247f41e8adae18bedc7ca2ad56cea85ed67f35d6 | 6a80ff3307b6b3637cfaaa0d6073bb9ad0acb28b | refs/heads/master | 2021-08-30T08:10:28.220890 | 2017-12-16T23:50:02 | 2017-12-16T23:50:02 | 114,495,438 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,770 | java | package ua.servlets.controller.product;
import ua.servlets.DaoSingleton;
import ua.servlets.model.Product;
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.... | [
"mykolalavrushko@gmail.com"
] | mykolalavrushko@gmail.com |
4d62522afd6a92f411db68d66aa42cd0ed830016 | 73f4a8470cf3e8f59419f67efe5459f439aa8976 | /superfly-web/src/main/java/com/payneteasy/superfly/web/wicket/page/BasePage.java | f3b8ee54211c919ebb783538028fb4831df6d255 | [
"Apache-2.0"
] | permissive | payneteasy/superfly | 23bea3cba13002271e332e4e2fc741f95318d155 | 91a4f5162cff84b904f5d7365f8cb83291b188e8 | refs/heads/master | 2023-08-17T08:27:24.809496 | 2023-08-07T19:46:52 | 2023-08-07T19:46:52 | 32,253,082 | 4 | 11 | Apache-2.0 | 2023-07-13T12:37:49 | 2015-03-15T09:35:38 | Java | UTF-8 | Java | false | false | 3,956 | java | package com.payneteasy.superfly.web.wicket.page;
import com.payneteasy.superfly.service.SettingsService;
import com.payneteasy.superfly.web.security.SecurityUtils;
import com.payneteasy.superfly.web.wicket.page.action.ListActionsPage;
import com.payneteasy.superfly.web.wicket.page.group.ListGroupsPage;
import com.payn... | [
"vvk@payneteasy.com"
] | vvk@payneteasy.com |
df921aad6f88df9c20c1b38ef82404e82692b5fe | d8ac43342e133a3c68aecc6f4cc7ed0ed737a01f | /com/file/client/ClientAction.java | 1ad855d30db2810cdc5d13f0c256996fef601291 | [] | no_license | time881/breakpoint-resume-Client | 4d2ff7adafeb3e363f04d030ffb1d72c5113035c | 2fba93672d29533610103cbdb73bea57f58a5005 | refs/heads/master | 2021-03-27T20:12:02.943606 | 2017-09-29T14:35:14 | 2017-09-29T14:35:14 | 105,280,713 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,185 | java | package com.file.client;
import java.io.DataOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.ObjectOutputStream;
import java.io.PrintWriter;
import java.net.Socket;
import com.block.client.ClientBlock;
public class ClientAction extends Thread {
private long length = 0;
private St... | [
"time881@163.com"
] | time881@163.com |
c0500299e80e0875a755e74004831a59af6e8948 | d1748ebe600206abe263a721e5ba94bfcf87b0ae | /src/test/java/com/example/demo/PersonControllerTest.java | e1d050e17611d11738e0a7239ed0944154889293 | [] | no_license | Sofka-XT/workshop-reactor-core | 0b5ce0bbfc20eb040c917af6fa5e1d533728d152 | b2f50165bed4c57a511851f6d9df688ee9eac838 | refs/heads/main | 2023-04-23T20:25:59.440397 | 2021-05-10T20:05:31 | 2021-05-10T20:05:31 | 366,162,206 | 1 | 37 | null | null | null | null | UTF-8 | Java | false | false | 3,625 | java | package com.example.demo;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvSource;
import org.mockito.ArgumentCaptor;
import org.mockito.Captor;
... | [
"noreply@github.com"
] | Sofka-XT.noreply@github.com |
7efe08a232dd151be9a9c1476165faac150da1c7 | dae9637952ad9626b873b85101b5b2fb53b061e1 | /src/test/java/StepDefinition/Steps.java | c528c32b6135aa5097a280e443b17376ba32b095 | [] | no_license | taydin-ra/CucumberMentoring | 6e526edaefae5a67c7b05ba1b9c8f5d34cbfeeea | d1d30f54acc1e1d6eb42f85a5384fa478b5658d9 | refs/heads/master | 2022-12-18T16:46:48.066801 | 2020-09-08T22:50:27 | 2020-09-08T22:50:27 | 285,067,813 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,371 | java | package StepDefinition;
import cucumber.api.java.en.Given;
import cucumber.api.java.en.Then;
import org.openqa.selenium.WebDriver;
import pomClasses.BasePom;
import utilities.BaseDriver;
import pomClasses.accountPage;
import java.util.concurrent.TimeUnit;
public class Steps extends BasePom {
private WebDriver ... | [
"ttorun16@gmail.com"
] | ttorun16@gmail.com |
6909cd48346d54cac1ef475d3c93f6c569a9622c | 71eca7b97d21afaea53f779dd2c94760d7d443b4 | /PatternCollection/FixRuleMiner/src/main/java/com/apimisuse/rule/node/NodeType.java | 9fa246f96669123ff663b8f1aff2404f5d2b6307 | [] | no_license | bd2019us/APIMisuse | 19d80d788cce24cae45a521bd1dfa24f92c9810f | 00312d711e576ad6d0f93960838d09d591d84f93 | refs/heads/master | 2022-12-28T12:56:30.705193 | 2020-10-19T01:13:48 | 2020-10-19T01:13:48 | 304,938,165 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,157 | java | package com.apimisuse.rule.node;
public class NodeType {
public final static String Invocation = "Invocation";
public final static String ConstructorCall = "ConstructorCall";
public final static String BinaryOperator = "BinaryOperator";
public final static String UnaryOperator = "UnaryOperator";
public fin... | [
"xxl124730@utdallas.edu"
] | xxl124730@utdallas.edu |
a18fbba256d9d470b4d3e7db242f25c18481c2b1 | f9fea63091ff06e210ade68df3b6c0db33fcb6dc | /src/main/java/com/adu21/ddd/policy/domain/model/HomePolicy.java | 4993353c642d1b24655e2deac2a216d245a3c21e | [] | no_license | raymondzhaoy/ddd_demo | b8530490665bd9d546c31c15523d29d62e8c35ff | b62325cf05e7f7374ab69f5774763ffdfd2d56f8 | refs/heads/master | 2020-04-22T13:42:13.477237 | 2018-04-25T08:19:23 | 2018-04-25T08:19:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 355 | java | package com.adu21.ddd.policy.domain.model;
import lombok.Getter;
import lombok.Setter;
import javax.persistence.Entity;
import javax.persistence.Table;
@Getter
@Setter
@Entity
@Table(name = "HOME_POLICY")
public class HomePolicy extends Policy {
private String buildingMaterial;
private String buildingType;
... | [
"LukeDu571@gmail.com"
] | LukeDu571@gmail.com |
3dc9f39e2370d16e0519bdfd2f37ddb013ac005b | 3cd63aba77b753d85414b29279a77c0bc251cea9 | /main/plugins/org.talend.sdk.component.studio-integration/src/main/java/org/talend/sdk/component/studio/model/connector/ConnectorCreatorFactory.java | 9996af6a0543734cf04757d5eb7d3cd8836225dc | [
"Apache-2.0"
] | permissive | 195858/tdi-studio-se | 249bcebb9700c6bbc8905ccef73032942827390d | 4fdb5cfb3aeee621eacfaef17882d92d65db42c3 | refs/heads/master | 2021-04-06T08:56:14.666143 | 2018-10-01T14:11:28 | 2018-10-01T14:11:28 | 124,540,962 | 1 | 0 | null | 2018-10-01T14:11:29 | 2018-03-09T12:59:25 | Java | UTF-8 | Java | false | false | 4,027 | java | /**
* Copyright (C) 2006-2018 Talend Inc. - www.talend.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appli... | [
"nrousseau@talend.com"
] | nrousseau@talend.com |
84ab9802a78a2507955b92cec3b391eba97cab46 | 0c34efda42ba64baa02b4ede1b874ff4359d168a | /CS 548/Clinic_Application/ClinicResearchService/ejbModule/edu/stevens/cs548/clinic/research/domain/IResearchDAO.java | 33468f22b854e42431cc03fd387b538a1d94de4b | [] | no_license | Devanshu8195/ClinicApp | a2948f66c0b0876325e2b9f82a9d5ea95b0da211 | bb35f00782881591be4cdaa7e96d36dcf2794aa2 | refs/heads/master | 2020-03-25T00:51:05.150691 | 2018-08-01T21:40:25 | 2018-08-01T21:40:25 | 116,200,761 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 805 | java | package edu.stevens.cs548.clinic.research.domain;
import java.util.List;
import edu.stevens.cs548.clinic.domain.research.DrugTreatmentRecord;
import edu.stevens.cs548.clinic.domain.research.Subject;
public interface IResearchDAO {
public static class ResearchExn extends Exception {
private static final long ser... | [
"devanshumehta95@gmail.com"
] | devanshumehta95@gmail.com |
d6799b99975093aaa1f57dbba44d88214df369cb | 9fe49bf7832aba9292ddfcb88fa5e1a53c13a5a4 | /src/main/java/ec/com/redepronik/negosys/dao/FacturaDaoImpl.java | 69119035b54fb3467aafb22350e38fe0de2def04 | [] | no_license | Idonius/NegosysSpark | 87c4c5bb560c54f519a8e54b2130557bc091eb63 | c9ea96d2565500a806749ec4326e2bd3ac649b11 | refs/heads/master | 2022-03-07T14:31:01.583523 | 2015-08-27T04:34:55 | 2015-08-27T04:34:55 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 250 | java | package ec.com.redepronik.negosys.dao;
import org.springframework.stereotype.Repository;
import ec.com.redepronik.negosys.entity.Factura;
@Repository
public class FacturaDaoImpl extends GenericDaoImpl<Factura, Integer> implements
FacturaDao {
} | [
"aguachisaca@redepronik.com.ec"
] | aguachisaca@redepronik.com.ec |
5564752e3590257272524aac85476634d7f0ceea | 182d6f40c2a97abad22f3939df6e5fb547e5744d | /sdk/office365-mail-calendar-contact-sdk/odata/engine/src/main/java/com/msopentech/odatajclient/engine/data/LinkCollectionResource.java | 785f9e61cf4c7999b0524c6aad24e082aa583a46 | [
"Apache-2.0",
"LicenseRef-scancode-generic-cla"
] | permissive | ashank/Office-365-SDK-for-Android | 6488d4dc41759661601394fb1842c41b6ae63076 | 935a58a66f23e80f237224b2b3dad92b5b1419ad | refs/heads/master | 2021-01-13T14:04:58.224879 | 2014-03-05T12:22:40 | 2014-03-05T12:22:40 | 17,461,088 | 3 | 4 | null | null | null | null | UTF-8 | Java | false | false | 1,425 | java | /**
* Copyright © Microsoft Open Technologies, Inc.
*
* All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* THIS ... | [
"dev@maxkostin.com"
] | dev@maxkostin.com |
9e0a8979cf3f1f6c512c25c18b801b4ba3149363 | b028d4a2582041d5ae025089aa87b381819c672e | /app/src/main/java/com/example/pdftospeech/MainActivity.java | 03da12f66ad2eebe7174cd5232c6fcfb167c29aa | [] | no_license | allandrakeprojects/PDF-to-Speech | 948f1eb5687fdb82736f02e99aa35f0c7f80c1a7 | 1bf0a5c6e278c5636bcf6a70ddfe0df1c97a4984 | refs/heads/master | 2022-03-03T14:39:31.507250 | 2019-09-16T04:39:24 | 2019-09-16T04:39:24 | 202,726,416 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 17,298 | java | package com.example.pdftospeech;
import android.Manifest;
import android.app.ProgressDialog;
import android.content.Intent;
import android.content.SharedPreferences;
import android.graphics.Bitmap;
import android.media.AudioManager;
import android.media.MediaPlayer;
import android.net.Uri;
import android.os.Bundle;
im... | [
"40012648+allandrakeprojects@users.noreply.github.com"
] | 40012648+allandrakeprojects@users.noreply.github.com |
2063f18634c6a211470031637684782e31e6eb3f | b25898993f8646c8517d93662cbe9ae33cf51095 | /o2xfs-xfs3/src/test/java/at/o2xfs/xfs/cim/v3_20/Present3_20Test.java | 3870c6f379a2faa7e696c0895bf4d0fb9db62241 | [
"BSD-2-Clause"
] | permissive | dotfeng/O2Xfs | 5e4a16cd11305d4476ce28fb15887d6393ca90cd | 27e9b09fc8f5a8f4b0c6d9a5d1746cadb61b121d | refs/heads/master | 2021-01-24T20:25:10.044447 | 2017-03-08T22:07:02 | 2017-03-08T22:07:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,942 | java | /*
* Copyright (c) 2017, Andreas Fagschlunger. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, ... | [
"github@fagschlunger.co.at"
] | github@fagschlunger.co.at |
07fabf0d9df5c6a87a2d9a1ca8e85d0b4f27bcee | bb45ca5f028b841ca0a08ffef60cedc40090f2c1 | /app/src/main/java/io/netty/channel/ChannelOutboundHandler.java | 748d82b867275db0d78bd60103f3ad330b60833d | [] | no_license | tik5213/myWorldBox | 0d248bcc13e23de5a58efd5c10abca4596f4e442 | b0bde3017211cc10584b93e81cf8d3f929bc0a45 | refs/heads/master | 2020-04-12T19:52:17.559775 | 2017-08-14T05:49:03 | 2017-08-14T05:49:03 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,053 | java | package io.netty.channel;
import java.net.SocketAddress;
public interface ChannelOutboundHandler extends ChannelHandler {
void bind(ChannelHandlerContext channelHandlerContext, SocketAddress socketAddress, ChannelPromise channelPromise) throws Exception;
void close(ChannelHandlerContext channelHandlerContext... | [
"18631616220@163.com"
] | 18631616220@163.com |
e2656d168fd556e707e872a0ba393f4ef273cc41 | 4d4086b690fbc9b9903038329f1a2cbe2ef9fba8 | /app/src/main/java/ua/com/anyapps/easyads/easyads/CreateNewAd/LoadCategoriesLv3Completed.java | 81bb37eba6c27df80c0e5123ebab9ec2f9e164e2 | [] | no_license | anyappscompany/easyads | 8056d8eec617ab4b62c15b81c67849078720a5d5 | 4945477f0a9ecac352aa0f5c477a7995851bf0ef | refs/heads/master | 2022-03-29T02:53:45.616764 | 2020-01-04T22:53:06 | 2020-01-04T22:53:06 | 231,839,700 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 155 | java | package ua.com.anyapps.easyads.easyads.CreateNewAd;
public interface LoadCategoriesLv3Completed {
void LoadCategoriesLv3Completed(String response);
}
| [
"anyappscompany@gmail.com"
] | anyappscompany@gmail.com |
a50220a37d88df1bff27b9b155587c06a72897e2 | 2266b09f5673391a50417a03f3c0580cb71e4a13 | /src/main/java/com/denizenscript/denizencore/scripts/commands/queue/RateLimitCommand.java | 04d83c5f18b1562c02be268a548e98184bc1a33f | [
"MIT"
] | permissive | Ph4i1ur3/Denizen-Core | 84d47fbe41bcf5724c062a28c69ce24dfa7a270d | c392128a1bf4d828debd0ad3af9dc233133a34f6 | refs/heads/master | 2020-09-28T10:21:48.996186 | 2019-12-08T20:23:08 | 2019-12-08T20:23:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,543 | java | package com.denizenscript.denizencore.scripts.commands.queue;
import com.denizenscript.denizencore.DenizenCore;
import com.denizenscript.denizencore.exceptions.InvalidArgumentsException;
import com.denizenscript.denizencore.objects.Argument;
import com.denizenscript.denizencore.objects.core.DurationTag;
import c... | [
"agoodwin@freneticllc.com"
] | agoodwin@freneticllc.com |
e5ea8abcf055751318e3fae7e7854e1479e19a47 | 1316af113627b7282dc488c8618a06cab2df4d52 | /app/src/main/java/com/example/teste/ui/main/PageViewModel.java | 513670b4f6198ccedb7b91d59bd96571debc09a5 | [] | no_license | victorbeleza-dev/whatsAppCopy | 8d1879361b5c3e2ec5bfaa1274439e3d26ae0d39 | 37242e8d08b01783fa0420a1eb1e9ca9cf7fabec | refs/heads/master | 2020-09-21T06:00:16.011130 | 2019-12-18T17:44:57 | 2019-12-18T17:44:57 | 224,702,881 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 725 | java | package com.example.teste.ui.main;
import androidx.arch.core.util.Function;
import androidx.lifecycle.LiveData;
import androidx.lifecycle.MutableLiveData;
import androidx.lifecycle.Transformations;
import androidx.lifecycle.ViewModel;
public class PageViewModel extends ViewModel {
private MutableLiveData<Integer... | [
"felipe.beleza29@gmail.com"
] | felipe.beleza29@gmail.com |
c6a7b90191464a03dc65b44d97d9ead0aafb71da | 11f847820bfa605b5045aada622d95ea3dff4ac9 | /src/main/java/com/service/registration/RegistrationServiceImpl.java | c51069266d640b2776ff9cf452ce54dc2779ffe6 | [] | no_license | ArtorNado/USTAL | ad858e029a47e3a940d092bc58f8a5598b5a5eb2 | 080c17a1facca14159421a68cbfb9322aae35550 | refs/heads/master | 2021-05-17T03:33:25.220258 | 2020-06-14T12:02:03 | 2020-06-14T12:02:03 | 250,600,211 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,606 | java | package com.service.registration;
import com.aspect.LogExecutionTime;
import com.models.Role;
import com.models.User;
import com.models.UserData;
import com.repository.UserDataRepository;
import com.repository.UserRepository;
import com.dto.UserDto;
import com.dto.MessageDto;
import org.springframework.beans.factory.a... | [
"16artem1999@mail.ru"
] | 16artem1999@mail.ru |
fb460980147ca79782f7322ae24cb66a547e38cb | 4688d19282b2b3b46fc7911d5d67eac0e87bbe24 | /aws-java-sdk-shield/src/main/java/com/amazonaws/services/shield/model/DescribeProtectionRequest.java | 7b65b303f81615a33748f87845dde63bc7498539 | [
"Apache-2.0"
] | permissive | emilva/aws-sdk-java | c123009b816963a8dc86469405b7e687602579ba | 8fdbdbacdb289fdc0ede057015722b8f7a0d89dc | refs/heads/master | 2021-05-13T17:39:35.101322 | 2018-12-12T13:11:42 | 2018-12-12T13:11:42 | 116,821,450 | 1 | 0 | Apache-2.0 | 2018-09-19T04:17:41 | 2018-01-09T13:45:39 | Java | UTF-8 | Java | false | false | 3,841 | java | /*
* Copyright 2012-2018 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... | [
""
] | |
e95dffc799b83bbc5ab730c08f0c6d250c297a78 | b947fd4011169e7987bb6537c8af781e072ec24c | /book/Solution_소금쟁이.java | 2b7dd7ea6ee11aed2195d055350054b514a3adfe | [] | no_license | gahu/ssafy.algo | 7d8a3996336ae07eb75ab6fc5486bdb640fa0320 | 0ce569a09c762c7020684f72a337c3d8b8daddf4 | refs/heads/master | 2020-06-23T10:49:09.791976 | 2019-07-25T11:03:38 | 2019-07-25T11:03:38 | 198,600,922 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,585 | java | package book;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class Solution_소금쟁이 {
static int[][] map;
static int[][] salt;
static int N, su;
static boolean[][] check;
static int[] dx = {0, 1, 0}; // 0 하 우
static int[] dy = {0, 0, 1};
stat... | [
"bgg8988@gmail.com"
] | bgg8988@gmail.com |
8aa70810a70501edfbfb78fa93f32bdeaf55c6a1 | e21adc5801d85baf20b3388e4f1a281af3a5c786 | /src/main/java/com/demonblog/controller/UserController.java | aae4562e100c93b158bbcf87a4e32841b676fcb8 | [] | no_license | KelechiDivine/Blog | 24f4bfad50140f34f2d9a66c190b9ea09ff0e37a | 2876ea33aac63fdb415793e48eecfb572e7f2dea | refs/heads/main | 2023-07-08T14:55:59.258175 | 2021-08-23T16:38:56 | 2021-08-23T16:38:56 | 393,033,432 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,373 | java | package com.demonblog.controller;
import com.demonblog.exceptions.General_IdAlreadyExists;
import com.demonblog.exceptions.General_UserAlreadyExists;
import com.demonblog.model.User;
import com.demonblog.service.UserService;
import lombok.AllArgsConstructor;
import org.springframework.beans.factory.annotation.Autowir... | [
"74909446+KelechiDivine@users.noreply.github.com"
] | 74909446+KelechiDivine@users.noreply.github.com |
bca5be3fa912705a744b4c435e333489afaea451 | a8ec6b88bfb9ccefdb218b7fb0c00a41b40049c0 | /Dashi/build/classes/api/RecommendRestaurants.java | 79ece2d4cd49bd17116326cdfca307e45bde0e56 | [
"MIT"
] | permissive | Yifeiww/Restaurant-Recommendation-web | 03119d78f8f70148c29506a3bb689483ee669b19 | 513448778252d4553c87a3b9deb1d067702d63f0 | refs/heads/master | 2021-07-07T04:36:05.796988 | 2017-10-01T17:57:54 | 2017-10-01T17:57:54 | 82,724,702 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,617 | java | package api;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.json.JSONArray;
import org.json.JSONException;
impo... | [
"noreply@github.com"
] | Yifeiww.noreply@github.com |
d4a6480c74ce0d41ddf78a920c54ad16269415fc | 86bc52e8e94712aa77ea94f4ce240f0b00ccc5ef | /ZSSW_INNER/src/com/zrsf/forclient/vo/bbcx/YqsbcflVo.java | c1693ae6040d15c7046788dc466f9a2dece68048 | [] | no_license | xuxj2/zssw | 491ee164d2f22af635eb916421f667b053ede50d | d2ae02430c37695bf83f835f211f8ac33df0b611 | refs/heads/master | 2020-06-12T04:45:58.071898 | 2016-12-05T08:43:57 | 2016-12-05T08:43:57 | 75,605,933 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 943 | java | package com.zrsf.forclient.vo.bbcx;
import java.io.Serializable;
public class YqsbcflVo implements Serializable {
private static final long serialVersionUID = 1L;
private String swjgdm;
private String swjgmc;
private int yqsbhs;
private int cfhs;
private double yqsbcfl;
public YqsbcflVo(){
}... | [
"865136816@qq.com"
] | 865136816@qq.com |
570451641fa37d78180fea0de46d136a9c62562f | a09571b04c2fa30e3cf554b493d0df56c74ebf14 | /app/src/test/java/dogvsmeteorites/lebasoft/dogvsmeteorites/ExampleUnitTest.java | 0a722e8ec20c7f9797064b2342fc743781c2b1fc | [] | no_license | violehtone/DogVsMeteorites | c0aba409cdcdf50ddbe89a6b103ea73cedc468ef | e3195598d5332d9855139253d77e6ec686d09e6b | refs/heads/master | 2020-03-11T12:59:45.808733 | 2018-04-18T06:14:16 | 2018-04-18T06:14:16 | 130,012,514 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 418 | java | package dogvsmeteorites.lebasoft.dogvsmeteorites;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Te... | [
"ville.lehtonen@siili.com"
] | ville.lehtonen@siili.com |
e3917639966062e6888707ba2d0a743639ae7b1c | a2f355c935b1893e70fca9e6f71f5f48b3b80e60 | /src/main/java/com/it/fleetapp/models/EmployeeType.java | 2fbfe5f2bbdb18fdd12e600d82ce73d5f995c0e2 | [] | no_license | thirtsoft/fleetapp | 9ba0a507600dffe41482b573e0426733aaf38a7f | 83bc7c77424697f7b475608d8cce390abeddeb71 | refs/heads/master | 2021-03-20T06:30:27.883983 | 2020-03-15T02:38:12 | 2020-03-15T02:38:12 | 247,185,391 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 432 | java | package com.it.fleetapp.models;
import com.fasterxml.jackson.annotation.JsonIdentityInfo;
import com.fasterxml.jackson.annotation.ObjectIdGenerators;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.persistence.Entity;
@Entity
@Data
@EqualsAndHashCode(callSuper = false)
@JsonIdentityInfo(generator =... | [
"thirtsoft@gmail.com"
] | thirtsoft@gmail.com |
22ef86d6326c4235e4b8a879a3878f1f790e47e1 | e9fe8dd99f6b5d322880b0224f26282624dedb44 | /websocketlib/src/main/java/com/gps/ros/rosbridge/indication/Base64Encoded.java | c1989ed3c75ab450d21d9efc87352230ff5aa711 | [
"Apache-2.0"
] | permissive | ZhouKanZ/SweepRobot | 9afd86c15d98d035e3b8e73fc853deb3cd577eaa | 9fdc2698c01a99d10f0b6a4a4d4c3422be75af36 | refs/heads/master | 2020-06-27T17:59:10.410803 | 2017-07-24T02:31:18 | 2017-07-24T02:31:18 | 97,067,167 | 3 | 1 | null | 2017-08-30T06:25:09 | 2017-07-13T01:35:38 | Java | UTF-8 | Java | false | false | 1,098 | java | /**
* Copyright (c) 2014 Jilk Systems, Inc.
*
* This file is part of the Java ROSBridge Client.
*
* The Java ROSBridge Client is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the Lic... | [
"zhoukan.wg@gmail.com"
] | zhoukan.wg@gmail.com |
00eca36b7fa831d7043cd7ab15f1d2abda594a52 | 6ae0c4604e2cd5cc768852017b293799a8cede33 | /src/main/java/net/canadensys/dataportal/occurrence/dao/PublisherDAO.java | 60060e6405dda76040e02c2c8ce7e2a0c420af3f | [
"MIT"
] | permissive | maduhu/liger-data-access | c707331bdcaa85ee35c12f45be7c6b8be062c1d4 | 3a84e62b71266bd1cdfd889ebba2d401fdc9cfe0 | refs/heads/master | 2021-01-18T10:52:15.182233 | 2016-01-06T18:08:23 | 2016-01-06T18:08:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 895 | java | package net.canadensys.dataportal.occurrence.dao;
import java.util.List;
import net.canadensys.dataportal.occurrence.model.PublisherModel;
/**
* Interface for accessing publisher information data.
*
* @author Pedro Guimarães
*/
public interface PublisherDAO {
/**
* Save a publisherModel
*
* @param publ... | [
"tigreped@gmail.com"
] | tigreped@gmail.com |
6732c59f95988392f6070b10e044289232795d80 | 6fe869f2d744ab792e227d28d7f47adf1ec0046c | /seckill1/src/main/java/com/seckill/util/DBUtil.java | 33ccf3b52ccd94409750e552c6590bbb3914cc59 | [
"Apache-2.0"
] | permissive | da2win/Seckill | dca135094b5c073a54f1b05040866144ad5b0598 | a820c79a30a8a4d6f8e7e3ce66762492ef17e9fb | refs/heads/master | 2020-03-17T06:00:01.289589 | 2018-05-23T09:30:45 | 2018-05-23T09:30:45 | 133,337,129 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,017 | java | package com.seckill.util;
import java.io.InputStream;
import java.sql.Connection;
import java.sql.DriverManager;
import java.util.Properties;
/**
*
* @author Darwin
* @date 2018/5/15
*/
public class DBUtil {
private static Properties props;
static {
try {
InputStream in = DBUtil.clas... | [
"da2win@foxmail.com"
] | da2win@foxmail.com |
8338ee565a4fa647e3618cc674262bf0583a8bde | 349c632d9fedfb7c38203b09f87025182786eb8d | /actionlibrary/src/main/java/cn/andthink/actionlibrary/activity/BaseMediaActivity.java | 74c75839d52db8df41f299f7db6617c930e81785 | [] | no_license | wuhaiyang/actionLib | a9c3b776665f33a25a0be96bfb5cf95d92de7c3b | 124235dba3ad4f7296c175acd004890f96939478 | refs/heads/master | 2021-01-10T01:53:00.904991 | 2015-10-18T06:32:51 | 2015-10-18T06:32:51 | 44,465,937 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,159 | java | package cn.andthink.actionlibrary.activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Build;
import android.provider.MediaStore;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import cn.andthink.actionlibrary.utils.FileUtil;
import cn.andthink.actionlibrary.uti... | [
"wuhaiyang@andthink.cn"
] | wuhaiyang@andthink.cn |
4bea985301d318ccf8ca9c6152431d167f36299e | 6b64d276c6d588cb01f8efa9c0918047b9eb5b0a | /Pharmacy_Management_System/src/pharmacyControlar/Spals.java | 334736989b37a412393acd3f6920f9260316a39e | [] | no_license | Azam4/Pharmacy_Management_System | e22cb31c365e226d1cc4bf10f46eb2e378296a4d | 41c59ee887ea237ed2cfd98d7d51cb1efda41394 | refs/heads/main | 2023-08-15T21:04:13.833314 | 2021-10-02T05:41:01 | 2021-10-02T05:41:01 | 412,688,782 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,464 | 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 pharmacyControlar;
/**
*
* @author A
*/
public class Spals extends javax.swing.JFrame {
/**
* Creates new form Sp... | [
"74951884+Azam4@users.noreply.github.com"
] | 74951884+Azam4@users.noreply.github.com |
d5a0c47df4e477a5f1fe44adfb79c6c0f23b7816 | 315bedd6900d70c43ae331949786610de306f1ec | /app/src/main/java/com/xapptree/ginger/OfferScreen.java | bfdffea24916a3cf4212ee5f40c5a8f50d2cdb7c | [] | no_license | xapptree/Ginger | 04ca5f8aa9e6c0b8ffc8e28a2ec7d25370a529a1 | 1b0145e9ef4206d84e5d28aa38d541e13a0b76ac | refs/heads/master | 2021-04-30T05:10:08.863020 | 2018-11-28T18:43:41 | 2018-11-28T18:43:41 | 121,409,878 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,793 | java | package com.xapptree.ginger;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.res.AssetManager;
import android.graphics.Typeface;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v7.widget.LinearLayoutManager;
import android.supp... | [
"xapptree@gmail.com"
] | xapptree@gmail.com |
a49fd20eacc7f43b13036811d01839a0f3521ede | c4fc44747591d09c91870f6547b4258d4a73cdf2 | /src/lanterna/com/googlecode/lanterna/graphics/AbstractTheme.java | 15b950453a5f5dbee295923e3ff24975e669f4c1 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | wknishio/variable-terminal | 2c3aa7a182662df5c13e026471338d43142690a7 | 83eedc7ed37fed6859a5ed3355aa3685ed589f1a | refs/heads/master | 2023-09-03T11:11:24.946980 | 2023-09-02T15:29:05 | 2023-09-02T15:29:05 | 37,862,908 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 17,165 | java | /*
* This file is part of lanterna (https://github.com/mabe02/lanterna).
*
* lanterna is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any lat... | [
"wknishio@gmail.com"
] | wknishio@gmail.com |
5a877eeed5010e2bfcfe6e6c1c730750a8e567c6 | da812c45ab5bf8840dbe7acd556a7f01fc3c59e9 | /SuperchargeHomework/test/hu/anitak/superchargehomework/DepositTest.java | 1e0da5519e141efba1f483d28abcf31eccf25e08 | [] | no_license | AnitaKaracs/SuperchargeHomework | 4b709ae0fd953c9424d70087c8dac2d3dfc34c78 | 5de5522cbb938ee9c519c8b5bc39b8337d1e2cf9 | refs/heads/master | 2021-08-09T00:10:34.296514 | 2017-11-11T17:06:59 | 2017-11-11T17:06:59 | 110,342,757 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,836 | java | package hu.anitak.superchargehomework;
import hu.anitak.superchargehomework.businesslogic.DepositBusinessLogic;
import hu.anitak.superchargehomework.businesslogic.exception.InvalidCustomerException;
import hu.anitak.superchargehomework.businesslogic.object.DepositRequest;
import hu.anitak.superchargehomework.busi... | [
"anita.karacs@gmail.com"
] | anita.karacs@gmail.com |
a013d3d5f30aaf44928a4d51857fdbc35d880071 | 2dbc2d7a2a42030d7f6acc577cd914da4357079e | /TSMS/src/Funtion/UserMessage_Controller.java | 8b468a91106ac7edece78d889410b30ecca3ddb2 | [] | no_license | BreezeWL/learngit | a5311a9d2cbd880317024bd0d1c27a5c8608ec0d | 593a1f422b140b7fe33bd23656ec41cb8ffec698 | refs/heads/master | 2022-02-17T00:47:33.140486 | 2019-08-28T13:50:00 | 2019-08-28T13:50:00 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,645 | java | package Funtion;
import java.util.ArrayList;
import INTERFACE.UserFunction;
import Message.StudentMessage;
import Message.TeacherMessage;
public class UserMessage_Controller implements UserFunction
{
ArrayList<StudentMessage> std=new ArrayList<>();
ArrayList<TeacherMessage> tea=new ArrayList<>();
public boolean... | [
"871177656@qq.com"
] | 871177656@qq.com |
107a5c07b8acd1c06835dcfad18a45cd2033fd4a | e7b85db3e27410b4eda82a5da8e234f0a2bd390e | /ApiTest01/src/mini/service/ApiServieimpl.java | 8b343cb4c621ad3d2844e92ddc8273bc4488b39a | [] | no_license | dhkdwns93/Bit | ecb979a3938c60971ea62b1b4cfd9771a201f8d5 | cba02b73140bb68888c5af3e49d13de60948f60a | refs/heads/master | 2021-05-09T21:02:16.732344 | 2018-02-01T12:06:23 | 2018-02-01T12:06:23 | 118,718,853 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 901 | java | package mini.service;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import mini.aao.ApiAO;
import mini.aao.ApiAOimpl;
public class ApiServieimpl implements ApiService {
ApiAO aao = new ApiAOimpl();
@Override
public JSONObject detailView(String movieCode) throws Exception {
if (movieCod... | [
"dhkdwns93@naver.com"
] | dhkdwns93@naver.com |
81ad03d94c4aa322ff6a76b45b4d52e25fa1f614 | 7f7bbb43d682ba601d9bd6a3cc63ec9400c720f2 | /src/main/java/leet/maze/BMaze.java | 04e8a17ae7348769a5c66fc54a62796346010747 | [] | no_license | JamesDansie/ProjectEuler | 167f9c03d0c875ab36da4ab52ea531928bb5a480 | ba4d85dce302a8ca261556093cd5c6b1abb858a7 | refs/heads/master | 2020-09-23T11:10:10.205565 | 2020-04-29T23:03:06 | 2020-04-29T23:03:06 | 225,485,986 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,728 | java | package leet.maze;
import java.util.Arrays;
import java.util.List;
//from; https: www.baeldung.com/java-solve-maze
//from; https: github.com/eugenp/tutorials/blob/master/algorithms-miscellaneous-2/src/main/java/com/baeldung/algorithms/maze/solver/Maze.java
public class BMaze {
private static final int ROAD = 0;
... | [
"jdansie8336@gmail.com"
] | jdansie8336@gmail.com |
3d19be374bc6f801ec048b302c0587c7cfdebd32 | 148ff9d4b36282acd199f87e58428d60335185f5 | /higgs-data-web/src/main/java/io/vilada/higgs/data/web/service/bo/in/v2/topology/TopologyInBO.java | a4e53fab6d42278a43195b0b589341193560e7e9 | [
"Apache-2.0"
] | permissive | gitter-badger/higgs | 3f60a68d8ab62b476a57e0790659c4bdbc1b11f8 | 7b2c8e9e90e231455e53232d9ad148d319ead10b | refs/heads/master | 2020-04-01T08:52:51.106664 | 2018-10-12T05:51:08 | 2018-10-12T05:51:08 | 153,050,668 | 1 | 1 | Apache-2.0 | 2018-10-15T03:56:25 | 2018-10-15T03:56:25 | null | UTF-8 | Java | false | false | 1,230 | java | /*
* Copyright 2018 The Higgs 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 applicable law or agree... | [
"mjolnir.vilada@gmail.com"
] | mjolnir.vilada@gmail.com |
c780b8d21dcba9375568753a5c131536169bfa71 | 38bb080841fe88cfb6079cb6b38a6e5b9c2411a8 | /Java Day Day Up/手撕代码/src/main/java/stack/StackArray.java | 3fd8c05b53e77b5a1e6a6e1a2de5416efa9f58c3 | [
"MIT"
] | permissive | Brickea/Brickea-learning-records | 88c947d8105a076324c920fe3d800fed6edd2408 | 649f74e770106893101e120f2557eb15d23fc91d | refs/heads/master | 2023-02-01T20:20:20.277363 | 2020-12-18T16:03:43 | 2020-12-18T16:03:43 | 269,197,203 | 2 | 2 | MIT | 2020-11-06T01:44:53 | 2020-06-03T21:21:16 | Java | UTF-8 | Java | false | false | 3,178 | java | package stack;
import java.util.Iterator;
/**
* @Author: Zixiao Wang
* @Version: 1.0.0
* @Description:
* 基于数组的不定长栈
**/
public class StackArray<Item> implements Iterable<Item> {
private int size;
private Item[] storage;
private int N;
/**
* @author: Zixiao Wang
* @date: 10/10/2020
... | [
"brickeawang@gmail.com"
] | brickeawang@gmail.com |
f5da1b5a7bc061ffa3dcf4ad3e7c5e70c953a261 | 3b6a37e4ce71f79ae44d4b141764138604a0f2b9 | /phloc-schematron/jing/src/main/java/com/thaiopensource/relaxng/output/xsd/basic/GroupRef.java | 7fdf67a9aeb995ae4b99a8486ec240f03da4f9b2 | [
"Apache-2.0"
] | permissive | lsimons/phloc-schematron-standalone | b787367085c32e40d9a4bc314ac9d7927a5b83f1 | c52cb04109bdeba5f1e10913aede7a855c2e9453 | refs/heads/master | 2021-01-10T21:26:13.317628 | 2013-09-13T12:18:02 | 2013-09-13T12:18:02 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 747 | java | package com.thaiopensource.relaxng.output.xsd.basic;
import com.thaiopensource.relaxng.edit.SourceLocation;
public class GroupRef extends Particle
{
private final String name;
public GroupRef (final SourceLocation location, final Annotation annotation, final String name)
{
super (location, annotation);
... | [
"mail@leosimons.com"
] | mail@leosimons.com |
e52754beccb37770940a242ca547714559a7a071 | db580518c8c415425d4ee5d3d3cfcf7a2e7f4ec6 | /backend/src/main/java/com/financialhouse/dto/form/response/CustomerInfo.java | 067bab70b088ba867fc7c83cd225c888354072cc | [] | no_license | snncskn/reporting-api | ff1ce93f0b0ea698c73cae59516a14e75dd8dd54 | 78ae9b1217efd43dade5a19d6a2d547c0c4d29b2 | refs/heads/master | 2022-12-13T10:20:42.301082 | 2020-02-20T14:22:55 | 2020-02-20T14:22:55 | 240,084,104 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,893 | java | package com.financialhouse.dto.form.response;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
... | [
"Cskn6396993"
] | Cskn6396993 |
1861fb53f7848b358ed231f58b6e2a7562c6d32f | a274ee699fdba39b24aa38121b6bad1188e7765c | /app/src/test/java/com/mfh/rxjava/ExampleUnitTest.java | 09f65e641997fa3ac9521d1a20396fdac9b515a9 | [] | no_license | fuhaoma/RXJava | d65e41223aa29b19cb75739ca70eb9e2974e16a5 | af9ec1f023b87b93da1efe32a25ec475afb5da49 | refs/heads/master | 2021-01-25T09:32:06.706447 | 2017-07-04T08:04:25 | 2017-07-04T08:04:25 | 93,847,464 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 392 | java | package com.mfh.rxjava;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void additio... | [
"ma_fuhao@126.com"
] | ma_fuhao@126.com |
1590f44d14e3b522edb1298dccc5da8b52e8c8c3 | 21a375ba03c203717e3e8d516dbd416aea8926d2 | /microservice-circuitbreaker/src/main/java/com/ibm/microservice/cb/MainVerticle.java | 18390da23d2d057241ea5205b661faf5e4a82ced | [] | no_license | GreenwaysTechnology/IBM-Vertx-Sep-21 | 5df63b1bd5af91d18adee1753e3c5884b5575a87 | af7c503583db5caced352c61a0e1ff9a5ac71206 | refs/heads/main | 2023-08-19T03:17:19.268079 | 2021-09-24T11:29:23 | 2021-09-24T11:29:23 | 408,347,167 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 337 | java | package com.ibm.microservice.cb;
import io.vertx.core.AbstractVerticle;
import io.vertx.core.Promise;
public class MainVerticle extends AbstractVerticle {
@Override
public void start(Promise<Void> startPromise) throws Exception {
vertx.deployVerticle(new HelloService());
vertx.deployVerticle(new GreeterS... | [
"sasubramanian_md@hotmail.com"
] | sasubramanian_md@hotmail.com |
3421e01148ab74e8a792f9b9fb1fb5cc0a6f8f8c | 3b345b7cb4a1d81eb000e83762555ecc43d4a05a | /src/test/java/Pages/FrontPages/HomePage.java | 40f83de1bdbc7030f2c9730380f9143d8b290cf8 | [] | no_license | andjsxbp85/fliptest | 3c468a3426c67a0689bd0ea2c76d2712b8363716 | 7a6287730246732f27d62dde42c237dcd7d2b042 | refs/heads/master | 2022-12-12T02:59:30.482612 | 2020-09-19T09:04:47 | 2020-09-19T09:04:47 | 294,261,539 | 1 | 1 | null | 2020-09-13T22:02:31 | 2020-09-10T00:32:08 | Java | UTF-8 | Java | false | false | 10,121 | java | package Pages.FrontPages;
import Utils.WebExe;
import Utils.database;
import net.serenitybdd.core.annotations.findby.FindBy;
import org.junit.Assert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import java.util.List;
public class HomePage extends WebExe implements database {
public void... | [
"anjasmuhamadb123@gmail.com"
] | anjasmuhamadb123@gmail.com |
1ac6f158f8ae2a75776dab58321d028fa39ac0c3 | 97fd02f71b45aa235f917e79dd68b61c62b56c1c | /src/main/java/com/tencentcloudapi/lighthouse/v20200324/models/DescribeDockerActivitiesResponse.java | 06ca7ce7b5fe5c329534d87d929a07b75f4d9b22 | [
"Apache-2.0"
] | permissive | TencentCloud/tencentcloud-sdk-java | 7df922f7c5826732e35edeab3320035e0cdfba05 | 09fa672d75e5ca33319a23fcd8b9ca3d2afab1ec | refs/heads/master | 2023-09-04T10:51:57.854153 | 2023-09-01T03:21:09 | 2023-09-01T03:21:09 | 129,837,505 | 537 | 317 | Apache-2.0 | 2023-09-13T02:42:03 | 2018-04-17T02:58:16 | Java | UTF-8 | Java | false | false | 4,125 | java | /*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
... | [
"tencentcloudapi@tencent.com"
] | tencentcloudapi@tencent.com |
03694a71d20ddda7a5f187d08f31c57a0fa6eff0 | 956cfa7826cd2a561972632b776d9988b06bd72f | /src/main/java/com/mycompany/webprodezy/plantmaster/PlantMaster.java | 64abb3409ef857823923e7a50d858927e9ac445a | [] | no_license | hackersAssassin/webprodezy | 818ed70df8d679b9354d8b6d9bf507a5fbc01ec1 | 99abb6feaefb7940f19565450cb323e25d10f420 | refs/heads/master | 2022-12-08T21:55:30.009738 | 2019-10-12T13:03:19 | 2019-10-12T13:03:19 | 227,739,144 | 0 | 0 | null | 2022-11-23T05:25:18 | 2019-12-13T02:32:10 | Java | UTF-8 | Java | false | false | 4,053 | java | package com.prodezy.plantmaster;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Servlet implementation class PlantM... | [
"root@ip-172-31-44-226.ap-south-1.compute.internal"
] | root@ip-172-31-44-226.ap-south-1.compute.internal |
f2e72f994f02fde384424ef45936bb5ef324b6f4 | faa3daced29d57d783595704d5ae8a745aeb271e | /app/src/main/java/com/a1000geeks/test/data/RepositoryManagerImpl.java | 3c7f25033240111ef170cbc88bf35cdcddca9b5b | [] | no_license | erizoo/Test1000Geeks | 898b120296198e3c7189e4079e0e2eaad5a624a6 | 6c1c93a1fae4cd8dd415010ee6f5f5915d6e4a02 | refs/heads/master | 2020-04-17T06:59:20.955976 | 2019-01-18T05:26:48 | 2019-01-18T05:26:48 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 458 | java | package com.a1000geeks.test.data;
import com.a1000geeks.test.data.network.ServiceNetwork;
import javax.inject.Inject;
public class RepositoryManagerImpl implements RepositoryManager {
private ServiceNetwork serviceNetwork;
@Inject
RepositoryManagerImpl(ServiceNetwork serviceNetwork) {
this.ser... | [
"Alex20968"
] | Alex20968 |
53c067f12f7bc231da3fbc979d709eeb182a0c1d | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/22/22_55751c4671f4f2fcc7b5d99e830fddb8dc279e9e/TestXWPFFootnotes/22_55751c4671f4f2fcc7b5d99e830fddb8dc279e9e_TestXWPFFootnotes_s.java | 778325a28c87d04e64dd222f7b1b215364f38baa | [] | 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 | 1,920 | 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... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
cfae48065906bc10c1f638d77421ee07586a4053 | 19f029c2451e06bab12ae750715e67c7ae3172c1 | /AapWebTools/src/main/java/com/next/aap/web/jsf/beans/AdminSearchMemberBean.java | 72f9e879744c80efda573e1aebb88fc284d8ccfc | [] | no_license | AamAadmiParty/aap-backend | cd5d2c2063311bc03b125d22df23cc4c3268cae0 | 305c7d3fddef86b9ca3c485e4f62e5c7e3ba39ed | refs/heads/master | 2021-07-12T02:38:14.902840 | 2019-07-28T16:16:29 | 2019-07-28T16:16:29 | 46,349,900 | 1 | 1 | null | 2021-07-06T23:14:46 | 2015-11-17T13:48:04 | Java | UTF-8 | Java | false | false | 27,754 | java | package com.next.aap.web.jsf.beans;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ManagedProperty;
import javax.faces.bean.ViewScoped;
import javax.faces.event.ActionEvent;
import javax.faces.event.AjaxBehaviorEvent;
import ... | [
"ping2ravi@gmail.com"
] | ping2ravi@gmail.com |
51896b15fe05444f978eb1d36c7d7ae696db8bde | feec96e9d0732be1bb01caaa173410e9bc4eb85b | /apis/managerApi/src/main/java/zbl/fly/models/PermGroup.java | a13cd75a63ce7180d2bb349adb5518bc10e36836 | [] | no_license | zblfendou/fly | 8731e2577e421b9f3c8c801fef6303b757d4c3f9 | e6b9fe7775fc4b15a5c083a82cbb1d461c04e5a9 | refs/heads/master | 2022-07-06T05:48:58.670698 | 2019-11-25T06:10:03 | 2019-11-25T06:10:03 | 162,548,898 | 1 | 0 | null | 2022-06-24T02:24:54 | 2018-12-20T08:24:11 | Java | UTF-8 | Java | false | false | 2,659 | java | package zbl.fly.models;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.Getter;
import lombok.Setter;
import javax.persistence.*;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
@Entity
@Setter
@Getter
@Cacheable
p... | [
"zhangbinleifendou@163.com"
] | zhangbinleifendou@163.com |
a6017b24c6e79720e29e5dfc986386b39fe9a757 | 042ce19874b1b3148e461ab92e11df431b2947ea | /shoppingmall/src/main/java/com/dsshop/member/model/dao/MemberDaoImpl.java | 9e2903d3a979d88a4ac20be2b5b840946450f205 | [] | no_license | Rkato1/Spring | 1f80cedbaedb81a33d6436b46857732497ceed2f | a12b1568bdb8a58e974a2d5b31a86713f45095d2 | refs/heads/main | 2023-04-21T08:25:15.590241 | 2021-05-20T06:22:24 | 2021-05-20T06:22:24 | 320,176,323 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 301 | java | package com.dsshop.member.model.dao;
import org.springframework.stereotype.Repository;
//Imple은 implements의 약자
//unique조건 때문에 두개는 안됨
//동시에 하나도 없으면 autowired 써진곳에서 에러
@Repository("dao1")
public class MemberDaoImpl implements MemberDao {
}
| [
"36435326+Rkato1@users.noreply.github.com"
] | 36435326+Rkato1@users.noreply.github.com |
744c60d77406ecdba1a5f640a89dab7ecf640778 | cfc784409e7c8f720f357b109c9658a1553aa479 | /geetha/src/main/java/mainmethod/Mainrunner.java | fda10c78071d17ba617f5229d3d4922164924817 | [] | no_license | Geetha86-git/APITesting | 161188bfdb8925d3502e937275242a8fdb41242a | c6ed3bfd3e6965f670fc72d8d3663f9472a79746 | refs/heads/master | 2023-06-21T02:13:36.898022 | 2021-07-23T02:31:45 | 2021-07-23T02:31:45 | 373,558,979 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 464 | java | package mainmethod;
import org.openqa.selenium.WebDriver;
import com.businesscomponents.Selectoperations;
import com.drivermethod.Driverobjects;
public class Mainrunner {
public static void main(String[] args) throws InterruptedException {
// TODO Auto-generated method stub
Driverobjects dos = new Drivero... | [
"saravanakumar.kannan@gmail.com"
] | saravanakumar.kannan@gmail.com |
f17f5dcfd70e3ddd8724f17c549f81931a30fc7d | ce23bb1ac62ff3ee167f62a4d3870892cb999b5c | /src/org/jcrontab/data/ProcessFactory.java | ccc90e816171aa28178ffc186f03e92291962d72 | [] | no_license | Glacierli/tkli | 36c8d83651df5df0ce2dad8ecb7e065622a55fba | 23167c56b0078dd9286ad5a7c34c32c31ddda463 | refs/heads/master | 2020-09-04T23:11:47.393951 | 2019-11-06T06:16:08 | 2019-11-06T06:16:08 | 219,920,045 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,225 | java | /**
* This file is part of the jcrontab package
* Copyright (C) 2001-2003 Israel Olalla
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, o... | [
"chuanbingli@163.com"
] | chuanbingli@163.com |
3f081efafe69e355b80e1638688bab118c8cc103 | e14bdeb92eab65e8bae00f3b29dfb9afac7c2ac2 | /src/main/java/zxc/person/design_pattern/pattern/structural/adapter/classadapter/Target.java | d0417f9b2daa08825fe23782f64db9af9fbcb8da | [] | no_license | zxccong/design_pattern | 153a64f0fbd2efc93242d62a4312469161563ff6 | 085339a640d11b15fdebc5996fd2c9d367ec0682 | refs/heads/master | 2022-06-28T18:01:51.809822 | 2019-08-08T14:48:14 | 2019-08-08T14:48:14 | 199,156,475 | 0 | 0 | null | 2022-06-21T01:37:28 | 2019-07-27T11:31:27 | Java | UTF-8 | Java | false | false | 171 | java | package zxc.person.design_pattern.pattern.structural.adapter.classadapter;
/**
* Created by geely
*
* 目标类
*
*/
public interface Target {
void request();
}
| [
"1209252967@qq.com"
] | 1209252967@qq.com |
457be064b356975d3fe0f0ec174e6eade4fc1506 | 995a77b13b5a29e8964e0ba97216c96dbd166e85 | /Mail_Simulation/src/com/mail/simulation/service/MyService.java | 2b32a99d84ef02cd65133c0825a1c9e31b07f8a1 | [] | no_license | miraz184/Java-Projects | 7ce7d14fbe3995b02cddc32a77f0138454f02acb | d6d19d6a3395d52423b317ec1bb5cb9c1308675b | refs/heads/master | 2020-12-29T13:25:47.819908 | 2020-02-06T06:35:40 | 2020-02-06T06:35:40 | 238,621,954 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,170 | java | package com.mail.simulation.service;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import com.mail.simulation.model.Mail_Info;
import com.mail.simulation.model.User_Info;
public interface MyService {
public String register(User_Info ui);
public User_Info login(User_Info ui);
pu... | [
"DELL@192.168.0.140"
] | DELL@192.168.0.140 |
62b04a4d2631c57167f7061403b80d8b4cb8178a | a24dd1e6f3818772a8d7a69f222e1ace90e31745 | /SalaArcoIris/src/Filter/ServletFilter.java | 5836b5ad520b0883bf4079536c4f78399c6fd41d | [] | no_license | yuriandreisilva/projeto-individual-senai | 6f4b3c0ec884c0c3cf4a70714ed9c79f9556a96f | 258f0c08a58e9c122003b20a07f8b1788e30fc4d | refs/heads/master | 2023-07-24T04:45:16.736068 | 2021-09-10T02:01:37 | 2021-09-10T02:01:37 | 320,822,459 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,347 | java | package Filter;
import java.io.IOException;
import javax.servlet.*;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
/**
* Servlet implementation class Serv... | [
"yuri_andrei@hotmail.com"
] | yuri_andrei@hotmail.com |
1c9b6f64728d0af3ff2b0214118f0bb9bae753ba | 3530da7ce8b9b19ca83c9186dcc2b59ffe802348 | /src/main/java/com/m1zark/casino/utils/Voltorb/VoltorbBoard.java | 428aa41a1373dfbbe771c019a45f8914483f95e9 | [] | no_license | m1zark/casino | 1e9cc2ea0b6ea17c39795cfba7da345bebbc16ef | ed5b3f356453eb04b320e91365195e7b536afb42 | refs/heads/master | 2023-05-02T21:46:50.784748 | 2021-05-29T14:44:41 | 2021-05-29T14:44:41 | 371,992,485 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,867 | java | /*
* Decompiled with CFR 0.151.
*/
package com.m1zark.casino.utils.Voltorb;
import com.m1zark.casino.config.VoltorbFlipConfig;
import com.m1zark.casino.utils.Voltorb.Card;
import com.m1zark.casino.utils.Voltorb.SumCard;
import java.util.HashMap;
import java.util.Random;
public class VoltorbBoard {
Random random... | [
"m1zark@yahoo.com"
] | m1zark@yahoo.com |
bdeca41fc572ed1c558a762bc4f1659f87a99b7f | fb23b2bd49636b981228a0edfc56e5975edbaa02 | /src/test/java/com/wu/blog/BlogApplicationTests.java | 30d4352cf09d8136935d8eef0bb7debc9554644c | [] | no_license | 1138080709/blog | 2d7138449a955ef4b4b031a1531b7c02236d9482 | 241b3abd87cb309249635262af4539e5ec175772 | refs/heads/master | 2022-03-03T09:38:10.765347 | 2020-02-27T09:22:29 | 2020-02-27T09:22:29 | 243,512,953 | 0 | 0 | null | 2022-02-09T22:22:35 | 2020-02-27T12:22:58 | HTML | UTF-8 | Java | false | false | 198 | java | package com.wu.blog;
import org.junit.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class BlogApplicationTests {
@Test
void contextLoads() {
}
}
| [
"1138080709@qq.com"
] | 1138080709@qq.com |
925a8b80ae535e2dddc3b6ab40a0dc2a76e591a0 | a444d8e36b22d2c88a12f43c9669f31d279af159 | /ScriptCompressor1.0/src/dk/brics/tajs/analysis/dom/html/HTMLMenuElement.java | fbb1007717420557254fa7b1e43b5f4d688c6d23 | [
"Apache-2.0"
] | permissive | cursem/ScriptCompressor | 77c61ec710fd9e1aaedfc305bac9e089a4dadb44 | 4d0e37b92023e00fa2468940149220eed9fc30ac | refs/heads/master | 2016-09-05T11:07:22.774298 | 2014-09-17T12:29:11 | 2014-09-17T12:29:11 | 24,143,533 | 6 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,784 | java | /*
* Copyright 2009-2013 Aarhus University
*
* 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... | [
"cursem@yeah.net"
] | cursem@yeah.net |
b3765aa7164191a27f534c9230ccee2ee3228e8d | 7779ea3a37189bfb8dcf8f30bf522bf5a4d762ec | /ReservationSystem/src/main/java/com/reserve/Dao/GuestDaoImpl.java | 0e2aff412c395f4659b38c172eca67fc88d01f85 | [] | no_license | ShruthiRGit/Spring | 950314f595ba8a6841ea555b7c5219ed6615662d | fe26479573614d3d299b9c49c104cfb352533221 | refs/heads/master | 2020-03-22T10:52:57.112627 | 2018-07-31T07:30:55 | 2018-07-31T07:30:55 | 139,933,613 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,597 | java | package com.reserve.Dao;
import java.util.Date;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.dao.DataAccessException;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.stereotype.Repository... | [
"noreply@github.com"
] | ShruthiRGit.noreply@github.com |
7224cf60fcf501dfa2c25e241a9fa09041b3e183 | 64da43bd78917f737e0bba183e2ff1e85715c98d | /splashcountview/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/android/support/coreutils/R.java | e47b733f23da3e5d6635659bebc82493c6d65173 | [] | no_license | wangxy0916/MyBaseProject | cfdfe6ce433eda4a912f2758c5f5c001046483a0 | 176b7fadc66df5356ccf41f2dfe47169236b4b4b | refs/heads/master | 2021-07-12T10:19:55.422147 | 2019-05-11T11:01:05 | 2019-05-11T11:01:05 | 181,266,384 | 0 | 0 | null | 2019-05-09T10:56:06 | 2019-04-14T05:54:37 | Java | UTF-8 | Java | false | false | 9,670 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* gradle plugin from the resource data it found. It
* should not be modified by hand.
*/
package android.support.coreutils;
public final class R {
private R() {}
public static final class attr {
private attr... | [
"535335902@qq.com"
] | 535335902@qq.com |
c328317cb03dce46056bd15396369cd7f70a25a3 | b6bcd40c31881ae4b6d922ab1228028640714a60 | /GalleryManagement/src/com/gm/model/verify.java | 9d9132449f543768f740ddc4f602f0e6f21e14f7 | [] | no_license | Nakib1996/CSE470-Project | 5b58aec681dee535917a62cbf1eecc0fb52f36d3 | f1428ff936864c1a5f0317c91b42359b27c2beca | refs/heads/main | 2023-02-08T02:48:42.130570 | 2021-01-02T16:23:52 | 2021-01-02T16:23:52 | 321,412,784 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 48 | java | package com.gm.model;
public class verify {
}
| [
"76001116+Nakib1996@users.noreply.github.com"
] | 76001116+Nakib1996@users.noreply.github.com |
81f40fc341b33b2d7bd69eb579700f2e8c09d313 | 9b8d07e9682e61aab853dc6ebfc0c2e673033e9d | /proyecto Android Studio/app/src/test/java/com/example/virtualcoach/database/data/source/FakeImportableActivityDataSource.java | ea3dfa654f322ca8448d9f01619d28ccd97a5c03 | [] | no_license | Daniel-maralb/tfg_virtualcoach | 5f982cdfb8ff9b3b7c5d6310b43aa7347f44c56f | ec62ffff3792af2bd0ed025cabdbdcb160026b45 | refs/heads/main | 2023-05-11T15:14:32.508815 | 2021-06-03T15:58:42 | 2021-06-03T15:58:42 | 373,480,787 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,052 | java | package com.example.virtualcoach.database.data.source;
import com.example.virtualcoach.database.data.model.ActivityData;
import org.jetbrains.annotations.NotNull;
import java.util.Collections;
import java.util.List;
public class FakeImportableActivityDataSource implements ImportableActivityDataSource {
private... | [
"dma45@gcloud.ua.es"
] | dma45@gcloud.ua.es |
6441c64dd5f1ab7fd0eb1b8f2daeba6bd4a2fc2b | df29c8d5c795bb72c4689228e8c9ce396728eda1 | /flight/flight-api/src/main/java/org/airsim/api/flight/command/CreateFlightCommand.java | a370a8b3d0504613bcc0a8383e40621f2adb5a38 | [
"MIT"
] | permissive | stoerti/airline-simulator | b85a368852298da9ff309e85d531066d7719bf92 | 65974086724b1973fd190616cdce4a9d3e0737e6 | refs/heads/master | 2022-12-07T01:16:27.628570 | 2022-03-10T21:53:56 | 2022-03-10T21:53:56 | 222,807,849 | 1 | 1 | MIT | 2022-11-14T16:26:11 | 2019-11-19T23:12:04 | Java | UTF-8 | Java | false | false | 692 | java | package org.airsim.api.flight.command;
import java.time.Duration;
import java.time.LocalDateTime;
import java.util.UUID;
import org.axonframework.modelling.command.TargetAggregateIdentifier;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsCo... | [
"ctstoerti@gmail.com"
] | ctstoerti@gmail.com |
db834bfd99dfc647265ebce9afe78315ff6be1da | c26dfc0549eb73cf81abaa32bf0d913764768de0 | /3B/app/src/androidTest/java/tago/a3b/ExampleInstrumentedTest.java | acae72f4cdea5ee154d83c5427393044ff23fdb8 | [] | no_license | tago-SE/mobapps | b8bff67db6cb790383f45d437d3df5c34fbe3d22 | 9d006afa99e54107a6c0bc838aadb0ade982748b | refs/heads/master | 2020-03-20T02:42:01.549839 | 2018-12-09T21:28:46 | 2018-12-09T21:28:46 | 137,121,384 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 527 | java | package tago.a3b;
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 device.
*
* ... | [
"tiagor@kth.se"
] | tiagor@kth.se |
0e31b34762dd725bb555621d0a50f81b6505ac07 | 26954b7fb43e96db0fdefeff9d8b9538ae7cd37a | /src/main/java/spring/guru/springWeb/model/Book.java | 69fc2aa3125558fb011b1fd02a38f1a49090a41e | [] | no_license | mercanil/spring5 | ec51a514b91290ad9c15a99b6bcd7a3b66d0a46d | 0d69ab1c8673b3a9227b6f95f6a5f67207fe0192 | refs/heads/master | 2021-05-15T06:54:07.938322 | 2019-03-25T00:01:12 | 2019-03-25T00:01:12 | 112,095,693 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,474 | java | package spring.guru.springWeb.model;
import javax.persistence.*;
import java.util.HashSet;
import java.util.Objects;
import java.util.Set;
@Entity
public class Book {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String title;
private String isbn;
private Stri... | [
"mercanil@gmail.com"
] | mercanil@gmail.com |
bb1ee3444f28149b07e7c0df0dcd60e34138b6c6 | bc19dcb57d41c1d67dbd2ac57ff37b0a895b6ee4 | /Texto/src/com/ucsal/atividade/EntradaTextoVector.java | 0510b1d813138320af397cc373c04cd16a033392 | [] | no_license | JessPergentino/atividadesPooAvancado | df0dbbb617bddde6ad4cce3f4a485e527343cbf5 | 84348d70793e1cd1073263c67f80dd550b90d19f | refs/heads/master | 2021-04-06T02:36:08.787394 | 2018-05-12T15:08:24 | 2018-05-12T15:08:24 | 124,539,156 | 0 | 0 | null | null | null | null | IBM852 | Java | false | false | 1,342 | java | package com.ucsal.atividade;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.List;
import java.util.Vector;
public class EntradaTextoVector {
public static void main(String[] args) thr... | [
"jessicapergentino@hotmail.com"
] | jessicapergentino@hotmail.com |
9b60131e449c22c4b1bcc652844b0222ace57331 | c11fd6cf3f0c45fa2c07490cb333f9094f181555 | /CabBuddies-Library/src/com/cabbuddieslib/managers/auth/JWTManager.java | 32af01b8e3ec98a61d105d9d7fd32ced8f7ae1ad | [] | no_license | nihalkondasjsu/CabBuddies-Library | 6fe7589ef926d79f9559dbf215ec8cf997e2a511 | 9f2481a27eebb718ec7dbaa1f7f73714e85e5f26 | refs/heads/master | 2022-12-23T01:38:11.179421 | 2020-03-20T22:09:29 | 2020-03-20T22:09:29 | 247,213,512 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,461 | java | package com.cabbuddieslib.managers.auth;
import java.util.UUID;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import com.cabbuddieslib.dao.auth.JWTJPA;
import com.cabbuddieslib.data.auth.JWT;
import com.cabbuddieslib.discover.MicroServicesDiscovery;
i... | [
"nihal.konda@sjsu.edu"
] | nihal.konda@sjsu.edu |
3ef3837f61da7ca6cb68cbd13ab26faafe7df6cf | 9105f94c5dad90c0b35198685a03608631e6b4e6 | /src/main/java/org/elu/spring/boot/cloud/heroku/CloudHerokuApplication.java | b7be1c7153795df12793eeb39a491a6057aaf3db | [] | no_license | luhtonen/spring-boot-cloud-heroku | 5220a50ccf53426db511a23d183fbfcfa51ca923 | 1e53a010657ebc4da5857c0bbabbb63669342bba | refs/heads/master | 2021-01-10T07:37:05.423257 | 2016-04-08T12:56:08 | 2016-04-08T12:56:08 | 55,778,508 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 334 | java | package org.elu.spring.boot.cloud.heroku;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class CloudHerokuApplication {
public static void main(String[] args) {
SpringApplication.run(CloudHerokuApplication.class... | [
"luhtonen@gmail.com"
] | luhtonen@gmail.com |
b7272033056d3e3853214d2255581a71278f7ea9 | b7bdbbe71e0cf693afb9d44f513869feb302d03b | /Lab7FX/sample/compulsory/Token.java | b44577319f08efc557089ed603db2fe8e119780d | [] | no_license | stefanrzv2000/PA2020 | d06e070e2b33d4cd610edf059ce8f8d1723eabbe | 78bddd71ab57ca73a7c0f90c4e13b3f92f8035d2 | refs/heads/master | 2021-03-18T15:39:15.549190 | 2020-05-19T11:37:06 | 2020-05-19T11:37:06 | 247,080,674 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 691 | java | package sample.compulsory;
import sample.Figure;
public class Token {
int value;
Player owner;
Figure figure;
public Token(int value) {
this.value = value;
}
public int getValue() {
return value;
}
public void setValue(int value) {
this.value = value;
}
... | [
"noreply@github.com"
] | stefanrzv2000.noreply@github.com |
5aa9dc643382a8f8140932d4eb1ebcd43ef4a04b | cad75a693350ce02691000822cc6bc9ee378ef84 | /atf-eplug/src/eu/atac/atf/test/metadata/SParameter.java | e04d3a1736edeaacce839b0f339a593af2850913 | [
"BSD-3-Clause"
] | permissive | ryselis/atf | d9a360bf3850f2af3dd1000a44fef1703185de8a | 861d700df973f6e01169a7ab53f9a3a19d0bee54 | refs/heads/master | 2020-12-28T21:17:44.768018 | 2015-02-25T20:51:16 | 2015-02-25T20:51:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 620 | java | package eu.atac.atf.test.metadata;
public class SParameter extends SBase {
private SDeclaration declaration;
private SVariable variable;
private SValue value;
public SParameter(SDeclaration declaration, SVariable variable,SValue value) {
super();
this.declaration = declaration;
this.v... | [
"drme@users.noreply.github.com"
] | drme@users.noreply.github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.