blob_id stringlengths 40 40 | __id__ int64 225 39,780B | directory_id stringlengths 40 40 | path stringlengths 6 313 | content_id stringlengths 40 40 | detected_licenses list | license_type stringclasses 2
values | repo_name stringlengths 6 132 | repo_url stringlengths 25 151 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 70 | visit_date timestamp[ns] | revision_date timestamp[ns] | committer_date timestamp[ns] | github_id int64 7.28k 689M ⌀ | star_events_count int64 0 131k | fork_events_count int64 0 48k | gha_license_id stringclasses 23
values | gha_fork bool 2
classes | gha_event_created_at timestamp[ns] | gha_created_at timestamp[ns] | gha_updated_at timestamp[ns] | gha_pushed_at timestamp[ns] | gha_size int64 0 40.4M ⌀ | gha_stargazers_count int32 0 112k ⌀ | gha_forks_count int32 0 39.4k ⌀ | gha_open_issues_count int32 0 11k ⌀ | gha_language stringlengths 1 21 ⌀ | gha_archived bool 2
classes | gha_disabled bool 1
class | content stringlengths 7 4.37M | src_encoding stringlengths 3 16 | language stringclasses 1
value | length_bytes int64 7 4.37M | extension stringclasses 24
values | filename stringlengths 4 174 | language_id stringclasses 1
value | entities list | contaminating_dataset stringclasses 0
values | malware_signatures list | redacted_content stringlengths 7 4.37M | redacted_length_bytes int64 7 4.37M | alphanum_fraction float32 0.25 0.94 | alpha_fraction float32 0.25 0.94 | num_lines int32 1 84k | avg_line_length float32 0.76 99.9 | std_line_length float32 0 220 | max_line_length int32 5 998 | is_vendor bool 2
classes | is_generated bool 1
class | max_hex_length int32 0 319 | hex_fraction float32 0 0.38 | max_unicode_length int32 0 408 | unicode_fraction float32 0 0.36 | max_base64_length int32 0 506 | base64_fraction float32 0 0.5 | avg_csv_sep_count float32 0 4 | is_autogen_header bool 1
class | is_empty_html bool 1
class | shard stringclasses 16
values |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
862ed75ce0a8da627999494673c348eccca3040a | 34,265,249,118,682 | 4179f663c3c4190f93b87cfe3f065250623d163d | /JobPortalMVCBoot/src/main/java/com/niit/recruiter/repository/EducationRepo.java | df626698d421b6d89fa1d69973435dce5ffd48fb | [] | no_license | deepanshu102/ForAngularProject | https://github.com/deepanshu102/ForAngularProject | 2496af14e15a7f3e52102019a8a6fcceafde645d | 93b1a35b772c44bf24a1cbc9557173e182eda2c3 | refs/heads/master | 2022-04-19T15:07:28.837000 | 2020-04-18T15:07:14 | 2020-04-18T15:07:14 | 256,782,302 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.niit.recruiter.repository;
import java.util.List;
import org.springframework.data.jpa.repository.JpaRepository;
import com.niit.recruiter.model.Education;
import com.niit.recruiter.model.JobSeeker;
public interface EducationRepo extends JpaRepository<Education, Integer> {
List<Education> findByJobSeek... | UTF-8 | Java | 433 | java | EducationRepo.java | Java | [] | null | [] | package com.niit.recruiter.repository;
import java.util.List;
import org.springframework.data.jpa.repository.JpaRepository;
import com.niit.recruiter.model.Education;
import com.niit.recruiter.model.JobSeeker;
public interface EducationRepo extends JpaRepository<Education, Integer> {
List<Education> findByJobSeek... | 433 | 0.836028 | 0.836028 | 16 | 26.0625 | 29.084938 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.625 | false | false | 13 |
0d17456edf9bd3734b979af44d4108e3b51e9c9b | 36,197,984,386,938 | f5b8b37f0745c6981a4cddd68bb4fd9e1754f6b1 | /JAVA/SwapNodeInPair.java | 8fb08db1bd1fa8f568478aef9ef76b9b831468d4 | [
"MIT"
] | permissive | onedaygotosky/leetcode | https://github.com/onedaygotosky/leetcode | bc36497b2ad9ae23d0114cb1065dfc462db22ddf | c28c0a50300a28262ffcb7fe4f12d028d80d0f14 | refs/heads/master | 2018-12-31T21:54:25.202000 | 2015-09-03T12:10:53 | 2015-09-03T12:10:53 | 35,327,498 | 4 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
//从头开始交换链表相邻的结点
//必须就是交换结点,不能是交换结点的val
//要画图才比较好理解
public class Solution {
public ListNode swapPairs(ListNode head) {
if(head == null)
return... | UTF-8 | Java | 1,407 | java | SwapNodeInPair.java | Java | [] | null | [] | /**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
//从头开始交换链表相邻的结点
//必须就是交换结点,不能是交换结点的val
//要画图才比较好理解
public class Solution {
public ListNode swapPairs(ListNode head) {
if(head == null)
return... | 1,407 | 0.46722 | 0.46722 | 52 | 22.192308 | 10.19434 | 46 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.480769 | false | false | 13 |
e1a0673f0eb21f307747dcb412402ea2ab6e0340 | 9,904,194,621,068 | fa9f3327c9ad529c3cd502855023650f90dc9ab0 | /src/wsj/dp/singleton/SingletonSix.java | 9bd0d5636037a863dfa5564fbbcda78f1e3f7576 | [] | no_license | RichardFrankios/DesignPatternLearning | https://github.com/RichardFrankios/DesignPatternLearning | b12d8a296b8168654ffebdb99538336cb6019004 | b608a5cd8a6dee4b124211cc041333050d15510e | refs/heads/master | 2021-01-18T15:42:55.471000 | 2017-03-30T10:29:18 | 2017-03-30T10:29:18 | 86,676,219 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package wsj.dp.singleton;
/**
* @author wsj
* 枚举方式实现单例.自动支持序列化机制.
*/
public enum SingletonSix {
instance;
// 其他方法.
}
| UTF-8 | Java | 165 | java | SingletonSix.java | Java | [
{
"context": "package wsj.dp.singleton;\n\n/**\n * @author wsj\n * 枚举方式实现单例.自动支持序列化机制.\n */\npublic enum SingletonS",
"end": 45,
"score": 0.9994840621948242,
"start": 42,
"tag": "USERNAME",
"value": "wsj"
}
] | null | [] | package wsj.dp.singleton;
/**
* @author wsj
* 枚举方式实现单例.自动支持序列化机制.
*/
public enum SingletonSix {
instance;
// 其他方法.
}
| 165 | 0.658537 | 0.658537 | 10 | 11.3 | 9.508417 | 26 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 13 |
923fc4e476ceb7f22581010754d34addb04b1f6b | 23,261,542,920,107 | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/33/33_95a36ec86318e98cb3ee9653cdbea0ec4c1e8c3b/RadarImageSyncAndGridCalculationTask/33_95a36ec86318e98cb3ee9653cdbea0ec4c1e8c3b_RadarImageSyncAndGridCalculationTask_t.java | 3ec7d7cf4e1189b3272e198c031870548c586a55 | [] | no_license | zhongxingyu/Seer | https://github.com/zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516000 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | false | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | 2023-06-21T00:53:27 | 2023-06-22T07:55:57 | 2,849,868 | 2 | 2 | 0 | null | false | false | package it.giacomos.android.osmer.service;
import android.os.AsyncTask;
import android.util.Log;
import it.giacomos.android.osmer.locationUtils.GeoCoordinates;
import it.giacomos.android.osmer.rainAlert.RainDetectResult;
import it.giacomos.android.osmer.rainAlert.SyncImages;
import it.giacomos.android.osmer.rain... | UTF-8 | Java | 4,321 | java | 33_95a36ec86318e98cb3ee9653cdbea0ec4c1e8c3b_RadarImageSyncAndGridCalculationTask_t.java | Java | [] | null | [] | package it.giacomos.android.osmer.service;
import android.os.AsyncTask;
import android.util.Log;
import it.giacomos.android.osmer.locationUtils.GeoCoordinates;
import it.giacomos.android.osmer.rainAlert.RainDetectResult;
import it.giacomos.android.osmer.rainAlert.SyncImages;
import it.giacomos.android.osmer.rain... | 4,321 | 0.741726 | 0.722287 | 111 | 37.918919 | 31.337494 | 135 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.711712 | false | false | 13 |
5587e5186f91669752528c48309d53d98eee09b3 | 4,269,197,535,593 | f65a6e075738f5f47eb9bcea67252611bd12d61b | /src/main/java/com/sanvalero/greenrouteapp/domain/Road.java | 2cddb72397e224ad23394625c35fe579ef465b71 | [] | no_license | DamGreenTeam/GreenRouteApp | https://github.com/DamGreenTeam/GreenRouteApp | c960e8f4727ac360997d818a770d656158fec644 | b801b1d45e960d186b0ad48c64f0e2e0b6af4d00 | refs/heads/master | 2023-03-31T16:20:24.466000 | 2021-04-10T07:21:30 | 2021-04-10T07:21:30 | 356,166,386 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sanvalero.greenrouteapp.domain;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.time.LocalDate;
/**
* Creado por @ author: Pedro Orós
* el 08/04/2021
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class Road {
... | UTF-8 | Java | 478 | java | Road.java | Java | [
{
"context": " java.time.LocalDate;\n\n/**\n * Creado por @ author: Pedro Orós\n * el 08/04/2021\n */\n\n@Data\n@Builder\n@AllArgsCons",
"end": 223,
"score": 0.9998905062675476,
"start": 213,
"tag": "NAME",
"value": "Pedro Orós"
}
] | null | [] | package com.sanvalero.greenrouteapp.domain;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.time.LocalDate;
/**
* Creado por @ author: <NAME>
* el 08/04/2021
*/
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class Road {
... | 473 | 0.746331 | 0.72956 | 27 | 16.666666 | 12.610989 | 43 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.444444 | false | false | 13 |
db2668c8eaf4c3511d78025b5ad827ee7a69c5c0 | 37,151,467,123,095 | 7c3a5fe83f60af1061cd03b5ae70208905928865 | /src/com/studytrade/studytrade2/model/StudyTradeDefinitions.java | 2159fae9c80ebf56615ec54f1b565c25388ab0df | [] | no_license | Mikescher/StudyTrade2 | https://github.com/Mikescher/StudyTrade2 | 7fcef4f212cd855fc8ff1cc0b990c6671a35fe1e | 979b2f31099d8e488ecc12c47a57b1710f36bc89 | refs/heads/master | 2020-06-06T18:34:19.777000 | 2014-06-16T16:59:41 | 2014-06-16T16:59:41 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.studytrade.studytrade2.model;
import com.vaadin.ui.NativeSelect;
public class StudyTradeDefinitions {
public static String[] PLACES =
{
"DH Karlsruhe",
"DH Freiburg",
"Uni Offenburg",
"Other",
};
public static String[] CONDITIONS =
{
"OVP",
"New",
"Like New",
"Used",
"Slightly ... | UTF-8 | Java | 865 | java | StudyTradeDefinitions.java | Java | [] | null | [] | package com.studytrade.studytrade2.model;
import com.vaadin.ui.NativeSelect;
public class StudyTradeDefinitions {
public static String[] PLACES =
{
"DH Karlsruhe",
"DH Freiburg",
"Uni Offenburg",
"Other",
};
public static String[] CONDITIONS =
{
"OVP",
"New",
"Like New",
"Used",
"Slightly ... | 865 | 0.654335 | 0.650867 | 47 | 17.404255 | 17.980675 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2 | false | false | 13 |
ded8fd1ce2099eadd4a27da3af6937cbeb742d26 | 35,493,609,762,520 | fe150aac9cad2aafba345065045c3b5bcc109c52 | /cedar-server-globals/src/main/java/org/metadatacenter/server/security/model/auth/CedarGroupUserRequest.java | 13041bfdf193d6725f1ec5fe19966adb6fc4b550 | [
"BSD-2-Clause"
] | permissive | metadatacenter/cedar-server-utils | https://github.com/metadatacenter/cedar-server-utils | 33884c450b982e9159cc37114f39dc2e8eaa4cf8 | 861be596bff05923831800cd9af9f86741857bcd | refs/heads/master | 2021-05-22T10:05:28.683000 | 2021-03-19T05:21:26 | 2021-03-19T05:23:59 | 50,546,981 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.metadatacenter.server.security.model.auth;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.metadatacenter.server.security.model.permission.resource.ResourcePermissionUser;
@JsonIgnoreProperties(ignoreUnknown = true)
public class CedarGroupUserRequest {
private ResourcePermissio... | UTF-8 | Java | 1,069 | java | CedarGroupUserRequest.java | Java | [] | null | [] | package org.metadatacenter.server.security.model.auth;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.metadatacenter.server.security.model.permission.resource.ResourcePermissionUser;
@JsonIgnoreProperties(ignoreUnknown = true)
public class CedarGroupUserRequest {
private ResourcePermissio... | 1,069 | 0.755847 | 0.755847 | 45 | 22.755556 | 24.430542 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.377778 | false | false | 13 |
eaed51ef75e4d08ac5be1613c678d8f7a4c1edb9 | 22,127,671,574,414 | 804825d9b8041948ed775d4f37d425e1f117ba4b | /zoyibean/src/org/zoyi/service/impl/AnnouncementServiceImpl.java | 1979d0af0638b14bf94af89753ce758114e8d452 | [] | no_license | BGCX261/zoyijavabean-svn-to-git | https://github.com/BGCX261/zoyijavabean-svn-to-git | c6459ea382d1b4a6d27568641801f59bc8a4ed31 | 1b4ae8e1de4ca8aeb14cc5da32a26edd5bdd8ab3 | refs/heads/master | 2021-01-01T19:33:51.782000 | 2015-08-25T15:52:38 | 2015-08-25T15:52:38 | 41,600,155 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.zoyi.service.impl;
import java.util.List;
import org.zoyi.service.AnnouncementService;
import org.zoyi.vo.Announcement;
import org.zoyi.adapter.AnnouncementAdapter;
import org.zoyi.hibernate.ZoyiAnnouncementDAO;
public class AnnouncementServiceImpl implements AnnouncementService {
public Annou... | UTF-8 | Java | 2,577 | java | AnnouncementServiceImpl.java | Java | [] | null | [] | package org.zoyi.service.impl;
import java.util.List;
import org.zoyi.service.AnnouncementService;
import org.zoyi.vo.Announcement;
import org.zoyi.adapter.AnnouncementAdapter;
import org.zoyi.hibernate.ZoyiAnnouncementDAO;
public class AnnouncementServiceImpl implements AnnouncementService {
public Annou... | 2,577 | 0.682965 | 0.682965 | 111 | 21.216217 | 21.94235 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.864865 | false | false | 13 |
4afc696e6d954ca77df3932d9379ba4a44a611be | 38,001,870,642,580 | 4b46e0887ecc9a613f8d9bdddba7d34189d6d2d0 | /module/01.web/src/com/gxx/file/CreateFilesAction.java | a2c72a2ed91329b7a482db20416ec80f5f1fa88c | [] | no_license | GuanXianghui/suncare-files | https://github.com/GuanXianghui/suncare-files | 02606c3e7cabd77dff2d9fb9ee8e59215de37bda | e28fbcaa5dbfd9c56ad428d153a99202e4382df9 | refs/heads/master | 2016-09-06T07:40:11.493000 | 2014-04-23T01:42:22 | 2014-04-23T01:42:22 | 19,052,464 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.gxx.file;
import com.gxx.file.dao.FilesDao;
import com.gxx.file.entities.Files;
import com.gxx.file.interfaces.OperateLogInterface;
import com.gxx.file.utils.BaseUtil;
import com.gxx.file.utils.TokenUtil;
/**
* 创建文档Action
*
* @author Gxx
* @module oa
* @datetime 14-4-18 15:22
*/
public class CreateF... | GB18030 | Java | 3,925 | java | CreateFilesAction.java | Java | [
{
"context": ".utils.TokenUtil;\n\n/**\n * 创建文档Action\n *\n * @author Gxx\n * @module oa\n * @datetime 14-4-18 15:22\n */\npubl",
"end": 254,
"score": 0.9996799230575562,
"start": 251,
"tag": "USERNAME",
"value": "Gxx"
}
] | null | [] | package com.gxx.file;
import com.gxx.file.dao.FilesDao;
import com.gxx.file.entities.Files;
import com.gxx.file.interfaces.OperateLogInterface;
import com.gxx.file.utils.BaseUtil;
import com.gxx.file.utils.TokenUtil;
/**
* 创建文档Action
*
* @author Gxx
* @module oa
* @datetime 14-4-18 15:22
*/
public class CreateF... | 3,925 | 0.580846 | 0.57851 | 164 | 22.493902 | 22.829563 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.542683 | false | false | 13 |
181f59f73a5197a93e359151434ec8c63526d044 | 20,693,152,456,284 | a63d261c59ac4e66e20313a8837f22fac3cd0855 | /src/cn/edu/xmu/servlet/Sec_UpdateUndergraStuPartiSocialPrac.java | 59ca0deaf3a9207c9e3f55dddc2c49044af64ba9 | [] | no_license | Guosmilesmile/iqa | https://github.com/Guosmilesmile/iqa | 9a7d54a3192b0e4634b9a0f268c106b9cbf1f07d | db7935120911396818146eeadb1ac4da095e0ffb | refs/heads/master | 2021-01-20T17:46:31.076000 | 2016-08-21T08:46:25 | 2016-08-21T08:46:25 | 65,795,465 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.edu.xmu.servlet;
import java.io.IOException;
import java.io.PrintWriter;
import java.net.URLDecoder;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.... | UTF-8 | Java | 6,784 | java | Sec_UpdateUndergraStuPartiSocialPrac.java | Java | [
{
"context": "dergraStuPartiSocialPracTable;\n\n/**\n * \n * @author xiaoping 附表5-4-3 本科生参与暑期社会实践情况 date 2015-7-10\n *\n */\n@WebS",
"end": 797,
"score": 0.9979982376098633,
"start": 789,
"tag": "USERNAME",
"value": "xiaoping"
}
] | null | [] | package cn.edu.xmu.servlet;
import java.io.IOException;
import java.io.PrintWriter;
import java.net.URLDecoder;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.... | 6,784 | 0.738772 | 0.732784 | 166 | 39.240963 | 32.833126 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.89759 | false | false | 13 |
e880ea87de8422ed96fd5bc4994e5817a455961a | 7,524,782,730,528 | d0db06c4bdd6a445448fc1daf6adb4656d984786 | /160Div1/Quilting.java | c6d9495072fed231ae2606b5409fef216734a22b | [] | no_license | Linzertorte/SRM | https://github.com/Linzertorte/SRM | 61dc53320d633b8e7a37384353de205bc018f47f | f3cd9cbc3f4a1e96c5b610477911acc3ed1b6360 | refs/heads/master | 2016-08-07T23:27:36.558000 | 2015-12-03T06:15:53 | 2015-12-03T06:15:53 | 17,495,485 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.*;
import java.util.regex.*;
import java.text.*;
import java.math.*;
import java.awt.geom.*;
public class Quilting
{
public String lastPatch(int length, int width, String[] colorList)
{
int[] dx = {0,-1,-1,-1,0,1,1,1};
int[] dy = {1,1,0,-1,-1,-1,0,1};
int[][] quilt = ne... | UTF-8 | Java | 1,870 | java | Quilting.java | Java | [] | null | [] | import java.util.*;
import java.util.regex.*;
import java.text.*;
import java.math.*;
import java.awt.geom.*;
public class Quilting
{
public String lastPatch(int length, int width, String[] colorList)
{
int[] dx = {0,-1,-1,-1,0,1,1,1};
int[] dy = {1,1,0,-1,-1,-1,0,1};
int[][] quilt = ne... | 1,870 | 0.417112 | 0.397326 | 61 | 29.655737 | 16.968519 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.081967 | false | false | 13 |
8475c10587bd52847d9f5801bd93a2a147acffa2 | 1,468,878,845,863 | 3bd50aa3d8ebdb7e291de6d0f58df7d5f7d62095 | /deftbus-core/src/main/java/com/deft/bus/DBus.java | 8e83abde3d5813466dd2b52fd2333820f2fe9f1c | [] | no_license | wei2006004/DeftBus | https://github.com/wei2006004/DeftBus | 00b30c3788a2e1c646aff893f9f531f11c697b83 | 67c2adb06dce87792ee88ade8e162416382338eb | refs/heads/master | 2021-01-24T08:36:55.018000 | 2016-10-08T13:18:44 | 2016-10-08T13:18:44 | 69,554,195 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.deft.bus;
import java.util.ArrayList;
import java.util.List;
/**
* Created by Administrator on 2016/9/29.
*/
public class DBus {
private DBus() {
}
public static <T> void register(T recieverObject, Class<T> recieverClass) {
innerRegister(recieverObject, recieverClass, null);
}
... | UTF-8 | Java | 1,770 | java | DBus.java | Java | [
{
"context": "rayList;\nimport java.util.List;\n\n/**\n * Created by Administrator on 2016/9/29.\n */\npublic class DBus {\n\n privat",
"end": 106,
"score": 0.43486732244491577,
"start": 93,
"tag": "NAME",
"value": "Administrator"
}
] | null | [] | package com.deft.bus;
import java.util.ArrayList;
import java.util.List;
/**
* Created by Administrator on 2016/9/29.
*/
public class DBus {
private DBus() {
}
public static <T> void register(T recieverObject, Class<T> recieverClass) {
innerRegister(recieverObject, recieverClass, null);
}
... | 1,770 | 0.640678 | 0.636158 | 54 | 31.777779 | 34.041187 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.62963 | false | false | 13 |
12d008ab56d8c48c316adda1e0c9fdafc2c005e3 | 9,749,575,781,040 | 3eca8335a7b8d51b93ae1f28569ca4c63b964839 | /DataStruct/src/com/ex/graph/Edge.java | 8cc5cf129b65a89b6dac2c355a260567271761d0 | [] | no_license | Xuc1124/DataStruct | https://github.com/Xuc1124/DataStruct | 44693af7f2f867439cb9350f55a885483b618cb9 | 358ec36b02eac01ff0be8f68ec95f5620d56414a | refs/heads/master | 2021-01-12T07:10:40.515000 | 2016-12-26T11:11:33 | 2016-12-26T11:11:33 | 76,859,705 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ex.graph;
/*
* 边集数组
*/
public class Edge {
int begin;
int end;
int weight;
public Edge(int begin,int end,int weight){
this.begin=begin;
this.end=end;
this.weight=weight;
}
public Edge(){}
}
| UTF-8 | Java | 225 | java | Edge.java | Java | [] | null | [] | package com.ex.graph;
/*
* 边集数组
*/
public class Edge {
int begin;
int end;
int weight;
public Edge(int begin,int end,int weight){
this.begin=begin;
this.end=end;
this.weight=weight;
}
public Edge(){}
}
| 225 | 0.654378 | 0.654378 | 16 | 12.5625 | 10.67104 | 43 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.3125 | false | false | 13 |
f8faa844af96ecc5f718e22b5292cae8b1f241eb | 28,183,575,424,614 | 0cbc25595a6fa4af07701c53eb5950102a61b9e8 | /CoreJava/src/com/joe/web/misc/ReadURL.java | a5c84d73e320ed68b314f3490712a801c70e5caf | [] | no_license | xiaojunshcn/13_JSE_CoreJava | https://github.com/xiaojunshcn/13_JSE_CoreJava | 625b39dbcf0bed13a9b3fe7be1884c5b1fae93a5 | f4b4cc140d0a54b1a0828b5168cb6ed38a12cbe6 | refs/heads/master | 2016-09-02T04:11:45.880000 | 2014-03-14T08:52:46 | 2014-03-14T08:52:46 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.joe.web.misc;
import java.io.DataInputStream;
import java.net.URL;
public class ReadURL {
public static void main(String[] args) {
try {
//when in an intranet, this 2 lines are required
System.setProperty("http.proxyHost", "proxy.jpn.hp.com");
System.setProperty("http.proxyPort", "... | UTF-8 | Java | 755 | java | ReadURL.java | Java | [] | null | [] | package com.joe.web.misc;
import java.io.DataInputStream;
import java.net.URL;
public class ReadURL {
public static void main(String[] args) {
try {
//when in an intranet, this 2 lines are required
System.setProperty("http.proxyHost", "proxy.jpn.hp.com");
System.setProperty("http.proxyPort", "... | 755 | 0.638691 | 0.630156 | 29 | 22.241379 | 19.655052 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.241379 | false | false | 13 |
b652666ab483605043891f691bfd38bf53a84ba6 | 5,763,846,138,219 | 37565116bf677f94fd7abe20584f303d46aed68e | /Topup_18-06-2015_1/src/main/java/com/masary/utils/BuildUUID.java | 02d94a7ee88ecc02c1dcb441d4fbcca2afbbdadf | [] | no_license | Sobhy-M/test-jira | https://github.com/Sobhy-M/test-jira | 70b6390b95182b7c70fbca510b032ca853d2c508 | f38554d674e4eaf6c38e4493278a63d41504f155 | refs/heads/master | 2022-12-20T12:22:32.110000 | 2019-07-07T16:39:34 | 2019-07-07T16:39:34 | 195,658,623 | 0 | 0 | null | false | 2022-12-16T08:16:01 | 2019-07-07T14:07:16 | 2022-07-20T20:07:27 | 2022-12-16T08:15:58 | 11,854 | 0 | 0 | 8 | Java | false | false | /*
* 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 com.masary.utils;
import java.sql.Timestamp;
import java.util.UUID;
/**
*
* @author Masary
*/
public class BuildUUID {
... | UTF-8 | Java | 669 | java | BuildUUID.java | Java | [
{
"context": "estamp;\nimport java.util.UUID;\n\n\n/**\n *\n * @author Masary\n */\npublic class BuildUUID {\n public String ",
"end": 288,
"score": 0.9987392425537109,
"start": 282,
"tag": "NAME",
"value": "Masary"
}
] | null | [] | /*
* 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 com.masary.utils;
import java.sql.Timestamp;
import java.util.UUID;
/**
*
* @author Masary
*/
public class BuildUUID {
... | 669 | 0.650224 | 0.650224 | 29 | 22.068966 | 22.529568 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.413793 | false | false | 13 |
b0501fd673027f5f89a51f9bae0ae3fde69fd722 | 20,358,145,019,185 | 8b15510039bc4a952e8a46a6d06f715721950b23 | /src/com/winston/core/PythonJudge.java | 636cb75c6d6f35544b7c9a5ae4480ca983c293e9 | [
"Apache-2.0"
] | permissive | 15218047860/CompileWeb | https://github.com/15218047860/CompileWeb | 2014c87924daa4a3c357b12f7ad6717391e4ec34 | bcaa12a6d40d30992bb89ca225fea7fbeacb911a | refs/heads/master | 2021-09-23T13:48:52.984000 | 2018-09-23T09:25:43 | 2018-09-23T09:25:43 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.winston.core;
import com.winston.util.CMDUtil;
/**
@Author 王钟鑫
@date 2018年9月13日 上午12:18:32
*
*/
public class PythonJudge extends AbstractJudge implements Judge{
/**
编译的方法,由子类实现
@Author Winston.Wang
@date 2018年9月13日 上午12:04:31
@email 940945444@qq.com
@return
@param
*/
@Override
p... | UTF-8 | Java | 527 | java | PythonJudge.java | Java | [
{
"context": ";\n\nimport com.winston.util.CMDUtil;\n\n/**\n @Author 王钟鑫\n @date 2018年9月13日 上午12:18:32\n * \n */\npublic class",
"end": 77,
"score": 0.9998784065246582,
"start": 74,
"tag": "NAME",
"value": "王钟鑫"
},
{
"context": " implements Judge{\n\n\t/**\n\t 编译的方法,由子类实现 \n\t @Auth... | null | [] | package com.winston.core;
import com.winston.util.CMDUtil;
/**
@Author 王钟鑫
@date 2018年9月13日 上午12:18:32
*
*/
public class PythonJudge extends AbstractJudge implements Judge{
/**
编译的方法,由子类实现
@Author Winston.Wang
@date 2018年9月13日 上午12:04:31
@email <EMAIL>
@return
@param
*/
@Override
public Str... | 518 | 0.687898 | 0.613588 | 29 | 15.24138 | 18.12534 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.931035 | false | false | 13 |
1f865f068fbdd9bc5d768278d0eae6a4cb32592f | 28,037,546,537,454 | a8ee4d70c223a0bf6494c3a85ee2a43450887b66 | /app/src/main/java/me/odinaris/gymmanager/application/ApplicationPageFragment.java | 5b613ec9307f9044bca7199811fb4e6112309097 | [] | no_license | Ubhadiyap/GymManager | https://github.com/Ubhadiyap/GymManager | 689a155d4b5d53554911def12a01d5ccaddbc8f7 | b050e446223786d0faf8ac9e3e68246c92fcba3e | refs/heads/master | 2020-04-10T05:27:12.140000 | 2017-03-05T05:13:57 | 2017-03-05T05:13:57 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package me.odinaris.gymmanager.application;
import android.content.Intent;
import android.os.Bundle;
import android.support.design.widget.Snackbar;
import android.support.v4.app.Fragment;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInfl... | UTF-8 | Java | 4,443 | java | ApplicationPageFragment.java | Java | [
{
"context": "naris.gymmanager.user.userBean;\n\n/**\n * Created by Odinaris on 2016/12/10.\n */\n\npublic class ApplicationPageF",
"end": 1076,
"score": 0.9988970160484314,
"start": 1068,
"tag": "USERNAME",
"value": "Odinaris"
}
] | null | [] | package me.odinaris.gymmanager.application;
import android.content.Intent;
import android.os.Bundle;
import android.support.design.widget.Snackbar;
import android.support.v4.app.Fragment;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInfl... | 4,443 | 0.715369 | 0.704342 | 137 | 30.773722 | 24.435522 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.467153 | false | false | 13 |
bfe7975a48fa1dd73ace9efa7bf0d5161ff6623c | 22,771,916,644,739 | aa38ee88b5b4debe8e27dc39b0fa8dcedd11b5b5 | /src/main/java/de/sciss/gui/ParamField.java | 6f88e158593ad116ab3f1de238ead9a587701ebb | [] | no_license | vijayvani/ScissLib | https://github.com/vijayvani/ScissLib | 3539b319c769fc790b12e2842c2943152227d964 | 4e7e26fcd5578a8d41fa26494b600d15e2a720ce | refs/heads/master | 2020-05-16T08:38:36.136000 | 2017-10-20T13:37:38 | 2017-10-20T13:37:38 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* ParamField.java
* (ScissLib)
*
* Copyright (c) 2004-2016 Hanns Holger Rutz. 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... | UTF-8 | Java | 14,552 | java | ParamField.java | Java | [
{
"context": "java\n * (ScissLib)\n *\n * Copyright (c) 2004-2016 Hanns Holger Rutz. All rights reserved.\n *\n *\tThis library is free ",
"end": 86,
"score": 0.9998941421508789,
"start": 69,
"tag": "NAME",
"value": "Hanns Holger Rutz"
},
{
"context": "A\n *\n *\n *\tFor further in... | null | [] | /*
* ParamField.java
* (ScissLib)
*
* Copyright (c) 2004-2016 <NAME>. 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 Licens... | 14,521 | 0.569681 | 0.56597 | 467 | 30.162741 | 24.37289 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.798715 | false | false | 13 |
e732890e7e37e48bb90bb54bbd44f43f315711aa | 4,913,442,624,127 | 2d05d93a4d8b30b7e1de4bf7b104b911c8107066 | /app/src/main/java/com/example/app50001/DeliveryHistoryFragment.java | a85e335bf610c9fbd0eeb77fbf667c24c7fcaa7e | [] | no_license | jesterlyn/50001InfoSysApp | https://github.com/jesterlyn/50001InfoSysApp | d17531e8f10232e75addfca2895bf95f38a3addd | f7709506d65f30a16ea2d13f43d479dff1683af4 | refs/heads/master | 2020-09-10T08:27:06.392000 | 2019-12-10T16:42:48 | 2019-12-10T16:42:48 | 221,702,542 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.app50001;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.annotation.Nullable;
import androidx.annotation.NonNull;
import androidx.fragment.app.Fragment;
import androidx.recyclerv... | UTF-8 | Java | 3,791 | java | DeliveryHistoryFragment.java | Java | [] | null | [] | package com.example.app50001;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.annotation.Nullable;
import androidx.annotation.NonNull;
import androidx.fragment.app.Fragment;
import androidx.recyclerv... | 3,791 | 0.682142 | 0.680823 | 120 | 30.566668 | 29.110346 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.541667 | false | false | 13 |
cbd47632335cc34474979bedd6bc6cb348d26ea7 | 24,034,637,048,122 | f41c1c987752f36065d5733cece0fb9dc8c47dea | /ErrorInfo.java | 39e72d5c956a3793f4d9f8680a071016dbf0c46e | [] | no_license | moyaog/PrototypeLinuxJobWorkerService | https://github.com/moyaog/PrototypeLinuxJobWorkerService | 7e097f4448e16c00853c3cab0975855fa74a0112 | 55370e838eff65ab8b1c388b0519dc2ec2cdf748 | refs/heads/master | 2020-05-23T18:42:41.690000 | 2019-06-19T05:57:02 | 2019-06-19T05:57:02 | 186,893,817 | 0 | 0 | null | false | 2019-06-17T07:51:08 | 2019-05-15T19:55:20 | 2019-06-17T07:14:05 | 2019-06-17T07:51:07 | 75 | 0 | 0 | 0 | Java | false | false | import java.util.stream.*;
import java.io.Serializable;
import java.util.*;
// ErrorInfo contains methods that update and return the values in it's data fields
public class ErrorInfo implements Serializable {
private static final long serialVersionUID = 1L;
private Integer errorCode;
private String ioMessage;
... | UTF-8 | Java | 1,084 | java | ErrorInfo.java | Java | [] | null | [] | import java.util.stream.*;
import java.io.Serializable;
import java.util.*;
// ErrorInfo contains methods that update and return the values in it's data fields
public class ErrorInfo implements Serializable {
private static final long serialVersionUID = 1L;
private Integer errorCode;
private String ioMessage;
... | 1,084 | 0.697417 | 0.696494 | 54 | 19.074074 | 17.951427 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.37037 | false | false | 13 |
90e4f7aa2b15afa2bdf7537677fff81c176dfce8 | 12,481,175,001,370 | 156853a87ec67c2c39d247a6eb610fe46a77b646 | /IADifficile.java | 010eae76a087813d3aeae5643c2b02d5346d8d68 | [] | no_license | boudykh/Java-Project | https://github.com/boudykh/Java-Project | 7937d6083cb2fb7a6c6511569df49d1948ea44a8 | 8d6105c33846d874b7955d0b5c675c36b3bd3823 | refs/heads/master | 2020-08-12T18:09:09.486000 | 2019-10-13T12:34:24 | 2019-10-13T12:34:24 | 214,816,503 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
public class IADifficile extends Players {
public IADifficile() {
}
@Override
void nextMove() throws InterruptedException {
int n = 0;
this.capture = false;
n = (int) (Math.random() * (6));
if (locaJoueur == 1) {
if (0 <= n && n <= 2) {
locaJoueur++;
Thread.sleep(800);
... | UTF-8 | Java | 1,259 | java | IADifficile.java | Java | [] | null | [] |
public class IADifficile extends Players {
public IADifficile() {
}
@Override
void nextMove() throws InterruptedException {
int n = 0;
this.capture = false;
n = (int) (Math.random() * (6));
if (locaJoueur == 1) {
if (0 <= n && n <= 2) {
locaJoueur++;
Thread.sleep(800);
... | 1,259 | 0.48054 | 0.451152 | 75 | 14.76 | 13.366466 | 46 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.44 | false | false | 13 |
b70df5b00f92e30abefb7e7f4c3b0f6a1f92a5b0 | 20,761,871,950,096 | 995f73d30450a6dce6bc7145d89344b4ad6e0622 | /MATE-20_EMUI_11.0.0/src/main/java/ohos/media/camera/mode/tags/hisi/utils/HisiSensorHdrCapabilityUtil.java | 42cc1dd42884feb23688d5b9da6e131b44f1d806 | [] | no_license | morningblu/HWFramework | https://github.com/morningblu/HWFramework | 0ceb02cbe42585d0169d9b6c4964a41b436039f5 | 672bb34094b8780806a10ba9b1d21036fd808b8e | refs/heads/master | 2023-07-29T05:26:14.603000 | 2021-09-03T05:23:34 | 2021-09-03T05:23:34 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ohos.media.camera.mode.tags.hisi.utils;
import ohos.media.camera.device.impl.CameraAbilityImpl;
import ohos.media.camera.params.adapter.InnerPropertyKey;
import ohos.media.utils.log.Logger;
import ohos.media.utils.log.LoggerFactory;
public class HisiSensorHdrCapabilityUtil {
private static final Logger LO... | UTF-8 | Java | 907 | java | HisiSensorHdrCapabilityUtil.java | Java | [] | null | [] | package ohos.media.camera.mode.tags.hisi.utils;
import ohos.media.camera.device.impl.CameraAbilityImpl;
import ohos.media.camera.params.adapter.InnerPropertyKey;
import ohos.media.utils.log.Logger;
import ohos.media.utils.log.LoggerFactory;
public class HisiSensorHdrCapabilityUtil {
private static final Logger LO... | 907 | 0.706725 | 0.70452 | 25 | 35.279999 | 31.861601 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6 | false | false | 13 |
c1a789ce4e27bca50784b788862d04f9bb7158a5 | 16,758,962,455,186 | 40ca7cf005ec1df72641307b5c61d31c6cb72394 | /trunk/micbi/hadoop/src/main/java/dw/dwMicbiEmailResultInfo/DwMicbiEmailResultInfoMap.java | d24ee77e66f6954747c41ca61284c7fa8c22aab6 | [] | no_license | htsumail/micbi | https://github.com/htsumail/micbi | 1e08d0125151418d601c2a2c05240b838686531e | ae985ada2c667606ebbc8996be48a0a21d49743b | refs/heads/master | 2018-01-09T12:50:51.654000 | 2017-08-14T01:16:29 | 2017-08-14T01:16:29 | 100,215,087 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package dw.dwMicbiEmailResultInfo;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Mapper;
import com.focustech.commons.util.StringUtils;
public class DwMicbiEmailResultInfoMap extends Mapper<Object, Text, Text, Text... | UTF-8 | Java | 1,881 | java | DwMicbiEmailResultInfoMap.java | Java | [] | null | [] | package dw.dwMicbiEmailResultInfo;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Mapper;
import com.focustech.commons.util.StringUtils;
public class DwMicbiEmailResultInfoMap extends Mapper<Object, Text, Text, Text... | 1,881 | 0.644516 | 0.641815 | 55 | 32.654545 | 31.707882 | 118 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.581818 | false | false | 13 |
b10642c4660952fea48e06efa5884fc1920bca3d | 14,602,888,852,876 | 7d832497fe5bc4f1915171ef44c690d79bae2c0e | /src/main/java/com/ssoysal/letMeIn/entities/Login.java | 1a93081d5a8866cc0c87b2233c90885332bbf16d | [] | no_license | ssscs/letmein-spring | https://github.com/ssscs/letmein-spring | 5bc7b192cb909b4eade785a92099a98709c6d06d | 3845a7817da8931082da272ce08f0e01da5b5a76 | refs/heads/main | 2023-04-28T11:46:49.858000 | 2021-05-20T13:14:17 | 2021-05-20T13:14:17 | 369,128,729 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ssoysal.letMeIn.entities;
import javax.persistence.*;
import org.hibernate.annotations.ColumnTransformer;
@Entity
@Table(name="login")
public class Login {
@Id
@Column(name="id")
@GeneratedValue(strategy=GenerationType.IDENTITY)
private int id;
@Column(name="url")
@ColumnTransformer(
... | UTF-8 | Java | 1,566 | java | Login.java | Java | [] | null | [] | package com.ssoysal.letMeIn.entities;
import javax.persistence.*;
import org.hibernate.annotations.ColumnTransformer;
@Entity
@Table(name="login")
public class Login {
@Id
@Column(name="id")
@GeneratedValue(strategy=GenerationType.IDENTITY)
private int id;
@Column(name="url")
@ColumnTransformer(
... | 1,566 | 0.60281 | 0.597063 | 77 | 19.337662 | 21.765343 | 89 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.064935 | false | false | 13 |
b6eeaf104601c9d51195be12fcd8e44a06929158 | 8,426,725,891,798 | 947b482600cde52ce96ae408cb1256a3f31cdc1d | /src/other/AmzNameList.java | fd3736512f8a894f15f209f8ff6374d6b6580ff1 | [] | no_license | fztest/LintCodeSolution | https://github.com/fztest/LintCodeSolution | 850e790f4b68b8231ea43f7f924578b26c4d76be | 79d4fc47fe2788ca4d5f6a68fce2dff5f99f2920 | refs/heads/master | 2020-03-25T06:34:06.982000 | 2016-06-06T03:27:12 | 2016-06-06T03:27:14 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package other;
import java.util.*;
public class AmzNameList {
public static void main(String[] args) {
List<String> names = Arrays.asList(new String[]{"aaa","sss","bbb","fff","eee","ddd","aaa","aaa","sss","sss","aaa"});
System.out.println(romanizeNames(names));
}
private static List<String> romanizeNames(L... | UTF-8 | Java | 1,071 | java | AmzNameList.java | Java | [] | null | [] | package other;
import java.util.*;
public class AmzNameList {
public static void main(String[] args) {
List<String> names = Arrays.asList(new String[]{"aaa","sss","bbb","fff","eee","ddd","aaa","aaa","sss","sss","aaa"});
System.out.println(romanizeNames(names));
}
private static List<String> romanizeNames(L... | 1,071 | 0.633987 | 0.628385 | 41 | 25.121952 | 26.41433 | 118 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.170732 | false | false | 13 |
ca2aeec7b1a249af8d39712295392e71e6f76236 | 26,216,480,422,670 | ab065f4726a56780e7e7be195914bc83437b59b1 | /src/main/java/domain_Direction/oTo/DoDire_oTo.java | bd51cc6e43adf4e4c1803253e9ee275a5d3ec7fb | [] | no_license | yetao93/HibernateDemo | https://github.com/yetao93/HibernateDemo | 42434aa36a2367b0137086a1396a90c53aafebc2 | 665c510e776886244e40950afb80c08afdd3bbc8 | refs/heads/master | 2019-01-07T14:49:34.546000 | 2017-10-19T11:52:50 | 2017-10-19T11:52:50 | 74,882,701 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package domain_Direction.oTo;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
import org.hibernate.cfg.Configuration;
import org.hibernate.service.ServiceRegistry;
import java.util.*;
public class DoDire_oTo {
public... | UTF-8 | Java | 2,193 | java | DoDire_oTo.java | Java | [] | null | [] | package domain_Direction.oTo;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
import org.hibernate.cfg.Configuration;
import org.hibernate.service.ServiceRegistry;
import java.util.*;
public class DoDire_oTo {
public... | 2,193 | 0.602007 | 0.602007 | 59 | 33.474575 | 26.15168 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.677966 | false | false | 13 |
437b9308cc2e9bfd0084925f780e740577528111 | 10,548,439,693,782 | 1163394bf18e8671506fe1d45db8decb1d8938bd | /src/main/java/com/grudnik/controllers/LoginController.java | 101e866551cf7ff492f6effe0b093fe5cdb76e1a | [] | no_license | MrKyrtap/JAVASpringForum | https://github.com/MrKyrtap/JAVASpringForum | f3e1b8c4c78b7caa565952aee7caa2b51c5504c8 | 272e2ec6a0b0f37cd2b50f9631f3b286a420a06e | refs/heads/master | 2021-01-20T08:20:38.186000 | 2017-08-27T10:42:08 | 2017-08-27T10:42:08 | 90,132,853 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.grudnik.controllers;
import com.grudnik.entities.Category;
import com.grudnik.entities.MainCategory;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import java.util.HashMap;
import java.util.List;
/**
... | UTF-8 | Java | 520 | java | LoginController.java | Java | [
{
"context": "HashMap;\nimport java.util.List;\n\n/**\n * Created by PatrykGrudnik on 02/05/2017.\n */\n@Controller\npublic class Login",
"end": 346,
"score": 0.9888842701911926,
"start": 333,
"tag": "NAME",
"value": "PatrykGrudnik"
}
] | null | [] | package com.grudnik.controllers;
import com.grudnik.entities.Category;
import com.grudnik.entities.MainCategory;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import java.util.HashMap;
import java.util.List;
/**
... | 520 | 0.759615 | 0.744231 | 23 | 21.608696 | 18.830454 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.391304 | false | false | 13 |
43966f44d284f1020b6cc59d473c2f7b56e038ce | 10,548,439,693,789 | ed9a60eee17b7b4e4ee34de7beb3a6480069e208 | /src/main/java/com/sanjoksoft/dao/impl/BankDaoImpl.java | 3419e920ca5e1787664cfe75bb4f55901ceca183 | [] | no_license | sanjokpro/Spring-Boot-JDBC-Transaction-Management | https://github.com/sanjokpro/Spring-Boot-JDBC-Transaction-Management | 437f670df790f82e039afb8bf732533bc1721c70 | f1c181478eac78f7e622ed58399560c3e8ede388 | refs/heads/master | 2020-03-07T15:34:31.826000 | 2018-03-31T18:43:25 | 2018-03-31T18:43:25 | 127,558,625 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sanjoksoft.dao.impl;
import com.sanjoksoft.dao.BankDao;
import com.sanjoksoft.dao.exception.InsufficientAccountBalanceException;
import com.sanjoksoft.dao.mapper.AccountRowMapper;
import com.sanjoksoft.model.Account;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Auto... | UTF-8 | Java | 2,701 | java | BankDaoImpl.java | Java | [] | null | [] | package com.sanjoksoft.dao.impl;
import com.sanjoksoft.dao.BankDao;
import com.sanjoksoft.dao.exception.InsufficientAccountBalanceException;
import com.sanjoksoft.dao.mapper.AccountRowMapper;
import com.sanjoksoft.model.Account;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Auto... | 2,701 | 0.677516 | 0.675645 | 69 | 37.739132 | 31.74338 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.536232 | false | false | 13 |
f23d02d4e14608fd9d321dcb4a4fca458f6374c9 | 15,247,133,922,144 | ad3adf532338a3f7160b44e864885a7fbbcad0f0 | /operation-system-web/src/main/java/operation/system/WebApplicationBootStrap.java | 0e171e10dfaed0258afccc76777ead09dccf0a40 | [] | no_license | qiufeng001/operation-system | https://github.com/qiufeng001/operation-system | 0b90cb5e67fa8032c277269d3a05b7aec316afac | 11cd93bc4a25a20fb73db2492406d6d4d77f125c | refs/heads/master | 2020-04-12T18:22:52.175000 | 2018-12-22T09:57:03 | 2018-12-22T09:57:03 | 162,677,061 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package operation.system;
import com.framework.core.configuration.ApplicationBootStrap;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.ImportResource;
import org.springframework.transaction.... | UTF-8 | Java | 798 | java | WebApplicationBootStrap.java | Java | [] | null | [] | package operation.system;
import com.framework.core.configuration.ApplicationBootStrap;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.ImportResource;
import org.springframework.transaction.... | 798 | 0.802532 | 0.802532 | 22 | 34.954544 | 24.551388 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2 | false | false | 13 |
c8f4881b029737509ded409a7474858d9fd6c740 | 11,647,951,310,414 | 7602f4bac5c41382deeb3bb70a1986a612e7d313 | /srv/src/main/java/com/zenika/nc/angular/mybottles/AppServer.java | 0f1d78d80d5d53eaf957f2a70d7ec7c3418819b3 | [] | no_license | Zenika/nc-angularjs-decouverte | https://github.com/Zenika/nc-angularjs-decouverte | 7f6acb67250ac53719905fabfb25ad5b5fcddf1f | 67d06ebbb15221f7a93de8a63c6fa70eb671f59e | refs/heads/master | 2021-01-01T19:42:43.634000 | 2014-02-07T06:51:11 | 2014-02-07T06:51:11 | 16,134,951 | 0 | 2 | null | false | 2014-02-07T06:51:11 | 2014-01-22T09:41:23 | 2014-02-07T06:51:11 | 2014-02-07T06:51:11 | 11,184 | 1 | 3 | 0 | Java | null | null | package com.zenika.nc.angular.mybottles;
import restx.server.WebServer;
/**
* This class can be used to run the app.
*
* Alternatively, you can deploy the app as a war in a regular container like tomcat or jetty.
*
* Reading the port from system env PORT makes it compatible with heroku.
*/
public class AppServe... | UTF-8 | Java | 2,095 | java | AppServer.java | Java | [
{
"context": "Server(WEB_INF_LOCATION, WEB_APP_LOCATION, port, \"0.0.0.0\");\n\n /*\n * load mode from system p",
"end": 740,
"score": 0.9995264410972595,
"start": 733,
"tag": "IP_ADDRESS",
"value": "0.0.0.0"
}
] | null | [] | package com.zenika.nc.angular.mybottles;
import restx.server.WebServer;
/**
* This class can be used to run the app.
*
* Alternatively, you can deploy the app as a war in a regular container like tomcat or jetty.
*
* Reading the port from system env PORT makes it compatible with heroku.
*/
public class AppServe... | 2,095 | 0.590453 | 0.581862 | 67 | 30.268656 | 29.418535 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.537313 | false | false | 13 |
19fae1413bd58e09415d4d6b5298a760b7a6ee2a | 11,647,951,307,187 | 10354290ed5bc29a8349ab449fe904a8a149ee73 | /src/main/java/mekanism/common/util/StackUtils.java | 042fe516307ba44042e392cbd9f56f056ef78780 | [
"MIT"
] | permissive | thecow275/Mekanism | https://github.com/thecow275/Mekanism | 17ac675b59aa8af9ac73909f8182262881d422ca | 6093851f05dfb5ff2da52ace87f06ea03a7571a4 | refs/heads/master | 2022-12-10T08:45:16.038000 | 2022-10-22T15:47:07 | 2022-10-22T15:47:07 | 31,206,431 | 0 | 0 | null | true | 2020-10-22T16:22:32 | 2015-02-23T12:04:36 | 2019-04-19T02:13:42 | 2020-10-22T16:22:31 | 34,443 | 0 | 0 | 0 | Java | false | false | package mekanism.common.util;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import mekanism.api.Action;
import mekanism.api.inventory.IInventorySlot;
import net.minecraft.core.BlockPos;
import net.minecraft.core.Direction;
import net.minecraft.world.InteractionHand;
import net.minecr... | UTF-8 | Java | 7,850 | java | StackUtils.java | Java | [] | null | [] | package mekanism.common.util;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import mekanism.api.Action;
import mekanism.api.inventory.IInventorySlot;
import net.minecraft.core.BlockPos;
import net.minecraft.core.Direction;
import net.minecraft.world.InteractionHand;
import net.minecr... | 7,850 | 0.554904 | 0.553248 | 176 | 43.607956 | 31.893284 | 139 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.653409 | false | false | 13 |
5da5c1475cc8b645b573688f61053fdd6d62fc04 | 11,647,951,308,401 | 238a043a69d97d797e6939b88d64502f60deb102 | /recorder/app/src/main/java/com/example/shikharjai/recorder/recorder1.java | 87e46a24b952c4537a515f7129dcf7e19c21df68 | [] | no_license | uc-sja/LearnCodeOnline | https://github.com/uc-sja/LearnCodeOnline | 882b2311fd64b4663eaa012e67de28b10e105d48 | 8cde6e8dd51817dd9d61d5b1bd73a0fe90062eef | refs/heads/master | 2020-03-28T12:08:16.793000 | 2019-02-28T03:31:38 | 2019-02-28T03:31:38 | 148,272,143 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.shikharjai.recorder;
import android.Manifest;
import android.content.Context;
import android.content.pm.PackageManager;
import android.media.MediaPlayer;
import android.media.MediaRecorder;
import android.os.Build;
import android.os.Bundle;
import android.os.Environment;
import android.support.anno... | UTF-8 | Java | 5,751 | java | recorder1.java | Java | [] | null | [] | package com.example.shikharjai.recorder;
import android.Manifest;
import android.content.Context;
import android.content.pm.PackageManager;
import android.media.MediaPlayer;
import android.media.MediaRecorder;
import android.os.Build;
import android.os.Bundle;
import android.os.Environment;
import android.support.anno... | 5,751 | 0.548426 | 0.546688 | 165 | 33.854546 | 24.383615 | 132 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.690909 | false | false | 13 |
efcdf57ca06f4d35851236f13c782912aa7b2d95 | 4,681,514,360,146 | 7ffc711a5717c39c0579a4c3362ebed0f5d6815f | /src/Task.java | 4088cb7839bec981700191a13dc6b511d235fc0a | [] | no_license | JayDosunmu/GreedyTask | https://github.com/JayDosunmu/GreedyTask | 7f67156f837240fb7e518c2967099001a33fbe3d | eb299b8d0e5cde52dff7512494af7d928e192441 | refs/heads/master | 2017-05-23T08:47:34.582000 | 2015-10-20T03:03:35 | 2015-10-20T03:03:35 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
public class Task {
private String keyword;
private String description;
private int minsToComplete;
private int priority;
public Task(){
keyword = "";
description = "";
minsToComplete = 0;
priority = 0;
}
public Task(String keyword, String description, int minsToComplete, int priority){
this.key... | UTF-8 | Java | 1,581 | java | Task.java | Java | [] | null | [] |
public class Task {
private String keyword;
private String description;
private int minsToComplete;
private int priority;
public Task(){
keyword = "";
description = "";
minsToComplete = 0;
priority = 0;
}
public Task(String keyword, String description, int minsToComplete, int priority){
this.key... | 1,581 | 0.709045 | 0.707147 | 74 | 20.351351 | 20.90741 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.675676 | false | false | 13 |
f2ab16d16ca8f2b9ba9bfa7a01f860cf9dd88aa6 | 4,810,363,414,307 | 86c759b0294b1f4952a2b235e670e6e614102727 | /MusicPlayer v3/src/application/FXMLController.java | cb853743bc2989c6b2d309d3e33db91b55686ae8 | [] | no_license | ducthinhle92/MusicPlayer-Java-Samsung-2014 | https://github.com/ducthinhle92/MusicPlayer-Java-Samsung-2014 | c8562af527bdf691846434cd22224676bcf144c6 | 35ed6bfe0ff6d3f0674ff553eda8da08a34d0d72 | refs/heads/master | 2020-05-18T15:18:03.658000 | 2014-12-16T08:10:19 | 2014-12-16T08:10:19 | 24,712,490 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package application;
import java.io.IOException;
import java.net.URISyntaxException;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
im... | UTF-8 | Java | 5,456 | java | FXMLController.java | Java | [] | null | [] | package application;
import java.io.IOException;
import java.net.URISyntaxException;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
im... | 5,456 | 0.748717 | 0.747251 | 229 | 22.825327 | 19.670763 | 87 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.764192 | false | false | 13 |
0d5432df475123a799ee25824a3ccc2793a8e623 | 24,704,651,897,203 | 69595e0a89f66fd0fb869b08907da6631eb5d623 | /src/dungeonGamePackage/Projectile.java | eaa9148b935954e73418d5aa4e0a857072f7a5da | [] | no_license | asger1537/DD-Projekt-Uge | https://github.com/asger1537/DD-Projekt-Uge | 1bc687e3ba047a0dfe6bd871f0e2c24e0b13f2ff | 07033b445b018375f18cd0aacfef9f20c9a5d718 | refs/heads/master | 2020-07-26T20:11:54.622000 | 2019-10-10T11:21:55 | 2019-10-10T11:21:55 | 208,754,169 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package dungeonGamePackage;
import static dungeonGamePackage.DungeonGame.DG;
import processing.core.PVector;
class Projectile {
PVector position;
PVector velocity;
int dmg;
String[] canHit;
float radius;
int color;
boolean hit;
Projectile(PVector position, PVector velocity, int dmg, ... | UTF-8 | Java | 1,936 | java | Projectile.java | Java | [] | null | [] | package dungeonGamePackage;
import static dungeonGamePackage.DungeonGame.DG;
import processing.core.PVector;
class Projectile {
PVector position;
PVector velocity;
int dmg;
String[] canHit;
float radius;
int color;
boolean hit;
Projectile(PVector position, PVector velocity, int dmg, ... | 1,936 | 0.530475 | 0.528926 | 81 | 22.901234 | 23.955002 | 148 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.641975 | false | false | 13 |
c88df19158b044a04685691d2660b30258449358 | 3,917,010,183,653 | 4f9b99eb2f60acf5031e32816ffe127bb80cd348 | /HMAgent/src/com/cdv/service/ClipService.java | 1a34d87c08e970e9f24bad0e3cabf4ef01a54818 | [] | no_license | liangguang/HM | https://github.com/liangguang/HM | 4fee43919feebf7450c6ef5af0686d14008b04ed | 0f3f34d0a6cc42e01328b4318f93f588fab894d6 | refs/heads/master | 2016-08-09T23:29:19.677000 | 2015-11-13T09:17:50 | 2015-11-13T09:17:50 | 45,896,337 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cdv.service;
import java.util.HashMap;
import java.util.Map;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframewor... | UTF-8 | Java | 4,103 | java | ClipService.java | Java | [] | null | [] | package com.cdv.service;
import java.util.HashMap;
import java.util.Map;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframewor... | 4,103 | 0.717489 | 0.715379 | 127 | 27.850393 | 22.03722 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.716535 | false | false | 13 |
5c52601a900a6c92ee9309bddc869713816ab7aa | 26,963,804,727,750 | 958d30e5eea44fbb9744d0b18d77036d8c40e630 | /app/src/main/java/com/pakos/lcw/SliderAdapter.java | d269b698540146135dbab3532aa19b4900e3647a | [] | no_license | Svestis/LCW | https://github.com/Svestis/LCW | 6df5a1f692bfa535028231957e50f93f5d2b924c | a055e894c89f9ba41ddc772c1c9b6510a0ee6591 | refs/heads/master | 2022-03-18T00:41:10.103000 | 2022-02-26T21:33:02 | 2022-02-26T21:33:02 | 175,052,054 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.pakos.lcw;
import android.content.Context;
import android.support.annotation.NonNull;
import android.support.v4.view.PagerAdapter;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import andro... | UTF-8 | Java | 2,148 | java | SliderAdapter.java | Java | [] | null | [] | package com.pakos.lcw;
import android.content.Context;
import android.support.annotation.NonNull;
import android.support.v4.view.PagerAdapter;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import andro... | 2,148 | 0.672253 | 0.668529 | 72 | 28.833334 | 29.244183 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.569444 | false | false | 13 |
5797d50ed7d7a773928454184f0577e954d00b5e | 22,488,448,779,077 | 978f6eb52601a2b5245146049437a0cb519685eb | /src/GUI/CrearEmpleado.java | 8de02dda5d3444c21873c9badd36c4b7c0696931 | [] | no_license | fabelio/SeguritaSA | https://github.com/fabelio/SeguritaSA | f3cf5e115a87a6d00458147457111f2aa40d418a | d4a8890e98488c05968e335a5e4fe3834105ca9a | refs/heads/master | 2020-12-30T10:23:30.608000 | 2015-05-15T16:06:49 | 2015-05-15T16:06:49 | 35,683,371 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package GUI;
import BaseHibernate.DaoHibernate;
import BaseHibernate.DataAccessLayerException;
import BaseHibernate.Parametro;
import Entidades.Departamento;
import Entidades.Pais;
import Entidades.Tipopago;
import java... | UTF-8 | Java | 8,685 | java | CrearEmpleado.java | Java | [
{
"context": "import javax.swing.JOptionPane;\n\n/**\n *\n * @author user\n */\npublic class CrearEmpleado extends javax.swin",
"end": 415,
"score": 0.9992542862892151,
"start": 411,
"tag": "USERNAME",
"value": "user"
}
] | null | [] | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package GUI;
import BaseHibernate.DaoHibernate;
import BaseHibernate.DataAccessLayerException;
import BaseHibernate.Parametro;
import Entidades.Departamento;
import Entidades.Pais;
import Entidades.Tipopago;
import java... | 8,685 | 0.618768 | 0.610823 | 201 | 42.208954 | 36.575638 | 163 | false | false | 0 | 0 | 0 | 0 | 78 | 0.035924 | 0.631841 | false | false | 13 |
fde4b29aa6bfca58c245dba77c304984102e2fdd | 9,363,028,723,494 | 15b6656bf1c9c35ca5f503c4432bf56ac3f1f473 | /mercado-livre/src/main/java/com/api/mercadolivre/controller/TransacaoController.java | 192ecc4ac05a0f47030abdc4683432c74f8ca992 | [
"Apache-2.0"
] | permissive | KelwinPF/orange-talents-03-template-ecommerce | https://github.com/KelwinPF/orange-talents-03-template-ecommerce | c70130ab4c249ff2f787a6b510fd72eb773e5893 | 67e27661a4981e53fad6f70d5c29fa2705264e88 | refs/heads/main | 2023-04-07T10:32:06.058000 | 2021-04-13T20:06:37 | 2021-04-13T20:06:37 | 350,825,208 | 0 | 0 | Apache-2.0 | true | 2021-03-23T18:59:39 | 2021-03-23T18:59:39 | 2021-03-19T17:30:01 | 2021-03-15T20:26:56 | 4 | 0 | 0 | 0 | null | false | false | package com.api.mercadolivre.controller;
import java.util.Optional;
import javax.validation.Valid;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.Re... | UTF-8 | Java | 3,170 | java | TransacaoController.java | Java | [
{
"context": "acaoStatusEnum.SUCESSO)) {\n\t\t\treturn sender.send(\"Caro Sr.\"+transacao.getCompra().getUsuario().getLogin(",
"end": 2566,
"score": 0.7596089839935303,
"start": 2562,
"tag": "NAME",
"value": "Caro"
}
] | null | [] | package com.api.mercadolivre.controller;
import java.util.Optional;
import javax.validation.Valid;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.Re... | 3,170 | 0.784407 | 0.784407 | 79 | 39.101265 | 29.485287 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.113924 | false | false | 13 |
ed2325f8a4aa21a6e6ab40d8180a4b19913d3ac0 | 11,201,274,722,088 | ee41b8d5392f5a4b307c0509ecbb958b22aa1251 | /src/main/java/messy/render/croosr.java | d5119ed0307d49fb1d1578044c1005a2c33078ff | [] | no_license | akakishi04/messy-mod | https://github.com/akakishi04/messy-mod | cf021855864cc8acc57d29824610e0d13f20afd5 | 06e3e09dcdad7e5af3a3fe92bd104d703051d07e | refs/heads/master | 2016-08-12T07:02:17.139000 | 2016-02-07T14:31:29 | 2016-02-07T14:31:29 | 43,634,137 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package messy.render;
import org.lwjgl.opengl.GL11;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.Minecraft;
import net.minecraft.client.model.ModelVillager;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minec... | UTF-8 | Java | 1,628 | java | croosr.java | Java | [] | null | [] | package messy.render;
import org.lwjgl.opengl.GL11;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.client.Minecraft;
import net.minecraft.client.model.ModelVillager;
import net.minecraft.client.renderer.tileentity.TileEntitySpecialRenderer;
import net.minec... | 1,628 | 0.708955 | 0.660448 | 57 | 26.210526 | 29.091349 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.824561 | false | false | 13 |
8a423b2e792a5197a483268ce909b61e54269bdc | 10,058,813,466,452 | a0881dedec2a8e098f983faef2acb15e89efe64b | /src/main/java/com/yukil/petcareuserserver/entity/Pet.java | 6241dd6347a99e356bc120211643d227cad9d1b0 | [] | no_license | dbrdlf/petcareuserserver | https://github.com/dbrdlf/petcareuserserver | b11866b9af0f691b5dfc7b427becf615682a871b | eda72e642e13a4f469aa31a3309f467e611930d3 | refs/heads/master | 2023-03-29T18:47:47.830000 | 2021-03-23T14:57:46 | 2021-03-23T14:57:46 | 332,916,909 | 0 | 0 | null | false | 2021-03-23T14:55:09 | 2021-01-25T23:48:05 | 2021-03-23T14:37:37 | 2021-03-23T14:55:09 | 116 | 0 | 0 | 1 | Java | false | false | package com.yukil.petcareuserserver.entity;
import lombok.*;
import org.springframework.jmx.export.annotation.ManagedAttribute;
import javax.persistence.*;
import java.time.LocalDate;
@Entity
@Getter
@Setter
@Builder
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode(of = "id")
public class Pet {
@Id
... | UTF-8 | Java | 717 | java | Pet.java | Java | [] | null | [] | package com.yukil.petcareuserserver.entity;
import lombok.*;
import org.springframework.jmx.export.annotation.ManagedAttribute;
import javax.persistence.*;
import java.time.LocalDate;
@Entity
@Getter
@Setter
@Builder
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode(of = "id")
public class Pet {
@Id
... | 717 | 0.726639 | 0.726639 | 32 | 21.40625 | 16.01144 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.375 | false | false | 13 |
8758573308f569f69bc13c702abfd148f913e3a5 | 21,904,333,222,102 | 663316411d093c25270a6aad4a0082bc731e6803 | /src/main/java/ru/ase/ims/enomanager/service/xml/XMLReader.java | ea4444581d35fdc326f2f4216db35996eed98957 | [] | no_license | Battal99/modeller | https://github.com/Battal99/modeller | d1816b2172c6e380b875c30de50822f250f7fc84 | 778471c02d2a5c669a64b4209046105f27c72e22 | refs/heads/master | 2022-12-02T17:43:14.842000 | 2020-07-14T10:59:56 | 2020-07-14T10:59:56 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ru.ase.ims.enomanager.service.xml;
import ru.ase.ims.enomanager.model.enovia.DataModel;
import ru.ase.ims.enomanager.model.enovia.xml.Ematrix;
public interface XMLReader {
DataModel getObjectFromFile(String branchName, String fileName);
DataModel getObjectFromString(String type, String content);
S... | UTF-8 | Java | 393 | java | XMLReader.java | Java | [] | null | [] | package ru.ase.ims.enomanager.service.xml;
import ru.ase.ims.enomanager.model.enovia.DataModel;
import ru.ase.ims.enomanager.model.enovia.xml.Ematrix;
public interface XMLReader {
DataModel getObjectFromFile(String branchName, String fileName);
DataModel getObjectFromString(String type, String content);
S... | 393 | 0.791349 | 0.791349 | 11 | 34.727272 | 23.821651 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.818182 | false | false | 13 |
98867a9234189e955b1d7aaf68afbc0598feea57 | 18,691,697,689,526 | c3af3463070efc583bfce5dc404d6d73fe23c3cb | /src/main/java/com/discretion/solver/inference/UnionDisjunction.java | 7f218f3ce0a94743f342a89ddcd7deba2bda1c54 | [] | no_license | jbauschatz/Discretion | https://github.com/jbauschatz/Discretion | e77c6661933d19e8e1e2116a81adb26da81042cc | f7d31a5c4b6158aee6975dcd6f8f4302040829db | refs/heads/master | 2020-05-17T13:19:38.904000 | 2016-02-16T21:02:35 | 2016-02-16T21:02:35 | 24,506,767 | 0 | 1 | null | false | 2016-02-14T17:40:23 | 2014-09-26T16:28:07 | 2016-01-13T04:34:33 | 2016-02-14T17:38:45 | 1,048 | 2 | 1 | 4 | Java | null | null | package com.discretion.solver.inference;
import com.discretion.AbstractMathObjectVisitor;
import com.discretion.MathObject;
import com.discretion.expression.SetUnion;
import com.discretion.proof.ProofStatement;
import com.discretion.solver.Replacer;
import com.discretion.solver.environment.TruthEnvironment;
import com... | UTF-8 | Java | 2,654 | java | UnionDisjunction.java | Java | [] | null | [] | package com.discretion.solver.inference;
import com.discretion.AbstractMathObjectVisitor;
import com.discretion.MathObject;
import com.discretion.expression.SetUnion;
import com.discretion.proof.ProofStatement;
import com.discretion.solver.Replacer;
import com.discretion.solver.environment.TruthEnvironment;
import com... | 2,654 | 0.657498 | 0.657498 | 75 | 34.386665 | 25.387606 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.56 | false | false | 13 |
142eba2c4317b0f9c868a69ac41a91e8d29b5a10 | 31,610,959,317,882 | 1bcac378ac7778af3a337919acfdfd1d9ab7ebca | /jd1-module5-basic_of_oop/src/by/htp/homework/basic_of_oop/task3/View.java | f12550d1b6015b67809d8c7c4d42b8afc7ddcbb8 | [] | no_license | Ilia911/jd1-homework | https://github.com/Ilia911/jd1-homework | b3e9b33beeaf75d72e7eafb301a47dfb8ec08770 | 09e089a777ec44d33800dde4681e4beb5c4392ea | refs/heads/master | 2021-01-07T13:52:07.285000 | 2020-10-11T10:19:40 | 2020-10-11T10:19:40 | 241,714,255 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package by.htp.homework.basic_of_oop.task3;
public class View {
public void printAllHolyday(Calendar calendar) {
System.out.println("Holidays:");
for (Calendar.Month month : calendar.getMonthList()) {
System.out.println(month.getTitle() + ":");
for (Calendar.Day day : month.getDayList()) {
if ... | UTF-8 | Java | 539 | java | View.java | Java | [] | null | [] | package by.htp.homework.basic_of_oop.task3;
public class View {
public void printAllHolyday(Calendar calendar) {
System.out.println("Holidays:");
for (Calendar.Month month : calendar.getMonthList()) {
System.out.println(month.getTitle() + ":");
for (Calendar.Day day : month.getDayList()) {
if ... | 539 | 0.625232 | 0.623377 | 23 | 21.434782 | 20.652037 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.956522 | false | false | 13 |
77bc0a0d47eac96ffded1ee5facd89203f1e318b | 21,174,188,832,753 | f8ef7313b04aa25344c5277051dd5516366dc13d | /src/com/ufo/flamepernixfarmer/main/Core.java | f7d011dc4d483b5323cfc1c6b4684483f19253a2 | [] | no_license | UFOSrReal/Parabot | https://github.com/UFOSrReal/Parabot | 9ddaaf18559316cb3bc73914ecb73c26b552bd11 | 58a47f70cfced9b54a4bd2c6c17ef426a74c8d09 | refs/heads/master | 2021-01-11T20:08:00.116000 | 2017-02-23T23:14:34 | 2017-02-23T23:14:34 | 82,975,808 | 0 | 3 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ufo.flamepernixfarmer.main;
import com.ufo.flamepernixfarmer.strategies.Attack;
import com.ufo.flamepernixfarmer.strategies.HandleTile;
import com.ufo.flamepernixfarmer.strategies.Loot;
import com.ufo.flamepernixfarmer.strategies.Teleport;
import com.ufo.flamepernixfarmer.utils.Variables;
import org.parabo... | UTF-8 | Java | 4,508 | java | Core.java | Java | [
{
"context": "to Fryslan\n */\n@ScriptManifest(\n author = \"UFO\",\n name = \"UFOS Flame Pernix Farmer\",\n ",
"end": 954,
"score": 0.6786782741546631,
"start": 951,
"tag": "USERNAME",
"value": "UFO"
},
{
"context": " Ui window = new Ui();\n window.setTitle(\... | null | [] | package com.ufo.flamepernixfarmer.main;
import com.ufo.flamepernixfarmer.strategies.Attack;
import com.ufo.flamepernixfarmer.strategies.HandleTile;
import com.ufo.flamepernixfarmer.strategies.Loot;
import com.ufo.flamepernixfarmer.strategies.Teleport;
import com.ufo.flamepernixfarmer.utils.Variables;
import org.parabo... | 4,497 | 0.668589 | 0.65528 | 112 | 39.25893 | 31.419041 | 145 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.785714 | false | false | 13 |
9cc54d82d4d767c0b8cc546610ba4e30c7c3d6cb | 29,111,288,363,836 | 6fcc8805e841584aeb58d446dc544e3a251e2f78 | /seleniumMavenProject/src/main/java/MMPprojectAssignment/Data.java | ccf0f2f93d5f82e384c1021ec041e9ad9a634ff2 | [] | no_license | revathirao/MMP-Project | https://github.com/revathirao/MMP-Project | 8f84c517ad56f639e970dda0f83d2ef10b41dbcd | a2baae56cace489724c2a70fe92453dda76d403c | refs/heads/master | 2021-03-05T22:17:56.322000 | 2020-04-08T23:34:53 | 2020-04-08T23:34:53 | 246,157,405 | 0 | 0 | null | false | 2020-04-08T23:31:43 | 2020-03-09T22:44:21 | 2020-04-08T23:22:58 | 2020-04-08T23:29:08 | 17 | 0 | 0 | 1 | Java | false | false | package MMPprojectAssignment;
import java.util.ArrayList;
import java.util.HashMap;
import org.openqa.selenium.Alert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
//Code by Revathi
public class Data {
static WebDriver driver;
static HashMap<String, Str... | UTF-8 | Java | 3,106 | java | Data.java | Java | [
{
"context": "\nimport org.openqa.selenium.WebElement;\n\n//Code by Revathi\npublic class Data {\n\n\tstatic WebDriver driver;\n\ts",
"end": 245,
"score": 0.9886174201965332,
"start": 238,
"tag": "NAME",
"value": "Revathi"
}
] | null | [] | package MMPprojectAssignment;
import java.util.ArrayList;
import java.util.HashMap;
import org.openqa.selenium.Alert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
//Code by Revathi
public class Data {
static WebDriver driver;
static HashMap<String, Str... | 3,106 | 0.702511 | 0.691243 | 119 | 25.10084 | 22.441856 | 90 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.151261 | false | false | 13 |
3c558dcb4363310e7bf69b2c908df815c4ba3869 | 22,299,470,234,184 | 20ce73e6f7fcc54f4846ac9f426a8be6f6a18867 | /FinalFlameMaker/bin/ch/epfl/flamemaker/color/Color.java | 1093a8c6b5d1a574a65c3d6981915dd068a0c1b6 | [] | no_license | baraschi/FlameMaker | https://github.com/baraschi/FlameMaker | a116787e9c2f509902c05492c9b60e5b19b6cb52 | 1bf485922e531125c8a596dd66ddd5799a4e89fe | refs/heads/master | 2016-09-06T21:41:58.490000 | 2014-03-10T10:53:00 | 2014-03-10T10:53:00 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ch.epfl.flamemaker.color;
import ch.epfl.flamemaker.color.Color;
/**
* <b> La classe couleur nous permet de modeliser des fractales en couleur.</b>
* Ici, une couleur est caracterisee par un triplet de nombres.
*
* @author Lou Richard <lou.richard@epfl.ch> Sciper: 228149
* @author Zoe Baraschi <zoe.bara... | WINDOWS-1250 | Java | 3,086 | java | Color.java | Java | [
{
"context": "cterisee par un triplet de nombres.\n * \n * @author Lou Richard <lou.richard@epfl.ch> Sciper: 228149\n * @author Z",
"end": 249,
"score": 0.9998579025268555,
"start": 238,
"tag": "NAME",
"value": "Lou Richard"
},
{
"context": "n triplet de nombres.\n * \n * @author Lou... | null | [] | package ch.epfl.flamemaker.color;
import ch.epfl.flamemaker.color.Color;
/**
* <b> La classe couleur nous permet de modeliser des fractales en couleur.</b>
* Ici, une couleur est caracterisee par un triplet de nombres.
*
* @author <NAME> <<EMAIL>> Sciper: 228149
* @author <NAME> <<EMAIL>> Sciper: 219665
*
* ... | 3,050 | 0.600972 | 0.574392 | 129 | 22.914728 | 23.007593 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.589147 | false | false | 13 |
f2e05ab28fdd9da4f6562bdc300b1764b7e48437 | 10,299,331,599,034 | 0903e2f780eb83db57c64f7950409b9369d12b23 | /src/us/hqgaming/core/commands/commands/MemberCommand.java | 265402ce395cf6b2cc17e011cf9587ca5b602a8e | [] | no_license | xenojava/HQGamingCore | https://github.com/xenojava/HQGamingCore | 44ff1afdb5795e22f21e75e82e03d01e1617fd7d | 54a93b158bc86892f364ed04c4f82cce179c57a3 | refs/heads/master | 2018-09-08T02:09:44.785000 | 2014-10-16T19:50:03 | 2014-10-16T19:50:03 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package us.hqgaming.core.commands.commands;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.Sound;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import us.hqgaming.api.Chat;
import us.hqgaming.core.commands.CommandException;
import us.hqgaming.core.security.Security... | UTF-8 | Java | 2,053 | java | MemberCommand.java | Java | [] | null | [] | package us.hqgaming.core.commands.commands;
import org.bukkit.Bukkit;
import org.bukkit.ChatColor;
import org.bukkit.Sound;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import us.hqgaming.api.Chat;
import us.hqgaming.core.commands.CommandException;
import us.hqgaming.core.security.Security... | 2,053 | 0.571846 | 0.566975 | 66 | 30.10606 | 29.78261 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.590909 | false | false | 13 |
d53def7ec0fd13e219aadc459e70c01151698c2e | 17,970,143,190,189 | 0d664528c6543dbc5b0475cfabb1cac7a2a96419 | /untitled/src/OOneCheckPowerOfTwo.java | d0f15dbec33b6cfd0630c9824befd64622eca384 | [] | no_license | liaozihan/Lintcode | https://github.com/liaozihan/Lintcode | 384f6adfba249cbdc64a6cf92114447012ebaaf2 | 75854b4176cca89d2afd03283df6cbc762694711 | refs/heads/master | 2018-01-10T03:03:49.630000 | 2016-01-26T08:03:14 | 2016-01-26T08:03:14 | 50,083,598 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Created by zliao on 1/6/16.
*/
public class OOneCheckPowerOfTwo {
public static void main(String[] args){
OOneCheckPowerOfTwo oocpot = new OOneCheckPowerOfTwo();
System.out.println(oocpot.checkPowerOf2(11));
}
public boolean checkPowerOf2(int n) {
// write your code here
... | UTF-8 | Java | 377 | java | OOneCheckPowerOfTwo.java | Java | [
{
"context": "/**\n * Created by zliao on 1/6/16.\n */\npublic class OOneCheckPowerOfTwo {",
"end": 23,
"score": 0.9991498589515686,
"start": 18,
"tag": "USERNAME",
"value": "zliao"
}
] | null | [] | /**
* Created by zliao on 1/6/16.
*/
public class OOneCheckPowerOfTwo {
public static void main(String[] args){
OOneCheckPowerOfTwo oocpot = new OOneCheckPowerOfTwo();
System.out.println(oocpot.checkPowerOf2(11));
}
public boolean checkPowerOf2(int n) {
// write your code here
... | 377 | 0.604775 | 0.575597 | 16 | 22.5625 | 21.86598 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.1875 | false | false | 13 |
f05d23daf7ae49d6026d0ec329b3b74f5d048960 | 27,831,388,105,881 | 1dc575048d61c2060cc397186ed1f18491b53631 | /spring-mvc4-mybatis/src/main/java/com/iii/emp/batch/service/impl/MessegePrintServiceImpl.java | 987e8377cf7a52d2207fbfc1890fde557f0cd73b | [] | no_license | dick6619/spring-mvc4-2018 | https://github.com/dick6619/spring-mvc4-2018 | 8363c5666e930ddbbff713b9983a11f2607c817c | 3a4435b1e2ed97d8ef06f3290694a7e072728554 | refs/heads/master | 2022-10-08T09:23:07.485000 | 2022-01-17T14:19:53 | 2022-01-17T14:19:53 | 132,912,839 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.iii.emp.batch.service.impl;
import java.util.Date;
import org.springframework.stereotype.Service;
import com.iii.emp.batch.service.MessegePrintService;
@Service("messegePrintService")
public class MessegePrintServiceImpl implements MessegePrintService {
@Override
public String printMessege() {
// T... | UTF-8 | Java | 465 | java | MessegePrintServiceImpl.java | Java | [] | null | [] | package com.iii.emp.batch.service.impl;
import java.util.Date;
import org.springframework.stereotype.Service;
import com.iii.emp.batch.service.MessegePrintService;
@Service("messegePrintService")
public class MessegePrintServiceImpl implements MessegePrintService {
@Override
public String printMessege() {
// T... | 465 | 0.769892 | 0.767742 | 18 | 24.833334 | 29.214247 | 107 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 13 |
e8a7ddf53c79a134ec3ef680848fd925c280a66c | 1,056,561,965,751 | f74ff1867c7a11d5e1b9e918e94b88686324e224 | /RoleBasedAccessControlSecurity/rbaclibrary/src/main/java/demo/rbac/library/WebPage.java | da14d52f6cfb78aee26da8248af1e78d842e89ce | [] | no_license | ctmobiledev/RBAC_Demo | https://github.com/ctmobiledev/RBAC_Demo | 4f84f5e4d241c0e26c48a1acf05ede0ac60497f5 | e65964afefc60591f99070c89c2349d6e4ab98f8 | refs/heads/master | 2022-12-21T04:23:27.261000 | 2020-09-15T22:31:19 | 2020-09-15T22:31:19 | 295,840,761 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package demo.rbac.library;
import java.util.ArrayList;
import java.util.List;
public class WebPage {
private Integer _id; // this appears in other tables
public Integer getId() {
return _id;
}
public void setId(Integer value) {
this._id = value;
}
private String _u... | UTF-8 | Java | 618 | java | WebPage.java | Java | [] | null | [] | package demo.rbac.library;
import java.util.ArrayList;
import java.util.List;
public class WebPage {
private Integer _id; // this appears in other tables
public Integer getId() {
return _id;
}
public void setId(Integer value) {
this._id = value;
}
private String _u... | 618 | 0.590615 | 0.590615 | 31 | 18.935484 | 18.058928 | 67 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.419355 | false | false | 13 |
1b41414366b55ddcd0e53d1d8188949050e51289 | 1,056,561,961,975 | 10f5e1653986026bd20b881be5d98be6c7bb12bd | /src/game/GameEngine.java | f1088f7d9023e226fcfba1ef20151ca0753e1ce1 | [] | no_license | MatanDavidian/Aoop_hw3 | https://github.com/MatanDavidian/Aoop_hw3 | 5c7cf81a12a4a9dbb6fbdb06c328ff60ccc5b7a9 | dc64dd4495b9e1572fd0fc6102d7dafb1df05dfd | refs/heads/master | 2020-05-09T22:34:20.595000 | 2019-05-02T16:57:01 | 2019-05-02T16:57:01 | 181,475,457 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package game;
import game.arena.WinterArena;
import game.competition.Competition;
import game.competition.Competitor;
import utilities.ValidationUtils;
import static java.lang.Thread.sleep;
/**
* Created by Matan & Tom on 15-Apr-19.
*/
public class GameEngine{
private static GameEngine instance;... | UTF-8 | Java | 1,384 | java | GameEngine.java | Java | [
{
"context": "atic java.lang.Thread.sleep;\r\n\r\n/**\r\n * Created by Matan & Tom on 15-Apr-19.\r\n */\r\npublic class GameEngine",
"end": 226,
"score": 0.9993647336959839,
"start": 221,
"tag": "NAME",
"value": "Matan"
},
{
"context": "a.lang.Thread.sleep;\r\n\r\n/**\r\n * Created b... | null | [] | package game;
import game.arena.WinterArena;
import game.competition.Competition;
import game.competition.Competitor;
import utilities.ValidationUtils;
import static java.lang.Thread.sleep;
/**
* Created by Matan & Tom on 15-Apr-19.
*/
public class GameEngine{
private static GameEngine instance;... | 1,384 | 0.629335 | 0.626445 | 56 | 22.714285 | 22.934467 | 130 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.25 | false | false | 13 |
9bff9dfabcfd5de1b5015dfe3012b2f8f4922924 | 7,404,523,667,165 | 19b9cf46262561f19d5e54de3dcc6af1dbd008e6 | /src/ReverseLL.java | 24eae8819570cc5a64c546593a22dd81c9f61263 | [] | no_license | arnab-ray/assignments | https://github.com/arnab-ray/assignments | 559d14006ca848f8b20cf3ee6a518955d3e6164a | e56b38bcf506bab90d5d197a42070ec5371c9cca | refs/heads/master | 2022-04-03T10:04:41.384000 | 2020-02-10T07:00:03 | 2020-02-10T07:00:03 | 116,450,895 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class ReverseLL {
private static class Node {
int val;
Node next;
Node(int val) {
this.val = val;
this.next = null;
}
}
private static Node revList(Node head) {
if(head == null || head.next == null)
return head;
N... | UTF-8 | Java | 1,444 | java | ReverseLL.java | Java | [] | null | [] | public class ReverseLL {
private static class Node {
int val;
Node next;
Node(int val) {
this.val = val;
this.next = null;
}
}
private static Node revList(Node head) {
if(head == null || head.next == null)
return head;
N... | 1,444 | 0.484072 | 0.480609 | 69 | 19.927536 | 15.672665 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.536232 | false | false | 13 |
47e25e35ab529843ec6b1077fc7d7ab5182dcabe | 7,782,480,803,091 | a7dbb8bb5ca174ed945e5ac727b5ce4cdc9c2acf | /src/main/java/guides/hazelcast/tomcatsessionmanager/CommandController.java | f5ff27776e2737b758659f297638a5c8cca175b3 | [] | no_license | rgidda-west/springboot-tomcat-session-replication | https://github.com/rgidda-west/springboot-tomcat-session-replication | 74b0a2a2a9e7ad720f0a46796c68b98b64a6fca6 | d00b1effc6335ef162cca46b39db6df2d6ef55b1 | refs/heads/master | 2023-08-07T00:09:08.827000 | 2021-10-04T07:59:44 | 2021-10-04T07:59:44 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package guides.hazelcast.tomcatsessionmanager;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpSession;
@RestController
public class CommandControll... | UTF-8 | Java | 820 | java | CommandController.java | Java | [] | null | [] | package guides.hazelcast.tomcatsessionmanager;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpSession;
@RestController
public class CommandControll... | 820 | 0.747561 | 0.747561 | 24 | 33.166668 | 34.117039 | 139 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.541667 | false | false | 13 |
056eba67010ba9fda77ae2190bd31f5f44512e8c | 9,990,093,996,647 | b3d994029fed3d7f7575bd4beaa4024158875782 | /app_android/src/android/kankan/TestActivity.java | 604afafa49717a1f050d867ad22060b6e0aac686 | [] | no_license | RyanTech/kankan | https://github.com/RyanTech/kankan | bd68868825a8dd9456729d953039cd41b0703dff | 188b0f6a5c73521aa0b6a6ff1e87921655511595 | refs/heads/master | 2016-09-07T04:38:04.868000 | 2013-07-28T13:27:09 | 2013-07-28T13:27:09 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package android.kankan;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.LinearLayout;
public class TestActivity extends Activity implements OnTouchListener {
pri... | UTF-8 | Java | 1,244 | java | TestActivity.java | Java | [] | null | [] | package android.kankan;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.LinearLayout;
public class TestActivity extends Activity implements OnTouchListener {
pri... | 1,244 | 0.75 | 0.75 | 48 | 24.916666 | 22.294275 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.9375 | false | false | 13 |
d6410c6bd6cb2d536c2d53f47f5997cad781be18 | 8,486,855,389,765 | 54407cc10297e90db781abee9a98c2fabc98beb6 | /src/main/java/com/gmail/jannyboy11/customrecipes/impl/crafting/custom/ingredient/CountIngredient.java | cbc63fb9e8649fb0feac205b19818bb91049f713 | [
"BSD-2-Clause"
] | permissive | NurPech/CustomRecipes | https://github.com/NurPech/CustomRecipes | 40877934d84cc846c338b4b4b340aef14bc5d630 | a78d6d15d2885cc7137c6dc59a1cccd6d8c17922 | refs/heads/master | 2020-06-04T17:34:21.683000 | 2019-06-15T22:06:27 | 2019-06-15T22:06:27 | 192,126,452 | 0 | 0 | BSD-2-Clause | true | 2019-06-15T21:46:12 | 2019-06-15T21:46:12 | 2019-05-16T16:51:06 | 2017-10-24T20:07:36 | 543 | 0 | 0 | 0 | null | false | false | package com.gmail.jannyboy11.customrecipes.impl.crafting.custom.ingredient;
import com.gmail.jannyboy11.customrecipes.util.ReflectionUtil;
import net.minecraft.server.v1_12_R1.RecipeItemStack;
public class CountIngredient extends CombinedIngredient {
private final RecipeItemStack basePredicate;
private final int... | UTF-8 | Java | 833 | java | CountIngredient.java | Java | [
{
"context": "package com.gmail.jannyboy11.customrecipes.impl.crafting.custom.ingredient;\n\ni",
"end": 28,
"score": 0.8789676427841187,
"start": 18,
"tag": "USERNAME",
"value": "jannyboy11"
},
{
"context": "mpl.crafting.custom.ingredient;\n\nimport com.gmail.jannyboy11.customrecipes... | null | [] | package com.gmail.jannyboy11.customrecipes.impl.crafting.custom.ingredient;
import com.gmail.jannyboy11.customrecipes.util.ReflectionUtil;
import net.minecraft.server.v1_12_R1.RecipeItemStack;
public class CountIngredient extends CombinedIngredient {
private final RecipeItemStack basePredicate;
private final int... | 833 | 0.793517 | 0.783914 | 29 | 27.724138 | 29.059862 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.482759 | false | false | 13 |
4645e1274aa98a0da3145c4f7769f516cb9ea38e | 25,400,436,655,896 | 572f7811de3919f21663a52706da3b547dc459b6 | /BBQ_GUI_v1/src/java/de/gsi/sd/BBQ_Proto1/data/FESAAdcSettings.java | fdb4579eb2d8910e6db218e45624512825aca6d0 | [] | no_license | rahulgsin/GUI | https://github.com/rahulgsin/GUI | 274ff3404fe931389081f72d01d9b8c5ab40a28d | dc972e0f6c3832625ac59fdfd1402fa7f073fca6 | refs/heads/master | 2016-09-05T13:48:53.361000 | 2014-06-10T22:09:27 | 2014-06-10T22:09:27 | 20,052,543 | 0 | 0 | null | false | 2014-06-11T14:09:43 | 2014-05-22T07:52:22 | 2014-06-11T14:09:43 | 2014-06-11T14:06:02 | 20,588 | 0 | 0 | 1 | Java | null | null | /*****************************************************************************
* *
* PrimerExample1 - Settings of FESA class *
* *
* m... | UTF-8 | Java | 1,507 | java | FESAAdcSettings.java | Java | [
{
"context": " *\n * modified: 2010-08-04 Harald Braeuning *\n * ",
"end": 356,
"score": 0.9999017119407654,
"start": 340,
"tag": "NAME",
"value": "Harald Braeuning"
}
] | null | [] | /*****************************************************************************
* *
* PrimerExample1 - Settings of FESA class *
* *
* m... | 1,497 | 0.474453 | 0.465826 | 65 | 22.184616 | 26.781103 | 101 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.369231 | false | false | 13 |
280156f0cd47f44dc5b2a1674130e54a6f851874 | 29,326,036,763,576 | 63ec9e17dbc7f816799bb97839528f1fcce68d4d | /src/test/java/de/kernebeck/escaperoom/escaperoomgame/core/service/entity/impl/WorkflowPartServiceBeanUnitTest.java | 8d78340737ec81e6e1e997789e1259472c692cf1 | [] | no_license | Kerni92/EscaperoomWorkflowEngine | https://github.com/Kerni92/EscaperoomWorkflowEngine | e3a228dd68c31bc1fb80748aab945aa78ae4a083 | c2d037ab251d15a7ebf92994f9941ae9863190a0 | refs/heads/main | 2023-08-31T13:02:39.677000 | 2021-10-21T21:34:09 | 2021-10-21T21:34:09 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package de.kernebeck.escaperoom.escaperoomgame.core.service.entity.impl;
import de.kernebeck.escaperoom.escaperoomgame.AbstractUnitTest;
import de.kernebeck.escaperoom.escaperoomgame.core.datamodel.entity.definition.WorkflowPart;
import de.kernebeck.escaperoom.escaperoomgame.core.datamodel.repository.definition.Workfl... | UTF-8 | Java | 1,368 | java | WorkflowPartServiceBeanUnitTest.java | Java | [] | null | [] | package de.kernebeck.escaperoom.escaperoomgame.core.service.entity.impl;
import de.kernebeck.escaperoom.escaperoomgame.AbstractUnitTest;
import de.kernebeck.escaperoom.escaperoomgame.core.datamodel.entity.definition.WorkflowPart;
import de.kernebeck.escaperoom.escaperoomgame.core.datamodel.repository.definition.Workfl... | 1,368 | 0.803363 | 0.801901 | 38 | 35.026318 | 32.393539 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 13 |
c981e34d8d9cb5ef0e235d315bb602f50f656bcd | 11,536,282,161,420 | f50de836b97f9246366ab0a72859f88ccffb8656 | /app/src/main/java/com/zy/xxl/dynamicaddview/util/PreCons.java | 53bbbe4792d6192ce524a92c49e24875a078d534 | [] | no_license | ainiyiwan/DynamicAddView | https://github.com/ainiyiwan/DynamicAddView | ac1b7f6c2c658026b61a7c3d62a9cfa1de57a49d | 158425cb6352bdccca508376599919839b568f1a | refs/heads/master | 2021-08-17T09:58:03.016000 | 2017-11-21T02:53:19 | 2017-11-21T02:53:19 | 111,490,659 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.zy.xxl.dynamicaddview.util;
/**
* Author : zhangyang
* Date : 2017/11/20
* Email : 18610942105@163.com
* Description :
*/
public class PreCons {
public static final String FIRST_OPEN_SHARE_ACT = "first_open_shareAct";
}
| UTF-8 | Java | 252 | java | PreCons.java | Java | [
{
"context": "e com.zy.xxl.dynamicaddview.util;\n\n/**\n * Author : zhangyang\n * Date : 2017/11/20\n * Email : 18610942105@1",
"end": 66,
"score": 0.9328687787055969,
"start": 57,
"tag": "USERNAME",
"value": "zhangyang"
},
{
"context": "r : zhangyang\n * Date : 2017/11/20\n * ... | null | [] | package com.zy.xxl.dynamicaddview.util;
/**
* Author : zhangyang
* Date : 2017/11/20
* Email : <EMAIL>
* Description :
*/
public class PreCons {
public static final String FIRST_OPEN_SHARE_ACT = "first_open_shareAct";
}
| 240 | 0.677419 | 0.58871 | 12 | 19.666666 | 21.206656 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.166667 | false | false | 13 |
1828db1855eb73023e73e02e896956f5b8ec0ca2 | 16,947,940,961,562 | e7b67e2d2f488aa8760c20df0dc7dbf68a43e84e | /src/com/tzmb2c/web/action/HomePackageAction.java | 8b40b470e9a6191d8c623a4fabf0b43cdec9267c | [] | no_license | 1658544535/java | https://github.com/1658544535/java | 573f10b1a4f759444bd9382f5584a26ddc7f6833 | e026335e89e3f2ae6c4143e48a0ea0f89870daa0 | refs/heads/master | 2021-01-11T06:37:55.119000 | 2017-02-08T03:13:12 | 2017-02-08T03:13:12 | 81,417,586 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.tzmb2c.web.action;
import java.io.File;
import java.sql.SQLException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import maowu.framework.utils.web.SuperAction;
import net.sf.json.JSONArray;
import ... | UTF-8 | Java | 10,924 | java | HomePackageAction.java | Java | [] | null | [] | package com.tzmb2c.web.action;
import java.io.File;
import java.sql.SQLException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import maowu.framework.utils.web.SuperAction;
import net.sf.json.JSONArray;
import ... | 10,924 | 0.594089 | 0.5896 | 372 | 26.741936 | 22.787424 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.502688 | false | false | 13 |
434f1ca3c1358fc51b317e5bbcff3dac2512585e | 10,118,942,963,740 | 90e07ca48504b8450a2f675ee8991af4a94c6400 | /river-ms-project/src/main/java/com/river/ms/project/entity/ResRefRoleOrg.java | 1e6c457b2413c5b96b4840747c6e5b175b768de0 | [] | no_license | moutainhigh/touzi | https://github.com/moutainhigh/touzi | 78e1881cc2a104c56c22157e39c7aa55686bebc8 | e34fe04148c82a87bef6263f145917118d5c89de | refs/heads/master | 2021-09-19T02:33:50.190000 | 2018-07-22T10:49:23 | 2018-07-22T10:49:23 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.river.ms.project.entity;
import com.baomidou.mybatisplus.enums.IdType;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
/**
* <p>
*
* </p>
*
* @author zyb
* @since 2018-04-19
*/
@TableName("res_ref_role_org")
p... | UTF-8 | Java | 2,512 | java | ResRefRoleOrg.java | Java | [
{
"context": "erializable;\n\n/**\n * <p>\n * \n * </p>\n *\n * @author zyb\n * @since 2018-04-19\n */\n@TableName(\"res_ref_role",
"end": 262,
"score": 0.9996299743652344,
"start": 259,
"tag": "USERNAME",
"value": "zyb"
}
] | null | [] | package com.river.ms.project.entity;
import com.baomidou.mybatisplus.enums.IdType;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
/**
* <p>
*
* </p>
*
* @author zyb
* @since 2018-04-19
*/
@TableName("res_ref_role_org")
p... | 2,512 | 0.661692 | 0.655473 | 133 | 17.135338 | 16.395388 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.090226 | false | false | 13 |
6e314b28850434ad3c0e5d791bbb855d86452c35 | 24,318,104,857,304 | 3b091bb35f0f0352b341c3e3f385adf5d3f0a490 | /like-shiro/src/main/java/com/janita/like/service/base/RoleService.java | 308d7a5caa5d3f18911cb5d2a2043e16930ddc7e | [] | no_license | janforp/shiro-parent | https://github.com/janforp/shiro-parent | abdf15014a2f15b172719a227f18345b3a65ee04 | fff157938e5b1c400f183cdd6a924e76cbce037f | refs/heads/master | 2020-04-05T13:05:08.352000 | 2017-07-04T08:10:31 | 2017-07-04T08:10:31 | 94,745,581 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.janita.like.service.base;
import com.janita.like.dao.RoleDAO;
import com.janita.like.entity.Role;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* Created by Janita on 2017/6/21 0021-下午 12:45
* 该类是:
*/
@Service
p... | UTF-8 | Java | 823 | java | RoleService.java | Java | [
{
"context": "ervice;\n\nimport java.util.List;\n\n/**\n * Created by Janita on 2017/6/21 0021-下午 12:45\n * 该类是:\n */\n@Service\np",
"end": 270,
"score": 0.9969726204872131,
"start": 264,
"tag": "USERNAME",
"value": "Janita"
}
] | null | [] | package com.janita.like.service.base;
import com.janita.like.dao.RoleDAO;
import com.janita.like.entity.Role;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* Created by Janita on 2017/6/21 0021-下午 12:45
* 该类是:
*/
@Service
p... | 823 | 0.669201 | 0.65019 | 35 | 21.542856 | 19.806698 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.285714 | false | false | 13 |
17e5a22773ce585df8ab94ea59c464e85beaa474 | 31,739,808,342,861 | bf4122f5ae3a9f9b9c2cc94ef87cdb9dcadc9dc9 | /Transfer/TYSS_PROJECTS/Module1Project/phonesimulator/src/com/tyss/phonesimulator/controller/Validation.java | 5a40a8a59a410a991e362955048847e413b9a243 | [] | no_license | haren7474/TY_ELF_JFS_HarendraKumar | https://github.com/haren7474/TY_ELF_JFS_HarendraKumar | 7ef8b9a0bb6d6bdddb94b88ab2db4e0aef0fbc1d | f99ef30b40d0877167c8159e8b7f322af7cc87b9 | refs/heads/master | 2023-01-11T01:01:10.458000 | 2020-01-23T18:20:20 | 2020-01-23T18:20:20 | 225,845,989 | 0 | 0 | null | false | 2023-01-07T22:01:21 | 2019-12-04T11:00:37 | 2020-01-23T18:20:44 | 2023-01-07T22:01:20 | 156,906 | 0 | 0 | 172 | HTML | false | false | package com.tyss.phonesimulator.controller;
public class Validation {
public static boolean checkName(String cname) {
return cname.matches("[A-Z][a-z]*") && cname.length()>3 && cname.length()<10;
}
}
| UTF-8 | Java | 205 | java | Validation.java | Java | [] | null | [] | package com.tyss.phonesimulator.controller;
public class Validation {
public static boolean checkName(String cname) {
return cname.matches("[A-Z][a-z]*") && cname.length()>3 && cname.length()<10;
}
}
| 205 | 0.707317 | 0.692683 | 7 | 28.285715 | 27.834789 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.857143 | false | false | 13 |
6e3d05ba65fb200ffbf5d4085dde97b9501b69c4 | 28,724,741,325,022 | e18f2e986dbb40c38dd84e37940be350d60241c1 | /app/src/main/java/ecuaciones/gt/com/ecuaciones/Ecuacion2IncognitasRelleno.java | cedf615e61808bc0abe325c5cfe87315c52476d5 | [] | no_license | EduardoColon/Ecuaciones-master | https://github.com/EduardoColon/Ecuaciones-master | b82dfaffebd2943ad796184fa51394f17895c5cd | 59144ed132e7a433881d0b51d40625739a9bc7f4 | refs/heads/master | 2019-05-13T15:37:30.491000 | 2016-08-05T22:51:15 | 2016-08-05T22:51:15 | 64,962,730 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ecuaciones.gt.com.ecuaciones;
import android.content.DialogInterface;
import android.graphics.Color;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.widget.Co... | UTF-8 | Java | 7,780 | java | Ecuacion2IncognitasRelleno.java | Java | [] | null | [] | package ecuaciones.gt.com.ecuaciones;
import android.content.DialogInterface;
import android.graphics.Color;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.widget.Co... | 7,780 | 0.519152 | 0.494344 | 241 | 31.282158 | 24.576481 | 138 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.701245 | false | false | 13 |
416bf477715962964231b397f2cf726904c664dc | 28,621,662,099,229 | 107e011afb4055fd39e9777108d4bca40c125976 | /Gateway/src/main/java/imt/atlantique/sss/upas/cricket/entities/Position.java | 32619b12a6248b6563350119b4e596ebac030756 | [] | no_license | ahenteti/CricketProject | https://github.com/ahenteti/CricketProject | a804df043321d8eb725aa4a5aa73a828d1bce8cb | 523b8ea80c9d31f1aafebf98af351f2fa67f2610 | refs/heads/master | 2017-12-02T12:45:30.965000 | 2017-03-18T00:22:16 | 2017-03-18T00:22:16 | 85,363,046 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package imt.atlantique.sss.upas.cricket.entities;
/**
* X, Y, Z coordinate.
*
*
* @author Allen Miu
*/
public class Position {
private double x;
private double y;
private double z;
public Position(double x, double y, double z) {
this.x = x;
this.y = y;
this.z = z;
}
public String toString() {
i... | UTF-8 | Java | 1,574 | java | Position.java | Java | [
{
"context": "ties;\n\n/**\n * X, Y, Z coordinate.\n *\n *\n * @author Allen Miu\n */\npublic class Position {\n\t\n\tprivate double x;\n",
"end": 104,
"score": 0.9998029470443726,
"start": 95,
"tag": "NAME",
"value": "Allen Miu"
}
] | null | [] | package imt.atlantique.sss.upas.cricket.entities;
/**
* X, Y, Z coordinate.
*
*
* @author <NAME>
*/
public class Position {
private double x;
private double y;
private double z;
public Position(double x, double y, double z) {
this.x = x;
this.y = y;
this.z = z;
}
public String toString() {
if (... | 1,571 | 0.581957 | 0.566074 | 93 | 15.924731 | 17.399937 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.731183 | false | false | 13 |
44feaca8ee4b070b4dcf7b95cafd87a8a33fad84 | 29,515,015,297,047 | a03ab25431c9142d6ddc5efafc609d7875af38d2 | /PS2/Geometry.java | adbcb27aa774393cfdb7bb3d19457c1467a27bbd | [] | no_license | sidHathi/CS10 | https://github.com/sidHathi/CS10 | 047d89c8848439251afe3e7c3a9ea21129d13ce0 | 5a9f5c33e6d2fc951bdda3fc8bc45c74e5e0dfed | refs/heads/master | 2023-06-26T22:06:56.685000 | 2021-04-24T22:29:25 | 2021-04-24T22:29:25 | 361,274,885 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Geometry helper methods
*
* @author Chris Bailey-Kellogg, Dartmouth CS 10, Spring 2015
* @author CBK, Fall 2016, separated from quadtree, instrumented to count calls
*
*/
public class Geometry {
private static int numInCircleTests = 0; // keeps track of how many times pointInCircle has been called
pri... | UTF-8 | Java | 1,908 | java | Geometry.java | Java | [
{
"context": "/**\n * Geometry helper methods\n * \n * @author Chris Bailey-Kellogg, Dartmouth CS 10, Spring 2015\n * @author C",
"end": 58,
"score": 0.9994016289710999,
"start": 46,
"tag": "NAME",
"value": "Chris Bailey"
},
{
"context": "ometry helper methods\n * \n * @author Chris ... | null | [] | /**
* Geometry helper methods
*
* @author <NAME>-Kellogg, Dartmouth CS 10, Spring 2015
* @author CBK, Fall 2016, separated from quadtree, instrumented to count calls
*
*/
public class Geometry {
private static int numInCircleTests = 0; // keeps track of how many times pointInCircle has been called
private s... | 1,902 | 0.714885 | 0.698113 | 58 | 31.896551 | 32.704365 | 127 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.862069 | false | false | 13 |
9858e86c44efb99208c6be9eaa29dc0ce0bbdc4b | 12,635,793,839,327 | 28354c7cd494a88d6284067c2079548b748e3327 | /src/main/java/leetcode/dfs_and_memo/MinimumDifficultyofaJobSchedule1335.java | 0ef9e18407f2ccd3c9792841c4a7bf7c369c3d84 | [] | no_license | VicnentX/LeetCode | https://github.com/VicnentX/LeetCode | 639c9e8ba1bad383966158b5d088ac1c7f117c2e | d3eb82a9403ea919cacf242e4904d570256bacfd | refs/heads/master | 2021-06-09T21:37:10.482000 | 2021-05-01T01:03:40 | 2021-05-01T01:03:40 | 158,880,943 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package leetcode.dfs_and_memo;
/*
You want to schedule a list of jobs in d days. Jobs are dependent (i.e To work on the i-th job, you have to finish all the jobs j where 0 <= j < i).
You have to finish at least one task every day. The difficulty of a job schedule is the sum of difficulties of each day of the d days. ... | UTF-8 | Java | 3,764 | java | MinimumDifficultyofaJobSchedule1335.java | Java | [] | null | [] | package leetcode.dfs_and_memo;
/*
You want to schedule a list of jobs in d days. Jobs are dependent (i.e To work on the i-th job, you have to finish all the jobs j where 0 <= j < i).
You have to finish at least one task every day. The difficulty of a job schedule is the sum of difficulties of each day of the d days. ... | 3,764 | 0.576188 | 0.546969 | 139 | 25.345324 | 31.804871 | 211 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.669065 | false | false | 13 |
1659731c84afa1abd8e66157094188277faac693 | 27,462,020,938,283 | ec1f17c2a2dface46d9a6822bf7f9e70483af5d1 | /main/java/frc/robot/subsystems/Vision.java | bcb89e92abf02657dbb5415403c226630a4fee6c | [] | no_license | Team2883/Competition_Code_2020 | https://github.com/Team2883/Competition_Code_2020 | 231b0c721f11e311e7af98e4df9f197e7266119d | 8d9f7db075ba9548be5075f481a51fe96428f606 | refs/heads/master | 2021-01-01T08:05:43.437000 | 2020-03-12T00:40:01 | 2020-03-12T00:40:01 | 239,188,133 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*----------------------------------------------------------------------------*/
/* Copyright (c) 2019 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory... | UTF-8 | Java | 2,248 | java | Vision.java | Java | [] | null | [] | /*----------------------------------------------------------------------------*/
/* Copyright (c) 2019 FIRST. All Rights Reserved. */
/* Open Source Software - may be modified and shared by FRC teams. The code */
/* must be accompanied by the FIRST BSD license file in the root directory... | 2,248 | 0.649021 | 0.640125 | 57 | 37.438595 | 25.755951 | 81 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.596491 | false | false | 13 |
44fc27a11eeab0444ce7180ca9474b000ae7ae92 | 20,804,821,630,352 | 7d9844126a07a182d6492fd8eead0a7b48942514 | /src/ativaula_21_09/AtivAula_21_09.java | f3a19912b8cba7e5ecfb8eef6f4c1f2e424c3330 | [] | no_license | ufjf-dcc171/ufjf-dcc171-2017-3-exrx1-gabrielnascimento95 | https://github.com/ufjf-dcc171/ufjf-dcc171-2017-3-exrx1-gabrielnascimento95 | 5603520706b6dcbc3fc87920f58dc20d6c34df13 | b9e6b83967ccfe0e7e37c4185e6a943a8600c15d | refs/heads/master | 2021-07-04T03:08:11.689000 | 2017-09-26T18:37:01 | 2017-09-26T18:37:01 | 104,422,715 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* 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 ativaula_21_09;
import javax.swing.JFrame;
import java.util.ArrayList;
import java.util.List;
/**
*
* @author ... | UTF-8 | Java | 1,007 | java | AtivAula_21_09.java | Java | [
{
"context": "st;\r\nimport java.util.List;\r\n\r\n/**\r\n *\r\n * @author Gabriel_Nascimento\r\n */\r\npublic class AtivAula_21_09 {\r\n\r\n /**\r\n ",
"end": 338,
"score": 0.9997512102127075,
"start": 320,
"tag": "NAME",
"value": "Gabriel_Nascimento"
}
] | null | [] | /*
* 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 ativaula_21_09;
import javax.swing.JFrame;
import java.util.ArrayList;
import java.util.List;
/**
*
* @author ... | 1,007 | 0.598808 | 0.581927 | 41 | 22.560976 | 20.610262 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.439024 | false | false | 13 |
a806ca6fdb51eef0ae19f48965545e19d53e339c | 16,595,753,652,572 | e92661dd79a4d7519aed1fec8db6154b735cada1 | /src/test/java/cz/certicon/routing/utils/EffectiveUtilsTest.java | a440e4e839a783e26cb967a915911d763440052d | [] | no_license | blahami2/routing-sra | https://github.com/blahami2/routing-sra | f3857ba0e27e9a603c0482e666c47fa5ece08b84 | 16a7cd58f8eeff7d0ad1f93051cd2e23bd081886 | refs/heads/master | 2020-05-22T02:47:23.433000 | 2016-12-07T08:21:16 | 2016-12-07T08:21:16 | 65,298,579 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cz.certicon.routing.utils;
import org.junit.Test;
import static cz.certicon.routing.utils.EffectiveUtils.*;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;
/**
* @author Michael Blaha {@literal <blahami2@gmail.com>}
*/
public class EffectiveUtilsTest {
@Test
public voi... | UTF-8 | Java | 6,921 | java | EffectiveUtilsTest.java | Java | [
{
"context": "tatic org.hamcrest.CoreMatchers.*;\n\n/**\n * @author Michael Blaha {@literal <blahami2@gmail.com>}\n */\npublic class ",
"end": 224,
"score": 0.9998214244842529,
"start": 211,
"tag": "NAME",
"value": "Michael Blaha"
},
{
"context": "t.CoreMatchers.*;\n\n/**\n * @author... | null | [] | package cz.certicon.routing.utils;
import org.junit.Test;
import static cz.certicon.routing.utils.EffectiveUtils.*;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;
/**
* @author <NAME> {@literal <<EMAIL>>}
*/
public class EffectiveUtilsTest {
@Test
public void fillArray_int_fo... | 6,903 | 0.593411 | 0.587776 | 174 | 38.781609 | 34.848911 | 182 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.66092 | false | false | 13 |
0546f4c43073bfe61fb4aa8bfba83ba339f7cf49 | 25,134,148,682,497 | a8a5b98457dce960ad09d90147ae43d324839f49 | /api/src/main/java/com/adfonic/webservices/service/impl/SegmentCopyService.java | 9de31053dc4b9a2d9f638cb77ea87b2449a8474f | [] | no_license | graemeparker/cinofda | https://github.com/graemeparker/cinofda | fbb88791f964fefd37134b5845d9f69ca6875bd4 | 5f669d9dfdded5d511eeea585ea25d7b244d3635 | refs/heads/master | 2021-03-22T03:01:36.367000 | 2016-10-14T14:17:54 | 2016-10-14T14:17:54 | 70,915,669 | 1 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.adfonic.webservices.service.impl;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.adfonic.domain.Campaign;
import com.adfonic.domain.Category;
import com.adfonic... | UTF-8 | Java | 11,340 | java | SegmentCopyService.java | Java | [] | null | [] | package com.adfonic.webservices.service.impl;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.adfonic.domain.Campaign;
import com.adfonic.domain.Category;
import com.adfonic... | 11,340 | 0.698854 | 0.697531 | 266 | 41.63158 | 35.734818 | 167 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.680451 | false | false | 13 |
c6c9f985e265bbe5ac02cd0354badb473d5bde80 | 4,681,514,401,833 | 6e4657c71287193c1c8b5b9f23789ef7dea1f08c | /src/Juego/Disparo.java | ca809e0f8e15f23994339186fe3743008ed6e040 | [] | no_license | aacm13/ProyectoPoo | https://github.com/aacm13/ProyectoPoo | a7968bc2deeb7d2a8202c62f1b11ac8a7747c995 | 2a6a830ff7a80e0359871620550ba9b7e773e30e | refs/heads/master | 2020-03-22T15:49:41.763000 | 2018-07-09T12:21:31 | 2018-07-09T12:21:31 | 140,281,765 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* 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 Juego;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Rectangle;
import javax.swing.ImageIcon;
/**
*
* @au... | UTF-8 | Java | 1,102 | java | Disparo.java | Java | [
{
"context": "e;\nimport javax.swing.ImageIcon;\n/**\n *\n * @author aacm12\n */\npublic class Disparo extends MovingGameObject",
"end": 331,
"score": 0.9995707869529724,
"start": 325,
"tag": "USERNAME",
"value": "aacm12"
}
] | null | [] | /*
* 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 Juego;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Rectangle;
import javax.swing.ImageIcon;
/**
*
* @au... | 1,102 | 0.662432 | 0.653358 | 46 | 22.97826 | 21.65991 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.652174 | false | false | 13 |
f401ebec92f15478c6191a4a0f223bbd8686464b | 14,078,902,838,020 | 7da722dca4cdd6b9da27205268641e7aef4e804c | /src/main/java/com/hejinyo/core/web/SysMenuController.java | 7c4bfb83d383a3bf85f698751ac079eb3c0082f2 | [] | no_license | HejinYo/base | https://github.com/HejinYo/base | efec1cec7e8ebcf2ce6c36a8925db4d34451e6dd | 577c4ab75eac93aa929bf73f5d5c9dd3c0e35fb0 | refs/heads/master | 2021-01-12T02:18:01.214000 | 2017-06-06T16:04:54 | 2017-06-06T16:04:54 | 78,495,836 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hejinyo.core.web;
import com.hejinyo.core.common.utils.JsonRetrun;
import com.hejinyo.core.domain.dto.ActiveUser;
import com.hejinyo.core.domain.dto.SysMenu;
import com.hejinyo.core.service.SysResourceService;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import org.apache.shiro.SecurityUtil... | UTF-8 | Java | 3,267 | java | SysMenuController.java | Java | [] | null | [] | package com.hejinyo.core.web;
import com.hejinyo.core.common.utils.JsonRetrun;
import com.hejinyo.core.domain.dto.ActiveUser;
import com.hejinyo.core.domain.dto.SysMenu;
import com.hejinyo.core.service.SysResourceService;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import org.apache.shiro.SecurityUtil... | 3,267 | 0.591484 | 0.587164 | 84 | 37.583332 | 31.133816 | 151 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.869048 | false | false | 13 |
5653eb21b31f1f9f04e981db5d49af03f25e7e4c | 9,225,589,785,660 | 4ecb5b1e69be67fd5dcd5df00d37947d634372de | /TaxEngagement/src/test/java/steps/XBRLvalidate.java | d737066a23dba229d3fc9f154acf1aa25f439b4f | [] | no_license | MvdWeetering/Tax | https://github.com/MvdWeetering/Tax | 5471d7981dd29e9926a921d262f2151549f97719 | de05a35d6d77473000973f38f13afdfab3153dd8 | refs/heads/master | 2021-01-09T20:57:08.181000 | 2017-12-13T13:59:59 | 2017-12-13T13:59:59 | 81,466,960 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package steps;
import cucumber.api.java.en.Given;
import cucumber.api.java.en.Then;
import cucumber.api.java.en.When;
import gherkin.formatter.model.Result;
import pageObjects.BalansActivaObjecten;
import codebase.BalansActivaXLS;
import codebase.BalansPassivaXLS;
import codebase.FiscaleVermogensvergelijkingX... | UTF-8 | Java | 88,064 | java | XBRLvalidate.java | Java | [
{
"context": "hrowable {\r\n\r\n\t\t// ParticipatingInterestName\r\n\t\t// Naam deelneming\r\n\t\tResult.addAll(\r\n\t\t\t\tXMLandXLScompar",
"end": 11035,
"score": 0.5381654500961304,
"start": 11031,
"tag": "NAME",
"value": "Naam"
}
] | null | [] | package steps;
import cucumber.api.java.en.Given;
import cucumber.api.java.en.Then;
import cucumber.api.java.en.When;
import gherkin.formatter.model.Result;
import pageObjects.BalansActivaObjecten;
import codebase.BalansActivaXLS;
import codebase.BalansPassivaXLS;
import codebase.FiscaleVermogensvergelijkingX... | 88,064 | 0.777467 | 0.767462 | 1,838 | 45.905331 | 35.703999 | 150 | false | false | 0 | 0 | 0 | 0 | 85 | 0.023657 | 2.72198 | false | false | 13 |
deba0b6f44519e9f4aad1cb7c9f2d62523b034a8 | 7,567,732,438,281 | 0c9317530cb8c3d9e9b1c9f34757a3b2841d8b9b | /java/com/ucsmy/mc/module/idx/service/IdxService.java | 158e57ef0992cd91e8a49c3a6933cc634e073f96 | [] | no_license | olgeer/mc | https://github.com/olgeer/mc | 8ea337b7b7079ec8fff34c2fc5cad79be71c571d | b16ca8a8373e71e538992c4aa5756b7ad407d0b5 | refs/heads/master | 2020-12-11T08:48:10.603000 | 2020-01-14T10:06:41 | 2020-01-14T10:06:41 | 233,805,366 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright (c) 2016
* 广东网金控股股份有限公司(http://www.ucsmy.com)
* All rights reserved.
*/
package com.ucsmy.mc.module.idx.service;
import java.util.List;
import java.util.Map;
import com.ucsmy.mc.common.entity.Department;
import com.ucsmy.mc.common.entity.Mctype;
/**
* @ClassName: AdminDepartmentService
* @Des... | UTF-8 | Java | 1,708 | java | IdxService.java | Java | [
{
"context": "ice \n * @Description: TODO 部门管理Service\n * @author: ucs_chenchengteng\n * @date: 2016年11月28日 下午2:53:00\n * @version: V1.0",
"end": 376,
"score": 0.9996259808540344,
"start": 359,
"tag": "USERNAME",
"value": "ucs_chenchengteng"
}
] | null | [] | /*
* Copyright (c) 2016
* 广东网金控股股份有限公司(http://www.ucsmy.com)
* All rights reserved.
*/
package com.ucsmy.mc.module.idx.service;
import java.util.List;
import java.util.Map;
import com.ucsmy.mc.common.entity.Department;
import com.ucsmy.mc.common.entity.Mctype;
/**
* @ClassName: AdminDepartmentService
* @Des... | 1,708 | 0.640181 | 0.627907 | 82 | 17.878048 | 16.699198 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.829268 | false | false | 13 |
e8d2808c393fca12063cd5d8b120daa6bc62a9b6 | 4,432,406,297,466 | abeb5695a9bc51ffeae87e96a91b7ef5f5976a50 | /Hms/src/main/java/com/example/demo/model/Rooms.java | 29e48541fa93cefd78d81d970d85dd4e92824f33 | [] | no_license | Bhupander-chauhan/Hms-project | https://github.com/Bhupander-chauhan/Hms-project | 40442437ebce23dba4648d91ca9c0cffd849ff7d | 287aa73bb56bc9e1f8ad3afcd9e5a0dc2c8689cb | refs/heads/main | 2023-04-05T11:51:58.864000 | 2021-04-26T13:54:07 | 2021-04-26T13:54:07 | 361,768,503 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.demo.model;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
@Getter
@Setter
@ToString
@Document(collection="Rooms")
public class Rooms {
@Id
pu... | UTF-8 | Java | 1,031 | java | Rooms.java | Java | [] | null | [] | package com.example.demo.model;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
@Getter
@Setter
@ToString
@Document(collection="Rooms")
public class Rooms {
@Id
pu... | 1,031 | 0.677983 | 0.677983 | 58 | 15.775862 | 14.373158 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.224138 | false | false | 13 |
ef8f35366dd20403ee5ed54f9182532872e6a59a | 575,525,682,978 | 52ac05a8afba55254481b671743ed899ecc2cb42 | /app/src/main/java/com/newitventure/hoteltv/mainactivity/MainActivity.java | 6a7595c9bc3f0587f9f5e3cd4cf51ca7e90d7d2e | [] | no_license | DEV-NEP/HotelTV | https://github.com/DEV-NEP/HotelTV | a589b27c385a700e51ed336c69ee1841bbc9e512 | e13ebba90a786cb6b0b7398fe30d5e08b10415e8 | refs/heads/master | 2021-05-05T23:09:55.146000 | 2018-01-12T12:25:48 | 2018-01-12T12:25:48 | 116,629,457 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.newitventure.hoteltv.mainactivity;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Bundle;
import android.provider.Settings;
import android.support.desi... | UTF-8 | Java | 25,059 | java | MainActivity.java | Java | [
{
"context": "iew.VISIBLE);\n fbUserName.setText(\"Welcome,\");\n\n// Intent logout = new Intent",
"end": 3806,
"score": 0.9835752248764038,
"start": 3799,
"tag": "NAME",
"value": "Welcome"
}
] | null | [] | package com.newitventure.hoteltv.mainactivity;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Bundle;
import android.provider.Settings;
import android.support.desi... | 25,059 | 0.535616 | 0.532104 | 675 | 36.124443 | 29.575054 | 267 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.682963 | false | false | 13 |
85ce87743a5054661895fb399b3431c81ba11bb1 | 19,928,648,322,509 | c4f1238a532c0e1719123da06984dec8dab77f91 | /Compare.java | 43b4302afa4b08cc819c268ba67ee8735ca6a8ec | [] | no_license | shashankmucheli/TravellingSalesManProblem | https://github.com/shashankmucheli/TravellingSalesManProblem | 688c64db3104fd8e214ccb7cce654e1e3f04ee88 | 34465bbda07473529e9e29b0e5dcad98dbdfc977 | refs/heads/master | 2016-09-08T00:33:36.161000 | 2014-11-03T02:40:12 | 2014-11-03T02:40:12 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Comparator;
class Compare implements Comparator<NodeInfo>{
@Override
public int compare(NodeInfo n1, NodeInfo n2){
return 0;
}
} | UTF-8 | Java | 159 | java | Compare.java | Java | [] | null | [] | import java.util.Comparator;
class Compare implements Comparator<NodeInfo>{
@Override
public int compare(NodeInfo n1, NodeInfo n2){
return 0;
}
} | 159 | 0.72327 | 0.704403 | 9 | 16.777779 | 18.304691 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.777778 | false | false | 13 |
5062384ee0582fe2a072357e3d8eef81b47fd9ba | 20,134,806,750,981 | 6e274c6a9e1cbea2154113764fe11806d6bc68eb | /app/src/main/java/com/trc/app/utils/ConstantKey.java | c8560562cc071ebca2a47ed7b37bd683dda8b6e9 | [] | no_license | kamalstis1009/TRC_App | https://github.com/kamalstis1009/TRC_App | a4ed7f1225c8553e0f9b6c8645e87136c96a48d8 | bd787d3e798c736ce089dda0ca400a3d0f1ac54e | refs/heads/master | 2023-02-04T07:38:57.898000 | 2020-12-28T05:17:29 | 2020-12-28T05:17:29 | 314,746,648 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.trc.app.utils;
import com.trc.app.R;
import com.trc.app.models.Category;
import com.trc.app.models.Consultant;
import com.trc.app.models.Guideline;
import java.util.ArrayList;
public class ConstantKey {
public static final String FIREBASE_SERVER_KEY = "AAAAASaR7OU:APA91bEpZlL6R_27zbW0DjbkmBI6Q43_S66... | UTF-8 | Java | 4,417 | java | ConstantKey.java | Java | [
{
"context": "public static final String FIREBASE_SERVER_KEY = \"AAAAASaR7OU:APA91bEpZlL6R_27zbW0DjbkmBI6Q43_S66MHVgHpl5XWgRDcpew-SrJHrtxJ6Bx5evnsE8zUahZC8in1IhjGofC0dxMaE7L78kGyoG3S43V2EIerwTCXQL81v1ulOoxX_jqVE1bA7R0\";\n public static final String FIREBASE_BASE_UR",
"end": 425,
"score": 0.999758541... | null | [] | package com.trc.app.utils;
import com.trc.app.R;
import com.trc.app.models.Category;
import com.trc.app.models.Consultant;
import com.trc.app.models.Guideline;
import java.util.ArrayList;
public class ConstantKey {
public static final String FIREBASE_SERVER_KEY = "<KEY>";
public static final String FIREBASE... | 4,157 | 0.728775 | 0.67444 | 53 | 82.339622 | 94.103104 | 319 | false | false | 0 | 0 | 0 | 0 | 76 | 0.017206 | 2.264151 | false | false | 13 |
9d2c1e85481f2eaca369b856d7d8924735932feb | 34,935,264,040,952 | d8b179775d2829840451bb5ae968099ed1775950 | /GoDiegoGo/app/src/main/java/com/example/godiegogo/utils/SpotifyMusicUtils.java | ff12a245037c0afa849e2959e08c78048a4ac8c2 | [] | no_license | gracerobbins/465 | https://github.com/gracerobbins/465 | 4c3268ea5b8d94639fac7e3af1b87fed876b4d2a | 744d055e94a9d8e9af20bfc41b87e14165b3625e | refs/heads/main | 2023-01-20T05:58:05.864000 | 2020-11-26T04:31:20 | 2020-11-26T04:31:20 | 312,662,569 | 0 | 1 | null | false | 2020-11-25T23:01:16 | 2020-11-13T19:12:24 | 2020-11-24T21:04:29 | 2020-11-25T23:01:15 | 10,585 | 0 | 1 | 0 | Java | false | false | package com.example.godiegogo.utils;
import android.content.Context;
import android.util.Log;
import com.android.volley.AuthFailureError;
import com.android.volley.Request;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.tool... | UTF-8 | Java | 5,002 | java | SpotifyMusicUtils.java | Java | [] | null | [] | package com.example.godiegogo.utils;
import android.content.Context;
import android.util.Log;
import com.android.volley.AuthFailureError;
import com.android.volley.Request;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.tool... | 5,002 | 0.646142 | 0.645742 | 128 | 38.078125 | 35.069489 | 159 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.703125 | false | false | 13 |
945d1df351ff5aeac0f40bc9e089dceaec22a1a3 | 39,548,058,890,707 | d5f09c7b0e954cd20dd613af600afd91b039c48a | /sources/com/huawei/hms/common/a/a.java | ff6cddbcea54d1feb73aa459dda06be09509afb1 | [] | no_license | t0HiiBwn/CoolapkRelease | https://github.com/t0HiiBwn/CoolapkRelease | af5e00c701bf82c4e90b1033f5c5f9dc8526f4b3 | a6a2b03e32cde0e5163016e0078391271a8d33ab | refs/heads/main | 2022-07-29T23:28:35.867000 | 2021-03-26T11:41:18 | 2021-03-26T11:41:18 | 345,290,891 | 5 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.huawei.hms.common.a;
import android.database.AbstractWindowedCursor;
import android.database.CrossProcessCursor;
import android.database.Cursor;
import android.database.CursorWindow;
import android.database.CursorWrapper;
/* compiled from: HMSCursorWrapper */
public class a extends CursorWrapper implement... | UTF-8 | Java | 1,899 | java | a.java | Java | [] | null | [] | package com.huawei.hms.common.a;
import android.database.AbstractWindowedCursor;
import android.database.CrossProcessCursor;
import android.database.Cursor;
import android.database.CursorWindow;
import android.database.CursorWrapper;
/* compiled from: HMSCursorWrapper */
public class a extends CursorWrapper implement... | 1,899 | 0.670879 | 0.669826 | 54 | 34.166668 | 28.715559 | 129 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.425926 | false | false | 13 |
e54098fc76b1ed5a6624cdd41e7a5ff59b9d44f7 | 39,298,950,773,805 | 8683c05a16c5f0a09832bfeb8f7dcdc2f1f0ac7c | /data-structures/src/test/java/com/design/analysis/core/ds/advance/others/IOthersTest.java | a9141de323f598f04fae20306589efe4c0f560d0 | [] | no_license | ifoets/teaching | https://github.com/ifoets/teaching | 11cf69dbce6895dedec5478bf4bb287e69f79aa3 | 55270562761ad227d821edcda1513699f51041f8 | refs/heads/master | 2023-08-17T14:00:17.183000 | 2023-08-03T09:30:45 | 2023-08-03T09:30:45 | 173,404,139 | 1 | 0 | null | false | 2020-08-13T10:34:12 | 2019-03-02T04:43:48 | 2020-02-10T17:25:32 | 2020-08-13T10:34:12 | 14,769 | 0 | 0 | 0 | Java | false | false | package com.design.analysis.core.ds.advance.others;
import com.design.analysis.core.ds.advance.others.node.TernaryNode;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
public class IOthersTest {
public IOthers<Character, Integer> iots = null;
TernaryNode<Character> root = null;
@Before
... | UTF-8 | Java | 2,398 | java | IOthersTest.java | Java | [] | null | [] | package com.design.analysis.core.ds.advance.others;
import com.design.analysis.core.ds.advance.others.node.TernaryNode;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
public class IOthersTest {
public IOthers<Character, Integer> iots = null;
TernaryNode<Character> root = null;
@Before
... | 2,398 | 0.612177 | 0.596747 | 88 | 26.25 | 18.77574 | 67 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.636364 | false | false | 13 |
873094acbdc2e58dbdda75be9bf593727aa7af06 | 8,890,582,334,676 | bb7d521605d1d2c7229f36e301ec8311837b39f7 | /ms.test/src/main/java/com/ms/commons/test/datawriter/DataWriterType.java | d601ecfbc8e9148aa5eb3fad38a000d3502dda36 | [] | no_license | justinscript/summer | https://github.com/justinscript/summer | 635eb3c8739065a2ee4736b0b9f42adf188d76dc | d6b982c41dc6a3d637d5de1bc84363db1797ef1b | refs/heads/master | 2021-10-10T14:33:28.153000 | 2019-01-12T06:01:52 | 2019-01-12T06:01:52 | 18,910,111 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright 2017-2025 msun.com All right reserved. This software is the confidential and proprietary information of
* msun.com ("Confidential Information"). You shall not disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into with m... | UTF-8 | Java | 797 | java | DataWriterType.java | Java | [
{
"context": "com.ms.commons.test.datawriter;\r\n\r\n/**\r\n * @author zxc Apr 13, 2013 11:32:57 PM\r\n */\r\npublic enum DataWr",
"end": 397,
"score": 0.9995461702346802,
"start": 394,
"tag": "USERNAME",
"value": "zxc"
}
] | null | [] | /*
* Copyright 2017-2025 msun.com All right reserved. This software is the confidential and proprietary information of
* msun.com ("Confidential Information"). You shall not disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into with m... | 797 | 0.61857 | 0.593476 | 34 | 21.441177 | 30.233591 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.294118 | false | false | 13 |
e82e891f0afccc0bda5166caba0061b3d5fe8d2b | 5,600,637,365,228 | 18fb09a5dad10319b0687e242c92e57a7668fa6d | /HelloWorld/src/hello/test.java | 9d00af163961f625c2522362ea2fc36e48de5a6f | [] | no_license | my1716412/hello | https://github.com/my1716412/hello | 7b3e6c6efa76c6818952422ead6895a3a03d6e57 | 6da958934115dc886c60f364165b7528b0701915 | refs/heads/master | 2020-07-23T08:59:18.065000 | 2020-01-22T05:00:35 | 2020-01-22T05:00:35 | 207,506,638 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package hello;
public class test {
public static void main(String[] args) {
// int sum = 0;
// int a = 1, b = 10;
// for (int i = a; i <= b; i++) {
// if(i % 2 == 0) {
// sum += i;
// }
// }
// System.out.println(a + "~" + b + "합은" + sum);
char chr = 'A';
int num = chr;
for(in... | UTF-8 | Java | 416 | java | test.java | Java | [] | null | [] | package hello;
public class test {
public static void main(String[] args) {
// int sum = 0;
// int a = 1, b = 10;
// for (int i = a; i <= b; i++) {
// if(i % 2 == 0) {
// sum += i;
// }
// }
// System.out.println(a + "~" + b + "합은" + sum);
char chr = 'A';
int num = chr;
for(in... | 416 | 0.402913 | 0.381068 | 23 | 15.913043 | 13.968639 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.391304 | false | false | 13 |
aacb9b5663d964d14c05006b92d8b4e60dadf6ee | 5,600,637,364,150 | 3dda064329c2aaaa21fb581d928a938560f6c31d | /src/com/greenday/dookie/Dookie.java | 85fbb30f9f1dabfcd337eb6fcad430c5012854f4 | [] | no_license | vishal0071/Green_Day_Lyrics | https://github.com/vishal0071/Green_Day_Lyrics | 35ff9e63ca0315ae8c2df324252406af20ed4b10 | 5f4f7a8e2e447acffddef6a5686247208ce633ae | refs/heads/master | 2021-05-01T02:36:16.780000 | 2018-01-15T11:25:22 | 2018-01-15T11:25:22 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.greenday.dookie;
import com.fourmob.poppyview.PoppyViewHelper;
import com.fourmob.poppyview.PoppyViewHelper.PoppyViewPosition;
import com.google.android.gms.analytics.GoogleAnalytics;
import com.google.android.gms.analytics.HitBuilders;
import com.google.android.gms.analytics.Tracker;
import com.greenday.l... | UTF-8 | Java | 13,076 | java | Dookie.java | Java | [
{
"context": "ent);\n\t\t}\n\t\tif(track == 13){\n\t\t\tString current = \"Emenius Sleepus\";\n\t\t\tab.setTitle(current);\n\t\t\ttv1.setText(R.strin",
"end": 9642,
"score": 0.9998544454574585,
"start": 9627,
"tag": "NAME",
"value": "Emenius Sleepus"
}
] | null | [] | package com.greenday.dookie;
import com.fourmob.poppyview.PoppyViewHelper;
import com.fourmob.poppyview.PoppyViewHelper.PoppyViewPosition;
import com.google.android.gms.analytics.GoogleAnalytics;
import com.google.android.gms.analytics.HitBuilders;
import com.google.android.gms.analytics.Tracker;
import com.greenday.l... | 13,067 | 0.65387 | 0.64171 | 485 | 25.962887 | 20.222338 | 113 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.490722 | false | false | 13 |
fc6e49caddb706f731808e09b46ccda3456c69f0 | 20,761,871,974,839 | 05b67bc78e1653dc27714c2e5d51c5450e8e0e9a | /app/src/main/java/com/yuri/cnbeta/http/CallServer.java | 51b1a8639fdb7b499c10eb05227156ac54b67828 | [] | no_license | xiayouli0122/Android-CnBeta-Client | https://github.com/xiayouli0122/Android-CnBeta-Client | 631cbaa891921afcb1a79d64ca552bbdf6e968fe | 66794f18de4862021c2c40af81f956e82882ffac | refs/heads/master | 2020-12-20T13:20:39.853000 | 2016-08-01T08:28:34 | 2016-08-01T08:28:34 | 55,683,342 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.yuri.cnbeta.http;
import android.content.Context;
import com.yolanda.nohttp.NoHttp;
import com.yolanda.nohttp.rest.Request;
import com.yolanda.nohttp.rest.RequestQueue;
/**
* Created by Yuri on 2016/4/8.
*/
public class CallServer {
private static CallServer mInstance;
/**
* 请求队列
*/... | UTF-8 | Java | 1,688 | java | CallServer.java | Java | [
{
"context": "landa.nohttp.rest.RequestQueue;\n\n/**\n * Created by Yuri on 2016/4/8.\n */\npublic class CallServer {\n\n p",
"end": 206,
"score": 0.9290169477462769,
"start": 202,
"tag": "NAME",
"value": "Yuri"
}
] | null | [] | package com.yuri.cnbeta.http;
import android.content.Context;
import com.yolanda.nohttp.NoHttp;
import com.yolanda.nohttp.rest.Request;
import com.yolanda.nohttp.rest.RequestQueue;
/**
* Created by Yuri on 2016/4/8.
*/
public class CallServer {
private static CallServer mInstance;
/**
* 请求队列
*/... | 1,688 | 0.579946 | 0.575203 | 69 | 20.391304 | 20.140245 | 81 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.289855 | false | false | 13 |
e8ac2c2383d6f891299b19054d84b24042822e68 | 20,761,871,974,487 | 7378b0f5f088fe3846e8f79c71cf2d77426fb120 | /service_version/MainActivity.java | 0e30c44d6999a033ab56b860e9f8e54eea2de8ac | [] | no_license | vb123er951/TryAccelerometer | https://github.com/vb123er951/TryAccelerometer | 26d3110116c8c4a119245aceb95769e31217f351 | 1a67f1a69d1de35508caa31d02da166ddde468ae | refs/heads/master | 2021-10-24T00:57:47.994000 | 2019-03-21T02:11:58 | 2019-03-21T02:11:58 | 100,248,204 | 0 | 0 | null | false | 2017-08-14T09:07:25 | 2017-08-14T09:00:36 | 2017-08-14T09:00:36 | 2017-08-14T09:07:25 | 0 | 0 | 0 | 0 | null | null | null | package com.example.nol.tryaccelerometer;
import android.content.ComponentName;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.ServiceConnection;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.Se... | UTF-8 | Java | 6,463 | java | MainActivity.java | Java | [] | null | [] | package com.example.nol.tryaccelerometer;
import android.content.ComponentName;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.ServiceConnection;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.Se... | 6,463 | 0.635773 | 0.631441 | 183 | 34.31694 | 24.169666 | 105 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.786885 | false | false | 13 |
35b60c86c3806d695552d581cb6690b1332940a6 | 17,282,948,426,352 | 3ef62ced3537e88e1c2b9d290fd49ccaaf9223de | /spring-mongodb-recipe-project/src/main/java/com/spring5/projects/springmongodbrecipeproject/repositories/RecipeRepository.java | dc31f8a5b1555bfb30d59bc53bbd26d13d45b8bf | [
"MIT"
] | permissive | mhnvelu/spring-5-bootcamp | https://github.com/mhnvelu/spring-5-bootcamp | 1756250fdd66b142668d3f2a6a54e50da3fd99b9 | ff9d58a845f48119dafcd39c1a8c7d413eaf0afb | refs/heads/master | 2023-02-12T18:50:20.415000 | 2021-01-13T00:06:57 | 2021-01-13T00:06:57 | 296,159,462 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.spring5.projects.springmongodbrecipeproject.repositories;
import com.spring5.projects.springmongodbrecipeproject.domain.Recipe;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface RecipeRepository extends CrudRepository<... | UTF-8 | Java | 340 | java | RecipeRepository.java | Java | [] | null | [] | package com.spring5.projects.springmongodbrecipeproject.repositories;
import com.spring5.projects.springmongodbrecipeproject.domain.Recipe;
import org.springframework.data.repository.CrudRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface RecipeRepository extends CrudRepository<... | 340 | 0.867647 | 0.861765 | 9 | 36.777779 | 31.111904 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.555556 | false | false | 13 |
b34c08a825492333bb17edcc01e519dd2cbedcea | 14,766,097,624,393 | 7630aa9aaa7cd08ffc809ad0ca001e577e72d28e | /app/src/main/java/com/mk/mkfighterresultdb/di/ShowResultActivityModule.java | 8a47bd9c22b60d3dd1f05afb8fb08859c23511ab | [] | no_license | TT64/ResultDB | https://github.com/TT64/ResultDB | e0f8b6ccaffbaf2466afd48cf1429c3bcaa1a365 | ce5bb542856beaa935c9483d6e5778d24864eb73 | refs/heads/master | 2020-04-10T18:52:24.851000 | 2019-07-17T19:24:08 | 2019-07-17T19:24:08 | 161,213,086 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mk.mkfighterresultdb.di;
import com.mk.mkfighterresultdb.mvp.OperateResultModel;
import com.mk.mkfighterresultdb.mvp.ShowResultActivityContract;
import dagger.Module;
import dagger.Provides;
@Module
class ShowResultActivityModule {
ShowResultActivityModule() {
}
@Provides
@PresenterScop... | UTF-8 | Java | 425 | java | ShowResultActivityModule.java | Java | [] | null | [] | package com.mk.mkfighterresultdb.di;
import com.mk.mkfighterresultdb.mvp.OperateResultModel;
import com.mk.mkfighterresultdb.mvp.ShowResultActivityContract;
import dagger.Module;
import dagger.Provides;
@Module
class ShowResultActivityModule {
ShowResultActivityModule() {
}
@Provides
@PresenterScop... | 425 | 0.767059 | 0.767059 | 20 | 20.25 | 20.181366 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3 | false | false | 13 |
8bcdc4d1eb92e80d087d4cad4e31d7fb1dfdaef7 | 8,916,352,174,762 | 05fe6882eac07e59d402b70f168e7d2f23e00781 | /src/zenefi/grapTree.java | cf02e941d55fed99e17242d34484dabf83a3b4c9 | [] | no_license | aayushuppal/Algorithms | https://github.com/aayushuppal/Algorithms | c50b8dc334d01d486683c5945d609cd929d17d87 | 8193a14df632b1a7e7de8fabe1818604085690a3 | refs/heads/master | 2020-05-04T14:06:54.890000 | 2015-11-05T04:13:58 | 2015-11-05T04:13:58 | 30,593,614 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package zenefi;
import java.lang.reflect.Array;
import java.util.*;
/**
* Created by hellsapphire on 10/4/2015.
*/
public class grapTree {
public static void main(String[] args) {
//int[][] adjMat = {{0, 1, 1, 0}, {1, 0, 1, 1}, {1, 1, 0, 0}, {0, 1, 0, 0}};
int[][] adjMat = {{0, 1, 0, 0, 0}, {1,... | UTF-8 | Java | 2,224 | java | grapTree.java | Java | [
{
"context": "lect.Array;\nimport java.util.*;\n\n/**\n * Created by hellsapphire on 10/4/2015.\n */\npublic class grapTree {\n\n pu",
"end": 100,
"score": 0.9967539310455322,
"start": 88,
"tag": "USERNAME",
"value": "hellsapphire"
}
] | null | [] | package zenefi;
import java.lang.reflect.Array;
import java.util.*;
/**
* Created by hellsapphire on 10/4/2015.
*/
public class grapTree {
public static void main(String[] args) {
//int[][] adjMat = {{0, 1, 1, 0}, {1, 0, 1, 1}, {1, 1, 0, 0}, {0, 1, 0, 0}};
int[][] adjMat = {{0, 1, 0, 0, 0}, {1,... | 2,224 | 0.431655 | 0.405576 | 89 | 23.988764 | 24.281816 | 111 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.94382 | false | false | 13 |
4bf79dab5f22b4d9000aa0d9e9819f9c09f202a8 | 15,788,299,780,628 | 869380b19a3d35f6559f9a44cccfdbfd19352d55 | /wear-settings/src/main/java/day/cloudy/apps/wear/settings/item/PendingIntentSettingsItem.java | 6d6cf462a1c6436b4221bef30533862127a8e4a4 | [
"Apache-2.0"
] | permissive | Gaelan-Bolger/WearSettings | https://github.com/Gaelan-Bolger/WearSettings | 580b5922331f083a2a52671c9a7ecef0230e9b62 | 8656793ffbe0f43f1c57cd2ae1af7155de4ff0f2 | refs/heads/master | 2020-12-24T20:43:11.538000 | 2017-08-05T18:31:51 | 2017-08-05T18:31:51 | 57,212,047 | 16 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package day.cloudy.apps.wear.settings.item;
import android.app.PendingIntent;
import android.support.annotation.DrawableRes;
import android.support.annotation.NonNull;
public class PendingIntentSettingsItem extends SettingsItem {
public final PendingIntent intent;
public PendingIntentSettingsItem(@Drawable... | UTF-8 | Java | 457 | java | PendingIntentSettingsItem.java | Java | [] | null | [] | package day.cloudy.apps.wear.settings.item;
import android.app.PendingIntent;
import android.support.annotation.DrawableRes;
import android.support.annotation.NonNull;
public class PendingIntentSettingsItem extends SettingsItem {
public final PendingIntent intent;
public PendingIntentSettingsItem(@Drawable... | 457 | 0.774617 | 0.774617 | 16 | 27.5625 | 29.622561 | 111 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.625 | false | false | 13 |
2125f3782ec97031e63964b9a6f6801cd5cdd00b | 8,684,423,901,600 | f082a3f51b93d9179917188c4c0d6de0c89bcbd4 | /src/dice.java | 273f04fb831a86082cdc8c8b5dfa86d5f1d8f50e | [] | no_license | russiantux/SpergProject | https://github.com/russiantux/SpergProject | 5f41386fe642f8b3aa4ae1323c7849e5310ffc41 | 9dd3f7e2046d47c417dcff81cbf4e448a1a6223a | refs/heads/master | 2020-12-30T12:55:30.589000 | 2017-05-20T05:08:23 | 2017-05-20T05:08:23 | 91,368,639 | 0 | 0 | null | false | 2017-05-19T18:13:05 | 2017-05-15T18:02:20 | 2017-05-15T18:43:28 | 2017-05-19T18:13:05 | 12 | 0 | 0 | 0 | Java | null | null | public class dice {
//
private int dNumSides;
private int dNum = 1;
public static int rNum = 0;
//defined dice has the given number of sides and the number of dice that will be used.
public dice(int numSides, int numD) {
//Lets the number of sides on dice and the number of dice vary. Default is 1 die.
numSi... | UTF-8 | Java | 806 | java | dice.java | Java | [] | null | [] | public class dice {
//
private int dNumSides;
private int dNum = 1;
public static int rNum = 0;
//defined dice has the given number of sides and the number of dice that will be used.
public dice(int numSides, int numD) {
//Lets the number of sides on dice and the number of dice vary. Default is 1 die.
numSi... | 806 | 0.645161 | 0.612903 | 42 | 18.214285 | 20.835564 | 87 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.690476 | false | false | 13 |
5697ba1a95dd27ac1234e120000c2071af4b5ebe | 11,751,030,523,927 | 513c1eb639ae80c0c3e9eb0a617cd1d00e2bc034 | /src/net/demilich/metastone/game/actions/BattlecryAction.java | 782dd57900b16a7c9e9bb7789357b9e9cb3599be | [
"MIT"
] | permissive | hillst/MetaStone | https://github.com/hillst/MetaStone | a21b63a1d2d02646ee3b6226261b4eb3304c175a | 5882d834d32028f5f083543f0700e59ccf1aa1fe | refs/heads/master | 2021-05-28T22:05:42.911000 | 2015-06-05T00:58:06 | 2015-06-05T00:58:06 | 36,316,023 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.demilich.metastone.game.actions;
import java.util.function.Predicate;
import net.demilich.metastone.game.GameContext;
import net.demilich.metastone.game.Player;
import net.demilich.metastone.game.entities.Entity;
import net.demilich.metastone.game.spells.desc.SpellDesc;
import net.demilich.metastone.game.... | UTF-8 | Java | 3,106 | java | BattlecryAction.java | Java | [] | null | [] | package net.demilich.metastone.game.actions;
import java.util.function.Predicate;
import net.demilich.metastone.game.GameContext;
import net.demilich.metastone.game.Player;
import net.demilich.metastone.game.entities.Entity;
import net.demilich.metastone.game.spells.desc.SpellDesc;
import net.demilich.metastone.game.... | 3,106 | 0.764005 | 0.764005 | 114 | 26.245613 | 26.605488 | 122 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.605263 | false | false | 13 |
d261d0a93230c7a9f2d09b63a05200d221f75754 | 14,963,666,120,488 | 40dd2c2ba934bcbc611b366cf57762dcb14c48e3 | /RI_Stack/java/src/base/org/ocap/event/UserEvent.java | 6508b412b2b2b6960b3e9f4d65037313a724e22c | [] | no_license | amirna2/OCAP-RI | https://github.com/amirna2/OCAP-RI | afe0d924dcf057020111406b1d29aa2b3a796e10 | 254f0a8ebaf5b4f09f4a7c8f4961e9596c49ccb7 | refs/heads/master | 2020-03-10T03:22:34.355000 | 2018-04-11T23:08:49 | 2018-04-11T23:08:49 | 129,163,048 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | // COPYRIGHT_BEGIN
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
//
// Copyright (C) 2008-2013, Cable Television Laboratories, Inc.
//
// This software is available under multiple licenses:
//
// (1) BSD 2-clause
// Redistribution and use in source and binary forms, with or without modi... | UTF-8 | Java | 6,612 | java | UserEvent.java | Java | [] | null | [] | // COPYRIGHT_BEGIN
// DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
//
// Copyright (C) 2008-2013, Cable Television Laboratories, Inc.
//
// This software is available under multiple licenses:
//
// (1) BSD 2-clause
// Redistribution and use in source and binary forms, with or without modi... | 6,612 | 0.657186 | 0.65053 | 163 | 39.552147 | 30.701841 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.404908 | false | false | 13 |
80cd2851dca02de425538292bb71d384d09ab518 | 11,802,570,170,626 | 35facf017f078258b1d1652a678d19710e746c1a | /src/Test_3_4/Test_4_4_FootballDemo.java | 76486c62c35f1959f9a34063eb872e66ec29e7f9 | [] | no_license | rui0820/ImoocTestProj | https://github.com/rui0820/ImoocTestProj | 281b5667b0a05f4c85e9cbec51c01890d5aba30d | 167ac741a43941dce560044afc8bcc39353ab9e6 | refs/heads/master | 2020-07-09T22:24:56.096000 | 2019-09-15T08:25:01 | 2019-09-15T08:25:01 | 204,096,657 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Test_3_4;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
public class Test_4_4_FootballDemo {
public static void main(String[] args) {
//定义HashMap的对象并添加数据
Map<String,String> footBall = new HashMap();
footBall.put("... | UTF-8 | Java | 1,044 | java | Test_4_4_FootballDemo.java | Java | [] | null | [] | package Test_3_4;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
public class Test_4_4_FootballDemo {
public static void main(String[] args) {
//定义HashMap的对象并添加数据
Map<String,String> footBall = new HashMap();
footBall.put("... | 1,044 | 0.649785 | 0.623922 | 33 | 27.121212 | 17.449074 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.69697 | false | false | 13 |
4a20f297f2657d21bebd33651d651f1c7e4aa8fc | 20,736,102,144,301 | d7e908df2d8ca7c29d905f4919247eddaae08d15 | /src/main/java/com/card/app/service/impl/AbstractSubContentService.java | 2c8d963a448c2f49c5ca8b9d4eb5ed145fac6819 | [] | no_license | ashu8051/playcard | https://github.com/ashu8051/playcard | 4d3a0cc64c184bf8f4fd8409270cd937d8be135e | aec82444277922c460555dc30e6be08ed1240eb3 | refs/heads/master | 2021-01-20T08:33:25.812000 | 2017-08-29T18:42:55 | 2017-08-29T18:42:55 | 101,561,750 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.card.app.service.impl;
import java.io.Serializable;
import java.util.List;
import javax.transaction.Transactional;
import org.springframework.beans.factory.annotation.Autowired;
import com.card.app.dao.SubContentDao;
import com.card.app.model.SubContent;
import com.card.app.model.TopicContent... | UTF-8 | Java | 1,570 | java | AbstractSubContentService.java | Java | [] | null | [] | package com.card.app.service.impl;
import java.io.Serializable;
import java.util.List;
import javax.transaction.Transactional;
import org.springframework.beans.factory.annotation.Autowired;
import com.card.app.dao.SubContentDao;
import com.card.app.model.SubContent;
import com.card.app.model.TopicContent... | 1,570 | 0.733121 | 0.733121 | 70 | 20.428572 | 19.782801 | 90 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.171429 | false | false | 13 |
69bcfee189ff4b2e914e368cb823dc74bf18031a | 5,540,507,819,910 | c1c8f9136c59bfa0efcccd2f549729ab17065140 | /HuarenLib/src/com/hr/huarenlib/net/request/HttpClientUtil.java | 472b4c68a3736a5d69ffa27d12f4fa2b5d29c9b7 | [] | no_license | huangmingming/huaren | https://github.com/huangmingming/huaren | 084e9b95602011059e88662b281dcd2eee2d97d9 | 637702ce6de615b68599c71e5d0c0af1ba5ecfcd | refs/heads/master | 2021-01-02T08:50:05.571000 | 2017-08-02T07:27:38 | 2017-08-02T07:27:38 | 96,666,793 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hr.huarenlib.net.request;
import java.io.File;
import java.io.FileNotFoundException;
import java.nio.charset.Charset;
import java.util.List;
import java.util.Map;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.NameValuePair;
import org.apache.http.client.Htt... | UTF-8 | Java | 7,398 | java | HttpClientUtil.java | Java | [
{
"context": "ityUtils;\n\nimport android.util.Log;\n\n\n/**\n * @auto ysp\n * http请求工具\n **/\npublic class HttpClientUtil {\n ",
"end": 979,
"score": 0.9985380172729492,
"start": 976,
"tag": "USERNAME",
"value": "ysp"
}
] | null | [] | package com.hr.huarenlib.net.request;
import java.io.File;
import java.io.FileNotFoundException;
import java.nio.charset.Charset;
import java.util.List;
import java.util.Map;
import org.apache.http.HttpResponse;
import org.apache.http.HttpStatus;
import org.apache.http.NameValuePair;
import org.apache.http.client.Htt... | 7,398 | 0.556527 | 0.553663 | 169 | 38.254436 | 32.844086 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.668639 | false | false | 13 |
623175a8c29548392389d8534667f0ca0e2c445c | 3,762,391,418,945 | 45c668c47c8cc9f066bff6f51dadc5c0bf004be9 | /camera/src/main/java/com/videonasocialmedia/camera/utils/VideoCameraFormat.java | f5bd569ae7b15852b1f7765aaf2523bd201e081f | [] | no_license | IAgof/ViMoJo | https://github.com/IAgof/ViMoJo | 6a6076d8a778342f0b6c978407c77b207d59056f | 06c72da3ea7dd810afd6e3b3694bc641a78b9653 | refs/heads/master | 2021-10-19T07:09:14.915000 | 2019-02-18T21:20:38 | 2019-02-18T21:20:38 | 62,631,224 | 2 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.videonasocialmedia.camera.utils;
import static android.media.MediaRecorder.AudioEncoder.AAC;
import static android.media.MediaRecorder.OutputFormat.MPEG_4;
import static android.media.MediaRecorder.VideoEncoder.H264;
/**
* Created by alvaro on 25/01/17.
*/
public class VideoCameraFormat {
private in... | UTF-8 | Java | 1,520 | java | VideoCameraFormat.java | Java | [
{
"context": "ediaRecorder.VideoEncoder.H264;\n\n/**\n * Created by alvaro on 25/01/17.\n */\n\npublic class VideoCameraFormat ",
"end": 255,
"score": 0.9973163604736328,
"start": 249,
"tag": "USERNAME",
"value": "alvaro"
}
] | null | [] | package com.videonasocialmedia.camera.utils;
import static android.media.MediaRecorder.AudioEncoder.AAC;
import static android.media.MediaRecorder.OutputFormat.MPEG_4;
import static android.media.MediaRecorder.VideoEncoder.H264;
/**
* Created by alvaro on 25/01/17.
*/
public class VideoCameraFormat {
private in... | 1,520 | 0.7125 | 0.681579 | 71 | 20.408451 | 19.235807 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.43662 | false | false | 13 |
ab2577a8e4f6e9bcf4debec8728292f91fd62c75 | 9,182,640,140,471 | 808f7bf4a87d09f3ccb285988a52f2752722fd47 | /manager/com/wanggp/sysuser/WsysuserController.java | 35c29c4b8c9ee0e5f8675ffd55745e796c1ad63b | [] | no_license | cfhb/ExampleService | https://github.com/cfhb/ExampleService | c0828294c86f0dae1472ee4c6aea5e80e0be23fe | 5ef63ccf4cc04e90994b38301f82b43d81c2d23f | refs/heads/master | 2020-02-28T04:55:07.055000 | 2015-09-15T01:27:34 | 2015-09-15T01:27:34 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.wanggp.sysuser;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRespon... | UTF-8 | Java | 7,945 | java | WsysuserController.java | Java | [] | null | [] | package com.wanggp.sysuser;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRespon... | 7,945 | 0.712819 | 0.706788 | 257 | 29.322958 | 21.276958 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.680934 | false | false | 13 |
a8a8ca82e5a004d41f9fd799cce7dcf787b8f853 | 25,323,127,222,476 | c97d09d93f32b55a44432c05be88b6b1f20748ce | /mercari/WEB-INF/classes/dao/MysqlDaoFactory.java | 58aa7807c69e7b03c86bd68a5431af7012a41d0f | [] | no_license | S4K08/practice | https://github.com/S4K08/practice | e37fed4d11d4b714cd009bf87e0bd7a472970f35 | 1fecaacb60d576eb051e06ff67ccbbe5923da826 | refs/heads/master | 2023-04-20T01:36:39.746000 | 2021-05-07T00:41:41 | 2021-05-07T00:41:41 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package dao;
public class MysqlDaoFactory extends AbstractMysqlFactory{
@Override
public AdminInterfaceDao getAdminInterfaceDao() {
return new AdminDao();
}
@Override
public CategoryInterfaceDao getCategoryInterfaceDao() {
return new CategoryDao();
}
@Override
public DealInterfaceDao getDealI... | UTF-8 | Java | 1,110 | java | MysqlDaoFactory.java | Java | [] | null | [] | package dao;
public class MysqlDaoFactory extends AbstractMysqlFactory{
@Override
public AdminInterfaceDao getAdminInterfaceDao() {
return new AdminDao();
}
@Override
public CategoryInterfaceDao getCategoryInterfaceDao() {
return new CategoryDao();
}
@Override
public DealInterfaceDao getDealI... | 1,110 | 0.718018 | 0.718018 | 52 | 19.346153 | 20.482531 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.038462 | false | false | 13 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.