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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
b2a4fb50a3f47eba271222470a0c26fb842265c8 | 8df7f5d31493f85e93769328e6400ac123aa3d0c | /app/src/main/java/com/example/chajianhua/App.java | c8772407d205fa41f5f901cb3b9c25d56506641d | [] | no_license | Gracefulwind/ChaJianHua | ac7cc5616935510dfaa0db233b3f87a58d80e3a6 | 6eb5e32f14af942d9b87a69f00f3487843336a5a | refs/heads/master | 2022-04-17T13:50:55.774377 | 2020-04-20T03:20:59 | 2020-04-20T03:20:59 | 256,477,033 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 955 | java | package com.example.chajianhua;
import android.app.Application;
import com.alibaba.android.arouter.BuildConfig;
import com.alibaba.android.arouter.launcher.ARouter;
import com.gracefulwind.commonuiutil.utils.UiUtil;
public class App extends Application {
@Override
public void onCreate() {
super.onCr... | [
"Gracefulwindbigwang@gmail.com"
] | Gracefulwindbigwang@gmail.com |
295dea6f1c3fc472bc7badc6efe249cd9b4189b2 | 945da52dec387f2a82341f7ead2219477b3e70bc | /mobileassistant/MobileAssistant/endpoint-libs/libmessageEndpoint-v1/messageEndpoint/messageendpoint-v1-generated-source/com/codesdk/mobileassistant/messageEndpoint/MessageEndpointRequestInitializer.java | 29326df21b7f1f626aa4f852fb848e52c0edabd7 | [
"Apache-2.0"
] | permissive | codelabspro/mobileassistant | 1e8c6f677c08a8756f8a2985da727ba531433a5b | 4548d2bac7d1a7474332c8b599c5b424577bb3c7 | refs/heads/master | 2022-10-29T00:30:50.612511 | 2014-08-05T05:36:42 | 2014-08-05T05:36:42 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,616 | java | /*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under t... | [
"codesdktutorials@gmail.com"
] | codesdktutorials@gmail.com |
f18d71da80de803385d6076167ab73c416bd5e81 | 76b76940f3106d2c3db8205e23b47e407e5e00ff | /app/src/main/java/com/example/haidangdam/myapplication/add_task/AddEditTaskPresenter.java | a08e211ecdd95c96d1e227d34be5645bce6b21bc | [] | no_license | haidangdam/TO-DO-APP-MVP | c886950451a4a907ff61b776b6125c3f8600984b | 66b7bfd3741daff74244967cbdeda26d0a8df3d7 | refs/heads/master | 2021-01-23T06:10:59.081833 | 2017-06-06T08:59:01 | 2017-06-06T08:59:01 | 93,013,793 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,529 | java | package com.example.haidangdam.myapplication.add_task;
import android.os.Bundle;
import android.util.Log;
import com.example.haidangdam.myapplication.Task;
import com.example.haidangdam.myapplication.main_activity.MainActivityInterface;
import com.example.haidangdam.myapplication.main_activity.MainActivityView;
/**
... | [
"JDzqt995"
] | JDzqt995 |
0a83a94717a0ced1165160636376d7dfbe10c441 | 284c213ed17ea373eb241ada9f830ca6742942c6 | /src/datastructure/BinarySearchTree.java | cf9948857e98495c93f03e4f8e098b7c9fa45858 | [] | no_license | mars920314/LeetCode | d0a50b951185249af61fd6681c65224dca4ec653 | 654e59797d19437cac8d1cf7e171770729f901f4 | refs/heads/master | 2021-01-10T07:17:54.057857 | 2016-03-19T15:51:29 | 2016-03-19T15:51:29 | 54,273,953 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,550 | java | package datastructure;
public class BinarySearchTree {
TreeNode root=null;
BinarySearchTree(int x){
this.root=new TreeNode(x);
}
void insert(int x){
insert_current(root, x);
}
TreeNode insert_current(TreeNode current, int x){
if(current==null){
return new TreeNode(x);
}
else if(x<current.val)
cur... | [
"mars.314@hotmail.com"
] | mars.314@hotmail.com |
1afe0ca64fb13e23b839ac1c072b5478324a01d7 | 4b0bf4787e89bcae7e4759bde6d7f3ab2c81f849 | /aliyun-java-sdk-emr/src/main/java/com/aliyuncs/emr/transform/v20160408/DescribeScalingConfigItemV2ResponseUnmarshaller.java | 16bbfac36eca5263aef950dc95245e449a7e5ea6 | [
"Apache-2.0"
] | permissive | aliyun/aliyun-openapi-java-sdk | a263fa08e261f12d45586d1b3ad8a6609bba0e91 | e19239808ad2298d32dda77db29a6d809e4f7add | refs/heads/master | 2023-09-03T12:28:09.765286 | 2023-09-01T09:03:00 | 2023-09-01T09:03:00 | 39,555,898 | 1,542 | 1,317 | NOASSERTION | 2023-09-14T07:27:05 | 2015-07-23T08:41:13 | Java | UTF-8 | Java | false | false | 1,697 | java | /*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed u... | [
"sdk-team@alibabacloud.com"
] | sdk-team@alibabacloud.com |
6a8ffd0aaa87d491c707ced0fd61fc7344e2c27a | 2bb0ab75288031a14a0494379e668c1c20d11540 | /src/com/massivecraft/factions/entity/BoardColls.java | 8ce013b6d6a2d78dd19fcf58e0a4d8ba970a9a36 | [] | no_license | crazyskink25/Factions | 9fbf6d2b42f229aef3a3c6e011d6131b95640650 | cf03bd5b8a8bf65a0829a1c37421501ca74b2150 | refs/heads/master | 2021-01-16T17:48:31.178179 | 2013-04-29T14:29:10 | 2013-04-29T14:29:10 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,347 | java | package com.massivecraft.factions.entity;
import java.io.File;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import java.util.Map.Entry;
import com.massivecraft.factions.Const;
import com.massivecraft.factions.Factions;
imp... | [
"olof@sylt.nu"
] | olof@sylt.nu |
2bc15d5c58a9f097c10baa32410f287b9fe96957 | 5f3fddd2ead0102c4ddd3d074370152e3ee7fd0d | /app/src/main/java/com/number26/anibal/myapplication/service/Number26Service.java | b509ff4820604c0567e0f2a4e0f7cb7ab26fea93 | [] | no_license | Hannibalem/mygraph | aef0a37ee4686da90bfeb8695ef1ea1dc784f9ba | 4536eb8d3bb37e232bc552019c85eefd93e42109 | refs/heads/master | 2021-01-17T17:36:33.898562 | 2016-08-12T18:59:50 | 2016-08-12T18:59:50 | 63,176,464 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 455 | java | package com.number26.anibal.myapplication.service;
import com.number26.anibal.myapplication.api.BaseResponse;
import com.number26.anibal.myapplication.model.Interval;
import java.util.List;
import retrofit2.http.GET;
import retrofit2.http.Query;
import rx.Observable;
/**
* Created by anibal on 30.06.16.
*/
public... | [
"anibal.camunas@gmail.com"
] | anibal.camunas@gmail.com |
f7157d01f1dec7c867afe907e931d43a307f9d4c | 332297e5b7277ad48ec867933bd2c88bf49e8ff4 | /chrome/android/java/src/org/chromium/chrome/browser/tab/TabContextMenuItemDelegate.java | 45c7a620bf5f6828bb03fca63dfe6791911f92dc | [
"BSD-3-Clause"
] | permissive | chorman0773/chromium | 3b4147a24e41dab4abe82cde84b9a6f52dd7ee67 | ba837a33fd29823d60e8119daf0d5b8113384ca6 | refs/heads/master | 2022-11-29T21:39:15.228897 | 2018-11-13T15:42:24 | 2018-11-13T15:42:24 | 157,396,636 | 1 | 0 | NOASSERTION | 2018-11-13T15:42:25 | 2018-11-13T14:52:16 | null | UTF-8 | Java | false | false | 12,363 | java | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.chrome.browser.tab;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import ... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
c4c8a3c6a3d8ff331947d068ff76e067172e039d | fa7a06a099386cc7d4a4414c9914259835962006 | /microservicecloud-provider-dept-hystrix-8001/src/main/java/com/sk/springcloud/service/DeptService.java | fb40cb4e3a7563162c8d14fda196c4c641e5f494 | [] | no_license | xuepengcheng-001/microservicecloud | 54911d1e0afeffd47576a68618f202fb2506985b | 1953532b026b6b4e49235f966d55fb923cd33c9c | refs/heads/master | 2022-06-21T09:59:29.061928 | 2019-08-10T08:49:50 | 2019-08-10T08:49:50 | 201,603,850 | 0 | 0 | null | 2022-06-21T04:05:11 | 2019-08-10T08:43:05 | Java | UTF-8 | Java | false | false | 224 | java | package com.sk.springcloud.service;
import java.util.List;
import com.sk.springcloud.entitys.Dept;
public interface DeptService {
public boolean add(Dept dept);
public Dept get(Long id);
public List<Dept> list();
}
| [
"349625012@qq.com"
] | 349625012@qq.com |
33935a3992edfc0dbee43ff938def0c0ec577fad | e24f3d5d3e0ea1398244fbc450f5ea33bb08f0ab | /dmd_project-dao/src/main/java/ru/innopolis/dmd/project/dao/postgresql/AbstractDaoImpl.java | b8adab3f642aa8a51258a9128cefdd6367932f6f | [] | no_license | TimurKasatkin/dmd_project | 17e506098ffc76bb304815f0d5442bc09213f60d | c62ce95ec0b96f3bedb1d03dd50ce3ab5e18efc7 | refs/heads/master | 2020-04-05T23:04:24.365487 | 2016-12-29T09:19:27 | 2016-12-29T09:19:27 | 42,849,613 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,752 | java | package ru.innopolis.dmd.project.dao.postgresql;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.ResultSetExtractor;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.jdbc.datasource.DriverMa... | [
"aronwest001@gmail.com"
] | aronwest001@gmail.com |
d7455f7928b411a494d24c16a61b3f30154e2b1a | 0ada9e37f14143f182498206cd3bec4db0eb4661 | /oap-stdlib/src/test/java/oap/util/MemoryMeterTest.java | f6e40860c58988ea5719d8818e5375dad873bbdf | [
"MIT"
] | permissive | vi-ai/oap | b5d428d0ac96c97a9cf93989e964b9adec91bb44 | b5f907d572a36a40dcd7ce1c68aea709f6542349 | refs/heads/master | 2023-07-21T14:18:41.248753 | 2017-12-11T12:10:02 | 2017-12-11T12:10:02 | 82,679,470 | 0 | 0 | null | 2018-01-12T14:11:29 | 2017-02-21T12:52:03 | Java | UTF-8 | Java | false | false | 1,450 | java | /*
* The MIT License (MIT)
*
* Copyright (c) Open Application Platform Authors
*
* 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 r... | [
"nofate@ukr.net"
] | nofate@ukr.net |
0aa4570dfca3b61edd2f128c20968f36790a3c27 | 3bc88bad2063e40a3f9f4bce4bd18cd474798cce | /백준/BOJ 2884 알람 시계/Main.java | f76f4f52f79d95cc002101924b9bb9584ea99d08 | [] | no_license | cocobino/ACM-ICPC | b1793403bf4f759adf6457f36a78d47dd5988135 | 03c1f8a24f50229abebe03657dc2ef75d2816244 | refs/heads/master | 2023-02-26T02:09:15.120403 | 2023-02-20T15:08:44 | 2023-02-20T15:08:44 | 128,730,398 | 3 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,098 | java |
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringT... | [
"coolbino@naver.com"
] | coolbino@naver.com |
e4d0a7d7932e51607d0190d5be8b6799d7af06ea | 25e8388c82afad04a4351cafa3e11c7ba972b0e9 | /Geico/src/main/java/motorVehicle/MotorVehicleCustomerInfo.java | 299019bd3259acbf0a8e865fa5ba98d7ce9f8dfe | [] | no_license | mohammad898/PNT_HybridFreamwork | 20b539221d988ec6d99e0730977515c4bf46da9e | 37773d12f20397cd7605ffa243c973950ce8952e | refs/heads/master | 2020-04-01T11:52:12.341679 | 2018-10-16T00:12:01 | 2018-10-16T00:12:01 | 153,181,225 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 899 | java | package motorVehicle;
import base.CommonClass;
import homePage.InsuranceProducts;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
public class MotorVehicleCustomerInfo extends CommonClass {
InsuranceProducts obj = new InsuranceProducts();
@FindB... | [
"afiafarjana560@gmail.com"
] | afiafarjana560@gmail.com |
9a543dc20a04a2d8044b502c31fd4fc8f623bb0d | a8e092c1f877317f54882d66ccf5e6c5148fcce3 | /src/main/java/bitmap/BitMapFile.java | 6562235286c1ea4d773fb91c7c464373691d2486 | [] | no_license | shikhar1sharma/Columnar_DB | 6f8401dac9f57f3663422037be2071dddbe16602 | c913bd18bf1cee5026b22238d2255a3b2201000f | refs/heads/master | 2021-09-09T06:17:19.604371 | 2018-03-14T05:21:21 | 2018-03-14T05:21:21 | 125,158,868 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 7,613 | java | package bitmap;
import java.io.IOException;
import bufmgr.HashEntryNotFoundException;
import bufmgr.InvalidFrameNumberException;
import bufmgr.PageUnpinnedException;
import bufmgr.ReplacerException;
import columnar.ColumnarFile;
import diskmgr.Page;
import global.*;
public class BitMapFile {
private BitMapHe... | [
"shikhar1.sharma@gmail.com"
] | shikhar1.sharma@gmail.com |
ed3173100b0545454ad4c1f0474a001d92d5f8b3 | 42631688fbfa2d2757e1af819f065b8a499bbc1c | /Code/P_SelectReceivedEvent.java | 96335242c688a7b7a52cb282e9737da0e1d9c7e9 | [] | no_license | sanketnawle/What-s-Happening- | 5810f75b1e6f5b0c519943836e30db67bc7347ea | 9a4ede14d06ecf93eed2ed342712203d25d6d1e7 | refs/heads/master | 2021-01-21T08:24:06.533873 | 2017-05-17T22:56:07 | 2017-05-17T22:56:07 | 91,626,392 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,435 | java | package com.example.sanketnawle.whatshappening;
import android.util.Log;
public class P_SelectReceivedEvent {
public String fphone,userNumber,ename,uname, details, location, time,date;
public void setUserNumber(String userNo)
{
userNumber = userNo;
Log.e("user no in SU:set... | [
"noreply@github.com"
] | sanketnawle.noreply@github.com |
564866ccef94a865b3983b36223db74de4e424a1 | 14966ace1946bb4bba864661125d3c892e8a991b | /slovar/obj/Debug/81/android/src/android/support/v7/appcompat/R.java | 19099bdcf621e692ab0e852bb9a43647eadea629 | [] | no_license | whatisdeadmayneverdi3/praktika | 3e98e2b958c9bbacf397082b32b69b3a29954053 | 259b35d9b48e4a4e8c50f84d5063515fa1218863 | refs/heads/main | 2023-07-28T08:13:23.721362 | 2021-09-11T12:45:02 | 2021-09-11T12:45:02 | 405,368,198 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 633,406 | 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.v7.appcompat;
public final class R {
public static final class anim {
public static int abc_fade_in=0... | [
"61790750+whatisdeadmayneverdi3@users.noreply.github.com"
] | 61790750+whatisdeadmayneverdi3@users.noreply.github.com |
40b65868e8877076db2de437108e3f58c9eecef0 | f3649575b113bb24591e95d16088ee58d91bf21e | /Source_Code/fBReader/src/main/java/org/geometerplus/fbreader/formats/oeb/OEBAnnotationReader.java | bc810f9634456289c5160dd6b72c922fcd522b82 | [] | no_license | lurongshuang/FBReader-Mupdf_library | 8b12cd4cb4d7d014491c0a20726908f539822cf7 | 6c08865a7cf7d5f1b6ec1cfde301a194b9900329 | refs/heads/master | 2021-05-08T21:38:29.037300 | 2019-12-02T07:34:52 | 2019-12-02T07:34:52 | 119,648,514 | 53 | 18 | null | null | null | null | UTF-8 | Java | false | false | 2,669 | java | /*
* Copyright (C) 2007-2015 FBReader.ORG Limited <contact@fbreader.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later ... | [
"13269779672@163.com"
] | 13269779672@163.com |
1919b6de89abf43a8a70f82aed4c25fa25ea7eb9 | 0a6360134dbf6400383e119e618615e4c2aaeeff | /app/build/generated/not_namespaced_r_class_sources/debug/r/androidx/fragment/R.java | a42ee741d5959fd04720a092f4b881ae76c3cecc | [] | no_license | eduardscaueru/ContractSimplify | 716a0e59b57477948fa4a542c18df78c8cff8e30 | 8006dd7861a440c2f225d4ae9964aa103b293190 | refs/heads/main | 2023-02-09T12:22:55.437455 | 2021-01-07T13:35:14 | 2021-01-07T13:35:14 | 311,032,961 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 12,390 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* gradle plugin from the resource data it found. It
* should not be modified by hand.
*/
package androidx.fragment;
public final class R {
private R() {}
public static final class attr {
private attr() {}
... | [
"edi_scaueru@yahoo.com"
] | edi_scaueru@yahoo.com |
ef2f276685d60eca89aab458b80190ddc6a5526c | 78a9a4aadf6758d38754c0a398fe0c3659731a76 | /src/main/java/com/nirav/demo/ApplicationWebXml.java | c80cde367da6d8df1577df3dd1aa19b3d95a4613 | [] | no_license | nrvmodi/jhipster-sample-application | ff44d97f6096709ce909ccec0bfa2c094d0d3c8e | 0daa12e9a4ed6a260d5045275af99041f5c7a6b4 | refs/heads/main | 2023-02-07T10:29:58.233552 | 2021-01-01T11:24:26 | 2021-01-01T11:24:26 | 325,965,600 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 813 | java | package com.nirav.demo;
import io.github.jhipster.config.DefaultProfileUtil;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
/**
* This is a helper Java class that provides an alternative to creating a {@code web.xml}... | [
"jhipster-bot@jhipster.tech"
] | jhipster-bot@jhipster.tech |
9bb72b96500f1b3c3e3e33d83a1e3b736b05419c | b01eab4165d36bf5c50e8c28deca9991bfc963f2 | /src/dp/behaviour/state/problem/ToolType.java | 49931a18f608951c7a59ce0181dce1165cd14001 | [] | no_license | Hmida-Rojbani/DP-Samples | 0925c57349de610cbbd999a697fc445e35f40db3 | 4d73370f8756bb6d34d974b4e6f8f5bf9d920999 | refs/heads/master | 2023-03-14T13:13:43.782838 | 2021-03-05T12:39:51 | 2021-03-05T12:39:51 | 344,777,251 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 91 | java | package dp.behaviour.state.problem;
public enum ToolType {
SELECTION,
BRUSH,
ERASER
}
| [
"31728681+Hmida-Rojbani@users.noreply.github.com"
] | 31728681+Hmida-Rojbani@users.noreply.github.com |
bb5c1d7d71bb7c87dcd096d31a33668e3bea00fc | c885ef92397be9d54b87741f01557f61d3f794f3 | /tests-without-trycatch/Gson-17/com.google.gson.DefaultDateTypeAdapter/BBC-F0-opt-70/8/com/google/gson/DefaultDateTypeAdapter_ESTest_scaffolding.java | 45c24216a52b16e7f24bf7d2dfa4ad1f29d14e81 | [
"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 | 8,085 | java | /**
* Scaffolding file used to store all the setups needed to run
* tests automatically generated by EvoSuite
* Thu Oct 14 01:15:47 GMT 2021
*/
package com.google.gson;
import org.evosuite.runtime.annotation.EvoSuiteClassExclude;
import org.junit.BeforeClass;
import org.junit.Before;
import org.junit.After;
impo... | [
"pouria.derakhshanfar@gmail.com"
] | pouria.derakhshanfar@gmail.com |
bcf4ffb33c2d5550b4620b9ed0a7775c19d85ebe | 04b3202071e9be38bb6d800c7b348edc88dc11d5 | /src/main/java/br/com/ifood/vehiclerouting/entity/Client.java | b75ec2eddd1a13dbc32636af23f507b19cb053ac | [] | no_license | jeffersonrodrigues92/vehiclerouting | d9e2d0f09023fd4b1a2f8948fba5e1c2fa3428d1 | bce4ff780c15b47eae3b2e31306492085b34b978 | refs/heads/master | 2020-04-09T15:38:44.369043 | 2018-12-10T13:27:03 | 2018-12-10T13:27:03 | 160,431,870 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 697 | java | package br.com.ifood.vehiclerouting.entity;
import javax.persistence.*;
import javax.validation.constraints.NotNull;
@Entity
@Table(name = "client")
public class Client {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@NotNull
private Double lat;
@NotNull
private... | [
"jefferson.rodrigues@MacBook-Pro-de-Jefferson-2.local"
] | jefferson.rodrigues@MacBook-Pro-de-Jefferson-2.local |
f4e5ae5401ab9334dbaeca94cfd2b2e3fa10a02e | bd390bbe0e630eb402066955cc5d68cb7919521e | /src/officehours/April23.java | 91a40d6f705e70df4394a98b4a8cc9eded79f16b | [] | no_license | msarikoc/Spring2019Online_Project | 77bfb8904ff2571ba2d2006a0b1cb6b35f4e5024 | ef73f76911447763ed538f51b8dbbcd2440987a4 | refs/heads/master | 2020-05-27T17:16:45.311073 | 2019-05-26T17:24:52 | 2019-05-26T17:24:52 | 188,717,403 | 1 | 0 | null | 2019-05-26T18:22:44 | 2019-05-26T18:22:44 | null | UTF-8 | Java | false | false | 1,523 | java | package officehours;
import java.util.Arrays;
public class April23 {
public static void main(String[] args) {
// isPalindrome(43234);
// int num = 1;
// System.out.println("Result: "+ (num%10));
// int reversed = reverseNumber(123456789);
// System.out.println(reversed);
System.out.println(fib(20) == 6765);
... | [
"cybertekstudio@wsip-70-166-39-41.dc.dc.cox.net"
] | cybertekstudio@wsip-70-166-39-41.dc.dc.cox.net |
16307b6fe907d4556f48da1ef582f461ef0b7453 | 7cfe6d59908021d848d580df3c5024a1207e41aa | /customwidget/src/main/java/cn/xxt/customwidget/thinkinginjava/io/file18_7/BinaryFile.java | 5f9c1233dbec4d43f8ad23db73593116478562da | [
"Apache-2.0"
] | permissive | Martin-zhq/someexercise | ee80f469769eeeec6eb11c28267d2ad7d750bc40 | 6edd6cc4ce260c189727a487652738549ca61d56 | refs/heads/master | 2022-03-04T21:16:51.379746 | 2019-12-02T10:04:24 | 2019-12-02T10:04:24 | 114,429,305 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 748 | java | package cn.xxt.customwidget.thinkinginjava.io.file18_7;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
/**
* @Author zhq
* @Date 2019-12-02-17:25
* @Description
* @Email 1457453696@qq.com
*/
public class BinaryFile {
public static byte[] ... | [
"1457453696@qq.com"
] | 1457453696@qq.com |
e6a7a792d93cff4d8dd8b53945dfe04463e13779 | 5c751af50b8766802c19e2e1d39aed9e55ff478c | /src/subject/observer/pattern/ISubject.java | 070f75eb06b25574c508889664637b5abd5c423b | [] | no_license | rabbitmz/HeadFirstDesignPatternBook | 6e3e4422610b3a037ea888055bcc48c3269929b8 | 3cd4de9e5a4bb95c734e1ec5771b80973a34ed07 | refs/heads/master | 2020-04-07T07:04:34.762118 | 2018-11-22T04:57:06 | 2018-11-22T04:57:06 | 158,162,492 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 321 | java | package subject.observer.pattern;
/**
* An interface that represents the subjects
*
* A subject is responsible to publish the data to the observers
* @author rabbit
*
*/
public interface ISubject
{
void registerObserver(IObserver observer);
void removeObserver(IObserver observer);
void notifyObservers();
}... | [
"yuri2jwingeter@gmail.com"
] | yuri2jwingeter@gmail.com |
bbc44861963aa66201bfe230c8aab2348b34f141 | 1c311ca46807a37b50b494c0f0a0f9d57744b570 | /src/admin/frames/ItemExtendedFrame.java | 5f087f6616ac59d1b78db8f0b820516ae9f61a20 | [] | no_license | MrHistone/Admin | d6ef9159f8bf7b502fca0acf5d9f509365079bc1 | c3c807bcd517dd1a7cf68a256770c61ff46010f2 | refs/heads/master | 2020-12-30T13:20:00.564691 | 2017-05-15T14:36:38 | 2017-05-15T14:36:38 | 91,342,965 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,009 | java | package admin.frames;
import admin.ConfigWindow;
import admin.MDIStart;
import admin.Preferences;
import java.awt.Dimension;
import java.awt.Point;
public class ItemExtendedFrame extends javax.swing.JInternalFrame {
/**
* Creates new form ItemExtendedFrame
*/
public ItemExtendedFrame() {
... | [
"Bart Jansen@SOSDE49"
] | Bart Jansen@SOSDE49 |
c531b982e733aaf7dbd2a7002a96de73a3fb69d4 | 6baf1fe00541560788e78de5244ae17a7a2b375a | /hollywood/com.oculus.browser-base/sources/org/chromium/chrome/browser/notifications/settings/NotificationSettings.java | 7a4d95d23132d716c3e7f55a8ace9f2bcf5631f9 | [] | no_license | phwd/quest-tracker | 286e605644fc05f00f4904e51f73d77444a78003 | 3d46fbb467ba11bee5827f7cae7dfeabeb1fd2ba | refs/heads/main | 2023-03-29T20:33:10.959529 | 2021-04-10T22:14:11 | 2021-04-10T22:14:11 | 357,185,040 | 4 | 2 | null | 2021-04-12T12:28:09 | 2021-04-12T12:28:08 | null | UTF-8 | Java | false | false | 1,856 | java | package org.chromium.chrome.browser.notifications.settings;
import J.N;
import android.os.Bundle;
import androidx.preference.Preference;
import com.oculus.browser.R;
import org.chromium.chrome.browser.profiles.Profile;
import org.chromium.components.browser_ui.settings.ChromeSwitchPreference;
/* compiled from: chromi... | [
"cyuubiapps@gmail.com"
] | cyuubiapps@gmail.com |
05fb26cd1aad70beb0755f11509249facb624f51 | afda65607d49070cf980497acd9789dcef64a186 | /src/main/java/net/smartcosmos/edge/things/converter/RestThingResponseToMapConverter.java | a8a008b5ab925af8ace34be3db5e75717c550905 | [
"Apache-2.0"
] | permissive | SMARTRACTECHNOLOGY/smartcosmos-edge-things | 35bbf802407ec18e54e6bf6b14623fbf0bb71df9 | 5987823f965ebf423c38d3ecaedfe6f9470ee94e | refs/heads/master | 2020-04-11T02:09:07.085873 | 2017-01-24T21:17:02 | 2017-01-24T21:17:02 | 61,788,340 | 0 | 1 | null | 2017-01-27T11:49:49 | 2016-06-23T08:27:21 | Java | UTF-8 | Java | false | false | 790 | java | package net.smartcosmos.edge.things.converter;
import java.util.LinkedHashMap;
import java.util.Map;
import org.springframework.core.convert.converter.Converter;
import org.springframework.stereotype.Component;
import net.smartcosmos.edge.things.domain.things.RestThingResponse;
@Component
public class RestThingResp... | [
"andreas.siegel@smartrac-group.com"
] | andreas.siegel@smartrac-group.com |
5702aedd39fd0c66178a24a04480a807b943da4c | 73308ecf567af9e5f4ef8d5ff10f5e9a71e81709 | /jaso83310/src/main/java/com/example/jaso83310/UserService.java | 30450c55ff1d7045434e3b2cb0996ef4410037ff | [] | no_license | yukihane/stackoverflow-qa | bfaf371e3c61919492e2084ed4c65f33323d7231 | ba5e6a0d51f5ecfa80bb149456adea49de1bf6fb | refs/heads/main | 2023-08-03T06:54:32.086724 | 2023-07-26T20:02:07 | 2023-07-26T20:02:07 | 194,699,870 | 3 | 3 | null | 2023-03-02T23:37:45 | 2019-07-01T15:34:08 | Java | UTF-8 | Java | false | false | 1,116 | java | package com.example.jaso83310;
import java.util.List;
import java.util.Optional;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@Service
@Transactional
public class UserService {
@Autowi... | [
"yukihane.feather@gmail.com"
] | yukihane.feather@gmail.com |
7f0f2645999a325559c32dc6c34cf58d2438f75e | 1ce7a2d1e8d6f58af86b60e69eb3a993deb5a3fe | /src/main/java/kye/Main.java | 8a8fbea600b9653f23cf325c95ba409bd52ce05c | [] | no_license | KirylPod/Codewars | 234925063aea1b799ac1203720dcb500037dd164 | a91d4d0e13e2d9bc0093e38db1fe811737dad2cd | refs/heads/master | 2020-07-11T06:35:33.780916 | 2019-09-14T15:09:14 | 2019-09-14T15:09:14 | 181,540,391 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,450 | java | package main.java.kye;
import main.java.kye.eight.AreYouPlayingBanjo;
import main.java.kye.eight.TransportationOnVacation;
public class Main {
public static void main(String[] args) {
// CenturyFromYear.century(1705);
// System.out.println(NoZerosForHeros.noBoringZeros(0));
// ... | [
"psossks@gmail.com"
] | psossks@gmail.com |
3ba2d2ae714fd2ace48b425f1cbf0e54c969196c | d71e879b3517cf4fccde29f7bf82cff69856cfcd | /ExtractedJars/iRobot_com.irobot.home/javafiles/com/irobot/core/PushNotificationPayloadUtils.java | 1d20cb50f8f5b77a57ddb84c7a1d18c907d2f180 | [
"MIT"
] | permissive | Andreas237/AndroidPolicyAutomation | b8e949e072d08cf6c6166c3f15c9c63379b8f6ce | c1ed10a2c6d4cf3dfda8b8e6291dee2c2a15ee8a | refs/heads/master | 2020-04-10T02:14:08.789751 | 2019-05-16T19:29:11 | 2019-05-16T19:29:11 | 160,739,088 | 5 | 1 | null | null | null | null | UTF-8 | Java | false | false | 3,112 | java | // Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) annotate safe
package com.irobot.core;
import java.util.concurrent.atomic.AtomicBoolean;
// Referenced classes of package com.irobot.core:
// AssetId
public abstrac... | [
"silenta237@gmail.com"
] | silenta237@gmail.com |
3daa8d5b777948f817d44b47efa35e7d387df6fa | f43f5483e65436395ad049c0ae9c708644ee5bb1 | /Account-Maker-PrizeGen-1/src/main/java/com/bae/controller/PrizeGenController.java | 156330c64b539b9cb65241cf72093f0c9535de2f | [] | no_license | JoeBenRob/Account-Maker | 46834ecdc911d0f9dae654e494fd54421d4c9f65 | 9178b011dfed9d25e6f7dd1c6a612ee205a9b342 | refs/heads/master | 2020-07-01T06:40:24.386154 | 2019-08-08T09:20:03 | 2019-08-08T09:20:03 | 201,078,254 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 896 | java | package com.bae.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.sprin... | [
"JoeBenRob@gmail.com"
] | JoeBenRob@gmail.com |
175e90d0cf6d30b0f67415a5dddfc81b6d5086fb | b9bea8ffd1cbe88fe3d84cfd8b0c4dae6faf43e5 | /graphql-maven-plugin-logic/src/main/resources/templates/server_WebSocketConfig.vm.java | 559c517de55bba6640468fe6ad8dc1a652172d74 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | graphql-java-generator/graphql-maven-plugin-project | 5638a108449461fe5a9f0bc72b1b8f84c271388e | 5d33ccc266383be06bd4455406f6032b42926f6f | refs/heads/master_2.x | 2023-08-25T10:14:13.419820 | 2023-08-19T16:13:55 | 2023-08-19T17:15:32 | 176,287,522 | 107 | 49 | MIT | 2023-08-15T17:45:36 | 2019-03-18T13:05:23 | Java | UTF-8 | Java | false | false | 2,198 | java | /** Generated by the default template from graphql-java-generator */
package ${packageUtilName};
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotati... | [
"etienne_sf@users.sf.net"
] | etienne_sf@users.sf.net |
6a3ca40579671551cb8374ffa3fb3792c26995ce | 24681f84a5dcf08b2391b3cd9100f57d6c2656e5 | /admin-dashboard/src/main/java/it/valeriovaudi/admindashboard/AdminDashboardApplication.java | ca9591260fec2a1790283d314db6ea20a54a9cc1 | [] | no_license | mrFlick72/cloud-native-infrastructure | 0a26c01a7b49e38e2275e07ea4212b2c9d0f018f | e8ec6433f548a77b2ee8f15b0e92bfb66d621cb0 | refs/heads/master | 2021-07-04T23:08:35.328526 | 2020-11-12T19:34:39 | 2020-11-12T19:34:39 | 196,722,459 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,225 | java | package it.valeriovaudi.admindashboard;
import de.codecentric.boot.admin.server.config.EnableAdminServer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.... | [
"valerio.vaudi@gmail.com"
] | valerio.vaudi@gmail.com |
6f27817a844cbc79d1ca4358658a123538d5f109 | 9db3b3baec2fdc7b93bd268595d127996b28e44b | /src/main/java/org/web3j/protocol/http/HttpService.java | a48d3186d4697556003366140e9d8b849de1768f | [
"Apache-2.0"
] | permissive | h2mch/web3j | 9f2831f15ca0f499e9401976619036e1ffd38efd | 3c6f609c7ce43c3c8655fac436ed487aa787e5b5 | refs/heads/master | 2023-08-06T21:19:38.756059 | 2017-05-14T22:30:43 | 2017-05-14T22:30:43 | 75,410,621 | 0 | 0 | NOASSERTION | 2023-08-01T22:44:27 | 2016-12-02T16:08:05 | Java | UTF-8 | Java | false | false | 2,900 | java | package org.web3j.protocol.http;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.http.Header;
import org.apache.http.HttpEntity;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.ResponseHandler;
import org.apache.http.client.methods... | [
"conor10@gmail.com"
] | conor10@gmail.com |
66b47a666b37b98243ce920fcb3edf738baa11b5 | b2096124ef6f5bee511b1410e14acf3477baad33 | /src/main/java/com/mansep/agenda/service/MedicalBuildingService.java | e836159efffe903cfcd19576a72e81bb1e08eebc | [] | no_license | mansep/agenda-medica-api | be25bfc3b0f0cfda9fe811f26006729c8bee8fee | e0a8a636f78c724057755eb1b1ad00b65f058ae9 | refs/heads/master | 2022-07-10T01:59:14.467413 | 2020-05-18T07:09:12 | 2020-05-18T07:09:12 | 255,127,550 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 809 | java | package com.mansep.agenda.service;
import java.util.List;
import com.mansep.agenda.dto.MedicalBuildingDto;
import com.mansep.agenda.entity.MedicalBuilding;
import com.mansep.agenda.exception.BadRequestException;
import com.mansep.agenda.exception.NotFoundException;
public interface MedicalBuildingService {
Medi... | [
"manuel.sepulvedad@egt.cl"
] | manuel.sepulvedad@egt.cl |
0281d38c3c45ee2abe3de76de20ae0c315e98cba | 5d0abf65eb71158e8a3fdbacffde60deb06fc3c5 | /main/src/main/java/org/mobilitydata/gtfsvalidator/validator/StopTimeArrivalAndDepartureTimeValidator.java | 0059ec9c66983b5097116091114e68aa26ad650b | [
"Apache-2.0"
] | permissive | talbilotfi1983/gtfs-validator | 96c6c38c8e78fb9476b651333fc141052707aff1 | 836d94c32edc75a592b0b0550aadfc9a2452fe22 | refs/heads/master | 2023-06-29T20:33:56.812776 | 2021-07-29T18:01:13 | 2021-07-29T18:01:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,994 | java | /*
* Copyright 2020 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in wr... | [
"noreply@github.com"
] | talbilotfi1983.noreply@github.com |
1dcf84d4c9446224d7381f0fe6348ee2932d0197 | a2b7580d42ed29123ca3e9c7231d4adc5c6d57e1 | /Orientação a Objetos/Polimorfismo/Instrumento/Baixo.java | 6f2353f2440ee8021dcd5f2b79297681cf179d61 | [] | no_license | cristiancechinel/ExerciciosResolvidosJava | 713e0fe245fef5696f2ae6503aed6962620e9d27 | 3b1c21604771f2623e59773fb2472729ee83af70 | refs/heads/master | 2020-07-17T04:33:35.929434 | 2019-09-12T20:08:55 | 2019-09-12T20:08:55 | 205,943,947 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 293 | java |
public class Baixo extends InstrumentoCorda {
public Baixo() {
this.setNumeroCorda(4);
}
public Baixo(int numeroDeCordas) {
this.setNumeroCorda(numeroDeCordas);
}
@Override
public void tocar() {
System.out.println("Tocando baixo");
}
}
| [
"ricardo.santacattarina@gmail.com"
] | ricardo.santacattarina@gmail.com |
0c192cdd3b61f9bd325a76b7359e841f69758b69 | bf8a94a326039bff8f0ea283aeab437953151cde | /miniproject_swing_parkking/carParkingRef/src/FileManeger/FileSystem.java | 81d96d82b4894071d0bd397bb5fe485ec07f5b9d | [] | no_license | tilsong/mini_project_Swing | ed4756437f581633b3c3d033a9acfbb008531580 | 9985a64131c66acbf80f5115073184515ddf60bd | refs/heads/main | 2023-03-14T00:32:14.260053 | 2021-03-11T16:37:12 | 2021-03-11T16:37:12 | 344,102,110 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,586 | java | package FileManeger;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import Information.ParkCarInfo;
public class FileSystem {
public void connection(ParkCarInfo ref){
Connection conn = null;
P... | [
"noreply@github.com"
] | tilsong.noreply@github.com |
2a5d2911e4ce7b4c27d5295bba2d99d8f3e26a6b | 26310295b7311d42f1345f41edb569b86fecd54f | /rewrite-java-repairer/src/main/java/org/openrewrite/java/search/FindAnnotations.java | cc913e3bf497f441b6178e0c45b434ce3f27439a | [
"Apache-2.0"
] | permissive | shadowxiehao/repairer-gradle-plugin | 387dfb0532d706a78e047943207bba0642c5542c | 4a7ffdd9c9d91e46fbd69be4b3c88a1e909f4bf3 | refs/heads/master | 2023-04-15T21:27:33.425004 | 2021-04-22T19:52:52 | 2021-04-22T19:52:52 | 360,272,356 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,221 | java | /*
* Copyright 2020 the original author or authors.
* <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>
* https://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by... | [
"799522476@qq.com"
] | 799522476@qq.com |
526aa8b657310d74f9b2482325deebad20086649 | 7ba951e9dfc18ac5fa6c39d8436216e535c84582 | /Simulator/src/pagereplacement.java | dde7daeed84a71f880b15b8a494ba918329d8be5 | [] | no_license | umeshsandeep/Os_Simulator | 7970beabe61f10f47a14a67e5da451de3cb45753 | 929f0b43abb2a4e5ce439248ecd8e251f7b1af41 | refs/heads/master | 2021-01-10T02:07:32.695962 | 2015-12-22T09:40:26 | 2015-12-22T09:40:26 | 48,423,349 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,509 | java | //package page;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JLabel;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JTextField;
import jav... | [
"umesh.d14@iiits.in"
] | umesh.d14@iiits.in |
5c2bc0736dac8c9daa78ac1ff01f3e5fcb6bd532 | 287dbb340765a05fac6047e4fa9e7d6277696596 | /src/main/java/me/twister915/punishments/model/storage/mongodb/MongoConnection.java | d4237e5bd532c2bf4bd1c6e2c1794d7b24ef64b8 | [
"Apache-2.0"
] | permissive | Twister915/TwistedPunishments | d807329eb0213f433257266f44b1c3d31464e041 | 048757098c75d44c6da48fc51d5bd38ee87d7121 | refs/heads/master | 2021-01-20T09:12:51.766304 | 2014-07-25T22:04:44 | 2014-07-25T22:04:44 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,989 | java | /******************************************************************************
Copyright 2014 Joey Sacchini *
*
Licensed under the Apache License, Version 2.0 (the "License"); *
... | [
"joey.sacchini264@gmail.com"
] | joey.sacchini264@gmail.com |
e9c0c8c259aa878e202b4087f3bffd3e8c84fea6 | a4e456c0d748a4a6717b18be3ed1bbea511e35a4 | /src/main/java/com/yusei/dao/FieldExtendRuleDetailDao.java | 4dfba628842d5fd99344b5a48dc2ce8291fd4481 | [] | no_license | lutwwp/my-custom-flow | cf1da13e9e9c3c92fd4b8f0870797180df5af783 | 5eb4a0e8f9ae85e1bb3fe8208e04f2e6d5f5b889 | refs/heads/master | 2023-06-02T10:26:35.533546 | 2021-06-24T04:21:38 | 2021-06-24T04:21:38 | 379,801,731 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 682 | java |
package com.yusei.dao;
import java.util.List;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import com.yusei.model.entity.FieldExtendRuleDetail;
/**
* 扩展规则详情表Dao
*
* @author generated by liuqiang
* @date 2020-09-02 13:58:18
*/
@Mapper
public interface FieldExtendRul... | [
"wangwp@si-tech.com.cn"
] | wangwp@si-tech.com.cn |
be14fdbdf23f3353d8c08878cbcb5ac26ea32b3f | 91fd5d79da06f0315ab4c57c5ab105fccb5e5584 | /src/main/java/check/data/db/domain/Comment.java | 321d258fee605745bfad881f30f0a5b1d731306d | [] | no_license | kakutot/course-work | 2ebe42a57e1b270da6c98e9657a58ab0217b054e | 3154a5cda95ef8ff485f6facdcfc024e5c62b508 | refs/heads/email | 2023-06-08T18:43:48.378199 | 2018-12-15T14:12:10 | 2018-12-15T14:12:10 | 208,457,486 | 0 | 0 | null | 2023-05-23T20:10:51 | 2019-09-14T15:09:59 | JavaScript | UTF-8 | Java | false | false | 2,011 | java | package check.data.db.domain;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.hibernate.validator.constraints.NotEmpty;
import javax.persistence.*;
@Entity
public class Comment {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY )
@Column(name = "id",nullable = false)
pu... | [
"r.tupkalenko2012@gmail.com"
] | r.tupkalenko2012@gmail.com |
d588d57b2b41a9ac5afbe1ece88843bbeb173be9 | 83e81c25b1f74f88ed0f723afc5d3f83e7d05da8 | /core/java/android/text/style/StrikethroughSpan.java | 94560065c3bbfafc42a0f39591d618a11c2ede3b | [
"Apache-2.0",
"LicenseRef-scancode-unicode"
] | permissive | Ankits-lab/frameworks_base | 8a63f39a79965c87a84e80550926327dcafb40b7 | 150a9240e5a11cd5ebc9bb0832ce30e9c23f376a | refs/heads/main | 2023-02-06T03:57:44.893590 | 2020-11-14T09:13:40 | 2020-11-14T09:13:40 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,310 | java | /*
* Copyright (C) 2006 The Android Open Source Project
*
* 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 requir... | [
"keneankit01@gmail.com"
] | keneankit01@gmail.com |
7bc20e76e0fd114ad5323453a0300fafd2bdd9e8 | ed3cb95dcc590e98d09117ea0b4768df18e8f99e | /project_1_2/src/g/j/Calc_1_2_694.java | 951c10e9ea2c249252eed51f19cd42d91037e0e0 | [] | no_license | chalstrick/bigRepo1 | ac7fd5785d475b3c38f1328e370ba9a85a751cff | dad1852eef66fcec200df10083959c674fdcc55d | refs/heads/master | 2016-08-11T17:59:16.079541 | 2015-12-18T14:26:49 | 2015-12-18T14:26:49 | 48,244,030 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 128 | java | package g.j;
public class Calc_1_2_694 {
/** @return the sum of a and b */
public int add(int a, int b) {
return a+b;
}
}
| [
"christian.halstrick@sap.com"
] | christian.halstrick@sap.com |
676cf32d42b143cd50501ae2d43affaf67443e02 | d78dabbe0ccd5b759540d252c6ddf91f4bcd84ec | /imsdk/src/main/java/com/focustech/android/components/mt/sdk/android/service/processor/rsp/RspLoginProcessor.java | 8e14eca7f4c55e0e03de3745b31bf5e1c53271f1 | [] | no_license | fangyangdegezi88/Android_MVVM-MVP | 817c6b045f9be4fbf228f8d0f1de6e7e18b33c4c | a7339e21763e9cd525d42c1da6f56d69ca234c48 | refs/heads/master | 2021-01-21T12:46:27.305035 | 2017-09-01T09:56:44 | 2017-09-01T09:56:44 | 102,095,569 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,310 | java | package com.focustech.android.components.mt.sdk.android.service.processor.rsp;
import com.focustech.android.commonlibs.capability.log.LogFormat;
import com.focustech.android.components.mt.sdk.android.ContextHolder;
import com.focustech.android.components.mt.sdk.android.service.SessionManager;
import com.focustech.andr... | [
"470173422@qq.com"
] | 470173422@qq.com |
7c6ffbaf463df797b6f6dabaf1d79dcf27cc2978 | 2755f18ecfd66368cfdae440b0cb023657b8eaab | /JavaApplication9/src/javaapplication9/Sensor.java | 539c90e0f861b3fb430ad4ae50e4cbc5c08681b0 | [] | no_license | dottore1/Bygningscontroller | 34e5e29bae1b0fb2ae894c77a7eabd95a391a6ba | 17b4f1a9b1b60176135fd1050a3cccad78474851 | refs/heads/master | 2020-09-12T14:02:30.276674 | 2019-11-19T08:51:47 | 2019-11-19T08:51:47 | 222,447,190 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 418 | 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 javaapplication9;
public abstract class Sensor extends Unit {
private boolean isOutside;
public Sensor(boolean isOut... | [
"nibor19@student.sdu.dk"
] | nibor19@student.sdu.dk |
71a63087ead793a48a740a9f512303418d71f1e8 | b2b5185631ddf3f582f78065247caa8ff85919c9 | /tags/release-2.1/src/DVN-EJB/src/java/edu/harvard/iq/dvn/core/study/StudyServiceLocal.java | 2338f6023fa34e10cfe120384c90e0b70900b1b4 | [] | no_license | dvn/dvn-svn-import-test5 | bd606b663c8a061278b4164b9b21078667c1675e | 09ef67d666fbd8860b8c233bedf2529f39c59bbd | refs/heads/master | 2016-09-06T14:43:08.202121 | 2013-01-04T20:00:13 | 2013-01-04T20:00:13 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,792 | java | /*
* Dataverse Network - A web application to distribute, share and analyze quantitative data.
* Copyright (C) 2007
*
* 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 ... | [
"ekraffmiller@hmdc.harvard.edu"
] | ekraffmiller@hmdc.harvard.edu |
aad13afc53e72d847cf1038150655a176bf621bd | d5f09c7b0e954cd20dd613af600afd91b039c48a | /sources/com/amap/api/mapcore2d/bx.java | d1061737c6c230ebda0d382630863ffd784f2659 | [] | no_license | t0HiiBwn/CoolapkRelease | af5e00c701bf82c4e90b1033f5c5f9dc8526f4b3 | a6a2b03e32cde0e5163016e0078391271a8d33ab | refs/heads/main | 2022-07-29T23:28:35.867734 | 2021-03-26T11:41:18 | 2021-03-26T11:41:18 | 345,290,891 | 5 | 2 | null | null | null | null | UTF-8 | Java | false | false | 339 | java | package com.amap.api.mapcore2d;
import android.graphics.PointF;
import java.util.ArrayList;
import java.util.List;
/* compiled from: TrafSegment */
class bx {
private int a;
private List<PointF> b = new ArrayList();
public List<PointF> a() {
return this.b;
}
public int b() {
retu... | [
"test@gmail.com"
] | test@gmail.com |
70bd951bbcf8321ff818abc33bab4ab577f07eb9 | 633381a32e915457d9c7f583a45ca377f3b4b3f5 | /src/main/java/com/nguyenhathanhdat/filter/AuthorizationFilter.java | 63c6d9f1c80b65e2de1c6a98bebfd8193d8c11bb | [] | no_license | nguyenhathanhdat260898/ServletJDBCJSP | a6eacf76b3c2fe935a642dee2d4e56607f4196b0 | 8b8157f265670592451a2557f185b2789a674e2d | refs/heads/main | 2023-04-01T22:06:21.086618 | 2021-04-17T04:48:52 | 2021-04-17T04:48:52 | 358,782,953 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,965 | java | package com.nguyenhathanhdat.filter;
import java.io.IOException;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpSer... | [
"nguyenhathanhdat260898@gmail.com"
] | nguyenhathanhdat260898@gmail.com |
8974fcd508c6c528fba02913273f8faeddbcc5f2 | a86fd523d6c1dc67501989bcf4dc90218bb48c1f | /GreenPOS/src-erp/com/openbravo/ws/externalsales/ProductPlus.java | 4f347d66a4109504ae9f41fe7f585e61130770b6 | [] | no_license | raccarab/openbravocustom | 173302a4d448dda43d47f89ff092020b2cac57a3 | 2973aefa50331ba082cc8f0c54cd7fde1b273df4 | refs/heads/master | 2021-01-25T10:29:47.334527 | 2012-03-13T17:44:13 | 2012-03-13T17:44:13 | 32,250,738 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 4,203 | java | /**
* ProductPlus.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
*/
package com.openbravo.ws.externalsales;
import com.openbravo.ws.externalsales.ProductPlus;
public class ProductPlus extends com.openbravo.ws.externalsales.Product implement... | [
"thibaut.colson@gmail.com@59e4095a-f9fc-11de-8cdf-e97ad7d0f28a"
] | thibaut.colson@gmail.com@59e4095a-f9fc-11de-8cdf-e97ad7d0f28a |
df036a16f7c7f721a5d72fcb0e571e8c2edc47f1 | 8181a16eb3fc76515711b54da523012ce98aaedf | /app/src/main/java/com/hultron/lifehelper/entity/NewsData.java | 6e7a69efa2e74ff9fc34b3579c67bd0c2c41d365 | [
"Apache-2.0"
] | permissive | Hultron/LifeHelper | 9dabb7554803dc6abee3acc0163dca80f3a8ff80 | 94dbcc428aa123fc91fc3cc60041e5851be18a82 | refs/heads/master | 2021-01-18T20:30:20.235016 | 2017-04-14T14:52:23 | 2017-04-14T14:52:23 | 86,973,727 | 3 | 0 | null | null | null | null | UTF-8 | Java | false | false | 627 | java | package com.hultron.lifehelper.entity;
/**
* 时事新闻数据类
*/
public class NewsData {
//标题
private String title;
public String getCtime() {
return ctime;
}
public void setCtime(String ctime) {
this.ctime = ctime;
}
//新闻时间
private String ctime;
//新闻地址
private Str... | [
"hultron@foxmail.com"
] | hultron@foxmail.com |
37a53c484726102473a5697d44625de8557da2c4 | 3ff2c98393cd5bbd0a11844d8c77ec06d385b6ab | /presto-sics-jdbc/src/main/java/com/facebook/presto/plugin/jdbc/BaseJdbcClient.java | 3a26a7a18b6506ffdc31dae2447e16c7bd603ffc | [] | no_license | mrzhangxuliang/presto-0.233-hana-connector | 17e73137bbe464af08e40f83939309a6e0946bc9 | 213db2cc5a2e68bfd0c57ab4006593ea597c9dc4 | refs/heads/master | 2022-11-22T02:04:51.049240 | 2020-07-05T02:40:06 | 2020-07-05T02:40:06 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 34,647 | java | /*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distribut... | [
"513283439@qq.com"
] | 513283439@qq.com |
22a941c1e3fb76a882eea2273c059a751353c249 | e4f340aeac661f9439a513537e0f51c49bcb0493 | /adminApi/wcaa-wxapp-api/src/main/java/wcaa/api/controller/UserController.java | 0405e8bf18be66be7ca0fc486177c235c78abfba | [] | no_license | douruifeng/admin | 6d7d13b6b06dea22a3662011f0399663e0639427 | 0833bad619130c832dd4a490edf18927c978e661 | refs/heads/master | 2022-06-25T17:04:22.219277 | 2020-03-07T14:17:06 | 2020-03-07T14:17:06 | 242,519,855 | 0 | 0 | null | 2022-06-21T02:51:26 | 2020-02-23T13:14:37 | Vue | UTF-8 | Java | false | false | 3,943 | java | package wcaa.api.controller;
import io.swagger.annotations.*;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Value;
import wcaa.Vo.PageResult;
import wcaa.pojo.User;
import wcaa.service.userService;
import org.springfram... | [
"dou_email@163.com"
] | dou_email@163.com |
f95a65f4b1e099119cb17f9e3d3c3d7c992fe089 | 620c75f522d8650e87bf64b878ca0a7367623dda | /org.jebtk.modern/src/main/java/org/jebtk/modern/dialog/ModernDialogWindow.java | a180eea7df83e0ab51bd36d89d0d8393a4fa8435 | [] | no_license | antonybholmes/jebtk-modern | 539750965fcd0bcc9ee5ec3c371271c4dd2d4c08 | 04dcf905082052dd57890a056e647548e1222dff | refs/heads/master | 2021-08-02T18:05:05.895223 | 2021-07-24T21:59:26 | 2021-07-24T21:59:26 | 100,538,521 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 14,093 | java | /**
* Copyright (C) 2016, Antony Holmes
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of condi... | [
"antony.b.holmes@gmail.com"
] | antony.b.holmes@gmail.com |
934c6a95959eaa8a1a0b3ee3db627512abfdd9f1 | b4b1990cd06f3f0cd618fa6308e0036043cd5744 | /vege-admin/src/main/java/com/vcooline/crm/admin/service/CrmCustomerService.java | 8654276337b352edb1a4898b8f0e21bcc90921ed | [] | no_license | yp1989/vege | c1ea8e9cfcf4429d60c7e9f2fdfde42695860f18 | 5794b7f18d4af08600aa47533971769d6ef9dd5e | refs/heads/master | 2021-04-26T04:47:55.345884 | 2017-10-15T08:16:15 | 2017-10-15T08:16:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 841 | java | package com.vcooline.crm.admin.service;
import com.vcooline.crm.common.model.CrmCustomer;
import java.util.List;
/**
* Created by xinbaojian on 15/7/17.
*/
public interface CrmCustomerService {
int deleteByPrimaryKey(Long id);
int insert(CrmCustomer record);
int insertSelective(CrmCustomer record);
... | [
"xinbaojian@126.com"
] | xinbaojian@126.com |
e50303e2590eb1c9547e5847a30fae5281f21307 | 7129ca7b404f87ffa593dc861a70053c58a15d76 | /refrigeratorSemi/src/com/refrigerator/common/controller/AjaxTodayRecipeController.java | 3342d0e5ccb95fb4eaec04c3234503b14dafdb92 | [] | no_license | seongit/refrigerator_workspace | e37dad4d80b155fe50978d33f4d55e3fbebf7dd4 | 38e2832defe254ffc114dc66bf61dc49023188b7 | refs/heads/main | 2023-07-24T00:09:02.009808 | 2021-09-12T08:09:25 | 2021-09-12T08:09:25 | 378,642,113 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,570 | java | package com.refrigerator.common.controller;
import java.io.IOException;
import java.util.ArrayList;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
im... | [
"seongeunk102@gmail.com"
] | seongeunk102@gmail.com |
bbbf43e5e528ae7f882ad5be2a2cfd4abd5200dd | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/26/26_560ec3b9c3985ca3ce5536b74b21e5c6a781b692/UIBean/26_560ec3b9c3985ca3ce5536b74b21e5c6a781b692_UIBean_t.java | fb4f53740ce65d6d17c2ef7d00fb0d04c41dc48d | [] | 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,648 | java | /* Copyright c 2005-2012.
* Licensed under GNU LESSER General Public License, Version 3.
* http://www.gnu.org/licenses
*/
package org.beangle.struts2.view.component;
import java.io.Writer;
import java.text.MessageFormat;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
76c11c83851f7953498de7c424df17d01307856b | 0a6336496abdb49a8fbcbbbcad581c850356f018 | /src/main/java/org/openapitools/client/model/GetWalletTransactionDetailsByTransactionIDRIBS.java | a1aa5092010ca785e13a4b255618c546f412afec | [] | no_license | Crypto-APIs/Crypto_APIs_2.0_SDK_Java | 8afba51f53a7a617d66ef6596010cc034a48c17d | 29bac849e4590c4decfa80458fce94a914801019 | refs/heads/main | 2022-09-24T04:43:37.066099 | 2022-09-12T17:38:13 | 2022-09-12T17:38:13 | 360,245,136 | 5 | 1 | null | null | null | null | UTF-8 | Java | false | false | 49,098 | java | /*
* CryptoAPIs
* Crypto APIs is a complex and innovative infrastructure layer that radically simplifies the development of any Blockchain and Crypto related applications. Organized around REST, Crypto APIs can assist both novice Bitcoin/Ethereum enthusiasts and crypto experts with the development of their blockchain... | [
"kristiyan.ivanov@menasoftware.com"
] | kristiyan.ivanov@menasoftware.com |
67f0460903e7521aacb2be8cca03636b25d998aa | 9b5934a0d0a918ceecf441978302b6a03c997bd0 | /src/Pharmachy_Management_Final/Madecine_Sells.java | a75df105a997361dea0a1131e3e631b9e144ebbc | [] | no_license | jasminakter01/Pharmacy-System-With-JAva | a3cdb231d15b296aa94fabfbfe31a5f969b217c1 | 2d6cb02aac63b64f200cb313074ffb1862479970 | refs/heads/main | 2023-02-03T12:34:53.873108 | 2020-12-23T09:58:58 | 2020-12-23T09:58:58 | 323,865,240 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 40,213 | 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 Pharmachy_Management_Final;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.event.KeyEvent;
import jav... | [
"jasmin.akter283997@gmail.com"
] | jasmin.akter283997@gmail.com |
faee95940fb37df2cc1602437cf3c47b589abd94 | 425fbbf3612b209b5e46891242c6dd51b8ba5e5f | /jcsecurity/trunk/src/main/java/com/jamcracker/common/security/keymgmt/dao/GenericKeyMgmtDao.java | 363d9ab7daa762163a2315cee2c1155f741fbb90 | [] | no_license | baskaran-radhakrishnan-10/uniqmac | d885695e588e508e232a3ebd59b9ec7cf25021be | a3646f52723987ccc815989dc12aec0be9a84471 | refs/heads/master | 2020-03-16T18:19:36.890119 | 2018-07-19T03:44:50 | 2018-07-19T03:44:50 | 132,868,386 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 18,747 | java | /*
*
* Class: GenericKeyMgmtDao.java
*
* Comments for Developers Only:
*
* Version History:
*
* Ver Date Who Release What and Why
* --- ---------- ---------- ------- ---------------------------------------
* 1.0 May 15, 2014 tmarum 7.0 Initial version.
* 2.... | [
"baskaran.coder@gmail.com"
] | baskaran.coder@gmail.com |
0b8cf24003127b89519b132d62a232474f64dc8d | 0c931af8afd6a15bf77d8fc6bfb5737f36b179f4 | /TrieTest.java | 8ced7e2d3e47dec5acdf9f69bc110de3ba5b274b | [] | no_license | jitension/Search-Engine | 2ae5fabfb733932dd3fa0e50474bbfc7f4b34e57 | 0552b06db216eb473fe6ee15cd14ddcf2ff445cd | refs/heads/master | 2021-01-11T14:52:35.234395 | 2017-01-31T01:00:02 | 2017-01-31T01:00:02 | 80,242,746 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,086 | java | import java.util.LinkedList;
import java.util.Scanner;
import java.util.TreeMap;
/**
* Created by Jitendra on 05/12/16.
*/
class TrieNode
{
char content;
boolean isEnd;
int count;
LinkedList<TrieNode> childList;
/* Constructor */
public TrieNode(char c)
... | [
"noreply@github.com"
] | jitension.noreply@github.com |
a45de9cace1f2270725d19c1be0b51ff001d1bb4 | 8214f05bbbbd65837c197e64bdb6bf31cd95d538 | /src/main/java/cn/baby_p2p/demo/service/UserService.java | 419736e0fdaa524b114d5f7bf84955e67c2a33a6 | [] | no_license | babyp2pT240/baby_p2pxm | 60885ac640167e12980462378891fea76b0fb265 | da519027251a6f3866e7c42b00a4dea0e1b63f99 | refs/heads/master | 2022-07-09T04:34:46.962574 | 2020-03-02T03:26:56 | 2020-03-02T03:26:56 | 242,270,515 | 0 | 0 | null | 2022-06-21T02:50:39 | 2020-02-22T03:03:55 | JavaScript | UTF-8 | Java | false | false | 4,640 | java | package cn.baby_p2p.demo.service;
import cn.baby_p2p.demo.dao.TBankCardRepository;
import cn.baby_p2p.demo.dao.TUserAccountRepository;
import cn.baby_p2p.demo.dao.TUserInfoRepository;
import cn.baby_p2p.demo.dao.TUserWalletRepository;
import cn.baby_p2p.demo.pojo.TBankCard;
import cn.baby_p2p.demo.pojo.TUserAccount;
i... | [
"a1198957762@163.com"
] | a1198957762@163.com |
0dcb99eeb6dede5b37a831771978e591bcd0fd78 | adceea293c35e411803ecd7426aff098def5a8b0 | /Lesson2/Classwork/For1.java | 525a0b4b29cbeabb8198405a739a1d7dd9e6d91a | [] | no_license | polosbl/Java | 0e36314780e006df2c2b75266e0f8165539740ea | 2a8d481f964c0fa15bf5afa2dbaf2076cab898ef | refs/heads/master | 2023-03-31T22:53:35.406994 | 2021-04-08T19:01:10 | 2021-04-08T19:01:10 | 346,018,621 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 263 | java | package Lesson2.Classwork;
public class For1 {
public static void main(String[] args) {
// Выведите на экран все числа от 20 до 1
for (int i = 20; i > 0; i--) {
System.out.println(i);
}
}
}
| [
"a.gordeichik@invento.by"
] | a.gordeichik@invento.by |
594bcb57332146800410ad9068bffadb416e5e04 | 91901d20dd99ecbac775a06a355f1d2d1450a407 | /core/discoRT/java/edu/wpi/disco/rt/realizer/PrimitiveRealizer.java | 6d0cdb900feb2d7f51a3b209240be6eb768f8d9d | [] | no_license | always-on/always | f9571441b8ad4b18c024393a94ce4781ffc25174 | 75f7a826feeece1d8fa8658326f00e88208fc832 | refs/heads/develop | 2021-01-01T15:51:04.229895 | 2015-12-12T17:44:44 | 2015-12-12T17:44:44 | 6,750,595 | 5 | 0 | null | 2015-07-02T00:42:25 | 2012-11-18T19:55:28 | C++ | UTF-8 | Java | false | false | 772 | java | package edu.wpi.disco.rt.realizer;
import edu.wpi.disco.rt.behavior.PrimitiveBehavior;
/**
* A PrimitiveRealizer's run() method will be called periodically for it to do
* something (if needed). Do not hold the thread. A PrimitiveRealizer should not
* require preconditions on the state of the Resource, i.e., it sho... | [
"rich@wpi.edu"
] | rich@wpi.edu |
ee5b32ffaa27afd07ac4d98aa6b74eee20680a6c | 1680bc3a99e275962dff0f094f83bd987205959b | /CitasMedicas/src/java/pe/com/citasmedicas/dao/MedicoDao.java | 9ca2e4d29b006f6b46210ff62207f2e267411d0a | [] | no_license | richardtrujillo/dewcitamedica | a0e4d482be73bd9c676fe847e5c4eb87c29f8ad4 | 6830c74f2aa85d5a32b9c82c324ad33019acf532 | refs/heads/master | 2021-01-10T05:12:27.129443 | 2010-04-10T20:25:41 | 2010-04-10T20:25:41 | 36,374,320 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,005 | java | package pe.com.citasmedicas.dao;
import java.util.List;
import pe.com.citasmedicas.model.Especialidad;
import pe.com.citasmedicas.model.Medico;
/**
* Esta clase contiene los métodos a ser implementados por las clases de persistencia
* @author dew - Grupo 04
*/
public interface MedicoDao {
/**
* Obtiene u... | [
"kielsaenz@82247850-1900-11df-85bb-b9a83fee2cb1"
] | kielsaenz@82247850-1900-11df-85bb-b9a83fee2cb1 |
3e71ce6090c7548de8e24f792dc3fd98f3acb10a | 2b6f5c78a02805fd7684409c31d3dc3f0a00e81e | /src/main/java/com/shedhack/thread/threadlocal/utility/ThreadLocalUtility.java | 6f3fb00a27261b561df7cae30dc6a04231ba4f45 | [] | no_license | imamchishty/threadlocal-string-utility | 7fccd10b4e0c145261a6a250fe4e29fc1af875d8 | 657380085516173ad9fc62c3d46d054735f57de1 | refs/heads/master | 2021-01-10T09:47:30.258404 | 2016-03-31T11:34:40 | 2016-03-31T11:34:40 | 55,134,516 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 531 | java | package com.shedhack.thread.threadlocal.utility;
/**
* Utility class simplifies the manner in which ThreadLocal (of String payload types) are stored, accessed and cleared.
*
* @author imamchishty
*/
public class ThreadLocalUtility {
private static final ThreadLocal<String> local = new ThreadLocal<>();
pu... | [
"imam.chishty@emc.com"
] | imam.chishty@emc.com |
f5a0db0820f5679070bc5cc6e8ab59f87a1c2127 | f8d41d7bab69c60ca335f32e11d7b6fbff24d698 | /java/src/test/java/com/thoughtworks/refactoring/pullUpConstructorBody/ManagerTest.java | 3a43f2598f16abb7f6e3ec9f2f46d2c1d9a832b3 | [
"MIT"
] | permissive | sheltonsuen/refactoring | 872f6bdb972f5283ff5ac0c0a59949c1817d03ee | 48dbe45f031bb490a1104b0e6090e7b1f395188f | refs/heads/master | 2020-04-01T10:30:51.669443 | 2018-10-25T13:58:09 | 2018-10-25T13:58:09 | 153,120,759 | 0 | 0 | MIT | 2018-10-15T13:46:13 | 2018-10-15T13:46:12 | null | UTF-8 | Java | false | false | 372 | java | package com.thoughtworks.refactoring.pullUpConstructorBody;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class ManagerTest {
@Test
public void descriptionOfManager() throws Exception {
Manager manager = new Manager("manager", "b", 1);
assertEquals(manager.descri... | [
"634725546@qq.com"
] | 634725546@qq.com |
4c46bc3027069c88b81f985f44c89f061e9ff2f5 | 16ed72e751dc1393912eb2ef3a830033831862c2 | /msi/src/main/java/dk/dma/enav/services/s124/views/ChartAffected.java | 3964a6ccf4db24ef44799d91291dc229e84c4a69 | [
"Apache-2.0"
] | permissive | maritime-web/Enav-Services | 43126ac447e82a03834cb49b283abf27432b6de0 | e0329646b924d74b7dc45dd2ca21a6ebdde31d9d | refs/heads/master | 2022-12-17T17:39:39.004132 | 2020-04-20T11:36:38 | 2020-04-20T11:36:38 | 50,661,158 | 1 | 1 | Apache-2.0 | 2022-12-05T23:33:40 | 2016-01-29T12:30:32 | Java | UTF-8 | Java | false | false | 939 | java | /* Copyright (c) 2011 Danish Maritime Authority.
*
* 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... | [
"steen@lundogbendsen.dk"
] | steen@lundogbendsen.dk |
d7d348b15ba46e1eb33dd5df9e96cfd06a852408 | ff0d01db50bf6171fd3dbdcf59d60a519b9c8a0f | /src/main/java/fr/treeptik/centreformation/dao/StagiaireDAO.java | 1518f5754250ded83bbb85b251016760debb7784 | [] | no_license | ericterrade/CentreFormation | 445b7117379479ebef563ac917d3f60f6a78b8a9 | 56da32c0669372ee72052a50c948272c7412cac9 | refs/heads/master | 2016-08-11T07:21:14.212043 | 2015-05-25T16:25:03 | 2015-05-25T16:25:03 | 36,240,623 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 343 | java | package fr.treeptik.centreformation.dao;
import java.util.List;
import fr.treeptik.centreformation.model.Stagiaire;
import fr.treeptik.centreformation.model.StagiaireDTO;
import fr.treeptik.centreformation.dao.GenericDAO;
public interface StagiaireDAO extends GenericDAO<Stagiaire, Integer>{
List<StagiaireDTO> fin... | [
"eric.terrade@gmail.com"
] | eric.terrade@gmail.com |
2f0922fe978e4845423db3600d83cc7e39bddb40 | 3bd5a26397d8b1976dbb3d28c9d36aa872779fbb | /level17/lesson10/home10/Solution.java | 10cf0368005ae1102c3da7e557ff5556c582ed85 | [] | no_license | tumaykin/javarush_tasks | f18452cddb5e49bbc0e8b9acb7900e285ff03235 | 9a7c32ee8f50d5dc727c91f564c864090f737ab5 | refs/heads/master | 2020-09-24T00:19:32.266064 | 2016-08-30T16:12:16 | 2016-08-30T16:12:16 | 66,955,572 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,851 | java | package com.javarush.test.level17.lesson10.home10;
/* Посчитаем
1. Сделай так, чтобы результат успел посчитаться для всех элементов массива values НЕ используя Thread.sleep
2. Исправь synchronized блок так, чтобы массив values заполнился значением 1
*/
public class Solution {
public static void main(String[] args... | [
"noreply@github.com"
] | tumaykin.noreply@github.com |
f91ab786f17e0ebe6007acdb4a77f34bfcf2a061 | 5e34c548f8bbf67f0eb1325b6c41d0f96dd02003 | /dataset/smallest_dedc2a7c_000/mutations/106/smallest_dedc2a7c_000.java | a4a56c92a9fb163524b67a9d3d2b881fbe37fe1e | [] | no_license | mou23/ComFix | 380cd09d9d7e8ec9b15fd826709bfd0e78f02abc | ba9de0b6d5ea816eae070a9549912798031b137f | refs/heads/master | 2021-07-09T15:13:06.224031 | 2020-03-10T18:22:56 | 2020-03-10T18:22:56 | 196,382,660 | 1 | 1 | null | 2020-10-13T20:15:55 | 2019-07-11T11:37:17 | Java | UTF-8 | Java | false | false | 2,269 | java | package introclassJava;
class IntObj {
public int value;
public IntObj () {
} public IntObj (int i) {
value = i;
}
}
class FloatObj {
public float value;
public FloatObj () {
} public FloatObj (float i) {
value = i;
}
}
class LongObj {
public long value;
public... | [
"bsse0731@iit.du.ac.bd"
] | bsse0731@iit.du.ac.bd |
c66e6f6a8fecb6ae42115083ddb60d49ef1d739f | a40089046c5ec8397c8bf8c50619a8927ab3fe3f | /workspace/spring-boot-data-jpa/src/main/java/com/curso/springboot/jpa/models/entity/UserEntity.java | 858d850c94c1a7d21c217242b24675c12172c089 | [] | no_license | junglans/curso-spring | 7024af19cbe26b2bb256f572c6879d33448ec1e9 | bf1e37d2304bcffacf2639e4faf3ccaf2dbb11f7 | refs/heads/master | 2021-07-13T06:41:42.244989 | 2019-03-13T13:24:31 | 2019-03-13T13:24:31 | 149,016,372 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,609 | java | package com.curso.springboot.jpa.models.entity;
import java.io.Serializable;
import java.util.List;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.ConstraintMode;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.ForeignKey;
... | [
"jf.jimenez@mnemo.com"
] | jf.jimenez@mnemo.com |
67f79b8df885ace10335e24bad94792d49267161 | 01b56a5840baddc1eba73940d5ee3e2b98c02006 | /app/src/main/java/com/example/discussgo/firstscreen/view/fragments/RegisterFragment.java | f0f0dcb3992875d04a4b876a2ffc3c8c272db620 | [] | no_license | Sernrbia/DiscussGo-final | a45608734e0449b25259918acabc6361f3c9c4af | 77ad537541f6c84c6d4a7997b305168419d8341d | refs/heads/master | 2020-06-28T17:31:53.620503 | 2019-08-10T00:50:01 | 2019-08-10T00:50:01 | 200,297,529 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,857 | java | package com.example.discussgo.firstscreen.view.fragments;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import androidx.fragment.app.Fragment;
import androidx.lifecycle.ViewModelProvi... | [
"dejan.randjelovic.016@gmail.com"
] | dejan.randjelovic.016@gmail.com |
f5aec46499213d4bc4eff0edb8ec37aa6d256146 | dbd5cc67713c20cea78040615dc19a2a9c4d9fcb | /src/main/java/com/spotify/client/demo/model/Example.java | ea6ffb4cf2e0f1b2b7325dc0b93dbb0d5ef75d11 | [] | no_license | adamcze4/SpringBoot_Spotify_Client_with_MongoDB | e812cf9bd1849de0083e74cc012c9fa3e80aacde | 8e4b68d90cb8276b7dc581fa26a5327b8c5e28be | refs/heads/master | 2022-10-08T02:03:00.844976 | 2020-06-10T11:08:17 | 2020-06-10T11:08:17 | 271,253,575 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,151 | java | package com.spotify.client.demo.model;
import java.util.HashMap;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.faster... | [
"adamcze4@gmail.com"
] | adamcze4@gmail.com |
e06207b9a66c9fe95fb39ac2a46fe95a59fa96a6 | 1977757fa8a337e3346795cfb1ceca9ae95b97fb | /src/day44/HouseBuilder.java | b74d401880170f0c1d72c1bf7451bea89d874ff5 | [] | no_license | Tarana82/MyFirstProject | fcb3e81c3659e9f846a71c7856fcf4ba914e15ad | 6fe9bb5f1d90812f6c2e5ef68ba275435a7cabce | refs/heads/master | 2021-02-11T16:22:21.801471 | 2020-03-03T03:33:39 | 2020-03-03T03:33:39 | 244,509,280 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 505 | java | package day44;
public class HouseBuilder {
public static void main(String[] args) {
CyberHouse.showNeighbourhoodName();
CyberHouse c1 = new CyberHouse("Vintage", 101);
c1.showAllInfo();
CyberHouse c2 = new CyberHouse("Classic", 102);
c2.showAllInfo();
//System.ou... | [
"tahmadova1982@gmail.com"
] | tahmadova1982@gmail.com |
db26b58a4da4429255fa0cc1c70d24a33a582f9b | 28c99d6b07a8683bed97c8d2190648d5b9dca757 | /src/main/java/io/github/wispoffates/minecraft/tktowns/responses/OutpostModificationResponse.java | c578c5a992a8138be8d59baaf460893a4f828b73 | [] | no_license | wispoffates/minecraft.tktowns | b0e0ecc5f347b1d0c497115119f9b2ffedce8595 | c68bb14629a865213cbbcaaf2d30fae26882cffa | refs/heads/master | 2016-09-06T14:38:49.870049 | 2015-05-21T03:23:20 | 2015-05-21T03:23:20 | 24,813,285 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 433 | java | package io.github.wispoffates.minecraft.tktowns.responses;
import io.github.wispoffates.minecraft.tktowns.api.impl.Outpost;
public class OutpostModificationResponse extends GenericModificationResponse {
protected Outpost outpost;
public OutpostModificationResponse(String message, Outpost outpost, boolean success)... | [
"fayted@gmail.com"
] | fayted@gmail.com |
3c9ba1f190bb80b05efa2b9a1edb7c742054de3b | d16ff20568c9c82dd9f821332cdffdeab01b97b3 | /code/src/org/bits/jcr/actors/Developer.java | e3422d3bccccbd5d3869cad4c46a4503633860cd | [] | no_license | shubbansal27/ReviewIt | b4966df019b5ddf6e96c7bd0ca795c8af1da29dd | a6585cef727227e20f3a79222caddb4e7cefc8fa | refs/heads/main | 2023-03-07T04:05:54.359383 | 2021-02-25T17:25:48 | 2021-02-25T17:25:48 | 342,323,445 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 443 | java | package org.bits.jcr.actors;
import java.io.*;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class Developer extends HttpServlet {
protected void doPost(HttpServletRequ... | [
"shubansa@cisco.com"
] | shubansa@cisco.com |
10cb8ac82c16c6bf9ad174d1a571f1d7648c97b7 | 487cf95b2537c14c205fd55f5aa16b19bd4d0c69 | /src/main/java/net/shopxx/template/directive/PaginationDirective.java | 58bf801a36203d80c098e5946372607a711e51fa | [] | no_license | heyewei/mall1 | 1953d777fc7a0a59037e7e819b732c05f77957b0 | 01b5b49289757a10bbb5d3dea25b114762a2c783 | refs/heads/develop | 2021-07-10T17:58:08.819438 | 2017-10-13T02:06:36 | 2017-10-13T02:06:36 | 107,208,648 | 1 | 1 | null | 2017-10-17T02:38:49 | 2017-10-17T02:38:49 | null | UTF-8 | Java | false | false | 5,320 | java | /*
* Copyright 2005-2017 shopxx.net. All rights reserved.
* Support: http://www.shopxx.net
* License: http://www.shopxx.net/license
*/
package net.shopxx.template.directive;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.sp... | [
"121323188@qq.com"
] | 121323188@qq.com |
458ee11c6d16fb00dd91d70a8705d59b8460ae01 | 20867edd60d647d3dc983bb4599ab55f7a417823 | /app/src/main/java/app/roque/moviesfeed/http/MoviesApiService.java | ea3644089be3ec55bb953c496888d4f883218026 | [] | no_license | kevingroque/Movies-Feed-Mvp-Dagger2-RxJava-Retrofit | 3fc72a9bd289dac5f1d449ceb689596047852df9 | d860ab06a2403870feda7c356dc75dc47aa22ff9 | refs/heads/master | 2020-08-05T03:41:25.823211 | 2019-10-02T15:50:25 | 2019-10-02T15:50:25 | 212,380,903 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 362 | java | package app.roque.moviesfeed.http;
import app.roque.moviesfeed.http.apiModel.TopMoviesRated;
import io.reactivex.Observable;
import retrofit2.http.GET;
import retrofit2.http.Query;
public interface MoviesApiService {
@GET("top_rated")
Observable<TopMoviesRated> getTopMoviesRated(/*@Query("api_key") String ap... | [
"keving.roque.huich@gmail.com"
] | keving.roque.huich@gmail.com |
c578661adfe5fccdc754424dc7e5f14ab21b583f | ee8c16c1474e161359f2cb77b0105f9ded8068d1 | /webrtc-demo/webrtc-demo-api/src/main/java/dev/onvoid/webrtc/demo/presenter/DesktopCaptureSettingsPresenter.java | 7830ab7b2dfcd901638f20cf6b2acc058f7538df | [
"BSD-3-Clause",
"LicenseRef-scancode-html5",
"DOC",
"Apache-2.0"
] | permissive | m-sobieszek/webrtc-java | b46fa47a4e1cd7b8e5992322311562a31eeabdee | 406336052da1bc079ca62577a3fc845e22e215c1 | refs/heads/master | 2022-08-22T12:32:28.509935 | 2022-06-15T11:47:50 | 2022-06-15T11:47:50 | 230,241,997 | 0 | 0 | Apache-2.0 | 2019-12-26T10:12:11 | 2019-12-26T10:12:10 | null | UTF-8 | Java | false | false | 1,266 | java | /*
* Copyright 2019 Alex Andres
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... | [
"andres.alex@protonmail.com"
] | andres.alex@protonmail.com |
52ffe5c9038f0ed7f75159cfac6f3b291fd16883 | c2598138d8c97d7be2b80b50c5aa4313be70e0ac | /src/GamePanel.java | bfd44b7d091eb206e1124eb0a98a76dc4e757e93 | [] | no_license | mkongani/snakegame-updated | 7cd3d0ddffbaa9b0c0c805ae41cbb30972f4c307 | 881519eb12b9b705c42662222c65bb4763c5ee86 | refs/heads/main | 2023-08-19T17:39:49.068038 | 2021-10-25T02:34:45 | 2021-10-25T02:34:45 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,104 | java |
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.GridLayout;
import java.awt.Point;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.util.ArrayList;
import java.util.Ra... | [
"noreply@github.com"
] | mkongani.noreply@github.com |
371bbc17cad5d1541196439ab6c39f84243a43f5 | b347249be3422c10d43b027bce87be7c37031325 | /ModuloPagamento2/src/com/up/pagamento/endpoint/PagamentoEndPointImpl.java | 41a6fca7a5bcae726c4b541c647e7b5cecedf91a | [] | no_license | lucaswamser/ecommerce | dc1b3613f0790713a14862ce2c23a8cc145c752d | a0f392fc29fc42ed5d7cc4d8f2a49a2adc3b1613 | refs/heads/master | 2021-01-20T18:16:26.155035 | 2016-11-19T17:56:21 | 2016-11-19T17:56:21 | 61,677,260 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 796 | java | package com.up.pagamento.endpoint;
import javax.jws.WebMethod;
import javax.jws.WebService;
import com.up.pagamento.dao.PagamentoDaoImpl;
import com.up.pagamento.domain.Pagamento;
import com.up.pagamento.services.PagamentoService;
import com.up.pagamento.services.PagamentoServiceImpl;
@WebService(endpointInterface =... | [
"lucas@lucas-Aspire-E1-571"
] | lucas@lucas-Aspire-E1-571 |
8b39b144ffd70b91184167885e83fefbf176ecc9 | 815c18b4fa82e2ef7a15b661eb93bab8085b2257 | /cxx-checks/src/test/java/org/sonar/cxx/checks/LineRegularExpressionCheckTest.java | a30af45a4643e980156302f35c8dc2ba68b97d2d | [] | no_license | FrontEndART/sonar-cxx | 12b2ae22ad0bb802acade321a7c7e5e8654f8765 | 65b76a9db7851f90bded2cf71be6701b5b6c1c78 | refs/heads/master | 2021-01-16T20:34:52.236232 | 2016-06-10T08:26:21 | 2016-06-10T09:39:31 | 60,832,193 | 0 | 0 | null | 2016-06-10T07:51:49 | 2016-06-10T07:51:49 | null | UTF-8 | Java | false | false | 4,097 | java | /*
* Sonar C++ Plugin (Community)
* Copyright (C) 2011 Waleri Enns and CONTACT Software GmbH
* sonarqube@googlegroups.com
*
* This program 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; e... | [
"guenter.wirth@etas.com"
] | guenter.wirth@etas.com |
415b76a2687ef75bd54ee3f946dee59b95ac9ac7 | cc9925d381bb8dda2e89fbd2c50be9eaf7df70bc | /app/src/com/trovebox/android/app/ui/adapter/MultiSelectTagsAdapter.java | 54d3d3b09066dca107989438fc978d329b26a7cf | [
"Apache-2.0"
] | permissive | photo/mobile-android | 91e5ad5d93c6482dfaf00b0c8c59d58a314d9b87 | 24d1d105629403ec6fc19aa1f3cb4aa45c80d391 | refs/heads/master | 2021-01-15T22:29:16.633557 | 2020-10-01T07:04:11 | 2020-10-01T07:04:11 | 2,031,128 | 29 | 23 | Apache-2.0 | 2020-10-01T07:04:12 | 2011-07-11T15:49:24 | Java | UTF-8 | Java | false | false | 4,087 | java |
package com.trovebox.android.app.ui.adapter;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
... | [
"httpdispatch@gmail.com"
] | httpdispatch@gmail.com |
91875a7caa82d02d983d5196df3de1fdafbfc234 | da62f2ca68ea688d45611bb745a86ae76b409348 | /containerkit/instrument/client/src/main/java/org/apache/excalibur/instrument/client/InstrumentManagerTreeModel.java | b8b0943f7c3e1394d952a6c94a7ed5ebf17d368a | [
"Apache-2.0"
] | permissive | eva-xuyen/excalibur | 34dbf26dbd6e615dd9f04ced77580e5751a45401 | 4b5bcb6c21d998ddea41b0e3ebdbb2c1f8662c54 | refs/heads/master | 2021-01-23T03:04:14.441013 | 2015-03-26T02:45:49 | 2015-03-26T02:45:49 | 32,907,024 | 1 | 2 | null | null | null | null | UTF-8 | Java | false | false | 41,337 | 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... | [
"root@mycompany.com"
] | root@mycompany.com |
54080a4f2d42f5f0b458c11e89c48148e285b921 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/8/8_aff5236124995d294779dfd68b47b8e5164fefb2/ASListener/8_aff5236124995d294779dfd68b47b8e5164fefb2_ASListener_t.java | 187e1458936b09c8167ab139db24e6ccfb944240 | [] | 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 | 36,793 | java | package com.turt2live.antishare;
import java.io.BufferedWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.GameMode;
import org.bukkit.Location;
impo... | [
"yuzhongxing88@gmail.com"
] | yuzhongxing88@gmail.com |
ec90176b3fae803e113e47777ed965b7838d7be4 | 27f31c3ef8fbd6ff4463cafc92768d6ee2b2900d | /Infothek_tmj/src/li/tmj/db/sql/DBConnect.java | bf544bb1657ac1a5f5e25a5b5e2c2c3af4f5939f | [] | no_license | tmjGit/Infothek | a1002b121ce8eefe2128732e238e59aed2157224 | 20c1df10f2421a2ccc8da599deb2a943a971449d | refs/heads/master | 2020-04-07T10:57:26.104334 | 2018-11-20T00:36:07 | 2018-11-20T00:36:07 | 158,306,908 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,930 | java | //package li.tmj.db.sql;
//
//import java.sql.Connection;
//import java.sql.DriverManager;
//import java.sql.SQLException;
//import li.tmj.app.Application;
//import li.tmj.db.exception.DBConnectException;
//import org.pmw.tinylog.Logger;
//
////public final class DBConnect {//Singleton
//public final class DBConnect {
... | [
"git@tmj.li"
] | git@tmj.li |
2000868d6f45ab4051ea11a43d3d786131d18ba1 | 35b49d6ff547ef5062c83471da9f5183d86fde1b | /src/main/java/com/company/AlgorithmFactory.java | 5725bac068deb2074359f5bfea3c55f6f8519856 | [] | no_license | FernandoES/Master-thesis | 26bf6a13dab2d0c362c9c15abd8710c6ed1a900c | b64a762fadc053526fbf191126771e232223a1e9 | refs/heads/master | 2020-03-30T10:13:32.165006 | 2018-12-01T23:20:41 | 2018-12-01T23:20:41 | 151,082,526 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,644 | java | package com.company;
import java.lang.reflect.*;
import java.util.*;
import com.company.algorithms.*;
public class AlgorithmFactory {
public Algorithm getAlgorithm(String algorithmName, int numberOfGroups){
Algorithm algorithm = selectAlgorithm(algorithmName);
algorithm.NUMBER_OF_GROUPS = numbe... | [
"fernan_1989@hotmail.com"
] | fernan_1989@hotmail.com |
7a7c1d8b793c04a33854a4f939e6c7d80ee0eb97 | ce07325c9ad45b771849ebb6d82ad1b0c1bf677d | /src/libro/cap02/excepciones/Aplicacion.java | eead9efc24fd529de953e38909e79ca11067845f | [] | no_license | abrahan0108/JavaAFondo | 88c45d1fe19b7e9315c26e9c531e476f8cb9f74f | 886770013843196766a6790dd693f600090909ec | refs/heads/master | 2020-06-22T19:14:24.119764 | 2019-07-19T14:26:20 | 2019-07-19T14:26:20 | 197,785,473 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,161 | java | package libro.cap02.excepciones;
import java.util.ResourceBundle;
public class Aplicacion {
public Usuario login(String usrname, String password) throws ErrorFisicoException {
try {
// Se lee el archivo de propiedades que debe estar ubicado en el
// package root
ResourceBundle rb = ResourceB... | [
"f8abrahan@gmail.com"
] | f8abrahan@gmail.com |
e5f4c56be80cb83ba81c8f42dd50fc6524ec4678 | 599fd53841c8c3e25c2801108ff356f8cc2a2cab | /M101J/src/main/java/com/home/mongodb/m101j/crud/FindTest.java | 583206e694b67d347f14139b4944179b7bff002c | [] | no_license | DineshPatri/MongoDB | d485274a9746ad0ca3878007626afc849b9b83eb | cb94dcf6faafb825261256057022221dfed9223d | refs/heads/master | 2020-04-08T07:08:07.115403 | 2018-12-09T18:09:14 | 2018-12-09T18:09:14 | 159,128,207 | 0 | 0 | null | 2018-12-09T18:09:15 | 2018-11-26T07:28:49 | null | UTF-8 | Java | false | false | 2,234 | java | /*
* Copyright 2015 MongoDB, 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 applicable law or agreed to ... | [
"DP052402@cerner.net"
] | DP052402@cerner.net |
24c17799879d6d2dede6b02eeb410e58348c4069 | eb349e08462a1363237054d3bf522ac9c68a8238 | /src/FizzBuzz.java | 914e21f8e3eb262c917474d59b50c5aa4562da34 | [] | no_license | Miss-qi/week_2nd | 67a38ba28cf948ba1121fc07a7af9c8c26d4216f | 9e5d86ecf878f41a93f565358c0c1e63335851aa | refs/heads/master | 2021-01-01T05:54:23.731992 | 2017-07-15T07:48:09 | 2017-07-15T07:48:09 | 97,300,591 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 518 | java | public class FizzBuzz {
public static void main(String[] args) {
fizzBuzz();
}
public static void fizzBuzz() {
for (int i = 1; i <= 15; i++) {
if (i % 3 == 0 && i % 5 == 0) {
System.out.println("FizzBuzz");
} else if (i % 3 == 0) {
Sys... | [
"1370322806@qq.com"
] | 1370322806@qq.com |
cb52ff6cbfb7209deddf266004ac125af3bd5f23 | fc435f02a7fe09497f722ca0fce77d16dcbd0dc6 | /src/by/it/kudelich/lesson05/TaskB2.java | aac59fa7d8851dca96d02281d5bfcee696a7cf98 | [] | no_license | DaryaLoban/cs2018-01-08 | 28b1f5c9301c3b1d0f6ad50393d9334f8b6215a6 | 4d3e626861d9ed3f00c8e48afd4272e379a3344c | refs/heads/master | 2021-05-13T20:49:34.129814 | 2018-01-21T23:05:11 | 2018-01-21T23:05:11 | 116,920,507 | 0 | 0 | null | 2018-01-10T06:58:55 | 2018-01-10T06:58:55 | null | UTF-8 | Java | false | false | 1,501 | java | package by.it.kudelich.lesson05;
/*
Один большой массив и два маленьких
1. Создать массив m на 20 целых чисел.
2. Ввести в него значения с клавиатуры.
3. Создать два массива a и b на 10 целых чисел каждый.
4. Скопировать большой массив в два маленьких: половину чисел в первый маленький,
вторую половину во второй м... | [
"kudeliches@gmail.com"
] | kudeliches@gmail.com |
8d2a9dbc6623db17ac01a89a5c7294ba79560a78 | 162fe280496f033542297df6a2b41292644262ee | /fresh-fruits-goods-service/src/main/java/com/fresh/fruits/service/impl/ItemServiceImpl.java | 394c034789ffecf7487b0ec1d67ce8d1f43b3e75 | [] | no_license | AJ990716/fresh-fruits | fc6e807f6d95d7785b0bf11ead899738c05925a7 | d4716a35c5975c5aaf3adae452409aabb7d0e7ad | refs/heads/master | 2023-06-17T09:35:29.879796 | 2021-07-22T04:15:17 | 2021-07-22T04:15:17 | 388,309,612 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 545 | java | package com.fresh.fruits.service.impl;
import org.springframework.stereotype.Service;
import java.util.Map;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.fresh.frui... | [
"319067125@qq.com"
] | 319067125@qq.com |
33df97ed6a4893e516208f0f1e24405787b9834d | ea2917b369d3bf693b0e475e8aecc22a2acf959a | /src/java/controle/UsuarioWS.java | 8684b46d6343d8ca88e6bc8af2b412fa774ddb8c | [] | no_license | renataeb/TCC | 16730b391363966880243791e2c883a6c750f167 | 5cc1d92b9b987e2b9a439c9cdc337d8b822e5e73 | refs/heads/master | 2020-08-10T21:11:53.767688 | 2019-10-11T11:48:37 | 2019-10-11T11:48:37 | 214,421,598 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 6,331 | 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 controle;
import dao.AdminDAO;
import dao.UsuarioDAO;
import java.io.IOException;
import java.io.PrintWriter;
impor... | [
"Aluno@NTI-HP"
] | Aluno@NTI-HP |
b45a4cd67a41419a91d30b62132583c4d94860a1 | 9c90b9d63b8e9d3dc1d7c3bd9be9b555d75211aa | /src/main/java/se/inera/fmu/domain/model/eavrop/note/Note.java | 37c7d3fbcac40faed796d74305271517f6ca432c | [] | no_license | qwazer/fmu | bc2228893a348f1d12e32be9a9ea93ccb14b8809 | 1bdd65b289484303532c9b126899253f61a82bde | refs/heads/master | 2020-12-26T04:37:49.051002 | 2014-10-03T07:56:27 | 2014-10-03T07:56:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,080 | java | package se.inera.fmu.domain.model.eavrop.note;
import java.io.Serializable;
import java.util.UUID;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import lombok.ToString;
import se.inera.fmu.domain.shared.AbstractBaseEntity;
import se.ine... | [
"rickard.hjortling@r2m.se"
] | rickard.hjortling@r2m.se |
e7a8fb4778c23889e63ba7412782da045fce8c32 | e6fff39054fc394395d38c5bcd4c3275b3bbdef5 | /VisionPlusX/src/com/sv/visionplus/transaction/grn/GrnForm.java | 85217eda7263156e9c3969e8670e610fbd65df06 | [] | no_license | supervisiontec/Specs-Shop---Vision-Plus | 0ea7111046d49b9631a9e574137822f429e95de4 | 5a76f10dba14d0befeb6a06f67c6a984b552684a | refs/heads/master | 2023-03-06T09:40:48.508328 | 2021-02-17T19:50:54 | 2021-02-17T19:50:54 | 107,935,028 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 754 | java | package com.sv.visionplus.transaction.grn;
import com.sv.visionplus.base.AbstractObjectCreator;
import com.sv.visionplus.base.transaction.AbstractTransactionForm;
import com.sv.visionplus.base.transaction.AbstractTransactionFormService;
import com.sv.visionplus.transaction.grn.model.GrnMix;
public class GrnForm
ext... | [
"chamara.kaza@gmail.com"
] | chamara.kaza@gmail.com |
8993921a20bd56270ae09507ce6cec77e2129953 | 3a01702ca03c11917da22bff39d7d9acbe0aa302 | /src/main/java/com/ceeses/dao/mapper/LnskfsxMapper.java | 3f9806542e63e727e79ad136ce6bcb7b209d6a6f | [] | no_license | collegeApply/ceeses | b36bbd2c74b22aa13abfeca1bc85663240b0afbc | c43a02f3506c6354a6fedb4a72a5be2af7fe53d9 | refs/heads/master | 2021-01-23T16:19:28.271686 | 2017-06-29T16:56:24 | 2017-06-29T16:56:24 | 93,291,605 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 224 | java | package com.ceeses.dao.mapper;
import com.ceeses.model.Lnskfsx;
import java.util.List;
/**
* Created by zhaoshan on 2017/6/4.
*/
public interface LnskfsxMapper {
public List<Lnskfsx> queryLnskfsx(Integer year);
}
| [
"15572760238@163.com"
] | 15572760238@163.com |
afe7889ffd523aaa1037fae49ff3f0ce09d56295 | 45d401809e5272a4605ab77fc5af28c279e01b95 | /src/main/java/com/msdn/generator/service/FreemarkerService.java | 46b2d99856d80b60bba06ef8d5e4698c77a5b1b9 | [] | no_license | fmy1993/mybatisgenerator | 721ae0c661eb99e5e044cc0788869dc3e8103785 | b22404deaae7fdd38ba9f0ae08ba5c3f62b04730 | refs/heads/master | 2023-04-19T14:15:40.021681 | 2021-05-15T02:28:29 | 2021-05-15T02:28:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,511 | java | package com.msdn.generator.service;
import com.msdn.generator.entity.Config;
import com.msdn.generator.entity.GenerateParameter;
import com.msdn.generator.utils.StringUtils;
import freemarker.cache.CacheStorage;
import freemarker.cache.TemplateLoader;
import freemarker.template.Configuration;
import freemarker.templat... | [
"hkyy521@163.com"
] | hkyy521@163.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.