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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e1ba83bbab24dfbf84c5a9844690f4597c934b14 | 18c2c56640b3125dc6f18975fecf83eb5888fec0 | /src/test/java/com/example/TestArithmetic/collection/skipList/SkipListNode.java | 19616b6f373234946a8a7bcabc4c095d0596fca5 | [] | no_license | zhuxiaoqing-com/AQS | 8111b0c4d29282a5b4c030210410d37fa9869101 | ad8715c83a863ca615d26c6d52a3243477fd6e18 | refs/heads/develop | 2022-10-30T10:05:46.009213 | 2021-03-16T13:02:52 | 2021-03-16T13:02:52 | 148,271,523 | 2 | 1 | null | 2022-10-04T23:55:35 | 2018-09-11T06:34:32 | Java | UTF-8 | Java | false | false | 1,658 | java | package com.example.TestArithmetic.collection.skipList;
public class SkipListNode<T> {
public int key;
public T value;
public SkipListNode<T> down, right;// 上下左右四个指针
public SkipListNode(int key, SkipListNode<T> down) {
this.key = key;
this.down = down;
}
public SkipListNode(in... | [
"594012917@qq.com"
] | 594012917@qq.com |
3f5b8dd0e46d76e55f1678896cb710870b826877 | ff9928e127574b4b764b64f99fc9b09013c9e2c0 | /ibator-core/src/main/java/org/apache/ibatis/ibator/generator/ibatis2/model/BaseRecordGenerator.java | 438ea8c035fe8737c2837222bd6386f7338c7782 | [
"Apache-2.0"
] | permissive | ivaneye/IntellijWeb | be6c2558bf8a76d42b60dd86f8b74a8b8af738c2 | 40c1c7a24dc9fa6a6db5f51a3edb5015a0086221 | refs/heads/master | 2020-04-09T11:55:07.316234 | 2012-06-19T14:50:21 | 2012-06-19T14:50:21 | 4,605,677 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 5,517 | java | /*
* Copyright 2008 The Apache Software Foundation
*
* 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 app... | [
"ivan.pig@foxmail.com"
] | ivan.pig@foxmail.com |
05b07546c26f2c371497c7fbc5d41f7ab0c4a073 | 3d27e626a440f4aac439a28ac3e0c9790427822e | /src/main/java/br/com/udelblue/spring/boot/data/embedded/mongodb/domain/Thumbdrive.java | 318e50d447b18e9d181315d3dffc72f42293728e | [] | no_license | udelblue/embedded_mongodb | f679dc5e1972df3e6a6a76a4fb69f3878f8b1d80 | 048378c983247d5b6820d692a785f7e1c2be65ef | refs/heads/master | 2021-07-11T17:33:45.582845 | 2017-10-03T23:31:05 | 2017-10-03T23:31:05 | 105,713,805 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 350 | java | package br.com.udelblue.spring.boot.data.embedded.mongodb.domain;
public class Thumbdrive extends Product {
Integer gigabytes;
public Thumbdrive(Integer id, String company, String name, Integer gigabytes) {
super(id, company, name, Type.THUMBDRIVE);
this.gigabytes = gigabytes;
}
public Integer getGigabytes(... | [
"cdsommers@gmail.com"
] | cdsommers@gmail.com |
c62a486855264843f647afce3ae5d40643fdf6a0 | d092c182f763daf53fb5f5fb973e4fcaaf2fb3cc | /ble-common/src/main/java/no/nordicsemi/android/ble/common/profile/bp/BloodPressureMeasurementCallback.java | e810731f4cfa59e76434e68d9906dd98267173e1 | [
"BSD-3-Clause"
] | permissive | NethunterJack/Android-BLE-Common-Library | 7a6c487ca63a6eff1f03bb5d3eb28c56f8a42f09 | 68804b065c23d8d04155a80267d3146d1a70bfd8 | refs/heads/master | 2020-04-11T01:42:28.557487 | 2018-11-08T11:33:11 | 2018-11-08T11:33:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,398 | java | /*
* Copyright (c) 2018, Nordic Semiconductor
* 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. Redistributions of source code must retain the above copyright notice, this list of conditi... | [
"aleksander.nowakowski@nordicsemi.no"
] | aleksander.nowakowski@nordicsemi.no |
3455ca4f0259c9a9585d4b7acce945b050831596 | 8d1d8b98cb9a819e31b1cf01b3cf6b95561c867f | /androidclient/src/org/uab/android/eventreporter/lists/FGCExpandableList.java | 0c4950837c43af217c235c8c853cf793f66c863f | [
"MIT"
] | permissive | cristiantanas/Incidencies-2.0 | a7187015f722ba770f72e673fe9db99045830470 | 20ceea4ff1cd94bfc2d593d17c5d5d0c4f059a8d | refs/heads/master | 2021-08-07T19:56:13.542212 | 2017-11-08T21:49:23 | 2017-11-08T21:49:23 | 110,027,074 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,049 | java | package org.uab.android.eventreporter.lists;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.uab.android.eventreporter.R;
import org.uab.android.eventreporter.ReportSendActivity;
import org.uab.android.eventreporter.utils.Utils;
import android.app.AlertDi... | [
"c.tanas@gmail.com"
] | c.tanas@gmail.com |
b93c685e63d6e229b533fbb6980530ee15b7bb22 | c66257e39e77c2354167e5b99f57c414c1727bf5 | /src/task2/LocalitySortReducer.java | ac76081a8e2c81538426ee108c8becbe123b955d | [] | no_license | jiaxililearn/MapReduce_Movies | eb02c42a18b973493dbfc5585f56b0643702b318 | 3d31fa5f1a58a06b5a6c0925ab74a10e4fa64fb7 | refs/heads/master | 2021-06-09T04:16:05.015011 | 2017-01-04T00:01:11 | 2017-01-04T00:01:11 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,028 | java | package join;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.Map.Entry;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce... | [
"jili2506@pc-3e79-0.it.usyd.edu.au"
] | jili2506@pc-3e79-0.it.usyd.edu.au |
57383fa8eaec2b99fe78c902071e17c93d621e06 | e8a90e8ea77b132c53875f2034e25ac617adbbe6 | /passenger-trip/backend/src/main/java/edu/mum/ea/passenger/backend/entity/PassengerEntity.java | 18de9fbf55d507d517d2f7545f4f4701c2b64f9c | [] | no_license | lferasu/Carpool | 98447b0dacffb56429c16597880b08fa0a903d27 | dabb4406048b0cafc97d8cc5935cc28a60fc006e | refs/heads/master | 2023-01-20T11:48:04.437461 | 2019-11-22T02:46:31 | 2019-11-22T02:46:31 | 221,825,711 | 0 | 1 | null | 2023-01-07T11:57:03 | 2019-11-15T02:17:00 | Java | UTF-8 | Java | false | false | 208 | java | package edu.mum.ea.passenger.backend.entity;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data@NoArgsConstructor
public class PassengerEntity {
private String id;
private String name;
}
| [
"lferasu@yahoo.com"
] | lferasu@yahoo.com |
54aba4f79dcbff4cada9d3d3b99922c0dc14277d | e1355210f2c3882a85c8a01ede651d4a5bc2bac8 | /assignments/week-7-assignment-6/iRemember/src/edu/vuum/mocca/ui/CreateStoryActivity.java | cd0f0a1deacb9817a453e49af9fc75646cb133f5 | [] | no_license | kittiekorn/MoCCA-POSA | 75b98344823612cd7fd887ab15d2df6bf2756869 | 262ff7236be6b836c11cc9ddaeb1677372964754 | refs/heads/master | 2021-01-16T17:47:25.944075 | 2015-07-28T19:04:22 | 2015-07-28T19:04:22 | 28,104,022 | 3 | 2 | null | null | null | null | UTF-8 | Java | false | false | 14,782 | java | /*
The iRemember source code (henceforth referred to as "iRemember") is
copyrighted by Mike Walker, Adam Porter, Doug Schmidt, and Jules White
at Vanderbilt University and the University of Maryland, Copyright (c)
2014, all rights reserved. Since iRemember is open-source, freely
available software, you are free to use... | [
"kittiekorn@gmail.com"
] | kittiekorn@gmail.com |
356623afc4d46b2d718476ff2f6004cbda6521fa | 7faeb3ef9662fcd965d0cfcbd1b7d384a58d1eff | /messenger/src/main/java/com/felixlaura/messenger/resources/ProfileResource.java | a43438ddc783e1f5c0f064cc64dbe910adfc981a | [] | no_license | felixala/messenger | 51a9a1aa86f8c243d4dd76ab2bbe570b0ae17c98 | b6156b2812bebc435c684d387a05e43808459042 | refs/heads/master | 2021-01-10T11:28:48.882891 | 2015-11-30T06:26:15 | 2015-11-30T06:26:15 | 46,945,978 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,587 | java | package com.felixlaura.messenger.resources;
import java.util.List;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import ... | [
"felixgato8@gmail.com"
] | felixgato8@gmail.com |
317ea09da25e60a7a82b7095b2bf208361ab5857 | fb41c04a4ead3b79625d0eb30ca85f0fd1c2d4c9 | /main/boofcv-sfm/src/main/java/boofcv/alg/sfm/overhead/SelectOverheadParameters.java | 55f1b57f927177d4f896b69b90c455879a2f6800 | [
"Apache-2.0",
"LicenseRef-scancode-takuya-ooura"
] | permissive | thhart/BoofCV | 899dcf1b4302bb9464520c36a9e54c6fe35969c7 | 43f25488673dc27590544330323c676f61c1a17a | refs/heads/SNAPSHOT | 2023-08-18T10:19:50.269999 | 2023-07-15T23:13:25 | 2023-07-15T23:13:25 | 90,468,259 | 0 | 0 | Apache-2.0 | 2018-10-26T08:47:44 | 2017-05-06T14:24:01 | Java | UTF-8 | Java | false | false | 5,071 | java | /*
* Copyright (c) 2021, Peter Abeles. All Rights Reserved.
*
* This file is part of BoofCV (http://boofcv.org).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apac... | [
"peter.abeles@gmail.com"
] | peter.abeles@gmail.com |
1acbf2425d9639da5756954b9d2c16db026a40d5 | ed519a9c80723b446cb3918574dcf0a24e5afb10 | /src/topic/Inheritance/square.java | 8146c9890308965183001e16ef78b247493c2cd7 | [] | no_license | nddhieu/JavaDemo | 6e905f632d4bd963cba552ba1a10ae62b9551924 | c627e1cd71fe4050e4835dc04bb0c74e7caff08c | refs/heads/master | 2020-04-09T16:19:11.277410 | 2018-12-21T08:50:27 | 2018-12-21T08:50:27 | 160,450,467 | 0 | 0 | null | 2018-12-21T05:58:09 | 2018-12-05T02:46:58 | Java | UTF-8 | Java | false | false | 201 | java | package topic.Inheritance;
public class square extends shape{
void draw(){
System.out.println("draw square");
}
void erase(){
System.out.println(("erase square"));
}
}
| [
"nddhieu@gmail.com"
] | nddhieu@gmail.com |
9b8f08de2d4b83aa69820ac3d7fd99cc9ba14e5a | 75962c018572404bba808afba3ff56a748436d4c | /Programming/Java/sem4/Lab6_1/src/bsu/fpmi/artsiushkevich/Main.java | d954213b74df4c91907ed3e9a9a93ad2cb6d50a6 | [] | no_license | thekirjava/BSU | 0f313df3ff9dda3df37efeeee813fbfd466a977e | 33d56c9adc9b6873f2bb360c0d7089dc458eb451 | refs/heads/master | 2021-11-20T14:07:55.287509 | 2021-10-17T19:37:07 | 2021-10-17T19:37:07 | 220,980,538 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 211 | java | package bsu.fpmi.artsiushkevich;
import javax.swing.*;
public class Main {
public static void main(String[] args) {
MainWindow window = new MainWindow();
window.setVisible(true);
}
}
| [
"thekirjava@yandex.by"
] | thekirjava@yandex.by |
67d66d6ac105bf3b2923b157ded1f537ee8e33c5 | 3e01d3a01b61a0b0c80d71964abf546a92be10eb | /src/main/java/com/atos/coderank/services/ProjectMetricsService.java | cdedf70469c3f62bb1db359233f93c97fd04b4c5 | [] | no_license | 0fprod/coderank | 5c61a3ef0dbaf10ffc071ff86d6f694580ba71e5 | 1fc2dca60206aaef254d8c384f6d94b8d4db712c | refs/heads/master | 2023-06-07T15:45:11.560280 | 2018-04-23T15:17:35 | 2018-04-23T15:17:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,505 | java | package com.atos.coderank.services;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Service;
import com.atos.coderank.components.SonarUtils;
import com.atos.coderank.ent... | [
"A679647@MC0X97WC.ww930.my-it-solutions.net"
] | A679647@MC0X97WC.ww930.my-it-solutions.net |
a3eed9e126ae85b56ad7772d244931b00b3379ae | 3a2878d17af4fbd8e3c1304e1e20a3101833fc18 | /src/org/nova/game/player/content/dungeoneering/DungeonPartyManager.java | 224ae61d1f99dc86afceac1098bd42eaa45fcca7 | [] | no_license | karimshan/nova-server | 452f2cdc1bd87c560d3e1ff7422e211cd12f976c | 861f9daa812372d74cfe7f45fceb8cab2853b4ca | refs/heads/master | 2021-05-14T17:40:34.624397 | 2018-01-02T21:06:29 | 2018-01-02T21:06:29 | 116,051,463 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,697 | java | package org.nova.game.player.content.dungeoneering;
import java.util.concurrent.CopyOnWriteArrayList;
import org.nova.game.player.Player;
import org.nova.game.player.Skills;
public final class DungeonPartyManager {
private String leader;
private int floor;
private int complexity;
private CopyOnWr... | [
"karim@192.168.1.236"
] | karim@192.168.1.236 |
de9be81d5667a8f4ac8c3dd5d48d381927662124 | 1b17119f1ae56824623296f2bf5ed2c48f7fcf1c | /NonVeggies/src/main/java/com/nonveggies/entity/NvHookModuleExceptions.java | df6170691c33b40ea2c7d5a0364123791395b65f | [] | no_license | gauravsaxena1611/Non-Veggies | b03eed2d7ad535fb29c361075b0985231bee95d2 | efc480fa581fcad0707e2f7f3a8047a41dbf4a9d | refs/heads/master | 2020-03-18T17:30:59.909485 | 2018-05-27T09:55:38 | 2018-05-27T09:55:38 | 135,033,099 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,055 | java | package com.nonveggies.entity;
// Generated Jan 2, 2016 7:30:29 AM by Hibernate Tools 3.4.0.CR1
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import static javax.persistence.GenerationType.IDENTITY;
import javax.persistence.Id;
import javax.persistence.Tabl... | [
"gauravsaxena1611@gmail.com"
] | gauravsaxena1611@gmail.com |
7b7a9937268d6b1400916996256fa1011286a77b | 56cd9bd526dff65d16e0b7bb0904f072b854c901 | /GameArena/src/main/java/me/dnorris/data/Method.java | 79d94db9ba9ba287307103100b15c89a8b589a09 | [] | no_license | danorris709/JavaPool | 04484211cd7a76a3f7fae8f4be8fb8cb4aa6f5e5 | e2adcf5f707d149aee5734dc77c89d84a3fc1622 | refs/heads/master | 2022-06-23T05:54:05.498791 | 2020-05-14T16:28:42 | 2020-05-14T16:28:42 | 257,666,852 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 525 | java | package me.dnorris.data;
/**
*
* Interface used for representation a function that takes one parameter but
* doesn't return anything.
*
* @param <T> The type of the parameter for the function
* @author https://github.com/danorris709
*/
public interface Method<T> {
/**
*
* Similar naming to {@link... | [
"33832062+danorris709@users.noreply.github.com"
] | 33832062+danorris709@users.noreply.github.com |
7b766326e1e52df10acdd0d96e5224d469822e7b | 3bf6bab0051bebdfef770af7c9f845335a83c97b | /src/main/java/com/fuber/entities/Location.java | 0fae04c00b4811d82e7d7ee9c927098983f1b704 | [] | no_license | Jaskaranjit/fuber-app | df8094ca21232164873346f946297003ee3164d8 | 301c74d190f9b554062a09dc3580b8d4183dce66 | refs/heads/master | 2021-05-06T21:12:59.757713 | 2017-12-01T09:52:38 | 2017-12-01T09:52:38 | 112,571,070 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,042 | java | package com.fuber.entities;
/**
* POJO class for location parameters
* Created by Jaskaranjit on 11/30/17.
*/
public class Location
{
private double latitude;
private double longitude;
/**
* default constructor
*/
public Location()
{
// do nothing
}
/**
* Init... | [
"jaskaranjit@infrrd.ai"
] | jaskaranjit@infrrd.ai |
8dbd8535c17a43c8f4df7cce68150d70c7dee009 | 6ad6736333a92933f84971e336555811653ab1b4 | /src/main/java/cn/com/deepdata/elasticsearch/core/inter/ElasticsearchOperations.java | 52348be653d2a799290d0385101113b1e5213ac0 | [] | no_license | 344399160/es-client | 6728b1bd7bda02ccac921efb61ff944ba6cdae46 | 3fcaca0959227b3298136353ecd9ffa85de2cd05 | refs/heads/master | 2021-01-21T00:16:18.363074 | 2018-09-28T10:03:12 | 2018-09-28T10:03:12 | 101,865,036 | 5 | 3 | null | null | null | null | UTF-8 | Java | false | false | 4,256 | java | package cn.com.deepdata.elasticsearch.core.inter;
import cn.com.deepdata.elasticsearch.core.mapping.ElasticsearchPersistentEntity;
import cn.com.deepdata.elasticsearch.core.query.QueryConstructor;
import cn.com.deepdata.elasticsearch.model.Page;
import org.elasticsearch.client.Client;
import org.elasticsearch.search.a... | [
"qiaobin@deepdata.com.cn"
] | qiaobin@deepdata.com.cn |
88b2bb849a62582cbbb6241c8c9e4b5d6c1c7bb1 | cc277e2e4117b3205d063e0e8501f557dc5f3d18 | /src/main/java/com/things/phydev/transport/DataLinkLayer.java | ae8bb0658432d0aa16101392ad8d77c378b0c3d9 | [] | no_license | iqnev/SmartDevices | b10bf46870660baceb273a4a8f09280827de44cf | 01de3d5382b36b0a9679223f88b9102b861f2d9b | refs/heads/master | 2020-12-25T16:47:54.249288 | 2017-05-05T20:28:20 | 2017-05-05T20:28:20 | 67,435,056 | 7 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,428 | java | /**
* Copyright (c) 2016 Ivelin Yanev <bgfortran@gmail.com>.
* This program 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 2 of the License, or (at your option) any later version.
* <p>
... | [
"qnev89@gmail.com"
] | qnev89@gmail.com |
47077de7b424bb4d7973226620fd28f432b9a7a0 | 4cb2506c2bc2009392dfc2cabd98f2da6c2923b0 | /cutRod/src/cutrod/CutRod.java | d6288d4090a1efa902a7791aeb8113d56ff8204f | [] | no_license | Meryemgezici/java | 8e2ca2d64ca800a535431428f9042b00671dee84 | cbe09146d87cb6c5da3c40bcb72500c17128e824 | refs/heads/main | 2023-05-29T00:39:25.109288 | 2021-06-14T23:12:08 | 2021-06-14T23:12:08 | 376,977,912 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,155 | 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 cutrod;
/**
*
* @author HP Omen
*/
public class CutRod {
static int cutRodp(int price[], int n)
{
... | [
"noreply@github.com"
] | Meryemgezici.noreply@github.com |
7032bdeb10fee19926edc38e37d5884e77ba21f4 | c4635ee657174085d815d22c5b05dcc2dad1b07f | /app/src/test/java/com/example/bor/pizzeria/ExampleUnitTest.java | 840b67f66bcf3db9bf419089f7c69447d8efbc87 | [] | no_license | bor91k/Pizzeria | 89842ae52161d1027aa00c5cf9d08606913cc7d8 | aebe66f14b8bf3bf17cda038003d1685886d358c | refs/heads/master | 2020-03-30T14:24:53.220181 | 2018-10-02T20:30:05 | 2018-10-02T20:30:05 | 151,316,980 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 385 | java | package com.example.bor.pizzeria;
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 vo... | [
"bor91k@gmail.com"
] | bor91k@gmail.com |
f107d271243ab704ceaf2f9849bb5fab35a33167 | 3dbbe6d13223610f81e989aae3509910cc3fb7b4 | /src/test/java/com/zerobank/utilities/Driver.java | 090b02101e83d903416010253fb35d12d51b1f6a | [] | no_license | sofochka87/Zero-Bank | 7479868cdaa4339b1980d190151cc228ff71163a | e78f55687885b0d728021d21cadeca408f3437c3 | refs/heads/master | 2020-03-24T01:46:40.439499 | 2018-08-17T02:06:55 | 2018-08-17T02:06:55 | 142,351,100 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,448 | java | package com.zerobank.utilities;
import java.net.MalformedURLException;
import java.net.URL;
import org.openqa.selenium.Platform;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;... | [
"pizzasonya@gmail.com"
] | pizzasonya@gmail.com |
b24cad3b12aeb83cdecc7ed8865d30f4d8f066aa | 1939fc7fc495dcd78d465698e5221ac85cbff0f8 | /api-common/src/main/java/com/bike/user/oauth/xiaomi/XiaomiOauthClient.java | 09684fbe4edfd8d8ee64d9ce56c97bc94f258fff | [] | no_license | maohaitao/hivier_demo | eda3e2fa41b9bbb308cbb5dfa93b69e1e296c339 | eed73138102166b3582b37768a0fb4dc3e8597cc | refs/heads/master | 2020-05-27T21:15:30.671972 | 2017-03-16T10:55:01 | 2017-03-16T10:55:01 | 83,643,067 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,685 | java | package com.bike.user.oauth.xiaomi;
import com.bike.user.model.OauthUser;
import com.bike.user.model.TAccount;
import com.bike.user.oauth.IOauthClient;
import com.g3.common.http.HttpClientUtil;
import com.google.gson.JsonObject;
import com.sf.common.exception.AppException;
import com.sf.common.reflection.property.Prop... | [
"maohaitao@700bike.com"
] | maohaitao@700bike.com |
d86baad96d4286bcd0f03461de8c2926db63c7c5 | 37ea413d226011b0950a836a0d5466f019633d59 | /JavaSEPro/src/chap04/sec03/Demo1.java | 52fc69c1b68c70de379ca9adf120c4b414c51bc5 | [] | no_license | magicmai/learn-java | 58931e1a2c379b376d3f6a7356147eb65fba303a | a83fb3cc80d4033acb64cea50b660d14ade2aed1 | refs/heads/master | 2020-03-16T13:13:47.493146 | 2018-05-10T05:53:38 | 2018-05-10T05:53:38 | 132,684,225 | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 488 | java | package chap04.sec03;
public class Demo1 {
/**
* 把异常向外面抛
* @throws NumberFormatException
*/
public static void testThrows() throws NumberFormatException {
String s = "123a";
int a = Integer.parseInt(s);
System.out.println(a);
}
public static void main(String[] args) {
try {
testThrows();
Sys... | [
"maijing_wy@163.com"
] | maijing_wy@163.com |
2de9fb70a0a97607b7a541c6ecafdf89bd025b7b | 79571f6a11c9ef757ec0aa19362c2c6f39fbc7a2 | /pfms/src/main/java/org/tom/pfms/service/impl/NbContactServiceImpl.java | f1f9ac91f50f914d60e82e3a50aa39e57184240d | [] | no_license | hanpoyang/pfms | 4f2081240c25f0586eaa6aa1082fa00d44b8bfd1 | 0c69b738806b3ad6dc9120a993d17809ae0ce31e | refs/heads/master | 2023-03-06T22:45:36.375632 | 2023-03-02T13:25:22 | 2023-03-02T13:25:22 | 80,273,219 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,840 | java | package org.tom.pfms.service.impl;
import javax.annotation.Resource;
import org.springframework.stereotype.Service;
import org.tom.pfms.common.dto.NbContactDTO;
import org.tom.pfms.common.dto.PaginatedDTO;
import org.tom.pfms.common.dto.RequestParam;
import org.tom.pfms.common.exception.DaoException;
import org.tom.p... | [
"hanpoyang@hotmail.com"
] | hanpoyang@hotmail.com |
6b272a5aa04df2bd69b5d7dd675d15cfd91042c6 | e09bbe5565439e90d6261a0d0b0a12bf6134ee0d | /src/cn/wpeace/zktest/ConcurrentTest.java | ef10a9b6866b7ae507f488c0bf36d9514e346958 | [] | no_license | whatislife/zkDemo | c502efb6082af29c6ec410507feaffc06013a4ec | 589bdd624caadd3e3db75518122a5db0f1de1bea | refs/heads/master | 2021-08-22T11:13:54.036041 | 2017-11-30T03:04:11 | 2017-11-30T03:04:11 | 112,554,107 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,991 | java | package cn.wpeace.zktest;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.atomic.AtomicInteger;
public class ConcurrentTest {
private CountDownLatch startSigna... | [
"1053400192@qq.com"
] | 1053400192@qq.com |
b0a4466f875313f19e27daf2b56dd96fd812b5b5 | cfd103d3556346e59f2fdb6017b4ce0bafbf686a | /src/test/java/PetsAmok/VirtualShelterPetTest.java | 44d20757589879cee914b1857965346bb1586950 | [] | no_license | kfiddle/ken-virtual-pets-amok | d367ff6bf1bdac10a4addcd74122b1d26009d7c3 | 54176c70914edac1798e3ab27b1c6c0b38b3f6bc | refs/heads/master | 2022-12-23T13:51:51.602663 | 2020-09-25T16:07:58 | 2020-09-25T16:07:58 | 296,653,204 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,012 | java | package PetsAmok;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class VirtualShelterPetTest {
VirtualPetShelter testShelter = new VirtualPetShelter();
RoboticDog roboDogTest = new RoboticDog("Samuel", 7, 16, 12);
Robot... | [
"kenjfiddle@gmail.com"
] | kenjfiddle@gmail.com |
6cc6e326af1e53113ea13d9086c0199f02cf85eb | 46b51ee1c9655b50e7f53f759c8fe347a35f811a | /src/main/java/org/isp/web/controllers/payments_controllers/PaymentsAdminController.java | c391c2c9a5ae1fd75912b2540465e6290e89cd7c | [] | no_license | shsimeonova/Internship-Platform | 7221c61979c8b948af073483ac13b1cb9a5679c6 | a0b2de5e63a97912434df35618bc7e30e2ac2193 | refs/heads/master | 2020-03-08T04:05:36.465498 | 2018-12-24T10:10:36 | 2018-12-24T10:10:36 | 127,911,213 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,514 | java | package org.isp.web.controllers.payments_controllers;
import org.isp.domain.Payment;
import org.isp.services.payment_services.PaymentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.... | [
"ssimeonova159@gmail.com"
] | ssimeonova159@gmail.com |
76bae25e369785b2ec5acea90819e32c366409fe | c61a85ba787f4e74a7154a05c07e0aa4af9b67e7 | /week15_hw1/src/IconWindow.java | 03f8452559e5336084668af45d03e544bda8e2e7 | [] | no_license | yuan3675/SED2017FALL | bdaa5489f158a84b8e67be250f04cfc7e6d3eebc | bf703cbc7ad71ddd726220d6cae4b868556fc395 | refs/heads/master | 2021-09-03T17:13:02.322205 | 2018-01-10T16:29:30 | 2018-01-10T16:29:30 | 108,546,725 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 193 | java | public class IconWindow extends Window {
public IconWindow(WindowImpl impl) {
this.impl = impl;
}
public void drawBorder() {
drawText();
drawRect();
}
}
| [
"yuan3675@gmail.com"
] | yuan3675@gmail.com |
552f19dea6c842fac56a75b8e18054c7cc9d0ba6 | 8b59d114418ce899754da07356b771983e7a860a | /src/Test_0/Number.java | 1473862d517b5780045f0042ad74eaa8935339f4 | [] | no_license | ivan-andreichuk/Test0_Java_Mentor | e62e4f0ea69f2eb86725b30c1ff3071cb469e3c9 | 17147aac230a121b82eea380b43e64c132084734 | refs/heads/master | 2023-02-11T02:57:46.656027 | 2021-01-02T02:40:44 | 2021-01-02T02:40:44 | 326,143,831 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 125 | java | package Test_0;
public class Number {
public int value;
public boolean geographyNumber;//True-Arabic, false-Roman
}
| [
"dollarz@my.my"
] | dollarz@my.my |
41247562304198580439a95dcd58cd2258632154 | b59540e988b52d1bb0d2be6dbe50c3d77b6bbc43 | /Assignment2/src/project/conventer_from_p1.java | 4939afa6fd7ade031f4860ba223d12c82387b780 | [] | no_license | Chener-Zhang/Network-and-Secutiry-Project | 3b7d929511e189571f96d89fd0fb17fc3a2b4ae7 | c43ad6902d928fa0dc6fb6ee392105db64c04fd1 | refs/heads/master | 2022-04-17T13:11:57.702960 | 2020-04-15T02:32:07 | 2020-04-15T02:32:07 | 236,056,414 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,318 | java | package project;
import java.util.StringTokenizer;
public class conventer_from_p1 {
String string;
byte[] Final;
public conventer_from_p1(String st) {
this.string = st;
}
public byte[] breaker() {
StringTokenizer symbal_breaker = new StringTokenizer(string, "[]");
Stri... | [
"55104326+tuh12085@users.noreply.github.com"
] | 55104326+tuh12085@users.noreply.github.com |
36007ee460e54d251abb92a4ddaa5ca75fd89b1c | d0e2ec5174ba0faeaad081a9586e2c763e016894 | /src/main/java/com/example/Policeman.java | 764b1ae428747f4b249624e68ff5d0d58c826f48 | [] | no_license | luckytiger1/spring-builder | af1236e3176f5ba65793bd6547e1afb19804bec2 | 0b027ed86337a6b90cc1cfe2634092072ed5c8fa | refs/heads/main | 2023-04-03T23:48:38.286152 | 2021-04-15T17:54:28 | 2021-04-15T17:54:28 | 358,347,008 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 85 | java | package com.example;
public interface Policeman {
void makePeopleLeaveRoom();
}
| [
"daniyar.abc@gmail.com"
] | daniyar.abc@gmail.com |
d5f8bdf1d2de19ac5f75017f420b11d9c33865e6 | 2811d7a3ed750ccce0fb698b7d9c3a90c3e0efcd | /test/ups/bdconexion/BDConexionTest.java | 2d0a8e3d66c4aef202def6e1f4c89e268f808cbe | [] | no_license | DavidIsraelLeon/CitasMedicas | e5e8bfb0a577d695b82132f9274175ce79df4fa6 | ebdb394b16a3a4a53c947cbb676d5bf9cd03e537 | refs/heads/master | 2022-11-02T11:15:01.194797 | 2020-06-19T17:20:18 | 2020-06-19T17:20:18 | 273,416,246 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,508 | 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 ups.bdconexion;
import java.sql.Connection;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
impo... | [
"dilggallardos@hotmail.com"
] | dilggallardos@hotmail.com |
1ccd3bf9675ec10e06c34fc1ad0c95e002d59d46 | 0a687de2d61470cbe8a6e0984c85bf4aa958b563 | /src/pack1/AccessModifier.java | 316691dd37a4521897470e51ac45b27d50b02355 | [] | no_license | brahmaqa1/MyRepo1 | a983a922895197e36206c9852bd345bb0de40faa | 1d8fb0019329153036d9e5620bf94362d55066aa | refs/heads/master | 2020-06-21T11:46:05.195463 | 2019-07-17T18:22:45 | 2019-07-17T18:22:45 | 197,440,448 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,109 | java | package pack1;
import login.loginclass;
public class AccessModifier {
public static void main(String[] args)
{
//get login pack.loginclass var
//loginclass l=loginclass();//Care ::: errro no new opeartie
loginclass l=new loginclass();// public class , we cna use in other package
// note:: if loginclass ... | [
"brahma.qa1@gmail.com"
] | brahma.qa1@gmail.com |
f758ec63f8e62667141c706a88c3f4ccb77e98e7 | 930099631713d6253a7ff05f05bf6522cbba04d9 | /app/src/main/java/com/phoenixfeatherapp/intouch/FocusListener.java | 380f7adb98a5151a72618bf9e3a0fec4bbe5492b | [] | no_license | phoenixfeatherapps/InTouch | 37cbcfb3dd3b80123eb07f2eccff648ee44f3102 | ee1b26a327f69641a42d9ee0d1379aced2ddc6a4 | refs/heads/main | 2022-12-30T00:20:16.182388 | 2020-10-17T07:51:58 | 2020-10-17T07:51:58 | 302,840,385 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,938 | java | package com.phoenixfeatherapp.intouch;
import android.content.res.Resources;
import android.util.Log;
import android.view.View;
import android.widget.EditText;
import android.content.Context;
import android.view.View;
import static com.phoenixfeatherapp.intouch.Utility.validateIPAddress;
public class FocusListener i... | [
"phoenixfeatherapps@gmail.com"
] | phoenixfeatherapps@gmail.com |
7761ad239c6761fabe202fe66edd94fd509c7fe4 | d74fbdd8d6bfe1ab8fae4363b1034e70beee4d81 | /app/src/test/java/kr/hs/e_mirim/teenspolitics_master/ExampleUnitTest.java | 0c27697bf48cef787bf56696c6740e9423698eb3 | [] | no_license | shimeunji/Teenspolitics-master | 8dc2d3baa2c3efd91971ef61dec17619036965e1 | a6a282ba81f9683f4011b4f19898bc8b58eda69f | refs/heads/master | 2021-01-25T01:03:24.003621 | 2017-06-18T23:18:20 | 2017-06-18T23:18:20 | 94,716,125 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 412 | java | package kr.hs.e_mirim.teenspolitics_master;
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
... | [
"shimeunji991222@gmail.com"
] | shimeunji991222@gmail.com |
61ae2db59461f8d7ea8f7c585986ca16bbb479a0 | 4118f7d8f74e6c0773517fd6b308df83c7cf3518 | /src/CoreJava/MainEntryPoint/TestRunner.java | e7c9ef44dfa2d1c441e17c1d5dc8c1f5e08262ad | [] | no_license | resv/PERSCHOLAS-JD-ASSIGNMENTS | 1fb0b2a7e7e4787276d77716a11b95a95fff4699 | a3051ca9c6d5c8f250ce54c6b658b3b4bedef1e7 | refs/heads/master | 2020-03-28T04:21:38.457643 | 2018-09-06T17:56:40 | 2018-09-06T17:56:40 | 147,709,833 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 453 | java | package CoreJava.MainEntryPoint;
public class TestRunner {
public static void main(String[] args) {
// Many things to consider working on this in the future and things I've learned.
// You can create an array string on the fly
// equality comparison with emails or another string should use .eq... | [
"akim456@gmail.com"
] | akim456@gmail.com |
3bb8afb13426575ad521e64c716c8d7bd146fde6 | 599262c06e227882cdd74a132623f4eddbda5c72 | /src/main/java/com/db/quoters/TerminatorQuoter.java | b9232a3202630f60fde2e5ac1c083770a090531f | [] | no_license | Jeka1978/springdemo_forDB | 21f593a707647ded79641739032340c275304d59 | 440bea6f1ad1a5c2698c5776291af902bdc6e63a | refs/heads/master | 2021-01-21T02:19:46.567281 | 2017-09-01T15:32:26 | 2017-09-01T15:32:26 | 101,887,660 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,117 | java | package com.db.quoters;
import lombok.Setter;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.DependsOn;
import org.springframework.context.anno... | [
"papakita2009"
] | papakita2009 |
f5f169b754dd146c48e736bdd3d993020807e82f | 3726265f8005bbacd826f32b6c434c2540b6599e | /uml/java/Model/personnes/Abonné.java | 6d4c681784f0d51965206747330300bfc35b2dbb | [] | no_license | didier-tp/poe-pega2 | 11bd93bd93c9b9d9dfd10a107f1e6fd5c7db0ef2 | 1f1cdc9ae4d466c40f6a2193c6e17cb56e04daee | refs/heads/main | 2023-07-11T02:24:09.617289 | 2021-08-20T15:21:18 | 2021-08-20T15:21:18 | 394,204,364 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 373 | java | package personnes;
import java.util.*;
/**
*
*/
public class Abonné extends Personne {
/**
* Default constructor
*/
public Abonné() {
}
/**
*
*/
private Integer numero;
/**
*
*/
private Date dateAbonnement;
/**
*
*/
public void sePr... | [
"didier@d-defrance.fr"
] | didier@d-defrance.fr |
74249ebb7e92eda4d9264d71b1871ce0c0a04738 | c083d7f00c8ec192332872b6421f05a73a64ef8f | /src/com/company/emcare/model/ActionHist.java | 7a43819b480bbedb1d021a73fedb439a713011bb | [] | no_license | zhanhyii/EmCare | 074dd4eb064c2992754efdf2a6cd812f6c46341c | 7d7aafb34317d37b4d87fe30394fa22b785b4aa9 | refs/heads/master | 2016-09-05T08:57:05.707605 | 2013-01-25T06:42:57 | 2013-01-25T06:42:57 | 7,813,536 | 0 | 1 | null | 2013-01-25T06:42:57 | 2013-01-25T04:23:54 | JavaScript | UTF-8 | Java | false | false | 3,249 | java | package com.company.emcare.model;
import java.sql.Timestamp;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import ... | [
"setpsw@gmail.com"
] | setpsw@gmail.com |
6bc02f4f404d0c363d7e457fe9ee7268504acc3f | 9720eebcbc60d7a5ed7fe9748f3827b5888b167a | /src/main/java/ItemCatalogManager.java | 9e241b0b40f514d672c281c31b1fe0254d29ec2f | [] | no_license | jc-johnson/Logistics-Application | 05c3ec0defb23a6e3644105f2e683810b6c0b5d0 | 83e1fb91857d8543fb25a724a3928f0ff5352984 | refs/heads/master | 2021-01-19T06:47:56.290947 | 2017-06-01T23:23:36 | 2017-06-01T23:23:36 | 87,500,077 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,997 | java | package src.main.java;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.xml.sax.SAXException;
import src.main.java.exceptions.DataValidationException;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
imp... | [
"jjohnson@myself.com"
] | jjohnson@myself.com |
6913df98b90bbf91396ffb7979ce62bd5dc0efff | a5918497b9483b6a328ebaceef17342e57a001ea | /src/test/java/com/wout/dolp/web/rest/ProgramResourceIntTest.java | 067364d3458e82f32464080a4ac4237017d71e44 | [] | no_license | dolps/wout | 28f328d40c2eab838e79f3143c6a722616ee14c9 | 3febf8b3814779b4054e8bc764ee135b784a1c94 | refs/heads/master | 2021-04-27T20:33:42.626315 | 2018-02-22T19:57:56 | 2018-02-22T19:57:56 | 122,381,266 | 0 | 0 | null | 2018-02-22T19:57:57 | 2018-02-21T19:15:07 | Java | UTF-8 | Java | false | false | 10,187 | java | package com.wout.dolp.web.rest;
import com.wout.dolp.WoutApp;
import com.wout.dolp.domain.Program;
import com.wout.dolp.repository.ProgramRepository;
import com.wout.dolp.service.ProgramService;
import com.wout.dolp.service.dto.ProgramDTO;
import com.wout.dolp.service.mapper.ProgramMapper;
import com.wout.dolp.web.re... | [
"broCode123"
] | broCode123 |
e01b138745a5ed6836b2f127020b047f6329ef62 | b20ef95e527fa6a4641d2fb95668f6b77b0082e6 | /src/base/DI/KnightTest.java | d5f933cafafe46444c33758e7e75a7293835b44c | [] | no_license | icecsl/springPro | ad62c9db33c899e4d8cc56d349d231e1bf77a8d0 | e3646818a7db5690a92e13e5ce324544e8d9f04a | refs/heads/master | 2021-01-21T10:45:32.027026 | 2018-05-30T07:46:09 | 2018-05-30T07:46:09 | 101,984,316 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 504 | java | package base.DI;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* Created by huangbingjing on 18/5/24.
*/
public class KnightTest {
public static void main(String[] args) {
//读取xml装载bean 获取knight - 构造器依赖注入
ApplicationConte... | [
"huangbingjing@nonobank.com"
] | huangbingjing@nonobank.com |
bf3586caecf2c031d47a8bfdb53e35c0db30bbeb | 89a09e9daa8c5c817d129404d381f1c5fec61c08 | /eHour-wicketweb/src/main/java/net/rrm/ehour/ui/report/page/GlobalReportPage.java | aa23616e2326ee8f4c5e2d9ccbeb47f1e1c6a56c | [] | no_license | nolith/ehour | 6a57c5661c6dcef595722053ae656e265d680a4c | dbb1b9c128383aff0aed4454866d7aee90492415 | refs/heads/master | 2021-01-15T22:52:37.986322 | 2012-05-09T23:11:42 | 2012-05-09T23:11:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,905 | java | /*
* This program 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 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will... | [
"thies@te-con.nl"
] | thies@te-con.nl |
0e271ffce8e355d54d7b0eb9fcb155205891babd | 4163b0e3c8ef502fad496a72043fa699bf0b9c52 | /sixeco-xmall/freeter-admin/src/main/java/com/freeter/modules/pc/entity/view/CategoryView.java | e093ddcb987315c7fef8a4205da9af332747ed4e | [] | no_license | Onoderaharu/sixeco | 25fd03bead84c2bc84cee85abdb69adf8e4d3458 | 9536093e904feb44e9e12963b5b0276c0f14000f | refs/heads/master | 2020-03-24T23:11:53.779054 | 2018-08-01T08:10:10 | 2018-08-01T08:10:10 | 143,122,864 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,052 | java | package com.freeter.modules.pc.entity.view;
import com.freeter.modules.pc.entity.CategoryEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import com.baomidou.mybatisplus.annotations.TableName;
import org.apache.commons.beanutils.BeanUtils;
import java.lang.reflect.Invoca... | [
"631878520@qq.com"
] | 631878520@qq.com |
6e4ecb353c3fd8ce5332d2adf1c831f8bdb74dba | 36b2a202cdca6915f0c8ad8a03c92064fe0e7345 | /app/src/main/java/com/ckkj/enjoy/ui/music/MusicRankingListDetailActivity.java | 037328e28ae53c0a43b10bb5eb013aba1ccb4d24 | [] | no_license | zct1115/EnJoy | 92dd395ec00bea8de00c8b7d549206bac0e0bdf0 | f28b9f4f6cb1c3b36e7be2242487ac5bf67139f0 | refs/heads/master | 2021-07-15T08:16:28.098450 | 2017-10-23T14:20:45 | 2017-10-23T14:20:45 | 104,848,283 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 8,465 | java | package com.ckkj.enjoy.ui.music;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.support.design.widget.AppBarLayout;
import android.support.design.widget.Co... | [
"1278719957@qq.com"
] | 1278719957@qq.com |
abc6f080c90d9d8603ef5459b32fd73ac5204c24 | 3c21c815269243067aafb0b798912aba2b3af191 | /app/src/androidTest/java/ca/cours5b5/vladimirchrisphonte/ExampleInstrumentedTest.java | d33cd5364cbcd8af88d90aed9f69186f81ad95ac | [] | no_license | emvlad/1523208 | 582ad6594ff492adb72e8611f8fba0971669aba7 | 32172c68d84d5b545386e346a4e3521e8ede2bb5 | refs/heads/master | 2020-03-27T03:54:32.015158 | 2018-11-01T19:46:40 | 2018-11-01T19:46:40 | 145,897,979 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 746 | java | package ca.cours5b5.vladimirchrisphonte;
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... | [
"cevchris23@outlook.com"
] | cevchris23@outlook.com |
344f0435d69f0967376a4dc679d1ee09281e51a3 | 97d95ad49efb83a2e5be5df98534dc777a955154 | /applications/plugins/org.csstudio.swt.widgets/src/org/csstudio/swt/widgets/datadefinition/IntArrayWrapper.java | da629e5644e9c0acd342b54e4df5950afb154073 | [] | no_license | bekumar123/cs-studio | 61aa64d30bce53b22627a3d98237d40531cf7789 | bc24a7e2d248522af6b2983588be3b72d250505f | refs/heads/master | 2021-01-21T16:39:14.712040 | 2014-01-27T15:30:23 | 2014-01-27T15:30:23 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 418 | java | package org.csstudio.swt.widgets.datadefinition;
/**A wrapper for int[].
* @author Xihui Chen
*
*/
public class IntArrayWrapper implements IPrimaryArrayWrapper {
private int[] data;
public IntArrayWrapper(int[] data) {
this.data = data;
}
public void setData(int[] data) {
this.data = data;
}
pub... | [
"jan.hatje@desy.de"
] | jan.hatje@desy.de |
0dfc7421b5e2de7a78bc1f8e7b27605656415a0a | 8aafdacfb0f594208e7b1364d293bed07790bfe9 | /springboot-sxgdhz/sxgdhz/sxgdhz-common/src/main/java/com/ruoyi/common/openoffice/ProcessPoolOfficeManager.java | a3442925366bd2cd378f0e140f22ce26828f5db2 | [] | no_license | sxgdhz226/sxgdhz-admin | 722221b989610314aa28bbf2f90c73cb2beaa08f | eb9b4c2288b5d523b9d1819eab631a06c65076ca | refs/heads/master | 2020-04-02T12:47:23.557097 | 2018-11-12T02:37:34 | 2018-11-12T02:37:34 | 154,451,851 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,069 | java | //
// JODConverter - Java OpenDocument Converter
// Copyright 2004-2012 Mirko Nasato and contributors
//
// JODConverter is Open Source software, you can redistribute it and/or
// modify it under either (at your option) of the following licenses
//
// 1. The GNU Lesser General Public License v3 (or later)
// -> http... | [
"1600328315@qq.com"
] | 1600328315@qq.com |
99c36f13f91c4fb3537ee704340c57ea4160fe41 | d648ff8df7a155cc3272b8d20f877ebabb92d3cd | /src/by/it/akulov/lesson06/TaskA2.java | 8ac6091d11180cf464f7587d2a6da96865e26174 | [] | no_license | th1nk-d1ff3r3nt/ComputerScience | b48a16aacd8055b6966cd073db3ac4987c83fbb6 | c7fb8049fbd42164db8168985e2685edd0374893 | refs/heads/master | 2023-04-29T07:07:27.298512 | 2018-12-20T13:17:24 | 2018-12-20T13:17:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,436 | java | package by.it.akulov.lesson06;
/*
toString() для класса Dog
Доработайте class Dog из задания A1. Создайте в классе Dog метод
public String toString(){
//метод должен вернуть строку экземляра класса в виде форматированной строки
//Пример:
Кличка: Шарик. Возраст: 5
}
Требов... | [
"dmitryakulov.official@gmail.com"
] | dmitryakulov.official@gmail.com |
83723b052c0ba3878f2799d8db9b43b7d374c7c9 | 866f5c2a8a7999fb877ce5bb4cf359e88589d161 | /src/p1MainClasses/FilesGeneratorMain.java | 607430901b6e52512d193181d923d9eed0c6035b | [] | no_license | PentiumFallen/Data-Project-1 | 80654d861d093e7b3fb533ef840cc793373b2c68 | 0471544e33e20b3aa9e9811394ed1b519a74a94a | refs/heads/master | 2021-04-15T11:35:19.891950 | 2018-05-01T23:21:13 | 2018-05-01T23:21:13 | 126,051,611 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,693 | java | package p1MainClasses;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintWriter;
import dataGenerator.DataGenerator;
/**
* Generates the files for Part1
*
* Code belongs to professor
*/
public class FilesGeneratorMain {
public static void main(String[] args) throws FileNotFoundExce... | [
"raul.vargas@upr.edu"
] | raul.vargas@upr.edu |
73b405dd42fc95ed11fcbe97572b983a2b82a867 | 37f24afbf92e4760f5dfceedcb5289a3514179f7 | /src/leetcode/easy/FactorialTrailingZeroes.java | 081dd7cea35b210a78370b7510e470bf370b3c65 | [] | no_license | GY15/arithmetic | 9f51b8ff4c6c8e7a040783d65f146b3d3ed333c9 | c49da30b52803e03630325df000125889ef33ab9 | refs/heads/master | 2022-02-23T09:40:31.510870 | 2019-10-02T04:02:09 | 2019-10-02T04:02:09 | 109,135,702 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 481 | java | package leetcode.easy;
public class FactorialTrailingZeroes {
public int trailingZeroes(int n) {
int res = 0;
for (int i = 5; i <= n; i+=5){
int temp = i;
while(temp % 5 == 0 || temp % 10 ==0){
if (temp % 5 == 0){
res++;
... | [
"151250040@smail.nju.edu.cn"
] | 151250040@smail.nju.edu.cn |
e596fe90c6b36cb4d91bbee511bce188f2e30e0a | 69011b4a6233db48e56db40bc8a140f0dd721d62 | /log/com/jshx/log/web/UserBehaviorLogAction.java | d0f6d9f0b755aed9f430934685706dc2a08009f7 | [] | no_license | gechenrun/scysuper | bc5397e5220ee42dae5012a0efd23397c8c5cda0 | e706d287700ff11d289c16f118ce7e47f7f9b154 | refs/heads/master | 2020-03-23T19:06:43.185061 | 2018-06-10T07:51:18 | 2018-06-10T07:51:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,088 | java | package com.jshx.log.web;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import net.sf.json.JsonConfig;
import net.sf.json.util.PropertyFilter;
import org.springframework.beans.factory.annotation.Autowired;
import com.jshx.core.base.action.BaseAction;
import com.jshx.core.base.vo.Pagination;... | [
"shellchange@sina.com"
] | shellchange@sina.com |
c269def799cd22523559114e056f4e32821a6656 | fed81804c560636b18ef08389ecd6057d6081685 | /src/main/java/com/lojalivros/models/dao/FuncionarioDAO.java | 79ec7ae80b1cb118b274fac928f71a54950d2b0b | [] | no_license | arthurmatosbsb/Loja-livros | e8b968b148b4b3fcb4e398c40bb8dee4b5847daf | 934218ac2af66d2ac429ba90186beaacda63653e | refs/heads/master | 2022-11-25T09:08:46.029440 | 2020-08-05T21:31:41 | 2020-08-05T21:31:41 | 285,405,920 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 886 | java | package com.lojalivros.models.dao;
import java.io.Serializable;
import java.util.List;
import javax.annotation.PostConstruct;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import com.lojalivros.models.Funcionario;
public class FuncionarioDAO implements Serializable {
/**
*... | [
"arthurmatosbsb@gmail.com"
] | arthurmatosbsb@gmail.com |
719433ea6525172180e533b1ab19c1d0bf462212 | d8223191462e3c4c1bfbfb37269d4aa617f5a0f5 | /CRM/src/main/java/com/usinsa/crm/dao/OtherDAO.java | 26aa80b22fcaceeba3acc264524c504ce070edd0 | [] | no_license | ohk3726/CRM | a6d8cfc7839d2282c67d79bed9d768b112707cb7 | 7e17a415ec7a4c7db03795fdb3d6ac1147cf9571 | refs/heads/master | 2022-12-23T17:32:12.963263 | 2019-12-19T23:07:07 | 2019-12-19T23:07:07 | 227,682,395 | 0 | 0 | null | 2022-12-16T01:01:01 | 2019-12-12T19:36:45 | Java | UTF-8 | Java | false | false | 1,093 | java | package com.usinsa.crm.dao;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.usinsa.crm.vo.CouponVO;
import com.usinsa.crm.vo.LevelVO;
import com.usinsa.crm.vo.MailVO;
import com.usinsa.crm.vo.OtherVO;
import com.usinsa.crm.vo.UserVO;
public interface OtherDAO {
List<Other... | [
"ohk3726@gmail.com"
] | ohk3726@gmail.com |
19823185b7b8d09190d4e178ffe4b514b6e54fa7 | 23773dfb710452d6864e2a6039e36c62a7427e7a | /order-service/src/main/java/com/example/MSA_web/jpa/OrderRepository.java | 8fd32511fcc2be6ce5179719c5ef7c71b75956ea | [] | no_license | jje951122/Spring_Cloud-MSA_web | 351a4bc0d05da8f4a4a996d06b4486cec531df31 | f170f782a655252eb71cd23a8b822be7125334b0 | refs/heads/main | 2023-07-30T17:20:11.691683 | 2021-09-16T10:54:20 | 2021-09-16T10:54:20 | 407,122,060 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 269 | java | package com.example.MSA_web.jpa;
import org.springframework.data.repository.CrudRepository;
public interface OrderRepository extends CrudRepository<OrderEntity, Long> {
OrderEntity findByOrderId(String orderId);
Iterable<OrderEntity> findByUserId(String userId);
}
| [
"github.com/jje951122"
] | github.com/jje951122 |
510dbb687f8d809b3d8b911b7744403c3cc87943 | 721f4994496d58f6ca41b41cb56dbf3901e5c174 | /app/src/main/java/com/example/mymovies/FavouriteActivity.java | e312aa312573439d5d9b007ef8bfb1102cabc553 | [] | no_license | dimasokotnyuk/MyMovies | eb69ddfe307c099bbdd3629962ffee2a596106f7 | 8caaa3925ae33e739314a9b2847c32b48cae4d20 | refs/heads/master | 2020-07-14T13:31:09.726295 | 2019-08-24T13:54:45 | 2019-08-24T13:54:45 | 202,130,313 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,268 | java | package com.example.mymovies;
import android.arch.lifecycle.LiveData;
import android.arch.lifecycle.Observer;
import android.arch.lifecycle.ViewModel;
import android.arch.lifecycle.ViewModelProviders;
import android.content.Intent;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActi... | [
"dimastasokotnyuk@gmail.com"
] | dimastasokotnyuk@gmail.com |
f4aa598b415f85c8b7361ecaea01550bc0b3872d | b1032f56672858150688a0c6952816d02940368d | /src/main/java/com/rua/redis/dao/IBaseDao.java | 53cacbddc1f583a6b7148e6d10f268ea1a0d3bcf | [] | no_license | StrongRua/gmds | 04deea2e3f71030ff31f05000af44f17c14dcc73 | 654ce75d6db8ccf17969f374d62bf377a31bac47 | refs/heads/master | 2020-06-15T09:32:24.134017 | 2016-12-03T11:29:05 | 2016-12-03T11:29:05 | 75,303,124 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 679 | java | package com.rua.redis.dao;
import org.springframework.data.redis.core.RedisTemplate;
/**
* Created by Jacky on 2016/4/9.
*/
public interface IBaseDao<T> {
/**
* Spring
*
* @param redisTemplate
*/
// void setRedisTemplate(RedisTemplate<String, String> redisTemplate);
/**
* 保存对象
*
* @param t
* @r... | [
"chimesi@live.com"
] | chimesi@live.com |
d706e20c437bb53f3e311ba9805f83065cc3555f | 1376cd07f9810fcc2de8a597cc039c6457c61a9c | /src/main/java/com/surveyor/service/impl/UserServiceImpl.java | 67d44579388333a0b2a1046f254f589ac3c212be | [] | no_license | fairy825/SurveyorWX | a8645790e61b6a4f891bf7d8c28d6028c4be19be | 52f0b040cc2570731d063a2ada1e0bfa9270e6ab | refs/heads/master | 2022-06-23T17:45:15.001426 | 2019-11-20T09:01:30 | 2019-11-20T09:01:30 | 211,759,177 | 0 | 0 | null | 2022-06-21T01:58:09 | 2019-09-30T02:26:05 | Java | UTF-8 | Java | false | false | 2,516 | java | package com.surveyor.service.impl;
import com.surveyor.service.UserService;
import org.n3r.idworker.Sid;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.ann... | [
"1324240571@qq.com"
] | 1324240571@qq.com |
e32b1a11c5e8a14ee264ca41a665516579e8a4d4 | ade0068f0b256f46d5ea1e501d903cb164674be1 | /app/src/main/java/com/example/idpproject/CarparkSelection.java | 0b0e89f74b29a31e78b8129dde195b08e49c1c53 | [] | no_license | ms042087/idpProject | 2bd6ba8416586c0dac55c2ca50ea81d5ac75353a | 65992227407bcfcc7c8771af9770302f0c5058ab | refs/heads/master | 2021-09-12T21:43:22.277273 | 2018-04-05T06:24:29 | 2018-04-05T06:24:29 | 126,035,831 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,676 | java | package com.example.idpproject;
import android.app.ProgressDialog;
import android.content.Context;
import android.graphics.Color;
import android.support.v4.app.Fragment;
import android.os.AsyncTask;
import android.support.annotation.Nullable;
import android.support.v4.app.FragmentManager;
import android.os.Bundle;
imp... | [
"ms042087@gmail.com"
] | ms042087@gmail.com |
00a2cbdb8d9ea11915e64a8b856074e92216c4ef | 025407ef8cf22091498b1e73dd0f25fbe70888f1 | /A1-MiniS/src/java/lang/RecursiveDescentParser.java | fb60882e8b90db06d760bca5b365c3b5e2bae6ba | [] | no_license | TanJunHong/mysterious | 85747d8d761482f80aa383abf9f95fdd01f3c6e8 | 8acc34181ea40a35ae670b0ed222d9d400a0f7c7 | refs/heads/master | 2023-03-24T01:53:47.862297 | 2016-10-13T10:46:47 | 2016-10-13T10:46:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,664 | java | package lang;
import lang.RDPTemplate;
import lang.ast.LangScanner;
import static lang.ast.LangParser.Terminals.*;
public class RecursiveDescentParser extends RDPTemplate {
/**
* Entry hook to start parsing.
* @throws RuntimeException if the program is not syntactically correct
*/
public void pa... | [
"erik.bjareholt@gmail.com"
] | erik.bjareholt@gmail.com |
c070883afe1037a85a92f6ed84c3c59b4b9fb003 | 8f8b5f8b802f83c614ad78af032fe9936e5ffb6e | /enterprise-web-services-camel/src/main/java/hmh/sap/rfc/ZvrelationType.java | 4258c89f25657cfdbaf0f7589a80d3eb1db0e38c | [] | no_license | praveen4students/hmh_backup | 1b8d54bfa241f5a6412ef2423f1547d6262a530c | 45630529b61126976ee0663d9f78b60690a65df7 | refs/heads/master | 2022-01-05T12:09:18.641190 | 2019-05-01T18:30:30 | 2019-05-01T18:30:30 | 114,189,899 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,458 | java | package hmh.sap.rfc;
public class ZvrelationType extends com.sap.aii.proxy.framework.core.AbstractType{
private static final com.sap.aii.proxy.framework.core.BaseTypeDescriptor staticDescriptor ;
private static final com.sap.aii.proxy.framework.core.GenerationInfo staticGenerationInfo = new com.sap.aii.pr... | [
"praveen.dyamappa@gmail.com"
] | praveen.dyamappa@gmail.com |
056c17db7f3d077b706f1721c0fba1fba16933c5 | 1abfe17ced88681475e3ecb51d72533231cd14ab | /mifosng-provider/src/main/java/org/mifosng/platform/loanschedule/domain/DecliningBalanceMethodLoanScheduleGenerator.java | f1cf01dbf4725a39a84868a3fa8b84f28f98491d | [] | no_license | hugotechnologies/mifosx | 46b28b75074140652538f0776067c3a9392cd1a5 | b4faea9e5efd2f09b9919c6e45cee011c90a4fec | refs/heads/master | 2020-12-30T18:58:28.937613 | 2012-07-28T06:56:49 | 2012-07-28T06:56:49 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,782 | java | package org.mifosng.platform.loanschedule.domain;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import org.joda.time.Days;
import org.joda.time.LocalDate;
import org.mifosng.platform.api.data.CurrencyData;
import org.mifosng.platform.api.data.LoanSchedule;
import org.mifosng.platform... | [
"keithwoodlock@gmail.com"
] | keithwoodlock@gmail.com |
b529f4de1c44dd1b9f49bab175721e92a8458df5 | 4509ce64829f7bf3f680f446c605eb60208ea992 | /app/src/main/java/me/amplitudo/networkingapp/ui/ui/slideshow/SlideshowFragment.java | 25f2b0123eb6f1b5de5277b8cf94af253fd1af3b | [] | no_license | stevyhacker/basic-networking-android | 1812a8f597b8137822edb37ad9cd199d847fc6a0 | 1a5c032398aad8b8dadf1ef8b3d77c87bccd844b | refs/heads/master | 2020-09-21T07:36:56.650654 | 2019-12-13T07:33:35 | 2019-12-13T07:33:35 | 224,728,304 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,360 | java | package me.amplitudo.networkingapp.ui.ui.slideshow;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import android.widget.Toast;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androi... | [
"stevyhacker@gmail.com"
] | stevyhacker@gmail.com |
2fea341d30087ba9b2a603020f1f15e2be199a57 | 4efa5d3c2a0e3c84854737bf4bad12fcd5e9eb19 | /app/src/main/java/com/example/shuvendufirsttest/MainActivity.java | 28b60c9cd3072e5c0dce8f9d52952e3ad1663a77 | [] | no_license | shuvenduoffline/sampleApp | 6ceb001d5f265b1769f1c17360e5d9e4e1bd3570 | 06620a7cd3568ab4c2b72944db211b56c7fe4bdf | refs/heads/master | 2020-07-24T16:40:03.358823 | 2019-09-12T07:00:36 | 2019-09-12T07:00:36 | 207,985,749 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 343 | java | package com.example.shuvendufirsttest;
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.a... | [
"shuvenduoffline@gmail.com"
] | shuvenduoffline@gmail.com |
ccaa4ea9bcc18e3722c60216147d0fe700c88b16 | 9f232e22cfc9d5366ea23689dac7fda97f72faf5 | /lab3/src/main/java/com/room414/hospital/commands/duty/GetDutiesList.java | c0c9dba603b87fc5327407dffc0fc45233a810e5 | [] | no_license | melalex/pi | 911528014f9cec0c14ae8bd0294b7ca16df6afaa | cc33d2d33a01cf3b69efb9990e723a2d1f063194 | refs/heads/master | 2021-07-05T00:38:33.148905 | 2017-09-28T19:50:39 | 2017-09-28T19:50:39 | 103,520,180 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,734 | java | package com.room414.hospital.commands.duty;
import com.room414.hospital.anotations.Route;
import com.room414.hospital.commands.iternal.AbstractCommand;
import com.room414.hospital.commands.iternal.ExecutionResult;
import com.room414.hospital.commands.iternal.Routes;
import com.room414.hospital.commands.iternal.Views;
... | [
"oleksandr_melashchenko@epam.com"
] | oleksandr_melashchenko@epam.com |
bf4318163d1fb640e48ecfedffd331da1c16dade | c66de32d4b0f5167a9aea9d1a39819d9993be5c4 | /MyHM/app/src/main/java/com/example/myhm/NewReport.java | 894bb92187c035310515a9d5c56071a6191127cb | [] | no_license | simonettimartino/LAM | 99abaad2346b8d8d10ac53026754b9dc55728463 | 60f14424a5383a1680112bda3f43cd0f71cb867d | refs/heads/master | 2022-12-19T00:46:59.606792 | 2020-09-11T11:15:47 | 2020-09-11T11:15:47 | 262,596,455 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,156 | java | package com.example.myhm;
import android.app.DatePickerDialog;
import android.content.SharedPreferences;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.os.AsyncTask;
import android.os.Bundle;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
impo... | [
"simonettimartino@gmai.com"
] | simonettimartino@gmai.com |
0f2b3857b02ea46a2a19889d9639e7b326180cfa | 731f38f02c581aba08248228a695014220ce474e | /widgetalarm/app/src/main/java/com/daeseong/widgetalarm/AlarmWidget.java | 8dd0681cfba7db9624174ebbb78f2c2f19c03f4a | [] | no_license | ImDaeseong/WidgetNService_test | 5a4ec704baf5b8f55ec10ca1f3f4d746fd56692f | aa621626f96756f81635f1b82cfd40f032a8e3da | refs/heads/master | 2022-10-11T03:45:14.049051 | 2022-09-21T22:16:07 | 2022-09-21T22:16:07 | 215,185,753 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,555 | java | package com.daeseong.widgetalarm;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.widget.RemoteViews;
import ... | [
"cs93059@gmail.com"
] | cs93059@gmail.com |
9ba1b8d16f2d0db89615e5114e4d2ed001d52526 | 180e78725121de49801e34de358c32cf7148b0a2 | /dataset/protocol1/commons-lang/learning/7940/MutableBoolean.java | 3ab39214c7c643aa6ebcbd5ddcf41abbc7f580b4 | [] | no_license | ASSERT-KTH/synthetic-checkstyle-error-dataset | 40e8d1e0a7ebe7f7711def96a390891a6922f7bd | 40c057e1669584bfc6fecf789b5b2854660222f3 | refs/heads/master | 2023-03-18T12:50:55.410343 | 2019-01-25T09:54:39 | 2019-01-25T09:54:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,155 | java | /*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may ... | [
"bloriot97@gmail.com"
] | bloriot97@gmail.com |
962badc469cc03dd10069c088ccc887a3614418c | 9b02cf3b984f4ae0742965622a3819169601ab02 | /src/org/jiaowei/alarmRescue/controller/EntityIDFactory.java | e1248fb1c5eeb226d4de6bc7b0ba00f6a563b9c7 | [] | no_license | wujie1314/JWWX | 3576681cbda21b666e1107215ce3eff80ce6fa3b | f427e724d6586723b4e7f9cab4b7a73f0370abe9 | refs/heads/master | 2020-03-24T23:11:53.717943 | 2018-06-25T02:08:47 | 2018-06-25T02:08:47 | 143,122,859 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 498 | java | package org.jiaowei.alarmRescue.controller;
import java.text.SimpleDateFormat;
import java.util.Calendar;
public class EntityIDFactory {
private static final SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmssSSS");
private static String preId = "";
public static synchronized String createId(){
Str... | [
"1071384020@qq.com"
] | 1071384020@qq.com |
fe577ca9ceb9b3780eb6df2069287222ee0ea287 | f36cd989c25c4437a5a8ebc00ad2473ee197f3de | /src/main/java/fr/norsys/fondation/services/RendezVousService.java | dd5437f03b60420a103250359bf6a9f73777dd7c | [] | no_license | akouzmohamed999/FONDATION_NORSYS | f0f0857f4f7533e911b800f036afcd79d19afd0f | aced6e59015303e25b68065f35e44e4ac3b792ee | refs/heads/master | 2020-12-24T20:24:43.867094 | 2017-06-22T03:17:34 | 2017-06-22T03:17:34 | 86,247,233 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 452 | java | package fr.norsys.fondation.services;
import java.util.List;
import org.springframework.stereotype.Service;
import fr.norsys.fondation.entities.RendezVous;
@Service
public interface RendezVousService {
List<RendezVous> findAllRendezVous();
RendezVous addRendezVous(RendezVous rendezVous);
RendezVous updateRend... | [
"akouz.mohamed999@gmail.com"
] | akouz.mohamed999@gmail.com |
d73574eb2cc04a2260de3242fa689d25c119f953 | 7d33dc35747cd5b703082e0551e17615c8e9f01e | /app/src/test/java/com/example/money_manager/ExampleUnitTest.java | ea13ceb9752e1bce1f8e918bef8a789f9a97da4f | [] | no_license | HaAnhHung/Money_Manager | 7442f4d532609371da97b1e6079009c08e3921a9 | 82af8632ec964561bb9ca8b9d758df62f11433a1 | refs/heads/master | 2022-11-25T04:44:58.710978 | 2020-07-29T13:22:19 | 2020-07-29T13:22:19 | 282,345,866 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 386 | java | package com.example.money_manager;
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 v... | [
"hahunguetk62@gmail.com"
] | hahunguetk62@gmail.com |
3c657464fbfe07ffab49875a459a193d613e8700 | 4bb83687710716d91b5da55054c04f430474ee52 | /dsrc/sku.0/sys.server/compiled/game/script/structure/structure_rollup.java | c218ee1a0d17d8b6b25cee92d6cd9b83779ea354 | [] | 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 | 6,798 | java | package script.structure;
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.utils;
import script.library.player_structure;
import script.library.city;
import script.... | [
"tmoflash@gmail.com"
] | tmoflash@gmail.com |
a4784bcc686722ecba9347074c0d125df70c3ea3 | 970361e96b0ea48a34557fa928b4df0d03441733 | /app/src/main/java/com/tinytongtong/thinkinjavapractice/chapter21/part03/CriticalSection.java | 089479ea2fce2559284cfbcbcfa1ece92d057fa4 | [
"Apache-2.0"
] | permissive | tinyvampirepudge/ThinkInJavaPractice | a61a20c145e6967fec8615dea154f6d227146a3e | 1b54ee85a22c927ae71773175639316abb5fe457 | refs/heads/master | 2020-04-16T17:56:04.554595 | 2019-01-24T06:31:22 | 2019-01-24T06:31:22 | 165,795,886 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,220 | java | package com.tinytongtong.thinkinjavapractice.chapter21.part03;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;
/*... | [
"tinytongtong@163.com"
] | tinytongtong@163.com |
000916e10661ae5b4d209b53c255bf65598e7f96 | 4a805860aad51bd8312c7d2265ccd15a0045e58d | /app/src/main/java/com/example/textrecognition/MainActivity.java | e02505672dfba4b12ac91c64c9e5eb2b9addbd7f | [] | no_license | nishusingh71/TextRecognition | 20941d5d66f5d500f06414172e241bf65190eed5 | 4b81017b13f73c92d7d91f987d86eb717931c784 | refs/heads/master | 2022-11-07T22:27:31.896344 | 2020-06-18T12:15:36 | 2020-06-18T12:15:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,049 | java | package com.example.textrecognition;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.ActivityCompat;
import android.Manifest;
import android.content.pm.PackageManager;
import android.os.Bundle;
import android.os.Persist... | [
"nishus877@gmail.com"
] | nishus877@gmail.com |
72d6536f185a44966f94d7f3d7051dcf6c444889 | 489dbf038dc81578ee3d1f3465e10d2148a7d3d5 | /web-ide/src/name/martingeisse/webide/nodejs/AbstractNodejsServer.java | 97b7ab981bb755c06b53220cf6096a2a4e8bb908 | [
"MIT"
] | permissive | MartinGeisse/public | 9b3360186be7953d2185608da883916622ec84e3 | 57b905485322222447187ae78a5a56bf3ce67900 | refs/heads/master | 2023-01-21T03:00:43.350628 | 2016-03-20T16:30:09 | 2016-03-20T16:30:09 | 4,472,103 | 1 | 0 | NOASSERTION | 2022-12-27T14:45:54 | 2012-05-28T15:56:16 | Java | UTF-8 | Java | false | false | 3,056 | java | /**
* Copyright (c) 2010 Martin Geisse
*
* This file is distributed under the terms of the MIT license.
*/
package name.martingeisse.webide.nodejs;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.net.URL;
import java.util.HashMap;
impo... | [
"martingeisse@googlemail.com"
] | martingeisse@googlemail.com |
11cb4ca6086ff268ec69b27e30438920da50ae2c | ef0c1514e9af6de3ba4a20e0d01de7cc3a915188 | /sdk/signalr/azure-resourcemanager-signalr/src/main/java/com/azure/resourcemanager/signalr/models/UserAssignedIdentityProperty.java | ed8151cb5eca8556ec698a9abe38ee64904f8731 | [
"LicenseRef-scancode-generic-cla",
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference",
"LGPL-2.1-or-later",
"CC0-1.0",
"BSD-3-Clause",
"UPL-1.0",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause"
] | permissive | Azure/azure-sdk-for-java | 0902d584b42d3654b4ce65b1dad8409f18ddf4bc | 789bdc6c065dc44ce9b8b630e2f2e5896b2a7616 | refs/heads/main | 2023-09-04T09:36:35.821969 | 2023-09-02T01:53:56 | 2023-09-02T01:53:56 | 2,928,948 | 2,027 | 2,084 | MIT | 2023-09-14T21:37:15 | 2011-12-06T23:33:56 | Java | UTF-8 | Java | false | false | 1,506 | java | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.signalr.models;
import com.azure.core.annotation.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;
/** Propertie... | [
"noreply@github.com"
] | Azure.noreply@github.com |
03c9bc9b3b398528ca2011ce1bb304bf63633ceb | a2f8f077036e2f0481337ed883d1e580f0f168ef | /JSP/7-Servlet/src/Servlet2.java | e333c50c63af5d6e32e0fe9113668f94c37c09a1 | [] | no_license | jake-jeon9/study | 39ce0e9e9310b9abf10d625f5aeb9a46ee6a05e8 | 6cff8e8c0f6b739c346f4a352cb3e677068459d5 | refs/heads/master | 2023-07-25T21:25:52.898493 | 2021-09-11T09:28:00 | 2021-09-11T09:28:00 | 369,456,920 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,193 | java |
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 Servlet2
*/
@WebServlet("/Servlet2")
... | [
"jakejeon1125@gmail.com"
] | jakejeon1125@gmail.com |
2d8b2260b497fcae2d4649dadfd4d1774cdbe538 | d73226d4cfb0d1a4609422c0753678777bee5eeb | /src/com/aof/webapp/action/party/EditPartyAction.java | 98b77403123df783fa62835ba30f6e553db1737e | [] | no_license | Novthirteen/PMS | 842132b8fd5d60e4b1b66716e741b4156b318959 | 65c8fd709bf6d88f80ee03341b9a7d950ace740f | refs/heads/master | 2021-01-16T18:28:03.582398 | 2014-04-04T03:27:37 | 2014-04-04T03:28:55 | 18,425,558 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 7,044 | java | /* ====================================================================
*
* Copyright (c) Atos Origin INFORMATION TECHNOLOGY All rights reserved.
*
* ==================================================================== *
*/
package com.aof.webapp.action.party;
import java.sql.SQLException;
import java.util.*;
... | [
"Novthirteen@gmail.com"
] | Novthirteen@gmail.com |
470261f8b9c91ba7669dbbba27aed650a2216212 | bf4c5069b5973843884b7f69332b982a94191579 | /src/Model/PointsCalculator.java | fa54a6d00b0aadf907d013c85309c3a2dde0f55d | [] | no_license | jamieeow/sushi-go | fdd755c455de49b0869b70a04856e89d60ad4576 | b16d26e296eb7ee542fff6d29c932621adfb7720 | refs/heads/master | 2022-11-06T10:19:40.457079 | 2020-06-21T17:56:57 | 2020-06-21T17:56:57 | 273,953,630 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,746 | java | package Model;
import java.awt.*;
import java.util.*;
import java.util.stream.Collectors;
//
/**
* A CALCULATOR OF POINTS FOR ALL KINDS OF SUSHI
*/
public class PointsCalculator {
private int tempuraCount;
private int sashimiCount;
private int dumplingsCount;
private int tofuCount;
private int... | [
"noreply@github.com"
] | jamieeow.noreply@github.com |
7105ee117daf2f60045c06b8dbfa38139e9d681a | eaec4795e768f4631df4fae050fd95276cd3e01b | /src/cmps252/HW4_2/UnitTesting/record_4312.java | 413212301a9e13d3dae8fad778fd9830bd63592b | [
"MIT"
] | permissive | baraabilal/cmps252_hw4.2 | debf5ae34ce6a7ff8d3bce21b0345874223093bc | c436f6ae764de35562cf103b049abd7fe8826b2b | refs/heads/main | 2023-01-04T13:02:13.126271 | 2020-11-03T16:32:35 | 2020-11-03T16:32:35 | 307,839,669 | 1 | 0 | MIT | 2020-10-27T22:07:57 | 2020-10-27T22:07:56 | null | UTF-8 | Java | false | false | 2,442 | java | package cmps252.HW4_2.UnitTesting;
import static org.junit.jupiter.api.Assertions.*;
import java.io.FileNotFoundException;
import java.util.List;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;
import cmps252.HW4_2.... | [
"mbdeir@aub.edu.lb"
] | mbdeir@aub.edu.lb |
50c6bed8e0f04a9039325666047d6afa343caa0b | 7a6d8138f553d6ae6f488d99da332264332a638d | /src/main/java/energyservice/ReservationRepository.java | e2cbb27b7fa9ec3c205844d69ae4f5e4492c566b | [] | no_license | Joon-se/reservation | 23d46e485e400d2978ed64a81775577dae44cdc1 | 795b1ad2910ba4d6bea222a3c222576fb561936a | refs/heads/master | 2022-11-03T02:46:46.923913 | 2020-06-19T00:51:56 | 2020-06-19T00:51:56 | 273,371,112 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 193 | java | package energyservice;
import org.springframework.data.repository.PagingAndSortingRepository;
public interface ReservationRepository extends PagingAndSortingRepository<Reservation, Long>{
} | [
"lokissmeve@hotmail.com"
] | lokissmeve@hotmail.com |
b449ab3e2e498dbf806392f6fc88846c12ddd775 | 72cbd420d57f970a6bfbf9cf4dc62f662e6a0ebb | /plugin/core/src/com/perl5/lang/perl/idea/configuration/settings/sdk/wrappers/Perl5RealSdkWrapper.java | d90f435685bfaa7bad561509c9f80c9ab12793d1 | [
"Apache-2.0"
] | permissive | xcodejoy/Perl5-IDEA | e36061de84cc1780ed76711190bb5ce4b05fa3f0 | 2179a9ab2e9006d4c5501a878f484293220046ac | refs/heads/master | 2020-09-19T09:15:35.960543 | 2019-11-23T08:46:28 | 2019-11-23T08:46:28 | 224,215,081 | 1 | 0 | NOASSERTION | 2019-11-26T14:44:56 | 2019-11-26T14:44:55 | null | UTF-8 | Java | false | false | 3,181 | java | /*
* Copyright 2015-2019 Alexandr Evstigneev
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or a... | [
"hurricup@gmail.com"
] | hurricup@gmail.com |
ddc5f5523dd6bebb8f0543d00b63137fc7175904 | 7c2ae7375b00e66838ea5c5ff1f1569cce47760a | /profiler-test/src/main/java/com/navercorp/pinpoint/test/classloader/TestClassLoader.java | 741e9a96ebdd90f612ac4ea15fb2c9d97dcc4b9f | [
"LicenseRef-scancode-generic-cla",
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0",
"DOC",
"CC-BY-3.0",
"GPL-1.0-or-later",
"CC-PDDC",
"MIT",
"CC0-1.0",
"GPL-2.0-only",
"LicenseRef-scancode-public-domain"
] | permissive | tank1314/pinpoint | 1bb74822a144d317ed58c434b222ed67468deaa4 | ad8b4ffeb50e29969f6be806699fcd7e9ef5b07c | refs/heads/master | 2020-03-26T22:54:12.392621 | 2018-08-21T07:40:38 | 2018-08-21T07:40:38 | 118,546,232 | 0 | 0 | Apache-2.0 | 2018-05-12T03:08:35 | 2018-01-23T02:32:45 | Java | UTF-8 | Java | false | false | 6,277 | java | /*
* Copyright 2016 NAVER Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... | [
"kun.tan@baozun.com"
] | kun.tan@baozun.com |
cde8afeba61d8b99031dd8af1052d053106c5de4 | 88a26e9f8195a6f2685843011d708995a431d0e7 | /app/src/test/java/com/example/restapiproject/MainActivityTest.java | a2510e83b7e323d828d960928be6ff8a268f9c8b | [] | no_license | ecluster/RestAPI-Project | b0cf027baa3e873347c1225f7c8e70304b7ca1b4 | 32353a8dea07ed672d58a4f9a40448663e038776 | refs/heads/master | 2023-07-18T06:41:03.206671 | 2021-09-04T04:16:44 | 2021-09-04T04:16:44 | 402,662,473 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,119 | java | package com.example.restapiproject;
import org.junit.Test;
import static org.junit.Assert.*;
import android.content.Context;
import java.util.ArrayList;
import java.util.List;
public class MainActivityTest {
@Test
public void emptyUserField() {
String username = "";
assertEquals(true, Main... | [
"ecluster@csumb.edu"
] | ecluster@csumb.edu |
46504b014963dc8d323c7ec7a364d96463828d9d | 292be53cc1aa136fb38e92dd8590a0b950edb465 | /BOJ2293.java | c027bd7b988777ab864993487f33a9c022a3f489 | [] | no_license | HYUNindaeyo/BOJ | 032c84c2a2a2e1f4d29a42cdb19932350a2244a0 | feff6130c3570f190b9c032364e6213893be403f | refs/heads/master | 2023-05-02T11:33:28.856144 | 2021-05-11T18:08:05 | 2021-05-11T18:08:05 | 323,780,628 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,324 | java | package 백준공부;
import java.util.*;
public class BOJ2293 {
static int dp[];
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
int k = scan.nextInt();
int num[] = new int[n+1];
int coin; // 미리 받아서 어딘가에 저장하는 게 아니라 그 때... | [
"noreply@github.com"
] | HYUNindaeyo.noreply@github.com |
280d6ad4ca525a00af8b364bc47e76fc6da3423c | 2aed8d637adf659ef354ce041437709453a99a84 | /src/com/sme/service/PlgUserService.java | 3f964d5c37dcf1d29e783ffe132259d9bf86af29 | [] | no_license | yaop104/plugins | abd963058334b20d7a261f47e1cb137821eb3134 | 13f4fd3c0e524ec3ee9036c4be9df5300556b2ab | refs/heads/master | 2020-05-21T13:30:45.790004 | 2016-10-10T21:02:06 | 2016-10-10T21:02:06 | 61,511,508 | 4 | 0 | null | null | null | null | UTF-8 | Java | false | false | 284 | java | package com.sme.service;
import com.sme.core.service.InterfaceBaseService;
import com.sme.entity.PlgUser;
public interface PlgUserService extends InterfaceBaseService<PlgUser> {
//================== begin ======================
//================== end ======================
}
| [
"1178251242@qq.com"
] | 1178251242@qq.com |
366b27dcb41a179d7aff4b41f4c696a751f2229d | 656e22d276f54b652202858f9fa1978c8993a17c | /src/api/AdminMenu.java | d18c8158a2a0ed49cb1f73784a991125097f5ba2 | [] | no_license | Indomie-glitch/Hotel-Reservation | d46ac8ad177f987f7533c9977868137e0fffedcf | 0c6ce1390c65ec2d2717d010b5938aa62d6232f5 | refs/heads/master | 2023-05-10T07:45:26.795371 | 2021-06-10T13:37:46 | 2021-06-10T13:37:46 | 367,333,150 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,015 | java | package api;
import model.Customer;
import model.IRoom;
import model.Room;
import model.RoomType;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Scanner;
public class AdminMenu {
public void start() {
boolean keepRunning = true;
Scanner scanner = ne... | [
"darthaarnav@gmail.com"
] | darthaarnav@gmail.com |
83e5815e49f2c42c0a5c2218c22b813c8a7e6656 | 4f4cd12cb6ee8fc86e5e932a602ac73dd057b411 | /pester-samples/src/test/java/fr/vergne/pester/samples/T02_JavaBean.java | f254e2635b9a42d4c1494926b42171d268583648 | [
"CC0-1.0"
] | permissive | matthieu-vergne/pester | 6da5ad8fda9c2b9dfa381b764dbc46d078974a1a | 851a3b1cc06fa950ab8801a7a82f031df005368f | refs/heads/master | 2021-03-02T04:06:10.310505 | 2020-04-13T23:59:03 | 2020-04-13T23:59:03 | 245,837,168 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 882 | java | package fr.vergne.pester.samples;
import java.io.Serializable;
import fr.vergne.pester.PesterTest;
import fr.vergne.pester.definition.DefinitionFactory;
import fr.vergne.pester.definition.PojoDefinition;
import fr.vergne.pester.samples.T02_JavaBean.Pojo;
class T02_JavaBean implements PesterTest<Pojo> {
@Override
... | [
"matthieu.vergne@gmail.com"
] | matthieu.vergne@gmail.com |
4b0e17b73b8751e965e2111bd8fe507884ee4e8c | 23639b38b8d6b3eb19330281aacebd97bd376e6e | /src/main/java/com/ieee19/bc/interop/pf/proxy/bitcoin/interfaces/IBitcoinService.java | 4357ec9988040aa7c56e7509b401cb98a87e2d15 | [
"Apache-2.0"
] | permissive | pf92/blockchain-interop | ccbe8193f4cc1232a21a15341986c0291b622bee | 708aea9ac4cab946422571fa28dd4177dc0cf425 | refs/heads/master | 2020-05-15T11:28:19.393523 | 2019-04-19T08:19:41 | 2019-04-19T08:19:41 | 182,229,142 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,501 | java | package com.ieee19.bc.interop.pf.proxy.bitcoin.interfaces;
import com.ieee19.bc.interop.pf.core.model.Block;
import com.ieee19.bc.interop.pf.core.exception.DataWritingFailedException;
import com.ieee19.bc.interop.pf.proxy.bitcoin.dto.blockcypher.FeePerKbInfo;
import com.ieee19.bc.interop.pf.proxy.bitcoin.exception.Bit... | [
"aragon@a1.net"
] | aragon@a1.net |
fc72aadcdecde1e3c49e83f0edb17b22887a3e9c | 82295c2d365176a00ec9dd4a7f67d5844b9a1296 | /magma-datasource-health-canada/src/main/java/org/obiba/magma/datasource/healthcanada/HCDrugsValueTable.java | afeb11acd0cdc579f48206859d4b9d45a68ecfb2 | [] | no_license | nuwimana/public-datasources | 46941bb6f9214ad499deca619b49be3db8490d17 | 219e7700f3ba66ebee43c4f6e26534dd5cec39f6 | refs/heads/master | 2021-01-15T21:49:53.312890 | 2013-06-17T14:43:06 | 2013-06-17T14:43:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,344 | java | package org.obiba.magma.datasource.healthcanada;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URL;
import java.nio.charset.Charset;
import java.text.ParseException;
import java.text.Simpl... | [
"yannick.marcon@obiba.org"
] | yannick.marcon@obiba.org |
93fd906c26e4c17dde3853ac0b752ce74e01c13e | 3d59c03c2688224293c75b3b182703947ecb03d2 | /PhotoAlbum91/src/controller/UserController.java | ea97e8b03e96a2cd238249982c11c40a74c3ae8c | [] | no_license | omarkhalil06/Software-Methodology | 9c709591258608bda824a4dc8ff9e81047ba7c3b | 9e1542d1561b50cf2292e0057aa03cda6b1c6ff1 | refs/heads/master | 2021-01-18T12:33:30.662356 | 2016-09-21T04:11:07 | 2016-09-21T04:11:07 | 68,773,879 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 9,137 | java | package controller;
import java.io.IOException;
import java.util.List;
import java.util.Optional;
import app.PhotoAlbum;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.scene.Node;... | [
"omarkhalil06@outlook.com"
] | omarkhalil06@outlook.com |
155f41a8adb47adf1fa621e42a1e28aa969f85cf | 4125e8bcfa6a94d5c6e131e9cd7f9731155980a1 | /java/Legacy/NewestSolver/hardware_connect.java | 2bc0446f973e61b8ef8eacb30e971b4565aec0a9 | [
"MIT",
"Apache-2.0"
] | permissive | pseudodennis/connect4ever | c80897f18730b97b35369bcec060929efc4b0636 | 7b5fa5ebcdc83e955157e6d0fd492e42ed95a1b3 | refs/heads/master | 2021-04-15T18:42:58.733099 | 2018-05-07T05:43:57 | 2018-05-07T05:43:57 | 126,410,471 | 4 | 4 | Apache-2.0 | 2018-05-06T18:26:24 | 2018-03-23T00:24:22 | Java | UTF-8 | Java | false | false | 3,966 | java | //package Legacy.hardware_connect;
import com.fazecast.jSerialComm.SerialPort;
import java.io.PrintWriter;
import java.util.Scanner;
/**
* @author nospa
*
*/
public class hardware_connect {
static SerialPort portSel;
static PrintWriter output;
/**
*
*/
static Scanner inputNum ;
public static b... | [
"pseudodennis.social@gmail.com"
] | pseudodennis.social@gmail.com |
de5922467ec6ce5c7d0c58f0d24c1e7ef7b9a949 | adf23b832fdb8729950240a722e6a58491fbdf36 | /metaModell/src/model/ToString$Visitor.java | d689a631177e4ec03d5feb38bbd4313339559196 | [] | no_license | TwoStone/hfp412-meta-model | 267ed336ffd4a527cd1619ed72a26a679380f352 | bdf7b4d24a99bc773358033f479b3b3692f0a3c6 | refs/heads/master | 2016-08-12T10:39:40.441134 | 2015-10-20T12:04:51 | 2015-10-20T12:04:51 | 44,603,541 | 1 | 0 | null | null | null | null | ISO-8859-1 | Java | false | false | 19,468 | java | package model;
import java.util.Iterator;
import model.visitor.MBooleanVisitor;
import persistence.Anything;
import persistence.PersistenceException;
import persistence.PersistentAccount;
import persistence.PersistentAccountManager;
import persistence.PersistentAccountTypeManager;
import persistence.PersistentActualP... | [
"walter.niklas@gmail.com"
] | walter.niklas@gmail.com |
4169d0014a06125526c45c38a15899b8c4ab1f80 | d1587ff23f80b268719195cf094e69cf16707ad4 | /hr-user/src/main/java/com/brazil/hruser/exceptions/BadRequestException.java | 51e906c9e12ab59649d37ab9f58551c9d360bc8c | [] | no_license | eduardomingoranca/ms-human-resources-spring | 6e09a26fba8e3ebb7bd846badfd62b1c3dee4dc4 | b13dd2bf444584cce9ba1e9141032037b1b51f5d | refs/heads/main | 2023-08-28T00:01:01.513303 | 2021-09-18T13:05:09 | 2021-09-18T13:05:09 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 330 | java | package com.brazil.hruser.exceptions;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
@ResponseStatus(HttpStatus.BAD_REQUEST)
public class BadRequestException extends RuntimeException {
public BadRequestException(String message) {
super(message);... | [
"eduardomingoranca@gmail.com"
] | eduardomingoranca@gmail.com |
871d60ed2074fe208e933f51fea37e7ff61352c8 | fe6ecbf29b0130662ae415d3b66af97af7094a70 | /Code/Work/FF/Decomp/C_100472_akr.java | abc9b1393c1687fb7d97d9895742f17792dd2aa3 | [] | no_license | joshuacoles/MineCraft-Patch-On-Launch-Client-old | 272db752d5bc94b02bb14c012276c92047b0b0c4 | 28055c66ecf3d3236155521e988acc3b7f0b08e6 | refs/heads/master | 2016-09-05T21:03:36.361801 | 2012-11-17T07:42:26 | 2012-11-17T07:42:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,627 | java | import java.util.Random;
public class C_100472_akr extends C_100200_aiq {
protected C_100472_akr(int var1) {
super(var1, C_100664_afg.field_109027_q);
this.field_106165_cl = 104;
this.func_106008_a(0.25F, 0.0F, 0.25F, 0.75F, 0.5F, 0.75F);
}
public int func_106013_d() {
return -1;
... | [
"josh@coles.to"
] | josh@coles.to |
f2c69ea255914348c257f3fc464f2c7a4a7c9629 | cc637e2f7ad19ceb7e23390c4fb2a04e2141aa5d | /acore/src/main/java/com/yl/core/utils/ImageManager.java | 83ba51dd8933e97bfd9853ee76004e47f9ab32cb | [] | no_license | Redoteam/MVPEasyArms | a246890fc7e33d3868283c491e091029e1e8d723 | 89026d295ae1d486bf81800a43e79b185f6d87b6 | refs/heads/master | 2020-04-09T22:17:17.066717 | 2018-12-07T03:57:20 | 2018-12-07T03:57:20 | 160,624,426 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,057 | java | package com.yl.core.utils;
import android.content.Context;
import android.widget.ImageView;
import com.yl.core.R;
import com.yl.core.delegate.AppDelegate;
import com.yl.core.factory.SingletonImageLoader;
import com.yl.core.http.imageloader.ImageConfig;
import com.yl.core.http.imageloader.ImageLoader;
/**
* Created ... | [
"18672989951@163.com"
] | 18672989951@163.com |
60e17a0bb464b2c0d3de252f16cc8752fe71ce26 | 5fb2edd24da3042e3def986666735412dabf6c40 | /Android/SecChat/app/src/main/java/net/i2p/client/streaming/impl/SchedulerPreconnect.java | 3f4855b96a20f696d3501a4af477cb12cbdb9398 | [
"MIT"
] | permissive | RazuvaevDD/I2PSecChat | 5b2796bd10f93d213bde90edf1c8d76d55881dbf | d26894c7849dadade8cc59c3ff390e20896f8dc5 | refs/heads/release | 2023-03-09T12:07:44.387095 | 2021-02-21T15:07:53 | 2021-02-21T15:07:53 | 315,027,754 | 1 | 6 | MIT | 2021-02-22T08:51:58 | 2020-11-22T12:04:56 | Java | UTF-8 | Java | false | false | 1,646 | java | package net.i2p.client.streaming.impl;
import net.i2p.I2PAppContext;
import net.i2p.util.Log;
/**
* <p>Scheduler used for locally created connections where we have not yet
* sent the initial SYN packet.</p>
*
* <h2>Entry conditions:</h2><ul>
* <li>Locally created</li>
* <li>No packets sent or received</li>
* <... | [
"Razuvaev_DD@mail.ru"
] | Razuvaev_DD@mail.ru |
78413e49964574f31ad4077dabbfd81297995b72 | 22f580c6ab811ce7d093a3668b4ff1b08dc72d04 | /CucumberTest/src/test/java/CucumberTest/CucumberTest/Test1.java | 5726a25995f4edc92732003c6b2367abf0df74ca | [] | no_license | snehasishdu/MyWork | 34ed0558cd12c55b038f88df5ed373c7be9d6e13 | 5ffa5017146dae9fe9886a5979b12ff4c1bb968f | refs/heads/master | 2021-01-19T15:55:43.072840 | 2018-01-16T04:56:57 | 2018-01-16T04:56:57 | 100,981,040 | 0 | 0 | null | 2018-01-18T05:27:11 | 2017-08-21T18:31:12 | HTML | UTF-8 | Java | false | false | 294 | java | package CucumberTest.CucumberTest;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.Assert;
import org.testng.annotations.Test;
public class Test1 {
@Test
public void method1() {
System.out.println("Hello World !!");
}
}
| [
"snehasishdu@gmail.com"
] | snehasishdu@gmail.com |
81bd256604cfdc0ca60f2d9b893e587145f2aae9 | 1328303f5adc79c093e97788b198faff347c8069 | /springannotation/src/test/java/com/ntuzy/test/IOTest_Property.java | c047f7ce4fd502a0affa06e305c8d26f26e00116 | [] | no_license | IamZY/Spring | 850bebaf851b34fac5dc5e38039894aee0a9ec69 | 0254ae7361e997f6bf3deef281cd9c464b0cb073 | refs/heads/master | 2022-12-12T12:20:42.520179 | 2020-07-15T03:50:59 | 2020-07-15T03:50:59 | 241,874,223 | 1 | 0 | null | 2022-12-09T01:14:46 | 2020-02-20T12:06:48 | Java | UTF-8 | Java | false | false | 721 | java | package com.ntuzy.test;
import com.ntuzy.bean.Car;
import com.ntuzy.bean.Person;
import com.ntuzy.config.MainConfigOfLifeCycle;
import com.ntuzy.config.MainConfig_Pro;
import org.junit.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
/**
* @Author IamZY
* @create 2020/2/20 20:... | [
"562018301@qq.com"
] | 562018301@qq.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.