blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 7 410 | content_id stringlengths 40 40 | detected_licenses listlengths 0 51 | license_type stringclasses 2
values | repo_name stringlengths 5 132 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 80 | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 5.85k 684M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 132
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 9.45M | extension stringclasses 28
values | content stringlengths 3 9.45M | authors listlengths 1 1 | author_id stringlengths 0 352 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
630430b367ddd46aa3f4dd94d8d853f2bdf8ebf2 | b841f45e43e7ee1a1ef1de3834672451a39949f0 | /Collections_java/src/Launch6.java | 5193c17c0534cfe6e81bd45730db879ed6c4f2a1 | [] | no_license | vinaynani9316/All_Java_programs | e7a4f6decf6f24618b987743fef55a366402ec0c | 00852b2e199662041e27f056d3b1d56a4c5b00cb | refs/heads/master | 2020-03-21T09:08:48.708126 | 2018-07-26T20:12:31 | 2018-07-26T20:12:31 | 138,384,409 | 0 | 0 | null | 2018-06-23T13:40:22 | 2018-06-23T08:24:14 | Java | UTF-8 | Java | false | false | 581 | java | import java.util.ArrayList;
public class Launch6
{
public static void main(String[] args)
{
ArrayList<Integer> l1=new ArrayList<Integer>();
l1.add(10);
l1.add(20);
l1.add(30);
l1.add(40);
l1.add(50);
l1.add(30);
l1.add(60);
l1.add(80);
System.out.println(l1);
l1.set(2, 100); ... | [
"vinod@DESKTOP-GC87GJT"
] | vinod@DESKTOP-GC87GJT |
d23ac6016186348dcccf5033e2abd68908a904a4 | 247e3e51cf0aeca7e6d23a19f863ba0a7f084072 | /src/methd_of_programing/array/Medium.java | e61ad18d0d8a439b479fb6e69b6972a905064cba | [] | no_license | KeXianting/algorithm_java | 48b56da200ce70ba06529ce07f0407a920d4021b | 47a1f7f28b4b9643cb1689164cdb2661759dd5aa | refs/heads/master | 2021-05-16T16:22:47.161128 | 2019-07-01T03:09:19 | 2019-07-01T03:09:19 | 119,938,587 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,536 | java | package methd_of_programing.array;
import data_struct.heap.Heap;
import sort.QuickSort;
import java.util.Arrays;
/**
* Created by kentorvalds on 2017/11/10.
* 给定3个数,请找出3个数的中位数
*
* 求两个无序数组的中位数
* 给定两个无序数组分别叫A和B,长度分别是m和n, 求这两个无序数组的中位数, 要求时间复杂度
* 为O(m+n), 空间复杂度为O(1)
*
*
*/
public class Medium {
public stat... | [
"xianting_ke@163.com"
] | xianting_ke@163.com |
3363dcd32e8d6e2cb6c68df1bf8b08b7fd5816db | b87aac9f210ef0c03f2f2468eaebc767e472378d | /app/src/main/java/com/example/abdilla/badrtest/helper/Status.java | 891f3c88ad2dc4880d4b7fa6f934f4ba239e79a3 | [] | no_license | julioabdilla/BadrTest | 0a2477b8db81612d98885b11baf144bd1eb24833 | e55300c165c478672f36a01ee6cae753db73ab8d | refs/heads/master | 2021-01-22T01:10:20.795872 | 2017-09-03T13:40:56 | 2017-09-03T13:40:56 | 102,199,099 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 462 | java | package com.example.abdilla.badrtest.helper;
import java.io.Serializable;
/**
* Created by abdilla on 6/5/16.
*/
public class Status implements Serializable {
private String status;
public boolean isSuccess() {
return status.equals("success");
}
public void setSuccess(String status) {
... | [
"julio.abdilla@gmail.com"
] | julio.abdilla@gmail.com |
6ddeb0fa0d34f67cd65da43aa3d53cab28eed61b | dc34183416c18cec33aff4c29f5b71be7f0d8e39 | /src/main/java/com/ffderakhshan/movieDemo/MovieMapClass.java | a043136771c34be5715583e338ea5edffc177b94 | [] | no_license | ffderakhshan/CS-499-A3 | ede76495440c0c9eb4bb3121f93d3a47f33ba0a2 | a41390bd3eadacfe6c138a7010b0b18700f6a447 | refs/heads/master | 2021-01-18T22:45:21.523754 | 2017-03-09T20:14:12 | 2017-03-09T20:14:12 | 84,379,649 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,424 | java | package com.ffderakhshan.movieDemo;
import java.io.IOException;
import java.util.StringTokenizer;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.FloatWritable;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Mapper;
/**
* Map Class... | [
"fariba@b98-aruba1-guest-10-110-30-50.wlan.cpp.edu"
] | fariba@b98-aruba1-guest-10-110-30-50.wlan.cpp.edu |
d0153be09c1f6804e7f48417650bb036049a2016 | ef7c846fd866bbc748a2e8719358c55b73f6fc96 | /library/weiui/src/main/java/vip/kuaifan/weiui/extend/integration/glide/load/model/UnitModelLoader.java | 6e76b8574d2b8d47e89d9976ebc200ea5486161b | [
"MIT"
] | permissive | shaibaoj/weiui | 9e876fa3797537faecccca74a0c9206dba67e444 | 131a8e3a6ecad245f421f039d2bedc8a0362879d | refs/heads/master | 2020-03-17T22:45:52.855193 | 2018-07-02T01:56:51 | 2018-07-02T01:56:51 | 134,017,696 | 0 | 0 | null | 2018-07-02T01:56:52 | 2018-05-19T01:01:44 | Java | UTF-8 | Java | false | false | 3,521 | java | package vip.kuaifan.weiui.extend.integration.glide.load.model;
import android.support.annotation.NonNull;
import vip.kuaifan.weiui.extend.integration.glide.Priority;
import vip.kuaifan.weiui.extend.integration.glide.load.DataSource;
import vip.kuaifan.weiui.extend.integration.glide.load.Options;
import vip.kuaifan.wei... | [
"342210020@qq.com"
] | 342210020@qq.com |
ae295c386564681e747ec54bc371572597b25c30 | fa1408365e2e3f372aa61e7d1e5ea5afcd652199 | /src/testcases/CWE129_Improper_Validation_of_Array_Index/s05/CWE129_Improper_Validation_of_Array_Index__URLConnection_array_size_53b.java | 2afcbec2a6226ac11ae20b3aee4a2df3ceb82ee3 | [] | no_license | bqcuong/Juliet-Test-Case | 31e9c89c27bf54a07b7ba547eddd029287b2e191 | e770f1c3969be76fdba5d7760e036f9ba060957d | refs/heads/master | 2020-07-17T14:51:49.610703 | 2019-09-03T16:22:58 | 2019-09-03T16:22:58 | 206,039,578 | 1 | 2 | null | null | null | null | UTF-8 | Java | false | false | 1,697 | java | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE129_Improper_Validation_of_Array_Index__URLConnection_array_size_53b.java
Label Definition File: CWE129_Improper_Validation_of_Array_Index.label.xml
Template File: sources-sinks-53b.tmpl.java
*/
/*
* @description
* CWE: 129 Improper Validation of Array Index
*... | [
"bqcuong2212@gmail.com"
] | bqcuong2212@gmail.com |
8c2c80f29e4f5f59686ffc447374dd4f127d4c09 | 8d051536cfebb3a4322d405d2c625e0e6824c57d | /app/src/main/java/com/smack/administrator/smackstudyapplication/emojicon/EaseEmojiconPagerView.java | df0ef969f5826f5808f01e8636809a0da3c0b8bb | [] | no_license | ruichaoqun/SmackStudyApplication | 7c1d96ffe6dfdf2fc891a96771e90c9c8d5af57b | 9f698d65eb4113cf02bb07e79b40e8a91571e0f5 | refs/heads/master | 2020-03-29T05:40:07.799631 | 2018-12-18T10:35:45 | 2018-12-18T10:35:45 | 149,592,707 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,220 | java | package com.smack.administrator.smackstudyapplication.emojicon;
import android.content.Context;
import android.support.v4.view.PagerAdapter;
import android.support.v4.view.ViewPager;
import android.util.AttributeSet;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemC... | [
"ruichaoqun121@163.com"
] | ruichaoqun121@163.com |
02bdaa3765f63b7eb29600bc485d4d95dbdd8da2 | ff578101c84d64fcfb9bef1222e0bda327673d44 | /kodilla-testing2/src/test/java/com/kodilla/testing2/crudapp/CrudAppTestSuite.java | 6e5900398327d460f307f285a49bf18ee14ddae5 | [] | no_license | BeataBRB/beata-blizniewska-kodilla-java | 9ae939b102622e02c5c997fa87034a07ed97ef5c | bc4815f363877d628e8ea5b3789286c062064bba | refs/heads/master | 2020-05-31T08:33:14.040098 | 2020-02-16T09:27:13 | 2020-02-16T09:27:13 | 190,192,146 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,861 | java | package com.kodilla.testing2.crudapp;
import com.kodilla.testing2.config.WebDriverConfig;
import org.junit.*;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.Select;
import java.util.Random;
import java.util.stream.Colle... | [
"bblizniewska.1988@gmail.com"
] | bblizniewska.1988@gmail.com |
5f830d1bcb5cf729826b1e5965a5e42a2b8d6a90 | 565a09cf432652421d0256c7bc264fc12bd25d2d | /src/main/java/org/macross/shopping_mall/model/entity/CommodityCategory.java | bdea14d73a5c29a3fc5cbbc280ccf5ae549bfa48 | [] | no_license | MacrossGithub-coder/ShoppingMall | c5554efddb83a46b4fa0a93557bb13d16290d565 | 822d56be98f3afb8343cbd12e462d55bbad70f6f | refs/heads/master | 2023-01-08T20:33:33.078541 | 2020-11-10T11:20:51 | 2020-11-10T11:20:51 | 284,045,737 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,475 | java | package org.macross.shopping_mall.model.entity;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Date;
import java.util.List;
/**
* id int 类别id
* describe varchar 描述
* create_time datetime
*/
public class CommodityCategory {
private I... | [
"66687575+MacrossGithub-coder@users.noreply.github.com"
] | 66687575+MacrossGithub-coder@users.noreply.github.com |
b7d364080216b4fe1f28456c6dd35b26acdd25ef | ba3fcb3e973b200c39f8b5f527855ff7d90549ad | /projeto-jpa/src/main/java/br/com/alura/jpa/testes/CriaConta.java | 12da857e1d832b7d3fd3a8770b20b269f76cfc98 | [] | no_license | torresmath/java-jdbc | caae4818609833854d706a478807a266a730476c | f70f9ece57892be64f094669f70101b11e87a3cb | refs/heads/main | 2023-04-24T23:37:54.321691 | 2021-05-16T17:43:43 | 2021-05-16T17:43:43 | 367,948,219 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 657 | java | package br.com.alura.jpa.testes;
import br.com.alura.jpa.modelo.Conta;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.Persistence;
public class CriaConta {
public static void main(String[] args) {
EntityManagerFactory emf = Persistence.cre... | [
"torresmatheus_@hotmail.com"
] | torresmatheus_@hotmail.com |
1f896e316cd45c403591c9ba6e0c34d5273f3699 | 37e2f76cadcbf09314366a5bc7eff7b06e89c4b7 | /src/main/java/frc/robot/subsystems/DriveBaseHolder.java | f1459b16c42f039b6c95cbdc04dd03b35eb23741 | [] | permissive | FRC2706/2020-2706-Robot-Code | 802226e50f546390749d76742842080ab9ab4bd9 | e34dbcac4f7614aa381f3d46e5d7ccca9cd70a22 | refs/heads/master | 2022-11-25T10:04:44.251177 | 2020-11-05T01:03:42 | 2020-11-05T01:03:42 | 232,693,579 | 6 | 3 | BSD-3-Clause | 2020-11-05T01:03:43 | 2020-01-09T01:18:12 | Java | UTF-8 | Java | false | false | 658 | java | package frc.robot.subsystems;
import frc.robot.Robot;
import frc.robot.config.Config;
import java.lang.reflect.InvocationTargetException;
public class DriveBaseHolder {
private static DriveBase INSTANCE;
public static void init() {
try {
INSTANCE = Config.DRIVEBASE_CLASS.getD... | [
"nrgill28@gmail.com"
] | nrgill28@gmail.com |
3641330a9dd21b261c7d50ef52775902e3059886 | 075e0ef731109ec156f9e62b2b393745cc2a385f | /src/main/java/com/zimmur/platform/manage/web/common/PropertiesCommon.java | f2a9b0cfe4e29923ee2e61ba57762acb73b9b143 | [] | no_license | huangsx0512/manage-web | 42009f9984ae8fc0a6b593da617c6f184dc4efa8 | ceb3ac7fc5c64820fa9bab1a7d4b4e3958954810 | refs/heads/master | 2020-04-13T10:42:48.486616 | 2019-04-09T13:50:06 | 2019-04-09T13:50:06 | 163,150,429 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 655 | java | package com.zimmur.platform.manage.web.common;
import java.io.IOException;
import java.util.Properties;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
import org.springframework.core.io.support.PropertiesLoaderUtils;
public class PropertiesCommon {
private static P... | [
"hsx902910@163.com"
] | hsx902910@163.com |
12834aaa006434a932ffac44703d4f264eacacf9 | acacfb5a0407ea1349a78bc71c70100e72a8103d | /src/main/java/tr/com/epias/web/test/gen/model/QueryContractStatusResponse.java | 29ecc1e99222f97a04cc243612ba9dd115946391 | [] | no_license | epiastr/gopjavaclient | 798af63e25580db30b9686a3772d6d1508c7d6ee | 98bc7f1a5f5ef7c9fa64f847f2d88cf823f173dd | refs/heads/master | 2021-01-01T03:43:14.611768 | 2016-05-12T13:05:47 | 2016-05-12T13:05:47 | 58,641,438 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,899 | java | package tr.com.epias.web.test.gen.model;
import java.util.Objects;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import tr.com.epias.web.test.gen.model.ContractStatus;
import com.google.gson.annotations.SerializedName;
/*... | [
"orhan.yilmaz@epias.intra"
] | orhan.yilmaz@epias.intra |
c2853546535e841de009f5cd3dbd7a383308d635 | 35948689cf2cfbc08b4aa762e1e2457b3e37720a | /proxy/web/src/main/java/ir/ac/iust/dml/kg/knowledge/proxy/web/services/v1/ForwardServiceImpl.java | d74c161740576b002e3f4c1d72133f3ec0715987 | [
"Apache-2.0"
] | permissive | IUST-DMLab/farsbase | b0b9b02ac271a05f7793fbe1eae4e6c6627300df | 2e020ae3d619a35ffa00079b9aeb31ca77ce2346 | refs/heads/master | 2020-03-24T22:18:46.314400 | 2018-08-01T11:56:23 | 2018-08-01T11:56:23 | 143,078,400 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,013 | java | package ir.ac.iust.dml.kg.knowledge.proxy.web.services.v1;
import ir.ac.iust.dml.kg.knowledge.proxy.access.dao.IForwardDao;
import ir.ac.iust.dml.kg.knowledge.proxy.access.dao.IPermissionDao;
import ir.ac.iust.dml.kg.knowledge.proxy.access.entities.Forward;
import ir.ac.iust.dml.kg.knowledge.proxy.access.entities.Perm... | [
"majid.asgari@gmail.com"
] | majid.asgari@gmail.com |
4c65f4e24257a0a5d5098ec4e846884e66131a8b | 4cc7e63c8619085ed2d4915d769a13a454c1fd84 | /UdemyPracticas/src/Aritmetica/Aritmetica_V3.java | fff002a26eb788a0c6f6c9e79bd652a1c22986c4 | [] | no_license | GildoC/Test | 0b6b21fc4983a4c787ea0edf07abd3057c01c31c | c07d4964efc16e13ca33c4b6136471dedfc64a30 | refs/heads/master | 2021-01-22T05:11:09.226421 | 2019-12-19T02:23:40 | 2019-12-19T02:23:40 | 102,277,909 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 631 | 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 Aritmetica;
public class Aritmetica_V3 {
int a;
int b;
Aritmetica_V3(){
}
... | [
"Gildo@Gildo-Asus"
] | Gildo@Gildo-Asus |
8e533ca85f6dffc12c8d3c72226f11a521f78b41 | 3e199d64551f1ce3fde392d657b753a09d26939d | /android/app/src/main/java/com/plappyhannerandroid/MainActivity.java | 3171e9a9d14084380b27976344a068c43866835f | [] | no_license | jnk2016/happy-planner-frontend | 79fff2d7bc9445fcda69df2ed70feaa9d02d86d7 | b6a700061f51a3a315da67bad821150d40af4d7f | refs/heads/master | 2023-04-19T14:02:52.793117 | 2021-02-08T10:34:25 | 2021-02-08T10:34:25 | 322,148,031 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 365 | java | package com.plappyhannerandroid;
import com.facebook.react.ReactActivity;
public class MainActivity extends ReactActivity {
/**
* Returns the name of the main component registered from JavaScript. This is used to schedule
* rendering of the component.
*/
@Override
protected String getMainComponentName... | [
"jnk2016@gmail.com"
] | jnk2016@gmail.com |
a2185f96d0daebf36b1b57c150a64b915300ed5b | 0c207c2c8996f9e5fd79077484858b217a22ca36 | /day05_butterknife/src/main/java/com/nan/day05_butterknife/MainActivity2.java | fcd188fce0f914b23b66be4afbef9bc60386a19f | [] | no_license | huannan/Architecture | 13a75919eaa2a952125aa2c5868ee17ad111b9d5 | f41ac58b1533c75bd8945a30efd9ff23c243bfe1 | refs/heads/master | 2022-08-23T07:52:43.482888 | 2022-06-30T08:45:23 | 2022-06-30T08:45:23 | 292,816,424 | 11 | 3 | null | null | null | null | UTF-8 | Java | false | false | 829 | java | package com.nan.day05_butterknife;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.TextView;
import com.nan.day05_butterknife_annotations.BindView;
import com.nan.day05_butterknife_core.ButterKnife;
import com.nan.day05_butterknife_core.Unbinder;
public class MainActi... | [
"wuhuannan@meizu.com"
] | wuhuannan@meizu.com |
41b075f6d5790beea8acf5a50f94d9a4a886d298 | c54bd79cfbd65b00a63ca9de7c9b9729e397c57e | /src/com/java/test/CalculatorNormal.java | 654ee066c2f22c375e6e546196032a29a01fef04 | [] | no_license | surajsontakke/practice | f7671b9832c712b42f46c8f1a6876ebf808d1ad8 | 3e55722ebc0316eeac95dac7c318bf448eee6188 | refs/heads/master | 2020-05-15T12:29:44.094162 | 2019-04-19T13:33:30 | 2019-04-19T13:33:30 | 182,266,200 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 460 | java | package com.java.test;
import java.util.Scanner;
public class CalculatorNormal {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scan = new Scanner(System.in);
double fnum, snum, avrange;
System.out.println("Enter first number : ");
fnum = scan.nextDouble();
System.ou... | [
"suraj.sontakke52@yahoo.in"
] | suraj.sontakke52@yahoo.in |
4043d7a2d19fd2d328eea437c5823060dead5416 | ec0ca7ddb7e1e4f943055343320ad31d59d8d3fc | /JAVA-SE/10.【接口、多态】/src/main/java/com/aurora/demo02/MyInterfaceA.java | d853cfb04b2a4534ba7fa2fd765b352e386b6336 | [] | no_license | liuxuan-scut/JavaSE | eab815b49880b193380782b120e975aabec4390c | aa8f78164e6d2884e4c2d87869374cf6f8438f3c | refs/heads/master | 2022-11-24T11:30:09.724248 | 2020-07-31T05:35:24 | 2020-07-31T05:35:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 407 | java | package com.aurora.demo02;
public interface MyInterfaceA {
// 错误写法!接口不能有静态代码块
// static {
//
// }
// 错误写法!接口不能有构造方法
// public MyInterfaceA() {
//
// }
public abstract void methodA();
public abstract void methodAbs();
public default void methodDefault() {
System.out.println(... | [
"wh14787946648@outlook.com"
] | wh14787946648@outlook.com |
a12a2023497e42a681a3b8b3d4fe35dba2a07ee1 | 790138a2258b5090f7afe8006b5eb92e650cdaa0 | /src/main/java/com/example/demo/DemoApplication.java | eb73b1fc804a0ba4351f3aa17367f46e618dbcf7 | [] | no_license | lijian19931216/lilijun | d0588c11c87ee43d6074301ed99a98065018c516 | 4e3055c54f6720ceebdfd6ddd9a59fdc55a182da | refs/heads/master | 2022-06-22T22:51:39.023596 | 2019-10-21T13:50:04 | 2019-10-21T13:50:04 | 204,953,275 | 0 | 0 | null | 2022-06-17T02:35:04 | 2019-08-28T14:36:32 | JavaScript | UTF-8 | Java | false | false | 663 | java | package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
@SpringBootApplication
p... | [
"928229131@qq.com"
] | 928229131@qq.com |
3709e6bab87361e8ff883bb9ae8b72b7322d4b77 | d6875a18ef080b900bc1f2cb5c28cabe15185864 | /src/main/java/com/sg/floormaster/dto/OrderSerializerForFileSave.java | caab1b54e53bc67f7aa17460d5cffd8ef5e2eae0 | [] | no_license | vannjo02/FloorMaster | e641897675eec510e6229746623f509217428256 | d45bf512b0b77342363f1b23a7945139bf8f7536 | refs/heads/master | 2020-04-10T06:00:42.925301 | 2018-12-07T15:49:01 | 2018-12-07T15:49:01 | 160,753,222 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,295 | java |
package com.sg.floormaster.dto;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonSerializationContext;
import com.google.gson.JsonSerializer;
import java.lang.reflect.Type;
/**
*
* @author Joshua Vannatter
*/
public class OrderSerializerForFileSave implements JsonS... | [
"vannjo02@luther.edu"
] | vannjo02@luther.edu |
f71f52ee384108eb61ef037e9302516fb65434df | a8d9596e8943c782889734deab02a07c1f09b3d9 | /genie-common-internal/src/main/java/com/netflix/genie/common/internal/services/impl/JobDirectoryManifestServiceImpl.java | dfb6b10dcc96198880e41424d7c7b9377951e167 | [
"Apache-2.0"
] | permissive | cnxtech/genie | edf623ff431d89829d323054fce02251aa6d2817 | b01a44f522c0ef03428376d869262b4bafcf54cb | refs/heads/master | 2022-05-14T00:20:51.706497 | 2019-08-05T19:11:20 | 2019-08-06T20:40:18 | 201,105,300 | 0 | 0 | Apache-2.0 | 2022-05-01T08:15:50 | 2019-08-07T18:22:01 | Java | UTF-8 | Java | false | false | 2,923 | java | /*
*
* Copyright 2019 Netflix, 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
*
* Unless required by ap... | [
"mprimi@netflix.com"
] | mprimi@netflix.com |
1fbd6a4f9d679808c3f2a526b0a407ed0af6b3e5 | 3957e45e36f25535df2d06a9c69afd813d5a3199 | /src/main/java/com/github/com/jorgdz/app/service/IUsuarioService.java | 51dee227c9a3d66ed360e8f01dac5e163c7648ea | [] | no_license | jorgdz/biblioteca | 6ab58063c9c2b0eaaf6af7460d74ed0ec79a1a5a | 909fc3d2050230dd3f5ba86d5335045f038a1c74 | refs/heads/master | 2021-02-26T19:18:39.222300 | 2020-03-31T23:18:01 | 2020-03-31T23:18:01 | 245,548,120 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 558 | java | package com.github.com.jorgdz.app.service;
import java.util.Optional;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import com.github.com.jorgdz.app.entity.Usuario;
public interface IUsuarioService {
Usuario findById(Long id);
Page<Usuario> findAll(Optional<Stri... | [
"jdzm@outlook.es"
] | jdzm@outlook.es |
cdd4421f9162109e25b572a83e66970949a01ea6 | 89853df9ca1bfff1b32132195b31e085a1d833a0 | /Proy_FormRightNow/src/com/rightnow/ws/nullfields/ContactSalesSettingsNullFieldsE.java | 3ca76b61820e4958cabcea9efb50f616e1a94502 | [] | no_license | WSebastian/Proy_RightNow_Soap | 88ca135b26e4812cb750adbbbc45baf37d6dc9b5 | 9bd68a4cfd622efd5e37ee5f2e3f64749f1c54db | refs/heads/master | 2021-03-12T23:29:46.950775 | 2015-10-28T20:46:18 | 2015-10-28T20:46:18 | 42,743,575 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 15,776 | java |
/**
* ContactSalesSettingsNullFieldsE.java
*
* This file was auto-generated from WSDL
* by the Apache Axis2 version: 1.5.1 Built on : Oct 19, 2009 (10:59:34 EDT)
*/
package com.rightnow.ws.nullfields;
/**
* ContactSalesSettingsNullFi... | [
"asefora2080@gmail.com"
] | asefora2080@gmail.com |
db35889b10d8ce7f6b6664a3b073b99800963493 | 421dd2eb1f38b36769d65cbf71349259ff4584b0 | /src/com/fixent/sm/client/maintenance/view/SubjectMaintenanceView.java | 3d39e1c117bf09fc5159e5f8302b431d4cb43eda | [] | no_license | arulxavier/StudentManagement | fccfc5472fd0e941abb5098fca143024ca15462b | 2fe3227e46e7fcd13be8f59179f5b38b9376e3a9 | refs/heads/master | 2021-01-10T13:55:20.420095 | 2014-07-31T10:12:31 | 2014-07-31T10:12:31 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,180 | java | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.fixent.sm.client.maintenance.view;
/**
*
* @author Mathan
*/
public class SubjectMaintenanceView extends javax.swing.JPanel {
/**
* Creates new form Maintenance
*/
public SubjectMainten... | [
"mathan@ubuntu.(none)"
] | mathan@ubuntu.(none) |
f9243545ff4c5eecf3eed6c157d142da9f6a39be | 6da6cf5935fffd187eaade9146f56d12b0c581e0 | /src/main/java/com/renault/wired/SpringBootWebApplication.java | 5c6690379269563b46952e5df6ddfd02f80b87df | [] | no_license | caesarpro/fspage | 5c4eeab90a977356bc0e5a35cf13b696dcdd5be9 | efa6b4e644b69aa9279534210c81ae4b153cbae2 | refs/heads/master | 2020-04-05T23:17:29.017183 | 2017-03-27T15:21:07 | 2017-03-27T15:21:07 | 7,867,318 | 0 | 0 | null | 2017-03-27T15:21:08 | 2013-01-28T10:04:20 | null | UTF-8 | Java | false | false | 335 | java | package com.renault.wired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class SpringBootWebApplication {
public static void main(String[] args) {
SpringApplication.run(SpringBootWebApplication.class, ... | [
"sebaoui@ubuntu.ubuntu-domain"
] | sebaoui@ubuntu.ubuntu-domain |
adec6107b9b5e6cb3f84086ac24d008f65f2b7df | b176b1b603cb5ea9a969c4d910214bde72a8b103 | /src/main/java/com/steve/academysteveback/blog/service/BlogService.java | 623233ebc6fb931495af7f39bd0db9d7acc5dae9 | [] | no_license | academystevelee/academysteve-back | 13c633095cbc943636e7af9f500441f87545701e | ef2af220a5f0225df4b71bc0712159593435e668 | refs/heads/master | 2023-08-11T14:01:34.605677 | 2021-09-27T08:44:17 | 2021-09-27T08:44:17 | 397,259,491 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,931 | java | package com.steve.academysteveback.blog.service;
import com.steve.academysteveback.blog.dto.BlogDto;
import com.steve.academysteveback.blog.entity.BlogEntity;
import com.steve.academysteveback.blog.repository.BlogRepository;
import com.steve.academysteveback.util.commoncode.CommonCodeService;
import com.steve.academy... | [
"stevelee@steveleejava.com"
] | stevelee@steveleejava.com |
6116067c587191c2deb22c2666277e00663c044c | b713d9697b33b12c6a9e315ccf2bc83f9a7f6243 | /sys_parent/sys_core/src/main/java/com/sys/core/App.java | 88d7d3af93c61f00ca6ed9b1aae14d2f5185c583 | [] | no_license | qshome/sys_parent | aa1a92cf5c00ff5d48848828d1a2287a14b1e10d | ee3c22f18abdb4e60a680016436306ab5464b06f | refs/heads/master | 2020-04-11T05:51:13.351332 | 2018-12-27T07:09:30 | 2018-12-27T07:09:30 | 161,561,912 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 188 | java | package com.sys.core;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}
| [
"758085249@qq.com"
] | 758085249@qq.com |
4884f83f53a82add39faf9fc763c4b881f5e9000 | deb747e039ea25f5859ff8199015eadd7ff60070 | /src/cn/edu/xmu/software/binarykang/minor/sheet3/chapter05/_5_1/_5_1_2.java | 17662f22aa8ac5de6973ff1290e2f4c281a857c6 | [
"Apache-2.0"
] | permissive | huazhz/ParseWeb | fb393294614257457d59ea55647cfcc60466e2fe | d0275f08fc2799b0cce923dae988c63c10fa6b5e | refs/heads/master | 2020-04-17T14:40:51.763485 | 2017-07-17T09:22:54 | 2017-07-17T09:22:54 | null | 0 | 0 | null | null | null | null | WINDOWS-1252 | Java | false | false | 1,380 | java | package cn.edu.xmu.software.binarykang.minor.sheet3.chapter05._5_1;
import java.util.List;
import cn.edu.xmu.software.binarykang.minor.MinorBaseAction;
import cn.edu.xmu.software.binarykang.minor.parse.DataMap;
import cn.edu.xmu.software.binarykang.minor.util.MinorUtil;
import cn.edu.xmu.software.binarykang.word.Docx... | [
"695089605@qq.com"
] | 695089605@qq.com |
8bb8401b77a9e005ed71fc13e33d0ff8fa5d24ad | 2f3c04382a66dbf222c8587edd67a5df4bc80422 | /src/com/cedar/cp/api/dimension/DimensionEditor.java | 4ea4d7b9c03285da508d7405e8aef1120707e062 | [] | no_license | arnoldbendaa/cppro | d3ab6181cc51baad2b80876c65e11e92c569f0cc | f55958b85a74ad685f1360ae33c881b50d6e5814 | refs/heads/master | 2020-03-23T04:18:00.265742 | 2018-09-11T08:15:28 | 2018-09-11T08:15:28 | 141,074,966 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,700 | java | // Decompiled by: Fernflower v0.8.6
// Date: 12.08.2012 13:04:17
// Copyright: 2008-2012, Stiver
// Home page: http://www.neshkov.com/ac_decompiler.html
package com.cedar.cp.api.dimension;
import com.cedar.cp.api.base.BusinessEditor;
import com.cedar.cp.api.base.CPExce... | [
"arnoldbendaa@gmail.com"
] | arnoldbendaa@gmail.com |
5a384c374e83e0a9d8ff05f9a887cb64dd3d6508 | 48e835e6f176a8ac9ae3ca718e8922891f1e5a18 | /benchmark/validation/io/reactivex/internal/operators/single/SingleTakeUntilTest.java | b54e681666c6f50599c5e86f248d86de0eed8316 | [] | no_license | STAMP-project/dspot-experiments | f2c7a639d6616ae0adfc491b4cb4eefcb83d04e5 | 121487e65cdce6988081b67f21bbc6731354a47f | refs/heads/master | 2023-02-07T14:40:12.919811 | 2019-11-06T07:17:09 | 2019-11-06T07:17:09 | 75,710,758 | 14 | 19 | null | 2023-01-26T23:57:41 | 2016-12-06T08:27:42 | null | UTF-8 | Java | false | false | 18,366 | java | /**
* Copyright (c) 2016-present, RxJava Contributors.
*
* 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 l... | [
"benjamin.danglot@inria.fr"
] | benjamin.danglot@inria.fr |
a2db3c2a7fd9ab3810a8fe77644ecde2eb8d28db | fc5f16c7dd1cd7aee2d2ca0eb414860b5ad6d384 | /src/temp/src/minecraft/net/minecraft/src/Packet15Place.java | f9967ade1efba65eaa933168a5aa95e7c9049ca5 | [] | no_license | Nickorama21/Minecraft--TI-Nspire-CX-Port | 44eeca7a742d199e223d712866352a9e12b3290c | 95acc13c310f519ed8d4ed5a755ef70712da532f | refs/heads/master | 2020-05-17T11:31:43.456900 | 2012-09-01T17:24:47 | 2012-09-01T17:24:52 | 5,623,326 | 4 | 1 | null | null | null | null | UTF-8 | Java | false | false | 2,802 | java | package net.minecraft.src;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import net.minecraft.src.ItemStack;
import net.minecraft.src.NetHandler;
import net.minecraft.src.Packet;
public class Packet15Place extends Packet {
private int field_73415_a;
private int fi... | [
"nickparker.stl@gmail.com"
] | nickparker.stl@gmail.com |
d389ef4f1e674ebb2f6123763f8d6b2345da70a1 | d315efb39259f87fc1a50ce6940480a859a4b301 | /SolvedInterviewsQuestionsJava/src/strings/SubstringSearchMethods.java | 92c809f1e5cfb8732711c5487d301caa844cbd81 | [] | no_license | AnoopJS8/DataStructuresAndAlgorithms | 5e4fd48665a44f4b3a60a91fe1098a93127d7221 | 0ffcb6a4d28880ae66a10c3efc5094c05847f581 | refs/heads/master | 2021-01-17T07:09:25.158827 | 2016-07-25T04:38:33 | 2016-07-25T04:38:33 | 53,377,848 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,406 | java | package strings;
public class SubstringSearchMethods {
public boolean naiveMethod(char[] text,char[] pattern){
int i=0;
int j=0;
int k=0;
while(i<text.length&&j<pattern.length){
if(text[i]==pattern[j]){
i++;
j++;
}else{
j=0;
k++;
i=k;
}
}
if(j==pattern.length){
return ... | [
"anoop.jyoti88@gmail.com"
] | anoop.jyoti88@gmail.com |
b432d6fa0f95cfd32387c2e86ee51e595d7fc163 | 8532623bd3221b27625514a651710a4a189d9f3c | /src/org/teragrid/portal/filebrowser/applet/ui/tree/AnimatedTreeUI.java | ac4a714983910a78a44d30411131bea88371f0ad | [] | no_license | maytaldahan/filemanager | a8a7be80a4cca7083f72e248d028397b644632e5 | 3e9219246bd89de6b01b98c7bad55f61fe7c9200 | refs/heads/master | 2021-01-17T05:02:48.737340 | 2012-12-14T18:14:48 | 2012-12-14T18:14:48 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,872 | java | package org.teragrid.portal.filebrowser.applet.ui.tree;
/**
* Copyright Neil Cochrane 2006
*/
import java.awt.Graphics;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import javax.swing.JComponent;
import javax.swing.JViewp... | [
"dooley@tacc.utexas.edu"
] | dooley@tacc.utexas.edu |
5171a72445f96753d29c474ca2f952342657ffd3 | f50046326cdf9ee9be4d7206fa9dc945a38532a3 | /moon-ware/src/main/java/com/github/moon/ware/entity/WareOrderTaskDetailEntity.java | ee675246bb513e01d97d43da135a62a740fb27d7 | [] | no_license | RewriteW/moon | d6731d6cdb0dc8401c3c7bf7ddf920fa54f65376 | 03151634b99fe6dbc5de062d63285e1ed946d1c6 | refs/heads/main | 2023-03-12T08:26:24.632345 | 2021-03-01T00:28:00 | 2021-03-01T00:28:00 | 342,416,882 | 0 | 0 | null | 2021-02-26T05:48:46 | 2021-02-26T00:27:56 | JavaScript | UTF-8 | Java | false | false | 718 | java | package com.github.moon.ware.entity;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
/**
* 库存工作单
*
* @author wsg
* @email wsg@gmail.com
* @date 2021-02-26 16:16:04
*/
@Data
@TableN... | [
"wushigao@166.com"
] | wushigao@166.com |
efcba4a8fff5fbed53284c1e02867f844f0dd956 | 5aefed117dfb1016976d23e64f366be8b147cd74 | /core/src/com/sugurugreg/game/sprites/Bird.java | 258ceb540374a68c28f2c156d15b05ae531ff456 | [] | no_license | Suguru-Tokuda/SkiGame | c043394afd86d2b9cdcc3587bcd1c99c5da2914a | 3eefc2b6ee5f04d1545573c978eae8ccd98d119a | refs/heads/master | 2021-01-13T01:48:26.114220 | 2017-03-02T04:15:48 | 2017-03-02T04:15:48 | 81,523,420 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,638 | java | package com.sugurugreg.game.sprites;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.TextureRegion;
import com.badlogic.gdx.math.Rectangle;
import com.badlogic.gdx.math.Vector3;
/**
* Created by Suguru on 2/10/17.
*/
public class Bird {
private static final int GRAVITY = -15;
... | [
"suguru.tokuda@gmail.com"
] | suguru.tokuda@gmail.com |
317be3b6404fc6b305e0cba86ac3e68632946e32 | bb948229c88575fd098ab8b06643ba86f6d31369 | /EventosMadrid/app/src/main/java/com/sfaci/eventos/activities/MapaActivity.java | 0bfd7ac4ba6873b938741400b918efdaf4a0dc42 | [] | no_license | codeandcoke/android-ejercicios | a94a19577257374ecc3b93b5d95921dc63a5959a | 3e6e42b9bf554b4619f74d5b7a77ebd5fb607370 | refs/heads/master | 2021-04-26T23:07:23.418552 | 2019-11-26T18:50:03 | 2019-11-26T18:50:03 | 123,933,868 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,432 | java | package com.sfaci.eventos.activities;
import android.app.Activity;
import android.content.Intent;
import android.support.annotation.NonNull;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import com.mapbox.mapboxsdk.MapboxAccountManager;
import com.mapbox.mapboxsdk.annotations.MarkerOption... | [
"santiago.faci@gmail.com"
] | santiago.faci@gmail.com |
01defeeae452b33bc182f43e85665b43fb931198 | 73b0455759b35cc73ebe4f08079a1bef1ebd889f | /src/model/ServiceProduct2.java | a04b6dccb4d4489145ce377fb6f72564f8a29ad7 | [] | no_license | HugoPDF5/qualidade-SW | 57d35f343b794452ef6bf2689dd0f5c46cf9e48e | 4c589a3b69a9d333d1bfc2d7c344d44697e6b35b | refs/heads/master | 2023-07-13T16:33:40.727307 | 2021-09-02T03:44:36 | 2021-09-02T03:44:36 | 396,818,059 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,313 | java | package model;
import java.util.ArrayList;
import exception.ServiceException;
public class ServiceProduct2 {
private ArrayList<ServiceItem> itens = new ArrayList<ServiceItem>();
public ArrayList<ServiceItem> getItens() {
return itens;
}
public void addItem(ServiceItem item) throws ServiceException {
if (it... | [
"hugopatricio51@gmail.com"
] | hugopatricio51@gmail.com |
2a946caf1bdca5cc204f67e63f6e5f6a830b452c | 55d97b5f5f18d4414dad5a09dd83a4553151e26d | /src/main/java/hu/elte/cinema/converter/dto/SeatDtoConverter.java | b6b2c9dd2652b99d1af3d06463b52bbe0b94d18e | [] | no_license | CusterSquad/custer-cinema | 6bed53e2d64dec4de1e4670c445fdde91c77c4e3 | 1cd8e5e6aa936d35a589971d19ecb1d3a4fbcd03 | refs/heads/master | 2021-01-20T16:56:31.441792 | 2017-09-18T18:37:54 | 2017-09-18T18:37:54 | 82,842,499 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 577 | java | package hu.elte.cinema.converter.dto;
import hu.elte.cinema.dto.SeatDto;
import hu.elte.cinema.model.Seat;
import org.springframework.core.convert.converter.Converter;
import org.springframework.stereotype.Component;
@Component
public class SeatDtoConverter implements Converter<Seat, SeatDto> {
@Override
pu... | [
"s.wap.elte@gmail.com"
] | s.wap.elte@gmail.com |
e3c425eefe75490efb04d793c4bcbb285859026d | c156463cf82d43fff75cd484b0884a6b99404aa2 | /ZeroToHero1/src/Object____Practice/Mobile_Application_TEST.java | fc722c08e1884b34549f49c6694cf707c6226ac6 | [] | no_license | bamboo1991/ZeroToHero1 | 39d71380d5e8f96beb4c4301cb3571b759d48a55 | 84402e09e63e176d5129f0460fd6087d218dabd8 | refs/heads/master | 2022-07-10T19:30:33.958922 | 2020-04-04T04:33:01 | 2020-04-04T04:33:01 | 241,712,319 | 0 | 1 | null | 2020-10-13T20:23:23 | 2020-02-19T19:56:37 | Java | UTF-8 | Java | false | false | 3,013 | java | package Object____Practice;
import java.util.Scanner;
public class Mobile_Application_TEST{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
Mobile_Aplication phone = new Mobile_Aplication();
System.out.println("Welcome to your contact list application");
... | [
"stamovuber@gmail.com"
] | stamovuber@gmail.com |
74ff3511a4c69c603e2ab299f4b444a6a757ec81 | 69b2284d7c60f1f28084e1884f68c42c372c49db | /src/org/utcluj/bpel/BPELInvoke.java | d899565e5c22bac5c2a7144a115768fc65b1a9ae | [] | no_license | mrlini/QoSoptimization | 431e4760bfd306f81051ed6240c03b763d0c45b1 | 759e1adad980ad17b55b8921fccae0623ae2d8fe | refs/heads/master | 2021-01-10T06:11:28.289204 | 2017-05-05T18:06:55 | 2017-05-05T18:06:55 | 43,005,811 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 464 | java | package org.utcluj.bpel;
/**
*
* This activity is used to call Web Services offered by service providers.
*
* @see <a href="http://docs.oasis-open.org/wsbpel/2.0/wsbpel-specification-draft.html#_Toc143402873">Web Services Business Process Execution Language Version 2.0</a>
*
* @author Florin Pop
*
*/
publ... | [
"mihsuciu@gmail.com"
] | mihsuciu@gmail.com |
e28863f191690798dae653151d3400b21cedb32a | adea4529c3f0756567a8871157c6b4a91cdeb25d | /app/src/main/java/com/example/vrushank/multibhashi/Rest/ApiInterface.java | 8b215b1fac072d87aa8f92d06272c730128702dd | [] | no_license | vrush03/Multibhashi2 | 82237ef2d18fb54bc776ce43772267654b4059f8 | dd86512628bac22897e9ae0e5ed311598667609a | refs/heads/master | 2021-01-19T10:17:12.010936 | 2017-04-13T20:43:55 | 2017-04-13T20:43:55 | 87,848,796 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 294 | java | package com.example.vrushank.multibhashi.Rest;
import com.example.vrushank.multibhashi.Model.ApiResponse;
import retrofit2.Call;
import retrofit2.http.GET;
/**
* Created by vrushank on 10/4/17.
*/
public interface ApiInterface {
@GET("bins/hoo8n/")
Call<ApiResponse> getData();
}
| [
"uvrushank21@gmail.com"
] | uvrushank21@gmail.com |
c773889c16f33f5adf866d6cdd759bd4fb235969 | 129f58086770fc74c171e9c1edfd63b4257210f3 | /src/testcases/CWE690_NULL_Deref_From_Return/CWE690_NULL_Deref_From_Return__System_getProperty_equals_22a.java | 3eaa2640f16ca23ec2206158bb14adf548fb76e9 | [] | no_license | glopezGitHub/Android23 | 1bd0b6a6c7ce3c7439a74f1e4dcef2c4c0fac4ba | 6215d0684c4fbdc7217ccfbedfccfca69824cc5e | refs/heads/master | 2023-03-07T15:14:59.447795 | 2023-02-06T13:59:49 | 2023-02-06T13:59:49 | 6,856,387 | 0 | 3 | null | 2023-02-06T18:38:17 | 2012-11-25T22:04:23 | Java | UTF-8 | Java | false | false | 3,652 | java | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE690_NULL_Deref_From_Return__System_getProperty_equals_22a.java
Label Definition File: CWE690_NULL_Deref_From_Return.label.xml
Template File: sources-sinks-22a.tmpl.java
*/
/*
* @description
* CWE: 690 Unchecked return value is null, leading to a null pointer dereferenc... | [
"guillermo.pando@gmail.com"
] | guillermo.pando@gmail.com |
205509796fa25fcb40bf3e605dd8ca79c2fd04c2 | 132e3b8f56ed5d79c6190b280b93b182948a03a4 | /Sum of numbers using function/Main.java | d2bd7b058cad4231230475d530debf9b0089cb0c | [] | no_license | 15641A0577/Playground | 57799e5f771d92fee818cc38e8953c58e9498951 | 1c4fec506e64b8c732fc8b22ade5d5608672033b | refs/heads/master | 2020-04-26T19:20:33.347728 | 2019-06-11T19:18:53 | 2019-06-11T19:18:53 | 173,771,560 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 445 | java | import java.util.Scanner;
class Main{
public static void main (String[] args)
{
// Type your code here
Scanner in = new Scanner(System.in);
int n = in.nextInt();
System.out.print(sum_of_numbers(n)); // Function call
}
// Function to find the sum of numbers
public static int sum_of_number... | [
"40996081+15641A0577@users.noreply.github.com"
] | 40996081+15641A0577@users.noreply.github.com |
bc8fc84dea615d363394f6fcdcea817245494fba | dddd612dc53ff16b82cba7a56c956542bb9bc1ff | /Ders4/src/Kosulluİfadeler/İfElseApp.java | 0e33647198fc73e42a45844509596fbc7541f454 | [] | no_license | Upaksoy/Bilgeadam | 8cc60c5b5a42033f58528efea1a65ba4b953eda7 | d8fe51f60f3744cea708d7eb90a3d1f53d8d6a39 | refs/heads/master | 2020-04-18T22:04:58.531317 | 2019-03-03T11:11:42 | 2019-03-03T11:11:42 | 167,783,813 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 608 | java | package Kosulluİfadeler;
import java.util.Scanner;
public class İfElseApp {
public static void main(String[] args) {
// if parantez içerisindeki değer true ise blok içerisine girer.
//int a=5;
//if (a==5) {
//System.out.println("a değişkeni 5'e eşittir.");
// Sys... | [
"ufuk.paksoy@icloud.com"
] | ufuk.paksoy@icloud.com |
345282f0689b15d6d05783ac8701feb037a03be8 | 2b6c5004b2f467d453f6a227306ae9830c1b834f | /lib/test/on2017_08/on2017_08_18_Goldman_Sachs_CodeSprint/Time_Series_Queries/TimeSeriesQueries.java | 0c4c82dd4a645e663290b6807a3add2cd69c67b8 | [] | no_license | gargoris/yaal | 83edf0bb36627aa96ce0e66c836d56f92ec5f842 | 4f927166577b16faa99c7d3e6d870f59d6977cb3 | refs/heads/master | 2020-12-21T04:48:30.470138 | 2020-04-19T11:25:19 | 2020-04-19T11:25:19 | 178,675,652 | 0 | 0 | null | 2019-03-31T10:54:25 | 2019-03-31T10:54:24 | null | UTF-8 | Java | false | false | 2,211 | java | package on2017_08.on2017_08_18_Goldman_Sachs_CodeSprint.Time_Series_Queries;
import net.egork.generated.collections.list.IntArrayList;
import net.egork.generated.collections.list.IntList;
import net.egork.io.InputReader;
import net.egork.io.OutputWriter;
public class TimeSeriesQueries {
public void solve(int ... | [
"egor@egork.net"
] | egor@egork.net |
6b47c591cc938bc35a5586bc9d85756af60838a8 | 2b4f4b41e8a28a5024d41223b2876c87ee1eaa1a | /Eis-portlet/docroot/WEB-INF/service/com/idetronic/eis/NoSuchProjectStrategyException.java | b8c155d6fbb751cc9ddcfdcf2aebd5fd09f57b75 | [] | no_license | merbauraya/lportal6.2 | 48bb99e5b6b937fce6e20e5c76303c4982bcad02 | e7446107fd793a8ab557b4748f3214a83dbe6ce6 | refs/heads/master | 2021-01-21T19:51:52.682108 | 2017-08-08T14:42:38 | 2017-08-08T14:42:38 | 92,167,957 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,076 | java | /**
* Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later... | [
"mazlan.mat@gmail.com"
] | mazlan.mat@gmail.com |
506f58ee6c025c6d3822f38f6c940f986648947e | d3c7040ab7756ca9d247a580eab2a7d3522ff9f5 | /dbinspector/src/main/java/im/dino/dbinspector/DbInspector.java | 65552258cf1498017c9ab2e6c643123320df9b05 | [
"Apache-2.0"
] | permissive | leandrofavarin/android_dbinspector | 90126692ff63640570f00b553b3ff0aaf54ea738 | e81497db95c1514c90c24e39c998070777108817 | refs/heads/master | 2021-01-23T03:12:43.821292 | 2017-03-27T09:06:14 | 2017-03-27T09:06:14 | 86,057,361 | 0 | 0 | null | 2017-03-24T10:42:35 | 2017-03-24T10:42:35 | null | UTF-8 | Java | false | false | 361 | java | package im.dino.dbinspector;
import android.content.Context;
import android.content.Intent;
import im.dino.dbinspector.activities.DbInspectorActivity;
public final class DbInspector {
public static Intent getLaunchIntent(Context context) {
return DbInspectorActivity.launch(context)
.addFlags... | [
"lfavarin@gmail.com"
] | lfavarin@gmail.com |
6b147012f5a3228d4510442f242fc29eab17f35d | c2ce04545374ce13047e9c6069e956ed2ca90ee7 | /src/Placer.java | ce1ab9e256f21caa2c4536d48b5b1b4c7ce661bf | [] | no_license | jyyzlzy/bin_packing2 | 09eb43e2ddd5890028af542ad5e41071b91fb15a | 9672518f3e2d2a4570f2927c16fef91c08f86913 | refs/heads/master | 2023-08-04T21:54:30.602183 | 2021-09-08T15:55:10 | 2021-09-08T15:55:10 | 404,372,207 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,112 | java | package cp_heuristics;
import java.util.Vector;
public class Placer {
public Vector<Place_info> place_item(Vector<Box> box_sequence, double[] bin_dimensions, Vector<Bin> bins) {
// results are stored in bins
bins.clear();
Vector<Place_info> how_to_place = new Vector<Place_info>();
// if no box needs to be ... | [
"jyyzlzy@gmail.com"
] | jyyzlzy@gmail.com |
044f199dc4f60057394ca6242cc4e4083455cb48 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/10/10_f8f5fb3c3a99be2b0ab8972e42538893958b0920/ConnectionManager/10_f8f5fb3c3a99be2b0ab8972e42538893958b0920_ConnectionManager_t.java | 1b08bbb80cdb3cdb7ddab786c75a531ec1538f06 | [] | 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,879 | java | package com.topsy.jmxproxy.jmx;
import com.topsy.jmxproxy.JMXProxyServiceConfiguration;
import com.topsy.jmxproxy.core.Host;
import com.yammer.dropwizard.lifecycle.Managed;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecuto... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
edcef26c14fe620177bc7528cde25ada7ff02325 | d8d23c6b0b2af190009188dd03aa036473e8b717 | /urule-core/src/main/java/com/bstek/urule/model/decisiontree/TreeNodeType.java | 868cd5d36d369009d4927e77f407cdb24681bdb4 | [
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | wuranjia/myRule | 30b3fdb73659221c32f88c968449de0b5cc29ded | 6fd0cd6c13ac23ad7f678dda9def8b553d72901e | refs/heads/master | 2022-12-16T09:45:05.495146 | 2019-10-17T02:10:21 | 2019-10-17T02:10:21 | 215,682,587 | 1 | 0 | Apache-2.0 | 2022-12-10T03:12:54 | 2019-10-17T02:05:48 | JavaScript | UTF-8 | Java | false | false | 926 | java | /*******************************************************************************
* Copyright 2017 Bstek
*
* 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.apach... | [
"wuranjia07730@hellobike.com"
] | wuranjia07730@hellobike.com |
c6bf14d3b63e93c4d098dd3ed6ffdbf98fdbe05d | c2fc2a9ec50357cfbd02c5ab1036f8bcd990b199 | /src/Bipartite.java | d5c32a5c8ca0f5940755c1208b13134a46e2f477 | [] | no_license | chris-peng-1244/coursera-programming | 79c7e854202776ada65df3257217d1f781b52f11 | 60a028181167b7c28dc7f96098b7273767d5ec49 | refs/heads/master | 2021-01-25T13:23:45.327200 | 2018-06-16T04:31:43 | 2018-06-16T04:31:43 | 123,563,317 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,463 | java | import java.util.ArrayList;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;
public class Bipartite {
private static int bipartite(ArrayList<Integer>[] adj) {
//write your code here
int INFINITY = adj.length + 1;
int[] dist = new int[adj.length];
int[] color = new int[ad... | [
"pengchi1244@gmail.com"
] | pengchi1244@gmail.com |
35c1e87ff461368ad7787b46c8c8cf73107f66f7 | 5641162a472bb56350aca1d2787e472a04a4fa91 | /Boutique/src/main/java/com/example/entity/ShoppingCartItem.java | 034661a571b9f1dd2cd1c364ad097bb9ce998f63 | [] | no_license | ReRekon/Boutique | e9d2609aed459d143d7ab0777da036e77c0e4ef6 | b518493eb392f25ef2451d7fce397bdeff800e99 | refs/heads/R | 2022-12-26T08:08:23.706177 | 2019-08-21T14:03:05 | 2019-08-21T14:03:05 | 196,218,322 | 3 | 1 | null | 2022-12-15T23:44:13 | 2019-07-10T14:16:05 | Java | UTF-8 | Java | false | false | 2,012 | java | package com.example.entity;
import java.math.BigDecimal;
import java.util.Date;
public class ShoppingCartItem {
private int shoppingCartItemId;
private int productId;
private int shoppingCartId;
private int productSpecificationId;
private long number;
private int state;
priva... | [
"819071732@qq.com"
] | 819071732@qq.com |
bcf76ffbca099b67ffc14db33c9e09b01ed09476 | 22eb7d16cfeed30effe929feac681edfd0af3c76 | /src/main/java/com/mycompany/mockito/reference/documentation/tutorial/User.java | 5e8de280a29448a6275a9475ec37e45ea5f78b4d | [] | no_license | colinbut/learning-mockito | 9bd698f69f98077aff28ee3d648bfc1937d8d43f | 504aa9a37577953f09fd9f09b7fc1fa47aabde57 | refs/heads/master | 2020-06-29T21:41:05.937962 | 2016-08-30T19:45:57 | 2016-08-30T19:45:57 | 66,972,144 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 587 | java | /**
*
*/
package com.mycompany.mockito.reference.documentation.tutorial;
/**
* @author colin
*
*/
public class User {
private int userId;
private String username;
/**
* @return the userId
*/
public int getUserId() {
return userId;
}
/**
* @param userId the userId to set
*/
public void setUs... | [
"colinbut@users.noreply.github.com"
] | colinbut@users.noreply.github.com |
bde612490bd40d4221f8106d1f731efb78209673 | bfc3548a7ae9cdced191b6bdd3b6fd5f11378a3d | /src/main/java/edu/axboot/domain/lightpms/guest/Guest.java | d3dd31a6610a326453e2375a8e5d4b8c5cd9626a | [] | no_license | dhyun10/light_PMS | 94aede30b152aba19c3ad4a14f0c180314fde8fb | 29e6506ef1ae48634ce11dfe4ee5b678a4d55eef | refs/heads/master | 2023-05-06T19:10:20.531326 | 2021-05-31T06:57:24 | 2021-05-31T06:57:24 | 370,256,710 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,509 | java | package edu.axboot.domain.lightpms.guest;
import com.chequer.axboot.core.annotations.ColumnPosition;
import edu.axboot.controllers.dto.GuestResponseDto;
import edu.axboot.controllers.dto.ReservationListResponseDto;
import edu.axboot.domain.BaseJpaModel;
import edu.axboot.domain.lightpms.reservation.Reservation;
import... | [
"d-hyun10@hanmail.net"
] | d-hyun10@hanmail.net |
c7d0ea3b8143da8d68a455450b3a0c5baca6ee51 | 5c29d6f509ef0f87f288afeb312cd1f126277457 | /src/java/nio/DoubleBuffer.java | e6e8403642719fa002425fd1917f58ac321d98ff | [
"Apache-2.0"
] | permissive | Golde-nchow/jdk-1.7-annotated | d1c30cebbc0b968873b60e0a9cca3e1e85d17d42 | 726f675973e8498ea4afca13393f692e95255b94 | refs/heads/master | 2021-07-14T15:25:05.610358 | 2020-11-02T16:03:08 | 2020-11-02T16:03:08 | 221,722,100 | 0 | 0 | Apache-2.0 | 2019-11-14T14:53:58 | 2019-11-14T14:53:55 | null | UTF-8 | Java | false | false | 28,995 | java | /*
* Copyright (c) 2000, 2008, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
// -- This file was mechanically generated: Do not edit! -- //
package java.nio;
/**
* A double ... | [
"zhaoxina@gmail.com"
] | zhaoxina@gmail.com |
dc2493c35dc55ddfea8063a64786d475e13964fd | 8a98577c5995449677ede2cbe1cc408c324efacc | /Big_Clone_Bench_files_used/bcb_reduced/3/selected/416876.java | 4d2995fa7c33421e834d662bd8ecf423a8bd3c11 | [
"MIT"
] | permissive | pombredanne/lsh-for-source-code | 9363cc0c9a8ddf16550ae4764859fa60186351dd | fac9adfbd98a4d73122a8fc1a0e0cc4f45e9dcd4 | refs/heads/master | 2020-08-05T02:28:55.370949 | 2017-10-18T23:57:08 | 2017-10-18T23:57:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 10,999 | java | package org.apache.fop.pdf;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import java.util.Enumeration;
import java.util.Vector;
import java.util.Hashtable;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.security.InvalidKeyException;
import jav... | [
"nishima@mymail.vcu.edu"
] | nishima@mymail.vcu.edu |
b151b7f1411c464e1e4a3a52f69f517567ad4869 | 0825d87d459b829dd68ae2cfb30bc0ba26028a69 | /pesrsonal/src/androidTest/java/com/zl/modular/pesrsonal/ExampleInstrumentedTest.java | 5a0356f0b3dd1de37872fc8275b10df4c9aa83d2 | [] | no_license | LeiboyNotes/Moduler | c16941f2c857a8337db9a40835f1cdf2618da42c | c4cc41702e279ba4e0549f84dda8c00e8b64d5d9 | refs/heads/master | 2020-09-04T01:41:02.586126 | 2019-11-14T09:31:05 | 2019-11-14T09:31:05 | 219,631,462 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 724 | java | package com.zl.modular.pesrsonal;
import android.content.Context;
import androidx.test.InstrumentationRegistry;
import androidx.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
... | [
"zhanlei@womob.com"
] | zhanlei@womob.com |
1375bb2c40a9aeb722355b84b797dfeecf2a73ba | 67fb83e240e36d24323078966eebabbef31e6eb1 | /src/main/java/net/avalith/carDriver/controllers/LicenseController.java | dc6ff5b89f4d2718d3822fa97125e8af9cc74c5f | [] | no_license | mauro8792/RentCar | f20a2811bb9cb7e5caea048139e4adae426ac2c2 | 3ff14cac7562b53a52a9eb053d84ccc364f339ae | refs/heads/master | 2022-12-02T08:44:51.653445 | 2020-08-12T01:47:31 | 2020-08-12T01:47:31 | 286,889,354 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,431 | java | package net.avalith.carDriver.controllers;
import net.avalith.carDriver.models.License;
import net.avalith.carDriver.models.dtos.requests.LicenseDtoRequest;
import net.avalith.carDriver.models.dtos.requests.LicenseDtoRequestUpdate;
import net.avalith.carDriver.models.dtos.responses.LicenseDtoResponse;
import net.avali... | [
"mauro8792yini@gmail.com"
] | mauro8792yini@gmail.com |
82f35461ca27fc72117e07d34d9ca41ef9f856b1 | a3fe4f5b1ffcc0b1cb2e673744f109e4ce04264b | /src/com/ju/japro/structalg/ten/test/Parcal5.java | ba4c98a74830fcac9522355abd2ad813ef0b33b7 | [] | no_license | zhanglschn/japro | 2df3d37dfe9426afb00a175e2800a1348dcaf144 | 8f2b5c4893c280ec8e2834d7abfdb2df7da8f4c8 | refs/heads/master | 2020-03-18T14:18:42.601302 | 2018-05-25T10:37:29 | 2018-05-25T10:37:29 | 134,841,451 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 97 | java | package com.ju.japro.structalg.ten.test;
public interface Parcal5 {
public String getLabel();
} | [
"zhanglangsheng@juzix.io"
] | zhanglangsheng@juzix.io |
e044e7f71a254c8684b8f28e67628e840db6fb28 | a8ed461fa72d167c3a112b01e7fe1d6dcc568160 | /app/src/main/java/com/example/dxcfitnesstracker/data/profile/profiledata/ProfileData.java | b0bb32cf6655f77dd62f0220d23fef8544f8fe28 | [] | no_license | PriyankaS21/FitnessTracker | febf79cac05b4b3b2fbd7761a379067b1d69a7e3 | 9b97a5b1956ad2a7388ca62376ae4a022c93e13e | refs/heads/master | 2023-03-07T03:55:15.088519 | 2021-02-12T14:32:33 | 2021-02-12T14:32:33 | 250,181,317 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 477 | java | package com.example.dxcfitnesstracker.data.profile.profiledata;
import com.example.dxcfitnesstracker.R;
public class ProfileData {
public static String[] list_string = {"Personal Information", "Step size", "Step goal", "Step count", "Notification(on/off)", "Instruction"};
public static Integer[] drawableArray... | [
"Priyanka.Singh@united.com"
] | Priyanka.Singh@united.com |
b7d8a5e365f32201dfd7884e2a2c5648d094e1aa | 71e706b443c680748e0eac6f1489ada183825553 | /src/xyz/robbie/tabula/IllegalTurnException.java | f830ffdbc9393a8abca7011c58fe09c171bf5ba9 | [] | no_license | robzwolf/tabulaIJ_refresh | eb180d449108e363c0601412385f00a18bc64278 | 8504d922fa23e19717777e73a85079c03cdcf399 | refs/heads/master | 2021-01-20T01:25:14.466542 | 2017-05-01T15:53:48 | 2017-05-01T15:53:48 | 89,274,557 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 164 | java | package xyz.robbie.tabula;
public class IllegalTurnException extends Exception {
public IllegalTurnException(String message) {
super(message);
}
}
| [
"robzwolf@gmail.com"
] | robzwolf@gmail.com |
a7e177d247a507b19d7744029d2083b84c3fa27a | a8a216f75677770fd8e15e8591a61f8c9eee0183 | /src/Models/Bullet.java | 33ef792a90e6b6cb981522b58a2374107707ff84 | [] | no_license | wba25/PLC | a925f791e3c2709e92fbd2abee695a26400a4c8a | 40856df39e1348e6f3b6ea3b1efe5534e0b35248 | refs/heads/master | 2021-08-24T03:04:26.835094 | 2017-12-07T19:46:52 | 2017-12-07T19:46:52 | 110,713,547 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 827 | java | package Models;
public class Bullet extends Sprite {
private final int BOARD_WIDTH = 410;
private final int BOARD_HEIGHT = 330;
private final int speed = 5;
private int vertical_direction;
private int horizontal_direction;
public Bullet(int x, int y, int vertical, int horizontal) {
su... | [
"wba@cin.ufpe.br"
] | wba@cin.ufpe.br |
50958ab832eb087d5bc1b926c9866cff6a0aa997 | 8dadce08a76ce387608951673fc0364feaa9a06a | /flexodesktop/externalmodels/flexoexecutionmodel/src/main/java/org/openflexo/foundation/exec/EndOperationNodeActivation.java | 67ea4e479ab946c285ad02da4e6fd4d4348024f0 | [] | no_license | melbarra/openflexo | b8e1a97d73a9edebad198df4e776d396ae8e9a09 | 9b2d8efe1982ec8f64dee8c43a2e7207594853f3 | refs/heads/master | 2021-01-24T02:22:47.141424 | 2012-03-12T00:15:57 | 2012-03-12T00:15:57 | 2,756,256 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,087 | java | /*
* (c) Copyright 2010-2011 AgileBirds
*
* This file is part of OpenFlexo.
*
* OpenFlexo is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any late... | [
"guillaume.polet@gmail.com"
] | guillaume.polet@gmail.com |
c9ed9e3c2550d483c76e22565a5d539fd13e7b32 | 834612938187e69bbe895fada65b9503af34a042 | /src/main/java/com/innovativeapps/filehandling/Library.java | 5d6bd849786d99580054c37c2b5cc2ded4a86868 | [] | no_license | famojuro/file-handling-api | 6c77bbfa17a53e3f674d8e476a331947a64920ff | 0ec8009704b8006b0291f2477d4b9aa29dea6191 | refs/heads/master | 2023-04-18T22:32:22.748613 | 2021-05-07T09:09:04 | 2021-05-07T09:09:04 | 363,886,362 | 0 | 0 | null | 2021-05-07T09:09:05 | 2021-05-03T09:59:30 | Shell | UTF-8 | Java | false | false | 208 | java | /*
* This Java source file was generated by the Gradle 'init' task.
*/
package com.innovativeapps.filehandling;
public class Library {
public boolean someLibraryMethod() {
return true;
}
}
| [
"adeniyifamojuro@gmail.com"
] | adeniyifamojuro@gmail.com |
385cec1b233abb07cf2991b74565d4857866db30 | 4dd5b958c891cfe4304008eb8236fc9c23345e35 | /ttmanager/tt-manager-pojo/src/main/java/com/cyk/ttshop/pojo/po/TbOrderItemExample.java | 5ce4eb0a02fd84061ba751de406e1b2852f16053 | [] | no_license | chenyongkui/shop | b9a24dfa91414064357f5021aed513cc7132c74b | 1706c3d3b761ccc93dc3fb072594be65b20e8a2c | refs/heads/master | 2021-07-22T01:57:26.610562 | 2017-10-27T12:35:11 | 2017-10-27T12:35:11 | 107,413,779 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 22,436 | java | package com.cyk.ttshop.pojo.po;
import java.util.ArrayList;
import java.util.List;
public class TbOrderItemExample {
protected String orderByClause;
protected boolean distinct;
protected List<Criteria> oredCriteria;
public TbOrderItemExample() {
oredCriteria = new ArrayList<Criteria>();
... | [
"1017898004@qq.com"
] | 1017898004@qq.com |
bed4692d0f414ba75504c89ccca5065c1ca67074 | 9c564ab7a6a640b3de571df053d153d6dc96ec47 | /src/main/java/com/hgys/iptv/repository/UserRepository.java | 95f805c089588767abe2b8cc8b48fff4d5a721d8 | [
"MIT"
] | permissive | nemoyn/iptv_sas | 7c73458bdefbc4e5e5f516697fd7582d43dc93a8 | 9dd4b9a758bbd6e382761446d5af72adc3802939 | refs/heads/master | 2022-01-08T05:31:08.598269 | 2019-06-09T05:42:39 | 2019-06-09T05:42:39 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 766 | java | package com.hgys.iptv.repository;
import com.hgys.iptv.model.User;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import javax.transaction.Transactional;
public interface UserRepository extends B... | [
"786917861@qq.com"
] | 786917861@qq.com |
6b78ed9b6ec67cfbc7f7ef4dec2e20da3565d429 | 396100b9d7665b31a2eeff13c9a4ab39d0009b26 | /src/test/java/com/johnny/springjpa/test/PersonRepositoryTests.java | 60cdf5a68a2ea2a1b59aeb9dc0a3cb01021939a4 | [] | no_license | johnnydoamaral/spring_jpa | 606f7a3da39de4e43119072a96f2f9b6274a99a1 | 55f78e84f8845bfadd05fb844a3d023def716e65 | refs/heads/master | 2020-04-25T18:14:31.946831 | 2019-02-27T19:44:05 | 2019-02-27T19:44:05 | 172,977,736 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,926 | java | package com.johnny.springjpa.test;
import static org.junit.Assert.assertThat;
import java.util.Date;
import static org.hamcrest.CoreMatchers.*;
import static org.hamcrest.Matchers.empty;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.... | [
"Johnny@Johnnys-MacBook-Pro.local"
] | Johnny@Johnnys-MacBook-Pro.local |
e27eab770e5d71b5477831d6d04f21b391e3ceab | d052b08c4fa3cf36cbb713e8aabaa57dd9d59be6 | /app/src/main/java/com/example/piyushravi/finalapartment/RepairManage.java | 73709097eca29f4c4819d1451d71e993c0ac2584 | [] | no_license | jimacoff/ApartmentManagement | fa82b0aeeca170c87c42f4027c0ed1b448b3c4dc | 3805f19edc1930598bf0a14bfab8269e0ad53de7 | refs/heads/master | 2020-04-02T22:55:01.768297 | 2016-05-24T21:44:41 | 2016-05-24T21:44:41 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 777 | java | package com.example.piyushravi.finalapartment;
import android.support.v4.app.NavUtils;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.MenuItem;
public class RepairManage extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {... | [
"sowmyan5585@gmail.com"
] | sowmyan5585@gmail.com |
343a512a394c2cf63492d3e4e12af798314562de | cdf71ca8b701cb49a43afd22d3f04d62ce832498 | /src/main/java/eu/leads/api/m36/model/FunM36JsonParams.java | e50d23ca018131016cf5b0e6d77810542c85aa55 | [] | no_license | pskorupinski/leads-wgs-integration-m24 | c80b0208cfe2ebcfb68775aa0502c966751bb85a | 96a4bf537fe488607af7559db2b669866bb16d6f | refs/heads/master | 2020-05-17T02:15:05.157173 | 2015-11-12T15:57:52 | 2015-11-12T15:57:52 | 26,504,953 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,975 | java | package eu.leads.api.m36.model;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.hamcrest.core.IsInstanceOf;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import eu.leads.api.m24.Functional... | [
"pawel.skorupinski@gmail.com"
] | pawel.skorupinski@gmail.com |
a5afb7bb215083cfef1bec36b85bdb6c9c44dfe0 | e7ae866af623e117a7512f827fe6be8a0f85c114 | /Restkeeper/restkeeper_common/src/main/java/com/restkeeper/constants/OrderDetailType.java | 126836e6e2cd1a085cffbeb195576c15129c358d | [] | no_license | zhanzhewan/codes | d32f2fea264cced205f01718420abcccf9e469ae | b3312001545715d04817b250adcb72d8e882a153 | refs/heads/master | 2023-04-21T21:25:29.075964 | 2021-05-20T16:31:38 | 2021-05-20T16:31:38 | 369,271,085 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 411 | java | package com.restkeeper.constants;
import lombok.Getter;
/**
* 菜品订单类型
*/
@Getter
public enum OrderDetailType {
NORMAL_DISH(1,"正常下单"),
PRESENT_DISH(2,"赠菜"),
RETURN_DISH(3,"退菜"),
PLUS_DISH(4,"加菜");
private Integer type;
private String desc;
OrderDetailType(Integer type, String desc) {
... | [
"5289886+kobe_zzw@user.noreply.gitee.com"
] | 5289886+kobe_zzw@user.noreply.gitee.com |
869fbf420135ce0697796d39e79eae950a90e666 | ebafbaaf156fe563f565301704b88ad64719aef4 | /controllersvc/src/main/java/com/emc/storageos/volumecontroller/impl/smis/job/SmisBlockSnapshotSessionLinkTargetGroupJob.java | 87a6bffd47509c24f37e6f080ecf1822464af996 | [] | no_license | SuzyWu2014/coprhd-controller | 086ae1043c2c0fefd644e7d4192c982ffbeda533 | 5a5e0ecc1d54cd387514f588768e2a918c819aa7 | refs/heads/master | 2021-01-21T09:42:31.339289 | 2016-09-30T19:21:02 | 2016-09-30T19:21:02 | 46,948,031 | 1 | 0 | null | 2015-11-26T21:45:46 | 2015-11-26T21:45:46 | null | UTF-8 | Java | false | false | 11,380 | java | package com.emc.storageos.volumecontroller.impl.smis.job;
import com.emc.storageos.db.client.DbClient;
import com.emc.storageos.db.client.model.BlockObject;
import com.emc.storageos.db.client.model.BlockSnapshot;
import com.emc.storageos.db.client.model.StorageSystem;
import com.emc.storageos.volumecontroller.JobConte... | [
"ian.bibby@emc.com"
] | ian.bibby@emc.com |
8fa7482034ea4c2343465dba8d2215fdb9b0ea82 | b00f8606ecb2c6061478b6f7d3abf57142af1a48 | /workspace/workspace/notionsBase/src/boucle/TableMultiplication.java | 932b09e6ba4ef30e0230f786bc1d413f6be628f1 | [] | no_license | xYouPoPx/Eclipse | 2cb9659f95dc26da03e2756b707711c2cfb51fc7 | f3bda2a478d76f589261c8e98f4b4c5b81d41ad6 | refs/heads/master | 2020-09-13T08:20:09.311402 | 2016-08-23T12:37:06 | 2016-08-23T12:37:06 | 66,364,422 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 495 | java | /**
*
*/
package boucle;
import java.util.Scanner;
/**
* @author ycourteau
*
*/
public class TableMultiplication {
/**
* @param args
*/
public static void main(String[] args) {
int val;
int compt = 0;
Scanner scan = new Scanner(System.in);
System.out.println("Entrez un nombre pour faire affi... | [
"yolaine.courteau@videotron.ca"
] | yolaine.courteau@videotron.ca |
12ae959d21c68280849d14e6813f7f61a904b2a0 | e37e1598f0640667b7f7d4354acffb8a7f5ee55b | /code/src/main/java/ui/contentpanel/AddRelationDialog.java | 041ac18d1b93b70338d508cf58033a756355cfdf | [] | no_license | mrramazani/ood_code_repository | b1aa68b7f791a04e89e50bf3d9471a8f16158034 | a215570b637e18fd7862c9ef85c975015fdaad64 | refs/heads/master | 2020-12-30T10:23:05.678918 | 2015-08-25T01:11:16 | 2015-08-25T01:11:16 | 40,107,495 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,332 | java | package ui.contentpanel;
import content.Content;
import content.ContentCatalogue;
import content.RelationShipType;
import content.Relationship;
import user.ActivityType;
import user.User;
import user.UserActivityLog;
import user.UserCatalogue;
import javax.swing.*;
import java.awt.event.*;
import java.util.Date;
pub... | [
"mrramazani@yahoo.com"
] | mrramazani@yahoo.com |
541e2bcc8a9356e72876e6cee543a8b677da6716 | d275b1dda701a81a006b1c831271fbb4e70a7789 | /src/test/java/org/tvbookmarks/app/web/rest/AuditResourceIT.java | 3577b5dd07b8c83938ae98615459aa377a236a01 | [] | no_license | fabriz4/JhipsterProject | c4578293e4da3b074faef6ec2818579a4799221e | f69f3625316d1369f549f847062750c24a10f58c | refs/heads/master | 2022-12-22T05:33:14.631195 | 2020-05-28T13:25:43 | 2020-05-28T13:25:43 | 234,276,876 | 2 | 0 | null | 2022-12-16T05:03:57 | 2020-01-16T08:57:57 | Java | UTF-8 | Java | false | false | 6,635 | java | package org.tvbookmarks.app.web.rest;
import org.tvbookmarks.app.TvBookMarksApp;
import org.tvbookmarks.app.config.audit.AuditEventConverter;
import org.tvbookmarks.app.domain.PersistentAuditEvent;
import org.tvbookmarks.app.repository.PersistenceAuditEventRepository;
import org.tvbookmarks.app.service.AuditEventServ... | [
"luca.petralia@aitho.it"
] | luca.petralia@aitho.it |
c399177d58119490d62b883e957a1573cb522bfa | 06216b5c8a0510c989908027967dc0b5aaafefef | /PhatTrienHeThongTichHop1/Lab3_Bai2_RMI/src/ClientRMILab3Bai2/Client.java | bede4d5b23eab0ad9eb112ddecdbe89be16c3100 | [] | no_license | tuansieunhan2000/PhatTrienHeThongTichHop | f4465c79451ab591ae594b3e2e51cc012e201558 | bdf16253db5a857f8fa033cb8cf76b6bdae1aa04 | refs/heads/master | 2023-03-08T09:38:49.572711 | 2020-10-27T03:01:30 | 2020-10-27T03:01:30 | 301,596,554 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 789 | java | package ClientRMILab3Bai2;
import java.io.IOException;
import java.net.MalformedURLException;
import java.rmi.Naming;
import java.rmi.NotBoundException;
import java.rmi.RemoteException;
import java.util.Scanner;
import javax.naming.NameAlreadyBoundException;
import javax.swing.JOptionPane;
import InterfaceLab3Bai2.X... | [
"trananhtuan.kg2000@gmail.com"
] | trananhtuan.kg2000@gmail.com |
03b3bb0533c6cc7a77eb070da427c97563e622ee | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/14/14_dfba9c6863552cd3613cf3fbb053ef9e23989efe/Frontend/14_dfba9c6863552cd3613cf3fbb053ef9e23989efe_Frontend_s.java | 776685c2398523d96cb4f3cc7f640b028bad1868 | [] | 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 | 2,895 | java | /*
* Copyright (c) 2009-2010, IETR/INSA of Rennes
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright not... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
5d793aba33e7a75d864306d3b33b6c76de5349f5 | e5f0f957a4ab209cb7148c97759619c835b4d014 | /src/main/java/com/example/user/controller/UserController.java | cb4fed354424a8c727e08c14ad8d5a5e14e6484d | [] | no_license | Shin-JungYeon/demo | aadbd8c097763baca7724798f3494d55892a436f | 0cc23d2390c2be7f98d5fb8be2deee7301e2ed0c | refs/heads/master | 2022-11-26T05:59:14.830923 | 2022-07-25T07:39:20 | 2022-07-25T07:39:20 | 247,005,710 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 520 | java | package com.example.user.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
public class UserController {
/**
* 사용자 페이지 이동 ( 새로고침 시 사용 됨 )
*/
@RequestMapping(va... | [
"ssjy11@gmail.com"
] | ssjy11@gmail.com |
132d26994f7f0706085c84199924720fe0451c3f | 2258ae8f4b5e018d189e4eb6cb95e81007932885 | /STARS/sense.diagram/src/sense/diagram/part/SenseDiagramUpdateCommand.java | 4d34f9f17b24a9b47fa8e28aa247c182751b164f | [] | no_license | utwente-fmt/STARS | f918aeb3006e1aa855532ab0f6d677a9a2524d40 | be225fcffd06f941d685b0beecadfa710938407f | refs/heads/master | 2021-01-10T02:04:14.319098 | 2016-04-11T09:48:14 | 2016-04-11T09:48:14 | 53,322,719 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,194 | java | /*
*
*/
package sense.diagram.part;
import java.util.Iterator;
import java.util.List;
import org.eclipse.core.commands.ExecutionEvent;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.commands.IHandler;
import org.eclipse.core.commands.IHandlerListener;
import org.eclipse.em... | [
"jjgmeijer@gmail.com"
] | jjgmeijer@gmail.com |
098df247f7cc713571e7ee429b790c7d51dbb9aa | 1fc4de4330efc7e561f5d71566963e5dc799c6db | /src/main/java/com/devebot/opflow/exception/OpflowRequestTimeoutException.java | 4d6f33d83bfc0acfd01f62cc48a9b7c13d7535a9 | [] | no_license | opflow/opflow-java | 1f156b408f87e4c5073dce4b501804674214729a | c1e2e5127574075d39e3231fbffde8bc8df621ff | refs/heads/master | 2022-09-30T03:51:23.087455 | 2020-07-07T04:02:33 | 2020-07-07T04:02:33 | 98,799,394 | 5 | 4 | null | 2022-08-18T19:06:25 | 2017-07-30T13:30:21 | Java | UTF-8 | Java | false | false | 703 | java | package com.devebot.opflow.exception;
/**
*
* @author drupalex
*/
public class OpflowRequestTimeoutException extends OpflowOperationException {
public OpflowRequestTimeoutException() {
}
public OpflowRequestTimeoutException(String message) {
super(message);
}
public OpflowRequestTimeo... | [
"pnhung177@acegik.net"
] | pnhung177@acegik.net |
7d44f60e78ef1050f48254e5cc85de36db84f36f | 929f13780c6d173845cce613b982e0a77a84fd25 | /examples/src/main/java/fr/bmartel/speedtest/examples/FixedTimeUploadExample.java | 03d5d9d636997e0f5572a6afd5affc3f5e3712ca | [
"MIT"
] | permissive | richard457/speed-test-lib | 671cef555f059afdeeea27225d759af49c933ab4 | 74c8f593f904c5186b2949b8a6f0bc7b726cc136 | refs/heads/master | 2021-06-21T04:42:56.619086 | 2017-07-18T19:08:21 | 2017-07-18T19:08:21 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,699 | java | /*
* The MIT License (MIT)
* <p/>
* Copyright (c) 2016-2017 Bertrand Martel
* <p/>
* 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... | [
"bmartel.fr@gmail.com"
] | bmartel.fr@gmail.com |
2a974ba602d8cd64ac69663330d4ab4593dcf15a | 21eb7e70c8f95034b6d0b5c264af1951f64617bb | /workathome/src/com/udemy/genericchallenge/CricketTeam.java | 02f59259fa1c28fd14451b8c0108c6ca2fde5a3a | [] | no_license | aacshwin/dsa-practice | d5fe2bbf4ce381705ae920a4c9a0c670da2e54b6 | bed7e7b2c08901b477e91ce47403687a4f0a65e5 | refs/heads/master | 2023-09-01T15:25:28.160356 | 2021-10-27T11:50:33 | 2021-10-27T11:50:33 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 175 | java | package com.udemy.genericchallenge;
public class CricketTeam extends Team{
public CricketTeam(String name) {
super(name);
// TODO Auto-generated constructor stub
}
}
| [
"aacshwinravichandran@Aacshwins-MacBook-Pro.local"
] | aacshwinravichandran@Aacshwins-MacBook-Pro.local |
55726bf80dca4210e46f5950754b977bfec4f593 | c389bf3d279f19b5125470de0719e98abc8eb72b | /AdapterPattern_Practice_Birds/src/Turkey.java | 989934fca19c01dcf6cd4c6d5aa2e70fc7fe0baf | [] | no_license | brianroytman/DesignPatternsPractice | 89af74a89decf113d0404749c41fd4590898cf80 | e77f6b4c6f549430d3ac660965c1fcb0200563f0 | refs/heads/master | 2021-01-10T12:52:16.067258 | 2015-10-26T20:09:53 | 2015-10-26T20:09:53 | 44,923,106 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 74 | java |
public interface Turkey {
public void gobble();
public void fly();
}
| [
"brian.roytman@gmail.com"
] | brian.roytman@gmail.com |
28a5066e77b354fa4efe95983638aebdf2bfa54a | 616c89d821dad7641e2a60bb3f1e99dff35fd2e1 | /src/main/java/com/autentia/tutorials/fsm/CustomAction.java | 68428f617da0f6ff82c1b10c7bd90f49196d32cf | [] | no_license | DVentas/FSM | 478004550a684b5db7b76d2f9965374eb4d4acac | 5048304d5fc6f4a351bc9856534a4f2e7cceac0c | refs/heads/master | 2021-01-04T02:36:09.344572 | 2014-02-04T14:16:24 | 2014-02-04T14:16:24 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,016 | java | package com.autentia.tutorials.fsm;
import java.util.Collection;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.commons.scxml.ErrorReporter;
import org.apache.commons.scxml.EventDispatcher;
import org.apache.commons.scxml.SCInstance;
import org.apache.commons.sc... | [
"dventas@autentia.com"
] | dventas@autentia.com |
e8f2676374a28b55e572b3a3c4648e64d530abfc | c2b15f5121704eab2a21ce43cfccaf52737cabd2 | /src/main/java/com/w2m/superheros/configuration/SpringFoxConfig.java | 7967e1406a818ece0f2e7a6794623f3b993e7d86 | [] | no_license | rmartinez6/superheros | a24ca55f746d1ad9bcafb7af388b983befa9d9a3 | 6840c735b52c95de887fa83c5f71f8b37bbfcb01 | refs/heads/main | 2023-05-31T00:03:04.951586 | 2021-06-14T03:06:10 | 2021-06-14T03:06:10 | 375,052,627 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,371 | java | package com.w2m.superheros.configuration;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandle... | [
"rmartinez@MacBook-Pro-de-rodrigo.local"
] | rmartinez@MacBook-Pro-de-rodrigo.local |
0ec360446af05867c61aa26d0e04be4de494eef1 | 87ffef047a2e9807a4787e250fe6b3c7a31062e1 | /src/main/java/cinema/model/Order.java | 821458f301ea01f8c70793ce0f81fb68f3d762b3 | [] | no_license | Mzuha/cinema-service | 776eb225ea3b0745dda333dfa4d60048764c07fa | 000957663b76422b338abb787b046e2393f24090 | refs/heads/main | 2023-07-25T15:23:27.565211 | 2021-08-30T14:25:55 | 2021-08-30T14:25:55 | 394,948,953 | 2 | 0 | null | 2021-08-30T14:25:56 | 2021-08-11T10:22:53 | Java | UTF-8 | Java | false | false | 1,535 | java | package cinema.model;
import java.time.LocalDateTime;
import java.util.List;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.Man... | [
"vovabilodon@gmail.com"
] | vovabilodon@gmail.com |
cd5024add6b0600855dcaa0f39d9c745785ceeee | 94cc4b6461adcae77c6d046d3811a131e8dd03f5 | /portal-usuarios/src/main/java/com/dev/services/impl/ServiceHistorialImpl.java | 159a8883cfb8ba6796aa76954cfbfd277b32dff8 | [
"Apache-2.0"
] | permissive | jpnouchi/proyecto2 | 53d1781a622ec6e37912110b3fb600c5013824be | fe75d10e516e0659c245557d4e3301653bcdac02 | refs/heads/master | 2021-01-23T08:15:40.530156 | 2014-08-25T02:28:30 | 2014-08-25T02:28:30 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,803 | java | package com.dev.services.impl;
import com.dev.domain.mapper.UsuarioMapper;
import com.dev.domain.model.Filtro;
import com.dev.domain.model.Historial;
import com.dev.services.ServiceHistorial;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util... | [
"jpnouchi@gmail.com"
] | jpnouchi@gmail.com |
5946eb6c4f162343487bb9b22e2d6fad9d719d25 | 6521cd19048c28034f794a7344dd44e91be588fc | /src/com/company/algoritms/examples/heap/Heap.java | 5d7a4476b55832894595da356c42040e61ac7208 | [] | no_license | jegius/algoritmsjava | d6056d06f05c8b8e786442d66e691cfb0a8656b0 | 4b20dc578d1a49e0dc86df44b18a3499207a3bac | refs/heads/master | 2020-05-30T18:23:01.894315 | 2019-08-18T23:29:24 | 2019-08-18T23:29:24 | 189,896,302 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,940 | java | package com.company.algoritms.examples.heap;
import com.company.algoritms.examples.ExampleCollection;
/**
* Частный случай бинарного дерева. Все операции выполняются за время O(log N).
* Можно использовать для сортировки, вкладывая элементы методом insert и удаляя методом remove
* извлекаться из пирамиды элементы ... | [
"jegius@gmail.com"
] | jegius@gmail.com |
233d7b92b27ad632a3856acbbd960ba79cbb298e | e0bc2f5563ccf72946f7ea8ed21ed1438144b398 | /app/src/main/java/com/example/kouveepetshop/api/ApiPengadaan.java | b006f09e6ad5694288b4f61e778ce4d7fdc2a58e | [] | no_license | mirokub/KouveePetShop | c401d3990b229dfb1acfe883492cbc6fdafd923f | 255d1f200544481a859de38e3e3f980ab3defaca | refs/heads/master | 2021-03-26T07:35:45.858115 | 2020-06-12T03:48:02 | 2020-06-12T03:48:02 | 247,684,620 | 0 | 0 | null | 2020-06-12T03:48:03 | 2020-03-16T11:26:27 | Java | UTF-8 | Java | false | false | 3,187 | java | package com.example.kouveepetshop.api;
import com.example.kouveepetshop.model.DetailPengadaanModel;
import com.example.kouveepetshop.model.DetailPenjualanProdukModel;
import com.example.kouveepetshop.model.PengadaanModel;
import com.example.kouveepetshop.model.PenjualanProdukModel;
import com.example.kouveepetshop.res... | [
"="
] | = |
33920c63c45f566c5f4ae904dd80cfd2fd096f0c | d36ff1fb94bd19ad9897fa31baadfb5621396d5f | /nfvo/openbaton-libs/vnfm-sdk/src/main/java/org/openbaton/common/vnfm_sdk/interfaces/VNFFaultManagement.java | 6e8995b024ecde3dbb80e130386ca217ddf8f256 | [
"Apache-2.0"
] | permissive | nextworks-it/NXW-MANO | 97b03a373e4a1ae3e2b3a77cc19663864b3ebba3 | a94330b30d14e8616557c39b2d609e58961edd2a | refs/heads/master | 2021-01-11T14:45:35.671195 | 2019-07-25T13:06:04 | 2019-07-25T13:06:04 | 80,210,700 | 1 | 0 | null | 2019-07-25T13:06:06 | 2017-01-27T13:46:01 | Java | UTF-8 | Java | false | false | 973 | java | /*
* Copyright (c) 2016 Open Baton (http://www.openbaton.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.apache.org/licenses/LICENSE-2.0
*
* Unless required ... | [
"g.bernini@nextworks.it"
] | g.bernini@nextworks.it |
b5f7483fa9651e8fe70070d89cfc74493bec2e34 | d2ec57598c338498027c2ecbcbb8af675667596b | /src/myfaces-core-module-2.1.10/impl/src/main/java/org/apache/myfaces/config/element/FacesConfigExtension.java | 7ee0dabeaf51daa81b25f410e9e9d36dacb2ec17 | [
"Apache-2.0"
] | permissive | JavaQualitasCorpus/myfaces_core-2.1.10 | abf6152e3b26d905eff87f27109e9de1585073b5 | 10c9f2d038dd91c0b4f78ba9ad9ed44b20fb55c3 | refs/heads/master | 2023-08-12T09:29:23.551395 | 2020-06-02T18:06:36 | 2020-06-02T18:06:36 | 167,005,005 | 0 | 0 | Apache-2.0 | 2022-07-01T21:24:07 | 2019-01-22T14:08:49 | Java | UTF-8 | Java | false | false | 1,104 | 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 ... | [
"taibi@sonar-scheduler.rd.tut.fi"
] | taibi@sonar-scheduler.rd.tut.fi |
249edf1d2ca6d1aaeb1a632f801cdd73a6fa4924 | b4434f2247573d970cc662cdee4b4443eb786224 | /transportation/etl_code/AcceptableRoads/src/AcceptableRoadsMapper2.java | 41cd488230ddb5b2ceb18fff6da4d5c87b2e73bf | [] | no_license | Ulbert/U.S.-Infrastructure-Analysis | 394949acb50005719af69d638cab25fdf8d30d7b | 5befd41ecff780adf9ac972f937812d531104359 | refs/heads/main | 2023-08-15T13:05:50.637177 | 2021-09-21T22:01:55 | 2021-09-21T22:01:55 | 408,985,606 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 705 | java | import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Mapper;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
public class AcceptableRoadsMapper2 extends Mapper<LongWritable, Text, Text, Text> {
@Override
public void map(Long... | [
"ma4759@nyu.edu"
] | ma4759@nyu.edu |
8f1f059e7826481ca0d7a695483c157615cb3a9e | 69029d670e90e9622208dd4707e0057f300198c3 | /src/main/java/guru/springframework/domain/UnitOfMeasure.java | cf81599906525a7d5ee9cf40f7375e9d29f594cb | [] | no_license | danielquina/spring5-recipe-app | 9ee831aa2077074239025c50b4455d0d684d64f2 | da036d5217acc1c8146699e681b914682b000a40 | refs/heads/master | 2022-11-23T03:30:26.205320 | 2020-07-30T21:02:35 | 2020-07-30T21:02:35 | 258,855,645 | 0 | 0 | null | 2020-07-28T19:41:40 | 2020-04-25T19:20:54 | Java | UTF-8 | Java | false | false | 369 | java | package guru.springframework.domain;
import lombok.Data;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
@Data
@Entity
public class UnitOfMeasure {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
priv... | [
"danielquina@gmail.com"
] | danielquina@gmail.com |
6be0b346131974c7c6b88a124bcd769183687731 | 2a5a567c911a102be5ab6537c66b729c1033df70 | /src/com/aggfi/digest/server/botty/digestbotty/model/ComplReplyProb.java | 61663897850dd7ad48ceab76ca0f7cdf13cbfbe8 | [] | no_license | vega113/DigestBottyNGadget | c55cbcabbc218b854e9c3862c7261f8cfe41739b | 5b80803375fe00176ec8af418f48f01a42f540b6 | refs/heads/master | 2021-01-01T18:17:43.800574 | 2010-10-16T09:54:56 | 2010-10-16T09:54:56 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,738 | java | package com.aggfi.digest.server.botty.digestbotty.model;
import java.util.Collection;
import java.util.Date;
import java.util.Iterator;
import java.util.Map;
import javax.jdo.annotations.IdGeneratorStrategy;
import javax.jdo.annotations.IdentityType;
import javax.jdo.annotations.PersistenceCapable;
import javax.jdo.a... | [
"vega113@gmail.com"
] | vega113@gmail.com |
ca607b3bc85f289e9c0c94e7692f58bc8e0f0ba6 | 4a6616ef1043adcc72a4981c60ca34c9f792786e | /app/src/main/java/com/catchmybus/MainActivity.java | e2151adcdd3f5e327f45a859de43376d35d95641 | [] | no_license | limekin/cmb | 51fd7639d654e8656a36ea67ecefeb1ce2786191 | 16b55417a770858a91b6c3d8ba9aa36962a0ccf7 | refs/heads/master | 2021-01-18T22:38:19.229591 | 2017-04-28T07:38:12 | 2017-04-28T07:38:12 | 87,064,079 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,579 | java | package com.catchmybus;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import an... | [
"kevintjayan@gmail.com"
] | kevintjayan@gmail.com |
378cecd21db35f879bca5b73702528dfa88e7947 | 31a3b3d03997a770401e038d20bf9806c7484269 | /Sorter/src/olefoens/sorter/Main.java | a2c894c738064f72d9aa6b214cc239a609f83cff | [] | no_license | foens/LegoSorter | c90ddb13ffa0d8dedb5ae263493a2361e7cdc781 | 4414db6d31a7b6108cc722aea2b1e2fda4f0b965 | refs/heads/master | 2020-05-30T10:12:05.247384 | 2013-06-25T09:02:18 | 2013-06-25T09:02:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,653 | java | package olefoens.sorter;
import lejos.nxt.*;
import lejos.nxt.addon.RCXLightSensor;
import lejos.util.Delay;
import olefoens.axlesorter.AxleSorter;
import olefoens.beamcounter.*;
import olefoens.communication.ClientRole;
import olefoens.communication.Communicator;
import java.io.IOException;
public class Main
{
/**... | [
"kfoens@gmail.com"
] | kfoens@gmail.com |
000a818d4847a2087d53a1996ca9249a4cb29216 | b9889bc2c57927a8dd83062b6b53e3d424e8add5 | /de.bht.fpa.mail.s778455.imapnavigation/src/de/bht/fpa/mail/s778455/imapnavigation/composite/IMAPItem.java | ec5ba61c6cb750be1f8382033afbb5f5b9ef21f7 | [] | no_license | sasfeld/FPA_SS2012 | 47c126aa88896d398a2a7845d5816bcc5c513567 | 9d2797555f8a31f5630fa06109a204da87f92934 | refs/heads/master | 2020-04-06T06:48:14.478093 | 2012-06-18T16:59:08 | 2012-06-18T16:59:08 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 488 | java | package de.bht.fpa.mail.s778455.imapnavigation.composite;
/**
* The abstract component class. - transparency
*
* @author Sascha Feldmann
*
*/
public abstract class IMAPItem {
/**
* Check if the element has children.
*
* @return true if the element has children.
*/
public abstrac... | [
"sascha.feldmann@gmx.de"
] | sascha.feldmann@gmx.de |
479a4860abed527176e92c4363af73f5c8f59bf7 | a45df4f5506f30e26b7c721a138592fe0db076b9 | /app/src/main/java/com/ibring_driver/provider/Activity/AddCarDetails.java | af6d2cfa4501b37c99d69e007aea16011519bfb6 | [] | no_license | ravinakapila55/IBringDriverApp | 650966541607de3bf4528c7b4afb43d7fc7b706d | 94d94274f99d4d0d2e167cdefcb2a82006c66604 | refs/heads/master | 2023-02-26T18:55:38.308572 | 2021-01-18T12:08:48 | 2021-01-18T12:08:48 | 336,325,193 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 61,067 | java | package com.ibring_driver.provider.Activity;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.Context;
import android.content.Intent;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.os.Build;
import android.os.Bundle;
import android.os.Ha... | [
"ravina_kapila@esferasoft.com"
] | ravina_kapila@esferasoft.com |
b86cf84a97f4b127c23dee08a7ea5092664eb52c | abeb77a282459b509f07b0ed2e60c6f60507f62f | /frameWidget/build/generated/source/r/androidTest/debug/android/support/design/R.java | c4b8aedcf0b1d81bd516a12584e1be59cf154d77 | [] | no_license | phx1314/Borrow12 | 2e972eb36b6e3cef00746ce7aa33c5b26835083d | 5039d1c0c5018108b99fa92f8afddfea7e78891e | refs/heads/master | 2020-08-27T02:33:56.897204 | 2019-10-24T05:42:10 | 2019-10-24T05:42:10 | 217,219,492 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 115,619 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package android.support.design;
public final class R {
public static final class anim {
public static final int abc_fade_in = 0x7f05000... | [
"1163096519@qq.com"
] | 1163096519@qq.com |
3d0cb7c6ea9f9b429f69d5baa980bb5875a4a1b7 | b78dd0b60a978c9eedde7b10bf89778a423cc811 | /src/main/java/com/github/dusv03/adventura_dragon_knight/logika/ActionHelp.java | 1a19ef19af65baaa211f710f906f497266fb566c | [] | no_license | dusv03/adventura-dragon-knight | 67b866a2e60fb8a4a880738b4f1de3644402af13 | 0d2c8748d17c4daea7efe985a0a95a339a829aed | refs/heads/master | 2021-04-18T19:16:30.445399 | 2018-04-09T20:47:13 | 2018-04-09T20:47:13 | 126,700,046 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,690 | java | /* The file is saved in UTF-8 codepage.
* Check: «Stereotype», Section mark-§, Copyright-©, Alpha-α, Beta-β, Smile-☺
*/
package com.github.dusv03.adventura_dragon_knight.logika;
import java.util.Collection;
import java.util.stream.Collectors;
import com.github.dusv03.adventura_dragon_knight.logika.Hra;
imp... | [
"vladi@DESKTOP-7FM7DJJ"
] | vladi@DESKTOP-7FM7DJJ |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.