blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 332 | content_id stringlengths 40 40 | detected_licenses listlengths 0 50 | license_type stringclasses 2
values | repo_name stringlengths 7 115 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 557
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 684M ⌀ | star_events_count int64 0 77.7k | fork_events_count int64 0 48k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 82
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 7 5.41M | extension stringclasses 11
values | content stringlengths 7 5.41M | authors listlengths 1 1 | author stringlengths 0 161 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
a0745bc5addffe3790606e40520e690a47304919 | 215480e6ee19beb7fe06b2fd2264940275a08128 | /456/src/com/company/BreakAndContinueDemo02.java | 6ccbda3e9328e3fa69f553c0e0fe15bec186c9b0 | [
"Apache-2.0"
] | permissive | 19935816340/JavaSE02 | 87ab5ecb0da9502703864d1b460e23443f54e6cf | c44bab64aa491c52a5f6cb90e0edbcaa229669d5 | refs/heads/master | 2022-04-22T00:51:13.449421 | 2020-04-21T13:39:26 | 2020-04-21T13:39:26 | 257,607,478 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 403 | java | package com.company;
public class BreakAndContinueDemo02 {
public static void main(String[] args) {
//关于continue的入门案例
//打印1~10之间,所有不是3的倍数的整数
for (int i = 1; i < 10; i++) {
if (i % 3 == 0)
continue;
//如果不是3的倍数,就打印i
System.out.println(i);
... | [
"63945531+19935816340@users.noreply.github.com"
] | 63945531+19935816340@users.noreply.github.com |
09b09ca89a32f60a33e2ec90e59cadc8fae95919 | afef80e3196c7243fd25dce7a02285a44b68482d | /src/main/java/com/gimnasio/gimnasio/GimnasioDao/GimnasioClienteDao.java | 540182ddfb7de449e95190e6ef3558a2fb6eae85 | [] | no_license | fdagz96/GymTech | c81fe5f33f252cbb9fc61edaf771b7682fefc08e | 23d6b1abe6b7d982b5983f9aef3f093095817b63 | refs/heads/master | 2020-04-24T00:40:56.980665 | 2019-02-20T01:04:17 | 2019-02-20T01:04:17 | 171,573,537 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,364 | java | package com.gimnasio.gimnasio.GimnasioDao;
import com.gimnasio.gimnasio.repositories.IClienteRepository;
import com.gimnasio.gimnasio.repositories.IGymRepository;
import com.gimnasio.gimnasio.utileria.Cliente;
import com.gimnasio.gimnasio.utileria.Gimnasio;
import org.springframework.beans.factory.annotation.Autowire... | [
"gym.tech.communication@gmail.com"
] | gym.tech.communication@gmail.com |
c69976afd36e63890f846505e6c19d1e3bc4d0a4 | bea2b2ec96172f416be093eb49fc44543946af18 | /src/main/java/pathfinder/datastructures/Path.java | 12f5ee2b298901c6fd694fd44e672646985c9d04 | [] | no_license | rhuang1564/CampusMaps | 50486909b6af54872657008670cc899a9873272a | a11d0a03ac53c05571c57ef9481f5e7855d738de | refs/heads/master | 2022-05-29T05:18:13.146613 | 2019-10-14T00:50:24 | 2019-10-14T00:50:24 | 214,915,568 | 0 | 0 | null | 2022-05-20T21:12:19 | 2019-10-14T00:35:57 | Java | UTF-8 | Java | false | false | 9,607 | java | package pathfinder.datastructures;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
/**
* This represents an immutable path between two nodes with types T , particularly
* {@link Path#getStart()} and {@link Path#getEnd()}. Also contains a cached
* version of the total cost along this p... | [
"rrhuang@uw.edu"
] | rrhuang@uw.edu |
7669aff1fa688cb4b1850b60f1e2c04079b4acee | 68a32a6749eedbdcc7ca248cc6201467256e46d0 | /src/main/java/nasa/logic/parser/ExportCalendarCommandParser.java | 376cdf10ec77cdd10f393c7cf433d73b9001fcb3 | [
"MIT"
] | permissive | CharmaineKoh/main | 5016501fac887b530941af2252e4e0209729f252 | 283a91b618712c343a3dd78a438d99f51159ddd6 | refs/heads/master | 2021-01-05T03:26:37.021762 | 2020-04-13T15:54:00 | 2020-04-13T15:54:00 | 240,862,049 | 0 | 0 | null | 2020-02-16T09:11:38 | 2020-02-16T09:11:37 | null | UTF-8 | Java | false | false | 1,083 | java | package nasa.logic.parser;
import static nasa.logic.parser.CliSyntax.PREFIX_FILEPATH;
import java.nio.file.Path;
import nasa.logic.commands.ExportCalendarCommand;
import nasa.logic.parser.exceptions.ParseException;
/**
* Parses input arguments and return an ExportCalendarCommand object.
*/
public class ExportCale... | [
"kester.ng@visenze.com"
] | kester.ng@visenze.com |
f2aea436a0041c68c7d03f09417e20e84807a49b | c20d273f38efe31e7f128ce4b1b7449addb8af4c | /app/src/test/java/kz/helpnetwork/myapplorainstall/ExampleUnitTest.java | a02cf6256f2bfbd6ccbdbe0fa0ff7dca2c8de975 | [] | no_license | salmovs/MyAppLoraInstall | 8e229af6ff5185de4206d542d73d6d467bebec77 | bc5ebe8eb62243b5d99c213c64b02a01694bf9cc | refs/heads/master | 2020-03-30T15:23:47.260927 | 2018-10-03T04:39:26 | 2018-10-03T04:39:26 | 151,361,167 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 409 | java | package kz.helpnetwork.myapplorainstall;
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
pu... | [
"salmov@rambler.ru"
] | salmov@rambler.ru |
4ce718a9b46be2678274d121ac4b8bda53161e33 | b67f93f8268bd78ba3988ece05ed49dd498b0106 | /src/main/java/com/bluegraybox/sample/connection_pool/ConnectionWrapper.java | cbd78f33a1e7b26d8dce529490ac4ad0f2be8ac6 | [
"MIT"
] | permissive | bluegraybox/Sample-Connection-Pool | 9dc78423e0d3924a9efe2886e752f136414acd0a | 9ddf14817eab1ff17ec928538dca14c694395ec0 | refs/heads/master | 2016-09-05T21:34:58.130253 | 2014-03-21T09:36:50 | 2014-03-21T09:36:50 | 1,599,626 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,291 | java | package com.bluegraybox.sample.connection_pool;
import java.sql.Connection;
import java.sql.SQLException;
/**
* Wraps a Connection to keep track of state information needed by an {@link ExampleConnectionPool}.
* <p>The lifecycle for a ConnectionWrapper is: Available -> checkOut() -> In Use -> checkIn() -> Used.
* ... | [
"colin@bluegraybox.com"
] | colin@bluegraybox.com |
568a098e61ea0f4c77a5637dc2c9dbeb17222cd1 | 9e92540d8d29e642e42cee330aeb9c81c3ab11db | /D2FSClient/src/main/java/com/emc/d2fs/services/d2_template_service/SetTemplateResponse.java | b6c52e397c91eb9e257a5a5144e81260e548e107 | [] | no_license | ambadan1/demotrial | c8a64f6f26b5f0e5a9c8a2047dfb11d354ddec42 | 9b4dd17ad423067eca376a4bad204986ed039fee | refs/heads/master | 2020-04-29T10:52:03.614348 | 2019-03-17T09:26:26 | 2019-03-17T09:26:26 | 176,076,767 | 0 | 0 | null | 2019-03-17T09:26:27 | 2019-03-17T08:48:00 | Java | UTF-8 | Java | false | false | 1,305 | java |
package com.emc.d2fs.services.d2_template_service;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for anon... | [
"aniket.ambadkar@novartis.com"
] | aniket.ambadkar@novartis.com |
40bcaed0e76797981447fa4ab884921ce9390bcc | b7b274ac7784a953fa38147f7596aa1e24bb5583 | /src/main/java/com/smalaca/rentalapplication/infrastructure/persistence/jpa/apartmentbookinghistory/JpaApartmentBookingHistoryRepository.java | 8de724d9bd721b50a9530612bf163cc926b05aef | [] | no_license | smalaca/clean-arch-25 | 9f0879c0947005fc730e27cb18f46a9cde39ab53 | a254d001501b1c71ceeccb874d0a50feedd3e7fe | refs/heads/master | 2023-02-02T17:40:53.828252 | 2020-12-19T02:59:39 | 2020-12-20T09:32:26 | 323,036,657 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,231 | java | package com.smalaca.rentalapplication.infrastructure.persistence.jpa.apartmentbookinghistory;
import com.smalaca.rentalapplication.domain.apartmentbookinghistory.ApartmentBookingHistory;
import com.smalaca.rentalapplication.domain.apartmentbookinghistory.ApartmentBookingHistoryRepository;
class JpaApartmentBookingHis... | [
"ab13.krakow@gmail.com"
] | ab13.krakow@gmail.com |
df2171a8ccbb8785207653f08cfe0a34b695d6f4 | da6aaf2b64b3dcbe9da1d37cfd5ef73166832158 | /tree/construct_binary_tree_from_preorder_and_inorder_traversal.java | 2c84e62793f24e1e6d83310f00c27895cb418d92 | [] | no_license | Jug1378/leetcode | 97995624e66667d128246b2e084b5b81a981c88f | 2205f338a341c2deee2a340e0bd05d690789a2cb | refs/heads/master | 2021-01-20T21:00:40.485626 | 2014-04-14T19:23:54 | 2014-04-14T19:23:54 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 711 | java | public class Solution {
public TreeNode buildTree(int[] preorder, int[] inorder) {
int l1 = preorder.length;
int l2 = inorder.length;
return build(preorder, 0, l1-1, inorder, 0, l2-1);
}
public TreeNode build(int[] preorder, int pl, int pr, int[] inorder, int il, int ir) {
if(pl > pr ||... | [
"zhuge1378@gmail.com"
] | zhuge1378@gmail.com |
f91ad2a874a427644e98ba6ef70ef749a15e4002 | 9e7f2456c04cd4f656298d1ab63fd7cf051958e1 | /app/src/main/java/com/example/calculator/MainActivity.java | ad8bcf5a2c512aa54dc1eb8021b6d73ac273f413 | [
"Apache-2.0"
] | permissive | songjachin/calculator | 329963a888488f8ca6b355897a2ebde26ae56e69 | c4f7e93ec3b706388e28039d41bbfcd0af47066e | refs/heads/master | 2021-01-06T12:02:03.903921 | 2020-02-19T16:28:27 | 2020-02-19T16:28:27 | 241,319,189 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,342 | java | package com.example.calculator;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
private static final String TAG = "MainActivity";
private TextVie... | [
"song_2_vv@163.com"
] | song_2_vv@163.com |
f0f417be1e8cf7eacb97ee89cf3dc8d6f7215df2 | 851557e3d52a1e00fe443b66c14565478c818743 | /oldVersion/src/main/java/reloaded/convintobot/Settings.java | 97f91695a25d274f32ac8ce20b35634968b9170d | [] | no_license | sergiolaca/ConvintoBot | e7186a0ae59058abfc7092363d9059112f976c3d | ea56baed668bf5ac107e5cbd9a852b4d026a3e6f | refs/heads/master | 2023-06-03T05:20:10.438912 | 2020-04-20T19:14:24 | 2020-04-20T19:14:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,375 | java | package reloaded.convintobot;
import java.io.File;
import java.util.ArrayList;
import org.json.JSONArray;
import org.json.JSONObject;
public class Settings {
private long startTime;
private boolean phraseStatus;
private String gToken, tToken, id, chat, botName, dir = "";
private ArrayList<String> admins = new Ar... | [
"strdjn@gmail.com"
] | strdjn@gmail.com |
016d082d8188a3707dae8f8e1bf324114c214a98 | 4faa0f06b794d68018fdba00bef8b4ba3a391b61 | /mobile/src/main/java/intrepid/weardemo/services/WearableService.java | acc6cec439035091958971b8fa2564aef3f5f597 | [] | no_license | IntrepidPursuits/wear-music-app | 60652e3d6e72128dae57f82ea0c68da73003b780 | 9dd88f44faa01162fa237cfd9f0976d14d5a061e | refs/heads/master | 2016-09-16T04:27:15.773265 | 2014-09-12T17:59:39 | 2014-09-12T17:59:39 | 23,431,564 | 6 | 2 | null | null | null | null | UTF-8 | Java | false | false | 4,314 | java | package intrepid.weardemo.services;
import android.content.Intent;
import android.net.Uri;
import android.os.IBinder;
import android.os.ResultReceiver;
import android.support.v4.content.LocalBroadcastManager;
import android.util.Log;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms... | [
"chris@intrepid.io"
] | chris@intrepid.io |
66b9a1674c5763be993ba96571e3f9af8556eedc | 4bb83687710716d91b5da55054c04f430474ee52 | /dsrc/sku.0/sys.server/compiled/game/script/theme_park/poi/tatooine/pirate/poi_pirate_outpost8.java | 33af10008df8dbe354a4b30604ed5cfd24ac5af1 | [] | no_license | geralex/SWG-NGE | 0846566a44f4460c32d38078e0a1eb115a9b08b0 | fa8ae0017f996e400fccc5ba3763e5bb1c8cdd1c | refs/heads/master | 2020-04-06T11:18:36.110302 | 2018-03-19T15:42:32 | 2018-03-19T15:42:32 | 157,411,938 | 1 | 0 | null | 2018-11-13T16:35:01 | 2018-11-13T16:35:01 | null | UTF-8 | Java | false | false | 2,675 | java | package script.theme_park.poi.tatooine.pirate;
import script.*;
import script.base_class.*;
import script.combat_engine.*;
import java.util.Arrays;
import java.util.Hashtable;
import java.util.Vector;
import script.base_script;
import script.library.ai_lib;
import script.library.factions;
public class poi_pirate_out... | [
"tmoflash@gmail.com"
] | tmoflash@gmail.com |
51e0b2023e4e248b83da6dd57cd060ecb9b65e0d | b61c8a3b0d29ac69a3f858b24a78bcc407ef28e4 | /spring-rabbitmq/src/test/java/com/ytq/SSa.java | 3901116a5d8310fc822056c5bb67e6f1cb8d817d | [] | no_license | changeYe/spring-cloud-list | 16bcc961fa4c20e746ca733212680253d25ce12e | a80317c6c1181820fcb04ed508f0d5c4c214bd00 | refs/heads/master | 2022-11-17T07:35:53.152965 | 2020-06-21T11:58:02 | 2020-06-21T11:58:02 | 170,611,188 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 597 | java | package com.ytq;
import java.math.BigDecimal;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.ytq.m.annotation.BigDecimalFormat;
/**
* @author yuantongqin
* 2019/9/19
*/
public class SSa {
@BigDecimalFormat("###.##")
private BigDecimal age;
@JsonSerialize()
private Str... | [
"1335992463@qq.com"
] | 1335992463@qq.com |
48529b0c99e3c0723485c9da8e37afdc2fe76605 | fc07df47032fe362c9c21fe7c3eeb4ea19c34eed | /src/com/oa/commons/model/LoginInfo.java | 209f134372addf75c9632a77ab7cf74f670c57e3 | [] | no_license | admindxh/test7oa | 14b962bf5683ff8c0e155dede559f73530600893 | 00c9e7f7168bbedced1216e2fdb7a744dba71a5f | refs/heads/master | 2016-08-12T08:03:14.793248 | 2015-06-09T03:44:23 | 2015-06-09T03:44:23 | 36,922,234 | 1 | 2 | null | null | null | null | UTF-8 | Java | false | false | 1,277 | java | /**
* @Title: LoginInfo.java
* @date 2013-10-11 上午9:26:54
* @Copyright: 2013
*/
package com.oa.commons.model;
import java.sql.Timestamp;
/**
* 用户登录时的信息
* @author LiuJincheng
* @version 1.0
*
*/
public class LoginInfo implements java.io.Serializable{
/**
* @Fields serialVersionUID :
... | [
"dengxh@WIN7-JAVA03.rimi.com"
] | dengxh@WIN7-JAVA03.rimi.com |
08b8c036f4792b6acb09336ec88db3ba53d8ed2d | 2c4c7f61dd1607154a8de2ba324abf90f886cc5a | /src/leetcode/Leetcode19.java | c159088d0f7401f4124ccd207f6c9849331288d6 | [] | no_license | coderookier/codingforoffer | be7ee19d8853dee0aaeed1fae6356923aa0996cd | 5837a3b9a25ceded845f16e2540eaa57ea2e34b4 | refs/heads/master | 2020-07-23T04:48:22.342724 | 2020-02-28T07:41:16 | 2020-02-28T07:41:16 | 207,449,908 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,192 | java | package leetcode;
import structure.ListNode;
/**
* @author gutongxue
* @date 2019/9/19 20:48
* 删除链表的倒数第N个节点
**/
public class Leetcode19 {
/**
*采用快慢指针,快指针先移动n步,慢指针再开始移动,则当快指针指到链表尾时,慢指针指向需要删除的前一个节点
*/
public ListNode removeNthFromEnd(ListNode head, int n) {
ListNode dummy = new ListNode(-1... | [
"gupp0816@163.com"
] | gupp0816@163.com |
437fee1c382d6d868ba696399f93c0c543254fc4 | 44a9c106f9ac62064440cfa5b0459f19c3ea436a | /Tanks/battlefieldobjects/Rock.java | bf0dd2ca527bafac4d7561e0025ac5a4af488313 | [] | no_license | yurastepanyuk/HW | 9255eafc12ac5eb25b094cf1025370b62e8a7a07 | 376d9bbbe682b2d2b5cdb9b6c7670853e60611ed | refs/heads/master | 2020-04-15T10:56:54.413219 | 2016-02-28T16:27:49 | 2016-02-28T16:27:49 | 37,338,914 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 705 | java | package tanks.battlefieldobjects;
import tanks.Launcher;
import javax.imageio.ImageIO;
import java.awt.*;
import java.io.IOException;
import java.net.URL;
public class Rock extends BattleFieldObjects {
private final static String IMAGE_NAME = "images/rock.jpg";
public Rock(int x, int y) {
... | [
"yu.stepanyuk.ra@gmail.com"
] | yu.stepanyuk.ra@gmail.com |
eb5c751d61362b92547c1803b5b12990f70f45b2 | b1e1ee966f01b21fbe6142d96fda9fc40671f52e | /org/iata/iata/edist/_2017/BagOfferAssocType.java | 93d715ffb597cf09cb1a33bd28496669f0c40e42 | [] | no_license | swinghigh/ndc-java | d19cd6bc3fbf83e9d48dd1612e24db0277c11839 | 2973dedde0da18e2035141073bca42c04d6431d5 | refs/heads/master | 2023-03-15T14:43:24.850915 | 2019-09-13T15:59:53 | 2019-09-13T15:59:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,084 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.09.... | [
"axel@ucpa.se"
] | axel@ucpa.se |
2a266be20d37498621bd7a34f06734fbd68daa26 | e51c210ccf72a8ac1414791d8af552662c3fb034 | /passerelle-eclipse-workbench/com.isencia.passerelle.workbench/src/main/java/com/isencia/passerelle/workbench/ApplicationWorkbenchWindowAdvisor.java | 3e14663b816c4bdc82f2a506dc4c797f95986c70 | [] | no_license | eclipselabs/passerelle | 0187efa4fba411265ab58d60b5d83e74af09b203 | e327dea8f4188e4bfe5ef4a76dd2476ad6f5664d | refs/heads/master | 2021-01-18T09:26:07.614275 | 2017-06-28T10:05:12 | 2017-06-28T10:05:12 | 36,805,342 | 5 | 3 | null | 2015-08-04T18:43:19 | 2015-06-03T13:27:15 | Java | UTF-8 | Java | false | false | 1,243 | java | package com.isencia.passerelle.workbench;
import org.eclipse.ui.application.ActionBarAdvisor;
import org.eclipse.ui.application.IActionBarConfigurer;
import org.eclipse.ui.application.IWorkbenchWindowConfigurer;
import org.eclipse.ui.application.WorkbenchWindowAdvisor;
public class ApplicationWorkbenchWindowAdvisor e... | [
"erwindl0@gmail.com"
] | erwindl0@gmail.com |
fc4e2540d7aa9bc365a1f102851c5c119d1eca43 | d0c9e3cb08f448cb675f356eeef580d87216a6ec | /app/src/main/java/org/chengpx/domain/CarBean.java | 4bc9706c4a449fc8d1b368e42a0abf1ae1b20e08 | [] | no_license | 2018MI/ProblemSolution | 445ba81717aced28e0324f23e8be13d17a6015d7 | 49ed41f61b88be3ce4c7b45c4acaaded610934d4 | refs/heads/master | 2020-03-16T17:17:17.488465 | 2018-05-20T05:33:55 | 2018-05-20T05:33:55 | 132,825,319 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,286 | java | package org.chengpx.domain;
import com.j256.ormlite.field.DatabaseField;
import com.j256.ormlite.table.DatabaseTable;
import java.util.Date;
@DatabaseTable(tableName = "car_recharge_history")
public class CarBean {
@DatabaseField(generatedId = true)
private Integer id;
@DatabaseField(columnName = "CarId... | [
"2819573709@qq.com"
] | 2819573709@qq.com |
46a0e74c8d7f31273484f369550cf6995619cd8b | 746572ba552f7d52e8b5a0e752a1d6eb899842b9 | /JDK8Source/src/main/java/com/sun/org/apache/xml/internal/dtm/ref/ExpandedNameTable.java | e53b98608fad38736d5d5bc7fa28ce2ae5878ef3 | [] | no_license | lobinary/Lobinary | fde035d3ce6780a20a5a808b5d4357604ed70054 | 8de466228bf893b72c7771e153607674b6024709 | refs/heads/master | 2022-02-27T05:02:04.208763 | 2022-01-20T07:01:28 | 2022-01-20T07:01:28 | 26,812,634 | 7 | 5 | null | null | null | null | UTF-8 | Java | false | false | 15,625 | java | /***** Lobxxx Translate Finished ******/
/*
* Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
/*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "Licens... | [
"919515134@qq.com"
] | 919515134@qq.com |
80cf00cfec507064a2497ee7e558ead617a544cf | aa721013f5ed1fb65ed39958d025dc398a2c2b52 | /app/src/main/java/com/protect/kid/filter/CustomIpFilter.java | a7f666f53f2b81a53ea32d1b7c87e173f6d73527 | [] | no_license | myth2loki/Firewall | 408f5ea5e94b0fc12755e6f6e4f509864cf680b1 | 2085a30e72562986f6c685c89b554c8f347943c0 | refs/heads/master | 2020-03-12T06:21:53.363112 | 2018-09-26T11:59:30 | 2018-09-26T12:00:57 | 130,483,470 | 0 | 0 | null | 2018-04-21T14:53:44 | 2018-04-21T14:53:44 | null | UTF-8 | Java | false | false | 5,448 | java | package com.protect.kid.filter;
import android.content.Context;
import android.text.TextUtils;
import android.util.Log;
import com.protect.kid.BuildConfig;
import com.protect.kid.R;
import com.protect.kid.activity.SettingActivity;
import com.protect.kid.app.GlobalApplication;
import com.protect.kid.core.blackwhite.Bl... | [
"myth2loki@gmail.com"
] | myth2loki@gmail.com |
5d34c7fd5a944b79aa00940be691c2d072cb3756 | 0aeb24692771f6936ba7dd90a5a639aeb449adea | /app/src/main/java/com/reader/read/view/BookViewHolder.java | 3255ddfd3e76c4193ee8f52ee5cd4b933d770b6e | [] | no_license | operatium/commonsdk | 3bc3495df71b4f611ec20d11bf216db055629602 | cd66af1708fc09b7ffe8ccc8efcda67c270a4df8 | refs/heads/master | 2020-04-07T23:12:03.502538 | 2018-11-26T06:31:33 | 2018-11-26T06:31:33 | 158,802,369 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,721 | java | package com.reader.read.view;
import android.content.Context;
import android.graphics.Color;
import android.support.constraint.ConstraintLayout;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
impor... | [
"yuyuexing@hellokid.cn"
] | yuyuexing@hellokid.cn |
f45176568bc1306386fcb5a44f3d6f09c57d0911 | 4d0a11298989848cdaed1c06dfabfff182472010 | /src/controller/action/DeleteFeedAction.java | 010a5606103050c3e19a655572df0df17f9d3f2c | [] | no_license | j00hyun/SNSProject | 50cb1542973676ee16f5200c6d4c926891568468 | 94cf300da5bb062d65f1ff05b7f25fc2f8c875ac | refs/heads/master | 2022-12-18T10:02:08.460661 | 2020-09-24T04:13:57 | 2020-09-24T04:13:57 | 298,165,312 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,240 | java | package controller.action;
import java.io.IOException;
import java.sql.SQLException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import model.feed.FeedDAO;
public class DeleteFeedAction implements Action{
public v... | [
"loove1997@naver.com"
] | loove1997@naver.com |
e3127fed19b2d264a0765fe0647d5a2f50847dd1 | 9d620b4293e53b0c9f3ac7ef986d87a490ed69a0 | /app/src/main/java/com/example/pixaflip/JSONParse.java | 5f1481e9c14ed3be59289c1d29905fb190c8bb6e | [] | no_license | Muskaan24888/Pixaflip1 | 20bd4810946977385f48c11a06c4246dc6f8f914 | 1aebba54666f04b93c6efc1d41ff4c63f1592b09 | refs/heads/master | 2023-04-01T01:58:50.593599 | 2021-04-08T20:11:21 | 2021-04-08T20:11:21 | 337,629,650 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,052 | java | package com.example.pixaflip;
import android.content.Context;
import android.util.Log;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.UnsupportedEncodingException;
import java.net.HttpURLCon... | [
"muskanashaikh786@gmail.com"
] | muskanashaikh786@gmail.com |
1b34a90539f1289673b35961b949287e6c969949 | 3444f367937ae33fd6cbbd61eef38a4c26e4319a | /NotificationsDemo/app/src/main/java/com/charan/notificationsdemo/MainActivity.java | d6ffda84c56a9e91309df40e3601a5783f7b676f | [] | no_license | ckotha/Android-Studio-projects | 2b47121db7239f12f40185d1befda720cfa75fec | b85149031347074b2cdb0a4859d36421729d7acc | refs/heads/master | 2020-03-29T12:33:19.171210 | 2019-11-10T01:00:00 | 2019-11-10T01:00:00 | 149,905,543 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,251 | java | package com.charan.notificationsdemo;
import androidx.appcompat.app.AppCompatActivity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Overri... | [
"ckotha@ufl.com"
] | ckotha@ufl.com |
622caa513809b11dce84e2c3a68d6d673b1e6cf7 | a6cb259fc9c550c36d7a6b11dbb9fa269d5e31df | /TripKitAndroid/src/main/java/com/skedgo/android/tripkit/tsp/RegionInfoService.java | d4eefa00bc04f2d5fb452e4450a5b16be39c255a | [
"Apache-2.0"
] | permissive | mbarringer/tripkit-android | 26b5c445a4ddc2a291bf96a6cca7a4f14996f8fd | ed369f9017444ce8ea169db77657e43b9e91246d | refs/heads/master | 2020-07-17T10:16:50.780656 | 2018-11-25T16:13:50 | 2018-11-25T16:13:50 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,822 | java | package com.skedgo.android.tripkit.tsp;
import com.skedgo.android.common.model.Region;
import java.util.List;
import javax.inject.Inject;
import dagger.Lazy;
import okhttp3.HttpUrl;
import rx.Observable;
import rx.functions.Func1;
import static org.apache.commons.collections4.CollectionUtils.isNotEmpty;
/**
* A ... | [
"noreply@github.com"
] | noreply@github.com |
45fe6fcf78ebfeee80f8b57c01782586f771f688 | 46621c5b7acb2b44be2c24e06e574bbab2b251a6 | /MoPub/Android/AppLovinRewardedAdapter.java | ad8982027ff588e009959f20486600197131a08c | [
"MIT"
] | permissive | herizonsusanto/SDK-Network-Adapters | dc30b0c0077332ddf5b54e95b577f693d7cee48f | b468f042166d21d5839a26b367b27eb8c5ab18b9 | refs/heads/master | 2020-05-09T16:43:40.676971 | 2019-03-24T09:36:26 | 2019-03-24T09:36:26 | 181,281,322 | 0 | 0 | MIT | 2019-04-14T08:38:36 | 2019-04-14T08:38:36 | null | UTF-8 | Java | false | false | 251 | java | package YOUR_PACKAGE_NAME;
/**
* Created by thomasso on 10/10/17.
*/
// This class with the old classname is left here for backwards compatibility purposes.
public class AppLovinRewardedAdapter
extends AppLovinCustomEventRewardedVideo { }
| [
"thomas.m.so33@gmail.com"
] | thomas.m.so33@gmail.com |
6b762719d17b7e48828b4121a9c156db09eff1c1 | 9b8f067f3195f9d6c07517b85bc1fd4799647ff2 | /src/工厂方法模式/OperationAdd.java | 2f3098c7393127053c62de6bebd0bc3bf33bf5b3 | [] | no_license | JYBeYonDing/DesignMode | 7d23969607887200e581d78cce14edb7374d8cd9 | 3a52df59495a59df36c009fda79d7ec9165d5562 | refs/heads/master | 2021-08-11T05:45:16.533778 | 2017-11-13T07:00:07 | 2017-11-13T07:00:07 | 109,581,525 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 225 | java | package 工厂方法模式;
public class OperationAdd extends Operation {
@Override
public double getResult() {
double result = 0;
result = getNumberA() + getNumberB();
return result;
}
}
| [
"1370319648@qq.com"
] | 1370319648@qq.com |
e9ed1fc5828038c0345c5f39f28dd5939e44c28c | 0cc419ff78e16d8926105afecf13443aeb4ceece | /implementation.controller/src/main/java/br/ufsc/ine/ppgcc/consumer/Consumers.java | 05c21f885864a3ea2d5da710b34e808cb1b093d7 | [] | no_license | vandersonsampaio/5ions-implementation | b06d67d23077559e7db223075b5fb3132b8206e5 | 9b4cb8417c1fc695478c59d254f3e4ab799444d9 | refs/heads/master | 2022-11-10T09:05:58.957358 | 2022-09-30T01:33:03 | 2022-09-30T01:33:03 | 235,565,617 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,154 | java | package br.ufsc.ine.ppgcc.consumer;
import br.ufsc.ine.ppgcc.model.Document;
import br.ufsc.ine.ppgcc.service.interfaces.IFiveIonsManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.messaging.handler.annotation.P... | [
"vandersons.sampaio@gmail.com"
] | vandersons.sampaio@gmail.com |
6bfa15d3e705c034cfdd26f8f0fb95dde740bfcf | 4dead78c85fe8855d526ff686815c2df041b0cbc | /ORMDroid/src/com/roscopeco/ormdroid/TypeMapper.java | 6f5675f83dd10a8e2a773aaf883324a0b4c9cddc | [
"Apache-2.0"
] | permissive | rilsikane/sparkphoto | 5473163f8b56dd5164fe18d552103175b07ff3c1 | 1bc94a73c5a6785973cd9d34a80ee93b02864f14 | refs/heads/master | 2021-01-10T20:11:56.051487 | 2015-04-18T14:10:43 | 2015-04-18T14:10:43 | 32,306,904 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,034 | java | /*
* Copyright 2012 Ross Bamford
*
* 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 ... | [
"jutha.se@gmail.com@d8d245ee-1ed0-584e-c05a-70c02fc8b848"
] | jutha.se@gmail.com@d8d245ee-1ed0-584e-c05a-70c02fc8b848 |
0f680eb406143279ef4b2a8129b7d7d0f83da4a5 | 1905e78c44aaf092f3761426c8e1c701b6844b64 | /Algorithms/src/test/java/com/algorithms/graphtheory/networkflow/MaxFlowTests.java | 0bfd87095a65377b3b6fb1b185bd70106369cd64 | [] | no_license | khshaik/Algorithms | 6f7cb68faa3100e6a2457a6ebbf7c15567161785 | 44932c2ed409e295800b0cb0612b009a46a1572e | refs/heads/master | 2022-08-25T18:07:03.398454 | 2020-05-31T13:44:38 | 2020-05-31T13:44:38 | 236,345,601 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,823 | java | package com.algorithms.graphtheory.networkflow;
import static com.google.common.truth.Truth.assertThat;
import com.algorithms.graphtheory.networkflow.CapacityScalingSolverAdjacencyList;
import com.algorithms.graphtheory.networkflow.Dinics;
import com.algorithms.graphtheory.networkflow.EdmondsKarpAdjacencyList;
import... | [
"khaja.shaik@192.168.1.4"
] | khaja.shaik@192.168.1.4 |
05ed0300c7d5ea410e4d8b53f0e7ffc46014b337 | c385ce6441d7500444be44b5e04498e97705eb0b | /src/main/java/com/profesorfalken/wmi4java/WMI4JavaUtil.java | b7292e497cd39cf07c6c821f1d535791c9d54c60 | [
"Apache-2.0"
] | permissive | effad/WMI4Java | d47f38cdc78acadbced7c8f73ce010890bbc97d5 | e252757db30af610c41f7fbd9a7c27ec85336f84 | refs/heads/master | 2021-01-06T14:43:06.406425 | 2020-02-20T15:56:14 | 2020-02-20T15:56:14 | 241,365,476 | 2 | 0 | null | 2020-02-18T13:18:09 | 2020-02-18T13:18:08 | null | UTF-8 | Java | false | false | 466 | java | package com.profesorfalken.wmi4java;
public final class WMI4JavaUtil {
public static String join(String delimiter, Iterable<?> parts) {
StringBuilder joinedString = new StringBuilder();
for (final Object part : parts) {
joinedString.append(part);
joinedString.append(delimiter);
... | [
"profesorfalken.github@gmail.com"
] | profesorfalken.github@gmail.com |
77adfaa314fcf4f0152f66f59b460bc103cf0cc2 | caac8a089f7e4121ccae5d5104488f0199bf27fc | /src/com/huigao/dao/UsersDao.java | 87823621b740a89ebc4b00bde8b95eff479b941d | [] | no_license | zqHero/AttendanceCheckPro | d9ae8cfb3059a6b0dddedf7b835f0670e68809d6 | 78de4d90e4305dbe583156ed1c697d29e46fd5d8 | refs/heads/master | 2020-06-21T07:19:29.337954 | 2019-07-28T12:00:47 | 2019-07-28T12:00:47 | 197,380,282 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,518 | java | package com.huigao.dao;
import java.util.List;
import com.huigao.pojo.Users;
/**
* 用户管理部分数据库操作
* @author cgx
* @version 1.0
*/
public interface UsersDao {
/**
* 添加新的用户<br>
* 更新密码的时候,对象中的密码为明文,更新的时候自动转换为经过MD5加密后的密码
* @param users 用户
*/
public void save(Users users);
/**
* ... | [
"229457269@qq.com"
] | 229457269@qq.com |
2095fcab270498dc7606ed25284195309add8757 | d6cd99e39831f646582491cc7dfcc5e36fa90177 | /Item/Comprehension/AddMCQ2.java | 89121053dfc893ee2f57dd4f8b26c6cb6900293c | [] | no_license | AmoghJohri/DesignPatternsProject | b28730ff2818b5ca67955ecf548dad8f18bd96fe | 43581e392c838b4ff5c8f4b1953ff1438a5f4045 | refs/heads/master | 2023-01-21T22:51:49.869300 | 2020-11-30T02:46:51 | 2020-11-30T02:46:51 | 316,855,051 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,626 | java | package Item.Comprehension;
import Item.Item;
import Item.MCQ2.MCQ2Answer;
import Item.MCQ2.MCQ2Question;
// concrete decorator corresponding to MCQ2
public class AddMCQ2 extends Decorator
{
private MCQ2Question question; // MCQ2 question
private MCQ2Answer answer; // MCQ2 answer
public AddMCQ2(Com... | [
"amogh.johri@iiitb.org"
] | amogh.johri@iiitb.org |
ae32baad0ad1144ed4b0ff8f3257eab820202c7d | e8f9fe2285f1598fee5860d2447fd1a1f6557306 | /MPC/temp/src/minecraft_server/net/minecraft/src/BlockLeaves.java | 75d0c238bba712806824cd0f8376aac925500881 | [] | no_license | pedroreisuft/minecraft | 8e71c74ee37ffbf863b0e89c7051ed2b3ce80a7f | 64ba09bce02603abea3270e4030be2aac4555822 | refs/heads/master | 2016-09-06T01:24:36.812128 | 2012-11-30T19:34:19 | 2012-11-30T19:34:19 | 6,943,629 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,705 | java | package net.minecraft.src;
import java.util.Random;
import net.minecraft.src.Block;
import net.minecraft.src.BlockLeavesBase;
import net.minecraft.src.CreativeTabs;
import net.minecraft.src.EntityPlayer;
import net.minecraft.src.Item;
import net.minecraft.src.ItemStack;
import net.minecraft.src.Material;
import net.mi... | [
"phsmreis@gmail.com"
] | phsmreis@gmail.com |
ead3081843b8cdb1078656f541a7258e32021085 | 47aec655ff3abe4ee98f36c03a7903bf4e842fa8 | /src/main/java/org/alessio29/savagebot/apiActions/bennies/InitBenniesAction.java | f87f51187e604612cb4f40e540191107c824524a | [] | no_license | alessio29/savagebot | 3e86bc116114dc868b2e455983380570f41e47db | de11e7bdfa7a09c863db07fbb9e5790ad0df7541 | refs/heads/master | 2023-07-23T23:52:54.136392 | 2023-07-04T06:08:04 | 2023-07-04T06:08:04 | 159,931,777 | 49 | 12 | null | 2023-07-16T14:26:21 | 2018-12-01T10:06:28 | Java | UTF-8 | Java | false | false | 648 | java | package org.alessio29.savagebot.apiActions.bennies;
import org.alessio29.savagebot.internal.IMessageReceived;
import org.alessio29.savagebot.internal.commands.CommandExecutionResult;
import org.alessio29.savagebot.internal.utils.ChannelConfig;
import org.alessio29.savagebot.internal.utils.ChannelConfigs;
public class... | [
"alessio29@yandex.ru"
] | alessio29@yandex.ru |
4d162634c0c0500b64a9da4c8a283a99d745d793 | 31308c0dd1d8bfc074f10b1bf8b40fa26f45cf51 | /FirstAndLastPosition.java | 128cddba84c78f03671e7e765b3436d8b779e5be | [] | no_license | SunavaP/DataStructureAndAlgorithm | 6f81c35ee50d7fec1122c5f32906813dd0581423 | c69b57a5d1aadb2d894f7546973a78654883365f | refs/heads/master | 2022-01-09T19:49:34.903718 | 2019-05-14T04:38:05 | 2019-05-14T04:38:05 | 45,674,225 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,863 | java | import java.util.Arrays;
public class FirstAndLastPosition {
public static void main(String[] args) {
int n[] = {5, 7, 7, 8, 8, 10, 11, 14, 15, 15, 16, 17};
System.out.println(Arrays.toString(searchRange(n, 1)));
}
private static int[] searchRange(int[] nums, int target) {
boolean ... | [
"sunava@sunavas-MacBook-Pro.local"
] | sunava@sunavas-MacBook-Pro.local |
830e7a4fceb831c3884adc2fc55a85044107d5a2 | 09379a45dc3d3a22db90be2d348a7a8c707e7ec7 | /admin-video-common/src/main/java/com/Echoplus/utils/MD5Utils.java | 61a1082df8222b8a4d6769b4eefe7f8f6e3e5404 | [] | no_license | EchoPluslp/admin-video | 958edb9d00161a3d78929adbad7cca1c90d67134 | 3f66d46a40d4f5715c2a11eafeb43b3b67d749b3 | refs/heads/master | 2020-04-12T11:38:32.350122 | 2019-04-17T10:12:44 | 2019-04-17T10:12:44 | 162,466,025 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 594 | java | package com.Echoplus.utils;
import java.security.MessageDigest;
import org.apache.commons.codec.binary.Base64;
public class MD5Utils {
/**
* @Description: 对字符串进行md5加密
*/
public static String getMD5Str(String strValue) throws Exception {
MessageDigest md5 = MessageDigest.getInstance("MD5");
String newstr =... | [
"qazwsxedc219@qq.com"
] | qazwsxedc219@qq.com |
56f6a11b6799822c18703db7be18e1f2e9d4903b | 513eff831b877b256fb07a637913476c16620488 | /src/main/java/com/google/devtools/build/lib/exec/CheckUpToDateFilter.java | 7390cb3a040867171f85866713962d900f742287 | [
"Apache-2.0"
] | permissive | kudddy/bazel | 3a3c49fc8081c8306b1492cdbdf0cc338673a6e8 | 76555482873ffcf1d32fb40106f89231b37f850a | refs/heads/master | 2020-07-03T05:48:16.907289 | 2017-06-04T23:54:37 | 2017-06-05T14:19:20 | 201,805,076 | 2 | 0 | Apache-2.0 | 2019-08-11T19:15:28 | 2019-08-11T19:15:28 | null | UTF-8 | Java | false | false | 2,759 | java | // Copyright 2014 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by appl... | [
"hanwen@google.com"
] | hanwen@google.com |
6947350d4e78c14ef4b5395289d7c419418a3ffb | 443490d1ced4082dda836963b202877292aef889 | /src/com/moon/biz/register/RegisterAct.java | eda369d4ae6f728840207bdc20728f57c647e630 | [] | no_license | Bye-2012/SinaNews | 4e10c9cbbda682cfcf80ed4fc3d406df02981a10 | 7306b0648de668e48ead55ba1184634239f90126 | refs/heads/master | 2021-01-23T02:54:07.687552 | 2015-04-27T13:00:22 | 2015-04-27T13:00:22 | 34,258,465 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,198 | java | package com.moon.biz.register;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.provider.Settings;
import android.util.Log;
import android.view.View;
import android.widget.EditText;
import android.widget.ImageView;
import com.android.volley.toolbox.ImageLoader;
impor... | [
"1695966051@qq.com"
] | 1695966051@qq.com |
49b5a7e8183edfb38794bd67b7803f40a5fb3423 | dcdbdc17698184d5cd0b93f67c898260d2252661 | /UltraEmojiCombate/src/ultraemojicombate/Lutador.java | 7690f3d45f9ae69d72dae77bf3f40460652f13f5 | [
"MIT"
] | permissive | PatriciaCarla/Exercicios-JavaPOO | bb12e574f18612d20590d3ec4f5be88449ceb474 | c127bd3d7627f86a9894f4fa12a68c7737d08163 | refs/heads/main | 2023-03-27T03:02:41.594205 | 2021-03-29T00:28:57 | 2021-03-29T00:28:57 | 350,228,277 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,627 | java | package ultraemojicombate;
public class Lutador {
//Atributos
private String nome;
private String nacional;
private int idade;
private float altura;
private float peso;
private String categoria;
private int vitorias;
private int derrotas;
private int empates;
//Métodos especi... | [
"patycarlasoares@gmail.com"
] | patycarlasoares@gmail.com |
2a88854d17ce7e1cc072823298563e5ca904fa1c | 69a4f2d51ebeea36c4d8192e25cfb5f3f77bef5e | /files/File_1020797.java | 7f026af2b9f6175f2671001a1a03ad866f61ce16 | [
"Apache-2.0"
] | permissive | P79N6A/icse_20_user_study | 5b9c42c6384502fdc9588430899f257761f1f506 | 8a3676bc96059ea2c4f6d209016f5088a5628f3c | refs/heads/master | 2020-06-24T08:25:22.606717 | 2019-07-25T15:31:16 | 2019-07-25T15:31:16 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,493 | java | package com.fisher.gateway.interceptor;
import feign.RequestInterceptor;
import feign.RequestTemplate;
import lombok.extern.slf4j.Slf4j;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.s... | [
"sonnguyen@utdallas.edu"
] | sonnguyen@utdallas.edu |
fe046087772994832eccf48578f611bf24f31a0c | 10017e6e4fae86ba9c7d6ac891c5ca8988d8b3e4 | /app/src/main/java/cn/see/chat/controller/MenuItemController.java | 9c8d3e22961261b4ec60bbe2614154892bbf5ebf | [] | no_license | TiAmoGxb/See | e5f94cb139d4c00f242fab1a564eea8a6b983d6b | 4e7d774218828978733e6ef551bfb439e0a17978 | refs/heads/master | 2020-03-22T17:47:06.596872 | 2018-12-27T07:46:48 | 2018-12-27T07:46:48 | 140,415,559 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,004 | java | package cn.see.chat.controller;
import android.content.Intent;
import android.view.View;
import cn.see.R;
import cn.see.chat.activity.CommonScanActivity;
import cn.see.chat.activity.CreateGroupActivity;
import cn.see.chat.activity.SearchForAddFriendActivity;
import cn.see.chat.activity.fragment.ConversationListFragme... | [
"78997767@qq.com"
] | 78997767@qq.com |
685a60cbc46c073642025113de755b8245e0ee1c | fdb6375e39c563fa204d03d8a9716f53af80bd95 | /trinkedemo/src/main/java/com/rk/trinkedemo/Text.java | 14674e2ddda50c12e4ea5001132871f2d59f4b25 | [] | no_license | wyj3531/Demo | b6845f4dba7c4d3a44472876fcdec41300feede7 | cfb067af474f98a09f2c1e88ade21fbf8cba6884 | refs/heads/master | 2020-05-05T09:55:09.388466 | 2019-04-23T16:10:51 | 2019-04-23T16:10:51 | 179,923,077 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 825 | java | package com.rk.trinkedemo;
import java.util.TreeMap;
/**
* @author orange
* @time 2019-04-14 10:51
*/
public class Text {
public static void main(String[] args){
int [] target={10, -2, 5, 8, -4, 2, -3, 7, 12, -88, -23, 35};
count(target);
TreeMap<Integer,Integer> map=new TreeMap<>();
... | [
"wyj842537@163.com"
] | wyj842537@163.com |
65dddac499f45f99376f276177ab395339b99fe3 | 83d0883cd6f4581ca39c02c59f0c6df994bd38eb | /src/view/graphicmanager/IShapeGraphicCollectionObservers.java | b92465337ec27b61a6340c879e4905fba6931c91 | [] | no_license | Carl-K/Drawing-Application | b483f1769ac6271d9c191ba2b6e2bee493b6e9b3 | 9194f27fc4b24a0f6148572b63cb38d63825b48a | refs/heads/master | 2020-03-30T17:41:03.652114 | 2018-10-03T19:13:14 | 2018-10-03T19:13:14 | 151,459,041 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 345 | java | package view.graphicmanager;
import view.subscriptions.ShapeGraphicCreatedObserver;
import view.subscriptions.ShapeGraphicRemovedObserver;
import view.subscriptions.ShapeGraphicUpdatedObserver;
public interface IShapeGraphicCollectionObservers extends ShapeGraphicCreatedObserver, ShapeGraphicUpdatedObserver, ShapeGra... | [
"noreply@github.com"
] | noreply@github.com |
1065cb9cc24f14a41b7e8a4829bdd6cc5761058b | 1f19aec2ecfd756934898cf0ad2758ee18d9eca2 | /u-1/u-12/u-11-112/u-11-112-f1283.java | 9e6cc8a44b1b43051e86df6e74083586541f13e8 | [] | no_license | apertureatf/perftest | f6c6e69efad59265197f43af5072aa7af8393a34 | 584257a0c1ada22e5486052c11395858a87b20d5 | refs/heads/master | 2020-06-07T17:52:51.172890 | 2019-06-21T18:53:01 | 2019-06-21T18:53:01 | 193,039,805 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 106 | java | mastercard 5555555555554444 4012888888881881 4222222222222 378282246310005 6011111111111117
3048133123010 | [
"jenkins@khan.paloaltonetworks.local"
] | jenkins@khan.paloaltonetworks.local |
febaf161d91c3df7d209be05bae222bdcd9a4a78 | 6cfdb394477b5af7caf3a78a94f3da8bbf7ea146 | /AddItems.java | 97dc8e68c61db80db52b55dae720024c2ff0d4e6 | [] | no_license | shravanthimadhugiri/VendorCustomerApplication | 13683abcd008896b12cd352392061ec6671192f0 | 552b659469ff72ba89512f6cf08c6167e41760c1 | refs/heads/main | 2023-07-10T00:02:04.708682 | 2021-08-04T14:59:18 | 2021-08-04T14:59:18 | 392,727,684 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,155 | java | package com.example.vendorproject;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import ... | [
"noreply@github.com"
] | noreply@github.com |
ac2ba15f19b782e420066c88d4caeb4681fd8a0c | 4d69b8b3a8025dc9a8660090005e93943924b915 | /src/day40_CustomClass/Computer.java | 1b6f1421fd9e3ee069a2957cec60c7f516e74265 | [] | no_license | HurmaH/JavaCore | 648de2cbb2935ac0edcb0760caf70832a33e65ac | b7ba23c74849dbb6131cceb7fc5db676ac094e03 | refs/heads/master | 2020-06-04T00:47:46.598461 | 2019-07-21T21:42:27 | 2019-07-21T21:42:27 | 191,799,853 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 873 | java | package day40_CustomClass;
public class Computer {
/*
* instance variables/field get default value
* if it's not specified in template class
*
* default values can be changed
* in template class by providing value
* in template class itself while declaring the field
*
*/
String ty... | [
"hurmahm@gmail.com"
] | hurmahm@gmail.com |
d49d998163449a41db1e7a522ca7951bff396c23 | f6323b3fa8f57aa17b170243ddcff9265b3ace0b | /app/src/main/java/com/dts/mpos/RepesajeLista.java | 899fd98be9320ddcf1d59c8c7a4fcc18ca174639 | [] | no_license | dtsolutionsgt/mpos | ffa16e2a48ec4b61850837c6c47ae76dec95f857 | 0b592c9ed5fccf9f190eea2eec7bc4813591131a | refs/heads/master | 2023-08-17T16:11:47.002520 | 2019-11-24T17:17:45 | 2019-11-24T17:17:45 | 192,608,901 | 0 | 1 | null | 2023-06-16T12:29:49 | 2019-06-18T20:34:12 | Java | UTF-8 | Java | false | false | 5,921 | java | package com.dts.mpos;
import android.content.Intent;
import android.database.Cursor;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ListView;
import android.widget.TextView;
import java.util.ArrayList;
public class RepesajeLista extends PBase {
priva... | [
"dtsolutionsgt@gmail.com"
] | dtsolutionsgt@gmail.com |
4791846fb5adff2830f22ef325a9573237310a44 | c9b767cdaac2cbe0785ff95712b4484a384f7720 | /app/src/main/java/com/dex/teufelsturmoffline/views/SearchViewFragment.java | 200f7cadf0073dbb76e406342be03a7998d6ef93 | [] | no_license | jomaresch/TeufelsTurmOffline | 8c2661464bbaf0f2534f4e5f42e6651510511f8a | 813a9469bd36f1344f14e8535754b2d6e6525240 | refs/heads/master | 2023-06-08T09:35:38.658175 | 2023-06-04T09:39:16 | 2023-06-04T09:39:16 | 160,845,639 | 0 | 0 | null | 2023-06-04T09:39:17 | 2018-12-07T16:03:51 | Java | UTF-8 | Java | false | false | 5,751 | java | package com.dex.teufelsturmoffline.views;
import android.content.Intent;
import android.os.Bundle;
import com.google.android.material.floatingactionbutton.FloatingActionButton;
import androidx.fragment.app.Fragment;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.Recycle... | [
"johannes_ma@web.de"
] | johannes_ma@web.de |
37961bea998bf644fcf403e19e7dd1ed58e826c7 | 8efbd2c63d20f2180dac564bbf76aa695e05c779 | /core/src/com/mygdx/game/InputHandling/KeyBoardInputManager.java | 3a59d47486e6b20809f587acddd569393a884f15 | [] | no_license | val92130/Rpg | 30151906f1dcb1853c170609842eb75f0bb48c4c | ebc8708f3af91e4e5b6536ddc27a1d5ed7fe4019 | refs/heads/master | 2016-08-03T18:51:38.390999 | 2015-08-19T18:27:42 | 2015-08-19T18:27:42 | 39,652,523 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,340 | java | package com.mygdx.game.InputHandling;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.InputProcessor;
import com.badlogic.gdx.math.Vector2;
import com.mygdx.game.Constants;
import com.mygdx.game.Screens.GameScreen;
/**
* Created by val on 23/07/2015.
*/
public class KeyBoardInputManager implements InputProcess... | [
"chatelain@intechinfo.fr"
] | chatelain@intechinfo.fr |
d9138b4b32a8033d02d59c5af3c66bbbdead20df | 267408dbb8cf439d48ed60614b5a69196eab3fba | /CadastroFuncionario/src/main/java/br/com/cadastro/domain/Cargo.java | aeaf1283c29f8b5f4cdefa0e9ba487444ee452ce | [] | no_license | jbwinchesterjw/CadastroFuncionarios | ad27a5696df829991e2011e6736f4ac35cf4b66b | 1e56e5efc6d523a26c2c1713c1a04a81c6c8ca59 | refs/heads/main | 2023-06-01T05:40:20.573113 | 2021-06-23T00:27:10 | 2021-06-23T00:27:10 | 379,433,361 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,428 | java | package br.com.cadastro.domain;
import java.util.List;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.OneToMany;
import javax.persistence.Table;
import javax.validation.constraints.NotBlank;
import jav... | [
"jbwincheaster@gmail.com"
] | jbwincheaster@gmail.com |
a38ff2d5a3faa7562854bcbdab72c88ebf7c427f | 7a7f3f22c4ea6fbe57ee8af2062233af56285f5d | /src/main/java/it/academy/project/projectonspring/repository/CourseRepository.java | 61bfe09d83e79712231deed3574f28b02110262f | [] | no_license | Rauan020302/FinalProjectOnSpring | 2d6f5b8aeea96fa605e096aacd2d36aa21adf089 | dc3c145e59a1e11156fa6c2d8a82c64bca7b845c | refs/heads/main | 2023-06-17T12:42:28.593217 | 2021-07-07T11:55:50 | 2021-07-07T11:55:50 | 369,592,322 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 311 | java | package it.academy.project.projectonspring.repository;
import it.academy.project.projectonspring.entity.Course;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface CourseRepository extends JpaRepository<Course,Long> {
}
| [
"ibragimov020302@gmail.com"
] | ibragimov020302@gmail.com |
3e4aadd12f327a70b7c618cdcdd23b909b7ec356 | 2a3f19a4a2b91d9d715378aadb0b1557997ffafe | /sources/com/newrelic/agent/android/instrumentation/okhttp2/CallbackExtension.java | d66652eb94161d2b5e02aa329ddc54fd72d41e03 | [] | no_license | amelieko/McDonalds-java | ce5062f863f7f1cbe2677938a67db940c379d0a9 | 2fe00d672caaa7b97c4ff3acdb0e1678669b0300 | refs/heads/master | 2022-01-09T22:10:40.360630 | 2019-04-21T14:47:20 | 2019-04-21T14:47:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,468 | java | package com.newrelic.agent.android.instrumentation.okhttp2;
import com.newrelic.agent.android.TaskQueue;
import com.newrelic.agent.android.api.common.TransactionData;
import com.newrelic.agent.android.instrumentation.TransactionState;
import com.newrelic.agent.android.instrumentation.TransactionStateUtil;
import com.n... | [
"makfc1234@gmail.com"
] | makfc1234@gmail.com |
a44372fe4b21292a417f58bf2360a45f3fefc828 | 074a12d70f3b8cc5d490b168358dfabc95ece3d0 | /artemis-weaver/src/main/java/com/artemis/weaver/packed/FieldToStructMethodTransformer.java | 451f92de5a5d032061ff5d66081747d87b3dbdae | [
"Apache-2.0"
] | permissive | pakoito/artemis-odb | 8ad351b45458e754e25da93d5e829f371236cad2 | 42fd1f279dc95da775d1bba8d64bd8a2ce70bccf | refs/heads/master | 2021-01-25T00:29:29.408053 | 2014-07-17T11:01:19 | 2014-07-17T11:01:19 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,278 | java | package com.artemis.weaver.packed;
import static com.artemis.weaver.packed.InstructionMutator.on;
import java.util.List;
import org.objectweb.asm.Opcodes;
import org.objectweb.asm.tree.AbstractInsnNode;
import org.objectweb.asm.tree.FieldInsnNode;
import org.objectweb.asm.tree.InsnList;
import org.objectweb.asm.tree... | [
"blackrax@gmail.com"
] | blackrax@gmail.com |
9395e69c31ef3e3bbf7c44a4687aec971fa3675b | 89eb3c078aec72d8e7cd1208830656d30c4ad9ef | /src/main/java/domain/com/library/domain/Toy.java | 15281011519416e97a3c40235bbaa684908aefca | [] | no_license | xiaobinbupt/library | 355605dc3112806ad16977a40331a498ed601dcb | 42722962c08ce5e5b5853334aa6defe9eaeeaea7 | refs/heads/master | 2020-03-30T23:38:02.444451 | 2015-06-10T10:05:18 | 2015-06-10T10:05:18 | 23,606,095 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,458 | java | package com.library.domain;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
@Entity
@Table(name = "toy")
public class Toy imple... | [
"xiaobin@xiaobin.com"
] | xiaobin@xiaobin.com |
83871f7a6a10b7925a34ca3394fa13501c9058df | fb1f96e131ce606404c69972db07297ed81c400e | /src/main/java/com/filmer/service/IPeliculasService.java | 7341a8566ba87a98bea698db63a81b3eb898e312 | [] | no_license | JandroCode/filmerApp | f5864a480eef19255ec97df89a2bcbb25e09eccf | cee4cc769d84789e353df390c544e245f5f37e1f | refs/heads/main | 2023-05-22T03:32:27.653433 | 2021-06-14T12:45:43 | 2021-06-14T12:45:43 | 376,559,135 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 306 | java | package com.filmer.service;
import java.util.List;
import com.filmer.entities.Pelicula;
public interface IPeliculasService {
void save(Pelicula pelicula);
List<Pelicula> listadoPeliculas();
Pelicula peliculaPorId(Long id);
void eliminarPelicula(Long id);
Pelicula peliPorTitulo(String titulo);
}
| [
"Algarrobeando@hotmail.com"
] | Algarrobeando@hotmail.com |
f0bc8271715e9c9868cb59926af120d0ca2c018a | 5d00b27e4022698c2dc56ebbc63263f3c44eea83 | /src/com/ah/apiengine/response/QueryVhmMovingStatusResponse.java | 4f86e3581fd5dbe7af28a9ac22289f7aadba4d66 | [] | no_license | Aliing/WindManager | ac5b8927124f992e5736e34b1b5ebb4df566770a | f66959dcaecd74696ae8bc764371c9a2aa421f42 | refs/heads/master | 2020-12-27T23:57:43.988113 | 2014-07-28T17:58:46 | 2014-07-28T17:58:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,261 | java | package com.ah.apiengine.response;
import java.nio.ByteBuffer;
import java.util.Collection;
import com.ah.apiengine.AbstractResponse;
import com.ah.apiengine.Element;
import com.ah.apiengine.EncodeException;
import com.ah.apiengine.agent.HmApiEngineMastAgent;
import com.ah.apiengine.agent.HmApiEngineMastAgen... | [
"zjie@aerohive.com"
] | zjie@aerohive.com |
98990a8d0dd326b8737004ed5e64ea29215be14f | 484c7ae73cfa0aa8263fdd484236c2fe91d3ac4a | /spring-context-xml/src/main/java/com/github/wesleyegberto/springcontextxml/model/Customer.java | 8d628afde37532da1fa476b9098bee2f5d135dd9 | [
"MIT"
] | permissive | wesleyegberto/spring-study | 07e25737e75823d1da5880d391774109fbb0775f | 1714fad96d45f6aada2fd1c95ccf9a1fb5c6c83c | refs/heads/master | 2022-12-25T11:00:21.153544 | 2022-11-26T20:13:27 | 2022-11-26T20:13:33 | 131,788,908 | 5 | 3 | MIT | 2022-12-16T03:01:15 | 2018-05-02T02:42:45 | Java | UTF-8 | Java | false | false | 327 | java | package com.github.wesleyegberto.springcontextxml.model;
public class Customer {
private Long id;
private String name;
public Customer() {
}
public Customer(Long id, String name) {
super();
this.id = id;
this.name = name;
}
public Long getId() {
return id;
}
public String getName() {
return name... | [
"wesleyegberto@gmail.com"
] | wesleyegberto@gmail.com |
c2e7dcbea471dfe59d556578c174d7037e6d440f | e05f43dcdf1cc0dd2e2627283574e4a8345ee446 | /FCB_DAO/src/test/java/com/fcb/dao/EducationDetailsDAOImpl.java | 0b9349269e7c5cdfe3850f30dffd2e61ea87868a | [] | no_license | kaushalkbca15/SpringJDBC | a466db3bd3947e6f9a98e08b365160dcb826a6bf | fe242615dab6612c59b2c7c039ca56bf5849f2bc | refs/heads/master | 2021-05-02T03:51:58.271456 | 2018-02-09T13:47:15 | 2018-02-09T13:47:15 | 120,865,038 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 595 | java | /*
* Copyright (c) 2017, 2018, FCBDM and/or its affiliates. All rights reserved.
* FCBDM PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package com.fcb.dao;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Reposi... | [
"email@example.com"
] | email@example.com |
0dadffa26586b65c925b9b174152bcc7c7d65257 | 385ad4174af5b9f884d67a7467527c957162d1a0 | /src/main/java/com/catas/audit/common/Constant.java | ff7419ad38602e95fc0f993e1b29612b32c2a0fe | [] | no_license | Kili666/J-sparrow- | 105b540dbf9f9763c5eb8fe62c806ce1ea1e9896 | 88e4f782f1069240e0e8cf32b1a923dbaf0d9bc8 | refs/heads/main | 2023-06-29T17:40:27.168912 | 2021-08-06T13:05:01 | 2021-08-06T13:05:01 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,322 | java | package com.catas.audit.common;
public class Constant {
public static final Integer OK = 200;
public static final Integer ERROR = -1;
public static final Integer USER_ACTIVE = 1;
public static final Integer USER_LOCKED = 0;
public static final Integer USER_IS_ADMIN = 1;
public static final ... | [
"1014518525@qq.com"
] | 1014518525@qq.com |
c30e2858310ff2db6ce9eebe18fd2f0462d42eb8 | f5d8030a075f9ac859ac6c4f6b050753be65bdcd | /src/main/java/org/libermundi/theorcs/services/impl/StringFormatServiceImpl.java | fd4a1ffe970dc6b1f883d3e5768019f76812b1cd | [
"Apache-2.0"
] | permissive | kheldar666/theorcs | 413de1383ee6eca2051318057b868e3c2d418ece | 77ddc219c45c73b094302c7832af66a65de5db7c | refs/heads/master | 2021-08-28T01:44:37.582374 | 2018-02-22T02:25:17 | 2018-02-22T02:25:17 | 73,893,726 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,991 | java | package org.libermundi.theorcs.services.impl;
import org.libermundi.theorcs.services.StringFormatService;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.MessageSource;
import org.springframework.context.i18n.LocaleContextHolder;
import org.springframework.stereotype.Servi... | [
"martin.papy@gmail.com"
] | martin.papy@gmail.com |
cb405a3191714a92609edbb58919fb86e2316f56 | 20a3b8a9097fe2fab52751d458e5e0f951ec9fd4 | /src/lessons/Employee.java | bb635d677ddc0c31f13673dec39d83224dc09402 | [] | no_license | RomaBlaSo/StudyJOOP_ACO10 | 12ecaf79d95df15e7f322cef95c58bbd1d30875d | 8671f4553c79cf25b8e1ee28a41165f0c4f68972 | refs/heads/master | 2021-01-10T15:29:04.741988 | 2016-01-23T13:40:08 | 2016-01-23T13:40:08 | 47,500,892 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 455 | java | package lessons;
public class Employee {
private String name;
private int age;
private int salary;
public Employee(){}
public Employee(String name, int age, int salary){
this.name = name;
this.age = age;
this.salary = salary;
}
public void doCoffee(){
S... | [
"voloshyn.roman@gmail.com"
] | voloshyn.roman@gmail.com |
49cb1c94bcd53020361044b7197abebff8026cda | 4f41aa43a58148bff6e1b9a7786b4a892cc318ff | /src/test/java/com/diffplug/gradle/eclipse/MavenCentralPluginTest.java | a41b79e4d75f561c32c2cbe14cf5a6fdbdf14c70 | [
"Apache-2.0"
] | permissive | gkgeorgiev/goomph | bba51779688ad843d809649a7e035d18f747ee0c | 1b09ca0cc814f074e7421eb1174758616a4461ab | refs/heads/master | 2023-08-04T01:58:01.030857 | 2020-06-15T22:57:49 | 2020-06-15T22:57:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,180 | java | /*
* Copyright 2020 DiffPlug
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in... | [
"ned.twigg@diffplug.com"
] | ned.twigg@diffplug.com |
5412cf82e765d920ca29fb696c967e9722cf039d | 74a81b5cd2deb0f77c818fdecc28d525b19e2ed8 | /src/Cat/Cat.java | 32135bee7311e302b6129ccbd19c5639e0876866 | [] | no_license | flussigkatz/Education | 34a28cc7088308af43a45d887e7d0a47e4ec9656 | 825f62f8f4c80ae00a181d8494a92db97440aaa5 | refs/heads/master | 2023-03-25T22:46:46.441146 | 2021-03-27T13:58:09 | 2021-03-27T13:58:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,459 | java | package Cat;
public class Cat {
private double weight;
private String name;
private int age;
private String color;
public static int catCount;
//Конструктор по умолчанию
public Cat() {
this(3000, "Barsik", 1, "Grey");
}
//Конструктор, принимающий параметры
public C... | [
"flussigkatz@gmail.com"
] | flussigkatz@gmail.com |
0a86e4441e94754b696f83151995917cab429934 | c247985454f83a5ea73c5b49a7f31d52e28716dc | /src/main/java/pl/grizwold/ugamela/page/ResourcePanel.java | 3e821b6201713e942971ca012187e006d0db3f5a | [
"MIT"
] | permissive | tomekbielaszewski/ugamela-automation | e52c56e8bce23c82d48e608eaf0cbda453ef481b | 5fc1a9f8dc1314a6605b965fc91b06e421bd75e7 | refs/heads/master | 2022-09-23T10:07:08.429463 | 2022-08-29T11:55:35 | 2022-08-29T11:55:35 | 164,703,098 | 0 | 0 | null | 2019-01-08T21:06:06 | 2019-01-08T17:48:50 | Java | UTF-8 | Java | false | false | 1,831 | java | package pl.grizwold.ugamela.page;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import pl.grizwold.ugamela.UgamelaSession;
import pl.grizwold.ugamela.page.model.Resources;
import java.util.Scanner;
public class ResourcePanel extends Page {
public ResourcePanel(UgamelaSession session) {
... | [
"tomekbielaszewski@gmail.com"
] | tomekbielaszewski@gmail.com |
58056043f5720794b25090d65051654c4f6d9e17 | 7951b011669b2347cad79d74811df5c0e7f812e4 | /VladDziubko/src/week1/dynamicArray/Run.java | f6aa531e542aaa7424e84d45b32549cf7e3b6c7b | [] | no_license | gorobec/ACO18TeamProject | 77c18e12cefb4eda3186dc6f7b84aed14040a691 | ae48c849915c8cb41aab637d001d2b492cc53432 | refs/heads/master | 2021-01-11T15:20:56.092695 | 2017-02-18T14:22:11 | 2017-02-18T14:22:11 | 80,338,687 | 1 | 1 | null | 2017-02-22T20:10:45 | 2017-01-29T09:48:23 | Java | UTF-8 | Java | false | false | 457 | java | package week1.dynamicArray;
public class Run {
public static void main(String[] args) {
NewArrayList<String> list = new NewArrayList<>();
list.add("cat");
list.add(1, "dog");
System.out.println(list.size());
list.remove(0);
for (int i = 0; i < list.size(); i++) {
... | [
"777reed777@gmail.com"
] | 777reed777@gmail.com |
04eb66763ffed6e167000c89a964f47b4def6472 | f9a574454f39e022121ac8ddd01ad5d3f6cda4d8 | /src/main/java/com/wance/entity/Animal.java | 69c7dbfe9238cd0bcd7facfbbb36294bad077660 | [] | no_license | 1569185189/gittest | 7a940c9fbba64392aaf13ececdb1b70005a74545 | 763f4f39c71d3e544f0e2f4a48cf7888477bc57b | refs/heads/master | 2022-12-21T03:47:29.950572 | 2020-09-15T09:41:36 | 2020-09-15T09:41:36 | 289,595,525 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,587 | java | package com.wance.entity;
public class Animal {
private int aid;
private String aname;
private String sex;
private int feetcount;
private Owner owner;
public Owner getOwner() {
return owner;
}
public void setOwner(Owner owner) {
this.owner = owner;
}
public An... | [
"1569185189@qq.com"
] | 1569185189@qq.com |
3a03bad9b235fd6e97c30e7cb5cee1d2ef726dad | e451bd84f3b251c6ccbd9ec4dfe6bf952d34390a | /src/main/java/uk/org/glendale/worldgen/astro/planets/generators/jovian/Sokarian.java | 3351bf087d65577220d31c085c58d5715a058f95 | [
"BSD-2-Clause"
] | permissive | samuelpenn/worldgen | 1fe618eae5dd6a05d99a1577e9659f549451a8b5 | c97a6d0a9cee42f6cae108e5b13704b974d1b23f | refs/heads/master | 2018-09-01T02:14:57.225507 | 2018-06-03T21:32:17 | 2018-06-03T21:32:17 | 117,744,349 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,659 | java | /*
* Copyright (c) 2017, Samuel Penn (sam@glendale.org.uk).
* See the file LICENSE at the root of the project.
*/
package uk.org.glendale.worldgen.astro.planets.generators.jovian;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import uk.org.glendale.utils.rpg.Die;
import uk.org.glendale.worldgen.WorldGen... | [
"sam@glendale.org.uk"
] | sam@glendale.org.uk |
589943000fa57bada7a0bac0be03bee31906b3bd | 20504a5958ca64284c5d7bd539426d5120227e43 | /src/main/java/com/intercorp/clientmanager/utils/StatisticsHelperMethods.java | cb0791346c5b3028029f657461d3794e77bdec6f | [] | no_license | patomezi/client-manager-intercorp | 42f4d7f8e3a5f84a5abcb63e6ca9f75e39b68f87 | 0047b3f01d7861ce2f7528fb04aec9515dba89e1 | refs/heads/master | 2022-12-09T14:20:18.639361 | 2020-09-19T17:29:44 | 2020-09-19T17:29:44 | 296,447,300 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 696 | java | package com.intercorp.clientmanager.utils;
import java.util.Collection;
public class StatisticsHelperMethods {
public static double calculateAverage(Collection<Integer> numbers) {
return numbers
.stream()
.mapToInt(Integer::intValue)
.average()
... | [
"mmezi"
] | mmezi |
6c04150bf985dfb3bff5beb07e3c89ae5c35bbc0 | 75474a4d0a5351b0836b21648c51baaa10d437b7 | /src/test/Scalability/section1/JGFCreateBench.java | 58a80c077cdcf5abf8eb845c0c9051e1993d2a08 | [] | no_license | suncongxd/jMoped-Flow | 71fe1a9237e7a2dc995562a40a6b3af9fefc8794 | 520e9e48275718ac03404c50be0f6998747c86a2 | refs/heads/main | 2023-03-04T06:55:42.722403 | 2021-02-09T16:45:00 | 2021-02-09T16:45:00 | 337,446,495 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 20,481 | java | /**************************************************************************
* *
* Java Grande Forum Benchmark Suite - Version 2.0 *
* *
* ... | [
"suncong@xidian.edu.cn"
] | suncong@xidian.edu.cn |
f44d01af6e2f77cbf7ba52c79e5de38205a332ae | facf0aa790dafe79a78d2949e4e781f690e3844a | /xwiki-platform-search-solrj/src/main/java/org/xwiki/platform/search/internal/SolrjIndexerProcessor.java | eab92a55ae58aae7901c189b7e584767dd572671 | [] | no_license | savis/xwiki-platform-solr | 43f425bdd3aa4c0c750429764836a93a83c4acc4 | 358651836675287e9dfdf52c4c8370e810640af1 | refs/heads/master | 2021-01-18T09:10:29.559727 | 2012-06-10T09:05:58 | 2012-06-10T09:05:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,682 | java | /*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* th... | [
"savitha.s131@gmail.com"
] | savitha.s131@gmail.com |
795d44636e1523bef14e6cab715310d27b34e8a3 | ac5016ff95e2de208ed45aa383e892e59433a549 | /app/src/main/java/com/mk/gifpper/service/entities/TrendingResponse.java | 83e1174bf3052e8bb6027d3b005285626e365a37 | [
"Apache-2.0"
] | permissive | mikekudzin/Gifpper | 2476b6c1d1e72b6c1f54fecdf42974f354b7e801 | cf593ff8442371a3a8bd4341d4f846b72094eb60 | refs/heads/master | 2020-12-25T15:09:08.626441 | 2016-06-23T23:31:27 | 2016-06-23T23:31:27 | 61,842,523 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,135 | java |
package com.mk.gifpper.service.entities;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import java.... | [
"MikeKudzin@iba.by"
] | MikeKudzin@iba.by |
12eeb66f87a49f3f75cc507ba9425e1eeca90598 | 83fd5126925a245322d350188a04eec58699562e | /PlayingCat/src/PlayingCat.java | 3025ffaa20a3e1e911e5fcef5f8d19657875a9e8 | [] | no_license | PraveenSelvamTCE/Java | 9e25da2d6b1cdda59c82fc844a3feccea7b9d2be | 36022a6a5851a9fb36214ca338cf142a3c0c98a8 | refs/heads/master | 2023-01-03T20:48:27.201251 | 2020-10-31T17:58:54 | 2020-10-31T17:58:54 | 268,713,434 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 350 | java | public class PlayingCat {
public static boolean isCatPlaying(boolean summer, int temperature){
if (summer && temperature >= 25 && temperature <= 45){
return true;
}
else if (!summer && temperature >= 25 && temperature <= 35){
return true;
}
else
... | [
"47314027+PraveenSelvamTCE@users.noreply.github.com"
] | 47314027+PraveenSelvamTCE@users.noreply.github.com |
d6c9b1ebd10d7d31c8badefdcad1986a222dfc10 | 421cad1aa1f9cf055e817fc0199465e8e0189bcb | /src/main/java/com/jay/statements/security/PersistentTokenRememberMeServices.java | 2fd281b58d943834749cc802a59913cc0502f8f6 | [] | no_license | JayRaparla/jhipster | db77bdd13912cf02743219c60c653edee75395f8 | 4e50eaae23a8a218ad95653f4dfe2242e988b5e9 | refs/heads/master | 2021-01-17T17:09:53.310260 | 2017-04-21T01:25:30 | 2017-04-21T01:25:30 | 60,309,654 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,312 | java | package com.jay.statements.security;
import com.jay.statements.domain.PersistentToken;
import com.jay.statements.repository.PersistentTokenRepository;
import com.jay.statements.repository.UserRepository;
import com.jay.statements.service.util.RandomUtil;
import io.github.jhipster.config.JHipsterProperties;
import or... | [
"dhananjay.raparla@gmail.com"
] | dhananjay.raparla@gmail.com |
055e3b330dd3654bc36cff8798db85e716eee1d0 | 04ab2018a461a74ebcd748c26e7eac87642b3c4a | /exa-web-api/src/main/java/com/skm/exa/webapi/conf/SwaggerConfiguration.java | 2f57b0ce905b22b767cdd1b2abba0ee168a90240 | [] | no_license | Chen-Hao-190228254/demo1 | bd5a8a12e6865f79424dfc58482a838bdaf57271 | 967d64821b1b3b6b0bcada48743460a74dd3ade7 | refs/heads/master | 2020-06-21T04:17:46.079743 | 2019-06-28T09:20:18 | 2019-06-28T09:20:18 | 197,341,977 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,661 | java | package com.skm.exa.webapi.conf;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors... | [
"351531626@qq.com"
] | 351531626@qq.com |
a5dbfed1f7a55a22406f09d18bf8b5b6d185bf44 | 07abf0515a20e1f30598a7a9556f47fb0e85ac82 | /src/test/java/command/TaskListTest.java | 477d16434fea9b276879ddeeeb7d574a872756aa | [] | no_license | IrvingHe000/ip | 6f4086294882b2a529975e8a5c37cefe16302327 | e1daf17a7593aa8dbcda53fd2e7b2bf5f2531d9f | refs/heads/master | 2023-07-28T01:12:57.258714 | 2021-09-14T11:05:10 | 2021-09-14T11:05:10 | 397,495,288 | 0 | 0 | null | 2021-09-07T12:10:29 | 2021-08-18T06:22:44 | Java | UTF-8 | Java | false | false | 1,848 | java | package command;
import duke.command.TaskList;
import duke.exception.DuplicateException;
import duke.task.Task;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class TaskListTest {
private static TaskList testingList = new TaskList();
private static Task... | [
"heoutong@gmail.com"
] | heoutong@gmail.com |
7353c6e36edd07fc643ed28246e1e547f2c39453 | cdbd53ceb24f1643b5957fa99d78b8f4efef455a | /vertx-semper/aeon-eternal/aeon-inlet/src/main/java/io/vertx/tp/ipc/eon/UpStatus.java | ec96f1c8ef0fba9d690ca049a4cca24b66799d39 | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | chundcm/vertx-zero | f3dcb692ae6b9cc4ced52386cab01e5896e69d80 | d2a2d096426c30d90be13b162403d66c8e72cc9a | refs/heads/master | 2023-04-27T18:41:47.489584 | 2023-04-23T01:53:40 | 2023-04-23T01:53:40 | 244,054,093 | 0 | 0 | Apache-2.0 | 2020-02-29T23:00:59 | 2020-02-29T23:00:58 | null | UTF-8 | Java | false | true | 4,849 | java | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: zero.status.proto
package io.vertx.tp.ipc.eon;
public final class UpStatus {
private UpStatus() {
}
public static void registerAllExtensions(
com.google.protobuf.ExtensionRegistryLite registry) {
}
public static void ... | [
"silentbalanceyh@126.com"
] | silentbalanceyh@126.com |
6f4290983551b1a0d9d23a824439731c3e1addff | c1d1352f866bcf5dba4455959c7a4212baf101cf | /src/MiscTools/MiscTools.java | d146f0181670d022999b9d23b0fd60ae049b7ed6 | [] | no_license | Bmaxfi1/AppointmentScheduler | cc2aaa99e063c92ea5da869d4b1ce50e1676d7e6 | 7450e8dea92c1f049fee06ffa00d825af0a776c1 | refs/heads/master | 2023-05-28T19:02:20.376849 | 2021-06-09T22:38:34 | 2021-06-09T22:38:34 | 353,494,952 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,093 | java | package MiscTools;
import Model.Appointment;
import Model.AppointmentList;
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Path;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.time.ZoneId;
import java.time.ZonedDateTime;
import static java.nio.file.StandardOpenOption.APPEN... | [
"brandon.maxfield@gmail.com"
] | brandon.maxfield@gmail.com |
9170599062f2db18e224614813b9a8030428940a | e315c2bb2ea17cd8388a39aa0587e47cb417af0a | /src/tn/com/smartsoft/framework/presentation/view/report/ReportModel.java | 9e119c16abdb5d439631502ca3bd6172b34935dc | [] | no_license | wissem007/badges | 000536a40e34e20592fe6e4cb2684d93604c44c9 | 2064bd07b52141cf3cff0892e628cc62b4f94fdc | refs/heads/master | 2020-12-26T14:06:11.693609 | 2020-01-31T23:40:07 | 2020-01-31T23:40:07 | 237,530,008 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,250 | java | package tn.com.smartsoft.framework.presentation.view.report;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
public class ReportModel implements Serializable {
/**
*
*/
private static final long serialVersionUID =... | [
"alouiwiss@gmail.com"
] | alouiwiss@gmail.com |
7117f12c2aa9ee89268ebf421bbbf602526aaf85 | f5e9e002f61894a0f71ddde97afbca6d157bd7b9 | /app/src/main/java/com/bq2015/rxjavalambda/MainActivity.java | 0d494f7ed92bba5b1f64baf2dd81dc7bf8aea6c0 | [] | no_license | bq2015/RxJava-lambda | a0bf711f7337e214316ae0f0fa12d021a6f1abb7 | 2a4db024143a5037d79d0f5a4d8b5a274b944da5 | refs/heads/master | 2020-06-15T16:50:24.702987 | 2016-12-01T09:57:26 | 2016-12-01T09:57:26 | 75,269,079 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,204 | java | package com.bq2015.rxjavalambda;
import android.os.Bundle;
import android.os.Handler;
import android.os.SystemClock;
import android.support.v7.app.AppCompatActivity;
import android.widget.Button;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
private Handler mHandler;
priv... | [
"kylinff@qq.com"
] | kylinff@qq.com |
933a1f95e287070f5843cd8ea697e70584e09c4e | c3064d9af8afb3c132c069ca7a60c9a1d567298d | /src/day18_conditions_practice_strings_intro/IfWithoutCurlyBraces.java | 4f798ca0cfdec3b860d0d7c9a63b4209687af720 | [] | no_license | mustafa0770/java-programming | 8e40f6fda45a355a3ad96c81e059a19f52924fa4 | d6cd460e5cd214791383c395104d1b6a4b530b9f | refs/heads/master | 2023-06-16T17:00:37.609700 | 2021-06-09T06:52:16 | 2021-06-09T06:52:16 | 360,332,886 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 349 | java | package day18_conditions_practice_strings_intro;
public class IfWithoutCurlyBraces {
public static void main(String[] args) {
String todaysClass = "python";
if(todaysClass.equals("java"))
System.out.println("java is fun");
else
System.out.println("it is not java. It... | [
"mustafa310897@gmail.com"
] | mustafa310897@gmail.com |
ee118f354b8dd6570200a3f61c0b4ceb385b758b | 498de498aa9e8fa31f72a0985f9797246b6d762b | /Board.java | 2227fa8d3a8eb808622a284eaa86bc39e09c1d3a | [] | no_license | DhruvKrishnaswamy/Tablut_Game | 5e89abd8d8dcb08721ba4c5eb5b6858a270142a9 | b4fa73b09f00aafae3fc93fa5bb82088fd6b9b19 | refs/heads/master | 2020-09-13T14:19:50.869608 | 2019-11-20T00:16:21 | 2019-11-20T00:16:21 | 222,814,472 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 19,817 | java | package tablut;
import java.util.ArrayList;
import java.util.Stack;
import java.util.HashSet;
import java.util.List;
import java.util.Formatter;
import static tablut.Piece.*;
import static tablut.Square.*;
import static tablut.Move.mv;
/**
* The state of a Tablut Game.
*
* @author Dhruv Krishnaswamy
*/
class ... | [
"noreply@github.com"
] | noreply@github.com |
7a0ed339a0868d1f065f36e8ccb77c81e79ec840 | 3a6637d0a51b8ae3f75498de9182097e428f72a0 | /workspace_java/4370 Program 2/src/program2/FileList.java | 5599dd30bc478179644189427f237c1a652638e6 | [] | no_license | maizaAvaro/side_pieces | aa37e4213c6eddf3bed3fcc10905c2190abd9809 | 3df7bb99b59bd26f7661048611de13e8c8f4de24 | refs/heads/master | 2016-09-01T18:22:41.598019 | 2014-08-25T21:05:39 | 2014-08-25T21:05:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,232 | java | package program2;
/*******************************************************************************
* @file FileList.java
*/
import java.io.*;
import static java.lang.System.out;
import java.util.*;
/*******************************************************************************
* This class allows dat... | [
"ntray1@gmail.com"
] | ntray1@gmail.com |
b709aaffbbfe683e76f6f29093f548b0b99658ca | a49038245f0658cc78065c53ad87495ae81885fc | /src/main/java/JPosServer.java | aa5f2d176977deee621a29786bdd14bdf5e826af | [] | no_license | puguhTri/server-jpos | 312e6b0522e6cf961f695124e235cd8d7ac3d699 | 7d07e01faf60070547fbfba380ff08e7297e1632 | refs/heads/main | 2023-08-07T15:08:28.143051 | 2021-09-19T07:55:19 | 2021-09-19T07:55:19 | 408,065,979 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 374 | java | import org.jpos.iso.ISOException;
import org.jpos.q2.Q2;
public class JPosServer {
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws ISOException {
System.out.println("Server Start");
Q2 aplikasiJpos = new Q2();
aplikasiJpos.start(... | [
"puguh@powercommerce.asia"
] | puguh@powercommerce.asia |
1e58460b62045334d2701675f05751c5d438923e | cad9062037e02780811e4ba1f9754376f11a0565 | /NoSpeakableText/GalleryApp/app/src/test/java/com/maronean/andy/galleryapp/ExampleUnitTest.java | 1dc2e4ce9a3704840ae99a3743c7679797d3725b | [] | no_license | maronean/Accessibility-Test-Oracle | a4e071bf8dc6c4888f42deadf10e882c998c1942 | 8dc228b9c8f67d8da3844e39ebbc5cecf3eabb42 | refs/heads/master | 2021-01-15T22:10:13.458138 | 2017-08-10T06:30:24 | 2017-08-10T06:30:24 | 99,888,636 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 406 | java | package com.maronean.andy.galleryapp;
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
publi... | [
"Andy@Andrews-MacBook-Pro.local"
] | Andy@Andrews-MacBook-Pro.local |
023e962bf100417494e4747b9ae68d2de0b592c8 | c6dc3346f5bc2e63b18d1491b3be4f9ccebe3209 | /src/main/java/com/hotelserver/model/booking/ErrorsType.java | 59a93c7afeb4b125363aa00f492b19f87fa40c76 | [] | no_license | codingBitsKolkata/hotel-server | bd3293172fa5c796454d59f23b333b698765adcc | 97e5c1c3229eef72992cdbd01436f93158ba3103 | refs/heads/master | 2020-04-13T14:16:18.712379 | 2019-03-27T06:40:00 | 2019-03-27T06:40:00 | 163,256,941 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,194 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.03.13 at 11:52:... | [
"avirup.pal@gmail.com"
] | avirup.pal@gmail.com |
5410ac7148591d250118016dbf1bd8e06e7b2c48 | 7ffbbcd59fe2f97214dce9e8d7d955dfdd066966 | /noark-network/src/main/java/xyz/noark/network/init/PolicyFileHandler.java | a5589022fcac89ae5b0df661122b92d8eba8622b | [
"LicenseRef-scancode-mulanpsl-1.0-en",
"LicenseRef-scancode-unknown-license-reference",
"MulanPSL-1.0"
] | permissive | stephenlam520/noark3 | fcfda6c692c7d76bc70a1870dbfb0c8f9e71ff39 | ac73971f8535ed44246b0a6536618de135a4a493 | refs/heads/master | 2023-01-07T02:03:33.391288 | 2020-11-10T06:00:52 | 2020-11-10T06:00:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,800 | java | /*
* Copyright © 2018 www.noark.xyz All Rights Reserved.
*
* 感谢您选择Noark框架,希望我们的努力能为您提供一个简单、易用、稳定的服务器端框架 !
* 除非符合Noark许可协议,否则不得使用该文件,您可以下载许可协议文件:
*
* http://www.noark.xyz/LICENSE
*
* 1.未经许可,任何公司及个人不得以任何方式或理由对本框架进行修改、使用和传播;
* 2.禁止在本项目或任何子项目的基础上发展任何派生版本、修改版本或第三方版本;
* 3.无论你对源代码做出任何修改和改进,版权都归Noark... | [
"176543888@qq.com"
] | 176543888@qq.com |
72e9a2e7ef49bc06016c2de46f17c90d5840d66e | 5162b4bee533f04856fcaf2ef6669e189184d547 | /realm-browser/src/main/java/de/jonasrottmann/realmbrowser/models/model/ModelPojo.java | f94f36e900efb27ea82ae413f674ec221f45d876 | [
"MIT"
] | permissive | jonasrottmann/realm-browser | c22f96e65ad1e3cc7b85ab557997b930c314dfd7 | 1b39fc356c6f957c730e33e6edd8b357e471daa3 | refs/heads/release | 2020-04-12T02:26:19.033328 | 2017-06-06T10:43:13 | 2017-06-06T10:43:13 | 52,554,746 | 116 | 17 | null | 2017-06-30T14:35:53 | 2016-02-25T20:32:00 | Java | UTF-8 | Java | false | false | 607 | java | package de.jonasrottmann.realmbrowser.models.model;
import android.support.annotation.RestrictTo;
import io.realm.RealmModel;
@RestrictTo(RestrictTo.Scope.LIBRARY_GROUP)
public class ModelPojo {
final Class<? extends RealmModel> klass;
long count;
public ModelPojo(Class<? extends RealmModel> klass, long... | [
"jonasrottmann@gmail.com"
] | jonasrottmann@gmail.com |
e79f9951dc2042cec377a2998c97724811c8aefd | 752209e0f5db4a8823e899e84a87bb8f5fc06184 | /src/DSA/DP/Try_1/scs.java | 1d4aea0932818676bb65b6a451092c628d0f951f | [] | no_license | anubhav1006/Programming | d6f4161771444255753a2d32f7b91ec6f876daa7 | 8fe60df525253da1720d548c3803b254bacdc536 | refs/heads/master | 2021-07-05T20:46:10.339479 | 2020-11-06T04:12:24 | 2020-11-06T04:12:24 | 198,764,807 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,581 | java | package DSA.DP.Try_1;
import java.util.Map;
//Shortest Common Supersequence
public class scs {
public static void main(String[] args) {
String a = "algorithm";
String b = "rhythm";
char[] arr1 = a.toCharArray();
char[] arr2 = b.toCharArray();
System.out.println(scs_print(... | [
"aj1006.aj@gmail.com"
] | aj1006.aj@gmail.com |
e6ecc8c45eba09e777da2c6613ec8a4c8f252aca | 10cef5bf6d1c3391d9bce5dda082794e8033f115 | /src/main/java/com/example/geocoder/config/FeignConfiguration.java | 55e19c3c0fba9b83e4bb06bce1c466cf1b3a0f63 | [] | no_license | ArtemAlt/Geocoder | e586f7fd67734b57464e006f32ef22f7d09691bf | 55e8408fafc0b3a8b9b8f2bbe76bdb80f9d608b6 | refs/heads/master | 2023-08-07T03:28:48.995584 | 2021-09-23T12:15:53 | 2021-09-23T12:15:53 | 409,575,728 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 515 | java | package com.example.geocoder.config;
import com.example.geocoder.exceptions.CustomErrorDecoder;
import feign.codec.ErrorDecoder;
import feign.okhttp.OkHttpClient;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class FeignConfigura... | [
"artem.altunin.vit@gmail.com"
] | artem.altunin.vit@gmail.com |
23ace8dba0d82228471cb4a4ab32fd92b09d3437 | b1bd1a82596e1baeee23f60866afb400cd45310e | /Saim_Act2/src/fact_metodo/MetodoDevolucion.java | 43684b6622c6e0f86a06dea4b8cc685c5a1b0173 | [] | no_license | yulibeth/pruebaS | 68b9b67f819a0a4f688da559de29366e728d8f94 | 8ad5f2c7658a6be4598a6cce46758c932f12ceb9 | refs/heads/master | 2021-01-09T21:48:04.802054 | 2015-05-21T21:34:22 | 2015-05-21T21:34:22 | 36,033,863 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 28,331 | java | package fact_metodo;
import java.sql.Date;
import java.sql.PreparedStatement;
import java.sql.Statement;
import java.sql.Time;
import adm_logica.Conexion;
public class MetodoDevolucion {
public java.sql.ResultSet reportedev(String cons){
/**
*/
java.sql.ResultSet rs=null;
... | [
"yulibeth9@gmail.com"
] | yulibeth9@gmail.com |
d0c730ea85a4ba175617acca3ea07643fad13cf6 | e27cdf2cd0b886f998d0afed5c194b9cbfb3be88 | /src/main/java/cn/ncepu/mydeveloping/mapper/FileMapper.java | b07028c19cd4d148cd0e9c625a8118cba281fa56 | [] | no_license | 944814039yangguodong/MyDeveloping | d716b89e4269c89544b3d342f10d82f2aa821ec4 | 355ef57295d29be90f340a6b3fda460981289c40 | refs/heads/master | 2023-09-04T10:15:33.909450 | 2021-11-20T03:25:03 | 2021-11-20T03:25:03 | 384,506,937 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 285 | java | package cn.ncepu.mydeveloping.mapper;
import cn.ncepu.mydeveloping.pojo.entity.File;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
/**
* <p>
* Mapper 接口
* </p>
*
* @author Guodong
* @since 2021-11-13
*/
public interface FileMapper extends BaseMapper<File> {
}
| [
"944814039@qq.com"
] | 944814039@qq.com |
dcdaada1bdab49f31d8338649a55fd90f2f59e87 | 217479a23be5f98b5498f6bb0d0d22eef22bb8e9 | /codeLabsRooms/app/src/main/java/com/example/dchikhaoui/codelabsrooms/repository/WordDao.java | 711fe1fea80f856abd8ab34dd5547edd3daea555 | [] | no_license | dhouha90/codeLabsROOM | 88a0b3d84d1aad1ca83f48ee4c4685cc4061b93f | 4af056bd43311ea49b9878e325327cfec76a64a2 | refs/heads/master | 2020-03-22T11:22:33.036897 | 2018-07-06T12:40:45 | 2018-07-06T12:40:45 | 139,967,083 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,396 | java | package com.example.dchikhaoui.codelabsrooms.repository;
import android.arch.lifecycle.LiveData;
import android.arch.persistence.room.Dao;
import android.arch.persistence.room.Insert;
import android.arch.persistence.room.Query;
import com.example.dchikhaoui.codelabsrooms.Model.Word;
import java.util.List;
@Dao
publ... | [
"dchikhaoui@alliance.net"
] | dchikhaoui@alliance.net |
89a3a49e8f890bbb596021d0fe706c3d93bbb195 | fa07b97616b06bfbd1c81e5638ae61812331f6d0 | /qpid/java/systests/src/main/java/org/apache/qpid/systest/rest/ConnectionRestTest.java | 05c8e362a189b6ea52ddc88d338fb14f144d49ca | [
"Python-2.0"
] | permissive | ncdc/Qpid-1 | b386f3077d02471d5548488dc7ae713704e6ecf6 | a665bdb1c72db4fa3817db908bb7658434ae23f3 | refs/heads/master | 2020-04-12T19:41:41.440626 | 2013-02-20T15:36:02 | 2013-03-11T14:19:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,732 | 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"); y... | [
"robbie@apache.org"
] | robbie@apache.org |
8b56d3d4b34540ae9a203ee69f536202f5f86c40 | 6c6983979a4df0265d5eb6953db390ccd646de8c | /src/main/java/com/epam/App.java | 3a2cb9c98394950d6245ca2242c80651f5c5934d | [] | no_license | preetigoel10/PreetiGoel_1710991594_JUnit | 687c003ff6e3854222eb1e0da8f3a9ca92d03e4f | 868d805e05f14b950f9a9f04369450ca0ace5c4b | refs/heads/master | 2022-12-26T19:54:37.979795 | 2020-06-26T13:22:31 | 2020-06-26T13:22:31 | 275,149,547 | 0 | 0 | null | 2020-10-13T23:06:17 | 2020-06-26T12:21:36 | Java | UTF-8 | Java | false | false | 406 | java | package com.epam;
import java.util.Scanner;
public class App
{
public static void main( String[] args )
{
StringOperation stringOperation = new StringOperation();
System.out.println("Please enter a string");
Scanner sc = new Scanner(System.in);
String string = sc.next();
... | [
"preeti.goel10@gmail.com"
] | preeti.goel10@gmail.com |
044b4e585557496f8cd6a092710d0f3ca3f93f00 | f09e549c92dfebe1fb467575916ed56e6a6e327e | /snap/src/main/java/org/snapscript/tree/define/EnumInstance.java | 2196f95be6b28b4d771ecb6e95cff70df941f288 | [] | no_license | karino2/FileScripting | 10e2ff7f5d688a7a107d01f1b36936c00bc4d6ad | 4790830a22c2effacaaff6b109ced57cb6a5a230 | refs/heads/master | 2021-04-27T19:28:23.138720 | 2018-05-04T11:09:18 | 2018-05-04T11:09:18 | 122,357,523 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,871 | java | package org.snapscript.tree.define;
import static org.snapscript.core.Reserved.ENUM_VALUES;
import java.util.List;
import org.snapscript.core.Context;
import org.snapscript.core.InternalStateException;
import org.snapscript.core.convert.proxy.ProxyWrapper;
import org.snapscript.core.function.resolve.FunctionCall;
im... | [
"hogeika2@gmailcom"
] | hogeika2@gmailcom |
00e06f00a0fa3d0c6252083a29a3867dcd1c1f28 | 1c2f519a3b3dd87e269752261c2d9387552905ca | /app/src/main/java/com/kaku/colorfulnews/mvp/interactor/impl/NewsInteractorImpl.java | a0be0aea8396e896b76d9fae143e065a0eed3890 | [
"Apache-2.0"
] | permissive | luis-wang/ColorfulNews | d19d4385cbfc7c2a7f0d6023c835f0efa79ee7be | ee67a675e1e6c5b1c1fec8ac12196815aa8d73bc | refs/heads/master | 2021-01-22T00:59:06.859846 | 2016-08-20T07:24:58 | 2016-08-20T07:24:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,643 | java | /*
* Copyright (c) 2016 咖枯 <kaku201313@163.com | 3772304@qq.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 require... | [
"kaku201313@163.com"
] | kaku201313@163.com |
d0a9a107ea8b0c758f9bd7d13df237eb75312660 | fe30be3159f587b89c531b4dd23f52e3fb9e38a0 | /DataStructures & Algorithm/lecture1/Demo1.java | afca23abe59454dc9782ac8342dd3a15701c67f3 | [] | no_license | aka2029/JavaComplete | f556b86279383cb47d0fba22304f26561f7f4c1e | a2b04dafc9467fd2fbf2c72f80645cbbc0824a64 | refs/heads/master | 2023-01-03T17:25:55.450500 | 2020-11-03T08:34:22 | 2020-11-03T08:34:22 | 240,646,934 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 827 | java | // An Erudite Professor - Pg:3
package lecture1;
import java.util.HashMap;
public class Demo1 {
public static void main(String[] args) {
/*
* Approach-1
*
* int arr [] = {1, 2, 3, 4, 7, 55, 1000, 444}; for(int i = 0; i< arr.length-1;
* i++) { for(int j = i + 1; j<arr.length; j++) { if(arr[i] == arr[j... | [
"asaks22@gmail.com"
] | asaks22@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.