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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
8695fd84f3d5a5a90c0aeb624229313329f05ec4 | 37,495,064,510,428 | 48ddaaaf2c6abdb21a53762e839c16b143479ab6 | /pattern_compound/src/com/pattern/compound/intf/QuackObserver.java | 57f49d0476e3063f4befbcb61706bba109e304d3 | [] | no_license | chuzhen1210/designPattern | https://github.com/chuzhen1210/designPattern | e6aca487947cdcb30fa1f107969f891c97208465 | 864c89d94dce8f98f7495cddeb50389b432e510f | refs/heads/master | 2021-01-23T12:22:21.561000 | 2017-06-02T11:04:22 | 2017-06-02T11:04:22 | 93,155,216 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.pattern.compound.intf;
/**
* 呱呱叫观察者,只需要一个<code>update()</code>方法
* @author chuzhen
*
*/
public interface QuackObserver {
/**
* 需要传入被观察对象
* @param duck
*/
public void update(QuackObservable duck);
}
| GB18030 | Java | 285 | java | QuackObserver.java | Java | [
{
"context": " * 呱呱叫观察者,只需要一个<code>update()</code>方法\r\n * @author chuzhen\r\n *\r\n */\r\npublic interface QuackObserver {\r\n\r\n\t/*",
"end": 101,
"score": 0.9987590312957764,
"start": 94,
"tag": "USERNAME",
"value": "chuzhen"
}
] | null | [] | package com.pattern.compound.intf;
/**
* 呱呱叫观察者,只需要一个<code>update()</code>方法
* @author chuzhen
*
*/
public interface QuackObserver {
/**
* 需要传入被观察对象
* @param duck
*/
public void update(QuackObservable duck);
}
| 285 | 0.627615 | 0.627615 | 15 | 13.933333 | 14.717186 | 42 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.466667 | false | false | 2 |
3a731b8a63acd89d35473918937d784a371ff415 | 19,576,460,978,923 | be37167dde1827ca05b1c0599926979c72b2558f | /GraphStuff/DFS.java | 6554fb1580b29fc45501a239f38f1c378c37e29a | [] | no_license | colll78/Bospre2019 | https://github.com/colll78/Bospre2019 | 9258d164335dc5d48ebc78970ae8c34a5e594d4a | 134ac209480d9f3487add8c64591cc6fdae80267 | refs/heads/master | 2020-08-21T04:32:34.638000 | 2020-03-17T02:41:32 | 2020-03-17T02:41:32 | 216,097,809 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public static void dfs(int[][]adj ,boolean[] vis ,int src ,int n)throws Exception{
LinkedList<Integer> stack = new LinkedList<Integer>();
stack.addLast(src);
vis[src] = true;
int level = 0;
// print(src,level);
while(!stack.isEmpty()){
int node = stack.getLast(); // DFS-BFS Decesion
int check =... | UTF-8 | Java | 653 | java | DFS.java | Java | [] | null | [] | public static void dfs(int[][]adj ,boolean[] vis ,int src ,int n)throws Exception{
LinkedList<Integer> stack = new LinkedList<Integer>();
stack.addLast(src);
vis[src] = true;
int level = 0;
// print(src,level);
while(!stack.isEmpty()){
int node = stack.getLast(); // DFS-BFS Decesion
int check =... | 653 | 0.540582 | 0.529862 | 30 | 20.766666 | 17.600536 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.866667 | false | false | 2 |
5cd162bcf2dc4bff5fe2b246014c717dce0247b6 | 687,194,829,270 | 84dc4b0ff877c868c5d3cc55e3f09f0324bbac66 | /src/main/java/it/esercitazione4/nodes/ProgramNode.java | 6c988a35dd6f1f1c284554910379cdadc33ab763 | [] | no_license | xNeorem/Toy_Compiler | https://github.com/xNeorem/Toy_Compiler | e978e5a583e66d7e5cdc702f2655cbc443aff1be | c2d5ac5c93b9f22a010001f6b267b984e71e4353 | refs/heads/master | 2023-07-29T04:29:04.154000 | 2021-09-15T13:32:18 | 2021-09-15T13:32:18 | 406,777,101 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package it.esercitazione4.nodes;
import it.esercitazione4.symboltable.SymbolTable;
import it.esercitazione4.visitor.Visitable;
import it.esercitazione4.visitor.Visitor;
public class ProgramNode extends Node implements Visitable {
private VarDeclListNode varDeclListNode;
private ProcListNode procListNode;
... | UTF-8 | Java | 1,633 | java | ProgramNode.java | Java | [] | null | [] | package it.esercitazione4.nodes;
import it.esercitazione4.symboltable.SymbolTable;
import it.esercitazione4.visitor.Visitable;
import it.esercitazione4.visitor.Visitor;
public class ProgramNode extends Node implements Visitable {
private VarDeclListNode varDeclListNode;
private ProcListNode procListNode;
... | 1,633 | 0.660747 | 0.658298 | 57 | 27.649122 | 22.115717 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.421053 | false | false | 2 |
437f14c19fceb0c950327231b4eb199dc2b5e30b | 37,125,697,319,518 | ead6d4a5483388c44ad68c8371ddd06c78561988 | /Android/Notes/app/src/main/java/tech/vofy/notes/callbacks/SwipeToDeleteCallback.java | 9592d94b739494c7f21ec5e905b7eb07ef097f19 | [] | no_license | Vofy/code-snippets | https://github.com/Vofy/code-snippets | 5979236ce5da7c7be3a94e2047ad3627ec22f556 | 57676d1cfe1e9e39b0613929350ef9f0943f3a73 | refs/heads/main | 2023-05-04T09:43:42.757000 | 2021-05-20T08:41:42 | 2021-05-20T08:41:42 | 364,596,081 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package tech.vofy.notes.callbacks;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.drawable.Drawable;
import android.view.View;
import androidx.annotation.NonNull;
import androidx.appcompat.content.res.AppCompatResources;
import androidx.core.content.ContextCompat;
import andro... | UTF-8 | Java | 3,248 | java | SwipeToDeleteCallback.java | Java | [] | null | [] | package tech.vofy.notes.callbacks;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.drawable.Drawable;
import android.view.View;
import androidx.annotation.NonNull;
import androidx.appcompat.content.res.AppCompatResources;
import androidx.core.content.ContextCompat;
import andro... | 3,248 | 0.718288 | 0.713978 | 72 | 44.125 | 42.068375 | 193 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.027778 | false | false | 2 |
780c29204516bd44fcc9e86edb38aa6c3008fc38 | 3,582,002,774,117 | d2d46a84bee2f266de940c2aae76083af79a88a4 | /src/main/java/au/com/crypto/bot/application/analyzer/entities/StrategyConditionsRepository.java | b642731b566d1ed1d1073b76dd40eff7113e268f | [] | no_license | bsn-group/analyzer | https://github.com/bsn-group/analyzer | e031269a0509b4443ce1b92294b7ed6f4b430313 | 40214bfa46d0aa174c8d3e456bf0028d36119acb | refs/heads/main | 2023-06-17T21:54:35.322000 | 2022-02-04T09:04:23 | 2022-02-04T09:05:35 | 362,838,049 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package au.com.crypto.bot.application.analyzer.entities;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.CrudRepository;
import java.util.List;
public interface StrategyConditionsRepository extends CrudRepository<StrategyConditions, Long>{
List<StrategyConditions> f... | UTF-8 | Java | 541 | java | StrategyConditionsRepository.java | Java | [] | null | [] | package au.com.crypto.bot.application.analyzer.entities;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.CrudRepository;
import java.util.List;
public interface StrategyConditionsRepository extends CrudRepository<StrategyConditions, Long>{
List<StrategyConditions> f... | 541 | 0.859519 | 0.859519 | 12 | 44.166668 | 36.775974 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.75 | false | false | 2 |
7d521b26d7a49bea896d028a77f9900df7b035ef | 9,929,964,445,988 | 0e06e096a9f95ab094b8078ea2cd310759af008b | /sources/com/applovin/impl/sdk/ep.java | 734775464c06762751903aef53ab25b313b79834 | [] | no_license | Manifold0/adcom_decompile | https://github.com/Manifold0/adcom_decompile | 4bc2907a057c73703cf141dc0749ed4c014ebe55 | fce3d59b59480abe91f90ba05b0df4eaadd849f7 | refs/heads/master | 2020-05-21T02:01:59.787000 | 2019-05-10T00:36:27 | 2019-05-10T00:36:27 | 185,856,424 | 1 | 2 | null | false | 2019-05-10T00:36:28 | 2019-05-09T19:04:28 | 2019-05-09T22:35:26 | 2019-05-10T00:36:27 | 95,641 | 0 | 2 | 0 | Java | false | false | package com.applovin.impl.sdk;
import android.net.Uri;
import android.webkit.URLUtil;
import com.applovin.impl.p016a.C1228a;
import com.applovin.impl.p016a.C1233f;
import com.applovin.impl.p016a.C1236i;
import com.applovin.impl.p016a.C1237j;
import com.applovin.impl.p016a.C1245r;
import com.applovin.sdk.AppLovinAdLoad... | UTF-8 | Java | 6,116 | java | ep.java | Java | [] | null | [] | package com.applovin.impl.sdk;
import android.net.Uri;
import android.webkit.URLUtil;
import com.applovin.impl.p016a.C1228a;
import com.applovin.impl.p016a.C1233f;
import com.applovin.impl.p016a.C1236i;
import com.applovin.impl.p016a.C1237j;
import com.applovin.impl.p016a.C1245r;
import com.applovin.sdk.AppLovinAdLoad... | 6,116 | 0.465991 | 0.389961 | 137 | 43.642334 | 30.924852 | 135 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.868613 | false | false | 2 |
a2617bf64880caf9d2796618112212c919cce38d | 360,777,294,914 | e972439b2310abc73f5b18f2b675744da4a02321 | /src/main/java/com/zhaodj/foo/thread/ShutdownHookDemo.java | 96f150f197f007eb378a9835c5a4695ea5c2ca2f | [] | no_license | zhaodj/java_lab | https://github.com/zhaodj/java_lab | 0c147500b3e84e629e4b88807a029c567d60d8c0 | 73ed7f9e8ad9c1acd1c13c3230219a29fddfd59f | refs/heads/master | 2021-01-18T22:26:06.087000 | 2017-05-24T03:58:49 | 2017-05-24T03:58:49 | 31,702,218 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.zhaodj.foo.thread;
import java.util.Scanner;
public class ShutdownHookDemo {
public static void main(String[] args) {
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
@Override
public void run() {
System.out.println("shutdown");
}
}));
Scanner sc = new Scan... | UTF-8 | Java | 440 | java | ShutdownHookDemo.java | Java | [] | null | [] | package com.zhaodj.foo.thread;
import java.util.Scanner;
public class ShutdownHookDemo {
public static void main(String[] args) {
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
@Override
public void run() {
System.out.println("shutdown");
}
}));
Scanner sc = new Scan... | 440 | 0.645455 | 0.645455 | 25 | 16.6 | 17.62952 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.92 | false | false | 2 |
f01a7f7ccd9b904c6513d8827fb70d2e8430a332 | 26,259,430,114,448 | ccdbf467ce59670b4b5e53d4c40d3872f1a9b1a8 | /YiPin/src/com/yipin/model/Goods.java | 8d7ffb1c92f43a5e6bd0fc2f19114dae1229e59f | [] | no_license | yangasahi/Yipinnet | https://github.com/yangasahi/Yipinnet | 78ce61ed64a78995380d8bd203aa9c575678611b | d350df4711403a7dbc28a7a6cc6e1b8f08745cd8 | refs/heads/master | 2020-12-30T11:15:27.871000 | 2014-06-22T11:22:00 | 2014-06-22T11:22:00 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.yipin.model;
public class Goods {
private String goodsid;
private String goodsname;
private String introduce;
private String image;
private String addr;
private String typename;
private int goodstypeid;
public String getGoodsid() {
return goodsid;
}
public void setGoodsid(S... | UTF-8 | Java | 1,130 | java | Goods.java | Java | [] | null | [] | package com.yipin.model;
public class Goods {
private String goodsid;
private String goodsname;
private String introduce;
private String image;
private String addr;
private String typename;
private int goodstypeid;
public String getGoodsid() {
return goodsid;
}
public void setGoodsid(S... | 1,130 | 0.70531 | 0.70531 | 56 | 19.178572 | 14.034533 | 46 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.410714 | false | false | 7 |
73f10434775eecc964293c722844595a5ecea381 | 5,437,428,651,976 | 3f4f36053528fafaa887195603adeba2d94af0a4 | /mvp/src/main/java/com/electronclass/pda/mvp/entity/ErrorMessage.java | b8a67341911fa654c18f7a6dc5c03e1d88615e5b | [
"Apache-2.0"
] | permissive | caofengcheng/ElectronClass | https://github.com/caofengcheng/ElectronClass | c17d1d180c8a5591f66cdbe7391c94ef9c880816 | 7c0361cc2ee53f29d5ebcc915e418c7b05aa9b26 | refs/heads/master | 2021-07-14T02:30:00.459000 | 2020-10-10T09:23:41 | 2020-10-10T09:23:41 | 213,528,493 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.electronclass.pda.mvp.entity;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.io.Serializable;
/**
* 错误信息
* Created by linlingrong on 2016-01-25.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class ErrorMessage implements Serializable {
private String code;
pr... | UTF-8 | Java | 630 | java | ErrorMessage.java | Java | [
{
"context": "t java.io.Serializable;\n\n/**\n * 错误信息\n * Created by linlingrong on 2016-01-25.\n */\n@JsonIgnoreProperties(ignoreUn",
"end": 173,
"score": 0.9996967911720276,
"start": 162,
"tag": "USERNAME",
"value": "linlingrong"
}
] | null | [] | package com.electronclass.pda.mvp.entity;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.io.Serializable;
/**
* 错误信息
* Created by linlingrong on 2016-01-25.
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class ErrorMessage implements Serializable {
private String code;
pr... | 630 | 0.676849 | 0.663987 | 31 | 19.064516 | 18.140909 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.290323 | false | false | 7 |
b2fd3c4a63e57429a2f64f73d6f097b96012dc6e | 20,581,483,351,158 | 969af5b57471c21117e5a9ec2e33623a3ba78518 | /src/main/java/cn/Test/soldTickets.java | b9b459424b3d1c532e8f655969c7c58f588291e0 | [] | no_license | 846916096/jwxtwx | https://github.com/846916096/jwxtwx | e555f37368a0f445f8c54edc0c7e4f17e48e21e3 | 0e4a3e7c639deff2ba6be4f515270fa10e2b1f09 | refs/heads/master | 2021-05-04T20:24:16.935000 | 2018-05-01T01:53:12 | 2018-05-01T01:53:12 | 119,811,196 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.Test;
/**
* @author MiaoQ
* @create 2018-03-20-20:16
*/
public class soldTickets implements Runnable {
static int a = 100;
static Object ob = new Object();
public void run() {
while (a > 0) {
synchronized (ob)
{
if (a > 0) {
... | UTF-8 | Java | 721 | java | soldTickets.java | Java | [
{
"context": "package cn.Test;\n\n/**\n * @author MiaoQ\n * @create 2018-03-20-20:16\n */\npublic class sold",
"end": 38,
"score": 0.9223065376281738,
"start": 33,
"tag": "NAME",
"value": "MiaoQ"
}
] | null | [] | package cn.Test;
/**
* @author MiaoQ
* @create 2018-03-20-20:16
*/
public class soldTickets implements Runnable {
static int a = 100;
static Object ob = new Object();
public void run() {
while (a > 0) {
synchronized (ob)
{
if (a > 0) {
... | 721 | 0.391489 | 0.364539 | 31 | 21.741936 | 16.605417 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.290323 | false | false | 7 |
5c119ff421502a0e56388bbeb2681b7b0d68e3c1 | 22,505,628,631,467 | 6f672fb72caedccb841ee23f53e32aceeaf1895e | /pinterest_source/src/com/pinterest/activity/nux/fragment/NUXInterestsPickerFragment.java | ecc74cfba7640274752ed8c45c02782f64d447b2 | [] | no_license | cha63506/CompSecurity | https://github.com/cha63506/CompSecurity | 5c69743f660b9899146ed3cf21eceabe3d5f4280 | eee7e74f4088b9c02dd711c061fc04fb1e4e2654 | refs/heads/master | 2018-03-23T04:15:18.480000 | 2015-12-19T01:29:58 | 2015-12-19T01:29:58 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | // Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/kpdus/jad.html
// Decompiler options: braces fieldsfirst space lnc
package com.pinterest.activity.nux.fragment;
import android.net.Uri;
import android.os.Bundle;
import android.text.Html;
import android.view.Lay... | UTF-8 | Java | 13,874 | java | NUXInterestsPickerFragment.java | Java | [
{
"context": "// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov.\n// Jad home page: http://www.geocities.com/kpdus",
"end": 61,
"score": 0.9996883869171143,
"start": 45,
"tag": "NAME",
"value": "Pavel Kouznetsov"
}
] | null | [] | // Decompiled by Jad v1.5.8e. Copyright 2001 <NAME>.
// Jad home page: http://www.geocities.com/kpdus/jad.html
// Decompiler options: braces fieldsfirst space lnc
package com.pinterest.activity.nux.fragment;
import android.net.Uri;
import android.os.Bundle;
import android.text.Html;
import android.view.LayoutInflate... | 13,864 | 0.644875 | 0.632622 | 431 | 31.190256 | 28.24431 | 159 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.545244 | false | false | 7 |
2bb8b8b17937f5c26d6859b8ee6fd34401f8967e | 18,726,057,464,780 | 94741a79286128ccba529e5f5c28c668fd5b00ff | /src/Chapter11/GeometricObject.java | e4ce04a5ca69a333808fa23be68d249b32eb3f95 | [] | no_license | Fighteros/JavaRev | https://github.com/Fighteros/JavaRev | fbce475b2749f4b13acc874dba784f8c86deb2fd | f2634a5224bb90afe7589acbcc912429564ddd0c | refs/heads/master | 2023-03-29T23:11:55.130000 | 2021-03-28T15:33:34 | 2021-03-28T15:33:34 | 349,987,250 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Chapter11;
public class GeometricObject {
private double radius ;
public GeometricObject(){
}
public GeometricObject(double radius){
this.radius = radius;
}
public double getRadius() {
return radius;
}
@Override
public String toString() {
return ... | UTF-8 | Java | 487 | java | GeometricObject.java | Java | [] | null | [] | package Chapter11;
public class GeometricObject {
private double radius ;
public GeometricObject(){
}
public GeometricObject(double radius){
this.radius = radius;
}
public double getRadius() {
return radius;
}
@Override
public String toString() {
return ... | 487 | 0.558522 | 0.554415 | 27 | 17.037037 | 14.642611 | 42 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.222222 | false | false | 7 |
930ee68e2b902e294cf2174f83560c441eaeb5f4 | 1,279,900,261,480 | 3a5985651d77a31437cfdac25e594087c27e93d6 | /ojc-core/iepse/iepjbiadapter/src/com/sun/jbi/engine/iep/DeploymentRecord.java | 3939b04c684cc6d1a514fb3a63b2ce0106a79e72 | [] | no_license | vitalif/openesb-components | https://github.com/vitalif/openesb-components | a37d62133d81edb3fdc091abd5c1d72dbe2fc736 | 560910d2a1fdf31879e3d76825edf079f76812c7 | refs/heads/master | 2023-09-04T14:40:55.665000 | 2016-01-25T13:12:22 | 2016-01-25T13:12:33 | 48,222,841 | 0 | 5 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* BEGIN_HEADER - DO NOT EDIT
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the "License"). You may not use this file except
* in compliance with the License.
*
* You can obtain a copy of the license at
* https://open-jbi-components.dev.java.... | UTF-8 | Java | 3,731 | java | DeploymentRecord.java | Java | [
{
"context": "eated on September 8, 2005, 12:47 AM\n *\n * @author Bing Lu\n*/\npublic class DeploymentRecord {\n private St",
"end": 1584,
"score": 0.9993593096733093,
"start": 1577,
"tag": "NAME",
"value": "Bing Lu"
}
] | null | [] | /*
* BEGIN_HEADER - DO NOT EDIT
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the "License"). You may not use this file except
* in compliance with the License.
*
* You can obtain a copy of the license at
* https://open-jbi-components.dev.java.... | 3,730 | 0.669526 | 0.662825 | 124 | 29.088709 | 24.415758 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.330645 | false | false | 7 |
5af62e5e31dd2670f06635a7b5ea8c3ab916d409 | 24,051,816,861,799 | b0bf104e19a1344985faac30c9a7d3307b548648 | /src/main/java/com/besafx/app/rest/TaskAction.java | d2fed18625959c01ae1780370b6ed4c298627be8 | [] | no_license | BESAFX/tafear | https://github.com/BESAFX/tafear | e71ca9689e0eb50e9f0da51461adbc5d5247a258 | 21f156d57e689731ef6410a2137c299b0fb05d6b | refs/heads/master | 2021-09-16T19:58:42.120000 | 2018-06-24T06:21:43 | 2018-06-24T06:21:55 | 111,115,392 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.besafx.app.rest;
import com.besafx.app.config.CustomException;
import com.besafx.app.config.EmailSender;
import com.besafx.app.entity.*;
import com.besafx.app.entity.enums.CloseType;
import com.besafx.app.entity.enums.OperationType;
import com.besafx.app.service.*;
import com.besafx.app.util.DateConverter;
... | UTF-8 | Java | 45,528 | java | TaskAction.java | Java | [] | null | [] | package com.besafx.app.rest;
import com.besafx.app.config.CustomException;
import com.besafx.app.config.EmailSender;
import com.besafx.app.entity.*;
import com.besafx.app.entity.enums.CloseType;
import com.besafx.app.entity.enums.OperationType;
import com.besafx.app.service.*;
import com.besafx.app.util.DateConverter;
... | 45,528 | 0.58942 | 0.588495 | 767 | 53.938721 | 39.205608 | 278 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.696219 | false | false | 7 |
7306fd5ad5c7397a2f3957172d01209c000d9b0f | 9,517,647,531,124 | 293b3bda49870cf6d8adf4297d7cd8952c816b12 | /spring-boot-amqp/src/main/java/org/windwant/spring/springbootamqp/controller/AmqpRestController.java | 06ed93a10958c09e3de3c2b8a6799df16e500dd0 | [] | no_license | lukehuang/spring-boot-service | https://github.com/lukehuang/spring-boot-service | 0e1d143a85f4362a6749463fffb17a63048cfde4 | 0147d040df65993627e2f1aae43b02182f8fac9c | refs/heads/master | 2020-09-21T04:38:44.980000 | 2019-03-08T09:39:10 | 2019-03-08T09:39:10 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.windwant.spring.springbootamqp.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.win... | UTF-8 | Java | 1,152 | java | AmqpRestController.java | Java | [
{
"context": "vice.rabbitmq.RabbitmqProducer;\n\n/**\n * Created by Administrator on 19-3-8.\n */\n@RestController\npublic class AmqpR",
"end": 415,
"score": 0.5751746296882629,
"start": 402,
"tag": "NAME",
"value": "Administrator"
}
] | null | [] | package org.windwant.spring.springbootamqp.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.win... | 1,152 | 0.638889 | 0.627604 | 34 | 32.882355 | 28.193413 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.529412 | false | false | 7 |
2bcc5e6e54186dc5529005be5f545522b7cad776 | 16,673,063,091,241 | 05df68ff3f7e59abbe7f19a8b6643ddfba10d857 | /src/main/java/com/sinkinchan/stock/sdk/source/ISourceManager.java | ca58a8be49828abc77db0d8fab2a48c53f252d94 | [] | no_license | thiagooo0/StockSdk | https://github.com/thiagooo0/StockSdk | 3a32fef8683fb16f8d643abb6ebb8c4eb789b926 | a87683a7b590d4c1f8e14779e701bfe9316b1fc4 | refs/heads/master | 2021-06-09T17:39:03.153000 | 2017-01-15T07:57:30 | 2017-01-15T07:57:30 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sinkinchan.stock.sdk.source;
import com.sinkinchan.stock.sdk.SourceManager;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import java.util.HashMap;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Created by 陈欣健 on 16/9/3.
*/
public abstract class I... | UTF-8 | Java | 2,511 | java | ISourceManager.java | Java | [
{
"context": "mport java.util.regex.Pattern;\n\n/**\n * Created by 陈欣健 on 16/9/3.\n */\npublic abstract class ISourceManag",
"end": 281,
"score": 0.9998390078544617,
"start": 278,
"tag": "NAME",
"value": "陈欣健"
}
] | null | [] | package com.sinkinchan.stock.sdk.source;
import com.sinkinchan.stock.sdk.SourceManager;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import java.util.HashMap;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* Created by 陈欣健 on 16/9/3.
*/
public abstract class I... | 2,511 | 0.536128 | 0.532535 | 79 | 30.70886 | 25.401661 | 111 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.632911 | false | false | 7 |
275f7f10a85151cd87b342f29d2b9926c6fc1e87 | 21,148,419,022,161 | e3986c0799468aadb3d289cdf12f0286a89873dc | /src/main/java/bank/system/manager/payees/domain/PayeeRepository.java | f957456186bdd7ebd8eee14fbd3e791844adf0bc | [] | no_license | Ferid0702/Bank_management_system | https://github.com/Ferid0702/Bank_management_system | c2f27d7223e4dd3ae94990cff1e6ccada60e8a7b | c6a158e9acd9f74525ace4d30550bf430e2b116d | refs/heads/master | 2023-04-11T17:15:23.188000 | 2021-06-30T19:28:59 | 2021-06-30T19:28:59 | 364,578,554 | 0 | 0 | null | false | 2021-06-30T19:29:00 | 2021-05-05T13:03:31 | 2021-05-15T10:37:17 | 2021-06-30T19:28:59 | 120 | 3 | 0 | 0 | Java | false | false | package bank.system.manager.payees.domain;
import bank.system.manager.payees.domain.model.Payee;
import bank.system.manager.shared.PostgreDbService;
import org.modelmapper.ModelMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.sql.*;
@Ser... | UTF-8 | Java | 1,899 | java | PayeeRepository.java | Java | [
{
"context": "calhost/bankdb\";\n private final String USER = \"postgres\";\n private final String PASSWORD = \"Pass1234\";",
"end": 467,
"score": 0.7760266661643982,
"start": 459,
"tag": "USERNAME",
"value": "postgres"
},
{
"context": " \"postgres\";\n private final String ... | null | [] | package bank.system.manager.payees.domain;
import bank.system.manager.payees.domain.model.Payee;
import bank.system.manager.shared.PostgreDbService;
import org.modelmapper.ModelMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.sql.*;
@Ser... | 1,901 | 0.674566 | 0.665087 | 42 | 44.214287 | 35.705498 | 190 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.047619 | false | false | 7 |
c959ecb49494ea6ca85fef157900630a1965a191 | 21,148,419,025,120 | 5c23d6703e3dbfae406315a8fe9dee997e6ec8b6 | /jhs-loan-manage/src/main/java/com/jhh/jhs/loan/manage/mapper/ReviewMapper.java | 58edc5b1ba44008d56a2f7e3c9d86dc9a20ac1ec | [] | no_license | soldiers1989/loan-uhs | https://github.com/soldiers1989/loan-uhs | 1dc4e766fce56ca21bc34e5a5b060eaf7116a8b0 | 77b06a67651898c4f1734e6c323becd0df639c22 | refs/heads/master | 2020-03-28T09:27:29.670000 | 2018-06-12T07:53:52 | 2018-06-12T07:53:52 | 148,038,503 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jhh.jhs.loan.manage.mapper;
import com.jhh.jhs.loan.entity.manager.Review;
import tk.mybatis.mapper.common.Mapper;
import java.util.List;
import java.util.Map;
public interface ReviewMapper extends Mapper<Review> {
List manualAuditReport(Map map);
List getauditsforUser(Map map);
List getManuallyRev... | UTF-8 | Java | 336 | java | ReviewMapper.java | Java | [] | null | [] | package com.jhh.jhs.loan.manage.mapper;
import com.jhh.jhs.loan.entity.manager.Review;
import tk.mybatis.mapper.common.Mapper;
import java.util.List;
import java.util.Map;
public interface ReviewMapper extends Mapper<Review> {
List manualAuditReport(Map map);
List getauditsforUser(Map map);
List getManuallyRev... | 336 | 0.785714 | 0.785714 | 17 | 18.82353 | 19.064089 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.647059 | false | false | 7 |
04243b9502e00186bc355642ea61d0025927a659 | 17,815,524,412,744 | 6ea908758e38fb6bb86377f6c5e74a873d91baf1 | /lab_2/src/main/java/golub/entity/IStudent.java | 224d2f834be8a44003f514e59d30d1fd5ee72e6c | [] | no_license | Golub3/FullJAVA | https://github.com/Golub3/FullJAVA | 25ecb7d75f81589c8ceb90fd36c3670d49de2da2 | 25a81408e346e06224dd7ffa1dab6aadab5f5134 | refs/heads/master | 2021-07-24T16:02:35.715000 | 2019-12-03T01:00:33 | 2019-12-03T01:00:33 | 225,500,786 | 0 | 0 | null | false | 2020-10-13T17:55:21 | 2019-12-03T01:12:27 | 2019-12-03T01:16:58 | 2020-10-13T17:55:20 | 50 | 0 | 0 | 5 | Java | false | false | package golub.entity;
public interface IStudent {
String getName();
int getCourse();
String getIndNumber();
void setName(String name);
void setCourse(int course);
void setIndNumber(String indNumber);
}
| UTF-8 | Java | 230 | java | IStudent.java | Java | [] | null | [] | package golub.entity;
public interface IStudent {
String getName();
int getCourse();
String getIndNumber();
void setName(String name);
void setCourse(int course);
void setIndNumber(String indNumber);
}
| 230 | 0.686957 | 0.686957 | 13 | 16.692308 | 13.941552 | 40 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.538462 | false | false | 7 |
b167a693b7eb9472aa7d204df6a159a11a62c6c5 | 10,969,346,534,780 | ed4d2df180a5e1ed09f83d1e9ba832b4197495eb | /myllah/myllah/src/com/capstonedesign/myllah/MsgString.java | 46823334591c8784771490857cc77461547c2703 | [] | no_license | scubedoo187/myllah | https://github.com/scubedoo187/myllah | cbb16c786cae5990b6d307e26bbdcdf597a40a87 | 8f52117dd3f1b57123d10337abf31704b8055b26 | refs/heads/master | 2021-05-28T08:39:17.334000 | 2014-12-11T04:50:45 | 2014-12-11T04:50:45 | 26,395,761 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.capstonedesign.myllah;
import java.io.Serializable;
public class MsgString implements Serializable{
private static final long serialVersionUID = 1L;
private static String threadStr;
private static String activityStr;
private static boolean newActivityStr;
private static boolean newThreadStr;
publi... | UTF-8 | Java | 899 | java | MsgString.java | Java | [] | null | [] | package com.capstonedesign.myllah;
import java.io.Serializable;
public class MsgString implements Serializable{
private static final long serialVersionUID = 1L;
private static String threadStr;
private static String activityStr;
private static boolean newActivityStr;
private static boolean newThreadStr;
publi... | 899 | 0.733037 | 0.731924 | 46 | 18.543478 | 14.93858 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.630435 | false | false | 7 |
d3d162922b7ee11e949fe4243f357cb1e63090e9 | 11,175,504,967,414 | a8d483c392a16217d241af57bd4cf01b521e1229 | /src/main/java/java1702/javase/reflect/demo/b/Service.java | ad8f8816534f4aae19ab109ca536af3d92bf082f | [] | no_license | thu/JavaSE_20171 | https://github.com/thu/JavaSE_20171 | 00ef0d48699e97384d4c533337d3746a129c8608 | 7adadfdf59ab790e7f48f14a60480ca211b4f8f4 | refs/heads/master | 2020-02-27T05:11:04.102000 | 2017-05-13T02:51:19 | 2017-05-13T02:51:19 | 84,039,986 | 5 | 5 | null | null | null | null | null | null | null | null | null | null | null | null | null | package java1702.javase.reflect.demo.b;
/**
* Created by mingfei.net@gmail.com
* 5/5/17 09:41
* https://github.com/thu/JavaSE_20171
*/
// 强耦合 -> 松散耦合 解耦合
public class Service {
private DeviceWriter deviceWriter;
// public Service(DeviceWriter deviceWriter) {
// this.deviceWriter = deviceWriter;
// ... | UTF-8 | Java | 528 | java | Service.java | Java | [
{
"context": "java1702.javase.reflect.demo.b;\n\n/**\n * Created by mingfei.net@gmail.com\n * 5/5/17 09:41\n * https://github.com/thu/JavaSE_",
"end": 80,
"score": 0.9999238848686218,
"start": 59,
"tag": "EMAIL",
"value": "mingfei.net@gmail.com"
},
{
"context": "t@gmail.com\n * 5/5/1... | null | [] | package java1702.javase.reflect.demo.b;
/**
* Created by <EMAIL>
* 5/5/17 09:41
* https://github.com/thu/JavaSE_20171
*/
// 强耦合 -> 松散耦合 解耦合
public class Service {
private DeviceWriter deviceWriter;
// public Service(DeviceWriter deviceWriter) {
// this.deviceWriter = deviceWriter;
// }
publ... | 514 | 0.663386 | 0.629921 | 24 | 20.166666 | 18.87385 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.208333 | false | false | 7 |
a608fe46a38b33de71c6e5a8982a712b5bbbd6ba | 29,317,446,814,638 | 2a3c46c64cd0276febade763fc5a0cca10524afe | /hoho130/src/main/java/com/hotel/kg/employee/service/IMngNoticeSvc.java | 4a314147eb0c65dabb4699cd74949c5500e1b900 | [] | no_license | hisynn/kgHotel | https://github.com/hisynn/kgHotel | 8c674f28151308858fe994a5a137c229021c087f | 3fdcabb2c00494ee9ee7c98cc958673fc282a474 | refs/heads/master | 2022-11-27T23:04:44.345000 | 2020-12-03T01:35:19 | 2020-12-03T01:35:19 | 254,589,737 | 0 | 0 | null | false | 2022-11-16T08:28:14 | 2020-04-10T08:59:14 | 2020-12-03T01:38:05 | 2022-11-16T08:28:11 | 201,178 | 0 | 0 | 10 | CSS | false | false | package com.hotel.kg.employee.service;
import org.springframework.ui.Model;
import com.hotel.kg.employee.dto.NoticeDto;
public interface IMngNoticeSvc {
String noticeSltMulti(Model model, int pageNum);
String insert(Model model, NoticeDto dto);
String update(Model model, NoticeDto dto);
String delete(Model m... | UTF-8 | Java | 418 | java | IMngNoticeSvc.java | Java | [] | null | [] | package com.hotel.kg.employee.service;
import org.springframework.ui.Model;
import com.hotel.kg.employee.dto.NoticeDto;
public interface IMngNoticeSvc {
String noticeSltMulti(Model model, int pageNum);
String insert(Model model, NoticeDto dto);
String update(Model model, NoticeDto dto);
String delete(Model m... | 418 | 0.772727 | 0.772727 | 16 | 25.125 | 22.519089 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.4375 | false | false | 7 |
dbf04ec92fb87c4ac2a8d7ff182a05ef24ef5003 | 8,521,215,166,360 | 2c8ca6c658a55fb71b0569cacb1fbb6833953540 | /connectED/src/communication/ChatController.java | c75bca9cf788bc2fb48055742ab6cbff8b9472c3 | [] | no_license | snolbo/connectED | https://github.com/snolbo/connectED | 6571ebccd1b727ee3fbe8faacc98c1b044a7913d | 28a3a58fafed68c12dfde5cb7f13af9fd7a491b3 | refs/heads/master | 2021-03-24T10:17:38.885000 | 2017-04-24T16:47:11 | 2017-04-24T16:47:11 | 79,563,280 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package communication;
import java.io.IOException;
import org.w3c.dom.Document;
import T2.ServerRequest;
import javafx.application.Platform;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.scene.Node;
import javafx.scene.control.Label;
import javafx.scene.control.ListView;
import javafx.scene.... | UTF-8 | Java | 5,878 | java | ChatController.java | Java | [] | null | [] | package communication;
import java.io.IOException;
import org.w3c.dom.Document;
import T2.ServerRequest;
import javafx.application.Platform;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.scene.Node;
import javafx.scene.control.Label;
import javafx.scene.control.ListView;
import javafx.scene.... | 5,878 | 0.749745 | 0.747363 | 202 | 28.09901 | 28.76656 | 134 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.767327 | false | false | 7 |
371fa5b466c07378b6e4b47333f239542e3f5c15 | 26,637,387,223,819 | 25f1b866ca5cbc2ca74bc75571bb83680d40689e | /src/main/java/it/polimi/ingsw/model/token/SoloToken.java | 1a2e1c4730e61022ff967b4fe1b55a803b66dc25 | [] | no_license | redaellimattia/Progetto-SWE-2021 | https://github.com/redaellimattia/Progetto-SWE-2021 | e2fb20dbfe919fc8d82aa2e768b00c4f24979d9b | d42e9e774e6eea630120c58b22a7b8bb21cf18ab | refs/heads/main | 2023-06-05T23:33:25.458000 | 2021-07-01T17:23:02 | 2021-07-01T17:23:02 | 344,041,571 | 0 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package it.polimi.ingsw.model.token;
import it.polimi.ingsw.model.Game;
import it.polimi.ingsw.model.PlayerDashboard;
import it.polimi.ingsw.network.server.Observer;
public interface SoloToken {
/**
* Executes the action represented by the token
* @param player Lorenzo's dashboard
* @param game th... | UTF-8 | Java | 469 | java | SoloToken.java | Java | [
{
"context": "tion represented by the token\n * @param player Lorenzo's dashboard\n * @param game the current Game o",
"end": 286,
"score": 0.8682205080986023,
"start": 279,
"tag": "NAME",
"value": "Lorenzo"
}
] | null | [] | package it.polimi.ingsw.model.token;
import it.polimi.ingsw.model.Game;
import it.polimi.ingsw.model.PlayerDashboard;
import it.polimi.ingsw.network.server.Observer;
public interface SoloToken {
/**
* Executes the action represented by the token
* @param player Lorenzo's dashboard
* @param game th... | 469 | 0.735608 | 0.735608 | 16 | 28.3125 | 21.996359 | 72 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4375 | false | false | 7 |
2986607f528c58c2a92d7b064a0e639e758b8265 | 31,928,786,879,194 | 993cf1cbae4896a0f15fd1ab85751bfeb9119e5c | /src/hvv_admin4/panels/PanelPuffMessage.java | cec7174b47a7131062c2e50df38a64ca4d7ba408 | [] | no_license | BelousovYaroslav/HVV4_Admin | https://github.com/BelousovYaroslav/HVV4_Admin | 52d1d580f405ea3dfdf9c7ec7402c6f19a945b07 | cfde9e50edd9e9259cf18e046e065bac139251c0 | refs/heads/master | 2021-01-17T21:17:05.360000 | 2018-03-02T11:30:48 | 2018-03-02T11:30:48 | 84,172,329 | 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 hvv_admin4.panels;
import hvv_admin4.HVV_Admin4;
import hvv_admin4.HVV_Admin4Constants;
import hvv_admin4.steps.info.TechProce... | UTF-8 | Java | 19,001 | java | PanelPuffMessage.java | Java | [
{
"context": "import org.apache.log4j.Logger;\n\n/**\n *\n * @author yaroslav\n */\npublic class PanelPuffMessage extends javax.s",
"end": 547,
"score": 0.949449896812439,
"start": 539,
"tag": "USERNAME",
"value": "yaroslav"
}
] | 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 hvv_admin4.panels;
import hvv_admin4.HVV_Admin4;
import hvv_admin4.HVV_Admin4Constants;
import hvv_admin4.steps.info.TechProce... | 19,001 | 0.567587 | 0.546929 | 386 | 45.150261 | 32.756889 | 134 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.746114 | false | false | 7 |
867634c90ca5ec7819d14617de55ebb5a62f32a2 | 23,476,291,280,252 | d403bccc0ca0bb904ffe891933556b65862f34cb | /learn-parent/learn-domain/src/main/java/com/baidu/rigel/mdm/utils/ReflectionUtils.java | efb42da40f596699f532aef53f851754f955b0a3 | [] | no_license | suwei1979/learn | https://github.com/suwei1979/learn | c60a55e4d25c49cb625e2715b8e592b035bc4bf6 | 33d46776a85abe42c276aa3f82aaa94a012bb0e7 | refs/heads/master | 2023-01-05T08:40:18.897000 | 2019-03-14T05:42:25 | 2019-03-14T05:42:27 | 45,610,667 | 1 | 0 | null | false | 2023-01-04T21:41:12 | 2015-11-05T12:45:47 | 2019-03-14T05:42:42 | 2023-01-04T21:41:08 | 2,765 | 1 | 0 | 42 | Java | false | false | /*
* Copyright (C) 2018 suwei1979@139.com. All Rights Reserved.
*/
package com.baidu.rigel.mdm.utils;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Modifier;
import java.lang.reflect.UndeclaredThrowableException;
... | UTF-8 | Java | 10,691 | java | ReflectionUtils.java | Java | [
{
"context": "/*\n * Copyright (C) 2018 suwei1979@139.com. All Rights Reserved.\n */\npackage com.baidu.rigel",
"end": 42,
"score": 0.9998908638954163,
"start": 25,
"tag": "EMAIL",
"value": "suwei1979@139.com"
},
{
"context": ".Slf4j;\n\n/**\n * Reflection Utilities\n *\n * @author s... | null | [] | /*
* Copyright (C) 2018 <EMAIL>. All Rights Reserved.
*/
package com.baidu.rigel.mdm.utils;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Modifier;
import java.lang.reflect.UndeclaredThrowableException;
import lom... | 10,681 | 0.644342 | 0.643025 | 280 | 36.967857 | 33.850021 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.382143 | false | false | 7 |
575bf09da521eb351da0a701fd371976b6e2c5e8 | 23,948,737,667,912 | a565c7d924132d5646476d5ee2c43cf6d2445bba | /src/com/dyy/lookxinwens/activity/MainActivity.java | 6e48855f0973ca118936c21d9493911c63c32a2f | [] | no_license | yemeihanxing/dyy_lookxinwen | https://github.com/yemeihanxing/dyy_lookxinwen | b6148adcbbe4e8b384f9c98dc97feb9acc6542bf | d3bbbe62f08d2e33960bbaf47d65767c974556d6 | refs/heads/master | 2021-01-20T21:00:20.504000 | 2016-07-18T02:29:03 | 2016-07-18T02:31:21 | 63,503,746 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dyy.lookxinwens.activity;
import com.dyy.lookxinwens.R;
import android.app.Activity;
import android.os.Bundle;
/** *
@author 作者 :dyy
@date 创建时间:2016年7月17日 下午12:06:03
@描述
*/
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceSt... | UTF-8 | Java | 486 | java | MainActivity.java | Java | [
{
"context": "mport android.os.Bundle;\r\n\r\n/** * \r\n @author 作者 :dyy\r\n @date 创建时间:2016年7月17日 下午12:06:03\r\n @描述\r\n */\r\np",
"end": 162,
"score": 0.999610185623169,
"start": 159,
"tag": "USERNAME",
"value": "dyy"
}
] | null | [] | package com.dyy.lookxinwens.activity;
import com.dyy.lookxinwens.R;
import android.app.Activity;
import android.os.Bundle;
/** *
@author 作者 :dyy
@date 创建时间:2016年7月17日 下午12:06:03
@描述
*/
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceSt... | 486 | 0.703057 | 0.674672 | 24 | 17.083334 | 17.442564 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 7 |
0a398d6839df7db3350e308e2780daad1885321c | 9,629,316,724,974 | 4de029353f8d822c21c47badcb596aad88bf4926 | /Amazon伺服器/sourcecode/titanservice/titanservice/src/com/titan/base/account/exception/ValidationCodeException.java | 9737d436576aaa23e105b89cc277111ff40ba225 | [] | no_license | xelalee/titanGit | https://github.com/xelalee/titanGit | bdd7377bd4925a0c609afb97dc8cb6b09b704aa8 | ce4c2d996d5113905ff6341f311473993cce455e | refs/heads/master | 2021-01-01T06:17:09.088000 | 2015-02-07T17:43:37 | 2015-02-07T17:43:37 | 16,201,210 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.titan.base.account.exception;
import com.titan.base.app.exception.ModelException;
public class ValidationCodeException extends ModelException{
public ValidationCodeException(){
super("ValidationCodeException");
}
}
| UTF-8 | Java | 245 | java | ValidationCodeException.java | Java | [] | null | [] | package com.titan.base.account.exception;
import com.titan.base.app.exception.ModelException;
public class ValidationCodeException extends ModelException{
public ValidationCodeException(){
super("ValidationCodeException");
}
}
| 245 | 0.779592 | 0.779592 | 10 | 22.5 | 22.817757 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.8 | false | false | 7 |
424fc1be4606fbbab9b9f9938c2cdedb0c9732e0 | 19,550,691,175,155 | fba2092bf9c8df1fb6c053792c4932b6de017ceb | /wms/WEB-INF/src/jp/co/daifuku/pcart/base/rft/RftId5022.java | d0c528bcca2746d197a403c192e5aca95b51a6b4 | [] | no_license | FlashChenZhi/exercise | https://github.com/FlashChenZhi/exercise | 419c55c40b2a353e098ce5695377158bd98975d3 | 51c5f76928e79a4b3e1f0d68fae66ba584681900 | refs/heads/master | 2020-04-04T03:23:44.912000 | 2018-11-01T12:36:21 | 2018-11-01T12:36:21 | 155,712,318 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | // $Id: RftId5022.java 4181 2009-04-21 00:14:17Z rnakai $
package jp.co.daifuku.pcart.base.rft;
import jp.co.daifuku.wms.base.communication.rft.SendIdMessage;
/*
* Copyright(c) 2000-2007 DAIFUKU Co.,Ltd. All Rights Reserved.
*
* This software is the proprietary information of DAIFUKU Co.,Ltd.
* Use is subject to ... | UTF-8 | Java | 8,172 | java | RftId5022.java | Java | [
{
"context": "// $Id: RftId5022.java 4181 2009-04-21 00:14:17Z rnakai $\npackage jp.co.daifuku.pcart.base.rft;\n\nimport j",
"end": 55,
"score": 0.9981825947761536,
"start": 49,
"tag": "USERNAME",
"value": "rnakai"
},
{
"context": ":14:17 +0900 (火, 21 4 2009) $\n * @author $Author: ... | null | [] | // $Id: RftId5022.java 4181 2009-04-21 00:14:17Z rnakai $
package jp.co.daifuku.pcart.base.rft;
import jp.co.daifuku.wms.base.communication.rft.SendIdMessage;
/*
* Copyright(c) 2000-2007 DAIFUKU Co.,Ltd. All Rights Reserved.
*
* This software is the proprietary information of DAIFUKU Co.,Ltd.
* Use is subject to ... | 8,172 | 0.443135 | 0.422469 | 251 | 27.7251 | 27.815845 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.203187 | false | false | 7 |
4c8e3a6139b6782fc1c61431ae30a7e11066c705 | 18,528,488,963,552 | d6f2740bd9a0149753ce7bb5df7297f3e407c9c6 | /app/src/main/java/anh/nguyen/messageparser/di/RootModule.java | d04acdfbf0c80f3f5341c6790b3e399897637c49 | [] | no_license | anhhnguyen206/message-parser-android | https://github.com/anhhnguyen206/message-parser-android | 36719f960bf51b4892889e42801c37e1711a926f | 455d04bc058570cfe411a51b9a9c096da5ef7117 | refs/heads/master | 2020-04-01T07:07:33.032000 | 2015-09-03T05:15:35 | 2015-09-03T05:15:35 | 41,042,132 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package anh.nguyen.messageparser.di;
import android.content.Context;
import android.view.LayoutInflater;
import javax.inject.Singleton;
import anh.nguyen.messageparser.App;
import dagger.Module;
import dagger.Provides;
/**
* Created by nguyenhoanganh on 8/19/15.
*/
@Module(
injects = App.class,
li... | UTF-8 | Java | 745 | java | RootModule.java | Java | [
{
"context": "Module;\nimport dagger.Provides;\n\n/**\n * Created by nguyenhoanganh on 8/19/15.\n */\n@Module(\n injects = App.cl",
"end": 255,
"score": 0.9996824264526367,
"start": 241,
"tag": "USERNAME",
"value": "nguyenhoanganh"
}
] | null | [] | package anh.nguyen.messageparser.di;
import android.content.Context;
import android.view.LayoutInflater;
import javax.inject.Singleton;
import anh.nguyen.messageparser.App;
import dagger.Module;
import dagger.Provides;
/**
* Created by nguyenhoanganh on 8/19/15.
*/
@Module(
injects = App.class,
li... | 745 | 0.685906 | 0.679195 | 38 | 18.605263 | 15.858817 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.342105 | false | false | 7 |
869e3bdc801c76aa0592601efa94f3715ff26e11 | 28,484,223,161,646 | 0b6dd6b99a3a791c7724ffb2e08f4c284ff875c1 | /app/src/main/java/com/clsroom/model/Notifications.java | 3c43aa27c0575da4fc22c933eab8ff2ff218f44e | [] | no_license | saleemkhan08/ClsroomAqua | https://github.com/saleemkhan08/ClsroomAqua | 06a034572209d02b91729c391db3b83d594c3e24 | 4bb9cd3223803da4b2ab8ae13af9e7305e0d7873 | refs/heads/master | 2021-07-24T08:40:01.420000 | 2017-11-05T05:52:49 | 2017-11-05T05:52:49 | 107,635,883 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.clsroom.model;
import android.os.Parcel;
import android.os.Parcelable;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Locale;
import static com.clsroom.dialogs.MonthYearPickerDialog.MONTH_ARRAY;
import static com.clsroom.model.Notes.AM_PM;
... | UTF-8 | Java | 4,780 | java | Notifications.java | Java | [
{
"context": " public static final String SENDER_NAME = \"senderName\";\n public static final String SENDER_PHOTO_URL",
"end": 843,
"score": 0.6895769834518433,
"start": 839,
"tag": "USERNAME",
"value": "Name"
}
] | null | [] | package com.clsroom.model;
import android.os.Parcel;
import android.os.Parcelable;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Locale;
import static com.clsroom.dialogs.MonthYearPickerDialog.MONTH_ARRAY;
import static com.clsroom.model.Notes.AM_PM;
... | 4,780 | 0.62092 | 0.619456 | 196 | 23.387754 | 21.595839 | 107 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.372449 | false | false | 7 |
30709c95d86504f54e5d9138e62f7e9ab7ce46c9 | 14,955,076,177,399 | 49d3a1fe0af20855dde9036ac3fb3995942613d5 | /src/main/java/Tree/MinDiffBetweenNodes.java | 5451b3dd92306ab6795b7cbfdbc5fd9047021ccc | [] | no_license | nieschumi/xuexi | https://github.com/nieschumi/xuexi | 626f759ab8328b137fec0e79a7ab3e6768844610 | 3f4aec59efee906733036d2eeb878d8f2b77950f | refs/heads/master | 2018-12-22T01:52:35.980000 | 2018-12-20T19:09:59 | 2018-12-20T19:09:59 | 149,855,859 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Tree;
import Util.TreeNode;
public class MinDiffBetweenNodes {
/**
* Given a Binary Search Tree (BST) with the root node root,
* return the minimum difference between the values of any two different nodes in the tree.
*
*/
public int minDiffInBST(TreeNode root) {
if (root ... | UTF-8 | Java | 951 | java | MinDiffBetweenNodes.java | Java | [] | null | [] | package Tree;
import Util.TreeNode;
public class MinDiffBetweenNodes {
/**
* Given a Binary Search Tree (BST) with the root node root,
* return the minimum difference between the values of any two different nodes in the tree.
*
*/
public int minDiffInBST(TreeNode root) {
if (root ... | 951 | 0.536898 | 0.527273 | 38 | 23.605263 | 22.689598 | 95 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.605263 | false | false | 7 |
bb09ba430e85e4f232f96bd0ac4c7da9e0191a27 | 9,457,518,031,846 | 6e56605a12d58819a60f4bb87a3a690565703513 | /knowgate-stripes/src/main/java/com/knowgate/stripes/CachingFilter.java | a80c6727e8fb2b7949efaa765ac4d01eb89c7566 | [] | no_license | sergiomt/knowgate8 | https://github.com/sergiomt/knowgate8 | d8d4aedee3993ffa4dc572e7062dbf5bdd5a3987 | 0b6d06bf06731e4c73db2bc91ae9e14c58596b6b | refs/heads/master | 2016-09-19T10:53:40.919000 | 2016-08-21T13:52:10 | 2016-08-21T13:52:10 | 66,164,168 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.knowgate.stripes;
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRes... | UTF-8 | Java | 1,058 | java | CachingFilter.java | Java | [
{
"context": "t.http.HttpServletResponse;\r\n\r\n/**\r\n *\r\n * @author Sergio Montoro Ten\r\n */\r\npublic class CachingFilter implements Filter ",
"end": 368,
"score": 0.9820418953895569,
"start": 350,
"tag": "NAME",
"value": "Sergio Montoro Ten"
}
] | null | [] | package com.knowgate.stripes;
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRes... | 1,046 | 0.730624 | 0.722117 | 37 | 26.648649 | 28.327444 | 132 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.540541 | false | false | 7 |
8ca6a25a9b8e54da9a5151fc8565461a0eb8a8f8 | 13,623,636,317,182 | 061e63d9957d683c197c837cd30b9b589eb5700e | /client/clientEJB/ejbs/src/main/java/local/gerb/ClientImpl.java | f442792ddb575b8efafab29127468064f45313bb | [] | no_license | jstralko/tomee-poc | https://github.com/jstralko/tomee-poc | 6ead00b85162d02801694c45aa9a97ef374c171e | 230cddcdca8a9b8ba11ccdaf9145cd977a50677d | refs/heads/master | 2020-04-23T06:06:57.429000 | 2019-03-04T20:40:50 | 2019-03-04T20:40:50 | 170,962,468 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package local.gerb;
import javax.annotation.PostConstruct;
import javax.ejb.EJBException;
import javax.ejb.Stateless;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import java.util.Properties;
import javax.naming.*;
@Stateless
public class ClientImpl {
Hell... | UTF-8 | Java | 1,025 | java | ClientImpl.java | Java | [
{
"context": ";\n p.put(Context.PROVIDER_URL, \"http://172.17.0.2:8080/tomee/ejb\");\n \n Initia",
"end": 685,
"score": 0.999530017375946,
"start": 675,
"tag": "IP_ADDRESS",
"value": "172.17.0.2"
}
] | null | [] | package local.gerb;
import javax.annotation.PostConstruct;
import javax.ejb.EJBException;
import javax.ejb.Stateless;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import java.util.Properties;
import javax.naming.*;
@Stateless
public class ClientImpl {
Hell... | 1,025 | 0.630244 | 0.619512 | 41 | 24 | 22.982496 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.512195 | false | false | 7 |
1adda554157336b94d8545c83df3acc505a0699d | 20,306,605,437,969 | 4c3ba6c6537221a815b610007486cdcd74227e7a | /AliKafkaDemo/src/main/java/com/danhesoft/config/KafkaConfig.java | b725969dea0bed43a5c0375fa119223050b3cdca | [] | no_license | cw370008359/message_queue | https://github.com/cw370008359/message_queue | 646df1010fe8e87fcecdab34d895e9686b8b37c6 | cc3c89e5217c9ba1e6a8dfbfc5a834d488659201 | refs/heads/master | 2020-03-12T19:20:05.391000 | 2018-04-24T03:32:07 | 2018-04-24T03:32:07 | 130,658,947 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.danhesoft.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
/**
* Created by caowei on 2018/4/23.
*/
@Component
@ConfigurationProperties(prefix = "alikafka")
public class KafkaConfig {
private String bootstrap_servers... | UTF-8 | Java | 1,510 | java | KafkaConfig.java | Java | [
{
"context": "framework.stereotype.Component;\n\n/**\n * Created by caowei on 2018/4/23.\n */\n@Component\n@ConfigurationProper",
"end": 180,
"score": 0.9996378421783447,
"start": 174,
"tag": "USERNAME",
"value": "caowei"
}
] | null | [] | package com.danhesoft.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
/**
* Created by caowei on 2018/4/23.
*/
@Component
@ConfigurationProperties(prefix = "alikafka")
public class KafkaConfig {
private String bootstrap_servers... | 1,510 | 0.692053 | 0.687417 | 58 | 25.034483 | 24.769257 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.310345 | false | false | 7 |
e6f2e06614cdb897c27c5c676a43ca1f23e92dfe | 21,844,203,690,784 | a4254640bc1f2fa4ad550e94955ef90e5c102d0a | /ch5/src/main/java/com/pengjinfei/concurrence/cache/Memoizer3.java | f5c08e871df25e9f98f82908e9c16aa0e2b10a3e | [] | no_license | pengjinfei/concurrence-learning | https://github.com/pengjinfei/concurrence-learning | 43886e6e60820461b575e318713349ebccfc0280 | 4570832d612d813c74d54d363a1c083dd20f8d49 | refs/heads/master | 2020-05-21T08:50:21.152000 | 2016-10-22T06:44:32 | 2016-10-22T06:44:32 | 69,266,058 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.pengjinfei.concurrence.cache;
import com.pengjinfei.concurrence.ExceptionUtils;
import java.util.Map;
import java.util.concurrent.*;
/**
* Created by Pengjinfei on 16/9/26.
* Description:
*/
public class Memoizer3<A,V> implements Computable<A,V> {
private final Map<A, Future<V>> cache = new Concu... | UTF-8 | Java | 1,204 | java | Memoizer3.java | Java | [
{
"context": "\nimport java.util.concurrent.*;\n\n/**\n * Created by Pengjinfei on 16/9/26.\n * Description:\n */\npublic class Memo",
"end": 176,
"score": 0.9883782863616943,
"start": 166,
"tag": "USERNAME",
"value": "Pengjinfei"
}
] | null | [] | package com.pengjinfei.concurrence.cache;
import com.pengjinfei.concurrence.ExceptionUtils;
import java.util.Map;
import java.util.concurrent.*;
/**
* Created by Pengjinfei on 16/9/26.
* Description:
*/
public class Memoizer3<A,V> implements Computable<A,V> {
private final Map<A, Future<V>> cache = new Concu... | 1,204 | 0.536878 | 0.530875 | 46 | 24.347826 | 20.384583 | 82 | true | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 7 |
baa23f1eea2a7ccdcee5054092c9f5074bdd6d8e | 4,226,247,889,300 | 7d6dae07dfad47fc365bd1bac214f9d14cb4c564 | /src/BirdShape.java | 80b846a913c27283032254d4bbe297df85f99cc6 | [] | no_license | cdjordan29/multi-shape-test | https://github.com/cdjordan29/multi-shape-test | 2603c59e0e87ff89bd20b2183bf54d777d6c5b5d | 4cdfa31ea261880fee534a639cec8052f904ef0b | refs/heads/master | 2021-05-12T17:01:35.782000 | 2018-01-11T01:41:56 | 2018-01-11T01:41:56 | 117,034,316 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
import java.awt.*;
import java.awt.geom.*;
import java.util.*;
/**
A car that can be moved around.
*/
public class BirdShape implements MoveableShape
{
private int x;
private int y;
private int width;
/**
Constructs a car item.
@param x the left of the bounding rectangle
@param y the top of ... | UTF-8 | Java | 1,439 | java | BirdShape.java | Java | [] | null | [] |
import java.awt.*;
import java.awt.geom.*;
import java.util.*;
/**
A car that can be moved around.
*/
public class BirdShape implements MoveableShape
{
private int x;
private int y;
private int width;
/**
Constructs a car item.
@param x the left of the bounding rectangle
@param y the top of ... | 1,439 | 0.648367 | 0.627519 | 75 | 18.16 | 20.21817 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.586667 | false | false | 7 |
9d7a2dc01c882a698b144eac88ad87b0808ea258 | 25,786,983,702,677 | bd2853f19e48a4464a08ced57c3bfe1f989aba19 | /src/com/csei/database/entity/Transport.java | 33a0a1db5c43ed933711159f47e9b57a2ed03cc0 | [] | no_license | xiaozhujun/DevicesManagement | https://github.com/xiaozhujun/DevicesManagement | 3a1d38b964152fb5b46b47ee1153f5e9abe41e52 | bb8cb2a95fe8994846586ab2a5fb7036fbb42f65 | refs/heads/master | 2016-08-02T22:23:11.588000 | 2015-01-22T08:48:01 | 2015-01-22T08:48:01 | 26,259,422 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.csei.database.entity;
public class Transport {
private int id;
private int userId;
private String driver;
private String telephone;
private String destination;
private String address;
private int deviceId;
private int upLoadFlag;
private String image;
public String getImage() {
... | UTF-8 | Java | 1,422 | java | Transport.java | Java | [] | null | [] | package com.csei.database.entity;
public class Transport {
private int id;
private int userId;
private String driver;
private String telephone;
private String destination;
private String address;
private int deviceId;
private int upLoadFlag;
private String image;
public String getImage() {
... | 1,422 | 0.684248 | 0.684248 | 76 | 16.710526 | 13.547981 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.552632 | false | false | 7 |
c8ec13bf1d3d5ea02e637bf28737662d8590a66f | 188,978,569,726 | e787c556a822380e6a9d1fe9dd162fac288684f3 | /integrations/spark/spark-validate-cleanse/spark-validate-cleanse-core/src/main/java/com/thinkbiganalytics/spark/datavalidator/functions/SumPartitionLevelCounts.java | f3df6430f418243738e065fe6302d29909a1386c | [
"WTFPL",
"CDDL-1.0",
"MIT",
"CC0-1.0",
"EPL-1.0",
"PostgreSQL",
"BSD-3-Clause",
"LGPL-2.1-only",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"LicenseRef-scancode-protobuf",
"OFL-1.1"
] | permissive | rohituppalapati/kylo-source | https://github.com/rohituppalapati/kylo-source | 82bd8e788a14a33edcff8ac6306245c230e90665 | cc794fb8a128a1bb6453e029ab7f6354e75c863e | refs/heads/master | 2022-12-28T08:14:32.280000 | 2019-08-13T18:16:31 | 2019-08-13T18:16:31 | 200,886,840 | 0 | 0 | Apache-2.0 | false | 2022-12-16T03:26:58 | 2019-08-06T16:23:27 | 2019-08-13T18:17:00 | 2022-12-16T03:26:56 | 13,781 | 0 | 0 | 15 | Java | false | false | package com.thinkbiganalytics.spark.datavalidator.functions;
/*-
* #%L
* kylo-spark-validate-cleanse-app
* %%
* Copyright (C) 2017 ThinkBig Analytics
* %%
* 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... | UTF-8 | Java | 1,236 | java | SumPartitionLevelCounts.java | Java | [] | null | [] | package com.thinkbiganalytics.spark.datavalidator.functions;
/*-
* #%L
* kylo-spark-validate-cleanse-app
* %%
* Copyright (C) 2017 ThinkBig Analytics
* %%
* 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... | 1,236 | 0.690939 | 0.682039 | 40 | 29.9 | 28.66688 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.375 | false | false | 7 |
c7fca00143d07f331742e07228a6d0df776b0c6a | 29,669,634,081,081 | b005470853163413e754390d6099b193eadd5e3f | /QueSorbeto/app/src/main/java/Data/ClienteBD.java | 1f4b192c00cff6db997c356580f98f046a8b8cb2 | [] | no_license | WendyRod/ProjectsAndroidStudio | https://github.com/WendyRod/ProjectsAndroidStudio | 5a0b43e02b10451bdafb928c6a0c6837414f8ecc | 66b2bbfa0dbf99f62c8e6be5b5e3b6f8104504f8 | refs/heads/master | 2020-04-08T00:26:56.528000 | 2018-12-07T00:41:30 | 2018-12-07T00:41:30 | 156,784,852 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Data;
import android.provider.BaseColumns;
public class ClienteBD {
public ClienteBD() {
}
public static abstract class ClienteInfo implements BaseColumns {
//Tabla de clientes
public static final String TABLE_NAME = "cliente";
public static final String NAME = "name";
... | UTF-8 | Java | 1,955 | java | ClienteBD.java | Java | [
{
"context": "ente\";\n public static final String NAME = \"name\";\n public static final String ID = \"id\";\n ",
"end": 316,
"score": 0.7982012033462524,
"start": 312,
"tag": "NAME",
"value": "name"
}
] | null | [] | package Data;
import android.provider.BaseColumns;
public class ClienteBD {
public ClienteBD() {
}
public static abstract class ClienteInfo implements BaseColumns {
//Tabla de clientes
public static final String TABLE_NAME = "cliente";
public static final String NAME = "name";
... | 1,955 | 0.586189 | 0.586189 | 50 | 38.099998 | 29.000172 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.52 | false | false | 7 |
7ec239d2a1b60fa8afe75cd7bbc2864af0b8b6ec | 29,661,044,214,165 | 9ebaf1af2c20b3fa94280ef015d2cd5e1b66908e | /app/src/main/java/cn/okclouder/ovc/frag/explore/ExploreTopicFragment.java | 2a13d37e9d64f9034a8efa20a050f3a80ce0d5de | [] | no_license | caoshen/agg | https://github.com/caoshen/agg | d955b2c44965ff20870dcf291caae1d7de7a48ed | de45235a151fdccc9457c78db67206471f428c65 | refs/heads/master | 2020-05-26T07:09:16.134000 | 2019-09-14T15:49:40 | 2019-09-14T15:49:40 | 82,469,067 | 0 | 0 | null | false | 2018-04-21T10:32:55 | 2017-02-19T15:33:20 | 2017-02-22T15:59:41 | 2018-04-21T10:32:54 | 1,163 | 0 | 0 | 0 | Java | false | null | package cn.okclouder.ovc.frag.explore;
import android.content.Context;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.text.TextUtils;
import android.widget.ImageView;
import java.util.ArrayList;
import java.util.List;
import cn.okclouder.library.util.ImageLoader;
import cn.okclouder... | UTF-8 | Java | 4,088 | java | ExploreTopicFragment.java | Java | [] | null | [] | package cn.okclouder.ovc.frag.explore;
import android.content.Context;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.text.TextUtils;
import android.widget.ImageView;
import java.util.ArrayList;
import java.util.List;
import cn.okclouder.library.util.ImageLoader;
import cn.okclouder... | 4,088 | 0.662427 | 0.661693 | 145 | 27.193104 | 23.289274 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.524138 | false | false | 7 |
c6204d7384c9f44e53c2f912da1165a02472d781 | 33,088,428,053,478 | 0192dc0d230445a07269525b6e28f694498007f1 | /src/main/java/com/lab4/MultiArrayDemo2.java | 8535199e61b96498b4da3196f1c99470a85baa8f | [] | no_license | jtlai0921/NewJava | https://github.com/jtlai0921/NewJava | 05dc3153be7eeae5040e63b6c087f7f69a18265d | 2479d6b59775f196a2270a67da2f03bbc82da361 | refs/heads/master | 2022-09-25T00:21:34.707000 | 2020-01-29T12:51:57 | 2020-01-29T12:51:57 | 238,146,633 | 0 | 0 | null | false | 2022-09-01T23:19:39 | 2020-02-04T07:19:49 | 2020-02-04T07:20:13 | 2022-09-01T23:19:37 | 47 | 0 | 0 | 2 | Java | false | false | package com.lab4;
public class MultiArrayDemo2 {
public static void main(String[] args) {
int[][] scores = {{100, 90, 80}, {90, 70, 60}}; // 2*3
// scores[0] -> {100, 90, 80}
int sum1 = 0;
for(int x : scores[0]) {
sum1 += x;
}
System.out.printl... | UTF-8 | Java | 515 | java | MultiArrayDemo2.java | Java | [] | null | [] | package com.lab4;
public class MultiArrayDemo2 {
public static void main(String[] args) {
int[][] scores = {{100, 90, 80}, {90, 70, 60}}; // 2*3
// scores[0] -> {100, 90, 80}
int sum1 = 0;
for(int x : scores[0]) {
sum1 += x;
}
System.out.printl... | 515 | 0.417476 | 0.335922 | 20 | 23.75 | 15.501209 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.85 | false | false | 7 |
a3e7c1518c97800d04eaa85d1e5e8a2b4d096431 | 10,342,281,271,878 | ad98f98e09551642cd25830adc6e8e7526b78911 | /test-ee/src/main/java/polischukovik/aspects/LoggingQuestionRawHandlerImpl.java | 2e14ec937c6a6a3e95add286a61fcd3ff0e0fee7 | [] | no_license | polischukovik/WorkplaceRepository | https://github.com/polischukovik/WorkplaceRepository | 86e6fbcbd5ed477094b4fd45beb308fbf7ecb0bb | 0426388f351ef075c6238c748e5eaac0ddf3497f | refs/heads/master | 2021-09-14T11:23:43.076000 | 2018-05-12T18:16:23 | 2018-05-12T18:16:23 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package polischukovik.aspects;
import java.io.File;
import java.io.IOException;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.AfterThrowing;
import org.aspectj.lang.annotation.Aspect;
... | UTF-8 | Java | 1,926 | java | LoggingQuestionRawHandlerImpl.java | Java | [] | null | [] | package polischukovik.aspects;
import java.io.File;
import java.io.IOException;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.AfterThrowing;
import org.aspectj.lang.annotation.Aspect;
... | 1,926 | 0.746106 | 0.746106 | 56 | 32.392857 | 29.698292 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.589286 | false | false | 7 |
00754fff990fe23307a9a23a3cfbab930a05afc5 | 31,877,247,332,265 | fce7410ed7cdfa279f2963b63edff8d5faab295a | /PassingTwoNumbersToSecondActivity/app/src/main/java/com/example/ujjwalsmahapatra/passingtwonumberstosecondactivity/SecondActivity.java | b47b10c2f498cffa5f28bf31a14b008b4dcdf915 | [] | no_license | usmahapatra/First-Android-Apps | https://github.com/usmahapatra/First-Android-Apps | f3f4d163fffbdfa157e9f70e4264a5f73444063d | 0c91cb43a95a2cdd8f02846b82a50c288dcca8f0 | refs/heads/master | 2020-03-11T23:28:41.251000 | 2019-05-08T12:37:44 | 2019-05-08T12:37:44 | 130,322,712 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.ujjwalsmahapatra.passingtwonumberstosecondactivity;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
public class SecondActivity extends AppCompatActivity {
TextView t;
@Override
protected void on... | UTF-8 | Java | 784 | java | SecondActivity.java | Java | [
{
"context": "package com.example.ujjwalsmahapatra.passingtwonumberstosecondactivity;\n\nimport androi",
"end": 36,
"score": 0.989405632019043,
"start": 20,
"tag": "USERNAME",
"value": "ujjwalsmahapatra"
}
] | null | [] | package com.example.ujjwalsmahapatra.passingtwonumberstosecondactivity;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
public class SecondActivity extends AppCompatActivity {
TextView t;
@Override
protected void on... | 784 | 0.693878 | 0.679847 | 25 | 30.360001 | 19.299492 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.64 | false | false | 7 |
e051400a39b36b82a7cc5d38098c5c9f03de8c60 | 29,317,446,811,088 | eb7883fbd0b44d377a6197b796d6dd4d03dc3cc1 | /src/com/wzu/server/UploadServlet.java | b55cf28f4b2009686480e5015201b233b2e44bac | [] | no_license | Poreless/AndroidServlet | https://github.com/Poreless/AndroidServlet | d85d75e46ef25863f79780752e9704add22dc05e | 2fa9c4a8f5d63848a63956a85d1ee78c0c18d73c | refs/heads/master | 2020-03-17T13:24:24.625000 | 2018-05-16T07:55:51 | 2018-05-16T07:55:51 | 133,630,405 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | // Decompiled by DJ v3.10.10.93 Copyright 2007 Atanas Neshkov Date: 2018/3/21 23:42:32
// Home Page: http://members.fortunecity.com/neshkov/dj.html http://www.neshkov.com/dj.html - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name: UploadServlet.java
package com.wzu.server;
i... | UTF-8 | Java | 2,408 | java | UploadServlet.java | Java | [
{
"context": "// Decompiled by DJ v3.10.10.93 Copyright 2007 Atanas Neshkov Date: 2018/3/21 23:42:32\n// Home Page: http://me",
"end": 61,
"score": 0.999864399433136,
"start": 47,
"tag": "NAME",
"value": "Atanas Neshkov"
},
{
"context": "2:32\n// Home Page: http://members.fortunecit... | null | [] | // Decompiled by DJ v3.10.10.93 Copyright 2007 <NAME> Date: 2018/3/21 23:42:32
// Home Page: http://members.fortunecity.com/neshkov/dj.html http://www.neshkov.com/dj.html - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name: UploadServlet.java
package com.wzu.server;
import ja... | 2,400 | 0.608804 | 0.596761 | 59 | 39.830509 | 35.112484 | 192 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.525424 | false | false | 7 |
22e65615bfb05733e599298c8a06a9c6fe86de06 | 15,264,313,830,609 | 4cc8ff7000c1a07001cc780cb18959f9b0a88c35 | /VisualPerspective-3.7/src/main/java/vp3x/dialib/components/AbstractImageComponent.java | 3baf45b684cfa3c062bec6880eac7385d03da1dc | [] | no_license | ezwn/ezw.visualperspective3 | https://github.com/ezwn/ezw.visualperspective3 | 62d32e4f23c2c8e142f6ba0e5ecf22cf4cd9bb05 | 432a919b45c0f8eb02bc2d8b3af87ff08833ecc4 | refs/heads/master | 2017-12-12T16:57:58.372000 | 2017-04-12T12:46:59 | 2017-04-12T12:46:59 | 78,554,881 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package vp3x.dialib.components;
import ezw.graph2d.GraphElement;
import ezw.graph2d.engine.Graph2DDrawEngine;
import java.awt.Graphics;
import ezw.graph2d.layouts.LayoutManager;
import java.awt.Graphics2D;
import java.util.ArrayList;
import java.util.List;
import vp3x.dialib.styles.image.IImageStylable;
/*... | UTF-8 | Java | 1,450 | java | AbstractImageComponent.java | Java | [
{
"context": "tyles.image.IImageStylable;\r\n\r\n/**\r\n *\r\n * @author Nicolas Enzweiler\r\n */\r\npublic abstract class AbstractImageComponent ",
"end": 355,
"score": 0.9841123819351196,
"start": 338,
"tag": "NAME",
"value": "Nicolas Enzweiler"
}
] | null | [] | package vp3x.dialib.components;
import ezw.graph2d.GraphElement;
import ezw.graph2d.engine.Graph2DDrawEngine;
import java.awt.Graphics;
import ezw.graph2d.layouts.LayoutManager;
import java.awt.Graphics2D;
import java.util.ArrayList;
import java.util.List;
import vp3x.dialib.styles.image.IImageStylable;
/*... | 1,439 | 0.636552 | 0.628965 | 56 | 23.892857 | 21.838432 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.464286 | false | false | 7 |
b525ddba56452f1195bfe04cbd25064796345f45 | 13,761,075,284,360 | c6892a603b6f71dd97a4a1243f4e4b8f5ed41d76 | /app/src/main/java/com/example/mediaproject_agora/src/main/items/RestaurantCommentItem.java | 2ff54367d5a853165c0fb903d1e61c82146e0636 | [] | no_license | isj0217/MediaProject_Agora | https://github.com/isj0217/MediaProject_Agora | bef58543f593f05a11909fe82a3562ee419108ae | fbcad7ed3c9c38487e886c9cdeabfc63416773f8 | refs/heads/master | 2023-02-03T15:38:29.045000 | 2020-12-06T07:59:49 | 2020-12-06T07:59:49 | 311,976,216 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.mediaproject_agora.src.main.items;
public class RestaurantCommentItem {
private int is_mine;
private int comment_idx;
private String nickname;
private String time;
private String comment_content;
public int getIs_mine() {
return is_mine;
}
public void set... | UTF-8 | Java | 1,029 | java | RestaurantCommentItem.java | Java | [] | null | [] | package com.example.mediaproject_agora.src.main.items;
public class RestaurantCommentItem {
private int is_mine;
private int comment_idx;
private String nickname;
private String time;
private String comment_content;
public int getIs_mine() {
return is_mine;
}
public void set... | 1,029 | 0.620991 | 0.620991 | 51 | 19.17647 | 17.687601 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.313726 | false | false | 7 |
d75376e1b7078f5d8e04f28346798cf271193860 | 18,700,287,635,570 | fcedf03060850fab30e3ee2699948de51427370c | /src/main/java/com/test/migration/repository/AccountRepository.java | 6e62fc43fb6d82154dcaee8de4a4c366ba3349c3 | [] | no_license | Lyulie/treino-mapstruct-migration | https://github.com/Lyulie/treino-mapstruct-migration | 7ef1ce194a4523d5322256c2d1611098f27131f6 | 79945bcf5e1aa94472636f64570d9e74debbf8cf | refs/heads/main | 2023-05-26T21:07:27.893000 | 2021-06-08T23:32:31 | 2021-06-08T23:32:31 | 373,359,667 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.test.migration.repository;
import com.test.migration.model.Account;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.List;
import java.util.Optional;
@Repository
public interface AccountRepository extends JpaRepository<Accoun... | UTF-8 | Java | 446 | java | AccountRepository.java | Java | [] | null | [] | package com.test.migration.repository;
import com.test.migration.model.Account;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import java.util.List;
import java.util.Optional;
@Repository
public interface AccountRepository extends JpaRepository<Accoun... | 446 | 0.816144 | 0.816144 | 15 | 28.733334 | 25.267811 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6 | false | false | 7 |
c74b3e8f45145aa023c6299eb403cc866d6fb97a | 34,282,428,965,866 | e9e78dcd9c38819549a2de1038acb9678ec74517 | /Environments/Factory/SimpleFactoryPlayerVolume2/src/SimpleFactoryPlayer/UnitTest/SimpleFactoryPlayerSystemTest.java | ebb9da373941a5735661724280597cf3a87456a9 | [] | no_license | solversa/D-MARLA | https://github.com/solversa/D-MARLA | cd0138eb7ddad7c9f6084086973511d4b9b42121 | 7a3c869346a6c956b8cfa978e078a8b7f1539e20 | refs/heads/master | 2021-05-29T02:58:32.830000 | 2014-06-13T13:59:52 | 2014-06-13T13:59:52 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package SimpleFactoryPlayer.UnitTest;
import Factory.GameLogic.Enums.Faction;
import Factory.GameLogic.TransportTypes.*;
import SimpleFactoryPlayer.Implementation.SimpleFactoryPlayerVolume2System;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import java.util.ArrayList;
import java.util.List... | UTF-8 | Java | 3,055 | java | SimpleFactoryPlayerSystemTest.java | Java | [
{
"context": "l.UUID;\n\n/**\n* Created with IntelliJ IDEA.\n* User: TwiG\n* Date: 09.06.12\n* Time: 19:48\n* To change this t",
"end": 392,
"score": 0.99960857629776,
"start": 388,
"tag": "USERNAME",
"value": "TwiG"
}
] | null | [] | package SimpleFactoryPlayer.UnitTest;
import Factory.GameLogic.Enums.Faction;
import Factory.GameLogic.TransportTypes.*;
import SimpleFactoryPlayer.Implementation.SimpleFactoryPlayerVolume2System;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import java.util.ArrayList;
import java.util.List... | 3,055 | 0.71293 | 0.699509 | 85 | 34.941177 | 31.165348 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.870588 | false | false | 7 |
3dd4678742b254eafcc8f793ff5c856427794360 | 34,024,730,935,682 | 0825379dd149110f1827f08ce9a12e6020e4d310 | /app/src/main/java/ufcg/com/showtime/EventActivity.java | 3fb0d546793bdd29f2ad4dea468ce99333a33cc6 | [] | no_license | franklinwesley/ShowTime | https://github.com/franklinwesley/ShowTime | 573e6c722db92998814461512c9ed6d387228968 | e16e90ca58671f5cb9759c78c651ec2a2102d522 | refs/heads/master | 2021-01-10T11:44:26.707000 | 2015-11-30T14:34:14 | 2015-11-30T14:34:14 | 46,625,757 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ufcg.com.showtime;
import android.support.v4.view.ViewPager;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.Toolbar;
import android.util.Log;
import java.util.ArrayList;
import ufcg.com.showtime.Adapters.TabsEventAdapter;
import ufcg.com.showtime.A... | UTF-8 | Java | 1,769 | java | EventActivity.java | Java | [] | null | [] | package ufcg.com.showtime;
import android.support.v4.view.ViewPager;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.Toolbar;
import android.util.Log;
import java.util.ArrayList;
import ufcg.com.showtime.Adapters.TabsEventAdapter;
import ufcg.com.showtime.A... | 1,769 | 0.755794 | 0.754098 | 46 | 37.45652 | 26.967539 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.76087 | false | false | 7 |
ec0984a12f98ccd137cc63ada2e08ee989e0bcd0 | 18,451,179,539,989 | 8229884a9bd15286a34cbd2e7b4624ee158be378 | /app/src/k6/java/com.mili.smarthome.tkj/main/activity/BaseMainActivity.java | 7e4343a581b41fa5842d79143dc026bfe159d7d4 | [] | no_license | chengcdev/smarthome | https://github.com/chengcdev/smarthome | 5ae58bc0ba8770598f83a36355b557c46f37b90c | 4edb33dcdfcab39a3bc6e5342a7973ac703f1344 | refs/heads/master | 2022-12-03T18:04:39.172000 | 2020-08-20T05:22:57 | 2020-08-20T05:22:57 | 288,909,136 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mili.smarthome.tkj.main.activity;
import android.view.KeyEvent;
import android.view.MotionEvent;
import com.mili.smarthome.tkj.base.BaseActivity;
import com.mili.smarthome.tkj.constant.Constant;
import com.mili.smarthome.tkj.inteface.IActCallBackListener;
import com.mili.smarthome.tkj.utils.AppUtils;
impo... | UTF-8 | Java | 2,392 | java | BaseMainActivity.java | Java | [] | null | [] | package com.mili.smarthome.tkj.main.activity;
import android.view.KeyEvent;
import android.view.MotionEvent;
import com.mili.smarthome.tkj.base.BaseActivity;
import com.mili.smarthome.tkj.constant.Constant;
import com.mili.smarthome.tkj.inteface.IActCallBackListener;
import com.mili.smarthome.tkj.utils.AppUtils;
impo... | 2,392 | 0.601201 | 0.598199 | 71 | 31.84507 | 23.438049 | 110 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.492958 | false | false | 7 |
ec9c34267ce2db1d7fb06b3b48eb172a67ef08d9 | 7,095,286,000,208 | ea5e6c2fa4701c65cc5eb4da1ed6a95a3502ab99 | /src/main/java/uk/ac/jisc/saml/mdman/entities/FilterOnOrganisationAspect.java | 18ac519a722176b9af17813563ab8921c6ce991e | [
"Apache-2.0"
] | permissive | philsmart/metadata-management-api | https://github.com/philsmart/metadata-management-api | 708e76443d910629dd394efee3e68e41cfad105a | a561ff506502ad2218eae89ee8bfd8eb90288938 | refs/heads/master | 2017-10-12T02:17:08.031000 | 2017-10-09T15:33:22 | 2017-10-09T15:33:22 | 51,309,709 | 2 | 0 | null | false | 2016-03-29T19:08:56 | 2016-02-08T16:28:12 | 2016-02-23T14:40:13 | 2016-03-29T19:08:55 | 194 | 0 | 0 | 0 | Java | null | null | package uk.ac.jisc.saml.mdman.entities;
import java.util.Collection;
import javax.annotation.concurrent.ThreadSafe;
import javax.inject.Inject;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.slf4j.Logger;
import org.slf4j.... | UTF-8 | Java | 2,538 | java | FilterOnOrganisationAspect.java | Java | [
{
"context": "\t\tlog.warn(\n\t\t\t\t\t\t\"FilterOnOrganisation annotation (@FilterOrgId) used on a method whos output is NOT a collection",
"end": 2048,
"score": 0.9860029220581055,
"start": 2035,
"tag": "USERNAME",
"value": "(@FilterOrgId"
},
{
"context": "\t\t\tlog.warn(\n\t\t\t\t... | null | [] | package uk.ac.jisc.saml.mdman.entities;
import java.util.Collection;
import javax.annotation.concurrent.ThreadSafe;
import javax.inject.Inject;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.slf4j.Logger;
import org.slf4j.... | 2,538 | 0.774232 | 0.773444 | 79 | 31.126583 | 34.258278 | 146 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.810127 | false | false | 7 |
2bb37460d2216b67b4a62681497441dae61d7332 | 9,887,014,721,070 | e9b51fc99a19241338765845bc6ada25f0a042ef | /src/week4/task2/Circle.java | ca8a2a01e2a66e8de57330b476b9476801abfb50 | [] | no_license | anhnh-3008/oop2018 | https://github.com/anhnh-3008/oop2018 | 49bd63baf1ffced9880dd8d9e2e599967c859e94 | 78abf9ba137f3d822e63bb9b841f423b90312d80 | refs/heads/master | 2022-09-29T10:46:42.667000 | 2018-11-29T14:10:31 | 2018-11-29T14:10:31 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package week4.task2;
public class Circle extends Shade {
private double radious = 1.0;
private double PI = Math.PI;
public Circle(){
}
public Circle(double radious){
this.radious=radious;
}
public Circle(String color,boolean filled,double radious){
super(color, filled);
... | UTF-8 | Java | 740 | java | Circle.java | Java | [] | null | [] | package week4.task2;
public class Circle extends Shade {
private double radious = 1.0;
private double PI = Math.PI;
public Circle(){
}
public Circle(double radious){
this.radious=radious;
}
public Circle(String color,boolean filled,double radious){
super(color, filled);
... | 740 | 0.594595 | 0.586486 | 32 | 22.125 | 18.156868 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.46875 | false | false | 7 |
7d39dca0325161bc8c2e737ac550047919681141 | 19,061,064,871,803 | 10c73abb84f7ff478e615b0e49b126034571635c | /src/main/java/com/mk/hms/service/RequestLogService.java | 36be6efcd2fe6989011dae3101957e058bbb7049 | [] | no_license | zhangzuoqiang/hotel-mgr-sys | https://github.com/zhangzuoqiang/hotel-mgr-sys | 16bee1adbb480d59d90061b7c3538300af1449af | 1b0e1cca5ef0763c2366bdf2c2a637c87c9db672 | refs/heads/master | 2020-04-06T05:09:05.262000 | 2016-03-10T15:32:42 | 2016-03-10T15:32:42 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mk.hms.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.mk.hms.mapper.AopLogMapper;
import com.mk.hms.model.AopLogWithBLOBs;
/**
* 日志处理
* @author hdy
*
*/
... | UTF-8 | Java | 657 | java | RequestLogService.java | Java | [
{
"context": "hms.model.AopLogWithBLOBs;\n\n/**\n * 日志处理\n * @author hdy\n *\n */\n@Service\n@Transactional\npublic class Reque",
"end": 312,
"score": 0.9996155500411987,
"start": 309,
"tag": "USERNAME",
"value": "hdy"
}
] | null | [] | package com.mk.hms.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import com.mk.hms.mapper.AopLogMapper;
import com.mk.hms.model.AopLogWithBLOBs;
/**
* 日志处理
* @author hdy
*
*/
... | 657 | 0.758294 | 0.758294 | 34 | 17.617647 | 19.333017 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.705882 | false | false | 7 |
35fbdfb8d1fe1e36dbcb66cc6f87cabf5202adab | 3,642,132,297,090 | 38671a0fdd52cb9f2b69a52b1ee722fdf11d4b31 | /src/org/zr/util/TimeUtil.java | c96608465df084f591e332124306dc5b0bda1fc8 | [] | no_license | brouceliu/weixin | https://github.com/brouceliu/weixin | ff79399549d86fa7b6ee7d4896a3e0a3332a1a57 | 87da7f29a5f6e0f61dd87fca0facdf939592a2c6 | refs/heads/master | 2021-01-10T12:54:24.495000 | 2015-10-21T02:39:12 | 2015-10-21T02:39:12 | 44,646,710 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.zr.util;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class TimeUtil {
private static Logger log=LoggerFactory.getLogger(TimeUtil.class);
... | GB18030 | Java | 3,384 | java | TimeUtil.java | Java | [] | null | [] | package org.zr.util;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class TimeUtil {
private static Logger log=LoggerFactory.getLogger(TimeUtil.class);
... | 3,384 | 0.690903 | 0.651826 | 111 | 27.126125 | 20.300055 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.972973 | false | false | 7 |
90525e5d35101bb1b49f94ab3d47b6ec2d890e2a | 3,642,132,298,780 | 487b09ffb29cdfbf7300cbd44fec8343816d0990 | /tw2000hahmonluoja/src/tw2000hahmonluoja/hahmologiikka/Taito.java | b59af397c61d1bcc0efa395988b1e6c4d707ecc6 | [] | no_license | Mayse/OhHa2013 | https://github.com/Mayse/OhHa2013 | d9c1c658e3dc2218785c1f28841932bb3eb06524 | d5a342224ea724e77fadb5f14ad9190a8a45db91 | refs/heads/master | 2015-08-08T13:57:37.844000 | 2013-08-14T12:31:33 | 2013-08-14T12:31:33 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package tw2000hahmonluoja.hahmologiikka;
/**
*
* @author miikas
*/
class Taito {
private String nimi;
private int taso;
public Taito(String nimi) {
this.nimi = nimi;
this.taso = 0;
}
... | UTF-8 | Java | 684 | java | Taito.java | Java | [
{
"context": "w2000hahmonluoja.hahmologiikka;\n\n/**\n *\n * @author miikas\n */\nclass Taito {\n private String nimi;\n pr",
"end": 166,
"score": 0.9990370273590088,
"start": 160,
"tag": "USERNAME",
"value": "miikas"
}
] | null | [] | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package tw2000hahmonluoja.hahmologiikka;
/**
*
* @author miikas
*/
class Taito {
private String nimi;
private int taso;
public Taito(String nimi) {
this.nimi = nimi;
this.taso = 0;
}
... | 684 | 0.555556 | 0.548246 | 41 | 15.682927 | 15.267435 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.317073 | false | false | 7 |
2800eda164ab3677dc2d95a8fb9ecde075dbb773 | 16,200,616,641,204 | e281e4d6068ee4447ad800f37632651e473465e7 | /pulltorefresh/src/com/markupartist/android/widget/PullToRefreshListView.java | 97fed9dd06ece40d02340b42d63e2cd44be88606 | [] | no_license | amirkrifa/Useful-Android-Sample-Projects | https://github.com/amirkrifa/Useful-Android-Sample-Projects | 337318457a59be1eaac423b2a5920b5ce2899ad2 | b1733503272a8c0f5bc54b924f42ee24a7ef7d3e | refs/heads/master | 2016-09-06T09:12:10.814000 | 2012-03-20T23:08:42 | 2012-03-20T23:08:42 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.markupartist.android.widget;
import com.markupartist.android.widget.pulltorefresh.R;
import android.content.Context;
import android.content.res.Resources;
import android.os.CountDownTimer;
import android.util.AttributeSet;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.M... | UTF-8 | Java | 5,974 | java | PullToRefreshListView.java | Java | [] | null | [] | package com.markupartist.android.widget;
import com.markupartist.android.widget.pulltorefresh.R;
import android.content.Context;
import android.content.res.Resources;
import android.os.CountDownTimer;
import android.util.AttributeSet;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.M... | 5,974 | 0.628724 | 0.622029 | 169 | 34.349113 | 26.055063 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.733728 | false | false | 7 |
f97eee2d1a91d980cdd0f7dea4a3119b57561834 | 15,977,278,359,573 | 6c35cee52581e1f097ecbd942a00b3b0f84f07c1 | /TestNG/src/main/java/com/course/testng/groups/GroupsOnMethod.java | 1e7213f172136cb06bd59dc8906095997ad56eb1 | [] | no_license | elvirazxh/APIAutoTest | https://github.com/elvirazxh/APIAutoTest | 177ceb663b693f433a95e4a9edf6b05e8ee0c026 | 5539db6d934e079338808e0f805796862bbf9e6f | refs/heads/master | 2022-06-24T11:46:23.700000 | 2019-06-20T11:04:12 | 2019-06-20T11:04:12 | 190,374,491 | 0 | 0 | null | false | 2022-06-21T01:18:52 | 2019-06-05T10:25:15 | 2019-06-20T11:04:49 | 2022-06-21T01:18:51 | 5,875 | 0 | 0 | 9 | Java | false | false | package com.course.testng.groups;/**
* Created by admin on 2019/6/6.
*/
import org.testng.annotations.AfterGroups;
import org.testng.annotations.BeforeGroups;
import org.testng.annotations.Test;
/**
* @author zxh
* @createTime 2019/6/6 22:55
* @description
*/
//组测试中的方法分组测试
public class GroupsOnMethod {
@T... | UTF-8 | Java | 1,533 | java | GroupsOnMethod.java | Java | [
{
"context": "mport org.testng.annotations.Test;\n\n/**\n * @author zxh\n * @createTime 2019/6/6 22:55\n * @description\n */",
"end": 217,
"score": 0.9996119737625122,
"start": 214,
"tag": "USERNAME",
"value": "zxh"
}
] | null | [] | package com.course.testng.groups;/**
* Created by admin on 2019/6/6.
*/
import org.testng.annotations.AfterGroups;
import org.testng.annotations.BeforeGroups;
import org.testng.annotations.Test;
/**
* @author zxh
* @createTime 2019/6/6 22:55
* @description
*/
//组测试中的方法分组测试
public class GroupsOnMethod {
@T... | 1,533 | 0.650508 | 0.61767 | 58 | 20.948277 | 18.060648 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.206897 | false | false | 7 |
4773c8b9a5bf3c5dd42e0b4c0843401ba2039e93 | 35,467,839,969,947 | 8b6c60a7be21e751c14cead866e35468751ea4fc | /validator-core/src/test/java/uk/ac/ebi/subs/validator/repository/ValidationResultRepositoryTest.java | aeba8f0b25e142ea655747f90c7926fff45fc371 | [
"Apache-2.0"
] | permissive | EMBL-EBI-SUBS-OLD/validator-prototype | https://github.com/EMBL-EBI-SUBS-OLD/validator-prototype | 37ca4ab77c1029fe966486326df1a642c39345b3 | 1a055b6d9442213b2305f628cf25de6f1cc34d1a | refs/heads/master | 2021-06-17T03:44:28.732000 | 2017-06-06T09:03:16 | 2017-06-06T09:03:16 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package uk.ac.ebi.subs.validator.repository;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org... | UTF-8 | Java | 2,642 | java | ValidationResultRepositoryTest.java | Java | [] | null | [] | package uk.ac.ebi.subs.validator.repository;
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org... | 2,642 | 0.751325 | 0.740348 | 79 | 32.455696 | 27.580858 | 126 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.620253 | false | false | 7 |
0b124f92596ac5312cab91a2d7982caf47cd7d78 | 38,276,748,566,122 | ce1d5e224e6ea871c5881203932e5cf8b90bca68 | /projekat-iz/src/main/java/dto/FuzzyInputDto.java | 2f41bbdf4ee210b11cc6ab66c3092059fb7347ec | [] | no_license | Maja0505/iz_project | https://github.com/Maja0505/iz_project | 8b60268748b31684705b175f7ab471ef8c09f499 | ca7904093753b8f67a516481c2cd006dc1d3ec30 | refs/heads/main | 2023-06-09T09:26:58.634000 | 2021-06-24T21:26:44 | 2021-06-24T21:26:44 | 350,495,891 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package dto;
public class FuzzyInputDto {
private Integer access_vector;
private Integer access_complexity;
private Integer authentication;
private Integer confidentiality;
private Integer integrity;
private Integer availability;
public FuzzyInputDto() {
}
public Integer getAcces... | UTF-8 | Java | 1,422 | java | FuzzyInputDto.java | Java | [] | null | [] | package dto;
public class FuzzyInputDto {
private Integer access_vector;
private Integer access_complexity;
private Integer authentication;
private Integer confidentiality;
private Integer integrity;
private Integer availability;
public FuzzyInputDto() {
}
public Integer getAcces... | 1,422 | 0.674402 | 0.674402 | 62 | 21.935484 | 20.291323 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.306452 | false | false | 7 |
57cbabe9cfd6d6e44562f7ab97bb2a3e440b267f | 13,185,549,662,935 | 7d76d30fe37b1de11bf0ecaac730c7256069c5a6 | /osmosis-pgsimple/src/main/java/org/openstreetmap/osmosis/pgsimple/v0_6/impl/DatabaseCapabilityChecker.java | bca13904f1fecb22f0f80bb6eaeffbd1fc5df3b7 | [] | no_license | openstreetmap/osmosis | https://github.com/openstreetmap/osmosis | 51c0f4993f8b4a16b06f9f13d680889a9702ac73 | 81b00273635eb89e20f0f251d9a3db4804bda657 | refs/heads/main | 2023-08-31T00:01:20.475000 | 2023-08-26T06:26:56 | 2023-08-26T06:26:56 | 2,564,522 | 522 | 203 | null | false | 2023-09-02T00:57:45 | 2011-10-12T18:48:02 | 2023-08-26T16:09:37 | 2023-09-02T00:57:44 | 13,900 | 600 | 197 | 36 | Java | false | false | // This software is released into the Public Domain. See copying.txt for details.
package org.openstreetmap.osmosis.pgsimple.v0_6.impl;
import org.openstreetmap.osmosis.pgsimple.common.DatabaseContext;
/**
* Provides information about which features a database supports.
*
* @author Brett Henderson
*/
public cl... | UTF-8 | Java | 1,682 | java | DatabaseCapabilityChecker.java | Java | [
{
"context": "which features a database supports.\n * \n * @author Brett Henderson\n */\npublic class DatabaseCapabilityChecker {\n\tpri",
"end": 306,
"score": 0.9980826377868652,
"start": 291,
"tag": "NAME",
"value": "Brett Henderson"
}
] | null | [] | // This software is released into the Public Domain. See copying.txt for details.
package org.openstreetmap.osmosis.pgsimple.v0_6.impl;
import org.openstreetmap.osmosis.pgsimple.common.DatabaseContext;
/**
* Provides information about which features a database supports.
*
* @author <NAME>
*/
public class Datab... | 1,673 | 0.720571 | 0.719382 | 77 | 20.844156 | 22.795002 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.454545 | false | false | 7 |
5b381f5f81b5ed038aa842dd15ebdc30f5a9fd09 | 34,522,947,161,531 | 21f4a5980a892bea49198896b52bd3dda0a74003 | /src/datastructures/linkedlists/oop/doubly/DNode.java | 9cdba401537a3844c6fa2706b36471110e7317e8 | [] | no_license | AK-Vitae/Java-Practice | https://github.com/AK-Vitae/Java-Practice | 7c54e705b31a7520204da1a827c36122bbf1ec66 | d150b893cf0b22545e10ce379cd69880fddb6d07 | refs/heads/master | 2021-07-17T17:47:10.708000 | 2021-03-03T02:57:44 | 2021-03-03T02:57:44 | 244,048,885 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package datastructures.linkedlists.oop.doubly;
public class DNode<T> {
private T data;
private DNode<T> next;
public DNode(T data, DNode<T> next) {
this.data = data;
this.next = next;
}
public T getData() {
return this.data;
}
public DNode<T> getNext() {
r... | UTF-8 | Java | 419 | java | DNode.java | Java | [] | null | [] | package datastructures.linkedlists.oop.doubly;
public class DNode<T> {
private T data;
private DNode<T> next;
public DNode(T data, DNode<T> next) {
this.data = data;
this.next = next;
}
public T getData() {
return this.data;
}
public DNode<T> getNext() {
r... | 419 | 0.565632 | 0.565632 | 24 | 16.5 | 14.708274 | 46 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.375 | false | false | 7 |
f818bb49f8e33c510ed8d26517c9d43fc95009fb | 5,609,227,346,610 | 57578acfae7b819290a28cf336d2968a879e05a9 | /app/src/main/java/hr/ferit/posavec/stjepan/dogbreedbookapp/Adapters/UserAdapter.java | a6f9ff9f0ca0335d89f33da45ee69618a22dfca4 | [] | no_license | Stipan97/DogBreedBookApp | https://github.com/Stipan97/DogBreedBookApp | 1bfb9dc30a40bc0d0c97ac4a1b6713c117f07cf7 | 352e3e6a46e9e2da92c1dbf4f2d443f67949ed4d | refs/heads/master | 2020-09-21T00:47:53.082000 | 2019-11-28T10:56:40 | 2019-11-28T10:56:40 | 224,632,012 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package hr.ferit.posavec.stjepan.dogbreedbookapp.Adapters;
import android.content.Context;
import android.content.Intent;
import android.graphics.drawable.Drawable;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v7.widget.RecyclerView;
import andro... | UTF-8 | Java | 9,468 | java | UserAdapter.java | Java | [] | null | [] | package hr.ferit.posavec.stjepan.dogbreedbookapp.Adapters;
import android.content.Context;
import android.content.Intent;
import android.graphics.drawable.Drawable;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v7.widget.RecyclerView;
import andro... | 9,468 | 0.64079 | 0.640684 | 215 | 42.037209 | 37.879227 | 159 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.576744 | false | false | 7 |
786227440dd87c3a64021045455a8d28caafc874 | 17,154,099,406,096 | b7f08ecdde90ab2013c9d94376e2b845f69f13aa | /app/src/main/java/com/manusunny/securenotes/features/dropbox/DropboxFileListAdapter.java | a0a4164257e2ed7afef8c653e76f17fba17f338b | [] | no_license | futuristic-labs/SecureNotesPaid | https://github.com/futuristic-labs/SecureNotesPaid | abeb061576e0e8498af0d322953a6062a72394bd | 47007b632032feb513c77b8852ec75d8e8b7a9cb | refs/heads/master | 2018-01-09T06:23:32.957000 | 2017-11-18T11:30:39 | 2017-11-18T11:30:39 | 48,498,888 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.manusunny.securenotes.features.dropbox;
import android.app.Activity;
import android.graphics.Color;
import android.graphics.drawable.GradientDrawable;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;
import com.dropbox.core.v2.fil... | UTF-8 | Java | 1,561 | java | DropboxFileListAdapter.java | Java | [] | null | [] | package com.manusunny.securenotes.features.dropbox;
import android.app.Activity;
import android.graphics.Color;
import android.graphics.drawable.GradientDrawable;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;
import com.dropbox.core.v2.fil... | 1,561 | 0.710442 | 0.70852 | 48 | 31.520834 | 23.73288 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.729167 | false | false | 7 |
aabbc86ff7891f5740d38ab2f2eb28749c6f7e0d | 27,728,308,918,887 | 0e7f5c8b11c5872f0f43dd2cc9c1d28b1119679f | /flyerteaCafes/src/main/java/com/ideal/flyerteacafes/model/entity/MyThreadBean.java | 81805102c51979d208d87b77ed72a0128881c8a6 | [
"MIT"
] | permissive | cody110/flyertea | https://github.com/cody110/flyertea | 7a05918afb1420906180af0462913023cfddc2c0 | 83a9af2ce40d3aebc600a10f8ff3375352c04f3c | refs/heads/master | 2021-01-25T13:11:58.566000 | 2018-03-02T06:59:07 | 2018-03-02T06:59:07 | 123,540,848 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ideal.flyerteacafes.model.entity;
import android.text.TextUtils;
import com.ideal.flyerteacafes.utils.DataUtils;
import java.io.Serializable;
import java.util.List;
/**
* Created by fly on 2016/11/29.
* 我的帖子
*/
public class MyThreadBean implements Serializable{
/**
* 是否是正常帖
*
* @... | UTF-8 | Java | 3,372 | java | MyThreadBean.java | Java | [
{
"context": "lizable;\nimport java.util.List;\n\n/**\n * Created by fly on 2016/11/29.\n * 我的帖子\n */\n\npublic class MyThread",
"end": 202,
"score": 0.37033089995384216,
"start": 199,
"tag": "USERNAME",
"value": "fly"
}
] | null | [] | package com.ideal.flyerteacafes.model.entity;
import android.text.TextUtils;
import com.ideal.flyerteacafes.utils.DataUtils;
import java.io.Serializable;
import java.util.List;
/**
* Created by fly on 2016/11/29.
* 我的帖子
*/
public class MyThreadBean implements Serializable{
/**
* 是否是正常帖
*
* @... | 3,372 | 0.615846 | 0.612845 | 173 | 18.254335 | 16.114262 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.323699 | false | false | 7 |
2401e01f214509f13a4450f0c0f3e5195ea52df1 | 35,072,702,975,004 | 4ea0aa3627ef0ceb9a9285a285e76b0e6793f16c | /src/cn/xm/libandroid/service/NotificationService.java | a98081aff24e36e9aff56547c841eac780d12ed7 | [] | no_license | yesunsong/LibAndroid | https://github.com/yesunsong/LibAndroid | b18252322d9593e5b4a5d6dccc536c8d54ae68d5 | 7537d1af9b40ddd960e21fb6a4c851f05e28dc15 | refs/heads/master | 2020-06-21T05:54:48.323000 | 2016-12-01T12:49:15 | 2016-12-01T12:49:15 | 74,801,248 | 0 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.xm.libandroid.service;
import android.app.Notification;
import android.app.NotificationManager;
import android.content.Context;
import cn.xm.libandroid.service.base.Service;
public class NotificationService extends Service {
private static NotificationService instance;
private NotificationManager notific... | UTF-8 | Java | 1,132 | java | NotificationService.java | Java | [] | null | [] | package cn.xm.libandroid.service;
import android.app.Notification;
import android.app.NotificationManager;
import android.content.Context;
import cn.xm.libandroid.service.base.Service;
public class NotificationService extends Service {
private static NotificationService instance;
private NotificationManager notific... | 1,132 | 0.733826 | 0.733826 | 43 | 24.16279 | 21.976658 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.348837 | false | false | 7 |
162392711ff96cf5ff7e71b2120b6f37f94281ef | 24,653,112,346,270 | 7382e2a726cdab991507472803167c54afba356a | /app/src/main/java/com/example/azatk/sdccommunity/SDCChat.java | 55ce467db7fae665d5c72ae1f6d6617ddc97bd31 | [] | no_license | azat99/SDC-Community | https://github.com/azat99/SDC-Community | bd2fa8c65295202944b3a4141fcc2888f0a76f81 | 46fe2d3eb0a28f5d6e24dc0c43834df2f4d09918 | refs/heads/master | 2021-09-11T22:01:50.094000 | 2018-04-12T18:48:53 | 2018-04-12T18:48:53 | 110,067,820 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.azatk.sdccommunity;
import android.app.Application;
import android.content.Intent;
import com.google.firebase.auth.FirebaseAuth;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.go... | UTF-8 | Java | 2,544 | java | SDCChat.java | Java | [
{
"context": "acker;\nimport com.vk.sdk.VKSdk;\n\n/**\n * Created by azatk on 09.10.2017.\n */\n\npublic class SDCChat extends ",
"end": 671,
"score": 0.999569296836853,
"start": 666,
"tag": "USERNAME",
"value": "azatk"
}
] | null | [] | package com.example.azatk.sdccommunity;
import android.app.Application;
import android.content.Intent;
import com.google.firebase.auth.FirebaseAuth;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.go... | 2,544 | 0.670204 | 0.66706 | 86 | 28.581396 | 28.602921 | 128 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.453488 | false | false | 7 |
f6e152c07371b5b1f6591573ee70d9cef3693900 | 36,077,725,310,688 | e9162ab7adab3cd862bbaaa5f4c03449122b8746 | /myproject/src/main/java/model/userboard/UserBoardVO.java | 7d3787738ec707aa8a04960a1c324e243748ee69 | [] | no_license | sngynhy/myproject | https://github.com/sngynhy/myproject | a9836a829e9d4641358e2fe7cf80b6da5d49fb95 | b04143bfc70a4a4c27acf29afd5e638f8663b396 | refs/heads/main | 2023-08-30T01:14:30.931000 | 2021-11-02T12:32:17 | 2021-11-02T12:32:17 | 421,739,547 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package model.userboard;
public class UserBoardVO {
private int b_id; // 1001부터 자동 +1
private String id; // 회원 id
private String title; // 게시글 제목
private String content; // 게시글 내용
private int r_cnt; // 댓글 수
private int like_cnt; // 찜 수
private String b_date; // 작성 날짜
private String u_date; // 수정 날짜
private ... | UHC | Java | 2,724 | java | UserBoardVO.java | Java | [] | null | [] | package model.userboard;
public class UserBoardVO {
private int b_id; // 1001부터 자동 +1
private String id; // 회원 id
private String title; // 게시글 제목
private String content; // 게시글 내용
private int r_cnt; // 댓글 수
private int like_cnt; // 찜 수
private String b_date; // 작성 날짜
private String u_date; // 수정 날짜
private ... | 2,724 | 0.623053 | 0.621106 | 112 | 21.928572 | 19.838957 | 110 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.848214 | false | false | 7 |
eba340d402009557b5bcbfc648bd696379548ec2 | 12,086,038,031,955 | c39a875b7d462e203f8783d31e1c17d4a9a53318 | /jixi_manager/jixi_manager_web/src/main/java/com/jixi/controller/UserController.java | 0fbcaefaaf19db64ab41c41e7d7c273beca13a73 | [] | no_license | zouhaiming2017/zouhaiming2017-52jcjc.admin | https://github.com/zouhaiming2017/zouhaiming2017-52jcjc.admin | d87c05b64147d2cae78be36054c851acfa4a1071 | c874fd89d799f75ac3624882ed1f9c698c7a0a1c | refs/heads/master | 2021-05-04T15:58:36.175000 | 2017-12-11T01:45:33 | 2017-12-11T01:46:14 | 120,241,595 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jixi.controller;
import com.jixi.pojo.User;
import com.jixi.service.IRoleService;
import com.jixi.service.IUserService;
import com.jixi.utils.RandomValidateCode;
import org.apache.shiro.SecurityUtils;
import org.apache.shiro.authc.AuthenticationException;
import org.apache.shiro.authc.UsernamePasswordToken... | UTF-8 | Java | 6,313 | java | UserController.java | Java | [
{
"context": ".filter.mgt.DefaultFilter.user;\n\n/**\n * Created by zhm on 2017/9/21.\n */\n@Controller\n@RequestMapping(\"/u",
"end": 970,
"score": 0.9977639317512512,
"start": 967,
"tag": "USERNAME",
"value": "zhm"
},
{
"context": " /**\n * 验证登录\n * @param model\n * @pa... | null | [] | package com.jixi.controller;
import com.jixi.pojo.User;
import com.jixi.service.IRoleService;
import com.jixi.service.IUserService;
import com.jixi.utils.RandomValidateCode;
import org.apache.shiro.SecurityUtils;
import org.apache.shiro.authc.AuthenticationException;
import org.apache.shiro.authc.UsernamePasswordToken... | 6,337 | 0.632155 | 0.628173 | 202 | 28.831684 | 23.838802 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.574257 | false | false | 7 |
e90cb3c04f6a6c11ee04168c2a6a4266bbae49dc | 22,617,297,785,000 | f5694e76ea50fe58628e4c438f21a816dd99c5c7 | /src/Controlador/Coordinador.java | 4d62b0790675a9c90e96f6345368d701e751bd25 | [] | no_license | ivanfraidias/proyectofinal | https://github.com/ivanfraidias/proyectofinal | 83007295ba6a36ff85aaf50fef243bad18dcc60d | 411d0bcd420411e34a1207b738daafe32729adfb | refs/heads/master | 2020-03-02T07:05:02.569000 | 2017-05-21T17:53:41 | 2017-05-21T17:53:41 | 91,444,951 | 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 Controlador;
import Modelo.CarteleraVO;
import Modelo.Logica;
import Modelo.PeliculaVO;
import java.sql.SQLException... | UTF-8 | Java | 1,945 | java | Coordinador.java | Java | [
{
"context": "import java.util.ArrayList;\r\n\r\n/**\r\n *\r\n * @author ivandam\r\n */\r\npublic class Coordinador {\r\n private Logic",
"end": 381,
"score": 0.977039098739624,
"start": 374,
"tag": "USERNAME",
"value": "ivandam"
}
] | 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 Controlador;
import Modelo.CarteleraVO;
import Modelo.Logica;
import Modelo.PeliculaVO;
import java.sql.SQLException... | 1,945 | 0.69563 | 0.69563 | 65 | 27.923077 | 24.786663 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.338462 | false | false | 7 |
a2cb292b1eee2fa0a19e3088b64c566edd41bf3d | 37,074,157,712,354 | 01563cf663b502102e22b73bd3ff6a16dde701d0 | /src/main/java/com/jk51/modules/comment/service/CommentService.java | 0d4aa3d7e445974b6dc0e4faf1f1892ed312c80d | [] | no_license | tomzhang/springTestB | https://github.com/tomzhang/springTestB | 17cc2d866723d7200302b068a30239732a9cda26 | af4bd2d5cc90d44f0b786fb115577a811d1eaac7 | refs/heads/master | 2020-05-02T04:35:50.729000 | 2018-10-24T02:24:35 | 2018-10-24T02:24:35 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jk51.modules.comment.service;
import com.jk51.model.Comments;
import com.jk51.model.Goods;
import com.jk51.model.order.Trades;
import com.jk51.modules.comment.mapper.CommentMapper;
import com.jk51.modules.goods.mapper.GoodsMapper;
import com.jk51.modules.integral.service.IntegerRuleService;
import com.jk51... | UTF-8 | Java | 5,988 | java | CommentService.java | Java | [
{
"context": "util.Map;\nimport java.util.Set;\n\n/**\n * Created by admin on 2017/2/24.\n */\n@Service\npublic class CommentSe",
"end": 652,
"score": 0.9935490489006042,
"start": 647,
"tag": "USERNAME",
"value": "admin"
},
{
"context": "TradesId(tradesId);\n comments.setBuyer... | null | [] | package com.jk51.modules.comment.service;
import com.jk51.model.Comments;
import com.jk51.model.Goods;
import com.jk51.model.order.Trades;
import com.jk51.modules.comment.mapper.CommentMapper;
import com.jk51.modules.goods.mapper.GoodsMapper;
import com.jk51.modules.integral.service.IntegerRuleService;
import com.jk51... | 5,988 | 0.630762 | 0.623914 | 176 | 33.022728 | 25.815552 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6875 | false | false | 7 |
fe6b0b6b034342f2db56e317275084d83c97106d | 27,676,769,307,402 | 2ef073c9866e69dda09b88e60d2ab249a2b8e276 | /src/main/java/stoptheworld/GcNotificationListener.java | 2a72da8a2a8560de7d07a41d2d152001f91d1c71 | [] | no_license | bonifaido/gc-notification-utils | https://github.com/bonifaido/gc-notification-utils | f677f6f5e76a7836005628f1da8c68bae59c8a28 | fd5476f7e2e468e0d34fdae33e81cfd97d60c411 | refs/heads/master | 2016-09-06T07:36:54.843000 | 2015-05-10T17:03:44 | 2015-05-10T17:03:44 | 29,097,245 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package stoptheworld;
import com.lmax.disruptor.RingBuffer;
import javax.management.Notification;
import javax.management.NotificationListener;
import java.lang.management.GarbageCollectorMXBean;
/**
* The listener called back on the JVM Service thread, the producer from Disruptor point of view.
*/
class GcNotific... | UTF-8 | Java | 1,402 | java | GcNotificationListener.java | Java | [] | null | [] | package stoptheworld;
import com.lmax.disruptor.RingBuffer;
import javax.management.Notification;
import javax.management.NotificationListener;
import java.lang.management.GarbageCollectorMXBean;
/**
* The listener called back on the JVM Service thread, the producer from Disruptor point of view.
*/
class GcNotific... | 1,402 | 0.723252 | 0.723252 | 42 | 32.380951 | 28.346455 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.547619 | false | false | 7 |
b9ccae8ee3856954cf1e3843fd750003345f1e8b | 16,904,991,332,333 | b981ec1f47604c0e3964fa0f2e257fb40c161aad | /src/com/chee/entity/AccountFlow.java | b00e02fa1f7658d8f8c44814c857cc0904b5a06b | [] | no_license | ddong32/cheefull | https://github.com/ddong32/cheefull | 78cad892f9b2332088c961b2597aea264da3ea7f | 4e7dff7acd1d15ca65b5ae4e4354bc9b3ee71d30 | refs/heads/master | 2021-09-10T05:20:27.093000 | 2018-02-11T09:11:06 | 2018-02-11T09:11:06 | 109,226,933 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.chee.entity;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.... | UTF-8 | Java | 6,912 | java | AccountFlow.java | Java | [] | null | [] | package com.chee.entity;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.... | 6,912 | 0.566117 | 0.564959 | 303 | 20.811882 | 16.444956 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.363036 | false | false | 7 |
d63e35ada14ee19d2561800fafd611420be4dc58 | 3,264,175,205,544 | a8ca511deb6142341a6951371d477f8c355bb67f | /src/com/kata/bmi/Calculate.java | 51d70ca59168c07463e03238060bbe2a893dcba5 | [] | no_license | emilybowe/Kata | https://github.com/emilybowe/Kata | fa2e7bc407869d9f4e950cff54563d93f286726c | 1df3b1ef0c937d54b9c1ffd58debaf8021803ecb | refs/heads/master | 2022-09-10T13:05:04.492000 | 2020-05-28T20:18:22 | 2020-05-28T20:18:22 | 255,164,820 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.kata.bmi;
public class Calculate {
public static void bmi(double weight, double height) {
double bmi = weight/Math.pow(height, 2);
if (bmi <= 18.5) System.out.println( "Underweight");
else if (bmi <= 25.0) System.out.println( "Normal");
else if (bmi <= 30.0) System.out... | UTF-8 | Java | 486 | java | Calculate.java | Java | [] | null | [] | package com.kata.bmi;
public class Calculate {
public static void bmi(double weight, double height) {
double bmi = weight/Math.pow(height, 2);
if (bmi <= 18.5) System.out.println( "Underweight");
else if (bmi <= 25.0) System.out.println( "Normal");
else if (bmi <= 30.0) System.out... | 486 | 0.588477 | 0.553498 | 18 | 26 | 25.188181 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.555556 | false | false | 7 |
b45c6f43df98c15cbf662bc5188824b7e4415c0d | 5,360,119,245,109 | 935b694f0b1b10a46e1c69545cb58dec99c9095e | /src/managementgamestore/UserWindow.java | d767f253bc95d080b6998508511a20e33951c0b8 | [] | no_license | cathean/Management-Game-Store | https://github.com/cathean/Management-Game-Store | 0d64c94b8e1a7361954248e223b331b9957b3f59 | 9a4ae355080baf513739eeeb2bb7b70761f37d7f | refs/heads/master | 2022-12-01T03:58:49.030000 | 2020-08-13T02:57:54 | 2020-08-13T02:57:54 | 274,617,021 | 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 managementgamestore;
import com.formdev.flatlaf.FlatLightLaf;
import java.awt.Component;
import java.util.ArrayList;
import ja... | UTF-8 | Java | 23,215 | java | UserWindow.java | Java | [
{
"context": ".swing.table.DefaultTableModel;\n\n/**\n *\n * @author ryans\n */\npublic class UserWindow extends javax.swing.JF",
"end": 468,
"score": 0.8680171966552734,
"start": 463,
"tag": "USERNAME",
"value": "ryans"
},
{
"context": " new String [] {\n \"... | 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 managementgamestore;
import com.formdev.flatlaf.FlatLightLaf;
import java.awt.Component;
import java.util.ArrayList;
import ja... | 23,215 | 0.619599 | 0.604092 | 482 | 47.163902 | 35.720562 | 169 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.692946 | false | false | 7 |
eb9a347aa55c0632785da8c606478681d82fa80d | 23,347,442,221,682 | 6287052d88e5ddb9cddd35ace0a152de3e5aa9de | /src/com/mtls/project56/rest/ProfileActivity.java | 6b937c53b9cf6423fd15f0c3f73d56dd0f38feb8 | [] | no_license | tolgap/social-tunnel | https://github.com/tolgap/social-tunnel | 20b779d6fa30918889cdf63a0ba6b8d42e285ad5 | 9cec4cd0206b87818e7a4dd100c40d6e8e6be723 | refs/heads/master | 2016-08-05T19:32:28.152000 | 2013-01-28T13:23:08 | 2013-01-28T13:23:08 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mtls.project56.rest;
import java.util.List;
import android.app.Activity;
import android.content.Intent;
import android.content.res.Configuration;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.MenuItem;
import android.view.View;
import android.widget.ListView;
import and... | UTF-8 | Java | 4,450 | java | ProfileActivity.java | Java | [] | null | [] | package com.mtls.project56.rest;
import java.util.List;
import android.app.Activity;
import android.content.Intent;
import android.content.res.Configuration;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.MenuItem;
import android.view.View;
import android.widget.ListView;
import and... | 4,450 | 0.751685 | 0.748764 | 140 | 30.785715 | 26.448275 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.1 | false | false | 7 |
6bad8da5337cfc0b095c38a57faf90da3cde477d | 21,036,749,869,878 | 80f02232106708348595f15cb52dafc10b49bec7 | /src/main/java/cn/allene/school/services/impl/ChildServiceImpl.java | cdb274be74ea20bdfd07feca32462aae40a40795 | [] | no_license | kkyv/school | https://github.com/kkyv/school | 1786c73bccce6b35a50b239a9f110f470fa63a53 | 86bf445bd3fbfd7e09adc14420667311e29a9d3b | refs/heads/master | 2021-01-25T13:40:35.563000 | 2018-05-04T02:25:42 | 2018-05-04T02:25:42 | 116,204,876 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.allene.school.services.impl;
import cn.allene.school.dao.mapper.ChildMapper;
import cn.allene.school.po.Child;
import cn.allene.school.po.condition.ChildCondition;
import cn.allene.school.services.ChildService;
import org.springframework.stereotype.Service;
@Service
public class ChildServiceImpl extends Ba... | UTF-8 | Java | 407 | java | ChildServiceImpl.java | Java | [] | null | [] | package cn.allene.school.services.impl;
import cn.allene.school.dao.mapper.ChildMapper;
import cn.allene.school.po.Child;
import cn.allene.school.po.condition.ChildCondition;
import cn.allene.school.services.ChildService;
import org.springframework.stereotype.Service;
@Service
public class ChildServiceImpl extends Ba... | 407 | 0.835381 | 0.835381 | 12 | 32.916668 | 34.091686 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.75 | false | false | 7 |
a4d742804619ab2483ca5ce0bed781f81da36056 | 16,484,084,546,475 | 625824a13015be1ec7440effc2265de61d9f63b3 | /src/cn/com/vivo/thread/TestLock.java | 569370b478d6ef4fa9cf5b4d7d86f3e24b22eb20 | [] | no_license | dewenHuang/demo | https://github.com/dewenHuang/demo | 92c94509291a179f0c76dc03782c73aeca737a75 | 63537ff5512cd86fa86877b9cab879e62cd0c6c9 | refs/heads/master | 2021-01-02T09:17:44.909000 | 2020-07-11T16:06:42 | 2020-07-11T16:06:42 | 99,184,639 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.com.vivo.thread;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
/**
* @project: java-app
* @description: 测试同步锁
*
* 一、用于解决多线程安全问题的方式:
* 隐式锁
* 1.同步代码块
* 2.同步方法
*
* 显示锁(JDK1.5之后)
* 3.同步锁,需要通过... | UTF-8 | Java | 1,705 | java | TestLock.java | Java | [
{
"context": "3.同步锁,需要通过lock()方法上锁,通过unlock()方法解锁\n *\n * @author: huangdw\n * @create: 2018-10-09 14:58\n */\npublic class Tes",
"end": 368,
"score": 0.9996994137763977,
"start": 361,
"tag": "USERNAME",
"value": "huangdw"
}
] | null | [] | package cn.com.vivo.thread;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
/**
* @project: java-app
* @description: 测试同步锁
*
* 一、用于解决多线程安全问题的方式:
* 隐式锁
* 1.同步代码块
* 2.同步方法
*
* 显示锁(JDK1.5之后)
* 3.同步锁,需要通过... | 1,705 | 0.514366 | 0.496146 | 57 | 24.035088 | 20.235426 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 7 |
ff9296e264f152bd859e5c6ef631541adb99f4e9 | 34,591,666,620,478 | 0a4598de6f14972504e0a5a398efe21b5028b696 | /src/main/java/com/example/cinema/bl/sales/RefundStrategyService.java | 7fb1811815abc83e4405fe38e70575431b3d09f3 | [] | no_license | hddFelicidad/new67 | https://github.com/hddFelicidad/new67 | 3a7130d4ac02883b60242d053bbea1305e41cc8b | aa46a02f2f80c646f882bb091c40f053e7c30450 | refs/heads/master | 2020-05-25T19:29:07.291000 | 2019-05-31T01:05:20 | 2019-06-20T02:29:06 | 187,951,933 | 0 | 0 | null | false | 2019-10-31T15:00:38 | 2019-05-22T02:55:26 | 2019-06-20T02:30:54 | 2019-10-31T15:00:37 | 2,096 | 0 | 0 | 1 | HTML | false | false | package com.example.cinema.bl.sales;
import com.example.cinema.vo.RefundStrategyForm;
import com.example.cinema.vo.ResponseVO;
public interface RefundStrategyService {
ResponseVO getAllRefundStrategy();
ResponseVO getRefundStrategyById(int id);
ResponseVO addRefundStrategy( RefundStrategyForm refundStr... | UTF-8 | Java | 461 | java | RefundStrategyService.java | Java | [] | null | [] | package com.example.cinema.bl.sales;
import com.example.cinema.vo.RefundStrategyForm;
import com.example.cinema.vo.ResponseVO;
public interface RefundStrategyService {
ResponseVO getAllRefundStrategy();
ResponseVO getRefundStrategyById(int id);
ResponseVO addRefundStrategy( RefundStrategyForm refundStr... | 461 | 0.815618 | 0.815618 | 17 | 26.117647 | 26.492802 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.470588 | false | false | 7 |
8f149a9a677d40604ba0d0a27bf4de82ef5b6d1f | 27,376,121,585,168 | d2d5cddcea7353eebfc4e7e3c4f2c0614d124a8e | /Ch2/src/test/java/edu/sua/bjee7/Ch2/BookServiceIT.java | e8d9f6c1dc076c583e9fcd50e5f7c0fb2c3a558c | [] | no_license | SuvorovJA/BJEE7 | https://github.com/SuvorovJA/BJEE7 | 509c3194935f21cb26236a90dc2c2598196b5d79 | e158005fc8803e4b1dbe96968da8a6296d4dd41a | refs/heads/master | 2018-10-20T17:00:20.595000 | 2018-10-05T13:55:08 | 2018-10-05T13:55:08 | 141,175,584 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package edu.sua.bjee7.Ch2;
import static org.junit.Assert.assertTrue;
import org.jboss.weld.environment.se.Weld;
import org.jboss.weld.environment.se.WeldContainer;
import org.junit.Ignore;
import org.junit.Test;
// TODO после добавления CH3 появилась такая решрессия при старте WELD в этом тесте
/*Running edu.sua.b... | UTF-8 | Java | 2,004 | java | BookServiceIT.java | Java | [] | null | [] | package edu.sua.bjee7.Ch2;
import static org.junit.Assert.assertTrue;
import org.jboss.weld.environment.se.Weld;
import org.jboss.weld.environment.se.WeldContainer;
import org.junit.Ignore;
import org.junit.Test;
// TODO после добавления CH3 появилась такая решрессия при старте WELD в этом тесте
/*Running edu.sua.b... | 2,004 | 0.784551 | 0.741461 | 38 | 49.078949 | 41.931889 | 163 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.105263 | false | false | 7 |
a909118206769c3eb9b32fdf6a798ada10c8a069 | 25,692,494,390,559 | f02a88db1779ce4249d296373eb7019604d6f666 | /apertium-scripts/ApertiumPhraseGenerator/src/main/java/es/ua/dlsi/hybridmt/apertiumphrasegenerator/NGramTrie.java | 670fe0b33452fb5e0999abed78f6d8deb76c9453 | [] | no_license | vitaka/rule2phrase | https://github.com/vitaka/rule2phrase | ddf64a4bca12d77f2251af3d9a7609495d632033 | 2a7f40e5d083199016c5045d7fe2791d33d89168 | refs/heads/master | 2016-09-13T14:54:37.565000 | 2016-04-28T14:15:14 | 2016-04-28T14:15:14 | 57,306,432 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package es.ua.dlsi.hybridmt.apertiumphrasegenerator;
import es.ua.dlsi.hybridmt.apertiumphrasegenerator.trie.Trie;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.Inpu... | UTF-8 | Java | 3,398 | java | NGramTrie.java | Java | [
{
"context": "kedList;\nimport java.util.List;\n\n/**\n *\n * @author vmsanchez\n */\npublic class NGramTrie {\n private Trie<Str",
"end": 476,
"score": 0.9986698031425476,
"start": 467,
"tag": "USERNAME",
"value": "vmsanchez"
}
] | null | [] | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package es.ua.dlsi.hybridmt.apertiumphrasegenerator;
import es.ua.dlsi.hybridmt.apertiumphrasegenerator.trie.Trie;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.Inpu... | 3,398 | 0.499706 | 0.498529 | 128 | 25.546875 | 20.044428 | 107 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.398438 | false | false | 7 |
31d551fcc64f4186809b5074d3646c42b67185a3 | 5,171,140,677,767 | 8b2c9d9914939cadc99c6190706521be0cd577b9 | /src/main/java/cc/mrbird/system/service/RegionService.java | b81c200feb4049765a8016b3c9d8ea6bac66469b | [
"Apache-2.0"
] | permissive | iclockwork/febs | https://github.com/iclockwork/febs | a1c66f3aef265a5d5a3c940298052b2295c367bb | cc55cd2b034ba36c7b2e1dd75d4bf3042428d79a | refs/heads/master | 2022-09-13T02:25:11.255000 | 2019-07-15T09:34:15 | 2019-07-15T09:34:15 | 170,794,507 | 1 | 0 | null | false | 2022-09-01T23:02:50 | 2019-02-15T03:11:55 | 2020-05-06T05:45:09 | 2022-09-01T23:02:48 | 8,447 | 1 | 0 | 8 | Java | false | false | package cc.mrbird.system.service;
import cc.mrbird.common.service.IService;
import cc.mrbird.system.domain.Region;
import java.util.List;
/**
* RegionService
*
* @author: fengwang
* @date: 2019-02-19 15:59
* @version: 1.0
* @since: JDK 1.8
*/
public interface RegionService extends IService<Region> {
List<... | UTF-8 | Java | 396 | java | RegionService.java | Java | [
{
"context": "va.util.List;\n\n/**\n * RegionService\n *\n * @author: fengwang\n * @date: 2019-02-19 15:59\n * @version: 1.0\n * @s",
"end": 185,
"score": 0.9189698100090027,
"start": 177,
"tag": "USERNAME",
"value": "fengwang"
}
] | null | [] | package cc.mrbird.system.service;
import cc.mrbird.common.service.IService;
import cc.mrbird.system.domain.Region;
import java.util.List;
/**
* RegionService
*
* @author: fengwang
* @date: 2019-02-19 15:59
* @version: 1.0
* @since: JDK 1.8
*/
public interface RegionService extends IService<Region> {
List<... | 396 | 0.712121 | 0.671717 | 20 | 18.799999 | 17.33955 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3 | false | false | 7 |
983b453c81d796a042de0694ed2464fcf62966c3 | 29,145,648,137,131 | 62d6970bc912f902a29b0e323c7c6158895f5f5a | /app/src/main/java/com/aj/socialImages/MainActivity.java | 191c5bd1674877e65088080033f5b15bfa924582 | [] | no_license | freebumba27/SocalImages | https://github.com/freebumba27/SocalImages | 3c74deebccf686c9fbebe6e62bf793560b3deee1 | da7acdd284829068896e888202821edc76e9f1b7 | refs/heads/master | 2016-09-13T19:27:05.065000 | 2016-05-20T03:11:54 | 2016-05-20T03:11:54 | 59,260,989 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.aj.socialImages;
import android.content.Intent;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.pm.Signature;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Base64;
import android.util.Log;
import androi... | UTF-8 | Java | 4,643 | java | MainActivity.java | Java | [] | null | [] | package com.aj.socialImages;
import android.content.Intent;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.pm.Signature;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Base64;
import android.util.Log;
import androi... | 4,643 | 0.637303 | 0.634934 | 143 | 31.468531 | 25.954992 | 125 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.496504 | false | false | 7 |
ca7dbb7a4bf7dafc715988678474a5e1cec09dae | 5,471,788,357,519 | f8cf51eb4f81ed2b40834d73b165c2c8062873cb | /switch-cloud/switch-cloud-manageport/src/main/java/com/windaka/suizhi/manageport/service/impl/HouseRoomServiceImpl.java | 2fdd6dd6f7f2af0e11285f36d4b871c6298208e8 | [] | no_license | wujianjun789/oldGongan | https://github.com/wujianjun789/oldGongan | 646bd5b22e0d9382cf6ee2a0941035d99f9aa961 | 8d85b827d8829e3923db174a8f3a867d73547db1 | refs/heads/master | 2022-10-24T16:09:01.324000 | 2020-06-09T08:22:45 | 2020-06-09T08:22:45 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.windaka.suizhi.manageport.service.impl;
import com.windaka.suizhi.api.common.ReturnConstants;
import com.windaka.suizhi.common.exception.OssRenderException;
import com.windaka.suizhi.common.utils.SqlFileUtil;
import com.windaka.suizhi.manageport.dao.HouseRoomDao;
import com.windaka.suizhi.manageport.servic... | UTF-8 | Java | 6,285 | java | HouseRoomServiceImpl.java | Java | [] | null | [] | package com.windaka.suizhi.manageport.service.impl;
import com.windaka.suizhi.api.common.ReturnConstants;
import com.windaka.suizhi.common.exception.OssRenderException;
import com.windaka.suizhi.common.utils.SqlFileUtil;
import com.windaka.suizhi.manageport.dao.HouseRoomDao;
import com.windaka.suizhi.manageport.servic... | 6,285 | 0.544219 | 0.543579 | 141 | 43.347519 | 27.007219 | 121 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.035461 | false | false | 7 |
4fe0a6068c7b855edb49cfd62c90218d65d2add9 | 18,442,589,592,992 | a08ab317d3e0fa99494fb78349927465ef53fb13 | /Code for Semester 1 Java/BackwardsArray.java | 0391f4dcd195a50db2743d05d82c199cc03e3883 | [] | no_license | RonanBehan26/University-Portfolio | https://github.com/RonanBehan26/University-Portfolio | d02a60984d0d6402e97a1696bd942f15d5a8a467 | f2b5b0cac60e25b4fb77c481722c98f4594466cf | refs/heads/main | 2023-06-14T14:49:43.850000 | 2021-07-07T12:07:33 | 2021-07-07T12:07:33 | 331,431,478 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class BackwardsArray{
//vars
private double[] nums;
//constructor
public BackwardsArray(){
nums=new double[6];
newNums=new double[nums.length];
}
//set - send over to instantiable
public void setNums(double[] nums){
this.nums=nums; //take array and put inside this array
}
//compute -... | UTF-8 | Java | 562 | java | BackwardsArray.java | Java | [] | null | [] | public class BackwardsArray{
//vars
private double[] nums;
//constructor
public BackwardsArray(){
nums=new double[6];
newNums=new double[nums.length];
}
//set - send over to instantiable
public void setNums(double[] nums){
this.nums=nums; //take array and put inside this array
}
//compute -... | 562 | 0.66548 | 0.660142 | 24 | 21.5 | 16.049402 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.416667 | false | false | 7 |
25d5f7c42c15ad79e4a5306e2d81767e9e778a9d | 28,750,511,086,524 | 6f41781ede07b85747309f5f7eb6cfb0f3ebb6d7 | /src/main/java/com/appspot/soundtricker/gaslibrarybox/model/Member.java | d5430666bd13f5a326487bdb2fc31565710d3460 | [
"Apache-2.0"
] | permissive | soundTricker/gas-library-box-server | https://github.com/soundTricker/gas-library-box-server | e2383a0e8adad83cd56dd1bbe3ab3ada56a1a242 | 3360be1ab4064b102d4325c018e66ea080c35b0f | refs/heads/master | 2021-01-23T17:19:32.804000 | 2013-09-12T00:41:03 | 2013-09-12T00:41:03 | 12,175,138 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.appspot.soundtricker.gaslibrarybox.model;
import java.io.Serializable;
import java.util.Date;
import org.slim3.datastore.Attribute;
import org.slim3.datastore.CreationDate;
import org.slim3.datastore.Model;
import org.slim3.datastore.ModificationDate;
import com.google.appengine.api.datastore.K... | UTF-8 | Java | 3,235 | java | Member.java | Java | [] | null | [] | package com.appspot.soundtricker.gaslibrarybox.model;
import java.io.Serializable;
import java.util.Date;
import org.slim3.datastore.Attribute;
import org.slim3.datastore.CreationDate;
import org.slim3.datastore.Model;
import org.slim3.datastore.ModificationDate;
import com.google.appengine.api.datastore.K... | 3,235 | 0.569706 | 0.566615 | 158 | 18.474684 | 15.622403 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.601266 | false | false | 7 |
d39a34b773d6d0ff14e91af14c78732f9ca82b5a | 18,511,309,075,025 | 6a526623de4fe2280228cdaf3884d1c5c5ab220b | /d03/src/com/test/App.java | 19d0c81547aee6342e394d8fc292506bd4de4929 | [] | no_license | KiHoonAhn1/spring-learned | https://github.com/KiHoonAhn1/spring-learned | 5215ec7522b0acb81935de7898734b0133bb810a | 966113234e0f654dfcff263f0d2c6ff07ab60f8c | refs/heads/master | 2023-01-03T19:20:08.252000 | 2020-11-03T08:50:40 | 2020-11-03T08:50:40 | 296,627,049 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.test;
import java.util.ArrayList;
import java.util.HashMap;
import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.context.support.GenericXmlApplicationContext;import com.frame.Biz;
import com.vo.ContentsVo;
public class App {
public static void main(String[]... | WINDOWS-1252 | Java | 1,972 | java | App.java | Java | [] | null | [] | package com.test;
import java.util.ArrayList;
import java.util.HashMap;
import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.context.support.GenericXmlApplicationContext;import com.frame.Biz;
import com.vo.ContentsVo;
public class App {
public static void main(String[]... | 1,972 | 0.608163 | 0.597959 | 84 | 22.333334 | 17.783978 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.654762 | false | false | 7 |
28a646a3d3669603e2502927b2e8dba51eb3518d | 6,794,638,273,250 | be03cc94535e86282402077938b666eba9397823 | /src/main/java/manger/main/HelloWorld.java | d24a5b51a0d520967ae482a23c051e2c1a4ca13c | [] | no_license | gitwithsean/manger | https://github.com/gitwithsean/manger | 5b9b2be6a6d34ec9ce5cfa0f6a78df2e537c4ac7 | 940c6a05aa5a306c5d14ec393c3f9a00ef3b7c88 | refs/heads/master | 2021-01-19T23:44:00.888000 | 2017-04-21T21:37:15 | 2017-04-21T21:37:15 | 89,016,346 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package manger.main;
/**
* Created by sean.ryan on 4/21/17.
*/
public class HelloWorld {
public static String getMessage(){
return "Hello World!";
}
}
| UTF-8 | Java | 172 | java | HelloWorld.java | Java | [
{
"context": "package manger.main;\n\n/**\n * Created by sean.ryan on 4/21/17.\n */\npublic class HelloWorld {\n\n ",
"end": 44,
"score": 0.7759628295898438,
"start": 40,
"tag": "NAME",
"value": "sean"
},
{
"context": "package manger.main;\n\n/**\n * Created by sean.ryan on 4/21/17.\... | null | [] | package manger.main;
/**
* Created by sean.ryan on 4/21/17.
*/
public class HelloWorld {
public static String getMessage(){
return "Hello World!";
}
}
| 172 | 0.616279 | 0.587209 | 12 | 13.333333 | 14.447222 | 38 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.166667 | false | false | 7 |
d027687213559f34cf2a488ce26e16ec92ba8c6a | 12,773,232,764,725 | 60c194b8e4903d9ae2d762700d2d0bcac197e51a | /src/main/java/com/qumaiyao/pharmacy/service/PharmacyGoodsTranService.java | 05528c6ff4c50f3664a295f65cbd8e1109fa26a2 | [] | no_license | tiantianfeiche/qumaiyao-web-new | https://github.com/tiantianfeiche/qumaiyao-web-new | b5746a42153a599ade882356e3f225c58bbe6b49 | ad09e78cc8cd27afa2fa6e088403cad8d917ff89 | refs/heads/master | 2016-08-06T03:34:54.592000 | 2015-03-04T02:05:16 | 2015-03-04T02:05:16 | 31,632,144 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.qumaiyao.pharmacy.service;
public interface PharmacyGoodsTranService {
/**
* 批量删除
*
* @param json
* pharmacyGoods集合字符串
* @return
*/
boolean delList(String jsonStr);
}
| UTF-8 | Java | 236 | java | PharmacyGoodsTranService.java | Java | [] | null | [] | package com.qumaiyao.pharmacy.service;
public interface PharmacyGoodsTranService {
/**
* 批量删除
*
* @param json
* pharmacyGoods集合字符串
* @return
*/
boolean delList(String jsonStr);
}
| 236 | 0.623853 | 0.623853 | 12 | 16.166666 | 15.257967 | 43 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.833333 | false | false | 7 |
ec4cd2200e93b65eda3a210030a29966cd0ba72d | 31,009,663,942,023 | a4a51084cfb715c7076c810520542af38a854868 | /src/main/java/com/shopee/app/ui/setting/notification2/d.java | 95d3493960217a91d8ed71ad57a3a3857714caea | [] | no_license | BharathPalanivelu/repotest | https://github.com/BharathPalanivelu/repotest | ddaf56a94eb52867408e0e769f35bef2d815da72 | f78ae38738d2ba6c9b9b4049f3092188fabb5b59 | refs/heads/master | 2020-09-30T18:55:04.802000 | 2019-12-02T10:52:08 | 2019-12-02T10:52:08 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.shopee.app.ui.setting.notification2;
import android.app.Activity;
import android.content.Context;
import android.view.View;
import android.widget.LinearLayout;
import com.garena.android.appkit.tools.b;
import com.shopee.app.appuser.UserInfo;
import com.shopee.app.data.store.RegionConfig;
import com.shopee.... | UTF-8 | Java | 6,960 | java | d.java | Java | [] | null | [] | package com.shopee.app.ui.setting.notification2;
import android.app.Activity;
import android.content.Context;
import android.view.View;
import android.widget.LinearLayout;
import com.garena.android.appkit.tools.b;
import com.shopee.app.appuser.UserInfo;
import com.shopee.app.data.store.RegionConfig;
import com.shopee.... | 6,960 | 0.562931 | 0.541236 | 266 | 25.165413 | 21.379028 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.481203 | false | false | 7 |
9036f40e17e210dc716701272024c3d9ee7995ee | 22,909,355,566,868 | ce679f6ba454a54e75eab08c6fdf750522117059 | /app/src/main/java/com/oscc/oscc/Adapters/HospitalAdapter.java | 9b1256901ce73eb150d0e4aee7a6241e689834c4 | [] | no_license | reemeeiah/oscc | https://github.com/reemeeiah/oscc | 30557c552644c25765c0d21e17c78270c0eb96b1 | f78be52082c01dfe6be6766e7a7edd1862c5aae2 | refs/heads/master | 2021-04-06T09:04:41.274000 | 2018-04-15T12:24:00 | 2018-04-15T12:24:00 | 125,256,120 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.oscc.oscc.Adapters;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;
import com.oscc.oscc.Models.Hospital;
import com.oscc.oscc.R;
import java.util.ArrayList;
/... | UTF-8 | Java | 1,122 | java | HospitalAdapter.java | Java | [
{
"context": "R;\n\nimport java.util.ArrayList;\n\n/**\n * Created by Nona on 3/17/2018.\n */\n\npublic class HospitalAdapter e",
"end": 341,
"score": 0.9231034517288208,
"start": 337,
"tag": "USERNAME",
"value": "Nona"
}
] | null | [] | package com.oscc.oscc.Adapters;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.TextView;
import com.oscc.oscc.Models.Hospital;
import com.oscc.oscc.R;
import java.util.ArrayList;
/... | 1,122 | 0.713012 | 0.704991 | 38 | 28.526316 | 29.015184 | 113 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.631579 | false | false | 7 |
34a026e6fcd31d6c2f143cab3cddab15d748573b | 27,745,488,784,742 | a1853f8eb4e5809b3bcfae7e0c50f3000b0a7b9d | /shouba/Zeus/zeus-receives-web/src/main/java/com/zeus/service/SiteWorkUsersService.java | 66c607f315b028e63d8f39e8f6bf7d8de5a5e96c | [] | no_license | lhyazst/coding | https://github.com/lhyazst/coding | 3323c51f7b75aebf298b444abe95e9cf2675d734 | 92d85faf16479b6c4ab56df9fa79aff3cdf77279 | refs/heads/master | 2020-04-19T02:16:54.151000 | 2019-02-19T09:09:37 | 2019-02-19T09:09:37 | 167,897,200 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.zeus.service;
import com.zeus.common.QueryResponseResult;
/**
* @Description 活动操作服务层
* @Author wangdi
* @Date 16/12/2018 21:56
* @Version V1.0
*/
public interface SiteWorkUsersService {
/**
*
*
* @methodName siteWorkUsersSelect 回收员查询出回收管理里面的统计回收袋数量和站点数量
* @author wangdi
... | UTF-8 | Java | 547 | java | SiteWorkUsersService.java | Java | [
{
"context": "nseResult;\n\n/**\n * @Description 活动操作服务层\n * @Author wangdi\n * @Date 16/12/2018 21:56\n * @Version V1.0\n */\npu",
"end": 118,
"score": 0.9992167353630066,
"start": 112,
"tag": "USERNAME",
"value": "wangdi"
},
{
"context": "ersSelect 回收员查询出回收管理里面的统计回收袋数量和站点数量\n *... | null | [] | package com.zeus.service;
import com.zeus.common.QueryResponseResult;
/**
* @Description 活动操作服务层
* @Author wangdi
* @Date 16/12/2018 21:56
* @Version V1.0
*/
public interface SiteWorkUsersService {
/**
*
*
* @methodName siteWorkUsersSelect 回收员查询出回收管理里面的统计回收袋数量和站点数量
* @author wangdi
... | 547 | 0.666667 | 0.623188 | 27 | 16.888889 | 19.060009 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.111111 | false | false | 7 |
86485fdde21870c782288edca1beeba3039ac698 | 32,169,305,116,146 | 2ba31c72d826b767efafc9316b401e540d081fa1 | /src/main/java/io/github/xiaour/datasync/ui/panel/DatabasePanelTo.java | dce208601671f8f6d0c199341ab50954cfe81db8 | [
"MIT"
] | permissive | xiaour/DataSyncTools | https://github.com/xiaour/DataSyncTools | feb18b30152eb0e66ac4ddef40c30c17cfc7d1b2 | cffdb6cc1e36fcbac0be81bde1afc19c04328ca1 | refs/heads/master | 2023-03-22T05:40:21.230000 | 2021-03-08T07:33:08 | 2021-03-08T07:33:08 | 345,567,125 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package io.github.xiaour.datasync.ui.panel;
import io.github.xiaour.datasync.App;
import io.github.xiaour.datasync.enums.DangerOperationEnum;
import io.github.xiaour.datasync.logic.sync.DataBaseInfo;
import io.github.xiaour.datasync.logic.sync.DataBaseSync;
import io.github.xiaour.datasync.tools.ConstantsTools;
import... | UTF-8 | Java | 12,864 | java | DatabasePanelTo.java | Java | [
{
"context": "java.sql.Connection;\n\n/**\n * 目标数据库面板\n *\n * @author Bob\n */\npublic class DatabasePanelTo extends JPanel{\n",
"end": 733,
"score": 0.933551549911499,
"start": 730,
"tag": "NAME",
"value": "Bob"
},
{
"context": "d();\n passwordFieldDatabasePassword = new JPas... | null | [] | package io.github.xiaour.datasync.ui.panel;
import io.github.xiaour.datasync.App;
import io.github.xiaour.datasync.enums.DangerOperationEnum;
import io.github.xiaour.datasync.logic.sync.DataBaseInfo;
import io.github.xiaour.datasync.logic.sync.DataBaseSync;
import io.github.xiaour.datasync.tools.ConstantsTools;
import... | 12,850 | 0.667938 | 0.663251 | 324 | 37.851852 | 33.700153 | 195 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.669753 | false | false | 7 |
c0b8c5a6a8d6e6b2e0b2c7d41fe6a80b123b40b7 | 386,547,126,165 | c3e152039fffb8c97bb7f417d9679fc7c777ae5f | /app/src/main/java/com/devperso/benjamin/a2playergame/Case.java | 4965631d5f7d3692dde973e3776205cda2b74b0f | [] | no_license | bdi-carlo/2PlayerGame | https://github.com/bdi-carlo/2PlayerGame | 68629f1f91615af5f7e291860ec9e0ed0e1a27d9 | 4c0301169c153c65b428bddeb7ef40eee68830d7 | refs/heads/master | 2020-04-21T12:05:06.294000 | 2019-04-26T12:35:29 | 2019-04-26T12:35:29 | 169,550,772 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.devperso.benjamin.a2playergame;
import android.content.Context;
import android.view.Gravity;
import android.view.View;
import android.widget.ImageView;
import android.widget.Toast;
public class Case {
private int joueur;
private TicTacToeActivity game;
private ImageView imageView;... | UTF-8 | Java | 1,886 | java | Case.java | Java | [] | null | [] | package com.devperso.benjamin.a2playergame;
import android.content.Context;
import android.view.Gravity;
import android.view.View;
import android.widget.ImageView;
import android.widget.Toast;
public class Case {
private int joueur;
private TicTacToeActivity game;
private ImageView imageView;... | 1,886 | 0.552492 | 0.54825 | 67 | 26.149254 | 21.066528 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.537313 | false | false | 7 |
937d3e2a77c0dca4824dfaf8be4ad0b14c8d2a21 | 17,875,653,897,768 | d65bdbf1e2d24ee7705e75e7dbc3f2e440537c48 | /src/RGT/common/interfaces/IBusinessProcess.java | 4c197cbc01724e2d08d7b1af8e1c25ab72c0e650 | [] | no_license | himatbhanushali/Requirement-Generator-Tool | https://github.com/himatbhanushali/Requirement-Generator-Tool | 2d33b78a0e6e91dadedd6ff24f34fd599eeaa452 | dd06a39f4da59e9ae82ce4040061f421456cfdee | refs/heads/master | 2021-07-19T20:18:18.703000 | 2016-11-28T08:14:16 | 2017-10-25T07:14:52 | 108,233,516 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package RGT.common.interfaces;
import java.util.List;
public interface IBusinessProcess extends IVerbNounPhrase {
public boolean addStep(IStep aStep);
public boolean removeStep(IStep aStep);
public List<IStep> getSteps();
}
| UTF-8 | Java | 230 | java | IBusinessProcess.java | Java | [] | null | [] | package RGT.common.interfaces;
import java.util.List;
public interface IBusinessProcess extends IVerbNounPhrase {
public boolean addStep(IStep aStep);
public boolean removeStep(IStep aStep);
public List<IStep> getSteps();
}
| 230 | 0.795652 | 0.795652 | 9 | 24.555555 | 19.528391 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.888889 | false | false | 7 |
fd7b071392a66255801d1328054f611019840b04 | 29,497,835,455,240 | 417cb866817704b0dcde81bb24b334be1423e2ab | /FinancimientoDeProyectos/src/financiamientodeproyectos/Registro.java | b777666537a921889b00bb9065b949eed4590f83 | [] | no_license | GelukkigTurtle/Calculadora-Evaluacion-de-proyectos-de-Centros-de-Computo | https://github.com/GelukkigTurtle/Calculadora-Evaluacion-de-proyectos-de-Centros-de-Computo | e50dd1848c965460fe80629af038f491617262b0 | 22412a0162e87599806fc425de3280fcaef5eaba | refs/heads/master | 2021-01-23T08:28:17.416000 | 2016-11-14T16:20:23 | 2016-11-14T16:20:23 | 29,138,886 | 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 financiamientodeproyectos;
import java.math.BigDecimal;
/**
*
* @author Freddy
*/
public class Registro {
BigDecimal a... | UTF-8 | Java | 1,621 | java | Registro.java | Java | [
{
"context": ";\n\nimport java.math.BigDecimal;\n\n/**\n *\n * @author Freddy\n */\npublic class Registro {\n BigDecimal anio;\n",
"end": 275,
"score": 0.9989199638366699,
"start": 269,
"tag": "NAME",
"value": "Freddy"
}
] | 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 financiamientodeproyectos;
import java.math.BigDecimal;
/**
*
* @author Freddy
*/
public class Registro {
BigDecimal a... | 1,621 | 0.752622 | 0.752622 | 73 | 21.205479 | 19.029867 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.369863 | false | false | 7 |
91e3bf03433228fccadb2197bed613a5beb3acb4 | 19,628,000,602,686 | 8ef96f524f2f33ee890c89fa404b9d09a1f06d46 | /library/src/main/java/com/kevinleighcrain/opengl/core/MovableImage2D.java | fcfca2e266ddf9330ee3c7d896014ca1cd93b85d | [] | no_license | KevinLeighCrain/OpenGLKit | https://github.com/KevinLeighCrain/OpenGLKit | 2d60fb8f9f27ff5d3f8f7889c54bccd34d067b60 | 039472b3a6fea2d9c392de5ad9f9606966976a1b | refs/heads/master | 2016-09-13T14:55:21.318000 | 2016-06-10T12:02:32 | 2016-06-10T12:02:32 | 60,014,764 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.kevinleighcrain.opengl.core;
import android.content.Context;
import android.graphics.PointF;
/**
* @author Kevin Leigh Crain
*/
public abstract class MovableImage2D extends Image2D implements IMovable {
public MovableImage2D(Context context,
Texture texture,
... | UTF-8 | Java | 562 | java | MovableImage2D.java | Java | [
{
"context": "import android.graphics.PointF;\r\n\r\n/**\r\n * @author Kevin Leigh Crain\r\n */\r\npublic abstract class MovableImage2D extend",
"end": 145,
"score": 0.9998767971992493,
"start": 128,
"tag": "NAME",
"value": "Kevin Leigh Crain"
}
] | null | [] | package com.kevinleighcrain.opengl.core;
import android.content.Context;
import android.graphics.PointF;
/**
* @author <NAME>
*/
public abstract class MovableImage2D extends Image2D implements IMovable {
public MovableImage2D(Context context,
Texture texture,
... | 551 | 0.55516 | 0.549822 | 19 | 27.578947 | 22.25289 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.736842 | false | false | 7 |
561383c939c5d79db26fba470c3c6d73602c5a18 | 10,299,331,638,589 | eb9f655206c43c12b497c667ba56a0d358b6bc3a | /java/java-tests/testData/inspection/dataFlow/tracker/SimpleContract.java | 566cfb97c17a487b4647e209d4eaa7681d140095 | [
"Apache-2.0"
] | permissive | JetBrains/intellij-community | https://github.com/JetBrains/intellij-community | 2ed226e200ecc17c037dcddd4a006de56cd43941 | 05dbd4575d01a213f3f4d69aa4968473f2536142 | refs/heads/master | 2023-09-03T17:06:37.560000 | 2023-09-03T11:51:00 | 2023-09-03T12:12:27 | 2,489,216 | 16,288 | 6,635 | Apache-2.0 | false | 2023-09-12T07:41:58 | 2011-09-30T13:33:05 | 2023-09-12T03:37:30 | 2023-09-12T06:46:46 | 4,523,919 | 15,754 | 4,972 | 237 | null | false | false | /*
Value is always false (Objects.isNull(s); line#12)
According to inferred contract, method 'isNull' returns 'false' when s != null (isNull; line#12)
's' was dereferenced (s; line#11)
*/
import java.util.Objects;
class Test {
void test(String s) {
System.out.println(s.trim());
if (<selection>Objects... | UTF-8 | Java | 364 | java | SimpleContract.java | Java | [] | null | [] | /*
Value is always false (Objects.isNull(s); line#12)
According to inferred contract, method 'isNull' returns 'false' when s != null (isNull; line#12)
's' was dereferenced (s; line#11)
*/
import java.util.Objects;
class Test {
void test(String s) {
System.out.println(s.trim());
if (<selection>Objects... | 364 | 0.64011 | 0.623626 | 16 | 21.8125 | 26.139574 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.375 | false | false | 7 |
0a83f4a7d6b4d22c473b9597110ca0eba5005de9 | 919,123,015,781 | 8b415499ed2f73b1cf05ef7b8f793248bb97ec86 | /src/main/java/com/opportunitymanagement/app/service/OpportunityService.java | 0ccd2da3ddf588858484231418b259451535140f | [] | no_license | joablisa1/opportunity | https://github.com/joablisa1/opportunity | 4935290bda0c63036e9d0e06602b4ea45f1ccf8f | 34255db8aff41fa37263ef42e7d4022334471111 | refs/heads/master | 2023-03-06T23:30:55.992000 | 2021-02-20T22:56:22 | 2021-02-20T22:56:22 | 340,646,676 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.opportunitymanagement.app.service;
import com.opportunitymanagement.app.entities.Account;
import com.opportunitymanagement.app.entities.Opportunity;
import java.util.List;
public interface OpportunityService {
Opportunity createOpportunity(Opportunity opportunity);
Opportunity getOpportunityByID(... | UTF-8 | Java | 499 | java | OpportunityService.java | Java | [] | null | [] | package com.opportunitymanagement.app.service;
import com.opportunitymanagement.app.entities.Account;
import com.opportunitymanagement.app.entities.Opportunity;
import java.util.List;
public interface OpportunityService {
Opportunity createOpportunity(Opportunity opportunity);
Opportunity getOpportunityByID(... | 499 | 0.805611 | 0.805611 | 15 | 32.266666 | 21.324373 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 7 |
e8670eb19134506a6570392320f51e15e1246e54 | 446,676,602,813 | 1f31438246d958e3f0ed7223d13c9c842e5a6e9c | /test/datastore/LoadSaveGameStateTest.java | d59c50fbabc76b659f443978ec89ed15e863af37 | [] | no_license | liljaminkev/SEII_HearthStone | https://github.com/liljaminkev/SEII_HearthStone | 931b17a6062a77cce4875432a9e81456bbf99025 | 1b45e040b26557e6d881172f34a66390b6e6e605 | refs/heads/master | 2021-01-19T22:09:08.351000 | 2017-03-11T03:46:55 | 2017-03-11T03:46:55 | 80,075,042 | 0 | 0 | null | false | 2017-03-11T03:46:55 | 2017-01-26T01:15:33 | 2017-02-03T07:24:42 | 2017-03-11T03:46:55 | 175 | 0 | 0 | 2 | Java | 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 datastore;
import datastore.*;
import playerassets.*;
import hero.*;
import hero.hearthstone.*;
import hero.stormwars.*;
impor... | UTF-8 | Java | 1,350 | java | LoadSaveGameStateTest.java | Java | [
{
"context": "port static org.junit.Assert.*;\n\n/**\n *\n * @author James\n */\npublic class LoadSaveGameStateTest {\n Play",
"end": 532,
"score": 0.9983772039413452,
"start": 527,
"tag": "NAME",
"value": "James"
}
] | 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 datastore;
import datastore.*;
import playerassets.*;
import hero.*;
import hero.hearthstone.*;
import hero.stormwars.*;
impor... | 1,350 | 0.615556 | 0.600741 | 58 | 22.275862 | 18.198895 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.689655 | false | false | 7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.