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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0b5177fc7df40f25f178b449578ec2613b8b4863 | bc216d7d120fbba80afb7c82b133f0dd3ccc6953 | /Quill-API/src/main/java/com/aicquill/Quill/API/QuillApiApplication.java | ada86f0cdf15f979ce92c145cceaf41049581857 | [] | no_license | LPinto98/Spring-Boot-API | 82e78b037390154274aa9243a18b46c23bd92b50 | 58b0eaefc7bf74570a65b0db83a5237c8c66de1f | refs/heads/master | 2023-04-05T07:32:55.107044 | 2021-04-22T06:35:02 | 2021-04-22T06:35:02 | 360,414,768 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 318 | java | package com.aicquill.Quill.API;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class QuillApiApplication {
public static void main(String[] args) {
SpringApplication.run(QuillApiApplication.class, args);
}
} | [
"larissa.pinto@ibm.com"
] | larissa.pinto@ibm.com |
7e98730bea7965708fd6a42b03d0ea214e545243 | 19172e8240eb9b8d0f2052f35b2038ece71df694 | /src/HomeWork01_05/HW01_05.java | 47e6dac26fbf9bb7daab36f290d5a552720fc1a1 | [] | no_license | viktoper/java-lessons-homework | 88fa81a311339f3acc952c37310e6dfd981eb1e2 | 66cadf55ee3cfdb816a98cd3fb3d4753157c2702 | refs/heads/master | 2020-03-17T04:13:52.845259 | 2018-05-20T07:13:19 | 2018-05-20T07:13:19 | 133,267,581 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 423 | java | package HomeWork01_05;
import java.util.Scanner;
import java.math.*;
public class HW01_05 {
// HW_01.5
public static void main(String[] args) {
// input x and print result x - 5%
Scanner scan = new Scanner(System.in);
System.out.println("Input value for X:");
double dwX = scan.nextDouble();
double dw... | [
"v.perestukin@gmail.com"
] | v.perestukin@gmail.com |
b165709d4e8b28e0fdd0e2def012bf3e5537aefb | 155d2634387884ef878a4692b5b30e6e2e99e49e | /Java入门/src/learn03String/Demo4String.java | 21ccb268960e8d3ac4ae531ecf7f32d345c211f4 | [] | no_license | BuYaoNiLiKai/Java | f3dc5e4765866cfdcc5c1dfabfc089d3cce02ea5 | d40911c210b8029381b50b034dcae387aa2be050 | refs/heads/master | 2023-07-08T14:59:43.222234 | 2021-08-13T06:23:42 | 2021-08-13T06:23:42 | 395,538,479 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,101 | java | package learn03String;
/*
String 当中与获取相关的常用方法有:
public int length():获取长度
public String concat(String str):将当前字符串和str连接
public char charAt(int index):获取指定索引位置的字符
public int indexOf(String str):查找参数字符串在本字符串当中首次出现的索引位置,如果没有返回-1值
*/
public class Demo4String {
public static void main(String[] args) {
int lengt... | [
"1923667524@qq.com"
] | 1923667524@qq.com |
ff84ee103459f5d69e934e02419eb5223e286d69 | 3e3a5e2643e4ed8519ecfd6b66ae937f2da42939 | /BasicJava/NoMultipleInheritanceDemoApp/InheritanceDemo/src/C.java | b0ab9ceab058cbf65ddc626bab699ae9d0f6169a | [] | no_license | neel2811/Java | a5249b19b3c3923c44f5b9528adee7a54a978be6 | fcafcf634cbf9ce849ecf43bf8e05f770cb85ac1 | refs/heads/master | 2021-10-26T03:42:57.532886 | 2017-03-24T10:25:27 | 2017-03-24T10:25:27 | 87,059,721 | 0 | 1 | null | 2017-04-03T09:50:10 | 2017-04-03T09:50:10 | null | UTF-8 | Java | false | false | 530 | java |
class A
{
public void displayMessage()
{
System.out.println("Calling Class A displayMessage method");
}
}
class B
{
public void displayMessage()
{
System.out.println("Calling Class B displayMessage method");
}
}
class C extends A,B //suppose if it were
{
public static void main(... | [
"ramram_43210@yahoo.com"
] | ramram_43210@yahoo.com |
ea2fdcfe149ba7e605c8e34174fc44c9ff98d6d3 | 90252f67a5b442c42970ab0965a6770846080074 | /demo/src/main/java/com/wishes/demo/repository/profile/ProfileRepository.java | 411e95815feb39a0e3c31911c117feb2643e7300 | [] | no_license | nzarinskaya/wishes | d50a2e33ed6f260d3feed4086ba7a0c97db30b27 | 05c2015ff786e07d255b72a5bce430c205896039 | refs/heads/master | 2023-05-30T20:12:14.178205 | 2021-06-24T10:28:43 | 2021-06-24T10:28:43 | 330,414,490 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 400 | java | package com.wishes.demo.repository.profile;
import com.wishes.demo.entity.profile.ProfileEntity;
import com.wishes.demo.entity.user.UserEntity;
import com.wishes.demo.repository.BaseRepository;
import java.util.Optional;
public interface ProfileRepository extends BaseRepository<ProfileEntity,Long> {
Optional<Pro... | [
"you@example.com"
] | you@example.com |
72139bd6c6c5d62e30df5e6cc5d1a7091809b91b | 194996fe54ff0c6df65451298e515a5aba256e85 | /swim2Business/ejbModule/it/polimi/swim2/persistence/Helprequest.java | 89189ee9dddd90ff8bf221ea941ad113c07d34a6 | [] | no_license | DavideB/ingsw2-project-swimv2-bertolotti-libori | 27bb8e0f2bc8771ae4540ce3b6c18d320096a6a1 | c278025765a710074c851d1416c27bd674479aac | refs/heads/master | 2021-01-10T18:04:30.318449 | 2013-01-20T18:54:24 | 2013-01-20T18:54:24 | 46,337,975 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,025 | java | package it.polimi.swim2.persistence;
import java.io.Serializable;
import javax.persistence.*;
import java.util.Date;
/**
* The persistent class for the HELPREQUEST database table.
*
*/
@Entity
@Table(name="HELPREQUEST")
@NamedQueries({
@NamedQuery(name="Helprequest.findAll",
query="SELECT h FRO... | [
"emanuele.libori@gmail.com"
] | emanuele.libori@gmail.com |
05510984980c557d3e9f034962f2bfe41b9a84cc | a500b8f800fe0b1df31cdea70358d9c1186d0de9 | /src/org/obinject/sample/terreno/UniqueOneTerreno.java | 38114ca1ac5bb6c88388329a2d79818474bb4214 | [] | no_license | joaorenno/obinject | e1c0d40e64b88e3eaa5114a0a9875524bbbf7c3a | e79a7993e5cdd308e3e6bafe11788807038bc4a2 | refs/heads/master | 2021-01-01T15:24:01.136442 | 2017-08-01T00:01:55 | 2017-08-01T00:18:02 | 20,874,558 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,567 | java | package org.obinject.sample.terreno; import org.obinject.block.Page; import org.obinject.block.PullPage; import org.obinject.block.PushPage; import org.obinject.meta.Sort; import org.obinject.meta.Uuid; import org.obinject.storage.KeyStructure; public class UniqueOneTerreno extends $Terreno implements Sort<UniqueOneTer... | [
"administrator@JOAORENNO-MacBook-Air.local"
] | administrator@JOAORENNO-MacBook-Air.local |
5053c79ef25dc0bc7d5727835584f33999996ebe | 1c6513f6a70eb78c139aeb1e9b5847d484464d17 | /src/main/java/com/lin/common/thread/SemaphoreTest.java | d3206c577ea4cfe6f74299cea99ae51f15ba6148 | [] | no_license | langyan/lin-common | 2b242ef2f294a685a3e94926fe2d3d732909dbe4 | da8a9115cd3c3899ab1200f66b3ebfc45df56e15 | refs/heads/master | 2023-05-29T02:19:44.736948 | 2023-05-26T00:57:28 | 2023-05-26T00:57:28 | 16,794,611 | 0 | 0 | null | 2023-05-23T20:15:53 | 2014-02-13T06:55:31 | Java | UTF-8 | Java | false | false | 1,023 | java | package com.lin.common.thread;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Semaphore;
public class SemaphoreTest {
public static void main(String[] args) {
// 线程池
ExecutorService exec = Executors.newCachedThreadPool();
// 只能5个线程同时访问
final... | [
"langyan.lin@163.com"
] | langyan.lin@163.com |
da7cfedf969a166df6240526442825ef47de7547 | 3554e8c9edc6cadc905a4446a28fd78be0790829 | /QQSpace/service/src/main/java/com/qqSpace/service/CommentService.java | 27239aaf33c49cbab388ab7b588391767305ad31 | [] | no_license | flyluge/QQSPACE2.0 | 2f0ceca0bdbc9a256fa53377e1b948a34a18780e | 0195e1eaab9511fa0434511ddcfec8ec1c9a6d76 | refs/heads/master | 2022-07-04T02:31:18.786293 | 2019-07-15T10:18:48 | 2019-07-15T10:18:48 | 194,366,768 | 0 | 0 | null | 2022-06-21T01:22:00 | 2019-06-29T05:08:44 | Java | UTF-8 | Java | false | false | 411 | java | package com.qqSpace.service;
import com.qqSpace.domain.Comment;
import com.qqSpace.util.PageBean;
public interface CommentService {
PageBean<Comment> findCommentByAid(Integer currpage,Integer pagesize,Comment comment);
PageBean<Comment> findCommentByUid(Integer currpage, Integer pagesize, Comment comment... | [
"1378413901@qq.com"
] | 1378413901@qq.com |
021a69696ed97fc6dc762b3b60cd0d15ad5ef4b6 | ab2cd6ec37e935ba819c7f12a1401df9cefd582f | /Classical/src/main/java/prv/zielony/transaction/analyst/classical/services/DefaultAccountsService.java | 2755db285c60173cad471a02f0f11cf4d3f2c708 | [] | no_license | Saevel/TransactionAnalyst | 2071bbaf31eca008856a64cbe2f17f0092cf2cdd | 92b7fce70a09c5977e7695cb1ca442e972ff4b61 | refs/heads/master | 2016-08-12T13:25:12.303829 | 2016-03-15T08:06:19 | 2016-03-15T08:06:21 | 52,505,281 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,375 | java | package prv.zielony.transaction.analyst.classical.services;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import prv.zielony.transaction.analyst.classical.dao.AccountsDao;
import prv.zielony... | [
"kamil.krystian.owczarek@gmail.com"
] | kamil.krystian.owczarek@gmail.com |
298a7efac2da18f1ac834f3281bcf000d63d5293 | 9649b262fdd58e8f8d642483b44817f84929221c | /ea-server-layer/qrcode-server/src/main/java/com/bugjc/ea/qrcode/core/enums/package-info.java | d9b4f6a63982f0f83c84d2255c80ecafef6da9cf | [
"MIT"
] | permissive | a2393439531/quick-ea | d5a8cee00bcda2137da11afd7f1c94aa0f557424 | e1f6a5796bdb985914066b991c1dcdd24d4fb8bd | refs/heads/master | 2020-05-17T12:40:02.819904 | 2019-04-11T01:11:26 | 2019-04-11T01:11:26 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 80 | java | /**
* @author aoki
* @date ${date}
*/
package com.bugjc.ea.qrcode.core.enums; | [
"2915683aa"
] | 2915683aa |
32d4fda8fefed4eba0c8bd5c40349020be7da066 | 6b070ea04beadd9ed1ea485520f8764ae36250fd | /src/com/revature/util/ConnectionFactoryPostgres.java | 01175a39b523f1aae8b4d72c41aa0f51fbc90d6d | [] | no_license | 2102Mule-Nick/diego-franchi-codingeval- | 2b2136f2f9858d7a7cd0c58e14af4f0e04fe3d23 | b631eb749aabbc934f848fd279552d040eaa6dcc | refs/heads/main | 2023-03-18T11:50:32.119577 | 2021-03-17T21:02:39 | 2021-03-17T21:02:39 | 348,850,680 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,360 | java | package com.revature.util;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import org.apache.log4j.Logger;
public class ConnectionFactoryPostgres {
Logger log = Logger.getRootLogger();
public static String URL;
public static String USERNAME;
public static String PASS... | [
"diegofranchi777@gmail.com"
] | diegofranchi777@gmail.com |
1190b02fb100cfab206a4b5b976bb6cb8e311ccb | 4b5fce6717a0259cc014118168755c833bc87aee | /src/tips/concurrent_demo/Demo8.java | c984090116e7352f5d176cedfdbc5ce61efb9f34 | [] | no_license | dulimao/MyJavaProject | ad8e82d2fcb2ae36789e5855e1db508be38eeb0f | b045f256495f570eeed6bdaef8032c18f39a0738 | refs/heads/master | 2020-04-14T01:08:39.905889 | 2019-04-07T14:22:35 | 2019-04-07T14:22:35 | 163,553,069 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,987 | java | package tips.concurrent_demo;
import java.util.concurrent.TimeUnit;
/**
*@author: 杜立茂
*@createDate : 2019/3/24 15:33
*@description: 等待/通知机制经典范式
*/
public class Demo8 {
private static boolean flag = true;
private static final Object lock = new Object();
public static void main(String[] args) throws I... | [
"dlmazz_global@163.com"
] | dlmazz_global@163.com |
ce7fcaec882518e1b1a1cce9d60315906b63a2aa | a321ceca90adf86b5e1c1aae4cfe333788a0899d | /src/main/java/com/example/bookstore/model/Book.java | 24d5f672a502a913f59db0492e514d4b535dc3d1 | [] | no_license | SdaJavaTorun/SpringBookStore_AR | 2512aed4ef71db6f3ead9465bd5e6de0c4c03b83 | 259239d3abcdcb389a22bea0b91cb07b7ba2057c | refs/heads/master | 2021-01-25T04:15:55.387045 | 2017-06-06T10:02:39 | 2017-06-06T10:02:39 | 93,419,638 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,632 | java | package com.example.bookstore.model;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;
import java.util.Objects;
@Document(collection = "book")
public class Book {
@Id
private String id;
private String title;
private String author;
publ... | [
"arczir@gmail.com"
] | arczir@gmail.com |
c5ea32bd78006cd93e5304f4e721caca96d7b093 | abc27efaf2351e7c2e3dd1e3ae0b89b6e140f023 | /kaas/kaas-service/src/main/java/com/thinkingtop/kaas/services/model/ExclusiveKey.java | 169f7a3e143acc2bc74b3cfd86cd57e14be1025a | [] | no_license | marquisthunder/newarch | a9cb05d5432a2a91108e8401fabdc1a5dff07d6f | 76bb5779fdf665afa7b6f6201060c0d966188506 | refs/heads/master | 2020-03-30T22:57:06.962156 | 2012-11-28T08:57:36 | 2012-11-28T08:57:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,377 | java | package com.thinkingtop.kaas.services.model;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
/**
* It is with the database correspond... | [
"954068039@qq.com"
] | 954068039@qq.com |
cffcc312a9af7f78ae6e643682de9ff62ca092e7 | 2bb958470a8c35feb23fb6586cbc517308258ae5 | /Script-Java/org/sikuli/script/ScreenUnion.java | 8a26a1f1c98c75a84f0f0eb735cea8987d753977 | [] | no_license | dkean/Sikuli12.11 | 128a6a6fdacd99e7654babc2306d1a24312dab5b | 3db847577d79e38f85bfe688ca07c9e993718e95 | refs/heads/master | 2021-01-15T22:38:17.559128 | 2013-04-05T12:42:10 | 2013-04-05T12:42:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,911 | java | /*
* Copyright 2010-2011, Sikuli.org
* Released under the MIT License.
*
*/
package org.sikuli.script;
import java.awt.*;
import java.awt.image.*;
public class ScreenUnion extends Screen {
private Rectangle _bounds;
public ScreenUnion(){
super();
}
public int getIdFromPoint(int x, int y){
... | [
"info@its-me-raiman.de"
] | info@its-me-raiman.de |
136eeece478d672108cd5b702e40d339e212a243 | b08b8ae1b8bcbcf20282acd8a6b7683aee845cb0 | /app/src/main/java/com/crazydev/funnycircuits/electronic/oldmath/Variable.java | 6c76ffca8c671ad3be29201fcda100813e86cfe0 | [] | no_license | dudchenko610/-Transient-processes-in-RLC-circuits | 6814c87b168540f94318ead2669a7795ec4d4c97 | b32b489368435869321f2baff3e3b8805965a74e | refs/heads/master | 2021-07-11T16:23:03.415548 | 2021-05-24T08:24:15 | 2021-05-24T08:24:15 | 245,475,233 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 297 | java | package com.crazydev.funnycircuits.electronic.oldmath;
public abstract class Variable {
public enum VariableType {
CURRENT,
VOLTAGE
}
boolean isDerivative = false;
boolean isPureResistive = true;
VariableType type;
public abstract String getLabel();
}
| [
"rusland610@.gmail.com"
] | rusland610@.gmail.com |
a033a5e4c227d4c8500b3e951ddc1877de60befa | b3e562d1b96cd8c801cea861887d379905f8b302 | /src/main/java/day1/classroom/Factorial.java | f31a5bb8d50945ad01b14483e5a2d3ee1d92c5ba | [] | no_license | Roopamanickam/SeleniumTraining | 4abf81ad988797dbe9068a9bb5affd658804c22b | ed623e3074ed54afe3ea19d8c7caeb1fd0f211eb | refs/heads/master | 2020-09-16T10:54:14.770269 | 2019-12-13T17:33:04 | 2019-12-13T17:33:04 | 223,747,747 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 952 | java | package day1.classroom;
public class Factorial {
/*
* Goal: Find the Factorial of a given number
*
* input: 5
* output: 5*4*3*2*1 = 120
*
* Shortcuts:
* 1) Print : type: syso, followed by: ctrl + space + enter
* 2) To create a 'for' loop: type 'for', followed by ctrl + space + down arr... | [
"Anand@Anand-Laptop"
] | Anand@Anand-Laptop |
9c0550fc62303ff5c712fd9e1943cadc74997c41 | 6db22ea29419dc79b1dcde040d7aac4b42cd791e | /src/main/java/hei/devweb/traderz/entities/Favori.java | b755a3a5abd458d1604f26a9fafda66c43b87bfe | [] | no_license | louisreq/projetYesOrigininal | 81309b0f2ad085f32ed6173978bea7a65a8e9d15 | c5389db2458638d0ce6a2d0368c5ac6ecf4ca163 | refs/heads/master | 2023-01-21T06:55:59.800704 | 2020-11-24T11:31:13 | 2020-11-24T11:31:13 | 315,613,072 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,213 | java | package hei.devweb.traderz.entities;
public class Favori {
private Integer id_favori;
private Integer id_user;
private Integer id_salle;
private String nom_campus;
private String nom_batiment;
private String nom_etage;
private String nom_salle;
private String principale_or_secondaire;
... | [
"benoit.drogou@hei.yncrea.fr"
] | benoit.drogou@hei.yncrea.fr |
63d2cd824d585f06b0e1a0de0a49b61eaa211bf2 | 40ad7f3cbfcc711d0fe40c2becde9b726dd35d86 | /query/spark-2.1/q54/java/q54_jobid_9_stageid_11_shuffleTask_14_execid_1.java | 4a6e06d617e7dbe0d461e2897cc3440198157527 | [] | no_license | kmadhugit/spark-tpcds-99-generated-code | f2ed0f40f031b58b6af2396b7248e776706dcc18 | 8483bdf3d8477e63bce1bb65493d2af5c9207ae7 | refs/heads/master | 2020-05-30T19:39:55.759974 | 2017-11-14T09:54:56 | 2017-11-14T09:54:56 | 83,679,481 | 1 | 1 | null | 2017-11-14T10:45:07 | 2017-03-02T13:15:25 | Java | UTF-8 | Java | false | false | 2,244 | java | /* 001 */ public java.lang.Object generate(Object[] references) {
/* 002 */ return new SpecificUnsafeRowJoiner();
/* 003 */ }
/* 004 */
/* 005 */ class SpecificUnsafeRowJoiner extends org.apache.spark.sql.catalyst.expressions.codegen.UnsafeRowJoiner {
/* 006 */ private byte[] buf = new byte[64];
/* 007 */ private... | [
"kavana.bhat@in.ibm.com"
] | kavana.bhat@in.ibm.com |
4a78669adb85da225437359fac3e2eca66e3bf97 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/18/18_09341d5f890408fa25ef17937b818a9c8316c3ee/ComposeFormFragment/18_09341d5f890408fa25ef17937b818a9c8316c3ee_ComposeFormFragment_s.java | 3eec51b8eaf2f8a1cae7c2f604c9c34b12182bf9 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 5,019 | java | /*
* Copyright (C) 2012 Brian Muramatsu
*
* 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 applicabl... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
4d90fb69db8804d07c6e20fa2ece5c5a5b083312 | b82aebffe575bcca8560d64df44ab4f188c4e240 | /src/main/java/com/teccsoluction/tecfood/util/SituacaoItem.java | daf8fdf482c667c8e1a76de0213517c766bdbe94 | [] | no_license | windsonleo/TecFood | 44115ada804b324445a6ed32285555adfdc6fee3 | 2cccf3f72329920f32cfad1e9a6869248ba968f1 | refs/heads/master | 2021-04-09T17:54:23.387256 | 2018-03-23T21:15:54 | 2018-03-23T21:15:54 | 125,667,970 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 224 | java | package com.teccsoluction.tecfood.util;
public enum SituacaoItem {
AGUARDANDO, EM_EXECUCAO, PRONTO, INTERROMPIDO, FECHADO, CANCELADO;
SituacaoItem() {
// TODO Auto-generated constructor stub
}
}
| [
"windsor_melo@hotmail.com"
] | windsor_melo@hotmail.com |
492ddc4e86eb6d47b638ad898f7112eb3510932f | aa47a3df7a9f50c3586cf629d4c1349e0cff5b6d | /app-hotels/src/main/java/com/etb/app/model/AbstractPage.java | 9f33ec0ea36f7558847be774f9082d3beb5c8e2b | [] | no_license | ortal83cohen/hotels | 69c631b4ca53760a702c97293d11eb6934a2048a | d616d45a1f5eef8345e41cda97458a7caff18569 | refs/heads/master | 2021-01-10T05:58:41.772262 | 2016-02-23T19:02:01 | 2016-02-23T19:02:01 | 50,831,676 | 1 | 2 | null | null | null | null | UTF-8 | Java | false | false | 380 | java | package com.etb.app.model;
import com.tech.freak.wizardpager.model.ModelCallbacks;
import com.tech.freak.wizardpager.model.Page;
/**
* @author alex
* @date 2015-11-19
*/
public abstract class AbstractPage extends Page {
protected AbstractPage(ModelCallbacks callbacks, String title) {
super(callbacks, ... | [
"ortal.cohen@easytobook.com"
] | ortal.cohen@easytobook.com |
93d02d40eb951302a964e7284a934cf93d0e816b | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/9/9_4af7a3a066728a0c287603ccf496dd981ec23208/AbstractXmlGenerator/9_4af7a3a066728a0c287603ccf496dd981ec23208_AbstractXmlGenerator_t.java | 624e9e9ae0dd1429c90c59e1dde8ddb220f87e77 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 4,830 | java | /**
* Copyright (C) cedarsoft GmbH.
*
* Licensed under the GNU General Public License version 3 (the "License")
* with Classpath Exception; you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.cedarsoft.org/gpl3ce
* (G... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
21218f59013f97ce6c326faf03835dbac5700eb0 | c885ef92397be9d54b87741f01557f61d3f794f3 | /tests-without-trycatch/JacksonCore-25/com.fasterxml.jackson.core.json.ReaderBasedJsonParser/BBC-F0-opt-70/11/com/fasterxml/jackson/core/json/ReaderBasedJsonParser_ESTest.java | 4377e1aa3a3657813328ea01f5d25a33b5a2508f | [
"CC-BY-4.0",
"MIT"
] | permissive | pderakhshanfar/EMSE-BBC-experiment | f60ac5f7664dd9a85f755a00a57ec12c7551e8c6 | fea1a92c2e7ba7080b8529e2052259c9b697bbda | refs/heads/main | 2022-11-25T00:39:58.983828 | 2022-04-12T16:04:26 | 2022-04-12T16:04:26 | 309,335,889 | 0 | 1 | null | 2021-11-05T11:18:43 | 2020-11-02T10:30:38 | null | UTF-8 | Java | false | false | 1,452,842 | java | /*
* This file was automatically generated by EvoSuite
* Thu Oct 21 03:43:13 GMT 2021
*/
package com.fasterxml.jackson.core.json;
import org.junit.Test;
import static org.junit.Assert.*;
import static org.evosuite.shaded.org.mockito.Mockito.*;
import static org.evosuite.runtime.EvoAssertions.*;
import com.fasterxm... | [
"pouria.derakhshanfar@gmail.com"
] | pouria.derakhshanfar@gmail.com |
d84765a8300e38d82bed727dd049531d33036e58 | d8c477dc3c7f74ce0c0d80c8e13bdde590d56ea4 | /src/testquery5.java | 0b819e48079dd7f7330a97208ebcd6f0d3dc4d40 | [] | no_license | yeyue910107/MR-Packer | 116405688d31b8e11cc1352323e1695bb3f0a967 | 0cf008e94ef110d005de2d4221839e3f734fe95e | refs/heads/master | 2020-05-21T01:03:39.676993 | 2013-12-31T06:14:59 | 2013-12-31T06:14:59 | 5,734,751 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,373 | java | public static class Map extends Mapper<Object, Text, Text, Text>{
private String filename;
private int filetag = -1;
public void setup(Context context) throws IOException, InterruptedException {
int last_index = -1, start_index = -1;
String path = ((FileSplit)context.getInputSplit()).getPath().toString(... | [
"yeyue@ubuntu.(none)"
] | yeyue@ubuntu.(none) |
5725a1fe61f6555adbfac508999f3557b574afc0 | 4cf254301011908f8fe90b5bb58a1ab119de18b8 | /JDK8/src/methodreferences/EmployeeProvider2.java | dc90ba962d3b5eb1df103873675a4c17e908b25b | [] | no_license | shrivastava-prateek/learning-java | 8ac82f7f9884fdf732f6c347a626ff8e650bcfbd | 4a2c3e19196b00e67484b11314d12ea81f3c1f58 | refs/heads/master | 2021-04-12T08:27:40.874490 | 2018-08-21T13:06:46 | 2018-08-21T13:06:46 | 125,984,912 | 0 | 0 | null | 2020-07-03T22:17:24 | 2018-03-20T08:29:52 | JavaScript | UTF-8 | Java | false | false | 248 | java | package methodreferences;
public interface EmployeeProvider2 {
Employee getEmployee();
}
/*class EmployeeProvider implements EmployeeProvider2{
@Override
public Employee getEmployee() {
Employee emp = new Employee();
return emp;
}
}*/ | [
"prateek_shrivastava@persistent.com"
] | prateek_shrivastava@persistent.com |
d4d31d2625a9d0ac60e010167f4bcbdec8a75741 | 8f1accfa870091ec1afb790c44bb0d139cac559e | /projects/common/src/main/java/org/thesis/common/Tickets/ExtendedTaskTicketResponse.java | b1b2bec79f2fabf3239e0bda1aa10b7107c495ff | [] | no_license | turingmachinerepair/masters-thesis | 83ba167c84c5fedaa312955dcc8ba0aeebe43d0f | b501002f55fbaeed1e7fcd6c462eff68184429de | refs/heads/main | 2023-05-06T04:37:33.701135 | 2021-05-30T16:06:39 | 2021-05-30T16:06:39 | 345,714,699 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 787 | java | package org.thesis.common.Tickets;
import com.fasterxml.jackson.annotation.JsonSetter;
import lombok.Data;
import org.springframework.stereotype.Component;
import org.springframework.util.StringUtils;
import org.springframework.validation.Errors;
import org.thesis.common.Tickets.CompilationTaskTicket;
import java.util... | [
"phdinintegrals@localhost.localdomain"
] | phdinintegrals@localhost.localdomain |
8fa7488062a9c2ecaab42264d7e7ea2194c6376e | b8fc016f31e83399448f9f1b5e65d20554515fb7 | /src/main/java/com/hplus/kaoqin/querry/MerchantQuery.java | f95d8e33ff5e54b9644ded6e3dfd1bc7b058b0a3 | [] | no_license | JackyLiu-96/kaoqin | 006c53aed26f236fc0c4388c8049734771098a7c | cb9941e3f520538eefd53e7de6148465711f135c | refs/heads/master | 2023-02-06T02:16:32.274221 | 2020-12-26T15:36:07 | 2020-12-26T15:36:07 | 323,780,638 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 394 | java | package com.hplus.kaoqin.querry;
import lombok.Data;
import java.io.Serializable;
/**
* @Author Wangxiang
* @Date 2020/12/26 22:55
*/
@Data
public class MerchantQuery implements Serializable {
private static final long serialVersionUID = 1L;
private String id;
private String merchantName;
priva... | [
"wanho_three@qq.com"
] | wanho_three@qq.com |
11b2b218908071be5345c536e51ee6473c49685b | a53683cc9625349e0567cf9acf022dd2b7379132 | /src/test/java/com/vote/cb/voter/VoterJpaTest.java | a015109a3ee9d0c71721877bc507436b8e8e6995 | [] | no_license | chaibin0/VoteWeb | dea08821c2c2b5f1af2b24f2f6b9a2319d42d20a | caaddc9a7c2861bc3e2bb520b83c37935400ba4d | refs/heads/master | 2020-12-05T05:31:26.159100 | 2020-02-04T05:11:34 | 2020-02-04T05:11:34 | 232,021,070 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,741 | java | package com.vote.cb.voter;
import static org.assertj.core.api.Assertions.assertThat;
import com.vote.cb.apply.controller.dto.ApplyRequestDto;
import com.vote.cb.apply.controller.dto.VoterDto;
import com.vote.cb.apply.domain.Apply;
import com.vote.cb.apply.domain.ApplyRepository;
import com.vote.cb.apply.domai... | [
"chaibin0@kevoting.co.kr"
] | chaibin0@kevoting.co.kr |
bf833203bb86d056238e1816b4a239bdf509f3f4 | f45b50219a2487c774253847c4ecea60af3fe23e | /timetracker/timetracker-core/src/test/java/com/bbaron/timetracker/service/TimecardServiceTest.java | 236ccf793aec9ee7a98ef3906c178e093ed9cf9f | [] | no_license | bbaron/appfuse-timetracker | bf96eca04c3116f8a85ab97f24fc742b629a609e | af5cfbd5f0e72aed71dc76d18024ab11c052fe8e | refs/heads/master | 2016-08-11T21:58:59.378482 | 2009-02-09T00:38:03 | 2009-02-09T00:38:03 | 43,215,820 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,152 | java | package com.bbaron.timetracker.service;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import com.bbaron.timetracker.dao.mock.MockTimecardDao;
import com.bbaron.timetracker.dao.mock.MockUserDao;
import com.bbaron.timetracker.model.*;
import com.bbaron.timetracker.temporal.TimecardD... | [
"baron.br@7ac2fbcf-ae54-0410-8a8d-775b4cb24fee"
] | baron.br@7ac2fbcf-ae54-0410-8a8d-775b4cb24fee |
898fb3cb563a155ad004fc055502c38536c6d661 | d68842e6182cecad00cbb361b60297522cc7b358 | /spring-IOC-XML/src/main/java/com/hust/edu/property/MainArray.java | 831ca85338fc7c7d9e2b1dce5451502ad999511f | [] | no_license | Tjcug/SpringAction | 88d8c2f0e3d56d343fa1ecdb77b1608479b93aa5 | 120010a792af9b9d845c33366c9684bc09dd7108 | refs/heads/master | 2020-04-15T20:03:16.750646 | 2019-01-12T06:32:25 | 2019-01-12T06:32:25 | 164,976,873 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 608 | java | package com.hust.edu.property;
import com.hust.edu.pojo.PeopleArray;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* locate com.hust.edu.property
* Created by MasterTj on 2019/1/10.
*/
public class MainArray {
public static... | [
"798750509@qq.com"
] | 798750509@qq.com |
22c2163e5ad8f5791dd495cb078de366c3a873a7 | 98bcb36b307ce97f2e3a61c720bd0898c00d71f8 | /modules/dfp_appengine/src/main/java/com/google/api/ads/dfp/jaxws/v201505/DeactivateAdRules.java | 73d3f15da026d3d89b0b962566244d9eb13553dd | [
"Apache-2.0"
] | permissive | goliva/googleads-java-lib | 7050c16adbdfe1bf966414c1c412124b4f1352cc | ed88ac7508c382453682d18f46e53e9673286039 | refs/heads/master | 2021-01-22T00:52:23.999379 | 2015-07-17T22:20:42 | 2015-07-17T22:20:42 | 36,671,823 | 0 | 1 | null | 2015-07-17T22:20:42 | 2015-06-01T15:58:41 | Java | UTF-8 | Java | false | false | 888 | java |
package com.google.api.ads.dfp.jaxws.v201505;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
*
* The action used for pausing {@link AdRule} objects.
*
*
* <p>Java class for DeactivateAdRule... | [
"api.cseeley@gmail.com"
] | api.cseeley@gmail.com |
29c850dfdeb26d4bd7b055d60b715a427f864566 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/15/15_82642992b783d09242784896414861892afc8f9f/BasicRepositoryConnector/15_82642992b783d09242784896414861892afc8f9f_BasicRepositoryConnector_s.java | d6b0cd46c8d0830b92b2b0716e01d1711ed02099 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 22,978 | java | /*******************************************************************************
* Copyright (c) 2013 Sonatype, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
f6ab9a94f2a1135a8af2e63acedceab37606d4d6 | 6494431bcd79c7de8e465481c7fc0914b5ef89d5 | /src/main/java/com/coinbase/android/transfers/TransferSendController$$Lambda$1.java | e283e04a84935a219e2bb15097f3ca384596651f | [] | no_license | maisamali/coinbase_decompile | 97975a22962e7c8623bdec5c201e015d7f2c911d | 8cb94962be91a7734a2182cc625efc64feae21bf | refs/heads/master | 2020-06-04T07:10:24.589247 | 2018-07-18T05:11:02 | 2018-07-18T05:11:02 | 191,918,070 | 2 | 0 | null | 2019-06-14T09:45:43 | 2019-06-14T09:45:43 | null | UTF-8 | Java | false | false | 592 | java | package com.coinbase.android.transfers;
import rx.functions.Func0;
final /* synthetic */ class TransferSendController$$Lambda$1 implements Func0 {
private final TransferSendController arg$1;
private TransferSendController$$Lambda$1(TransferSendController transferSendController) {
this.arg$1 = transfe... | [
"gulincheng@droi.com"
] | gulincheng@droi.com |
37c4415c150c82ed739bb3db7d92034778ada89f | 3fb3a5f9e16b10fa7d2f33d528f553e043245367 | /src/main/java/com/bskyb/gdm/batch/reporting/business/ImportData.java | e3ffc40c1ec13673c97918e683107cd41e1f6fd9 | [] | no_license | LouisaLeightonSky/Reporting | c7eb4135a07175f06b998c023c8da03679b59387 | 7cd4fd2f006beb6c81f56486b1e9f4222c5271f4 | refs/heads/main | 2023-06-02T04:46:02.641958 | 2021-06-17T11:55:09 | 2021-06-17T11:55:09 | 378,905,647 | 0 | 0 | null | 2021-06-21T11:21:23 | 2021-06-21T11:21:23 | null | UTF-8 | Java | false | false | 1,245 | java | package com.bskyb.gdm.batch.reporting.business;
import com.bskyb.gdm.batch.reporting.model.LogResponse;
import org.springframework.http.HttpHeaders;
public interface ImportData {
/**
* The method generates the API url required to pull out he logs
* @param apiName : various options like Activity | Users ... | [
"sri.janani@sky.uk"
] | sri.janani@sky.uk |
f2774abea09eec5a995e32daa2f540413173d067 | ae611d38d61cff5b4cbd72f0976e66059bdff170 | /src/main/java/dao/Sql2oLocation.java | 25a0f179614f1d6aed8da4c766ddd8a6b25e78ed | [] | no_license | KellyEgesa/wildlife-tracker | fccfd79936c91668406a7b517ff0953384f99d52 | df72c4a54a2767b75504e92f7fac2c70f5d85afb | refs/heads/master | 2023-01-30T20:33:24.859952 | 2020-12-08T20:49:01 | 2020-12-08T20:49:01 | 318,508,352 | 0 | 0 | null | 2020-12-08T20:10:21 | 2020-12-04T12:22:35 | Java | UTF-8 | Java | false | false | 2,128 | java | package dao;
import models.Location;
import org.sql2o.Connection;
import java.util.List;
public class Sql2oLocation implements LocationDao {
@Override
public List<Location> getAll() {
String sql = "SELECT * FROM locations";
try(Connection con = DB.sql2o.open()){
return con.create... | [
"kelly.egesa@gmail.com"
] | kelly.egesa@gmail.com |
fa2f4d90ea73150015b295d5fda162ebc251b71f | be75d0a86ee968faeaef287408fd720ac8aa33e5 | /[0021][Merge Two Sorted Lists]/src/Solution/ListNode.java | 445fcd003798d3f28d05c102e16ad1e7be15da51 | [] | no_license | LeGriffon/leetcode | 73d9eb361201488a59ce0b02f0dcb0d5e9441029 | 5b19887121962b7f2a63bc9b7feda607b5071c3c | refs/heads/master | 2021-06-24T20:26:37.042456 | 2021-03-15T20:45:23 | 2021-03-15T20:45:23 | 203,959,784 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 130 | java | package Solution;
public class ListNode {
public int val;
public ListNode next;
public ListNode(int x) { val = x; }
} | [
"haoyuan.wang@sjsu.edu"
] | haoyuan.wang@sjsu.edu |
744d9df51b8e57235e4dd119caf3491c4a9f59d9 | eba1371b4f898574516ce81297bab2515992a56a | /dao/MahasiswaDao.java | bbdaeffe2b0c3dd50a73d6dacb2e7ba88b79c4e5 | [] | no_license | OliviaOktaviaSihombing/JavaFX-MVC-Information-System-Organization | 2d91d098c9843d6040be07874038f2d80c46118d | c3abe3fff7a915a9e949da3b9faa6d3f2616b8e2 | refs/heads/master | 2020-04-10T06:39:16.449828 | 2018-12-07T18:27:40 | 2018-12-07T18:27:40 | 160,856,994 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 671 | java | package org.kmsi.dao;
import java.util.List;
import org.kmsi.model.Mahasiswa;
public interface MahasiswaDao {
public void saveMahasiswa(Mahasiswa mahasiswa, String pathFoto);
public String getPath();
public void getFoto(String nim);
public List<Mahasiswa> getAllMahasiswa();
public String getURLfot... | [
"olivia.oktavia30@gmail.com"
] | olivia.oktavia30@gmail.com |
9abad7c9ea8df3bcfd64da5acf111882f59ae465 | 858c0eff6eddd0c4f26e32c71b3037b5a63fed52 | /src/Zuhe.java | ce93659122ea7dcf21684174805faf2322ac7663 | [] | no_license | wangchaun/workUtils | 2faf5f1bbddc368ef26c2dfeeda1e084f2e9ba2b | 64e38c17e24a1c669bf290dcaedf7575609851c3 | refs/heads/master | 2020-04-04T00:41:49.069300 | 2018-12-07T07:21:30 | 2018-12-07T07:21:30 | 155,659,470 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 803 | java | import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class Zuhe {
//全局变量,存储所有字符组合
List<String> list = new ArrayList<String>();
public void getNext(String begin, String[] s, int num) {
if (num > 1) {
for (int i = 0; i < s.length - num + 1; i++) {
... | [
"swang2_intern@xiaohongshu.com"
] | swang2_intern@xiaohongshu.com |
8d444c71e2538c5af10ffedc639becbfd4e0ae37 | 52f27921148d69e8ef235ac6b05e010e50cd04fb | /learnModel/src/main/java/com/thinkInJava/book/Thread/Model8/Tickets.java | dc6e7eb844fa4b789e852a88ecde88dd9a5ab18f | [] | no_license | guleidamu/springdemo2 | 7d049950ffb66c7bc456913c6b097954ed4d9c56 | d081197a9f6b7641f234e66d024240cb4e3a23d4 | refs/heads/master | 2022-06-23T09:43:52.595139 | 2020-07-17T06:43:02 | 2020-07-17T06:43:02 | 208,819,193 | 0 | 0 | null | 2022-06-17T03:29:14 | 2019-09-16T14:22:30 | Java | UTF-8 | Java | false | false | 1,611 | java | package com.thinkInJava.book.Thread.Model8;
import lombok.extern.slf4j.Slf4j;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* @ Author :damu
* @ Date :Created in 14:21 2020/6/24
* @ Modified By:
* @Version: 1.0.0
*/
@Slf4j
public class Tickets extends Thread{
public Tickets(String... | [
"364632363@qq.com"
] | 364632363@qq.com |
3da4ae3baee8d647615f15f289e16b89f2babfb3 | 31447899832d43eed4fe01b2d8c367bdc81b848c | /src/main/java/org/esupportail/publisher/domain/util/CustomDateTimeSerializer.java | f9a1e32fe279b2054c49359ee5787bf4e1f3813c | [
"Apache-2.0"
] | permissive | tolobial/esup-publisher | ec623ec6d924026294bbd29ef5586f1baf7b1078 | 0d23dca47a38dd2b4f6f02df5817d8011636fc15 | refs/heads/master | 2021-01-11T03:38:46.716454 | 2016-08-30T16:19:36 | 2016-08-30T16:19:36 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 935 | java | package org.esupportail.publisher.domain.util;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import org.joda.time.format.DateTimeFormat;
i... | [
"julien.gribonvald@gmail.com"
] | julien.gribonvald@gmail.com |
280ca4f119a2465bff636e29272aeac362a7059c | 49a31e569ba233a5fc5c800601da75148a387c61 | /app/src/main/java/com/tencent/example/location/SdkInfoActivity.java | 95b55de47d398e4e84099f73e6216ec8baa99b18 | [] | no_license | dcskys/sosodemo | 2a9ddaba31fbc89391c118562a67a6f366309324 | 6c24b563b4f68f75d48b2fe21fd47002bfd9ccf6 | refs/heads/master | 2021-01-20T03:29:46.087419 | 2017-04-27T02:47:49 | 2017-04-27T02:47:49 | 89,546,721 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,185 | java | package com.tencent.example.location;
import android.app.Activity;
import android.content.Context;
import android.location.LocationManager;
import android.net.wifi.WifiInfo;
import android.net.wifi.WifiManager;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import com.tencent.map.... | [
"1938551926@qq.com"
] | 1938551926@qq.com |
78e0e92696e8e3e19772cd031c62e3c76d510830 | c936569395274c5245ae7fb98335facadce197cd | /src/NumberOfOne.java | 475e70544a4850a15c65ff23a3b38027f9ab364f | [] | no_license | WlisonChan/MyMain | 93763cbaf04ec550689172c7c798322e699c9011 | 4115794b35dbdc48c6e5758d79152b76b7c246ca | refs/heads/master | 2020-07-11T18:46:26.016576 | 2019-08-27T04:17:30 | 2019-08-27T04:17:30 | 204,618,717 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 374 | java | /**
* 输入一个整数,输出该数二进制表示中1的个数。其中负数用补码表示。
*/
public class NumberOfOne {
public int NumberOfOne(int n){
int count = 0;
int flag = 1;
while(flag != 0){
if((n&flag) !=0){
count++;
}
flag=flag<<1;
}
return count;
}
}
| [
"chenzhiwei093@163.com"
] | chenzhiwei093@163.com |
e88fb662b4d648d22f65d85ad9392003f6545bc8 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/7/7_acfeae1d08c0101464383d0c174fd3ecdcc5876a/UIPageBrowser/7_acfeae1d08c0101464383d0c174fd3ecdcc5876a_UIPageBrowser_s.java | 4a365e4ab3e87c3c15f3627c61090b73ed41e4db | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 22,440 | java | /**
* Copyright (C) 2009 eXo Platform SAS.
*
* 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
* the License, or (at your option) any later version.
*
* Thi... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
ba566acf13d157dcc8a4a67ff604a52953c74638 | bc99ba3b1a9fe21f42e4fe5fd6496363bece8678 | /javacookbook/database/src/main/java/com/bld/database/UserDBText.java | b322f45b07c5d641fe681a5a1b822c0cc16e6f95 | [
"BSD-2-Clause"
] | permissive | chimeh/leetcode-bettercode | 7366f290f968b4b738d6ac1e78c24d98c99a91e1 | 2196cbd1485d22f20f7ac147125bde2d4b8b894c | refs/heads/master | 2023-01-19T05:58:42.524362 | 2020-11-08T12:27:15 | 2020-11-08T12:27:15 | 295,693,651 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,000 | java | package com.bld.database;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.SQLException;
import java.util.StringTokenizer;
import com.bld.domain.User;
/** A trivial "database" for User objects, stored in a fla... | [
"jimminh@163.com"
] | jimminh@163.com |
e520ff956a88c240d1c86e58fa2a5086c32dd115 | c9b428afc094ddfaf78b933308f1392ee22cf368 | /src/collection/map/HashMap.java | 748f08248bb5a90992f7a884ba9a1f8c6d627c0b | [] | no_license | tangzhichao/XmlPullTest | 8f6eea02d23ac162771d8f1861bb1b94c33a6517 | bbce37e1362be895283735cb3cf0e75eff7fa721 | refs/heads/master | 2021-01-10T03:14:32.108523 | 2015-06-05T08:10:14 | 2015-06-05T08:10:14 | 36,920,610 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 14,603 | java | package collection.map;
import java.io.IOException;
import java.io.InvalidObjectException;
import java.io.Serializable;
import java.util.AbstractCollection;
import java.util.AbstractMap;
import java.util.AbstractSet;
import java.util.Collection;
import java.util.ConcurrentModificationException;
import java.util.Iterat... | [
"845684080@qq.com"
] | 845684080@qq.com |
4e7b46d14ebcd863f508a7c848ae945bcd7d8d0c | a35418fca08fd1d21903bdfa5d514cfdf0dcec22 | /management-service/src/test/java/org/terracotta/management/service/buffer/ProducerOrConsumerSimulator.java | e013ba443df4658ebab162c9702cfe8b00b8480d | [] | no_license | ramsai1729/terracotta-platform | 4fb23443984ab32ed2d31073536f2c8b0b8b0e36 | c64327b4ca2ecc2c7a46c0818d72e26b0590da8f | refs/heads/master | 2020-12-28T19:37:22.813817 | 2016-03-30T21:01:35 | 2016-03-30T21:01:35 | 55,670,171 | 0 | 0 | null | 2016-04-07T06:41:16 | 2016-04-07T06:41:16 | null | UTF-8 | Java | false | false | 4,775 | java | /*
*
* The contents of this file are subject to the Terracotta Public 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://terracotta.org/legal/terracotta-public-license.
*
* Software distributed under t... | [
"Ramesh.Kavanappillil@softwareag.com"
] | Ramesh.Kavanappillil@softwareag.com |
e190c84663cc12563f8b05641487e56324303c10 | 5b239d9d631f560ff1bd72b922002e48efebe2d6 | /SBA2-main/src/main/java/com/iiht/training/eloan/service/impl/AdminServiceImpl.java | ba340674eaa575bd0c9974d24f2399b7ec6bc833 | [] | no_license | DineshSarvey/JavaTraining2 | d69c2bc0f537ece3e0dd150831719947860ab206 | da0199a8e65958b9da1cc54b784df2eb3a97d8b4 | refs/heads/main | 2023-01-24T10:40:14.528842 | 2020-12-05T16:56:23 | 2020-12-05T16:56:23 | 318,839,966 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,461 | java | package com.iiht.training.eloan.service.impl;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.iiht.training.eloan.dto.UserDto;
import com.iiht.training.eloan.entity.Users;
import com.... | [
"noreply@github.com"
] | DineshSarvey.noreply@github.com |
3abfa00b895b0f73a100c2df71042ff32178013c | 34c29d0fe4b82eb2066ff645d50f11dd4141c71d | /src/main/java/com/contractico/seeker/config/Constants.java | dcae09d56a556df2a26c4d061042abf1140c58ef | [] | no_license | dhubenov/seeker | 7f2f50275d7cad64c6b1960e2824192ee84758d9 | eca93b73d55f20b907f171ed89fc644f316a2556 | refs/heads/main | 2023-05-05T17:23:00.889690 | 2021-05-26T06:08:12 | 2021-05-26T06:08:12 | 370,903,217 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 417 | java | package com.contractico.seeker.config;
/**
* Application constants.
*/
public final class Constants {
// Regex for acceptable logins
public static final String LOGIN_REGEX = "^(?>[a-zA-Z0-9!$&*+=?^_`{|}~.-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*)|(?>[_.@A-Za-z0-9-]+)$";
public static final String SYSTEM =... | [
"jhipster-bot@jhipster.tech"
] | jhipster-bot@jhipster.tech |
915bf92942aa4cea77be8f2abf1cfc9f37ed469f | 47f17896b0fea2e7599b15192b58c2a3d34a3136 | /src/main/java/ru/yakovlev/alexander/model/dto/CaptchaResponse.java | 22ee83cd478c7869c40516602e97f39073d9f3df | [
"MIT"
] | permissive | zCRUSADERz/CAPTCHA-service | 6ea2bb36a8af3b507d3bcde6134149b8bdb4a161 | 1f501870d2a8ba74a945174292b2d7834631c9bd | refs/heads/master | 2022-05-16T20:16:19.083203 | 2019-11-05T02:08:16 | 2019-11-05T02:11:18 | 219,629,051 | 2 | 0 | MIT | 2022-03-08T21:18:12 | 2019-11-05T01:16:12 | Java | UTF-8 | Java | false | false | 1,719 | java | /*
* The MIT License (MIT)
*
* Copyright (c) 2019 Yakovlev Alexander
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* t... | [
"sanyakovlev@yandex.ru"
] | sanyakovlev@yandex.ru |
9bfdd4eb1866d4574e347c8ff93dc79d36377275 | b14e155c858abeb878a170d293dc0a0e64e4ad58 | /src/test/java/ConsumerTest.java | 39b991eeb4dbf171c7fcdb1dac18aa4e4eb4e291 | [] | no_license | marcosnils/redistories | 7e63d51000e2c5ff693e7d306328815ba09a7e05 | 44ec9fd2987e7e8478f4736ea71ce75451737e4b | refs/heads/master | 2023-01-11T11:56:59.415830 | 2019-11-12T08:21:52 | 2019-11-12T08:21:52 | 220,992,069 | 2 | 1 | null | 2023-01-05T00:47:13 | 2019-11-11T13:52:43 | Java | UTF-8 | Java | false | false | 3,306 | java | import com.sun.net.httpserver.Headers;
import com.sun.net.httpserver.HttpContext;
import com.sun.net.httpserver.HttpExchange;
import com.sun.net.httpserver.HttpPrincipal;
import org.junit.Rule;
import org.junit.contrib.java.lang.system.EnvironmentVariables;
import redis.clients.jedis.Jedis;
import redis.clients.jedis.S... | [
"marcosnils@gmail.com"
] | marcosnils@gmail.com |
3ff4402342dcee5d23957276b6d21b15662ce343 | 255658750084939285ccd1836ab619ff31d1de71 | /src/main/java/top/cflwork/dao/SeatUseDao.java | 8d44c6ff70ca419bccb454054693a005370f8a99 | [] | no_license | NDCFL/Library | 6f0b142117fc7adb6dbfbba60c9df640288e42f3 | 96759ee5c00d8adbbfafc5e2806fe425a7d1d507 | refs/heads/master | 2020-04-01T01:15:01.585097 | 2019-03-23T09:58:10 | 2019-03-23T09:58:10 | 152,725,450 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 572 | java | package top.cflwork.dao;
import top.cflwork.vo.SeatUseVo;
import java.util.List;
import java.util.Map;
import org.apache.ibatis.annotations.Mapper;
/**
* 座位预约管理
* @author cfl
* @email 275300091@qq.com
* @date 2019-01-18 17:17:17
*/
@Mapper
public interface SeatUseDao {
SeatUseVo get(String id);
List<SeatUseV... | [
"275300091@qq.com"
] | 275300091@qq.com |
5856766d0758d77947f21d603bbc07a0321e5aa5 | ec5506e24a196b1c153b6fbc42578661548c66b2 | /bankcardCertifacate/ffv/src/com/common/frame/model/Group.java | cb3e8a6b5f4f13998c678e5384591eae55095097 | [] | no_license | whhzkr/bankcardCertificate | e9429e2aca045b711e69c48d41465c2d8d42e603 | fa3d64969a6c1221cbca0080b705e0adfd5b52b6 | refs/heads/master | 2021-05-21T08:08:46.470215 | 2018-01-19T08:52:15 | 2018-01-19T08:52:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,554 | java | package com.common.frame.model;
import java.io.Serializable;
import java.util.HashSet;
import java.util.Set;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.JoinTable;
... | [
"393538042@qq.com"
] | 393538042@qq.com |
cb865f4933d00a0c3302787dbc0272d533f736b3 | 289ad8652969e2339a58fe2aa6a6c2b15e134c10 | /biz-framework/src/main/java/net/neoremind/bizframework/group/validator/impl/GroupValidator.java | 76bb8e87dfcb0e4b65e0097efcec1fc45688a3c5 | [] | no_license | bingyue/biz-framework | f3a86c969b00ed796c45e39481d63faaee815b5f | 2c1825dec9bdefb83fe4f20753aa8d7f34db31c1 | refs/heads/master | 2023-07-21T23:17:37.775824 | 2014-08-03T09:03:21 | 2014-08-03T09:03:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,939 | java | package net.neoremind.bizframework.group.validator.impl;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import javax.annotation.Resource;
import org.springframework.stereotype.Component;
import net.neoremind.bizframework.commons.exception.OperationNotSupportException;
import net... | [
"xuzhang1986@gmail.com"
] | xuzhang1986@gmail.com |
35fff55594437c01547559f70c67fa952826b8b9 | 24272134a39139b2952ef7c28da7c059f846ffde | /src/com/bit2015/network/chat/ChatClient.java | 842797380401b824090566a7b1eaf0e69bf67514 | [] | no_license | lintz84/network | ab4f20bd0276e8642477e9f15066843fc2855e2f | 5f71f33d3daadd610dc4e9ffd64cfdbbd982c968 | refs/heads/master | 2021-01-10T08:13:03.900975 | 2015-10-06T05:53:17 | 2015-10-06T05:53:17 | 43,731,554 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,931 | java | package com.bit2015.network.chat;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.net.InetSocketAddress;
import java.net.Socket;
import java.util.Scanner;
public class ChatClient {
private static final String SERVER_ADD... | [
"bit-user@bit"
] | bit-user@bit |
591a8a64a496aa8132311df3c4ddd51a0f428d48 | 16699a324b7350ae9c899f6b8d50d0d3e2a7b374 | /yp-item/yp-item-service/src/main/java/com/youpin/item/handler/MyMetaObjectHandler.java | c6d7487b43d48472e9696f6b82db461578251c6c | [] | no_license | 892843644/youpin | 7e23f685324c51deb0790ab1e23dfeaaacd50c6e | a2e9544fd6cbf7523519cec857eee29d0b22ca7e | refs/heads/master | 2022-12-03T23:04:00.740917 | 2019-09-29T20:13:05 | 2019-09-29T20:13:05 | 211,720,277 | 0 | 0 | null | 2022-11-16T12:26:59 | 2019-09-29T20:12:57 | Java | UTF-8 | Java | false | false | 758 | java | package com.youpin.item.handler;
import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
import org.apache.ibatis.reflection.MetaObject;
import org.springframework.stereotype.Component;
import java.util.Date;
/**
* @Author :cjy
* @description :
* @CreateTime :Created in 2019/9/16 11:07
*/
@Component
pub... | [
"892843644@qq.com"
] | 892843644@qq.com |
f452da3158995a375520a9087bda7cee6e4afb0c | 427fddaae61e3e1c0dcc792f17ba37c79e339b98 | /rabbit/src/main/java/com/helger/rabbit/httpio/HttpHeaderReader.java | 70e91c1ffa0c94e13fed4be530554f4dde919a68 | [
"BSD-3-Clause",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | phax/rabbit-proxy | 7f96d42918cbca1f74ad001f83aded8962a986f6 | b88b679465ee20cf1b8c0ade055912f8b88684b6 | refs/heads/master | 2023-08-27T20:40:44.834019 | 2019-03-27T13:06:45 | 2019-03-27T13:06:45 | 66,196,599 | 1 | 2 | null | null | null | null | UTF-8 | Java | false | false | 8,344 | java | package com.helger.rabbit.httpio;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.SocketChannel;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.helger.rabbit.http.HttpHeader;
import com.helger.rabbit.io.BufferHandle;
import com.helger.rabbit.util.ITrafficLogger;
... | [
"philip@helger.com"
] | philip@helger.com |
eec7f637455477ba2a99872340ef1adc5f40ef40 | 66c1e32f5a7aa563aab913c6f376fb50da4fe254 | /geode-for-redis/src/main/java/org/apache/geode/redis/internal/commands/executor/string/SetOptions.java | 428136533fa38eb4d44bf3e679766982c4fe9b33 | [
"Apache-2.0",
"LicenseRef-scancode-unknown",
"BSD-3-Clause",
"MIT",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause"
] | permissive | upthewaterspout/geode | 93d825fd37cbe505ce0f5e485142d4278f1b34d0 | a3b006ffbc6f3917094af24a0f3b5142be99897e | refs/heads/develop | 2022-09-09T16:29:05.854056 | 2022-04-16T00:05:39 | 2022-04-16T00:05:39 | 36,468,439 | 0 | 0 | Apache-2.0 | 2021-01-21T23:35:35 | 2015-05-28T21:57:46 | Java | UTF-8 | Java | false | false | 1,436 | 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 not ... | [
"noreply@github.com"
] | upthewaterspout.noreply@github.com |
c900c642056cdad0b569956fc9593c2a582fdbdf | b10cf6da04d20341210855c00dc90fb5bfb86665 | /LaboratoryWorks/Java Core/module_2/src/lab_2_11/testshapes/InvalidShapeStringException.java | a0c9e5fc21961a66512cc4e218fc35f46f618e5b | [] | no_license | AndrewSotnikovEng/MainAcad | 2f92ba644dc42177bb6be80cdc5cd2ea9d544d45 | 863c6cecb770b8dd680ae96fb29a3d5bd5c84d1f | refs/heads/master | 2020-12-02T10:00:54.380860 | 2017-08-04T20:07:51 | 2017-08-04T20:07:51 | 96,677,705 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 176 | java | package lab_2_11.testshapes;
/**
* Created by: Andrew Sotnikov aka Luca Brasi
* date: 11.03.17
*/
public class InvalidShapeStringException extends Exception {
}
| [
"andrew.sotnikov@zoho.com"
] | andrew.sotnikov@zoho.com |
b7cb5554e29b81295877d3937031c9a7cf1af195 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/9/9_8ec2df32818b05730075ad1a6b908e0e1c3cf30c/SingleDBCleaner/9_8ec2df32818b05730075ad1a6b908e0e1c3cf30c_SingleDBCleaner_t.java | bf3abad4216382577480db06351b3cec848b3a49 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 3,190 | java | /*
* Copyright (C) 2003-2010 eXo Platform SAS.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or (at your option) any later version.
*... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
5831c350ce5c05e1f8b736ed21538a5d383cfded | c5e9b4509a68522aec848fe8f6ca2089edf01cf5 | /2016-dds-utn-g12/src/main/java/ar/edu/utn/d2s/database/StoreDAOMock.java | f26262ba6cbced1370c3cd724c1dc58b476c867d | [] | no_license | MatiasMinian/2016-dds-utn-g12-nuevo | f9390299f7bfd326ee559f20239f9af36017b03c | 6c247cf322a4d84f7cce54370cdf87c78e2ddec8 | refs/heads/master | 2021-01-13T08:18:08.710423 | 2016-11-15T18:59:31 | 2016-11-15T18:59:31 | 71,795,562 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,290 | java | package ar.edu.utn.d2s.database;
import ar.edu.utn.d2s.model.points.Store;
import java.util.ArrayList;
import java.util.List;
public class StoreDAOMock {
/**
* TODO
* Change this to a Store DAO when implementing real daos with access
* to the database. Remove al static methods and variables and c... | [
"matias.minian@globant.com"
] | matias.minian@globant.com |
5438a74b451dcdd07a53d39d736b0d172e35ab70 | 2b6151cd7246f2cd61ebbefa9742bbea2104e3ea | /app/src/androidTest/java/com/example/karuran/myfirstapp/ApplicationTest.java | e7b138a9bd84c0869c2877cc4f803fdda27a8bb6 | [] | no_license | karur4n-sandbox/android-official_training | efae4799f66c1e6a26e01606710f544ec7d42921 | 1a920b227675bdcc13c03c0810a9fbf7ce7c4c99 | refs/heads/master | 2021-01-23T17:58:40.208404 | 2015-02-02T15:57:02 | 2015-02-02T15:57:02 | 29,768,346 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 361 | java | package com.example.karuran.myfirstapp;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
... | [
"karuran.f@gmail.com"
] | karuran.f@gmail.com |
bd746d24b2a457d7be0ae0d7eee1a19cceb15ddb | 4305f36c06b3e198604083170a5eca6f290b1081 | /app/src/main/java/lt/babenskas/popularmovies/model/api/MoviesRequest.java | 6ef648e17ead3ed3d9849d6ce4c1aac77d7de982 | [] | no_license | ebabenskas/popular-movies | 506d36c2c87fb542e2140169532f17691251f00a | a5a4f8978e291551287b8665ec2208e9b7adf28d | refs/heads/master | 2021-08-15T10:53:45.775236 | 2017-11-17T18:08:19 | 2017-11-17T18:08:19 | 79,834,304 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,590 | java |
package lt.babenskas.popularmovies.model.api;
import java.util.ArrayList;
import android.os.Parcel;
import android.os.Parcelable;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class MoviesRequest implements Parcelable
{
@SerializedName("page")
@Expose
... | [
"egidijus.babenskas@gmail.com"
] | egidijus.babenskas@gmail.com |
843390672eb4b3dbef259fc5106ea4fc0892d513 | b7d1bc22dd82a8899f03db49f3d3ad4593a9774f | /src/top/kaoshanji/source/com/sun/corba/se/spi/activation/TCPPortHelper.java | 9e9d1dfb0627816e1109d7fef14b5ef49de65da4 | [] | no_license | kaoshanji/JdkSourceLearn | d238a5f4ac2d790724392c1fbd59164718ebe22d | 8eea2e95b3df18ae114854fd0ea666c0279a53d8 | refs/heads/master | 2021-05-24T09:35:59.348371 | 2020-04-06T13:11:13 | 2020-04-06T13:11:13 | 253,499,639 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,554 | java | package com.sun.corba.se.spi.activation;
/**
* com/sun/corba/se/spi/activation/TCPPortHelper.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u231/13620/corba/src/share/classes/com/sun/corba/se/spi/activation/activation.idl
* Saturday, October... | [
"1127102203@qq.com"
] | 1127102203@qq.com |
df837c0aadd19dd554182fbc6f7ae8718ec26ef2 | d73875789c51b547c418d163ae12d1d109396ef9 | /src/main/java/org/zkviewer/server/Handler.java | 831c25f46ca33f2b8be321d2cfea6422a248f535 | [] | no_license | waka401/zookeeper-viewer | 38e17dbdbda0fa3913cc78bf84ea97b8f523cd91 | 37c4a8fa631a11082b0f6b969ab8411f2e374759 | refs/heads/master | 2020-06-02T10:32:33.877959 | 2012-05-06T06:36:31 | 2012-05-06T06:36:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 259 | java | package org.zkviewer.server;
import java.util.Map;
import org.zkviewer.config.ConfigContext;
public interface Handler {
void init(ConfigContext config);
void setProcessors(Map<String,Processor> processorMap);
Response process(Request req);
}
| [
"yycsunday@gmail.com"
] | yycsunday@gmail.com |
917f28343c9f4cdb159e20ee3402762484043c1e | 4376ac2bf8805d7b0846887155a0aa96440ba21f | /modulesOLD/ec.com.sidesoft.quick.billing/src/ec/com/sidesoft/quick/billing/event/Sqb_ConfigProductDefaultEvent.java | 4e4484e75c1119accd744b9f109282bbe39dbd60 | [] | no_license | rarc88/innovativa | eebb82f4137a70210be5fdd94384c482f3065019 | 77ab7b4ebda8be9bd02066e5c40b34c854cc49c7 | refs/heads/master | 2022-08-22T10:58:22.619152 | 2020-05-22T21:43:22 | 2020-05-22T21:43:22 | 266,206,020 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 3,821 | java | package ec.com.sidesoft.quick.billing.event;
import java.util.List;
import javax.enterprise.event.Observes;
import org.hibernate.criterion.Restrictions;
import org.openbravo.base.exception.OBException;
import org.openbravo.base.model.Entity;
import org.openbravo.base.model.ModelProvider;
import org.openbravo.client.... | [
"rarc88@gmail.com"
] | rarc88@gmail.com |
ee0c7892c59d1666cc3ed7da11a741133307e3b4 | 2343555d7af14beda619af20444c14d1c35e128e | /vendas/src/main/java/com/poc/pucmg/vendas/configuracoes/SwaggerConfiguracao.java | db5543d04fdd6bf80035c73faef2e2a23937815d | [
"MIT"
] | permissive | fagnercandido/poc-puc-mg | d36976c6d7d811747555acd236b79c4b3f3aebc6 | dbe617e551b7cf844dd9db0dc5a7ed147fbcd59d | refs/heads/master | 2020-05-17T03:32:51.311463 | 2019-04-30T12:52:34 | 2019-04-30T12:52:34 | 183,483,697 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 871 | java | package com.poc.pucmg.vendas.configuracoes;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.spi.Docume... | [
"fagner.candido@globalweb.com.br"
] | fagner.candido@globalweb.com.br |
a36935283677929f471b9b85e5129447b2180eda | d6038a540bd32818b921a9d791a983c9108a64a8 | /src/main/java/com/jpabook/jpashop/repository/OrderSearch.java | 874628f883ca99b11029448676df393c3071ca28 | [] | no_license | hjun-park/jpa-shop-v2 | e81df8d9b0d0ada748bdf97166fe1f0ac9b509e5 | 7b93a0be08f28f2d633d7a70a2ce555be0bcffe6 | refs/heads/master | 2023-08-10T09:08:18.970549 | 2021-09-14T09:52:11 | 2021-09-14T09:52:11 | 403,887,169 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 285 | java | package com.jpabook.jpashop.repository;
import com.jpabook.jpashop.domain.OrderStatus;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class OrderSearch {
private String memberName; // 회원 이름
private OrderStatus orderStatus; // 주문 상태
}
| [
"phj0860@gmail.com"
] | phj0860@gmail.com |
b93e4b262fd52df4f3f0d6b898dbd999decc32ee | c5513666be84b089e67edc8508264ac9b6c909d1 | /src/integrationTest/java/com/trailblazers/freewheelers/persistence/persistence/AccountRoleMapperTest.java | f7a2c907dec76913f454e8d96c9250756bad99f0 | [] | no_license | arthaszeng/fuckwheelers | e69450fe833e0c5d119572c988f08db45c3f49c6 | bf2224149ec285c195aa52b0857f8e5c4dbb62d1 | refs/heads/master | 2021-06-10T01:10:42.580394 | 2016-11-17T16:02:07 | 2016-11-17T16:02:07 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,042 | java | package com.trailblazers.freewheelers.persistence.persistence;
import com.trailblazers.freewheelers.mappers.AccountRoleMapper;
import com.trailblazers.freewheelers.model.AccountRole;
import org.junit.Before;
import org.junit.Test;
import static org.hamcrest.CoreMatchers.not;
import static org.hamcrest.CoreMatchers.nu... | [
"sli616@163.com"
] | sli616@163.com |
00886739a8161eb0d47be1a8dd5bbe185c8c48f5 | e451bd84f3b251c6ccbd9ec4dfe6bf952d34390a | /src/main/java/uk/org/glendale/worldgen/astro/planets/tiles/Cratered.java | 3c4848dec1ef3b76b7708dbb145a007a98aedb52 | [
"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,038 | java | package uk.org.glendale.worldgen.astro.planets.tiles;
import uk.org.glendale.utils.graphics.SimpleImage;
import uk.org.glendale.utils.graphics.Tile;
import uk.org.glendale.utils.rpg.Die;
import java.util.ArrayList;
import java.util.HashMap;
/**
* A cratered tile has one or more simple craters on it. If there are mu... | [
"sam@glendale.org.uk"
] | sam@glendale.org.uk |
dc3d304845e51485a73040d22165968ccf5d45f9 | 59f0acb45c59d75bcef39dca9859f9caa9dd5cff | /spring-boot-helloworld/src/main/java/com/example/springboothelloworld/servlet/HelloServlet.java | 951787e1aabf567aa45c68ebb68c64f8c2c058ae | [] | no_license | swimclan/java-nanodegree | 4cc2204d01d88e55982e8b50391059eac10c8735 | 85578f27528e41e615e9c32af888ed143fe2da62 | refs/heads/master | 2021-07-19T16:11:09.441258 | 2019-11-24T19:30:39 | 2019-11-24T19:30:39 | 221,121,043 | 0 | 0 | null | 2020-10-13T17:42:39 | 2019-11-12T03:22:39 | Java | UTF-8 | Java | false | false | 509 | java | package com.example.springboothelloworld.servlet;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
@WebServlet(name="helloServlet", urlPatterns ="/helloServlet")
public class HelloServlet exte... | [
"matthew.herron77@gmail.com"
] | matthew.herron77@gmail.com |
a250b805cbfc19cd64490902dafe41acf74610c3 | d3adc9d736554fca9723a78e64c0175f93364a20 | /src/cmsc312os/IO.java | 40c07c73bf57a257ba9b482e73b899fbfa6ebed5 | [] | no_license | anster98/OSSimulator | 9adf413d01b0b50869280dc489d3f268401ad786 | 8f2546691af45701b5e68eae74a603d82a6a2f0f | refs/heads/master | 2020-04-20T07:30:07.099671 | 2019-02-01T14:53:22 | 2019-02-01T14:53:22 | 168,712,165 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,068 | java | package cmsc312os;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
import java.util.StringTokenizer;
public class IO
{
public ArrayList<ProcessF> IoQ = new ArrayList <ProcessF>();
private LTScheduler LTS;
pub... | [
"nguyenam8@vcu.edu"
] | nguyenam8@vcu.edu |
47bea946b237aa24ae35a97cce6b488dcce74902 | 9e86356236063a100740a60d4dd0227072da7690 | /src/main/java/org/jboss/classfilewriter/annotations/AnnotationValue.java | b8811b263b6ff6e5fee0a456c8b7fa2414292df3 | [
"Apache-2.0"
] | permissive | jbossas/jboss-classfilewriter | 16880f914f5a83040455e852be82bb286246b6cf | 9a029da9656c40503549bdaa63cc48e9ec836e7b | refs/heads/main | 2023-08-27T19:15:18.629354 | 2023-05-22T21:03:55 | 2023-05-22T21:03:55 | 1,296,874 | 6 | 14 | Apache-2.0 | 2023-09-12T10:49:19 | 2011-01-26T21:45:23 | Java | UTF-8 | Java | false | false | 1,868 | java | /*
* JBoss, Home of Professional Open Source.
*
* Copyright 2012 Red Hat, Inc.
*
* 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
*
... | [
"stuart.w.douglas@gmail.com"
] | stuart.w.douglas@gmail.com |
12c10526148e357d4e7b8ad05dca45747fb7bc91 | 825fa522dfc7fbda5e01f4f63e5be9af4d3a3690 | /springboot2/src/main/java/com/rustudor/business/mediator/Request.java | e45de4629d730866b917959f6b2405cd873268a1 | [] | no_license | sd-2020-30431/final-project-tudyrusy | 234b49fa1fb5284e46d20449417a88bf48bdccc1 | 795bbc7a533906a04158dcb3beb5ebe2a09950af | refs/heads/master | 2023-01-24T22:28:45.348948 | 2020-06-01T18:33:37 | 2020-06-01T18:33:37 | 249,004,632 | 0 | 0 | null | 2023-01-07T18:41:01 | 2020-03-21T15:29:34 | Java | UTF-8 | Java | false | false | 74 | java | package com.rustudor.business.mediator;
public interface Request {
}
| [
"tudy.rusy@gmail.com"
] | tudy.rusy@gmail.com |
3a9267bcd646c62ba3c7a77f916d7ce03175c9ed | b054a8e9d3bbd83510fd6194dff3d6e4d51c2fd2 | /java/src/com/directi/training/codesmells/smelly/chess/Move.java | a2a224a774bfd4de5f838d2a17f88ae5681507fa | [] | no_license | pedromsantos/Refactoring-Exercise | 822cb24fe293aed02619dbb1a0c50c1a30dc3513 | 23bd73a01d5c2f9e6781032e1b2b33bbce463d25 | refs/heads/master | 2020-06-18T09:34:48.985719 | 2019-07-14T15:23:51 | 2019-07-14T15:23:51 | 196,255,000 | 0 | 1 | null | 2019-07-10T18:19:25 | 2019-07-10T18:19:24 | null | UTF-8 | Java | false | false | 390 | java | package com.directi.training.codesmells.smelly.chess;
import com.directi.training.codesmells.smelly.Position;
public class Move
{
private Position _from, _to;
public Move(Position from, Position to)
{
_from = from;
_to = to;
}
public Position getFrom()
{
return _from;... | [
"ayush.j@flock.co"
] | ayush.j@flock.co |
fdfad23479d5c587eb53f78510741ad553e58281 | aa7cb7507449ecebc00471e18f0620262d28fdf4 | /xwkj-base-support/xwkj-sys/src/main/java/com/lfxwkj/purchase/sys/modular/rest/controller/RestMenuController.java | b652dfc17f030498fedb2142296902d659d17a5c | [] | no_license | zt1215866723/purchase | 4b2d8929f146fb85b021a3782b3a7af5b79e19c4 | d36342ddb15442b87134390ee8aee4ddeda55ad4 | refs/heads/master | 2021-04-07T02:29:31.460084 | 2020-03-19T07:46:47 | 2020-03-19T07:46:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,697 | java | /**
* Copyright 2018-2020 stylefeng & fengshuonan (https://gitee.com/stylefeng)
* <p>
* 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
... | [
"1119675227@qq.com"
] | 1119675227@qq.com |
e477fabe7d59fd5dd92856ead76b288b64a14891 | 247dce6d7252327ba99e74b70332ed17e99b166d | /algorithm_study/src/practice_BFS_DFS/baek_2667.java | de0ef0313e98dc3a38a8820fea7655a7445c7852 | [] | no_license | jinsuyun/Algorithm | c72ca17b41939dca3705acc1b2729b80d4b92040 | a1460aef353705afaecfab53ecf602c6f1667481 | refs/heads/master | 2020-04-21T21:50:27.360170 | 2020-02-26T10:45:06 | 2020-02-26T10:45:06 | 169,891,749 | 0 | 0 | null | null | null | null | UHC | Java | false | false | 1,553 | java | package practice_BFS_DFS;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.StringTokenizer;
public class baek_2667 {
static int[][] map,visit;
static int n,house;... | [
"say2dbs@ajou.ac.kr"
] | say2dbs@ajou.ac.kr |
016c0f9afb7d591d8cd4a156bdb2aa522949ace3 | 661e7b4f94c3c733ede378e794959152df9ef504 | /vpworkspace-pttk/code_baitap1/Thanhtoan.java | 26f67a31bafd259e8670d7bcc0e7d0fba8d3b085 | [] | no_license | quyetaloha/java_co_Van_Anh-PTTK_thay_Que | 2ef794991554bac9a57d2e9bd913a786aec948d7 | 6e626380f2a814e84f41a2508eb3577d034af1e5 | refs/heads/master | 2020-08-31T23:27:28.387032 | 2019-10-31T16:42:19 | 2019-10-31T16:42:19 | 218,812,797 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 229 | java | public class Thanhtoan {
private String id;
private DonHang donHang;
public boolean thanhToan() {
throw new UnsupportedOperationException();
}
public void inbienlai() {
throw new UnsupportedOperationException();
}
} | [
"quyethocngu@gmail.com"
] | quyethocngu@gmail.com |
d2a87806601484cf013cee8b745775e3656dde08 | 97a044ceb2ae298c49f210a61d927f595c97a469 | /src/main/java/io/maslick/collector/JavaHelper.java | d12b25ece224cc9248107514d184745506cdf463 | [] | no_license | maslick/collector | b3c55da47ab9208e17f94bf3cb40fa0a2a09b1eb | 25ae33fa6b49493e61a673abc015488636c14107 | refs/heads/master | 2020-03-06T23:52:39.248405 | 2018-08-31T09:34:36 | 2018-08-31T09:34:36 | 127,143,972 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,850 | java | package io.maslick.collector;
import java.util.ArrayList;
import java.util.List;
import java.util.function.Function;
public class JavaHelper {
public static <T> List<List<T>> groupDataInWindows(List<T> data, long window, Function<T, Long> lambda) {
List<List<T>> result = new ArrayList<>();
List<T... | [
"pavel.maslov@ijs.si"
] | pavel.maslov@ijs.si |
001c3334df8ed44453d6b1766c8cc38296ef3643 | dc1dbb7e5a4b95bf44170d2f51fd08b3814f2ac9 | /data_defect4j/preprossed_method_corpus/Chart/4/org/jfree/chart/plot/Plot_equals_1285.java | 11a9231901cd39b6c4869176b4cc162ab5328dce | [] | no_license | hvdthong/NetML | dca6cf4d34c5799b400d718e0a6cd2e0b167297d | 9bb103da21327912e5a29cbf9be9ff4d058731a5 | refs/heads/master | 2021-06-30T15:03:52.618255 | 2020-10-07T01:58:48 | 2020-10-07T01:58:48 | 150,383,588 | 1 | 1 | null | 2018-09-26T07:08:45 | 2018-09-26T07:08:44 | null | UTF-8 | Java | false | false | 2,885 | java |
org jfree chart plot
base plot free chart jfreechart link free chart jfreechart
deleg draw ax data plot base
facil common plot type
plot... | [
"hvdthong@gmail.com"
] | hvdthong@gmail.com |
9531681d39884c53fe750c009780d396dc29e9d3 | 8e3bb3e12a9072e20a7b713961c9fb7906e67b62 | /src/main/java/com/boot/persistence/PersistenceApplication.java | edffc9c2207ea7585f978d1c6f9f87098f5c6684 | [] | no_license | Madhuprathap/BootPersistence | 1ffb7766b3c43847c54dea13c8479b1150e88dbc | bde0812ca6995271f685cc1293627d350109e59b | refs/heads/master | 2020-03-06T19:24:06.218465 | 2018-03-27T18:50:20 | 2018-03-27T18:50:20 | 127,027,002 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 322 | java | package com.boot.persistence;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class PersistenceApplication {
public static void main(String[] args) {
SpringApplication.run(PersistenceApplication.class, args);
}
... | [
"madhupratap@gmail.com"
] | madhupratap@gmail.com |
44fc52584c5b85971b7d7d5219b974db9aff718a | eb01c9dc0c45d59fb946a9ca09ea04266fb38abe | /src/di/java7/listing_3_10/AgentFinderModule.java | bd844311e9ad394100ce650715138a969b0a5ad3 | [] | no_license | txidol/TestJ2SE | 5a341bb367cd582b8268ca6ca70042db8a3db693 | a0ce1016087d36a180941394fc61e833c55d6ed8 | refs/heads/master | 2016-09-01T17:25:37.973181 | 2014-04-18T03:19:06 | 2014-04-18T03:19:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 530 | java | package di.java7.listing_3_10;
import com.google.inject.AbstractModule;
import com.google.inject.Provides;
import di.java7.AgentFinder;
import di.java7.SpreadsheetAgentFinder;
/**
* Code for listing 3_10
*/
public class AgentFinderModule extends AbstractModule {
@Override
protected void configure() {
}
@... | [
"love_xiang21@foxmail.com"
] | love_xiang21@foxmail.com |
2ddc4b1ab30ed09fee4c7ab5adeb7b77dd0d4e9b | d7370179f3171ec446f4a4c0e9a25ffaaa9881d4 | /Engine_test.java | 0eb74faf85d900321db2107e5d396203e7dfb3d1 | [] | no_license | ntony3419/Java_ShipStorage | 6f585ae9981e9e081b4d23354d76e9aca5f918ca | 9b3153b3756568a8e50adeadbd4e2ebabbf70b23 | refs/heads/master | 2022-06-15T22:53:42.890810 | 2020-05-06T11:25:56 | 2020-05-06T11:25:56 | 261,730,615 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,482 | java | import java.util.*;
public class Engine_test
{
public static void main(String[] args)
{
//try s1
try
{
engine s1 = new engine();
System.out.println("engine 1 value: " + s1.toString());
}
catch (IllegalArgumentException e)
{
System.out.println("some of the values are not correct format 1");
}
// try s2 _i... | [
"ntony3419@gmail.com"
] | ntony3419@gmail.com |
b66d347295b9230f67769f847db1b9aac9388a41 | e8626f9f64a8bb90008015b06856d3da16eeecad | /processing/src/main/java/org/apache/druid/timeline/partition/LinearPartialShardSpec.java | 5abf2cf46306f4c866f64beb498e87da78941365 | [
"EPL-1.0",
"Classpath-exception-2.0",
"ISC",
"GPL-2.0-only",
"BSD-3-Clause",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-generic-cla",
"0BSD",
"LicenseRef-scancode-sun-no-high-risk-activities",
"LicenseRef-scancode-free-unknown",
"JSON",
"LicenseRef-scancode-unico... | permissive | apache/druid | bb1b20be5104882e4eeb045d109b559f396086c0 | d4e972e1e4b798d7e057e910deea4d192fe57952 | refs/heads/master | 2023-09-05T02:41:03.009726 | 2023-09-04T07:48:55 | 2023-09-04T07:48:55 | 6,358,188 | 4,364 | 1,629 | Apache-2.0 | 2023-09-14T21:04:46 | 2012-10-23T19:08:07 | Java | UTF-8 | Java | false | false | 1,495 | 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 ... | [
"noreply@github.com"
] | apache.noreply@github.com |
bbb42370d7b4e63f8a773f89050ca33efa77c498 | 81d4069c762958673dc537bcca75c3fc0e6a6c46 | /02-structural/03-CompositePattern/src/main/java/cn/colg/example/_01/package-info.java | 6abd4d3ce73073863173019b1108f5282d8079cd | [] | no_license | sheep-cloud/design-pattern | 7a0c59ac93429d8db021e67f7c3e5561e0112c62 | f15caa665ddac979e5e6f3862145850512b450e5 | refs/heads/master | 2021-10-19T07:37:09.437900 | 2019-02-19T08:12:33 | 2019-02-19T08:12:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,039 | java | /**
* 组合模式(一)
*
* <pre>
* 开发人员“成功”实现了杀毒软件的框架设计,但通过仔细分析,发现该设计方案存在如下问题:
*
* (1) 文件夹类Folder的设计和实现都非常复杂,需要定义多个集合存储不同类型的成员,而且需要针对不同的成员提供增加、删除和获取等管理和访问成员的方法,存在大量的冗余代码,系统维护较为困难;
*
* (2) 由于系统没有提供抽象层,客户端代码必须有区别地对待充当容器的文件夹Folder和充当叶子的ImageFile和TextFile,无法统一对它们进行处理;
*
* (3) 系统的灵活性和可扩展性差,如果需要增加新的类型的叶子和... | [
"121529654@qq.com"
] | 121529654@qq.com |
7308ca955446d3fb5e64cf7ceeab7640f4808f7a | 60d1673e2a4725a78ea1365aa44d4c8d4274cb89 | /PopularMovies/app/src/main/java/com/emrekose/popularmoviesstage2/widget/RatingBarView.java | 169864c5b096bd46df1e10538f7f67616b19b18a | [
"Apache-2.0"
] | permissive | sameertotey/udacity-nanodegree-projects | 96f97c40082d383d895a469de9ceae2cfc3e4cb4 | 3e0e6c5d06ed2833f849c38266ebf657d6a4862d | refs/heads/master | 2020-07-11T12:32:39.035490 | 2018-08-10T12:02:10 | 2018-08-10T12:02:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,749 | java | package com.emrekose.popularmoviesstage2.widget;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.RectF;
import android.graphics.Typeface;
import android.os.Build;
import android.... | [
"e.kose26@gmail.com"
] | e.kose26@gmail.com |
e5527ae2480264813d19b05e503ea74aaaa9d8ff | 6ddc60498df5802d039e3b7b3bbb9c317a748e4d | /StyleX/crawljax/core/src/test/java/com/crawljax/core/configuration/CrawlActionsTest.java | 18c4c3a916a3ca0966cf9857f8212fc4f341a591 | [
"MIT",
"Apache-2.0"
] | permissive | ICSE2020-StyleX/StyleX | 36cfb8eb4e1a99b883ed8ac32eef04fb33bc5f59 | 9d35a6722243a96c57da5a92dd5f11d005f28b15 | refs/heads/master | 2022-10-21T15:01:14.762159 | 2019-08-23T05:45:08 | 2019-08-23T05:45:08 | 203,931,879 | 0 | 0 | MIT | 2022-10-05T03:26:57 | 2019-08-23T05:45:52 | JavaScript | UTF-8 | Java | false | false | 1,653 | java | package com.crawljax.core.configuration;
import static com.crawljax.core.configuration.CrawlElementMatcher.withXpath;
import static org.hamcrest.Matchers.containsInAnyOrder;
import static org.hamcrest.collection.IsCollectionWithSize.hasSize;
import static org.junit.Assert.assertThat;
import java.util.List;
import or... | [
"research-artifacts@gmail.com"
] | research-artifacts@gmail.com |
a9f099040cacbab23ac151c0f186079d05163ee9 | 09bc5e4b2f6ff9f88603bf928c0d6bc46835d311 | /src/java/com/emar/recsys/user/item/ItemWords.java | a77bf52af4c8a0c878500d4027cb29ba9c76ba13 | [] | no_license | buptzzl/MR-codes | f1649b6cf617f68566f38aab593dda70d012ca7a | 8de0f41357240fe383e65375a3ffe16b6e5be14a | refs/heads/master | 2021-03-12T19:21:03.907631 | 2014-01-20T01:26:04 | 2014-01-20T01:26:04 | 11,446,692 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 264 | java | package com.emar.recsys.user.item;
/**
* TODO
* s_browse_prod_log 中的商品名处理与抽取
* @author zhoulm
*
*/
public class ItemWords {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
}
}
| [
"BuptExpress@163.com"
] | BuptExpress@163.com |
3a80d4c47ab3e95ef2f12533236117d12f731fd7 | db03eade9277c250637d811b1494e33f2e30c178 | /statsd-jvm-profiler/src/main/java/com/etsy/statsd/profiler/Profiler.java | 86e43dc3de3c3a8acdfba31d4a086ebc630c6dc6 | [
"MIT"
] | permissive | zxing01/hadoop-profiler | ecd65dd4e6483cb008a62d5840ab3eabdb11b1e6 | 405d7e0887e62380393506bf933c77afe305b7be | refs/heads/master | 2021-01-21T12:53:41.610685 | 2016-04-27T18:40:19 | 2016-04-27T18:40:19 | 36,256,011 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,703 | java | package com.etsy.statsd.profiler;
import com.etsy.statsd.profiler.reporter.Reporter;
import com.google.common.base.Preconditions;
import java.util.concurrent.TimeUnit;
/**
* Interface for profilers
*
* @author Andrew Johnson
*/
public abstract class Profiler {
public static final Class<?>[] CONSTRUCTOR_PARAM... | [
"zxing01@syr.edu"
] | zxing01@syr.edu |
818ecd9f22ea0fcfdd6e29f054d0263cd04b0a04 | c02313a25b48e6c5a78957c8cce630b5db7ada43 | /app/src/main/java/scholarnet/haikaroselab/com/scholarnet/activities/ScholarLoginActivity.java | 617dec8ca1ed86da4c64ffef80b9cae152c492b0 | [] | no_license | mcamocci/scholarnet | df31bfb7434aac989b37cab9a1340dd861b360c7 | f54e63f13af73a88113e23aa4b6f34d9682402b9 | refs/heads/master | 2021-01-11T15:09:06.185207 | 2017-01-28T17:53:20 | 2017-01-28T17:53:20 | 80,299,987 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 14,493 | java | package scholarnet.haikaroselab.com.scholarnet.activities;
import android.content.Intent;
import android.graphics.Color;
import android.graphics.Typeface;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.vi... | [
"mcamocci@gmail.com"
] | mcamocci@gmail.com |
6c243fb85bfe533e83d17942e21d047c12f651bb | b43c00a015f78a131a6f021a0dfdcee638d1f517 | /app/src/main/java/com/curso/footballteamfinder/Objetos/FirebaseReference.java | 2e94ba649092e8bf47569c0ad83d3656bcf52f07 | [] | no_license | femarin/ProyectoAppsMoviles | 22c6922183bfb5dc0811c6c1334170ca279ba32c | ce631c3368d2b35f01b016bbaa2c10a6fe9789f8 | refs/heads/master | 2020-11-30T00:32:04.595220 | 2017-07-04T18:00:15 | 2017-07-04T18:00:15 | 95,927,121 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 321 | java | package com.curso.footballteamfinder.Objetos;
public class FirebaseReference {
final public static String BASE_REFERENCE = "base";
final public static String TEAMS_REFERENCE = "Equipos";
final public static String TEAM_REFERENCE = "Equipo";
final public static String PLAYERS_REFERENCE = "jugadores";
}... | [
"felipemarinseguel@gmail.com"
] | felipemarinseguel@gmail.com |
6ec58a99bd671b489e005501d453d8ccdb16953c | 02a7d8c650e6b3512300ba490fea4297c37e7ab3 | /app/src/main/java/www/nupter/org/nupter/utils/PictureUtil.java | 12b6dfbad0ac35901368ac7421e4444ae6ddb084 | [] | no_license | Qesgul/NUPER-2 | ec5cc145f0940cf1c3cde0a0b4eff51bcbf99567 | d7c6d8a3fe63c8d0b5ec1d6e1665b488b9a4cdb8 | refs/heads/master | 2021-01-25T04:58:44.298827 | 2017-06-06T08:52:11 | 2017-06-06T08:52:11 | 93,496,963 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,238 | java | package www.nupter.org.nupter.utils;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.util.Log;
import java.io.ByteArrayOutputStream;
import java.io.File;
/**
* Created by fangzhenyi on 16/4/5.
*/
public class PictureUtil {
/**
* 计算图片的缩放值
*
* @param options
... | [
"liuzheng@nupter.org"
] | liuzheng@nupter.org |
bca5ac18a09c045e481acff4832e9bd904fb5747 | 9feb23b828d3a2a786719b04c783980617f89fdf | /src/main/java/ar/com/alkemylab/models/responses/RegisterResponse.java | 6193e64241c3ef9fb43652841529616f4b8c3460 | [] | no_license | lauraizco24/alkemyLabJavaChallenge | 495f02bf11d90487ae02bc2290ab90b3166aeab9 | df57c7c6f87aa9da51e75fd46ae1f9ab18adaf0b | refs/heads/master | 2023-01-01T18:12:11.037385 | 2020-10-29T15:42:43 | 2020-10-29T15:42:43 | 302,772,777 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 200 | java | package ar.com.alkemylab.models.responses;
public class RegisterResponse {
public String message;
public String password;
public Integer userName;
public Integer id;
}
| [
"57275653+lauraizco24@users.noreply.github.com"
] | 57275653+lauraizco24@users.noreply.github.com |
48fa8f41d23e848da89d3665f97c3e777f0a2319 | 0fdc902bb53cca3e1274b86296f477717ef1a9a2 | /src/main/java/com/ancel/test/collection/PropertiesTest.java | 0eb6815bc913a2f65bf97d28b80e10615585c6e2 | [] | no_license | ancel/test | cc3c637c73bcbed26094012646882eb81b7203c2 | 68eb49ec6301e334817f49aaac1ed3e073fd825a | refs/heads/master | 2020-05-18T07:57:35.650623 | 2017-02-27T12:55:44 | 2017-02-27T12:55:44 | 32,210,581 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 867 | java | package com.ancel.test.collection;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Properties;
public class PropertiesTest {
public static void main(String[] args) {
Properties props = new Properties();... | [
"wanghaiborui@gmail.com"
] | wanghaiborui@gmail.com |
5b301cba4e2426fa8ad5ca03e1059350ed8d6793 | e1aea532a35b18d20b104809b43ffd3bf25719d3 | /src/main/java/de/thro/inf/prg3/a10/kitchen/KitchenHatchImpl.java | c45b5221c736ac9cfe2e84a2cafa843d147076ca | [
"MIT"
] | permissive | initdb/10-threads-jfx | 8fcaa8d0bdcb972f6d39623a6688ae67d474c9f1 | 8dd9e8b2032568aa90fadf4375893a2f5150e02d | refs/heads/master | 2020-04-11T08:12:13.455599 | 2018-12-28T11:11:55 | 2018-12-28T11:11:55 | 161,635,121 | 0 | 0 | MIT | 2018-12-13T12:20:52 | 2018-12-13T12:20:52 | null | UTF-8 | Java | false | false | 3,143 | java | package de.thro.inf.prg3.a10.kitchen;
import de.thro.inf.prg3.a10.model.Dish;
import de.thro.inf.prg3.a10.model.Order;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import java.util.Deque;
import java.util.LinkedList;
public class KitchenHatchImpl implements KitchenHatch {
priv... | [
"benedict.schwind@live.de"
] | benedict.schwind@live.de |
3df6744919a3dbd7405e85d5433fa8a911f5da6a | 8a0f080de96d26f0fa0a67ee59943e4cb9e813ee | /spring-mvc4/src/com/my/dao/BoardDAO.java | 8639c0976c6bc94650b3c57bbc91e57a85af54fc | [] | no_license | ette9844/Spring-Framework-Practice | 7d525a22f5212ea7ac709fae87ca817386d51206 | c7a48fbd0c95b44da2898ae90dc1900f406c0fa0 | refs/heads/master | 2020-07-13T09:47:51.595306 | 2019-09-25T04:43:15 | 2019-09-25T04:43:15 | 205,059,262 | 0 | 0 | null | 2020-03-04T23:37:04 | 2019-08-29T01:57:55 | Java | UTF-8 | Java | false | false | 7,473 | java | package com.my.dao;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import com.my.exception.AddException;
import com.my.exception.NotFoundExc... | [
"ette9844@naver.com"
] | ette9844@naver.com |
d8414db69969c09f2b871eb493af9cbe79f359b5 | 3a1669b9075e483eca4791b5d43c916ccfc9e1b5 | /src/main/java/project/dailysup/account/controller/AccountInfoController.java | afa453433698835635b311fcdcd955168d2c1a2b | [] | no_license | Programmer-GreenGreen/dailysup | 678c9621b60e5b102405cd60cdc7a50c9b7da0c4 | ebb0a90183089ba55ebf86830ac4a8cabc4cf2c6 | refs/heads/master | 2023-06-06T19:24:45.338536 | 2021-07-07T03:05:15 | 2021-07-07T03:05:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,585 | java | package project.dailysup.account.controller;
import lombok.*;
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import project.dailysup.account.service.AccountInfoService;
import project.dailysup.account.service.AccountQueryService;
impo... | [
"kkkh0712@naver.com"
] | kkkh0712@naver.com |
e3ef7b6aaba202e18faeb2c571ace3f85245a6d1 | 3f7a6e5f2466148a93531fd22ea76910038657e7 | /germes-common/src/main/java/com/revenat/germes/common/core/domain/model/AbstractEntity.java | 019490775dec469ca633f126e76cb6adf4f86f69 | [] | no_license | VitaliyDragun1990/grms | 7682c502a023b18a06909a54549b0d9a8a804ca6 | ee9e7d37aad37cd50febee27979f7046947651da | refs/heads/master | 2023-01-07T20:07:27.623011 | 2020-03-06T17:00:43 | 2020-03-06T17:00:43 | 232,298,728 | 0 | 0 | null | 2023-01-05T09:03:44 | 2020-01-07T10:17:31 | Java | UTF-8 | Java | false | false | 1,410 | java | package com.revenat.germes.common.core.domain.model;
import lombok.EqualsAndHashCode;
import lombok.Setter;
import javax.persistence.*;
import java.time.LocalDateTime;
/**
* Base class for all business entities
*
* @author Vitaliy Dragun
*/
@MappedSuperclass
@Setter
@EqualsAndHashCode(of = "id")
public abstract ... | [
"vdrag00n90@gmail.com"
] | vdrag00n90@gmail.com |
733e4778a5b839e93db529a65cbcdd160b3133ea | f8ee908016df79a4441b15d37e3c6039e5007d0f | /PlayingCardsCountTheAces/src/playingcardscounttheaces/CountTheAcesRun.java | 4a99aeb930d45e2ea5c0f85866b095140c444204 | [] | no_license | rvsranjith/TASK-08162017 | b86ac21acc2de28778e5045298809c2ebe678df1 | e1cccefa4feebf6133d615534b48ef7a3961cd4e | refs/heads/master | 2020-06-20T12:02:27.319706 | 2019-07-16T03:46:16 | 2019-07-16T03:46:16 | 197,115,747 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,877 | java | /*
* In this activity we'll go back to our playing cards roots. This program will
* generate a random collection of 25 playing cards, and then count the number of
* aces, nines and threes in the collection.
*
* NOTE: these are purely random cards, and not drawn from a deck. So you might
* see the same ... | [
"noreply@github.com"
] | rvsranjith.noreply@github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.