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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e960f32ec403c67118377271cce8efac7423130a | 29,454,885,773,132 | 9d7d0d65148fc4db944abf211faab8eb88c7a942 | /src/main/java/com/masivian/roulette/model/Bet.java | e22cd8fa59e7455cd7f58f322aab424f0c798f2b | [] | no_license | cobyg55/TestMasivian | https://github.com/cobyg55/TestMasivian | f78e87076dc09e6c90da5a216ac14545976f9b6d | 20479225151917c904ff066d78d6f03fdbd396b2 | refs/heads/master | 2022-11-12T19:45:52.275000 | 2020-07-10T18:26:45 | 2020-07-10T18:26:45 | 278,700,830 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.masivian.roulette.model;
import com.masivian.roulette.validator.ValidateText;
import lombok.Data;
import org.springframework.data.redis.core.RedisHash;
import org.springframework.data.redis.core.index.Indexed;
import javax.validation.constraints.Max;
import javax.validation.constraints.Min;
import javax.v... | UTF-8 | Java | 1,032 | java | Bet.java | Java | [] | null | [] | package com.masivian.roulette.model;
import com.masivian.roulette.validator.ValidateText;
import lombok.Data;
import org.springframework.data.redis.core.RedisHash;
import org.springframework.data.redis.core.index.Indexed;
import javax.validation.constraints.Max;
import javax.validation.constraints.Min;
import javax.v... | 1,032 | 0.707364 | 0.689922 | 31 | 32.258064 | 30.925476 | 130 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.806452 | false | false | 2 |
127acfe00f42c02f92af84c50ce4151ae16893e2 | 36,756,330,131,153 | c3d66bda5df97a06159f83a6826f9fa014358c34 | /src/chapter2/面试题5替换空格.java | 3afc04c6e0a2b1d536dabe3489e27bd8ff21dac8 | [] | no_license | qq956916631/jianzhioffer | https://github.com/qq956916631/jianzhioffer | a8e9a4e7d37a2e48952d0bb1acb0ee0cb2d4404b | 950299f083492c6ebea60a0c2e2ee5ce37619fc7 | refs/heads/master | 2020-07-11T11:28:18.409000 | 2019-09-11T06:14:49 | 2019-09-11T06:14:49 | 204,527,256 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package chapter2;
import org.junit.Test;
/*
题目:请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy
*/
// 总结:一般涉及到数组的合并、替换、插入,假如从前往后解决的效率太低,可以考虑从后往前入手。
public class 面试题5替换空格 {
public String replaceSpace(StringBuffer str) {
int count = 0, frontPoint = str.length() - 1, rearPoi... | UTF-8 | Java | 1,276 | java | 面试题5替换空格.java | Java | [] | null | [] | package chapter2;
import org.junit.Test;
/*
题目:请实现一个函数,将一个字符串中的每个空格替换成“%20”。例如,当字符串为We Are Happy.则经过替换之后的字符串为We%20Are%20Happy
*/
// 总结:一般涉及到数组的合并、替换、插入,假如从前往后解决的效率太低,可以考虑从后往前入手。
public class 面试题5替换空格 {
public String replaceSpace(StringBuffer str) {
int count = 0, frontPoint = str.length() - 1, rearPoi... | 1,276 | 0.528864 | 0.513967 | 34 | 30.588236 | 21.828365 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.705882 | false | false | 2 |
6c70c71af8af6c4d61fc9dde76d174ccfdff7532 | 13,426,067,818,823 | d9b476355929288af055eea2e03146819c3c7466 | /subprojects/platform-base/src/main/java/org/gradle/platform/base/internal/registry/ComponentTypeModelRuleExtractor.java | 5a015bae21ba3cd8554a7ee2da7e8f4e216e13f7 | [] | permissive | oesolutions/gradle | https://github.com/oesolutions/gradle | 34e8985845835227fd0546aba30454a1cf9e024f | 49582c6d2f8cd7bcf20df5fc8ad995acc127e2a5 | refs/heads/master | 2017-12-03T11:22:08.347000 | 2015-12-20T03:24:44 | 2015-12-20T03:24:44 | 164,055,222 | 0 | 0 | Apache-2.0 | true | 2019-01-04T03:51:53 | 2019-01-04T03:51:53 | 2019-01-04T01:35:42 | 2019-01-04T03:02:35 | 248,865 | 0 | 0 | 0 | null | false | null | /*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... | UTF-8 | Java | 3,305 | java | ComponentTypeModelRuleExtractor.java | Java | [] | null | [] | /*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... | 3,305 | 0.768835 | 0.766415 | 65 | 49.846153 | 42.838242 | 192 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.723077 | false | false | 2 |
28d885145bf9ee2e5055c62ff9b3b04b37afad62 | 8,126,078,180,187 | 452cf283f726cbf4d94ed855091058f4aeba09f8 | /src/com/dfyl/service/GetUserInfo.java | 2dcadea861571f3081b4bbf5baaeab180dd01fb4 | [] | no_license | OrgDyNz/OAProject | https://github.com/OrgDyNz/OAProject | d6c15d9ef153010a421c37f78294971f742ea85e | 68ad9798632cd2e521162b9f67ba17604d891019 | refs/heads/master | 2020-04-15T04:57:55.700000 | 2019-02-19T01:43:45 | 2019-02-19T01:43:45 | 164,403,764 | 1 | 1 | null | false | 2019-02-18T05:37:15 | 2019-01-07T08:49:54 | 2019-02-18T05:28:48 | 2019-02-18T05:37:15 | 25 | 0 | 0 | 0 | Java | false | null | package com.dfyl.service;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import weaver.conn.RecordSet;
import weaver.general.BaseBean;
import weaver.interfaces.schedule.BaseCronJob;
import weaver.soa.hr... | UTF-8 | Java | 5,619 | java | GetUserInfo.java | Java | [
{
"context": "n where id=1\";\n\t\trs.execute(sql);\n\t\tString token=\"RFlOWjIwMTgtMTEtMjIgMDk6NTI6MDg=\";//\"RFlOWjIwMTgtMTEtMjIgMDk6NTI6MDg=\";\n\t\tif(rs.nex",
"end": 787,
"score": 0.9897236824035645,
"start": 754,
"tag": "KEY",
"value": "RFlOWjIwMTgtMTEtMjIgMDk6NTI6MDg=\""
},
{
... | null | [] | package com.dfyl.service;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
import weaver.conn.RecordSet;
import weaver.general.BaseBean;
import weaver.interfaces.schedule.BaseCronJob;
import weaver.soa.hr... | 5,517 | 0.69012 | 0.677747 | 178 | 29.421349 | 26.748034 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.64045 | false | false | 2 |
171cd016a3af8eafb7272bd7c90b6d339b46cf01 | 37,271,726,209,166 | 1c36e2a1ec576ad6960c3ebab802ed730ec13e70 | /TPMS/src/net/bitacademy/java41/controls/member/UpdateMyInfoFormControl.java | 2d7d2bde89c9a63e73d24117e49276d9901137f6 | [] | no_license | yoonwonkang/TPMS | https://github.com/yoonwonkang/TPMS | b64f54f548efc6bbcd8f4b83e188dafdee893961 | 1e47f7f79fbf983397509d3cdd07009644c8fc0b | refs/heads/master | 2016-09-08T04:15:42.288000 | 2013-09-24T11:42:25 | 2013-09-24T11:42:25 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.bitacademy.java41.controls.member;
import java.util.Map;
import javax.servlet.http.HttpSession;
import net.bitacademy.java41.annotations.Component;
import net.bitacademy.java41.controls.PageControl;
import net.bitacademy.java41.service.MemberService;
import net.bitacademy.java41.vo.Member;
@C... | UTF-8 | Java | 963 | java | UpdateMyInfoFormControl.java | Java | [] | null | [] | package net.bitacademy.java41.controls.member;
import java.util.Map;
import javax.servlet.http.HttpSession;
import net.bitacademy.java41.annotations.Component;
import net.bitacademy.java41.controls.PageControl;
import net.bitacademy.java41.service.MemberService;
import net.bitacademy.java41.vo.Member;
@C... | 963 | 0.76324 | 0.752856 | 32 | 28.09375 | 24.434044 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.375 | false | false | 2 |
40cd8708d9b65adfc0807acfe296006006f5548d | 1,932,735,330,941 | ed90803dc134453b589c71cfdbe389a10140cc05 | /Portfolio 3 - Database Assignment/jonasVSCtest/ChangeBox.java | e686556bd87959c5552dbf262e1d36773e2d18cf | [] | no_license | KataRiegels/Portfolios | https://github.com/KataRiegels/Portfolios | c32a7ccc026cb78bbcaa079f50cdb2cd30ea5166 | f75c36e8e29c110b0bb06a0e7fe6c4a62b6141ae | refs/heads/main | 2023-05-05T04:10:23.540000 | 2021-06-06T14:26:30 | 2021-06-06T14:26:30 | 346,650,675 | 0 | 2 | null | false | 2021-04-08T08:51:27 | 2021-03-11T09:40:39 | 2021-04-06T10:06:35 | 2021-04-08T08:51:27 | 1,592 | 0 | 1 | 0 | Java | false | false | import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Modality;
import javafx.stage.Stage;
public class ChangeBox {
s... | UTF-8 | Java | 1,817 | java | ChangeBox.java | Java | [] | null | [] | import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Modality;
import javafx.stage.Stage;
public class ChangeBox {
s... | 1,817 | 0.564117 | 0.555311 | 75 | 23.24 | 16.038986 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.573333 | false | false | 2 |
b632ef449e129219ace8493432e00c20a6734f1c | 13,314,398,625,164 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5738606668808192_1/java/ltaravilse/C.java | c2f1373857dd84059e8999e4344ee014f7688583 | [] | no_license | alexandraback/datacollection | https://github.com/alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417000 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.math.*;
import java.util.Random;
public class C {
public static void main(String[] args) {
int bits = 32;
int count = 0;
BigInteger[] bases = new BigInteger[9];
BigInteger[] mult = new BigInteger[9];
BigInteger one = new BigInteger("1");
for(int i=2;i<=10;i++)
{
bases[i-2] = new BigIntege... | UTF-8 | Java | 872 | java | C.java | Java | [] | null | [] | import java.math.*;
import java.util.Random;
public class C {
public static void main(String[] args) {
int bits = 32;
int count = 0;
BigInteger[] bases = new BigInteger[9];
BigInteger[] mult = new BigInteger[9];
BigInteger one = new BigInteger("1");
for(int i=2;i<=10;i++)
{
bases[i-2] = new BigIntege... | 872 | 0.579128 | 0.53555 | 34 | 24.67647 | 14.0832 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.088235 | false | false | 2 |
502046b06b05abe06ff0c7f36071ce0034f99755 | 21,397,527,080,754 | b2c0fed5134447e233629be3704fdd0968b94aa2 | /Foto-Szop/src/pl/fotoszop/modelMappers/EmployeeMapper.java | a6698f0d8a9ca97039e063ec6126178b86e79706 | [] | no_license | Openroads/ProjectISI_Foto | https://github.com/Openroads/ProjectISI_Foto | 52b49be8480c3ff22497ae0fe88e89788a271551 | 89d72da3fb2d745241aaf1eaf943ac49b46f8e7a | refs/heads/master | 2021-01-22T21:57:59.576000 | 2017-12-16T09:05:30 | 2017-12-16T09:05:30 | 85,491,290 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pl.fotoszop.modelMappers;
import org.springframework.jdbc.core.RowMapper;
import pl.fotoszop.model.Employee;
import java.sql.ResultSet;
import java.sql.SQLException;
public class EmployeeMapper implements RowMapper<Employee> {
@Override
public Employee mapRow(ResultSet rs, int rowNum) throws SQLExce... | UTF-8 | Java | 696 | java | EmployeeMapper.java | Java | [] | null | [] | package pl.fotoszop.modelMappers;
import org.springframework.jdbc.core.RowMapper;
import pl.fotoszop.model.Employee;
import java.sql.ResultSet;
import java.sql.SQLException;
public class EmployeeMapper implements RowMapper<Employee> {
@Override
public Employee mapRow(ResultSet rs, int rowNum) throws SQLExce... | 696 | 0.689655 | 0.689655 | 27 | 24.777779 | 23.333862 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.518519 | false | false | 2 |
2e1c13178ff1855187a97983cd5c2e9630a99f41 | 22,634,477,707,208 | f780e32007b7366143788c54bc7a7a2466fe27c2 | /herd-code/herd-dao/src/main/java/org/finra/herd/dao/impl/SubjectMatterExpertDaoImpl.java | 81ade0c4c6664c7823d60e3355b80faceb3b9b0e | [
"Apache-2.0"
] | permissive | rpatil524/herd | https://github.com/rpatil524/herd | 71705b5b59662ba4cf957a6a832ed33081d21596 | da5481d17b6e58dc6f2d4960b8b8d8ec05fb7d61 | refs/heads/master | 2022-10-12T00:58:22.208000 | 2022-10-01T16:03:56 | 2022-10-01T16:03:56 | 56,946,271 | 0 | 0 | Apache-2.0 | true | 2022-10-01T17:00:23 | 2016-04-24T00:04:18 | 2022-01-04T00:13:19 | 2022-10-01T17:00:21 | 117,914 | 0 | 0 | 0 | Java | false | false | /*
* Copyright 2015 herd contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in ... | UTF-8 | Java | 9,292 | java | SubjectMatterExpertDaoImpl.java | Java | [
{
"context": "Dn(ldapUserDn);\n contextSource.setPassword(ldapUserPassword);\n contextSource.afterProperti",
"end": 4096,
"score": 0.8049541711807251,
"start": 4092,
"tag": "PASSWORD",
"value": "ldap"
}
] | null | [] | /*
* Copyright 2015 herd contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in ... | 9,298 | 0.733857 | 0.73235 | 197 | 46.167511 | 41.022434 | 151 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.502538 | false | false | 2 |
f3348ebfd3bbf8eac7fa66ef9bf378e2e9df840f | 18,262,200,971,003 | b0449f253ddac1228a8e64f26ceded5347d6d1af | /1-algorithm/13-leetcode/java/src/advanced/combinatorial/subset/lc494_targetsum/Solution.java | 48591bfc12ac321d33ea8c8c0bf47284a1a791f5 | [
"MIT"
] | permissive | cdai/interview | https://github.com/cdai/interview | c03f64442b48cb8af0658642633d0118295a788d | d2dfffb707eb32ee83ed9caecce5a4dce976ccb7 | refs/heads/master | 2020-05-21T16:46:04.313000 | 2017-05-13T20:13:06 | 2017-05-13T20:13:06 | 60,381,799 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package advanced.combinatorial.subset.lc494_targetsum;
import java.util.LinkedList;
import java.util.Queue;
/**
* You are given a list of non-negative integers, a1, a2, ..., an, and a target, S.
* Now you have 2 symbols + and -. For each integer, you should choose one from + and - as its new symbol.
* Find out how... | UTF-8 | Java | 1,839 | java | Solution.java | Java | [] | null | [] | package advanced.combinatorial.subset.lc494_targetsum;
import java.util.LinkedList;
import java.util.Queue;
/**
* You are given a list of non-negative integers, a1, a2, ..., an, and a target, S.
* Now you have 2 symbols + and -. For each integer, you should choose one from + and - as its new symbol.
* Find out how... | 1,839 | 0.466014 | 0.455139 | 63 | 28.190475 | 23.705774 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.825397 | false | false | 2 |
dacae956a155e709016ce4d5f6f4049df8903a18 | 27,238,682,616,721 | ffa007d099573f0ac069baff2587aa70ea28c56c | /src/org/jhoule/ws/client/http/HTTPClientImpl.java | 2effa01e6bb5858b9842dbf0881a8a6c3b74a973 | [] | no_license | jhoule86/wsclient | https://github.com/jhoule86/wsclient | 27d3779d2ba6e0647cff749e0fa9a2d5ca300c10 | 4f6793a056d0f5993e06304e3fcc090bde344155 | refs/heads/master | 2022-12-30T18:18:20.815000 | 2020-10-19T16:26:40 | 2020-10-19T16:26:40 | 152,346,504 | 0 | 0 | null | false | 2020-10-19T16:26:41 | 2018-10-10T01:47:54 | 2020-08-10T03:33:28 | 2020-10-19T16:26:40 | 380 | 0 | 0 | 0 | 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 org.jhoule.ws.client.http;
import org.jhoule.ws.client.ClientException;
import org.jhoule.ws.client.RemoteResource;
import or... | UTF-8 | Java | 2,092 | java | HTTPClientImpl.java | Java | [
{
"context": "RLResource;\n\nimport java.util.Set;\n\n/**\n * @author jhoule\n */\npublic abstract class HTTPClientImpl implemen",
"end": 397,
"score": 0.9995975494384766,
"start": 391,
"tag": "USERNAME",
"value": "jhoule"
}
] | 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 org.jhoule.ws.client.http;
import org.jhoule.ws.client.ClientException;
import org.jhoule.ws.client.RemoteResource;
import or... | 2,092 | 0.665392 | 0.665392 | 87 | 23.045977 | 24.494385 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 2 |
fa287b53ebac2eeb6b2c60f774e88aa658e83a67 | 11,965,778,905,421 | a59f79ddeebd0f3ad0b40a98ce8942ab3cf02f0b | /src/main/java/pl/piomin/service/blockchain/PropertyType.java | fe3dc462090f019a837f48977e17010f6c9445ac | [] | no_license | txhsl/express-recording-system | https://github.com/txhsl/express-recording-system | d0d17486134ab2b63c7708a2d8ca8c362a10c137 | 9cb676f0f5c3acca5e34ab810ddec2180fdeace6 | refs/heads/master | 2020-11-23T22:11:05.846000 | 2019-12-16T06:44:35 | 2019-12-16T06:44:46 | 227,841,987 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pl.piomin.service.blockchain;
import java.util.ArrayList;
import java.util.Arrays;
/**
* @author: HuShili
* @date: 2019/2/13
* @description: none
*/
public class PropertyType {
public static ArrayList<String> Types = new ArrayList<>(
Arrays.asList(
"imgQR", "sender", "senderPhone", "r... | UTF-8 | Java | 614 | java | PropertyType.java | Java | [
{
"context": "rayList;\nimport java.util.Arrays;\n\n/**\n * @author: HuShili\n * @date: 2019/2/13\n * @description: none\n */\npub",
"end": 116,
"score": 0.9907038807868958,
"start": 109,
"tag": "NAME",
"value": "HuShili"
}
] | null | [] | package pl.piomin.service.blockchain;
import java.util.ArrayList;
import java.util.Arrays;
/**
* @author: HuShili
* @date: 2019/2/13
* @description: none
*/
public class PropertyType {
public static ArrayList<String> Types = new ArrayList<>(
Arrays.asList(
"imgQR", "sender", "senderPhone", "r... | 614 | 0.638436 | 0.627036 | 24 | 24.583334 | 21.771381 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.833333 | false | false | 2 |
65fa6a40c657f47c37a4ace6489994c5337444db | 32,298,154,072,438 | 33c2e903211da63036d5a67658abcc9fbc680d82 | /app/src/main/java/com/example/admin/last/loginMvp/LoginPresenterImpl.java | 8692b58c02df32d1e7e6199e173e1a92d049f9b8 | [] | no_license | dazzaguzza/last | https://github.com/dazzaguzza/last | 96966c28826e57504905d5f85f3fc7e7844f58d7 | 87712bb8c051e902f1f7c3e00703facb17ef9be1 | refs/heads/master | 2023-02-10T06:35:07.180000 | 2023-01-25T09:59:52 | 2023-01-25T09:59:52 | 179,535,771 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.admin.last.loginMvp;
import android.Manifest;
import android.app.Activity;
import android.content.Context;
import android.os.Handler;
import android.support.annotation.NonNull;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.PermissionChecker;
import android.util.Log... | UTF-8 | Java | 4,979 | java | LoginPresenterImpl.java | Java | [] | null | [] | package com.example.admin.last.loginMvp;
import android.Manifest;
import android.app.Activity;
import android.content.Context;
import android.os.Handler;
import android.support.annotation.NonNull;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.PermissionChecker;
import android.util.Log... | 4,979 | 0.618683 | 0.613851 | 152 | 31.677631 | 28.857317 | 156 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.532895 | false | false | 2 |
8eadac4513408005e4f7897519f179f111de071b | 13,331,578,513,916 | 670a4c51a2a7cf591c05ee071e6d79816b249da7 | /app/src/main/java/com/bku/speechtotext/ui/Fragment/VoiceRecogniteFragment.java | fc5253d4d8257a1e1a8c50426a965aea1515d4ce | [] | no_license | Kurosaki12a1/SpeechToTextUsingProtobuf | https://github.com/Kurosaki12a1/SpeechToTextUsingProtobuf | fee25a84d3e4a213223dfad7cadda06905c34a06 | 67ae01f2c1d1f95a7002c355cb9f7b789ad338e8 | refs/heads/master | 2020-04-08T02:53:37.623000 | 2018-11-24T16:11:57 | 2018-11-24T16:11:57 | 158,952,802 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.bku.speechtotext.ui.Fragment;
import android.content.Context;
import android.content.pm.PackageManager;
import android.media.MediaRecorder;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.Build;
import android.os.Bundle;
import android.os.Environment;
import androi... | UTF-8 | Java | 10,401 | java | VoiceRecogniteFragment.java | Java | [] | null | [] | package com.bku.speechtotext.ui.Fragment;
import android.content.Context;
import android.content.pm.PackageManager;
import android.media.MediaRecorder;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.Build;
import android.os.Bundle;
import android.os.Environment;
import androi... | 10,401 | 0.616768 | 0.615614 | 293 | 34.498295 | 25.864655 | 152 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.590444 | false | false | 2 |
5b42631ede41005e68ee89938365b523dc26c6fc | 15,891,379,056,589 | fae0fde928248d526a673ea5c4720a804f75d0a2 | /src/main/java/Aproject/Aprojectsystem/classes/comamndTransmitFromBroker.java | 9b824c496782cac6deb4cb04b57378bdfdd62164 | [] | no_license | GamerX29b/AProject | https://github.com/GamerX29b/AProject | d12017be5be311692beb1596187148250595cdd4 | ff30a1d4c54e85a6de9a374955ce7e4bbebbd296 | refs/heads/master | 2023-02-26T18:52:27.671000 | 2021-01-31T17:19:01 | 2021-01-31T17:19:01 | 323,412,344 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Aproject.Aprojectsystem.classes;
//@Path("/orders")
public class comamndTransmitFromBroker {
//
// @POST
// @Path("/newClient")
// public String getOrderById(String orderId) {
// System.out.println(orderId);
// BrokerReceiver productsReseiver = new BrokerReceiver();... | UTF-8 | Java | 454 | java | comamndTransmitFromBroker.java | Java | [] | null | [] | package Aproject.Aprojectsystem.classes;
//@Path("/orders")
public class comamndTransmitFromBroker {
//
// @POST
// @Path("/newClient")
// public String getOrderById(String orderId) {
// System.out.println(orderId);
// BrokerReceiver productsReseiver = new BrokerReceiver();... | 454 | 0.61674 | 0.61674 | 16 | 27.375 | 24.274151 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3125 | false | false | 2 |
4a21e9175d85c4491970de23b2d7feb30036ffa7 | 36,481,452,219,940 | a45b21d1ff0fdfec36fad9e6e6de490761405327 | /src/main/java/com/hitg/domain/UserState.java | 19ec420d3a558019758cee8e5c7f1d95f2ca4d3f | [] | no_license | PmiElita/landing | https://github.com/PmiElita/landing | f5e24c5cde4ac21b936bda2cf1e2986d12a1c213 | 5c286f07373b4e0e50b900b6dda7afb7916d8f60 | refs/heads/master | 2021-01-10T15:57:13.507000 | 2016-03-06T12:18:43 | 2016-03-06T12:18:43 | 54,777,977 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hitg.domain;
public enum UserState {
ACTIVE, NEW, EXPIRED;
}
| UTF-8 | Java | 80 | java | UserState.java | Java | [] | null | [] | package com.hitg.domain;
public enum UserState {
ACTIVE, NEW, EXPIRED;
}
| 80 | 0.6875 | 0.6875 | 5 | 14 | 11.045361 | 24 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1 | false | false | 2 |
828ff53d2cb06d502a66f2954797dedb0b65a67f | 35,244,501,647,435 | b123c744e5cef04b2d3fb8dd0db241ce6d757a3d | /oracle-aq-jms-queue/src/main/java/com/pratap/oracleaqjmsqueue/example/main/IDBManager.java | 8947cedcbebf6c09415f7a51426c2e4c15abd075 | [] | no_license | OrgPratap/test.demo | https://github.com/OrgPratap/test.demo | d4a95fe9b5a5bb0fd636232cfc161d1fce854d5b | 582ee04570a922d830ffc974abace6ebfb32900d | refs/heads/master | 2016-09-11T03:21:10.609000 | 2015-08-03T20:01:42 | 2015-08-03T20:01:42 | 39,433,621 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.pratap.oracleaqjmsqueue.example.main;
import java.sql.Connection;
import oracle.jdbc.pool.OracleDataSource;
public interface IDBManager
{
public Connection getConnection();
public OracleDataSource getOracleDataSource();
public void changeDatabaseName(String dbName);
}
| UTF-8 | Java | 288 | java | IDBManager.java | Java | [] | null | [] | package com.pratap.oracleaqjmsqueue.example.main;
import java.sql.Connection;
import oracle.jdbc.pool.OracleDataSource;
public interface IDBManager
{
public Connection getConnection();
public OracleDataSource getOracleDataSource();
public void changeDatabaseName(String dbName);
}
| 288 | 0.822917 | 0.822917 | 12 | 23 | 20.190758 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.75 | false | false | 2 |
f0f5e03988e85451f6d3b2dc4201559627a9207f | 18,416,819,832,919 | 49566b65639f65edcd7b7a59e90ac053794da2b5 | /Impulse-Lib/src/main/java/net/impulse/lib/document/GsonService.java | 9e62afb7154e9c4b553de74c6df44549bf5861e6 | [] | no_license | pyreneyt/Impulse-Software | https://github.com/pyreneyt/Impulse-Software | 1ff4b180b357fabf875b1b1f31a1f9a4a7f9a1be | f027fea1f49c32f22a6259b21438c3e416583cb7 | refs/heads/master | 2022-06-22T17:08:01.377000 | 2018-12-19T19:46:49 | 2018-12-19T19:46:49 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.impulse.lib.document;
import com.google.gson.*;
import javafx.util.Callback;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.nio.file.Files;
public class GsonService {
public static JsonElement load(File file) throws IOException {
return new JsonParse... | UTF-8 | Java | 1,904 | java | GsonService.java | Java | [] | null | [] | package net.impulse.lib.document;
import com.google.gson.*;
import javafx.util.Callback;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.nio.file.Files;
public class GsonService {
public static JsonElement load(File file) throws IOException {
return new JsonParse... | 1,904 | 0.715336 | 0.715336 | 56 | 33.017857 | 37.000721 | 164 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.732143 | false | false | 2 |
f3cdbd56cc68b8c75c1e1de477232fb99812061d | 35,150,012,361,648 | 36060c84326d0989bd16a4037f95fe29bad8487d | /src/java/controller/AccountController.java | cae27b245c5126892f7493c75fec1ad20efa1f2b | [] | no_license | shilinlu/MIS | https://github.com/shilinlu/MIS | c469e12491f58782efdcbe1a5654fbbdb38e3ed3 | 2a7328d643734d6a7a47d82176f7ee1fd0b03546 | refs/heads/master | 2021-01-21T17:38:52.836000 | 2017-05-21T18:03:27 | 2017-05-21T18:03:27 | 91,971,613 | 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 controller;
import domains.User;
import java.sql.SQLException;
import java.sql.SQLIntegrityConstraintViolationExcepti... | UTF-8 | Java | 7,512 | java | AccountController.java | Java | [
{
"context": "nd.annotation.RequestParam;\r\n\r\n/**\r\n *\r\n * @author shilinlu\r\n */\r\n@Controller\r\npublic class AccountController {",
"end": 892,
"score": 0.9450454711914062,
"start": 884,
"tag": "USERNAME",
"value": "shilinlu"
},
{
"context": "\"BuyGiftCard\");\r\n fi... | 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 controller;
import domains.User;
import java.sql.SQLException;
import java.sql.SQLIntegrityConstraintViolationExcepti... | 7,486 | 0.617412 | 0.613818 | 204 | 34.823528 | 27.014851 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.661765 | false | false | 2 |
e8302cd69b676ac45122a644d7cc5bf1b93aa196 | 15,951,508,588,216 | 56e37d0258662cdf646bfa8953d560ca473326f2 | /Java_Problems/src/Employee.java | 7c466f8c16b6f3db62039fb24a4f23f9731c5c9e | [] | no_license | saiprakash1916/java-practice | https://github.com/saiprakash1916/java-practice | a21df12a8b17023ea65f8be65ccc8ab6235be286 | b654ca456c8c747aab3bcb6cdd287a01cdd0e2be | refs/heads/master | 2023-03-21T20:50:30.483000 | 2021-03-17T01:16:37 | 2021-03-17T01:16:37 | 348,540,776 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class Employee {
String name = "sai";
String comapny = "Google";
String location = "Hyderabad";
int salary = 30000;
public static void main(String[] args) {
Employee e1 = new Employee();
System.out.println(e1.name);
System.out.println(e1.comapny);
System.out.println(e1.location);
System.out.printl... | UTF-8 | Java | 339 | java | Employee.java | Java | [
{
"context": "public class Employee {\n\tString name = \"sai\";\n\tString comapny = \"Google\";\n\tString location = ",
"end": 43,
"score": 0.9997102618217468,
"start": 40,
"tag": "NAME",
"value": "sai"
}
] | null | [] | public class Employee {
String name = "sai";
String comapny = "Google";
String location = "Hyderabad";
int salary = 30000;
public static void main(String[] args) {
Employee e1 = new Employee();
System.out.println(e1.name);
System.out.println(e1.comapny);
System.out.println(e1.location);
System.out.printl... | 339 | 0.696165 | 0.666667 | 13 | 25.076923 | 11.438541 | 41 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.923077 | false | false | 2 |
bf40b50425fefa7cfd5f4156e6839f0b891d9ba5 | 32,384,053,452,404 | eda2c926aed13d2e9e9ada84a975897224e5a5e8 | /java/operator/src/main/java/com/instaclustr/logback/ExceptionDetailsConverter.java | 7e9ec6e89675b94812f4e9d9d621032c72d3cc10 | [
"Apache-2.0"
] | permissive | aharpour/cassandra-operator | https://github.com/aharpour/cassandra-operator | 570325768cfe2f9035595ec2e4f4c4850e5f1444 | 8548505aaedebb675fc082595f6ba49527acaa57 | refs/heads/master | 2020-07-13T23:44:14.415000 | 2019-09-06T15:43:34 | 2019-09-06T15:43:34 | 205,181,175 | 0 | 0 | Apache-2.0 | true | 2019-08-29T14:21:50 | 2019-08-29T14:21:50 | 2019-08-29T03:43:19 | 2019-08-29T14:18:11 | 6,229 | 0 | 0 | 0 | null | false | false | package com.instaclustr.logback;
import ch.qos.logback.classic.spi.ILoggingEvent;
import ch.qos.logback.classic.spi.IThrowableProxy;
import ch.qos.logback.classic.spi.ThrowableProxy;
import ch.qos.logback.core.pattern.DynamicConverter;
import io.kubernetes.client.ApiException;
public class ExceptionDetailsConverter e... | UTF-8 | Java | 1,407 | java | ExceptionDetailsConverter.java | Java | [] | null | [] | package com.instaclustr.logback;
import ch.qos.logback.classic.spi.ILoggingEvent;
import ch.qos.logback.classic.spi.IThrowableProxy;
import ch.qos.logback.classic.spi.ThrowableProxy;
import ch.qos.logback.core.pattern.DynamicConverter;
import io.kubernetes.client.ApiException;
public class ExceptionDetailsConverter e... | 1,407 | 0.678749 | 0.678749 | 36 | 38.083332 | 34.632496 | 113 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.583333 | false | false | 2 |
b18da930e1b95b24af213ab3dba887785763d16b | 24,893,630,458,532 | e9a6e4bed2282a80d7b93a413c65d03c3f7259b9 | /GraphAnalysis_Pre0.23_Post0.20/src/custom/combiner/AugmentDegreeReducer.java | c58024c942f099bdef4b440e0e4251069beb5242 | [] | no_license | joshzinny/Hadoop | https://github.com/joshzinny/Hadoop | 8e805fefe86dfde27899197efbfc9ff5ae0181b7 | bd39c87acd8fa5998532ec894d8dc6ca10325a56 | refs/heads/master | 2020-06-07T06:41:53.014000 | 2015-02-24T13:38:17 | 2015-02-24T13:38:17 | 31,254,702 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package custom.combiner;
import java.io.IOException;
import java.util.ArrayList;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Reducer;
//the reducer is used to aggregate the values associated with a particular key.
// the node is the input key and the values are the edges associated with th... | UTF-8 | Java | 1,156 | java | AugmentDegreeReducer.java | Java | [] | null | [] | package custom.combiner;
import java.io.IOException;
import java.util.ArrayList;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Reducer;
//the reducer is used to aggregate the values associated with a particular key.
// the node is the input key and the values are the edges associated with th... | 1,156 | 0.717993 | 0.717128 | 27 | 41.851852 | 34.062801 | 113 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.222222 | false | false | 2 |
4e4a89528e66b4320069de3662b42ee6229d08f7 | 36,438,502,550,658 | 17a0f1cd357059c91ee446c8f5dddc2811dfc66e | /monitor-dp/target/classes/com/beingmate/monitorcenter/dp/pattern/afp/common/service/Sender.java | 0102b385e4a59242bdb5123597bd8f441a0f9245 | [] | no_license | yanhaizhe/monitor-center | https://github.com/yanhaizhe/monitor-center | 82b6a580d9fcc331da62bc866e06c2e649e68329 | 7b447ac0c3627425eb4cce82a6cc91d862ff3498 | refs/heads/master | 2021-01-20T12:55:51.241000 | 2017-08-29T02:31:04 | 2017-08-29T02:31:04 | 82,669,300 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.beingmate.monitorcenter.dp.pattern.afp.common.service;
/**
* Created by lenovo on 2017/2/24.
*/
public interface Sender {
/**
* 发送操作
*/
public void send();
}
| UTF-8 | Java | 199 | java | Sender.java | Java | [
{
"context": ".dp.pattern.afp.common.service;\n\n/**\n * Created by lenovo on 2017/2/24.\n */\npublic interface Sender {\n /",
"end": 92,
"score": 0.9995349645614624,
"start": 86,
"tag": "USERNAME",
"value": "lenovo"
}
] | null | [] | package com.beingmate.monitorcenter.dp.pattern.afp.common.service;
/**
* Created by lenovo on 2017/2/24.
*/
public interface Sender {
/**
* 发送操作
*/
public void send();
}
| 199 | 0.628272 | 0.591623 | 11 | 16.363636 | 18.970181 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.181818 | false | false | 2 |
9fbe1ccf34ca9c6e4461b13580f4ceb84fe70992 | 36,438,502,552,091 | c4816c3806b4fde2764085b838340287f81a8827 | /com.sap.jnc.marketing.persistence/src/main/java/com/sap/jnc/marketing/persistence/repository/impl/ConsumerRepositoryImpl.java | 39c96c441a9426b32ba1fe6926ec2b1644920653 | [] | no_license | enyeama/jnc-marketing | https://github.com/enyeama/jnc-marketing | 65e87588109504920251a2c44b3873b09825fc07 | 9e0ab45c29af57536128161bc6084c63408d74e7 | refs/heads/master | 2021-01-11T22:13:03.164000 | 2017-01-14T13:26:37 | 2017-01-14T13:26:37 | 78,935,958 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sap.jnc.marketing.persistence.repository.impl;
import javax.persistence.EntityManager;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.context.annotation.ScopedProxyMode;
import org.springframework.data.jpa.repo... | UTF-8 | Java | 809 | java | ConsumerRepositoryImpl.java | Java | [] | null | [] | package com.sap.jnc.marketing.persistence.repository.impl;
import javax.persistence.EntityManager;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.context.annotation.ScopedProxyMode;
import org.springframework.data.jpa.repo... | 809 | 0.849197 | 0.849197 | 22 | 35.81818 | 31.521473 | 113 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.772727 | false | false | 2 |
ea5668b8211a4455f8f003ac7ef140ebdadd2866 | 29,351,806,535,211 | 818bf78fbe010b6320805b01decea4f46f9a64ec | /ExampleRestAssured3 — копия/src/test/java/FirstTest.java | 2e7ed9cfa3a1acafe3f57f85943fb94d5a79439d | [] | no_license | VikaIRaznoe/RestAssuredQA | https://github.com/VikaIRaznoe/RestAssuredQA | 6c8190f55a1be695b6c0551d3f44ea8dccb24317 | ed0f6863565a6d7c1168716f9d8a40751ad6d78c | refs/heads/master | 2023-05-14T05:25:56.905000 | 2020-01-28T22:34:34 | 2020-01-28T22:34:34 | 234,406,586 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | //Будем использовать всю фнукциональность библиотеки RestAssured
import config.TestConfig;
import org.testng.annotations.Test;
import static constans.Constans.Actions.SWAPI_GET_PEOPLE;
import static io.restassured.RestAssured.*;
public class FirstTest extends TestConfig {
@Test
public void myFirstTest(){
... | UTF-8 | Java | 1,053 | java | FirstTest.java | Java | [] | null | [] | //Будем использовать всю фнукциональность библиотеки RestAssured
import config.TestConfig;
import org.testng.annotations.Test;
import static constans.Constans.Actions.SWAPI_GET_PEOPLE;
import static io.restassured.RestAssured.*;
public class FirstTest extends TestConfig {
@Test
public void myFirstTest(){
... | 1,053 | 0.600213 | 0.58742 | 32 | 28.3125 | 19.644398 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.21875 | false | false | 2 |
33cb495b82279c43cfe2cebc7662b4aeaa238c8a | 36,215,164,251,473 | ddeaaeaf3e687b6215461650304a04f30fb4f731 | /ServerSide/src/runnables/SeverThread.java | 0157bdb68b446d0583bc5aebafded25cac55eeff | [
"MIT"
] | permissive | kwonhong/PublicMessenger | https://github.com/kwonhong/PublicMessenger | 96d9764df00ec36c1a9b6e27f48c24f9a41094a3 | 5d7cb20f375cfb647d40e71a20b23330e1be2629 | refs/heads/master | 2021-01-21T11:09:13.525000 | 2014-09-06T14:39:36 | 2014-09-06T14:39:36 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package runnables;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PipedInputStream;
import java.io.PipedOutputStream;
import java.io.PrintWriter;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.ArrayList;
import classes.Cl... | UTF-8 | Java | 4,278 | java | SeverThread.java | Java | [
{
"context": "t without socket\r\n\t\t\t\tClient client2 = new Client(username2);\r\n\t\t\t\tclients.add(client2);\r\n\t\t\t\tCommunicationTh",
"end": 3885,
"score": 0.9907181859016418,
"start": 3876,
"tag": "USERNAME",
"value": "username2"
}
] | null | [] | package runnables;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PipedInputStream;
import java.io.PipedOutputStream;
import java.io.PrintWriter;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.ArrayList;
import classes.Cl... | 4,278 | 0.649135 | 0.645395 | 181 | 21.635359 | 18.95472 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.558011 | false | false | 2 |
687b14a0c21937dabef40260ac6168385a5f2338 | 36,129,264,894,561 | 2fc7a9c52e29dd236e8c03e61c3d40dfe99806d7 | /src/main/java/com/revoluteai/constants/QueryConstants.java | 5fb6f8637a7d4ab812b2ae6d35dce32a353989fb | [] | no_license | LOKESH159/Employee | https://github.com/LOKESH159/Employee | e799c3da19efb5cbaa4eb48182303e5d3171d75b | 2d617da46ffb65bdc168c6a7d856c8e2d57c2f62 | refs/heads/master | 2023-01-22T11:10:52.842000 | 2020-11-21T07:27:07 | 2020-11-21T07:27:07 | 314,756,899 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.revoluteai.constants;
public class QueryConstants {
public static final int PAGE_LIMIT = 5;
}
| UTF-8 | Java | 113 | java | QueryConstants.java | Java | [] | null | [] | package com.revoluteai.constants;
public class QueryConstants {
public static final int PAGE_LIMIT = 5;
}
| 113 | 0.743363 | 0.734513 | 7 | 15.142858 | 17.626511 | 43 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.285714 | false | false | 2 |
25ae1148478bea7bf4dd9ab372fc4fadae565f29 | 18,193,481,534,346 | 1ff2566ba12f154439ad1162c59a5e4d7680819c | /src/main/java/com/tokisaki/superadmin/exception/InvalidInputParamException.java | 8fd315fef8851154b4034e7b40339e74079ef29c | [] | no_license | xuandw123/tokisakiAdmin | https://github.com/xuandw123/tokisakiAdmin | e02fae0d10cdd96ba65e3df043bd795c0ea3e51a | 9c9a2b427df032e46e5197b797e68bde8c3613ad | refs/heads/master | 2020-09-22T02:42:03.809000 | 2019-11-30T07:30:14 | 2019-11-30T07:30:14 | 225,021,523 | 1 | 0 | null | true | 2019-11-30T14:07:03 | 2019-11-30T14:07:03 | 2019-11-30T07:30:23 | 2019-11-30T07:30:21 | 135 | 0 | 0 | 0 | null | false | false | package com.tokisaki.superadmin.exception;
public class InvalidInputParamException extends RuntimeException {
private static final long serialVersionUID = -6230587222337328377L;
public InvalidInputParamException(String msg) {
super(msg);
}
}
| UTF-8 | Java | 249 | java | InvalidInputParamException.java | Java | [] | null | [] | package com.tokisaki.superadmin.exception;
public class InvalidInputParamException extends RuntimeException {
private static final long serialVersionUID = -6230587222337328377L;
public InvalidInputParamException(String msg) {
super(msg);
}
}
| 249 | 0.819277 | 0.742972 | 9 | 26.666666 | 27.531799 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.888889 | false | false | 2 |
95f2d0f76278605048548edafe5f9cf7511a560f | 14,989,435,884,716 | f670514dadcdd30cc8fef25fb593338b3d51cb58 | /java待上传github代码/xml配置文件/其他配置/activemq的配置/spring整合版/TopicConsumer2.java | 2776e350bd876959c7409743276e7c94bb51605f | [] | no_license | 17181370591/javanotesbig | https://github.com/17181370591/javanotesbig | d1280312b3028a7e02e03fda144dc5cc1cf2ad81 | eb0596addb32cf0de0048478965913c5493b7658 | refs/heads/master | 2023-01-11T18:57:50.763000 | 2019-10-03T07:09:28 | 2019-10-03T07:09:28 | 153,871,347 | 0 | 2 | null | false | 2023-01-02T22:12:40 | 2018-10-20T05:01:23 | 2019-10-03T07:16:56 | 2023-01-02T22:12:40 | 1,540,386 | 0 | 2 | 18 | HTML | false | false | package cn.me.jms.consumer;
import javax.jms.Message;
import javax.jms.MessageListener;
import org.springframework.stereotype.Component;
@Component
public class TopicConsumer2 implements MessageListener {
@Override
public void onMessage(Message arg0) {
System.out.println(arg0);
}
}
| UTF-8 | Java | 293 | java | TopicConsumer2.java | Java | [] | null | [] | package cn.me.jms.consumer;
import javax.jms.Message;
import javax.jms.MessageListener;
import org.springframework.stereotype.Component;
@Component
public class TopicConsumer2 implements MessageListener {
@Override
public void onMessage(Message arg0) {
System.out.println(arg0);
}
}
| 293 | 0.791809 | 0.78157 | 16 | 17.3125 | 18.482149 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.625 | false | false | 2 |
5f3f0c3e1446e95fe2d3e59ce90047b3256350a3 | 18,305,150,636,469 | 2c65fb7efabd0a69b8bee5d39b78e82e4afd2495 | /CrawlHTMLUnit/src/main/java/com/dataTransferObject/IndianRailwayDto.java | f785afb855b3be6f9319fd7282af8d9335ff8f63 | [
"MIT"
] | permissive | r-kapoor/TripsOnAir | https://github.com/r-kapoor/TripsOnAir | 481c1347d854979c4a32e11b025ce414dc60b8b2 | 763de9be4deff8a581a920f54ede8af1ed9ad888 | refs/heads/master | 2021-01-15T08:37:55.899000 | 2017-07-03T23:46:18 | 2017-07-03T23:46:18 | 17,993,363 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dataTransferObject;
import java.util.ArrayList;
import com.indianRail.arrayListObject;
public class IndianRailwayDto {
public String name;
public int trainNo;
public String days;
public byte pantry;
public String type;
public ArrayList<arrayListObject> stationsDetails;
public String getName() {... | UTF-8 | Java | 1,049 | java | IndianRailwayDto.java | Java | [] | null | [] | package com.dataTransferObject;
import java.util.ArrayList;
import com.indianRail.arrayListObject;
public class IndianRailwayDto {
public String name;
public int trainNo;
public String days;
public byte pantry;
public String type;
public ArrayList<arrayListObject> stationsDetails;
public String getName() {... | 1,049 | 0.731173 | 0.731173 | 53 | 18.792454 | 16.68618 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.471698 | false | false | 2 |
dc8a9da9cacb4a50449d8d600276fb9f214102db | 5,583,457,512,088 | ec4c71e8caacfa17ed941b44e28abd4f931f33fa | /src/main/java/ru/kershov/blogapp/services/StorageService.java | 0b105d875fc9402a7cdc224d8398e45cbfb3f72c | [
"MIT"
] | permissive | kershov/skillbox_blogapp | https://github.com/kershov/skillbox_blogapp | cd110bd25df14534a689a66b3f6233f505634fe4 | 5b6ae230e68d61ad745079c323c4ffae806760b3 | refs/heads/master | 2020-12-11T17:07:13.709000 | 2020-03-13T09:04:05 | 2020-03-13T09:04:05 | 233,905,544 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ru.kershov.blogapp.services;
import org.springframework.web.multipart.MultipartFile;
import java.nio.file.Path;
public interface StorageService {
void init();
String store(MultipartFile file);
Path load(String filename);
boolean delete(String filename);
void deleteAll();
Path get... | UTF-8 | Java | 338 | java | StorageService.java | Java | [] | null | [] | package ru.kershov.blogapp.services;
import org.springframework.web.multipart.MultipartFile;
import java.nio.file.Path;
public interface StorageService {
void init();
String store(MultipartFile file);
Path load(String filename);
boolean delete(String filename);
void deleteAll();
Path get... | 338 | 0.730769 | 0.730769 | 19 | 16.789474 | 17.446396 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.473684 | false | false | 2 |
3ccfa540064671a6b2a4692e8488eb8fb43f3d5f | 29,326,036,716,922 | 4aae34d37572688d34c224e6b812ef4a3b633b55 | /LTISystem/web/com/lti/jobscheduler/DailyUpdateJob.java | cf66feb7ee723dd4e84d3255829f3fac85ca504b | [] | no_license | cpedia/xjany-jee-1 | https://github.com/cpedia/xjany-jee-1 | 9300eabfc263e1f3a4346fccdceaed5c3b606f6d | 2a9791b248c4f58c8113dbff2d32b8023244a0ec | refs/heads/master | 2016-08-11T14:58:30.434000 | 2013-04-11T03:22:40 | 2013-04-11T03:22:40 | 55,684,098 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lti.jobscheduler;
import java.util.TimerTask;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
public class DailyUpdateJob extends TimerTask{
static Log log = LogFactory.getLog(DailyUpdateJob.class);
public void run() {
DailyUpdateContr... | UTF-8 | Java | 393 | java | DailyUpdateJob.java | Java | [] | null | [] | package com.lti.jobscheduler;
import java.util.TimerTask;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
public class DailyUpdateJob extends TimerTask{
static Log log = LogFactory.getLog(DailyUpdateJob.class);
public void run() {
DailyUpdateContr... | 393 | 0.712468 | 0.712468 | 22 | 15.863636 | 20.976818 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.909091 | false | false | 2 |
77e2a4caf9d236d8c592071e2df4261a9e6d12d8 | 5,119,601,047,329 | cfb8a1f6139c32a7396b3c16ff8bdc3f0ff234f5 | /WebService/src/main/java/com/ogliari/service/GenericService.java | 75a8d3d6c040b50cfb6f915bfd1506d9fffcb767 | [] | no_license | guiogliari/ExemplosJavaEE | https://github.com/guiogliari/ExemplosJavaEE | 6b4bb2c06c448afb5027f14f8037002fa8b6928a | a52da6f74dfaa6d8ddfa7e541fce655fd29c67d6 | refs/heads/master | 2021-01-10T22:39:39.022000 | 2016-09-30T22:51:14 | 2016-09-30T22:53:17 | 69,707,133 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ogliari.service;
import java.io.Serializable;
import java.util.List;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import com.ogliari.dao.... | UTF-8 | Java | 1,062 | java | GenericService.java | Java | [] | null | [] | package com.ogliari.service;
import java.io.Serializable;
import java.util.List;
import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import com.ogliari.dao.... | 1,062 | 0.684557 | 0.684557 | 62 | 16.129032 | 14.755517 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.064516 | false | false | 2 |
e9c3a7cd718fc0c5c2d23a82256412039dadd80c | 4,363,686,800,309 | 9a9fcafa9bbc28c9f1930e01c46af8f023955aea | /JavaEE就业班多线程和数据库/作业题1/就业班JavaSE--day06【Date、DateFormat、Calendar、Math、System、包装类、正则表达式】/示例/day06_homework/src/com/itheima/level2/Test15.java | a8dc30bf43331b65cf5c3b31393b773f862ab013 | [] | no_license | zhengbingyanbj/JavaSE | https://github.com/zhengbingyanbj/JavaSE | 84cd450ef5525050809c78a8b6660b9495c072db | 671ac02dcafe81d425c3c191c313b6040e8ae557 | refs/heads/master | 2021-09-01T18:20:49.082000 | 2017-12-28T07:13:30 | 2017-12-28T07:13:30 | 115,139,599 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.itheima.level2;
/*
使用正则表达式切割字符串
* 192.168.105.27 按照 . 号切割字符串
* 18 22 40 65 按照空格切割字符串
提示: 由于 . 号 在正则表达式中用于匹配除换行符以外的任意字符,会把字符串切的连渣都不剩,
此处使用 . 号需要转义; 使用\\.作为切割使用正则表达式
1.在com.itheima.level2包下创建Test15
2.在Test15类中提供main方法,在main方法中
a)定义字符串变量str1,赋值为192.168.105.27
b)调用str1的split的方法,传入 “\... | GB18030 | Java | 1,637 | java | Test15.java | Java | [
{
"context": "package com.itheima.level2;\n\n/*\n 使用正则表达式切割字符串\n* 192.168.105.27 按照 . 号切割字符串\n* 18 22 40 65 按照空格切割字符串\n 提示: 由于 .",
"end": 62,
"score": 0.9996203184127808,
"start": 48,
"tag": "IP_ADDRESS",
"value": "192.168.105.27"
},
{
"context": "15\n2.在Test15类中提供main方法,在main方法中... | null | [] | package com.itheima.level2;
/*
使用正则表达式切割字符串
* 192.168.105.27 按照 . 号切割字符串
* 18 22 40 65 按照空格切割字符串
提示: 由于 . 号 在正则表达式中用于匹配除换行符以外的任意字符,会把字符串切的连渣都不剩,
此处使用 . 号需要转义; 使用\\.作为切割使用正则表达式
1.在com.itheima.level2包下创建Test15
2.在Test15类中提供main方法,在main方法中
a)定义字符串变量str1,赋值为192.168.105.27
b)调用str1的split的方法,传入 “\... | 1,637 | 0.654299 | 0.551131 | 40 | 26.625 | 14.677683 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.975 | false | false | 2 |
ebfaccba1dfe45bdf7de5953656248e02a375e13 | 7,876,970,023,081 | b5487ff9fdf24d3ab910531ad798b6154d1306fd | /AirportWeatherService/src/weather/model/AirportData.java | 519a25d2c9967d007c7e06a3ebd831cfdd7df4f3 | [] | no_license | aatmaca/weather-service | https://github.com/aatmaca/weather-service | ef9d8907462a3afaf09ed88a1430ed95893cbc2d | a4faa129bbf41f5452ce95deeb89a5c3f54a6529 | refs/heads/master | 2021-09-07T10:05:31.207000 | 2018-02-21T11:54:31 | 2018-02-21T11:54:31 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package weather.model;
import java.util.TimeZone;
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* Basic airport information.
*
* @author code test administrator
*/
public class AirportData {
/** Main city served by airport. May be ... | UTF-8 | Java | 3,024 | java | AirportData.java | Java | [
{
"context": ";\n\n/**\n * Basic airport information.\n *\n * @author code test administrator\n */\npublic class AirportData {\n\n\t/** Main city se",
"end": 246,
"score": 0.9536314010620117,
"start": 223,
"tag": "USERNAME",
"value": "code test administrator"
}
] | null | [] | package weather.model;
import java.util.TimeZone;
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* Basic airport information.
*
* @author code test administrator
*/
public class AirportData {
/** Main city served by airport. May be ... | 3,024 | 0.700066 | 0.698413 | 154 | 18.636364 | 20.950722 | 126 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.357143 | false | false | 2 |
63dd379705d5d551efc9ede856119fbcf8f89bb3 | 17,609,365,962,422 | 4712a164948adf12159a3d3d23af3e530792daf6 | /SYS_AFGL/com/chinacreator/afgl/bean/KkpcqktjBean.java | 44765a4a293ce699f76340a0463c5b7f6722fb29 | [] | no_license | WalkerOstarliang/CPS | https://github.com/WalkerOstarliang/CPS | 71cc7ded9caa354fb3d55425679d0d648ed10668 | ea16d80d187d4c2b30d2daf00e4dc3473908c6ce | refs/heads/master | 2020-04-03T06:38:05.039000 | 2015-05-25T15:21:43 | 2015-05-25T15:21:43 | 155,079,843 | 0 | 3 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.chinacreator.afgl.bean;
/**
* 卡口盘查情况统计
*
*/
public class KkpcqktjBean {
private String dwdm; //单位代码
private String dwmc; //单位名称
private String pcxxzs; //盘查信息总数
private String kkxczs; //卡口巡查总数
private String kywps; //可疑物品数
private String khsj; //本月盘查考核时间
public Strin... | UTF-8 | Java | 1,088 | java | KkpcqktjBean.java | Java | [] | null | [] | package com.chinacreator.afgl.bean;
/**
* 卡口盘查情况统计
*
*/
public class KkpcqktjBean {
private String dwdm; //单位代码
private String dwmc; //单位名称
private String pcxxzs; //盘查信息总数
private String kkxczs; //卡口巡查总数
private String kywps; //可疑物品数
private String khsj; //本月盘查考核时间
public Strin... | 1,088 | 0.635189 | 0.635189 | 52 | 17.346153 | 13.520475 | 39 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.903846 | false | false | 2 |
c8688c4be12c05ef48711a17a68a61f7e6976a5a | 15,169,824,544,779 | fd9a86172a273b7ec04cb861d32d5cf31837e916 | /src/mirrormonkey/util/annotations/parsing/MemberKey.java | bf95f1d6fc4a5a9a95cbe5d0aae285f9d4ad83ea | [] | no_license | jMonkeyEngine-Contributions/mirrormonkey-main | https://github.com/jMonkeyEngine-Contributions/mirrormonkey-main | 8add4dde832b7d530420f43dd8f827fe79d16ca9 | 94ac6874a3d44d6041c4e44a1d23cb986014fa31 | refs/heads/master | 2021-01-10T18:58:49.384000 | 2012-08-19T03:17:20 | 2012-08-19T03:17:20 | 41,590,459 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright (c) 2011, 2012, Philipp Christian Loewner
* All rights reserved.
*
* Disclaimer:
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyr... | UTF-8 | Java | 5,807 | java | MemberKey.java | Java | [
{
"context": "/*\n * Copyright (c) 2011, 2012, Philipp Christian Loewner\n * All rights reserved.\n * \n * Disclaimer:\n * Red",
"end": 57,
"score": 0.9998686909675598,
"start": 32,
"tag": "NAME",
"value": "Philipp Christian Loewner"
},
{
"context": ">Member</tt> in a <tt>ClassIR</tt... | null | [] | /*
* Copyright (c) 2011, 2012, <NAME>
* All rights reserved.
*
* Disclaimer:
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, thi... | 5,769 | 0.676081 | 0.669192 | 166 | 33.987953 | 28.443769 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.180723 | false | false | 2 |
9859c19b57e8f3d43b83ede667ed0318e9b6973e | 26,379,689,182,216 | 3d7ce9854e24886846ff8adfd96cb99cde18caa3 | /src/tests/MainFrameTest.java | 0745c94cb514aeba2328a81d51004556d1b3e9cf | [] | no_license | gw-sd-2016/StockMarketProgram | https://github.com/gw-sd-2016/StockMarketProgram | c3db92857ac6110684367d0e9af888eb6c09ea1b | c979dac0407beb6d8f355d5ec1606fd531e528c1 | refs/heads/master | 2021-01-10T11:01:11.215000 | 2016-05-04T15:04:03 | 2016-05-04T15:04:03 | 44,645,145 | 0 | 3 | null | false | 2016-05-04T15:04:11 | 2015-10-21T01:28:33 | 2016-01-18T01:16:21 | 2016-05-04T15:04:03 | 81,358 | 0 | 2 | 15 | Java | null | null | package tests;
import static org.junit.Assert.*;
import java.io.File;
import java.io.IOException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.LinkedHashMap;
import java.util.Map;
import org.apache.com... | UTF-8 | Java | 2,053 | java | MainFrameTest.java | Java | [] | null | [] | package tests;
import static org.junit.Assert.*;
import java.io.File;
import java.io.IOException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.LinkedHashMap;
import java.util.Map;
import org.apache.com... | 2,053 | 0.76717 | 0.753531 | 76 | 26.013159 | 27.240881 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.368421 | false | false | 2 |
5a093ef002a82d27d40d1bc47a60f88c1ab7268a | 2,525,440,823,610 | f9072f270ce32329eef73d77ae8337d7797ae9a8 | /app/src/main/java/com/icalialabs/airenl/Activities/RecomendationPopup.java | 0d64c7d95e7127ac408ab04558c41dea1b830432 | [] | no_license | simanl/AireNL-Android | https://github.com/simanl/AireNL-Android | 5151a8c93ce0b893a900b1f84ac3d0f52c53e5bf | cccda128350eaf4009bf912063267b2c0568d9c2 | refs/heads/master | 2021-01-10T03:20:53.099000 | 2016-10-17T20:17:17 | 2016-10-17T20:17:17 | 46,742,707 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.icalialabs.airenl.Activities;
import android.app.Activity;
import android.os.Bundle;
import android.util.DisplayMetrics;
import android.view.Gravity;
import android.view.View;
import android.view.WindowManager;
import android.widget.TextView;
import com.icalialabs.airenl.R;
/**
* Created by Compean on 1... | UTF-8 | Java | 2,003 | java | RecomendationPopup.java | Java | [
{
"context": "import com.icalialabs.airenl.R;\n\n/**\n * Created by Compean on 19/10/15.\n */\npublic class RecomendationPopup ",
"end": 315,
"score": 0.9992515444755554,
"start": 308,
"tag": "NAME",
"value": "Compean"
}
] | null | [] | package com.icalialabs.airenl.Activities;
import android.app.Activity;
import android.os.Bundle;
import android.util.DisplayMetrics;
import android.view.Gravity;
import android.view.View;
import android.view.WindowManager;
import android.widget.TextView;
import com.icalialabs.airenl.R;
/**
* Created by Compean on 1... | 2,003 | 0.667499 | 0.655517 | 64 | 30.296875 | 24.367422 | 95 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.609375 | false | false | 2 |
7e08aeef6b66a5bda5ff751fb7eb68c3af41ac3c | 30,803,505,506,037 | ed39bb34eb25628f865680c97f95b79bf5d9a763 | /src/main/java/pers/zs/backend/controller/UsingStaticController.java | f2d6d57082bc29bbf6aca0f3a59cee1e23b858a7 | [] | no_license | rosegardensquare/backend-01 | https://github.com/rosegardensquare/backend-01 | 06f4ddf195731b3aed03300c8a8db712405dcffe | fbb35331073364ac0cfae023e0e1ffd1c3239029 | refs/heads/master | 2020-04-28T19:53:26.102000 | 2019-04-05T13:59:00 | 2019-04-05T13:59:00 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pers.zs.backend.controller;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
/**
* @author zhang shuai
* @since 1.0.0
**/
@Confi... | UTF-8 | Java | 578 | java | UsingStaticController.java | Java | [
{
"context": "tation.WebMvcConfigurationSupport;\n\n/**\n * @author zhang shuai\n * @since 1.0.0\n **/\n@Configuration\npublic class ",
"end": 292,
"score": 0.9998213648796082,
"start": 281,
"tag": "NAME",
"value": "zhang shuai"
}
] | null | [] | package pers.zs.backend.controller;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport;
/**
* @author <NAME>
* @since 1.0.0
**/
@Configurat... | 573 | 0.799308 | 0.794118 | 19 | 29.421053 | 33.781521 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.263158 | false | false | 2 |
db6929e0bac991a22209213892fcf8e29b8df72b | 27,152,783,296,427 | 8cda99da919f64392c65df73e7ca5c3552ad2386 | /micang.egc.common/src/main/java/com/common/template/ChapterStarGiftTemplate.java | 3662b1cd32395176f24aa1b280af3ffe6d871c60 | [] | no_license | daxingyou/micang | https://github.com/daxingyou/micang | 76859bd49573d0427f30ede5ed7f15f4cff352e5 | 0051a7a623ccd4e8d2a21f20d972d92e5c55f478 | refs/heads/master | 2023-05-13T14:05:46.868000 | 2020-01-10T09:29:24 | 2020-01-10T09:29:24 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.common.template;
public class ChapterStarGiftTemplate extends TemplateBase {
private Integer chapterId;
private String star;
private String reward1;
private String num1;
private String reward2;
private String num2;
private String reward3;
private String num3;
... | UTF-8 | Java | 1,765 | java | ChapterStarGiftTemplate.java | Java | [] | null | [] | package com.common.template;
public class ChapterStarGiftTemplate extends TemplateBase {
private Integer chapterId;
private String star;
private String reward1;
private String num1;
private String reward2;
private String num2;
private String reward3;
private String num3;
... | 1,765 | 0.648725 | 0.614731 | 107 | 14.495327 | 17.40468 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.448598 | false | false | 2 |
abe485a9203a99564783ee148d33071412ed8345 | 33,200,097,248,167 | 9cbeb44c95597437cf2d937aa4676faa68d7e128 | /src/main/java/joshie/progression/helpers/DimensionHelper.java | 954247eded17937d9c36a625c1bf152681808294 | [
"MIT"
] | permissive | ipl-adm/Progression | https://github.com/ipl-adm/Progression | 69a756a432cc94a5e88b03663617bab0e9fbdfe8 | 1ab4a7f3c4b9a2a9b28fb9f85710562f5820114d | refs/heads/master | 2021-08-30T20:44:54.454000 | 2016-09-26T09:01:40 | 2016-09-26T09:01:40 | 305,634,387 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package joshie.progression.helpers;
import net.minecraft.world.DimensionType;
public class DimensionHelper {
public static String getDimensionNameFromID(final int id) {
try {
DimensionType type = DimensionType.getById(id);
if (type != null) return type.getName();
} catch (... | UTF-8 | Java | 381 | java | DimensionHelper.java | Java | [] | null | [] | package joshie.progression.helpers;
import net.minecraft.world.DimensionType;
public class DimensionHelper {
public static String getDimensionNameFromID(final int id) {
try {
DimensionType type = DimensionType.getById(id);
if (type != null) return type.getName();
} catch (... | 381 | 0.653543 | 0.653543 | 14 | 26.214285 | 22.204178 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.357143 | false | false | 2 |
22a865290257780a58cef3a6bd1d651358e976ae | 18,270,790,939,240 | cf0fbd752c0c1522d75e0bc3feb46b0e0eb96836 | /kodilla-collections/src/main/java/com/kodilla/collections/interfaces/homework/Opel.java | 14f83e13f222eeb4f9f551a157304b171da7e338 | [] | no_license | Agnieszka-L/agnieszka_lachendro-kodilla_tester | https://github.com/Agnieszka-L/agnieszka_lachendro-kodilla_tester | c2bf4304fb0ba9e891919538529104427af2923b | a6579f3c1ed128c986023ade98e814e1866d089e | refs/heads/master | 2020-12-14T05:24:25.051000 | 2020-03-25T03:52:32 | 2020-03-25T03:52:32 | 234,654,738 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.kodilla.collections.interfaces.homework;
public class Opel implements Car {
private double speed;
public Opel(double speed){
this.speed = speed;
}
@Override
public double getSpeed() {
return speed;
}
@Override
public void increaseSpeed() {
speed =... | UTF-8 | Java | 524 | java | Opel.java | Java | [] | null | [] | package com.kodilla.collections.interfaces.homework;
public class Opel implements Car {
private double speed;
public Opel(double speed){
this.speed = speed;
}
@Override
public double getSpeed() {
return speed;
}
@Override
public void increaseSpeed() {
speed =... | 524 | 0.568702 | 0.564885 | 31 | 15.903226 | 15.18776 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.225806 | false | false | 2 |
b16e3b08b20a4137fa15e485bbea002b1a262b63 | 24,627,342,539,666 | 8a2d3485ab05c0c6946b220564d6acc28afed9c2 | /src/main/java/projekt/docflow/handlers/PublishDocumentHandler.java | 5703e26d04db862c8fb2de6b57915a637c60127f | [] | no_license | Wtorek007/Wtorek007pl | https://github.com/Wtorek007/Wtorek007pl | ea9b48ae74b043076d86a9eff4ec10a56844b56d | e2bb949b4484723026db0f69f803e945637f7234 | refs/heads/master | 2020-04-02T14:29:41.895000 | 2018-10-24T15:34:17 | 2018-10-24T15:34:17 | 154,526,971 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package projekt.docflow.handlers;
import projekt.core.Handler;
import projekt.docflow.commands.PublishDocumentCommand;
public class PublishDocumentHandler implements Handler<PublishDocumentCommand, Void> {
@Override
public Void handle(PublishDocumentCommand publishDocumentCommand) {
return null;
}... | UTF-8 | Java | 323 | java | PublishDocumentHandler.java | Java | [] | null | [] | package projekt.docflow.handlers;
import projekt.core.Handler;
import projekt.docflow.commands.PublishDocumentCommand;
public class PublishDocumentHandler implements Handler<PublishDocumentCommand, Void> {
@Override
public Void handle(PublishDocumentCommand publishDocumentCommand) {
return null;
}... | 323 | 0.795666 | 0.795666 | 11 | 28.363636 | 28.731588 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.454545 | false | false | 2 |
9ac3a2f4936f964b622ee47a31e2d365781c9871 | 33,844,342,334,267 | ba661749c24abf682a47a101f7231a640b2cb12b | /app/src/main/java/examples/com/cameraintent/RecyclerviewAdapter.java | 017b30d8126c3dd962a87611a862965a1f5e14a6 | [] | no_license | RajputNaveenLalTiwari/CameraIntent | https://github.com/RajputNaveenLalTiwari/CameraIntent | 23595905c69fe54d81bc35c05a951a450427d2dc | b58fe4cb9bf55fb1fe2f914ab1440fce4fb3ced8 | refs/heads/master | 2021-06-21T20:50:30.911000 | 2017-08-16T05:39:05 | 2017-08-16T05:39:05 | 100,451,866 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package examples.com.cameraintent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import java.io.File;
/**
* Created by... | UTF-8 | Java | 1,915 | java | RecyclerviewAdapter.java | Java | [
{
"context": "ageView;\n\nimport java.io.File;\n\n/**\n * Created by 2114 on 09-01-2017.\n */\n\npublic class RecyclerviewAdap",
"end": 325,
"score": 0.8943943381309509,
"start": 321,
"tag": "USERNAME",
"value": "2114"
}
] | null | [] | package examples.com.cameraintent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import java.io.File;
/**
* Created by... | 1,915 | 0.673629 | 0.666841 | 81 | 22.641975 | 25.471508 | 111 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.382716 | false | false | 2 |
df60d0f1652f9bdc81a065ff43e3524699a107d7 | 25,572,235,330,317 | 43489f78726c8bdb9d1a60c8a51a51be44819dab | /org.example.xtext.modeldsl.parent/org.example.xtext.modeldsl/xtend-gen/org/example/xtext/validation/ModelDslValidator.java | 1ae4b5a87139b7b7ce8006d9f55b74ef9974c167 | [] | no_license | cubranic/implicit-type-conversion | https://github.com/cubranic/implicit-type-conversion | 7cc155dbc23fd4382c080e2a56f39e1a749fce31 | a97d231b2d0431e8565f0cf6b5a85d7b329ba8ca | refs/heads/master | 2021-01-12T16:59:36.501000 | 2016-10-20T17:42:28 | 2016-10-20T17:50:56 | 71,485,120 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* generated by Xtext 2.10.0
*/
package org.example.xtext.validation;
import org.example.xtext.validation.AbstractModelDslValidator;
/**
* This class contains custom validation rules.
*
* See https://www.eclipse.org/Xtext/documentation/303_runtime_concepts.html#validation
*/
@SuppressWarnings("all")
public ... | UTF-8 | Java | 382 | java | ModelDslValidator.java | Java | [] | null | [] | /**
* generated by Xtext 2.10.0
*/
package org.example.xtext.validation;
import org.example.xtext.validation.AbstractModelDslValidator;
/**
* This class contains custom validation rules.
*
* See https://www.eclipse.org/Xtext/documentation/303_runtime_concepts.html#validation
*/
@SuppressWarnings("all")
public ... | 382 | 0.774869 | 0.756545 | 15 | 24.466667 | 28.016344 | 87 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.133333 | false | false | 2 |
4742f7cd2044b5f886cb4f00844780c7860aad6b | 37,890,201,504,212 | 447520f40e82a060368a0802a391697bc00be96f | /apks/apks_from_phone/data_app_com_monefy_app_lite-2/source/com/google/android/gms/internal/zzff.java | f57f53383e921afd0c97c8ed8aafd8f4d88db184 | [
"Apache-2.0"
] | permissive | iantal/AndroidPermissions | https://github.com/iantal/AndroidPermissions | 7f3343a9c29d82dbcd4ecd98b3a50ddf8d179465 | d623b732734243590b5f004d167e542e2e2ae249 | refs/heads/master | 2023-07-19T01:29:26.689000 | 2019-09-30T19:01:42 | 2019-09-30T19:01:42 | 107,239,248 | 0 | 0 | Apache-2.0 | false | 2023-07-16T07:41:38 | 2017-10-17T08:22:57 | 2019-09-30T19:01:44 | 2023-07-16T07:41:38 | 1,616,319 | 0 | 0 | 1 | null | false | false | package com.google.android.gms.internal;
import android.os.Bundle;
import android.view.View;
import com.google.android.gms.ads.formats.NativeAd.Image;
import com.google.android.gms.ads.internal.formats.zzc;
import com.google.android.gms.ads.mediation.NativeAppInstallAdMapper;
import com.google.android.gms.dynamic.zzd;... | UTF-8 | Java | 2,032 | java | zzff.java | Java | [] | null | [] | package com.google.android.gms.internal;
import android.os.Bundle;
import android.view.View;
import com.google.android.gms.ads.formats.NativeAd.Image;
import com.google.android.gms.ads.internal.formats.zzc;
import com.google.android.gms.ads.mediation.NativeAppInstallAdMapper;
import com.google.android.gms.dynamic.zzd;... | 2,032 | 0.625 | 0.625 | 110 | 17.472727 | 19.153309 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.354545 | false | false | 2 |
fc01390cc198660544ca7fbe3b5101a49bdfc400 | 34,016,141,036,073 | acbf8b04fddfd8df35c8489df2b05543d37398a1 | /src/main/java/ua/kpi/carpark/controller/Constants.java | 95882242eb61703a5b52a139544adbc0ad4f31b8 | [] | no_license | mr-artur/car-park | https://github.com/mr-artur/car-park | aa3d9ed252011084b97fb978288f0da5e05e4070 | 02ba6dceeb12d5aaa35ee09ed0731941c99ea7b8 | refs/heads/master | 2022-04-05T13:30:01.759000 | 2020-02-24T21:34:33 | 2020-02-24T21:34:33 | 240,675,754 | 0 | 0 | null | false | 2020-02-21T14:22:11 | 2020-02-15T09:17:07 | 2020-02-16T21:27:38 | 2020-02-21T14:22:10 | 64 | 0 | 0 | 0 | Java | false | false | package ua.kpi.carpark.controller;
/**
* Created by Artur Morozov on 2020-02-16
*/
public class Constants {
public static final int EXIT_CODE = 0;
public static final int ALL_CODE = 1;
public static final int SORTED_CODE = 2;
public static final int FILTERED_CODE = 3;
public static final int PRI... | UTF-8 | Java | 734 | java | Constants.java | Java | [
{
"context": "kage ua.kpi.carpark.controller;\n\n/**\n * Created by Artur Morozov on 2020-02-16\n */\npublic class Constants {\n\n p",
"end": 67,
"score": 0.9998343586921692,
"start": 54,
"tag": "NAME",
"value": "Artur Morozov"
}
] | null | [] | package ua.kpi.carpark.controller;
/**
* Created by <NAME> on 2020-02-16
*/
public class Constants {
public static final int EXIT_CODE = 0;
public static final int ALL_CODE = 1;
public static final int SORTED_CODE = 2;
public static final int FILTERED_CODE = 3;
public static final int PRICE_CODE... | 727 | 0.700273 | 0.682561 | 22 | 32.363636 | 26.799839 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.590909 | false | false | 2 |
52fb3122873058528c9de7f3558836a7a02d569d | 36,447,092,497,492 | aacab6fb810d9cd103a3100449e8fd3c584f6761 | /common/src/main/java/com/cml/springcloud/filter/BaseWebFilter.java | 1816c664c0b9d5198c58fb57fefd80f69ddbfd3b | [] | no_license | espressox/SpringCloudBucket | https://github.com/espressox/SpringCloudBucket | e4050c331ae270c3066c0d7e93b731e1455555c0 | c324179ca9bcb99e70ae2399908a21b9e34dc09f | refs/heads/master | 2020-06-13T22:55:34.756000 | 2019-02-14T14:07:54 | 2019-02-14T14:07:54 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cml.springcloud.filter;
import com.cml.springcloud.log.LogPointer;
import com.cml.springcloud.log.RequestLog;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.servlet.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.htt... | UTF-8 | Java | 2,934 | java | BaseWebFilter.java | Java | [] | null | [] | package com.cml.springcloud.filter;
import com.cml.springcloud.log.LogPointer;
import com.cml.springcloud.log.RequestLog;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.servlet.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.htt... | 2,934 | 0.674847 | 0.672461 | 80 | 35.674999 | 31.956524 | 132 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.7 | false | false | 2 |
75c35ca80a00b6d4cee037f65fa2f2378864756f | 32,736,240,769,980 | 0b652309bf06a64d2e0a7052c12252ee1f48c94f | /source/laconic/src/com/laconic/of/dataMaintain/servlet/ServletReceivingDataMaintain.java | 94942dc82729902327f9021f6d3316826dc1c13f | [] | no_license | sorinoi/laconic | https://github.com/sorinoi/laconic | 87c7a349633734acff09f3274a77706cf474ab79 | 6a73873d2cdd2e8a024a8e19418c87e3b6a9dbeb | refs/heads/master | 2020-05-19T12:58:11.231000 | 2015-07-16T11:21:52 | 2015-07-16T11:21:52 | 39,628,889 | 3 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.laconic.of.dataMaintain.servlet;
import com.cynosure.common.debug.DeBug;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.IOException;
import java.sql.*;
import com.laconic.ob.login.component.Login;
import com.laconic.ob.login.servlet.ServletBase;
import com.laconic.of.dataMaintain.compo... | UTF-8 | Java | 5,487 | java | ServletReceivingDataMaintain.java | Java | [] | null | [] | package com.laconic.of.dataMaintain.servlet;
import com.cynosure.common.debug.DeBug;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.IOException;
import java.sql.*;
import com.laconic.ob.login.component.Login;
import com.laconic.ob.login.servlet.ServletBase;
import com.laconic.of.dataMaintain.compo... | 5,487 | 0.548023 | 0.547476 | 116 | 46.310345 | 36.552845 | 167 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.448276 | false | false | 2 |
1a4bc102f4859a1b026753cd13fa74b0b83ddb0d | 27,307,402,115,839 | b666b2df291a4987248e5d5925486db48c48a379 | /app/src/main/java/com/ttonway/tpms/utils/Utils.java | 333d4bd1d52f0cf88e8022244cbe4d7135811422 | [] | no_license | ttonway/tpms-android | https://github.com/ttonway/tpms-android | 8952ab197ba8d518ae5fc593dfc4346f725c5b97 | eb2ca953d88385a4999de2fd5d4f61b6fe495887 | refs/heads/master | 2021-08-24T13:43:06.117000 | 2017-01-04T02:30:55 | 2017-01-04T02:30:55 | 104,186,792 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ttonway.tpms.utils;
import android.annotation.TargetApi;
import android.app.ActivityManager;
import android.content.Context;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.net.Co... | UTF-8 | Java | 6,950 | java | Utils.java | Java | [
{
"context": "cale;\n\n/**\n * Created with IntelliJ IDEA.\n * User: ttonway\n * Date: 14/11/3\n * Time: 下午5:09\n */\npublic class",
"end": 651,
"score": 0.9996924996376038,
"start": 644,
"tag": "USERNAME",
"value": "ttonway"
}
] | null | [] | package com.ttonway.tpms.utils;
import android.annotation.TargetApi;
import android.app.ActivityManager;
import android.content.Context;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.res.Configuration;
import android.content.res.Resources;
import android.net.Co... | 6,950 | 0.630607 | 0.625703 | 182 | 37.0989 | 29.335894 | 122 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.532967 | false | false | 2 |
d6c4da8073bf684d2ef41662b1087809cfeba95b | 23,545,010,783,546 | a01eaed695583aad70bd7e1da1af0ec736c7bf22 | /edexOsgi/com.raytheon.uf.common.registry.ebxml/src/com/raytheon/uf/common/registry/annotations/RegistryObjectAssociation.java | cff873d56554b4f8952153a2b314410d4d0e4e11 | [] | no_license | SeanTheGuyThatAlwaysHasComputerTrouble/awips2 | https://github.com/SeanTheGuyThatAlwaysHasComputerTrouble/awips2 | 600d3e6f7ea1b488471e387c642d54cb6eebca1a | c8f8c20ca34e41ac23ad8e757130e91c77b558fe | refs/heads/master | 2021-01-19T18:00:12.598000 | 2013-03-26T17:06:45 | 2013-03-26T17:06:45 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.raytheon.uf.common.registry.annotations;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import com.raytheon.uf.common.registry.RegistryManager;
import c... | UTF-8 | Java | 1,509 | java | RegistryObjectAssociation.java | Java | [
{
"context": "----------------------\n * Apr 17, 2012 455 jspinks Initial creation\n * \n * </pre>\n * \n * @author",
"end": 1116,
"score": 0.9990822672843933,
"start": 1109,
"tag": "USERNAME",
"value": "jspinks"
},
{
"context": " Initial creation\n * \n * </pre>\n * ... | null | [] | package com.raytheon.uf.common.registry.annotations;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import com.raytheon.uf.common.registry.RegistryManager;
import c... | 1,509 | 0.736249 | 0.72896 | 45 | 32.533333 | 27.362261 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.266667 | false | false | 2 |
74fa823eff85a00d98b2f77aaaf084e891b2ccdf | 22,179,211,175,971 | 803192bf12ba678061511f2110c128b31075c001 | /src/main/java/com/drmed/base/visit/mapper/VisitMapper.java | 7aba4c53c3cda144bf356312dc5276675e77d20e | [] | no_license | zagPatryk/DrMed | https://github.com/zagPatryk/DrMed | 75e2ec96b630597a7c1636175012f22dd5887d15 | cc27a8afade5e794a80ba72db015923991430096 | refs/heads/master | 2023-07-25T14:23:17.502000 | 2021-09-06T17:39:59 | 2021-09-06T17:39:59 | 298,346,168 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.drmed.base.visit.mapper;
import com.drmed.api.apimedic.diagnosis.mapper.DiagnosisMapper;
import com.drmed.api.apimedic.symptoms.mapper.SymptomMapper;
import com.drmed.base.doctor.mapper.DoctorMapper;
import com.drmed.base.order.mapper.OrderMapper;
import com.drmed.base.order.repository.OrderHibernate;
impo... | UTF-8 | Java | 3,824 | java | VisitMapper.java | Java | [] | null | [] | package com.drmed.base.visit.mapper;
import com.drmed.api.apimedic.diagnosis.mapper.DiagnosisMapper;
import com.drmed.api.apimedic.symptoms.mapper.SymptomMapper;
import com.drmed.base.doctor.mapper.DoctorMapper;
import com.drmed.base.order.mapper.OrderMapper;
import com.drmed.base.order.repository.OrderHibernate;
impo... | 3,824 | 0.67704 | 0.67704 | 94 | 39.680851 | 28.072176 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.542553 | false | false | 2 |
079332cb5a7772cef512e7d8eea9191539d6991c | 29,661,044,207,305 | 36abe7e640d0473aa35882316c757640f8243641 | /feixun/flypay-web/src/main/java/com/cn/flypay/controller/account/BrokerageController.java | b850c92a4367b4b9b0a38e70754099ea3737ad44 | [] | no_license | moutainhigh/IdeaWok | https://github.com/moutainhigh/IdeaWok | 9403975d7f5cd9b6c254536d7741cc5409f34e05 | e5acfeff7cade3a30ff4cc700aeb97beab27d1af | refs/heads/master | 2021-09-15T08:12:12.857000 | 2018-05-29T03:34:06 | 2018-05-29T03:34:06 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cn.flypay.controller.account;
import java.io.FileInputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Date;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.apache.commons.loggi... | UTF-8 | Java | 4,750 | java | BrokerageController.java | Java | [] | null | [] | package com.cn.flypay.controller.account;
import java.io.FileInputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Date;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import org.apache.commons.loggi... | 4,750 | 0.754742 | 0.751434 | 127 | 34.700787 | 24.09506 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.173228 | false | false | 2 |
dda1975c67ca43c52821a1e568adbc7a222c80fb | 20,615,843,039,374 | 72094af77b75b44da3af60e1492c1b05040b0dbc | /src/main/java/com/app/campapp/service/impl/CamperServiceImpl.java | 89d4428f859d46b1bfcd6a7edb1958371cc2c2af | [] | no_license | randjelovicaleks/camp-app | https://github.com/randjelovicaleks/camp-app | 3b7a3f24e0903f9ce9b9cabc4099867925d11768 | b5bf61b9534ca1772d7778c225e0e02d519315ea | refs/heads/master | 2022-12-29T16:45:52.441000 | 2020-10-13T09:34:35 | 2020-10-13T09:34:35 | 287,593,788 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.app.campapp.service.impl;
import com.app.campapp.enums.ReservationType;
import com.app.campapp.enums.UserStatus;
import com.app.campapp.model.Camper;
import com.app.campapp.model.Reservation;
import com.app.campapp.repository.CamperRepository;
import com.app.campapp.repository.FollowingRepository;
import c... | UTF-8 | Java | 4,204 | java | CamperServiceImpl.java | Java | [] | null | [] | package com.app.campapp.service.impl;
import com.app.campapp.enums.ReservationType;
import com.app.campapp.enums.UserStatus;
import com.app.campapp.model.Camper;
import com.app.campapp.model.Reservation;
import com.app.campapp.repository.CamperRepository;
import com.app.campapp.repository.FollowingRepository;
import c... | 4,204 | 0.635109 | 0.634634 | 138 | 29.463768 | 23.630661 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.391304 | false | false | 2 |
beb09865f10c951b231fbda5a2d8afefde15ee3d | 4,535,485,505,915 | 9fca54d740f0bf201200c44cc116eefdf82e41b9 | /IG2/src/tp1/Application.java | 34c905794df7c50cf4db5232ecff9edd51aa29e9 | [] | no_license | Alcoz/M1S1 | https://github.com/Alcoz/M1S1 | 2c6be29418c0b4dd3780208e1ed5a33e02b18110 | 5d5bc27cba28b3203830a97f2bfd445f0b7804cf | refs/heads/master | 2020-04-05T16:04:04.134000 | 2019-01-15T07:44:58 | 2019-01-15T07:44:58 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package tp1;
public class Application {
public static void main(String[] args) {
SortedDictionary f1 = new SortedDictionary();
f1.put(1, 2);
//f1.put(5, 6);
//f1.put(3, 7);
//f1.put(4, 8);
//f1.print();
}
}
| UTF-8 | Java | 233 | java | Application.java | Java | [] | null | [] | package tp1;
public class Application {
public static void main(String[] args) {
SortedDictionary f1 = new SortedDictionary();
f1.put(1, 2);
//f1.put(5, 6);
//f1.put(3, 7);
//f1.put(4, 8);
//f1.print();
}
}
| 233 | 0.575107 | 0.51073 | 17 | 12.705882 | 13.931618 | 47 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.823529 | false | false | 2 |
8d050fe31310ab2690c44b07ce7ba7e6ef6b3dc5 | 3,444,563,833,012 | 4f12ec43437072b602b6de2cf316caa152e1d7e7 | /Erzeugungsmuster/src/AbstrakteFabrik/Fabriken/HomebusFabrik.java | e812ea63752b23ff4678dc9fd325b5c7d77b294f | [] | no_license | fhochleitner/Design-Patterns | https://github.com/fhochleitner/Design-Patterns | 6f9f4e541c0a45aa59258f4846770d9393d23346 | a25c4afecb09798ccdd44be3f33d039f0560e822 | refs/heads/master | 2020-03-21T22:38:42.310000 | 2018-06-29T10:59:21 | 2018-06-29T10:59:21 | 135,109,499 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package AbstrakteFabrik.Fabriken;
import AbstrakteFabrik.Produkte.*;
public class HomebusFabrik extends HeimautomationFabrik
{
@Override
public TemperaturSensor erzeugeTemperaturSensor()
{
return new HomebusTemperaturSensor();
}
@Override
public JalousieAktor erzeugeJalousieAktor()
{
return new Homebus... | UTF-8 | Java | 342 | java | HomebusFabrik.java | Java | [] | null | [] | package AbstrakteFabrik.Fabriken;
import AbstrakteFabrik.Produkte.*;
public class HomebusFabrik extends HeimautomationFabrik
{
@Override
public TemperaturSensor erzeugeTemperaturSensor()
{
return new HomebusTemperaturSensor();
}
@Override
public JalousieAktor erzeugeJalousieAktor()
{
return new Homebus... | 342 | 0.792398 | 0.792398 | 18 | 18 | 20.013884 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.888889 | false | false | 2 |
10670fa6438c15c2f8e764cfeb8acd9f64352fdd | 28,810,640,640,903 | de3a3fb5556713e516b6803974eb789ed2479a42 | /src/main/java/leetcode/problems/math/PowerOfTwo.java | 101636cf0b3491f845803f930bf0e4fc8a2fb2bb | [] | no_license | rszostakowski/hackerrank | https://github.com/rszostakowski/hackerrank | 479fe060c4868a5e2d33623e62b1e711a81b39b0 | b0bfc03af4b511942b46f45f1cf6fa84d7aa183f | refs/heads/master | 2023-09-02T04:53:08.708000 | 2023-08-31T10:19:45 | 2023-08-31T10:19:45 | 110,026,940 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package leetcode.problems.math;
public class PowerOfTwo {
public boolean isPowerOfTwo(int x) {
if (x < 0)
return false;
return x != 0 && ((x & (x - 1)) == 0);
}
}
| UTF-8 | Java | 200 | java | PowerOfTwo.java | Java | [] | null | [] | package leetcode.problems.math;
public class PowerOfTwo {
public boolean isPowerOfTwo(int x) {
if (x < 0)
return false;
return x != 0 && ((x & (x - 1)) == 0);
}
}
| 200 | 0.52 | 0.5 | 9 | 21.222221 | 15.718198 | 46 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 2 |
df7869974b1f23d61874d116b454ab0e68e8dbca | 764,504,182,748 | a54c92bb93e0bf1cb3d93a7fc5791c683c0be8e6 | /src/main/java/com/zhuoan/util/DigestUtils.java | ed27afd87e5db785cc35a19ea02a874915ccb8ac | [] | no_license | WeChenster/SocialModel | https://github.com/WeChenster/SocialModel | 61f07d156aeee8b32ce7783f146cb8ae41b87c9f | 1c919ca65a8cdf37db7bdae1d440f1881da699b1 | refs/heads/master | 2020-03-28T03:14:55.090000 | 2018-09-20T09:08:56 | 2018-09-20T09:08:56 | 147,631,082 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.zhuoan.util;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
/**
* @ClassName: DigestUtils
* @Description: 加密工具
* @author LHP
* @date 2015-5-28
*
*/
public class DigestUtils {
/**
* MD5加密
* @param str
* @return
*/
public static String toMD5(String str) {
... | UTF-8 | Java | 952 | java | DigestUtils.java | Java | [
{
"context": "ssName: DigestUtils\n* @Description: 加密工具\n* @author LHP\n* @date 2015-5-28\n*\n*/ \npublic class DigestUtils ",
"end": 174,
"score": 0.9997139573097229,
"start": 171,
"tag": "USERNAME",
"value": "LHP"
}
] | null | [] | package com.zhuoan.util;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
/**
* @ClassName: DigestUtils
* @Description: 加密工具
* @author LHP
* @date 2015-5-28
*
*/
public class DigestUtils {
/**
* MD5加密
* @param str
* @return
*/
public static String toMD5(String str) {
... | 952 | 0.567021 | 0.531915 | 53 | 16.735849 | 16.928431 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.169811 | false | false | 2 |
51fafd08ed33f68a31b14533b90317d4b2251473 | 7,189,775,277,918 | 09b2141e7881e53ae0684d8ac05ea5de614e4bfd | /src/RockPlayer.java | 2e8392411130685d024528d81ad39277a33ad229 | [] | no_license | samajr1/Roshambo-Lab-Paired-Programming | https://github.com/samajr1/Roshambo-Lab-Paired-Programming | 6780127e4d151825f0fba43acaf149ce92ffdfc8 | e253a0f94406843ebccdb6c51c7cbb1684664f82 | refs/heads/master | 2020-04-17T16:06:09.084000 | 2016-08-18T21:35:39 | 2016-08-18T21:35:39 | 66,032,142 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
public class RockPlayer extends Player {
public static int rockPcWinCount = 0;
public RockPlayer(String name) {
super(name);
}
@Override
public Roshambo generateRoshambo() {
return Roshambo.ROCK;
}
public void winCount(){
rockPcWinCount++;
}
}
| UTF-8 | Java | 278 | java | RockPlayer.java | Java | [] | null | [] |
public class RockPlayer extends Player {
public static int rockPcWinCount = 0;
public RockPlayer(String name) {
super(name);
}
@Override
public Roshambo generateRoshambo() {
return Roshambo.ROCK;
}
public void winCount(){
rockPcWinCount++;
}
}
| 278 | 0.672662 | 0.669065 | 17 | 14.529411 | 14.733386 | 40 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.176471 | false | false | 2 |
25ecf98b94d281ebad04335524cea567f0ced83a | 19,404,662,277,976 | 5ee5a9538cf129ad7eb6973902d4fcaa969a7517 | /hermes-service/src/main/java/com/jlfex/hermes/service/impl/ProductServiceImpl.java | 285f2caa0df58ca7ef67c9945b6632abed6550a9 | [
"Apache-2.0"
] | permissive | erjie001/hermes | https://github.com/erjie001/hermes | 8174ce0704f0f5d840946e2dfdc69463c9dbd314 | 0d5c88d042efe712a5453f93f4dde390e6749920 | refs/heads/master | 2021-01-21T23:45:47.402000 | 2015-01-05T11:33:52 | 2015-01-05T11:33:52 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jlfex.hermes.service.impl;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.jlfex.hermes.common.cache.Caches;
import com.jlfex.hermes.model.Dictionary;
import com.jlfex.her... | UTF-8 | Java | 3,670 | java | ProductServiceImpl.java | Java | [
{
"context": "oductInfo;\r\n\r\n/**\r\n * \r\n * 产品业务实现\r\n * \r\n * @author Ray\r\n * @version 1.0, 2013-12-23\r\n * @since 1.0\r\n */\r",
"end": 686,
"score": 0.9969461560249329,
"start": 683,
"tag": "NAME",
"value": "Ray"
}
] | null | [] | package com.jlfex.hermes.service.impl;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.jlfex.hermes.common.cache.Caches;
import com.jlfex.hermes.model.Dictionary;
import com.jlfex.her... | 3,670 | 0.730579 | 0.72562 | 106 | 32.245281 | 27.548521 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.95283 | false | false | 2 |
2748a6ab215595157d43b54e730a535a79367d80 | 19,404,662,278,003 | c0b54c7a8f77aaf3676d1fbea7635eafd22e611b | /demo/src/main/java/com/example/demo/controller/BookController.java | 279bfacc74f1718aa1d1e8daebe28406165e41d3 | [] | no_license | duppalapudiveerraju/devops | https://github.com/duppalapudiveerraju/devops | 0db3dd5ae5ffc3a02fa05ecf10e501660731bdc1 | d390cec846fa66dee7f0fbbf7f18473d9c7f62fd | refs/heads/master | 2022-08-02T13:18:35.427000 | 2020-05-30T16:38:28 | 2020-05-30T16:38:28 | 268,118,064 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.demo.controller;
import java.util.List;
import java.util.Optional;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.ann... | UTF-8 | Java | 1,339 | java | BookController.java | Java | [] | null | [] | package com.example.demo.controller;
import java.util.List;
import java.util.Optional;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.ann... | 1,339 | 0.731143 | 0.731143 | 54 | 22.796297 | 21.395205 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.166667 | false | false | 2 |
f61faeb416d1cc642edf81886d870668eeba5a3a | 2,327,872,279,469 | f86f752d138770e75aa703c5a350413224677030 | /shop/src/main/java/com/bww/shop/controller/admin/OrderAdminController.java | c18e2fa6869901ee77b59cbaa0d5cedb16f4425a | [] | no_license | bowenWan12/shop | https://github.com/bowenWan12/shop | 36890213a37e42c6b0c1b5481adc50e3a4eceef9 | 6c612f715ff51845896446fef34d826ff08e2ee5 | refs/heads/master | 2022-05-29T18:40:42.408000 | 2020-07-21T15:24:14 | 2020-07-21T15:24:14 | 246,879,826 | 1 | 0 | null | false | 2022-05-20T21:29:46 | 2020-03-12T16:20:40 | 2020-08-13T09:54:14 | 2022-05-20T21:29:46 | 117 | 0 | 0 | 2 | Java | false | false | package com.bww.shop.controller.admin;
import com.bww.shop.common.ResultCode;
import com.bww.shop.common.constant.OrderEnums;
import com.bww.shop.controller.OrderController;
import com.bww.shop.domain.Goods;
import com.bww.shop.domain.GoodsOrder;
import com.bww.shop.domain.Result;
import com.bww.shop.domain.User;
impo... | UTF-8 | Java | 3,268 | java | OrderAdminController.java | Java | [] | null | [] | package com.bww.shop.controller.admin;
import com.bww.shop.common.ResultCode;
import com.bww.shop.common.constant.OrderEnums;
import com.bww.shop.controller.OrderController;
import com.bww.shop.domain.Goods;
import com.bww.shop.domain.GoodsOrder;
import com.bww.shop.domain.Result;
import com.bww.shop.domain.User;
impo... | 3,268 | 0.68617 | 0.683041 | 97 | 31.958763 | 24.760675 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.742268 | false | false | 2 |
30487da6156e956108c87ab006c3120465bffd44 | 20,950,850,523,314 | 54f352a242a8ad6ff5516703e91da61e08d9a9e6 | /Source Codes/AtCoder/arc096/A/2494299.java | fc06d96c7ac77b2fc00f2ccacd08530bef55256f | [] | no_license | Kawser-nerd/CLCDSA | https://github.com/Kawser-nerd/CLCDSA | 5cbd8a4c3f65173e4e8e0d7ed845574c4770c3eb | aee32551795763b54acb26856ab239370cac4e75 | refs/heads/master | 2022-02-09T11:08:56.588000 | 2022-01-26T18:53:40 | 2022-01-26T18:53:40 | 211,783,197 | 23 | 9 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner n=new Scanner(System.in);
int a=n.nextInt();
int b=n.nextInt();
int c=n.nextInt()*2;
int x=n.nextInt();
int y=n.nextInt();
int sum=0;
if(a+b>c) {
... | UTF-8 | Java | 853 | java | 2494299.java | Java | [] | null | [] | import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner n=new Scanner(System.in);
int a=n.nextInt();
int b=n.nextInt();
int c=n.nextInt()*2;
int x=n.nextInt();
int y=n.nextInt();
int sum=0;
if(a+b>c) {
... | 853 | 0.288394 | 0.286049 | 34 | 23.147058 | 11.448433 | 44 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.470588 | false | false | 2 |
2a8d6dfea58c3d8b6e0575759daa32f5b414564d | 919,123,002,358 | 7b917d4c156fbcc441965d9e184a4a27941025cc | /app/src/main/java/com/example/hsn07/animasyonlar/Anasayfa.java | df29d56bda90b4fa9e51a9a2c37c04e82fde4d56 | [] | no_license | hbacak07/Animasyonlar | https://github.com/hbacak07/Animasyonlar | d3b6bd6803b52ac387b3fa174f39fc2abe94339f | 64c9d830893f19b7f26125f00b411275ed9240c2 | refs/heads/master | 2023-04-07T00:04:03.374000 | 2018-07-18T07:15:26 | 2018-07-18T07:15:26 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.hsn07.animasyonlar;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class Anasayfa extends AppCompatActivity {
Button btnalpha,btnrotate,btntranslate,btnscale;
Button bt... | UTF-8 | Java | 2,808 | java | Anasayfa.java | Java | [
{
"context": "package com.example.hsn07.animasyonlar;\n\nimport android.content.Intent;\nimp",
"end": 25,
"score": 0.8105244636535645,
"start": 20,
"tag": "USERNAME",
"value": "hsn07"
}
] | null | [] | package com.example.hsn07.animasyonlar;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class Anasayfa extends AppCompatActivity {
Button btnalpha,btnrotate,btntranslate,btnscale;
Button bt... | 2,808 | 0.585826 | 0.584758 | 81 | 33.666668 | 21.989336 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.641975 | false | false | 2 |
5a668fb6b2f59e8b88f95bb9795627723c26bf22 | 2,645,699,912,567 | d3f73976ab3d53308f22a7e0f1410f42fb4b1e82 | /Task02/Program.java | 8e17a3aaa94c7335801df7a28e074b0b789bc4fc | [] | no_license | GuzelMusina/MUSINA_11_702 | https://github.com/GuzelMusina/MUSINA_11_702 | e7cee9546ecd0702341d25efa79b58d38aea11d0 | d9b8ee66a51a873ec5e7c0168826f750aeaeb9bd | refs/heads/master | 2021-09-22T11:25:09.033000 | 2018-09-09T14:03:18 | 2018-09-09T14:03:18 | 104,873,549 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Scanner;
class Program{
public static void main (String[] args){
Scanner scanner = new Scanner (System.in);
int n = scanner.nextInt();
if(n%2 == 0) {
System.out.println("EVEN");
}else{
System.out.println("NOT EVEN");
}
}
} | UTF-8 | Java | 258 | java | Program.java | Java | [] | null | [] | import java.util.Scanner;
class Program{
public static void main (String[] args){
Scanner scanner = new Scanner (System.in);
int n = scanner.nextInt();
if(n%2 == 0) {
System.out.println("EVEN");
}else{
System.out.println("NOT EVEN");
}
}
} | 258 | 0.639535 | 0.631783 | 13 | 18.923077 | 15.081632 | 44 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.769231 | false | false | 2 |
d76a5897733af8c1758d114be34d7d03a7bcf48b | 9,775,345,635,740 | 7509c73e8cfc5cd521a630484c300b3a836b118c | /core/src/main/java/com/whirled/game/data/AIParameter.java | 8b93c98e83f4e82be46bcac2f4f0c5df35066f2c | [] | no_license | greyhavens/whirled-api | https://github.com/greyhavens/whirled-api | 80584d7eb6c0512dd5b70165c171d6b901466f99 | 98c15e4d33b4340ce0e9b84b0aca1dd1a38f8508 | refs/heads/master | 2020-04-21T06:38:02.890000 | 2015-04-06T18:38:02 | 2015-04-06T18:38:02 | 33,497,928 | 5 | 4 | null | null | null | null | null | null | null | null | null | null | null | null | null | //
// $Id$
package com.whirled.game.data;
import com.threerings.util.ActionScript;
import com.threerings.parlor.data.Parameter;
/**
* Models a parameter that is used to configure AIs.
*/
@ActionScript(omit=true)
public class AIParameter extends Parameter
{
/** Indicates the maximum number of AIs in the game. ... | UTF-8 | Java | 682 | java | AIParameter.java | Java | [] | null | [] | //
// $Id$
package com.whirled.game.data;
import com.threerings.util.ActionScript;
import com.threerings.parlor.data.Parameter;
/**
* Models a parameter that is used to configure AIs.
*/
@ActionScript(omit=true)
public class AIParameter extends Parameter
{
/** Indicates the maximum number of AIs in the game. ... | 682 | 0.674487 | 0.673021 | 33 | 19.666666 | 19.847397 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.181818 | false | false | 2 |
17d8b6c1f6f822ac2ad79eaec9fc1a52c5a74ecf | 24,962,349,986,480 | 36272df5415e99f2ae04763db9101acd61880955 | /app/src/main/java/com/example/controlemk/BootService.java | 45fb3f29a5961289e2bcb6c336d96fd229b84df7 | [] | no_license | lucasrsilva95/AppControleMaryKay | https://github.com/lucasrsilva95/AppControleMaryKay | 11344fbaf0a1e9d1c2892ad1edd5da6e29288315 | 030b98e4cce8143fcf397243f6b133aaae2ebf53 | refs/heads/master | 2023-03-01T16:16:15.290000 | 2021-02-08T05:10:29 | 2021-02-08T05:10:29 | 336,963,273 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.controlemk;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;
import com.example.controlemk.Dominio.Repositorio.ClientesRepositorio;
public class BootService extends BroadcastReceiver {
@Override
public vo... | UTF-8 | Java | 660 | java | BootService.java | Java | [] | null | [] | package com.example.controlemk;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;
import com.example.controlemk.Dominio.Repositorio.ClientesRepositorio;
public class BootService extends BroadcastReceiver {
@Override
public vo... | 660 | 0.740909 | 0.740909 | 19 | 33.736843 | 27.241304 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.631579 | false | false | 2 |
b2468828fdd749c27a7bf74b60304681bd1db769 | 24,962,349,989,289 | d7b3668882d21d0aea639ec11383f2dee3647132 | /app/src/main/java/com/kutztown/projectmanagement/activity/ProfileActivity.java | c1d895ca59cea00b96636a37788896b9b18f706a | [] | no_license | StevenPG/ProjectManagement | https://github.com/StevenPG/ProjectManagement | 2f1f84224a332fb7a76d30e8087473daac9f77db | 8feb3ff88f46119180e04967680d93830a2b4ae9 | refs/heads/master | 2021-05-04T10:29:44.477000 | 2016-04-30T00:11:45 | 2016-04-30T00:11:45 | 50,434,715 | 1 | 0 | null | false | 2016-04-16T17:11:30 | 2016-01-26T14:40:41 | 2016-02-18T16:51:23 | 2016-04-16T17:11:30 | 84,858 | 1 | 0 | 19 | HTML | null | null | package com.kutztown.projectmanagement.activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.su... | UTF-8 | Java | 10,924 | java | ProfileActivity.java | Java | [] | null | [] | package com.kutztown.projectmanagement.activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.su... | 10,924 | 0.61937 | 0.617265 | 237 | 45.092827 | 32.349094 | 145 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.725738 | false | false | 2 |
a9c37086cf82737796ff21dfbae609a3302dc11c | 4,621,384,815,245 | 77e004c20fb10e3c332afb6e1836f6b7538d584c | /app-service/src/main/java/com/hao/app/service/impl/SysRolePrivilegeServiceImpl.java | 19312b286670cbf0f60001360ae227307f0e34b7 | [
"Apache-2.0"
] | permissive | haoguowei/app | https://github.com/haoguowei/app | a38b7e0590f1a4d59b2ad24e58a6c1533615cf73 | 00292f4b5594e50df448a6fcabeee378ac5f2f4e | refs/heads/master | 2022-12-20T23:37:05.360000 | 2019-12-24T02:48:47 | 2019-12-24T02:48:47 | 66,840,871 | 0 | 1 | NOASSERTION | false | 2022-12-16T03:24:03 | 2016-08-29T12:15:03 | 2019-12-24T02:48:51 | 2022-12-16T03:24:00 | 49,276 | 0 | 1 | 9 | JavaScript | false | false | package com.hao.app.service.impl;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang.math.NumberUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import c... | UTF-8 | Java | 1,245 | java | SysRolePrivilegeServiceImpl.java | Java | [] | null | [] | package com.hao.app.service.impl;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang.math.NumberUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import c... | 1,245 | 0.72309 | 0.719803 | 44 | 25.65909 | 22.130751 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.409091 | false | false | 2 |
4f7ecfbf9975bed8a6af0a8002c543916de5f392 | 20,177,756,401,250 | 7f565400d6c0185edbe23345e16b59ed68f549ca | /thePacific/src/view/TalkGeneralMenuView.java | b8975a8cb70e859d6c77e0198560a7ac08a85ffa | [] | no_license | Wheelwright22/Team-Travis-Ches | https://github.com/Wheelwright22/Team-Travis-Ches | 97c582b898c86b0f57f2ea3b36d3c9839554a8c8 | d88133f70e730f22ca92aed22c5074275adfbc6b | refs/heads/master | 2021-03-12T23:35:12.908000 | 2015-04-09T01:19:54 | 2015-04-09T01:19:54 | 29,870,293 | 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 view;
/**
*
* @author travi_000
*/
public class TalkGeneralMenuView extends View { //or stror menu//
publ... | UTF-8 | Java | 4,529 | java | TalkGeneralMenuView.java | Java | [
{
"context": "editor.\r\n */\r\npackage view;\r\n\r\n/**\r\n *\r\n * @author travi_000\r\n */\r\npublic class TalkGeneralMenuView extends Vi",
"end": 236,
"score": 0.9995041489601135,
"start": 227,
"tag": "USERNAME",
"value": "travi_000"
},
{
"context": "as founded in the year 660 BC... | 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 view;
/**
*
* @author travi_000
*/
public class TalkGeneralMenuView extends View { //or stror menu//
publ... | 4,529 | 0.60102 | 0.597694 | 81 | 53.666668 | 58.464508 | 226 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.580247 | false | false | 2 |
0aadaeb6f6460c312922bd7e9eab5ec47e3966bd | 8,985,071,625,636 | 4c8afbb275191a8cdedec1d1d98900ed5b416cdf | /magic-system/src/main/java/com/haoqi/magic/system/mapper/SysRegionMapper.java | 48bf019db95090c9a6efae2ad780398330c4cc6c | [] | no_license | mengjava/magic | https://github.com/mengjava/magic | b2755048501e4e8b6905dfc8c162e73a2577e911 | 18829b0bc9c65839230d3011a96edae5bc8960e3 | refs/heads/master | 2021-04-09T23:32:31.477000 | 2020-03-21T04:02:56 | 2020-03-21T04:02:56 | 248,892,239 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.haoqi.magic.system.mapper;
import com.haoqi.magic.system.model.dto.SysRegionDTO;
import com.haoqi.magic.system.model.entity.SysRegion;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* <p>
* 大区管理表 Mapper 接口
* </p>
*
* @aut... | UTF-8 | Java | 674 | java | SysRegionMapper.java | Java | [
{
"context": "**\n * <p>\n * 大区管理表 Mapper 接口\n * </p>\n *\n * @author mengyao\n * @since 2019-04-28\n */\npublic interface SysRegi",
"end": 331,
"score": 0.9994679093360901,
"start": 324,
"tag": "USERNAME",
"value": "mengyao"
},
{
"context": "i.magic.system.model.dto.SysRegionDTO>\n\... | null | [] | package com.haoqi.magic.system.mapper;
import com.haoqi.magic.system.model.dto.SysRegionDTO;
import com.haoqi.magic.system.model.entity.SysRegion;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* <p>
* 大区管理表 Mapper 接口
* </p>
*
* @aut... | 674 | 0.733227 | 0.698083 | 27 | 22.185184 | 21.104742 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.555556 | false | false | 2 |
456eec2aaaeae9519f6f94dd6771edd81d47e90c | 28,784,870,844,223 | d7fa4cc8510202f391a7c667d22205ec39f3c1cd | /Rohit Jadhav/01-Assignment/03-Android/09-Ortho_Shader/GLESView.java | 71ea64f84a1466e5d7f5a22eeb36f79a63ce44d3 | [] | no_license | RohitMagdum-VSI/VSIOpenGLDemos | https://github.com/RohitMagdum-VSI/VSIOpenGLDemos | f21ae6a91d41bbe3136e92c9c2eed985d3488607 | 763e2e3cc956122c5aad756961feb7259396d479 | refs/heads/master | 2022-02-21T21:42:53.601000 | 2022-02-10T13:51:24 | 2022-02-10T13:51:24 | 120,849,630 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.rohit_r_jadhav.ortho_shader;
import android.opengl.GLSurfaceView;
import android.opengl.GLES32;
import javax.microedition.khronos.opengles.GL10;
import javax.microedition.khronos.egl.EGLConfig;
//For glGenBuffers()
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.FloatBuffer;
//For... | UTF-8 | Java | 11,571 | java | GLESView.java | Java | [
{
"context": "package com.rohit_r_jadhav.ortho_shader;\n\nimport android.opengl.GLSurfaceVie",
"end": 26,
"score": 0.9529999494552612,
"start": 12,
"tag": "USERNAME",
"value": "rohit_r_jadhav"
}
] | null | [] | package com.rohit_r_jadhav.ortho_shader;
import android.opengl.GLSurfaceView;
import android.opengl.GLES32;
import javax.microedition.khronos.opengles.GL10;
import javax.microedition.khronos.egl.EGLConfig;
//For glGenBuffers()
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.FloatBuffer;
//For... | 11,571 | 0.698816 | 0.666148 | 460 | 24.152174 | 25.962906 | 118 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.371739 | false | false | 2 |
8a85a45b55f8864b905db753556e569d15284784 | 6,786,048,363,223 | eaf0951279d0f67b558bb935ce8d4f18cef4c918 | /app/src/main/java/com/example/koko/webclient/http/HttpClientHolder.java | f29c48c8675cde8ae5967b5e85fe71d2655ffd58 | [] | no_license | electrocex/WebClient | https://github.com/electrocex/WebClient | 98ce9a656a28df113f03eefc25d53849b395476a | 0422a7c8deba541e3b9d40b698deb2b0337d12d2 | refs/heads/master | 2020-03-05T23:06:04.722000 | 2014-11-23T13:01:10 | 2014-11-23T13:01:10 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.koko.webclient.http;
import android.net.http.AndroidHttpClient;
import android.util.Log;
import com.example.koko.webclient.util.AppPreferences;
import org.apache.http.client.CookieStore;
import org.apache.http.client.HttpClient;
import org.apache.http.client.protocol.ClientContext;
import org.apac... | UTF-8 | Java | 1,562 | java | HttpClientHolder.java | Java | [
{
"context": "he.http.protocol.HttpContext;\n\n\n\n/**\n * Created by alexey on 11/23/14.\n */\npublic class HttpClientHolder\n{\n",
"end": 534,
"score": 0.9996746182441711,
"start": 528,
"tag": "USERNAME",
"value": "alexey"
}
] | null | [] | package com.example.koko.webclient.http;
import android.net.http.AndroidHttpClient;
import android.util.Log;
import com.example.koko.webclient.util.AppPreferences;
import org.apache.http.client.CookieStore;
import org.apache.http.client.HttpClient;
import org.apache.http.client.protocol.ClientContext;
import org.apac... | 1,562 | 0.776568 | 0.772727 | 55 | 27.4 | 23.36244 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.272727 | false | false | 2 |
0bf35011b09578aa137bc0cac247c00a8ba1a51f | 14,328,010,936,801 | c32e30b903e3b58454093cd8ee5c7bba7fb07365 | /source/Class_6158.java | 4bfbeb5a7986207bd5c520b135879b19ae61f8ac | [] | no_license | taiwan902/bp-src | https://github.com/taiwan902/bp-src | 0ee86721545a647b63848026a995ddb845a62969 | 341a34ebf43ab71bea0becf343795e241641ef6a | refs/heads/master | 2020-12-20T09:17:11.506000 | 2020-01-24T15:15:30 | 2020-01-24T15:15:30 | 236,025,046 | 1 | 1 | null | true | 2020-01-24T15:10:30 | 2020-01-24T15:10:29 | 2020-01-24T14:55:33 | 2020-01-24T10:34:03 | 22,019 | 0 | 0 | 0 | null | false | false | /*
* Decompiled with CFR 0.145.
*
* Could not load the following classes:
* internal.org.lwjgl.opengl.GL11
*/
import internal.org.lwjgl.opengl.GL11;
import java.lang.invoke.MethodHandle;
import java.lang.invoke.MethodHandles;
import java.nio.Buffer;
import java.nio.ByteBuffer;
import java.util.Properties;
publi... | UTF-8 | Java | 4,800 | java | Class_6158.java | Java | [] | null | [] | /*
* Decompiled with CFR 0.145.
*
* Could not load the following classes:
* internal.org.lwjgl.opengl.GL11
*/
import internal.org.lwjgl.opengl.GL11;
import java.lang.invoke.MethodHandle;
import java.lang.invoke.MethodHandles;
import java.nio.Buffer;
import java.nio.ByteBuffer;
import java.util.Properties;
publi... | 4,800 | 0.560417 | 0.399792 | 128 | 36.492188 | 29.751575 | 230 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.765625 | false | false | 2 |
88db4053a4b6eeed406014bf3ef5934fc5f875f7 | 5,463,198,447,704 | c15cc4880e9d6c59adf31fc5ba5855c7e3c33c16 | /Assignment1/src/com/dao/CustImpl.java | 52e6683b3bd236e4c529c36faf6c380a7216490c | [] | no_license | AnkitAdarsh/Assignment1 | https://github.com/AnkitAdarsh/Assignment1 | c269218a7b1654ac30701050c6d03c29047c2c40 | b1c53b6aa19ccfacf85ade27bc6fa17268f677c2 | refs/heads/master | 2018-12-31T08:46:16.879000 | 2015-02-23T10:46:43 | 2015-02-23T10:46:43 | 31,203,825 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Scanner;
import com.bean.Customer;
public class CustImpl implements CustInter {
static Connection con;
String insert="Insert into mob(name,city... | UTF-8 | Java | 1,731 | java | CustImpl.java | Java | [] | null | [] | package com.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Scanner;
import com.bean.Customer;
public class CustImpl implements CustInter {
static Connection con;
String insert="Insert into mob(name,city... | 1,731 | 0.629116 | 0.619873 | 81 | 19.370371 | 17.006495 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.716049 | false | false | 2 |
fcfbdc31bfba505c592a67a286872ff38ef4eda9 | 10,754,598,156,939 | 61e58269b48b03bb6bd02c34af835b5ca80cec9f | /artshowcase/src/main/java/mywebapps/security/jsf/UpdateUserAction.java | 52316b75b5dbd9e3ef5cc92ff8a8b2651a1a5bb5 | [] | no_license | google-code/artshowcase | https://github.com/google-code/artshowcase | 0153a6b9ed699c7988bdb31438db8d1b52fbd52f | 4cee1e5b6879dc9d92c225cf5f171cf3083f934d | refs/heads/master | 2016-08-04T21:54:14.301000 | 2015-03-15T14:34:58 | 2015-03-15T14:34:58 | 32,264,918 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package mywebapps.security.jsf;
import javax.annotation.PostConstruct;
import mywebapps.security.dao.UserDao;
import mywebapps.security.model.User;
public class UpdateUserAction
{
private UserDao userDao;
private User user;
private String userId;
@PostConstruct
public void init()
{
... | UTF-8 | Java | 940 | java | UpdateUserAction.java | Java | [] | null | [] | package mywebapps.security.jsf;
import javax.annotation.PostConstruct;
import mywebapps.security.dao.UserDao;
import mywebapps.security.model.User;
public class UpdateUserAction
{
private UserDao userDao;
private User user;
private String userId;
@PostConstruct
public void init()
{
... | 940 | 0.597872 | 0.596808 | 52 | 17.076923 | 15.905787 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.288462 | false | false | 2 |
e3486f265c5c8e63a1e7582778411f0044eb4524 | 5,806,795,825,452 | 1896da06c3e4549aa51ef48971250ebf025e489c | /src/main/java/com/springboot/mapper/DemoMapper.java | 96dbaf700a9bed19b436635c030dc58857a70030 | [] | no_license | liuguoqing123/springboot-mybatis-web | https://github.com/liuguoqing123/springboot-mybatis-web | 0b0efefafd23c315c0b7a12ca372dd502e1bccbe | 7a361399e0e323452602e6000e40280c2c627e2c | refs/heads/master | 2021-05-21T13:50:27.759000 | 2020-06-05T15:33:41 | 2020-06-05T15:33:41 | 252,670,590 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.springboot.mapper;
import java.util.List;
import java.util.Map;
import com.springboot.bean.Demo;
import com.springboot.dynamicDataSource.Master;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.transaction.annotation.Transactional;
@Mapp... | UTF-8 | Java | 767 | java | DemoMapper.java | Java | [] | null | [] | package com.springboot.mapper;
import java.util.List;
import java.util.Map;
import com.springboot.bean.Demo;
import com.springboot.dynamicDataSource.Master;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.transaction.annotation.Transactional;
@Mapp... | 767 | 0.76573 | 0.76573 | 42 | 16.785715 | 18.276365 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.761905 | false | false | 2 |
0da89ba0d9dbe68402b44f383e64769f5f1a2e7f | 5,806,795,821,423 | 64db043f4b3e0ab256a7adfa7eabf30bff97b2a8 | /app/src/main/java/com/example/d8/maplab7/Employee.java | e0c19fc2e602cef662bcf473fe92cdce135ba097 | [] | no_license | jevuu/MAPLab7 | https://github.com/jevuu/MAPLab7 | f66abf274f04b0efa6d6614b59ff70cad5c9812e | d7b03e609a07d0e47074019d4ee1935bd32b5d11 | refs/heads/master | 2020-04-04T21:08:57.115000 | 2018-11-06T07:09:50 | 2018-11-06T07:09:50 | 156,275,470 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.d8.maplab7;
public class Employee {
String name;
String dept;
String year;
public Employee(String n, String d, String y){
name = n;
dept = d;
year = y;
}
public String getName(){
return name;
}
public String getDept(){
retur... | UTF-8 | Java | 393 | java | Employee.java | Java | [
{
"context": "oyee(String n, String d, String y){\n name = n;\n dept = d;\n year = y;\n }\n\n p",
"end": 176,
"score": 0.6237355470657349,
"start": 175,
"tag": "NAME",
"value": "n"
}
] | null | [] | package com.example.d8.maplab7;
public class Employee {
String name;
String dept;
String year;
public Employee(String n, String d, String y){
name = n;
dept = d;
year = y;
}
public String getName(){
return name;
}
public String getDept(){
retur... | 393 | 0.53944 | 0.534351 | 25 | 14.72 | 12.427453 | 50 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.48 | false | false | 2 |
9131d1c49e3da248c97aa35d56443e8cbdbc8023 | 27,797,028,403,392 | 60566186f0232b4834c6b28c38c17caae0efd384 | /src/main/java/com/hp/wfm/test/Test.java | 69dea9f5330ed316b64827b804e96ef1ab517012 | [
"MIT"
] | permissive | dexter31/StatsDClient | https://github.com/dexter31/StatsDClient | 207e5d452ad16530eb6d1f36811ee6c6874dbf07 | 0ba145e6fc27f5841784dd009e4e14407722c6b7 | refs/heads/master | 2021-01-13T01:35:47.064000 | 2014-11-14T14:57:39 | 2014-11-14T14:57:39 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hp.wfm.test;
import com.hp.wfm.statsd.NIOStatsDClient;
/**
* Created by snarae on 9/23/14.
*/
public class Test {
private static final int STATSD_SERVER_PORT = 8125; //needs to be a config
private static String environment = "dev";
private static String asset = "wfm";
private st... | UTF-8 | Java | 1,025 | java | Test.java | Java | [
{
"context": ".hp.wfm.statsd.NIOStatsDClient;\n\n/**\n * Created by snarae on 9/23/14.\n */\npublic class Test {\n\n private ",
"end": 93,
"score": 0.9996566772460938,
"start": 87,
"tag": "USERNAME",
"value": "snarae"
}
] | null | [] | package com.hp.wfm.test;
import com.hp.wfm.statsd.NIOStatsDClient;
/**
* Created by snarae on 9/23/14.
*/
public class Test {
private static final int STATSD_SERVER_PORT = 8125; //needs to be a config
private static String environment = "dev";
private static String asset = "wfm";
private st... | 1,025 | 0.666341 | 0.63122 | 30 | 33.166668 | 34.793758 | 133 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6 | false | false | 2 |
5e6d167952206517283c050cae2ff412f5205a8f | 31,963,146,680,150 | c4623aa95fb8cdd0ee1bc68962711c33af44604e | /src/com/google/android/gms/deviceconnection/features/DeviceFeatureBuffer.java | 6f39a6effc025859cb03aa6b58b0cb2712302c3e | [] | no_license | reverseengineeringer/com.yelp.android | https://github.com/reverseengineeringer/com.yelp.android | 48f7f2c830a3a1714112649a6a0a3110f7bdc2b1 | b0ac8d4f6cd5fc5543f0d8de399b6d7b3a2184c8 | refs/heads/master | 2021-01-19T02:07:25.997000 | 2016-07-19T16:37:24 | 2016-07-19T16:37:24 | 38,555,675 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.google.android.gms.deviceconnection.features;
import com.google.android.gms.common.data.DataBuffer;
public class DeviceFeatureBuffer
extends DataBuffer<DeviceFeature>
{
public DeviceFeature get(int paramInt)
{
return new a(JG, paramInt);
}
}
/* Location:
* Qualified Name: com.google.andr... | UTF-8 | Java | 438 | java | DeviceFeatureBuffer.java | Java | [] | null | [] | package com.google.android.gms.deviceconnection.features;
import com.google.android.gms.common.data.DataBuffer;
public class DeviceFeatureBuffer
extends DataBuffer<DeviceFeature>
{
public DeviceFeature get(int paramInt)
{
return new a(JG, paramInt);
}
}
/* Location:
* Qualified Name: com.google.andr... | 438 | 0.746575 | 0.730594 | 18 | 23.388889 | 24.966953 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.222222 | false | false | 2 |
39b475a0078170eb70ae5d217de58366ee70bc60 | 23,974,507,478,950 | 905226f62537b783aa8ec1689c1de91a910600ba | /1_java/day07_oop/src/ex08/staticMember/MainEntry.java | bff9ea5e65513418708945d95c815220df5d12e5 | [] | no_license | bejpark/ion_developer_course | https://github.com/bejpark/ion_developer_course | 16093754d562ded8930efc091ab8bbbeb4d10c56 | 2441ac92b4527e1c9a88ab2a0154e50e15148635 | refs/heads/master | 2023-08-27T03:13:33.343000 | 2021-10-29T03:24:30 | 2021-10-29T03:24:30 | 400,416,632 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ex08.staticMember;
class Atm{
int count;//instance member
static int total;//static member
public Atm(int amount) {
count +=amount;
total +=amount;
}
//static member에서 일반멤버 변수 사용할 수 없다.
public static void view() {
total=total+100;
}
public static void show(int count, int total) {
}
public ... | UTF-8 | Java | 826 | java | MainEntry.java | Java | [] | null | [] | package ex08.staticMember;
class Atm{
int count;//instance member
static int total;//static member
public Atm(int amount) {
count +=amount;
total +=amount;
}
//static member에서 일반멤버 변수 사용할 수 없다.
public static void view() {
total=total+100;
}
public static void show(int count, int total) {
}
public ... | 826 | 0.615288 | 0.578947 | 40 | 18.950001 | 15.16402 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.65 | false | false | 2 |
16f7947eeb16a8a7838b98bdc9a9cfd6237f7ebc | 18,373,870,146,303 | ecaead9a5d03ca6df96c89451b5aeb25e83d8a91 | /src/com/book/headfirst/proxypattern/rmitest/client/MyRemoteTest.java | b6964a33c3e44674289f12755f09d243d9650c26 | [] | no_license | rekharokkam/DesignPattern | https://github.com/rekharokkam/DesignPattern | 441c45ab21e718fd1411da3a9530100c30f9e62f | 0cf295939c1a658ae174af1e3e5192434378e1f9 | refs/heads/master | 2019-07-13T17:37:11.957000 | 2018-02-21T23:26:14 | 2018-02-21T23:26:14 | 84,116,715 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.book.headfirst.proxypattern.rmitest.client;
import java.rmi.Naming;
import java.rmi.RemoteException;
import com.book.headfirst.proxypattern.rmitest.MyRemote;
import com.book.headfirst.proxypattern.rmitest.Person;
public class MyRemoteTest
{
/**
* @param args
*/
public static void main(String[] arg... | UTF-8 | Java | 1,221 | java | MyRemoteTest.java | Java | [
{
"context": "te remoteService = (MyRemote)Naming.lookup(\"rmi://127.0.0.1/\" + args[0] + \"/HelloService\");\n//System.out.prin",
"end": 588,
"score": 0.9965560436248779,
"start": 579,
"tag": "IP_ADDRESS",
"value": "127.0.0.1"
}
] | null | [] | package com.book.headfirst.proxypattern.rmitest.client;
import java.rmi.Naming;
import java.rmi.RemoteException;
import com.book.headfirst.proxypattern.rmitest.MyRemote;
import com.book.headfirst.proxypattern.rmitest.Person;
public class MyRemoteTest
{
/**
* @param args
*/
public static void main(String[] arg... | 1,221 | 0.720721 | 0.711712 | 41 | 28.780487 | 34.702576 | 170 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.902439 | false | false | 2 |
52562f55973b6e308aa166184a6e3e8f6b88e905 | 6,219,112,645,672 | be8c41e553192caaaabb5a64f9fe97a6814c8857 | /src/main/java/ru/demi/java_examples/JAXB/Office.java | 210be1127434d79bc2f68ceb68453b2533f96a4a | [] | no_license | dmitry-izmerov/javaexamples | https://github.com/dmitry-izmerov/javaexamples | 055783a0a287a2695adb4d626500dddcfdaf4a6b | 6e021c2b3761ff69be7adf409e5472e3923f2b0e | refs/heads/master | 2021-09-09T08:41:03.170000 | 2018-03-14T12:28:28 | 2018-03-14T12:28:28 | 125,208,232 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ru.demi.java_examples.JAXB;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.List;
/**
* Created by demi
* on 24.06.15.
*/
... | UTF-8 | Java | 521 | java | Office.java | Java | [
{
"context": "rayList;\nimport java.util.List;\n\n/**\n * Created by demi\n * on 24.06.15.\n */\n@XmlType(name = \"office\")\n@Xm",
"end": 299,
"score": 0.9943156242370605,
"start": 295,
"tag": "USERNAME",
"value": "demi"
}
] | null | [] | package ru.demi.java_examples.JAXB;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.List;
/**
* Created by demi
* on 24.06.15.
*/
... | 521 | 0.756238 | 0.744722 | 20 | 25.049999 | 17.797401 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6 | false | false | 2 |
5bbbf9f93b0f4f098516e20d9db9fa62275c5b60 | 9,801,115,391,527 | e8626f9f64a8bb90008015b06856d3da16eeecad | /extensions-core/multi-stage-query/src/test/java/org/apache/druid/msq/indexing/error/MSQWarningsTest.java | 4b1f7df37dea0e93cb9aa77f19878b5f6e8dbf53 | [
"Apache-2.0",
"EPL-1.0",
"Classpath-exception-2.0",
"ISC",
"GPL-2.0-only",
"BSD-3-Clause",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-generic-cla",
"0BSD",
"LicenseRef-scancode-sun-no-high-risk-activities",
"LicenseRef-scancode-free-unknown",
"JSON",
"LicenseRef-scancode-unico... | permissive | apache/druid | https://github.com/apache/druid | bb1b20be5104882e4eeb045d109b559f396086c0 | d4e972e1e4b798d7e057e910deea4d192fe57952 | refs/heads/master | 2023-09-05T02:41:03.009000 | 2023-09-04T07:48:55 | 2023-09-04T07:48:55 | 6,358,188 | 4,364 | 1,629 | Apache-2.0 | false | 2023-09-14T21:04:46 | 2012-10-23T19:08:07 | 2023-09-14T21:04:40 | 2023-09-14T21:04:46 | 324,885 | 12,839 | 3,591 | 1,383 | Java | false | false | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | UTF-8 | Java | 22,947 | java | MSQWarningsTest.java | Java | [] | null | [] | /*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | 22,947 | 0.46359 | 0.455746 | 430 | 52.365116 | 35.781109 | 178 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.537209 | false | false | 2 |
041daec4b5cba66fc6970a59b9b4fd4283c05370 | 18,038,862,708,892 | a60c2e0e2c7aa2c9374da1697810681abcfc73dd | /Lab10/Observer/src/lab10/asd/Observer.java | dc1fe46ef8676f2412f92291eb8b11b1c71b87b5 | [] | no_license | longthb3112/ASD-Labs | https://github.com/longthb3112/ASD-Labs | 2425c3966a32cc33eaeeecc4067ef5d631e452c5 | 375e88ededbab52f502b834258ddebc275971f2b | refs/heads/master | 2020-06-23T15:24:59.405000 | 2019-08-06T02:50:36 | 2019-08-06T02:50:36 | 198,662,668 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package lab10.asd;
public interface Observer {
void updateUI();
}
| UTF-8 | Java | 71 | java | Observer.java | Java | [] | null | [] | package lab10.asd;
public interface Observer {
void updateUI();
}
| 71 | 0.704225 | 0.676056 | 5 | 13.2 | 10.796296 | 27 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 2 |
cb409cc95a25002542bede42262bb2391d8dc32d | 31,061,203,527,412 | e0ab3a211672c886cd45ea362db1eab3c454fc08 | /MultipleFunDef.java | 6dae88b9fa7e1b4a41b3493bef2295fd86da529c | [] | no_license | warrington591/Top-Down-Parser | https://github.com/warrington591/Top-Down-Parser | 5fcf6c0e1bb42264bbe84a504b0ad09967c8ed4c | b41d05d11cf52f71ded1e6abffcab38fa2894b51 | refs/heads/master | 2016-09-07T18:36:31.731000 | 2014-11-27T05:01:00 | 2014-11-27T05:01:00 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | class MultipleFunDef extends FunDefList
{
FunDef funDef;
FunDefList funDefList;
MultipleFunDef(FunDef fd, FunDefList fdl)
{
funDef = fd;
funDefList = fdl;
}
void printParseTree(String indent)
{
funDef.printParseTree(indent);
funDefList.printParseTree(indent);
}
} | UTF-8 | Java | 301 | java | MultipleFunDef.java | Java | [] | null | [] | class MultipleFunDef extends FunDefList
{
FunDef funDef;
FunDefList funDefList;
MultipleFunDef(FunDef fd, FunDefList fdl)
{
funDef = fd;
funDefList = fdl;
}
void printParseTree(String indent)
{
funDef.printParseTree(indent);
funDefList.printParseTree(indent);
}
} | 301 | 0.697674 | 0.697674 | 18 | 14.833333 | 15.279798 | 42 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.388889 | false | false | 2 |
1f01066b8428c3daa5ff298d9f28210b26202938 | 24,816,321,097,916 | 2aa9eaec09c6959520cd5a080a04186755e2650b | /gs-tdd-webapp/src/integration-test/java/com/xiao/gs/data/elasticsearch/ElasticsearchOperationsTest.java | 8bc8db0a94a7d2f05c3793b86611f87faffeb16a | [] | no_license | 2345free/gs-tdd | https://github.com/2345free/gs-tdd | 096d6da2fc5ca250f2758c4143ef259c152a6d74 | 9b6af9426e522bfce6a0e19ef2469dd2bfaf2adf | refs/heads/master | 2020-03-29T06:33:58.090000 | 2019-08-21T09:06:43 | 2019-08-21T09:06:43 | 149,630,582 | 0 | 1 | null | false | 2018-12-02T06:34:12 | 2018-09-20T15:25:54 | 2018-12-01T18:50:11 | 2018-12-01T18:50:09 | 862 | 0 | 0 | 0 | Java | false | null | //package com.xiao.gs.data.elasticsearch;
//
//import com.xiao.gs.AbstractIntegrationTest;
//import com.xiao.gs.data.elasticsearch.document.Conference;
//import com.xiao.gs.data.elasticsearch.repository.ConferenceRepository;
//import org.junit.After;
//import org.junit.Ignore;
//import org.junit.Test;
//import org.spri... | UTF-8 | Java | 3,877 | java | ElasticsearchOperationsTest.java | Java | [] | null | [] | //package com.xiao.gs.data.elasticsearch;
//
//import com.xiao.gs.AbstractIntegrationTest;
//import com.xiao.gs.data.elasticsearch.document.Conference;
//import com.xiao.gs.data.elasticsearch.repository.ConferenceRepository;
//import org.junit.After;
//import org.junit.Ignore;
//import org.junit.Test;
//import org.spri... | 3,877 | 0.671137 | 0.626515 | 92 | 41.141304 | 36.375629 | 125 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.684783 | false | false | 2 |
3da15f7b43630272c9a73e1eab6866eed76271f1 | 30,863,635,016,139 | bca7caca0052990dbe7b34d67ddbd49287232bee | /sysoft-conversor-gasolutions/src/sysoft/client/csvdata/debitNote/DebitNoteRelatedDocuments.java | 31bf66adffc0f2841b830b0de3353e23b7d808a1 | [] | no_license | RoggerTipiani/daemonRetailWorkspace | https://github.com/RoggerTipiani/daemonRetailWorkspace | 759352f3e1ed820e9e0611bb5e84022fe3b0fa1f | 1e475b4ff2051effd71be6755132483d95052115 | refs/heads/master | 2018-10-15T20:18:13.635000 | 2018-02-24T18:16:15 | 2018-02-24T18:16:15 | 115,237,728 | 0 | 0 | null | false | 2018-02-24T18:16:16 | 2017-12-24T03:36:45 | 2017-12-25T17:19:54 | 2018-02-24T18:16:16 | 1,617 | 0 | 0 | 0 | Java | false | null | package sysoft.client.csvdata.debitNote;
import java.util.List;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.BillingReferenceType;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.ResponseType;
import sysoft.client.csvdata.commons.Error;
import sysoft.client.c... | UTF-8 | Java | 3,428 | java | DebitNoteRelatedDocuments.java | Java | [] | null | [] | package sysoft.client.csvdata.debitNote;
import java.util.List;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.BillingReferenceType;
import oasis.names.specification.ubl.schema.xsd.commonaggregatecomponents_2.ResponseType;
import sysoft.client.csvdata.commons.Error;
import sysoft.client.c... | 3,428 | 0.76196 | 0.760502 | 96 | 34.708332 | 37.002792 | 176 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.104167 | false | false | 2 |
c13d93be921f8d7230db074338e77d30cf64ec2b | 30,863,635,018,567 | 98c7146def831aa6d4ec71c736c0afe9aea0d353 | /backend/business-partner-agent/src/main/java/org/hyperledger/bpa/impl/messaging/websocket/MessageService.java | 1f3eb6c73a112f1a3de501384cde2763d39851f8 | [
"CC-BY-4.0",
"Apache-2.0",
"LGPL-2.1-only",
"MIT",
"GPL-2.0-only",
"JSON",
"BSD-2-Clause"
] | permissive | parc-jason/business-partner-agent | https://github.com/parc-jason/business-partner-agent | ab3c081a280f0a0b647b15b39419e1d6e9e17d4e | 462ade43973233ce9327b898b728e7ad700099c4 | refs/heads/main | 2023-08-29T10:19:15.096000 | 2022-03-14T15:23:57 | 2022-03-14T15:23:57 | 340,132,525 | 0 | 0 | Apache-2.0 | true | 2021-02-18T17:54:30 | 2021-02-18T17:54:29 | 2021-02-16T08:53:12 | 2021-02-16T08:53:37 | 1,548 | 0 | 0 | 0 | null | false | false | /*
* Copyright (c) 2020-2022 - for information on the respective copyright owner
* see the NOTICE file and/or the repository at
* https://github.com/hyperledger-labs/business-partner-agent
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the... | UTF-8 | Java | 2,505 | java | MessageService.java | Java | [
{
"context": "le and/or the repository at\n * https://github.com/hyperledger-labs/business-partner-agent\n *\n * Licensed under the A",
"end": 168,
"score": 0.9976646900177002,
"start": 152,
"tag": "USERNAME",
"value": "hyperledger-labs"
}
] | null | [] | /*
* Copyright (c) 2020-2022 - for information on the respective copyright owner
* see the NOTICE file and/or the repository at
* https://github.com/hyperledger-labs/business-partner-agent
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the... | 2,505 | 0.675848 | 0.670659 | 75 | 32.400002 | 27.311049 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.44 | false | false | 2 |
3e5ead49306c3dca39e0d47000ba93ad706751a2 | 27,668,179,322,517 | 9f004c3df4413eb826c229332d95130a1d5c8457 | /src/akshay/Assignment26_2.java | fee5289cf40feb088f024f2a63fd9ad20020f3c0 | [] | no_license | MayurSTechnoCredit/JAVATechnoJuly2021 | https://github.com/MayurSTechnoCredit/JAVATechnoJuly2021 | dd8575c800e8f0cac5bab8d5ea32b25f7131dd0d | 3a422553a0d09b6a99e528c73cc2b8efe260a07a | refs/heads/master | 2023-08-22T14:43:37.980000 | 2021-10-16T06:33:34 | 2021-10-16T06:33:34 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package akshay;
import java.util.Arrays;
public class Assignment26_2 {
String[] getReverseArray(String[] input) {
int i = 0;
String[] output = new String[input.length];
for(int index=output.length-1; index >=0; index--) {
output[i] = input[index];
i++;
}
return output;
}
public static void main... | UTF-8 | Java | 543 | java | Assignment26_2.java | Java | [] | null | [] | package akshay;
import java.util.Arrays;
public class Assignment26_2 {
String[] getReverseArray(String[] input) {
int i = 0;
String[] output = new String[input.length];
for(int index=output.length-1; index >=0; index--) {
output[i] = input[index];
i++;
}
return output;
}
public static void main... | 543 | 0.668508 | 0.646409 | 22 | 23.681818 | 23.570757 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2 | false | false | 2 |
6ab82d6860f45caebe4c7123a38700710a3924e4 | 5,549,097,782,864 | b986535f5082e4106fd9e87290588e2b72a15e18 | /app/src/main/java/com/quantimodo/ratingplugin/Global.java | 122a50116eb3ae4f1778e36bb89f54df2369be07 | [] | no_license | mikepsinn/rating-plugin | https://github.com/mikepsinn/rating-plugin | b8d7b1dc9f259bacdc754ab35810febe336abf5a | 89b6ad412da0fc8dbf608a22384806fba7b9ba9a | refs/heads/master | 2022-07-12T08:20:54.519000 | 2017-08-04T17:30:59 | 2017-08-04T17:30:59 | 99,364,308 | 0 | 0 | null | false | 2019-02-17T21:45:26 | 2017-08-04T17:11:34 | 2017-08-04T17:31:12 | 2019-02-17T21:45:24 | 734 | 0 | 0 | 1 | Java | false | null | package com.quantimodo.ratingplugin;
import android.content.Context;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import java.util.Calendar;
import java.util.Date;
public class Global
{
public static final String BUGSENSE_KEY = "3a3d937d";
public static final String QUANT... | UTF-8 | Java | 1,254 | java | Global.java | Java | [
{
"context": "bal\n{\n\tpublic static final String BUGSENSE_KEY = \"3a3d937d\";\n\n\tpublic static final String QUANTIMODO_SCOPES ",
"end": 283,
"score": 0.9996525049209595,
"start": 275,
"tag": "KEY",
"value": "3a3d937d"
}
] | null | [] | package com.quantimodo.ratingplugin;
import android.content.Context;
import android.content.SharedPreferences;
import android.preference.PreferenceManager;
import java.util.Calendar;
import java.util.Date;
public class Global
{
public static final String BUGSENSE_KEY = "3a3d937d";
public static final String QUANT... | 1,254 | 0.745614 | 0.733652 | 52 | 23.134615 | 22.643583 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.711538 | false | false | 2 |
26a475ceebde075a98617e3b69bf3c4f9c33a119 | 22,883,585,763,273 | c69cb8b540adfa3ad178fd822db8353df5174c66 | /app/src/main/java/com/example/permanentlove/jinxiu/view/Registered_Activity.java | 101ed177858ec675e77e3ac33a60beb2386593fd | [] | no_license | Fxtong/jinxiu | https://github.com/Fxtong/jinxiu | 6341a795a857d372c965d7097f74db7f447cdada | 0bff93f99296943aa1b2ca72497ade54300d8ee1 | refs/heads/master | 2021-01-19T06:33:02.656000 | 2016-12-13T01:01:58 | 2016-12-13T01:01:58 | 73,553,778 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.permanentlove.jinxiu.view;
import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.text.TextUtils;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.wid... | UTF-8 | Java | 9,117 | java | Registered_Activity.java | Java | [
{
"context": "\nimport cn.smssdk.utils.SMSLog;\n\n/**\n * Created by permanent love on 2016/3/23.\n */\npublic class Registered_Activit",
"end": 686,
"score": 0.9946720600128174,
"start": 672,
"tag": "USERNAME",
"value": "permanent love"
},
{
"context": " RequestParams params=new R... | null | [] | package com.example.permanentlove.jinxiu.view;
import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.text.TextUtils;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.wid... | 9,109 | 0.568369 | 0.555743 | 292 | 29.380136 | 27.15057 | 165 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.513699 | false | false | 2 |
234c1dfc5570fc5074fe7f0bf3877f47f37b008a | 11,347,303,630,841 | f0f14d3d1a5a915db3da773ac28c32c360260188 | /src/com/jspider/servlets/DeleteCookieServlet.java | fa389326daf84ec3a390ba432239789ca308fd6b | [] | no_license | prash108/J2EE-JSpider1 | https://github.com/prash108/J2EE-JSpider1 | 4decdb34080545854462d191a01edc9f307d5e10 | 032bb5d76d93329f855c6e52acb43d8429048ac8 | refs/heads/master | 2021-09-24T11:15:34.220000 | 2021-09-13T07:16:33 | 2021-09-13T07:16:33 | 107,379,204 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jspider.servlets;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class DeleteCookieS... | UTF-8 | Java | 948 | java | DeleteCookieServlet.java | Java | [] | null | [] | package com.jspider.servlets;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class DeleteCookieS... | 948 | 0.740506 | 0.739451 | 44 | 20.545454 | 19.616152 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.727273 | false | false | 2 |
a631e651f0b4205f579517a00520f43a20f93d26 | 23,295,902,666,284 | 83dfd737073023b3da6ca1752436467769d1bb6a | /Documents/NetBeansProjects/copyingFile/src/copyingfile/Ex.java | 596534901811fc1a2f046a055c980d794e166724 | [] | no_license | Rami-hardware/write-and-read | https://github.com/Rami-hardware/write-and-read | 69d767d44673100e7c2ab52448a1588cfe000778 | d6de1802f5774065c121cf1116bdfd4d5e89d52f | refs/heads/master | 2020-08-06T23:18:40.148000 | 2019-10-06T15:45:27 | 2019-10-06T15:45:27 | 213,195,487 | 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 copyingfile;
import java.io.*;
/**
*
* @author Rami Dannah
*/
public class Ex extends Reader{
@Override
public int ... | UTF-8 | Java | 728 | java | Ex.java | Java | [
{
"context": "e copyingfile;\nimport java.io.*;\n/**\n *\n * @author Rami Dannah\n */\npublic class Ex extends Reader{\n\n @Overrid",
"end": 253,
"score": 0.9998502731323242,
"start": 242,
"tag": "NAME",
"value": "Rami Dannah"
}
] | 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 copyingfile;
import java.io.*;
/**
*
* @author <NAME>
*/
public class Ex extends Reader{
@Override
public int read(... | 723 | 0.701923 | 0.701923 | 24 | 29.333334 | 38.923714 | 135 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.541667 | false | false | 2 |
768cd858fedf3faa556970030d0a940ab648680e | 26,714,696,631,003 | 08e14abbcf8d2a88217ba5f59dfeffe8e5b6ddaa | /app/src/main/java/com/beazle/pursuitvolley/Coach/CoachInfoEntryActivity.java | 1182e9a5213318ed4e75331810931a0b8e9b91d8 | [] | no_license | BZEEE/PursuitVolley_Android_App | https://github.com/BZEEE/PursuitVolley_Android_App | 379b3ce867f93b7b35a907d6d4d18952b216b1b2 | 89eb18a3f6e5230bf5094c981219bc0c0183e542 | refs/heads/master | 2023-01-19T06:05:50.459000 | 2019-10-04T19:49:52 | 2019-10-04T19:49:52 | 196,628,880 | 0 | 0 | null | false | 2023-01-09T11:49:42 | 2019-07-12T18:41:56 | 2019-10-04T19:49:55 | 2023-01-09T11:49:40 | 621 | 0 | 0 | 11 | Java | false | false | package com.beazle.pursuitvolley.Coach;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;
import android.Manifest;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.net.Uri... | UTF-8 | Java | 19,975 | java | CoachInfoEntryActivity.java | Java | [] | null | [] | package com.beazle.pursuitvolley.Coach;
import androidx.annotation.NonNull;
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;
import android.Manifest;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.net.Uri... | 19,975 | 0.57572 | 0.575419 | 402 | 48.689056 | 39.600624 | 202 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.50995 | false | false | 2 |
855f88883f60322f9c58889891995ee9cbeee7cb | 32,049,045,969,755 | a69547eae6f04ce452b42138e9b73373705dfe9e | /src/data/ProductTypeManager.java | 440830649a83d599bf42c5980fc58af5f6c5e680 | [] | no_license | florinior12/starStruck | https://github.com/florinior12/starStruck | a9bbcefa5d76c2219a3193b808b7be263182579a | eeb9be02c17e8bdebefb0eee712236af0aef7b61 | refs/heads/master | 2021-09-07T23:51:47.722000 | 2018-03-03T17:06:09 | 2018-03-03T17:06:09 | 106,965,961 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package data;
import com.mysql.jdbc.exceptions.MySQLSyntaxErrorException;
import main.ConnectionFactory;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
public class ProductTypeManager {
Connection connection = nu... | UTF-8 | Java | 6,292 | java | ProductTypeManager.java | Java | [] | null | [] | package data;
import com.mysql.jdbc.exceptions.MySQLSyntaxErrorException;
import main.ConnectionFactory;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
public class ProductTypeManager {
Connection connection = nu... | 6,292 | 0.578512 | 0.577877 | 175 | 34.954285 | 33.88195 | 180 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.611429 | false | false | 2 |
0b495ff8d4638e65d90de418006bc84fe1ab1325 | 5,222,680,240,724 | 9e503349df0d07b1e5974e82a2c768531124bf60 | /app/src/main/java/de/parcelbox/MainActivity.java | 782ecb1f23fcc2a09e212f7992336781e98aedfb | [] | no_license | troy-lamerton/parcelbox-android | https://github.com/troy-lamerton/parcelbox-android | ef234afa59f0e3f1fc2dfd2bf5d80c811e947f29 | 8462aacfb74d72e3a755e52ff4aadef0e2459f98 | refs/heads/master | 2021-07-03T01:42:20.541000 | 2017-09-24T08:38:30 | 2017-09-24T08:38:30 | 104,582,517 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package de.parcelbox;
import android.content.Context;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.TextureView;
import android.view.View;
import com.google.gson.JsonObject;
import com.pubnub.api.PubNub;
import com.pubnub.api.callbacks.Subscrib... | UTF-8 | Java | 6,195 | java | MainActivity.java | Java | [
{
"context": "mport de.parcelbox.views.ResultView;\nimport uk.co.chrisjenx.calligraphy.CalligraphyContextWrapper;\n\npublic cl",
"end": 852,
"score": 0.9946851134300232,
"start": 843,
"tag": "USERNAME",
"value": "chrisjenx"
}
] | null | [] | package de.parcelbox;
import android.content.Context;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.TextureView;
import android.view.View;
import com.google.gson.JsonObject;
import com.pubnub.api.PubNub;
import com.pubnub.api.callbacks.Subscrib... | 6,195 | 0.635674 | 0.635513 | 186 | 32.30645 | 24.788301 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.494624 | false | false | 2 |
4346f2428747377963a07c7b16700bc0eaaffdf9 | 6,932,077,216,010 | a0fde193fdcb0c2aa9fab3364e3d8f3811ea8372 | /vraptor-core/src/main/java/br/com/caelum/vraptor/util/migration/HibernateConnectionProvider.java | e97c90a4eec5c9a07c22c6cc3b13789cd73e645c | [
"Apache-2.0"
] | permissive | yorgan/vraptor | https://github.com/yorgan/vraptor | c29ae68405270ae41df6e72a78dbddb5a7b85643 | 53afe1e7023aa42b1129bc7071c3563688a4cb16 | refs/heads/master | 2020-12-24T10:15:39.137000 | 2010-08-18T01:55:30 | 2010-08-18T01:55:30 | 831,146 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /***
* Copyright (c) 2009 Caelum - www.caelum.com.br/opensource
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-... | UTF-8 | Java | 2,242 | java | HibernateConnectionProvider.java | Java | [
{
"context": "xample, using a\n * ComponentFactory.\n *\n * @author Guilherme Silveira\n */\n@Component\n@ApplicationScoped\n@SuppressWarnin",
"end": 1203,
"score": 0.9998630285263062,
"start": 1185,
"tag": "NAME",
"value": "Guilherme Silveira"
}
] | null | [] | /***
* Copyright (c) 2009 Caelum - www.caelum.com.br/opensource
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-... | 2,230 | 0.735504 | 0.731936 | 81 | 26.679012 | 25.208673 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.234568 | false | false | 2 |
a81b54d61263f0d4304504e639be64befb8fcbe8 | 3,839,700,829,563 | 0ddc847a483dddfe96e5d4b088edeb8191708bd1 | /de.egladil.mkm.service/src/main/java/de/egladil/mkm/service/domain/Wettbewerb.java | 4dfb9ff0eb38e7bd95ea4680735c6129486eb148 | [] | no_license | heike2718/de.egladil.mkmanufaktur | https://github.com/heike2718/de.egladil.mkmanufaktur | 652542f9d43a7450366eb685d57eeb75c5b1ed83 | 64c9b81560c1c76491fcfeba5f43acf3bfe4ccb4 | refs/heads/master | 2017-04-03T02:32:59.417000 | 2017-01-29T06:18:54 | 2017-01-29T06:18:54 | 57,961,673 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | //=====================================================
// Projekt: de.egladil.mkm.service
// (c) Heike Winkelvoß
//=====================================================
package de.egladil.mkm.service.domain;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.CascadeType;
import javax.persis... | UTF-8 | Java | 4,191 | java | Wettbewerb.java | Java | [
{
"context": "========\n// Projekt: de.egladil.mkm.service\n// (c) Heike Winkelvoß\n//===============================================",
"end": 113,
"score": 0.9998584389686584,
"start": 98,
"tag": "NAME",
"value": "Heike Winkelvoß"
}
] | null | [] | //=====================================================
// Projekt: de.egladil.mkm.service
// (c) <NAME>
//=====================================================
package de.egladil.mkm.service.domain;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.CascadeType;
import javax.persistence.Col... | 4,181 | 0.68926 | 0.686396 | 184 | 21.77174 | 21.609228 | 109 | false | false | 0 | 0 | 0 | 0 | 65 | 0.015513 | 1.326087 | false | false | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.