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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
63102c2d744813d164e81f486568f790f7f81f63 | 16,724,602,657,148 | d7d598324a9f17012abc094fac03d8460995fa09 | /src/main/java/exercitii/OOP3exercises/CircleFirst.java | 989cd06b641563c5a06f06e35db0258bed5805cc | [] | no_license | Bogdan051979/demo_repo | https://github.com/Bogdan051979/demo_repo | de8d3391384f9fa5be76ff3c606656b3c15c0dd4 | 1cb96d886e604280e1fa5b665bdc96e8eae5888f | refs/heads/master | 2023-05-31T09:51:53.607000 | 2021-06-05T12:38:50 | 2021-06-05T12:38:50 | 374,086,323 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package exercitii.OOP3exercises;
public class CircleFirst {
// public constants
public static final double DEFAULT_RADIUS = 1.0;
public static final String DEFAULT_COLOR = "red";
// private instance variables
private double radius;
private String color;
// the overloaded constructors
// constructs a CircleF... | UTF-8 | Java | 1,750 | java | CircleFirst.java | Java | [] | null | [] | package exercitii.OOP3exercises;
public class CircleFirst {
// public constants
public static final double DEFAULT_RADIUS = 1.0;
public static final String DEFAULT_COLOR = "red";
// private instance variables
private double radius;
private String color;
// the overloaded constructors
// constructs a CircleF... | 1,750 | 0.725143 | 0.720571 | 70 | 24 | 22.871067 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.2 | false | false | 9 |
da8af0d18274e779f2dd90b163419eee0b9c4ecd | 21,251,498,189,453 | fc8472bf5920deefda2c5c85855d111d4d49727c | /0936-stamping-the-sequence.java | 7cffcf79bf4a17e77c7468476d0c47fcbb885ede | [] | no_license | leetcodepeasant/LeetCode_Solutions | https://github.com/leetcodepeasant/LeetCode_Solutions | 03944532495be0d33929758d7da95f8e99160651 | d011bbd376cf9b8261b45b80782a101f747696b5 | refs/heads/main | 2023-03-28T17:39:13.893000 | 2021-04-03T22:02:24 | 2021-04-03T22:02:24 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | class Solution {
public int[] movesToStamp(String stamp, String target) {
char[] S = stamp.toCharArray();
char[] T = target.toCharArray();
List<Integer> ans = new ArrayList<>();
boolean[] visited = new boolean[T.length - S.length + 1];
int questions = 0;
whil... | UTF-8 | Java | 2,183 | java | 0936-stamping-the-sequence.java | Java | [] | null | [] | class Solution {
public int[] movesToStamp(String stamp, String target) {
char[] S = stamp.toCharArray();
char[] T = target.toCharArray();
List<Integer> ans = new ArrayList<>();
boolean[] visited = new boolean[T.length - S.length + 1];
int questions = 0;
whil... | 2,183 | 0.452588 | 0.448923 | 58 | 36.637932 | 25.185312 | 101 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.706897 | false | false | 9 |
3750d0a98930b20fc6caa6b8a5b2c8fe2c3f6267 | 23,115,513,992,823 | 78bad9aadefb31fb967e5be20d44c3455b3c021c | /src/main/java/User.java | d0dcac814cec2de334833fd775829ab8e4ff540d | [
"MIT"
] | permissive | bord81/Online-shop-on-MVC | https://github.com/bord81/Online-shop-on-MVC | d78bbc2bd63a9face98359d0bf468cdc2fe1e4d9 | 2109f9fe94a3cc52f529dae4fb750bbdedb41597 | refs/heads/master | 2021-01-21T14:58:25.174000 | 2017-05-19T17:16:47 | 2017-05-19T17:16:47 | 91,827,885 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pshopmvc;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.Id;
@Entity
public class User implements Serializable{
@Id
private int id;
private String cookie;
private String basket;
public int getId() {
return id;
}
public void setId(i... | UTF-8 | Java | 815 | java | User.java | Java | [] | null | [] | package pshopmvc;
import java.io.Serializable;
import javax.persistence.Entity;
import javax.persistence.Id;
@Entity
public class User implements Serializable{
@Id
private int id;
private String cookie;
private String basket;
public int getId() {
return id;
}
public void setId(i... | 815 | 0.595092 | 0.595092 | 47 | 16.340425 | 14.600024 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.382979 | false | false | 9 |
0ec7ffc46903b5f1afbb18f3a8453fcc07e785c0 | 23,441,931,506,607 | dccf28692f23f877cc65d57f50017b64fd491cb5 | /src/com/example/bootcamp/GetImageTask.java | 3a6b4776ff85402cf8f496b8cabacf5c9df5b4a1 | [] | no_license | pivotal-lihao-luo/Bootcamp | https://github.com/pivotal-lihao-luo/Bootcamp | dd4db522358133764133aeec281dcdcd797c15b9 | 62d71e52debcf23aba38b92879a5bfbfa8a9a4cb | refs/heads/master | 2016-09-05T11:40:17.657000 | 2014-09-05T20:40:02 | 2014-09-05T20:40:02 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.bootcamp;
import java.io.InputStream;
import java.net.URL;
import java.util.HashMap;
import android.graphics.drawable.Drawable;
import android.os.AsyncTask;
import android.util.Log;
public class GetImageTask {
private static GetImageTask instance;
private HashMap<String, Drawable> cache;
pri... | UTF-8 | Java | 1,399 | java | GetImageTask.java | Java | [] | null | [] | package com.example.bootcamp;
import java.io.InputStream;
import java.net.URL;
import java.util.HashMap;
import android.graphics.drawable.Drawable;
import android.os.AsyncTask;
import android.util.Log;
public class GetImageTask {
private static GetImageTask instance;
private HashMap<String, Drawable> cache;
pri... | 1,399 | 0.694782 | 0.693352 | 62 | 21.580645 | 19.727619 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.112903 | false | false | 9 |
63c7a0c82fc49ed294bcfd40af303fb067d7fd89 | 26,723,286,522,308 | 2c82685308270e02066234e8c5db298bc20f14d4 | /src/com/atguigui/truck/truckTest.java | a79fa8c70ef21c6b74f667d50a7c096967d2d4f5 | [] | no_license | rockpm/lalala | https://github.com/rockpm/lalala | 4e350a7b973a65906e8d9e397e9c66f9d549f36d | 94078f89d43307ee4b9f065443688bf8f7555c06 | refs/heads/master | 2020-03-17T14:19:19.021000 | 2018-05-16T13:31:37 | 2018-05-16T13:31:37 | 133,667,100 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.atguigui.truck;
public class truckTest {
public static void main(String[] args) {
System.out.println("lalala");
System.out.println("123");
System.out.println("456");
System.out.println("789");
}
}
| UTF-8 | Java | 234 | java | truckTest.java | Java | [] | null | [] | package com.atguigui.truck;
public class truckTest {
public static void main(String[] args) {
System.out.println("lalala");
System.out.println("123");
System.out.println("456");
System.out.println("789");
}
}
| 234 | 0.649573 | 0.611111 | 12 | 17.5 | 14.801464 | 41 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.25 | false | false | 9 |
d329a8d27939a518e7585f152513613b7e236674 | 11,149,735,113,599 | 7f2e4e6f6cb7f38b18baeb72ff11646339e8f824 | /src/com/syntax/class14/MethodExamples.java | fa759a47e1825eb2034fc8fee6185b76436dd1d9 | [] | no_license | ChuyG1/JavaBasics | https://github.com/ChuyG1/JavaBasics | 6839a3bbd45d320a65b638bf2a0c36bfbdd531ba | 11241259cf2f314832e167f4f5e344dd3d9d5a29 | refs/heads/master | 2021-03-31T11:46:47.923000 | 2020-05-02T17:38:57 | 2020-05-02T17:38:57 | 248,104,547 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.syntax.class14;
public class MethodExamples {
//want to create a method that will be greeting a person
void greet(String name) {
System.out.println("Hello "+name);
}
public static void main(String[] args) {
//how do i call method greet?
//ClassName variableName=new ClassName();
MethodExamp... | UTF-8 | Java | 461 | java | MethodExamples.java | Java | [
{
"context": "es object1=new MethodExamples();\n\t\tobject1.greet(\"Chuy\");\n\t\tobject1.greet(\"Angel\");\n\t\tobject1.greet(\"Pri",
"end": 375,
"score": 0.999312162399292,
"start": 371,
"tag": "NAME",
"value": "Chuy"
},
{
"context": "ples();\n\t\tobject1.greet(\"Chuy\");\n\t\tobje... | null | [] | package com.syntax.class14;
public class MethodExamples {
//want to create a method that will be greeting a person
void greet(String name) {
System.out.println("Hello "+name);
}
public static void main(String[] args) {
//how do i call method greet?
//ClassName variableName=new ClassName();
MethodExamp... | 461 | 0.70282 | 0.687636 | 20 | 22.049999 | 17.45129 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.55 | false | false | 9 |
cfe5266099cdc77b2ed89ae5add1d584014b38a5 | 29,008,209,125,774 | a7f104284e2565081e579c03807afee23f105121 | /src/main/java/com/zhenghao/dbmigration/entity/sqlserver/SQLServerToolCategory.java | 0bfd2b4f97e84e939521010f639fb4ac19b7a5ac | [] | no_license | ls1314loveni/DBMigration | https://github.com/ls1314loveni/DBMigration | 2deb0bec6d471040c67439ee8bbbcf8f893131de | 890c27fca8e8b1756a4bfd309889595a062fa0f7 | refs/heads/master | 2020-07-24T12:53:59.670000 | 2019-09-19T11:36:38 | 2019-09-19T11:36:38 | 207,935,195 | 0 | 0 | null | false | 2020-07-01T18:58:06 | 2019-09-12T01:03:25 | 2019-09-19T11:44:38 | 2020-07-01T18:58:04 | 89 | 0 | 0 | 1 | Java | false | false | package com.zhenghao.dbmigration.entity.sqlserver;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@Data
@TableName(value = "tool_category")
public class SQLServerToolCategory {
private Integer categoryId;
private String categoryName;
private Integer fatherId;
private String... | UTF-8 | Java | 337 | java | SQLServerToolCategory.java | Java | [] | null | [] | package com.zhenghao.dbmigration.entity.sqlserver;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
@Data
@TableName(value = "tool_category")
public class SQLServerToolCategory {
private Integer categoryId;
private String categoryName;
private Integer fatherId;
private String... | 337 | 0.783383 | 0.783383 | 15 | 21.466667 | 18.424139 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.466667 | false | false | 9 |
84f63e959ecf38ff2c553d6e11f6ffde2ddb1fb7 | 13,030,930,787,920 | 4d558449bd6a2f77e2cbbbba61a9d315fddf0c3e | /service/src/test/java/uk/gov/hmcts/reform/fpl/service/hearing/HearingServiceTest.java | e600939757e9836a6efe5c24b9b456c70dc9ae25 | [
"MIT"
] | permissive | hmcts/fpl-ccd-configuration | https://github.com/hmcts/fpl-ccd-configuration | e55bab0556fe435cbcd525dceef7ae1191cb6773 | c821243f4a93f1634da8ce43f3135d0f21a46000 | refs/heads/master | 2023-09-01T19:23:30.620000 | 2023-09-01T10:07:28 | 2023-09-01T10:07:28 | 150,105,196 | 14 | 7 | MIT | false | 2023-09-14T15:25:57 | 2018-09-24T13:15:51 | 2023-08-23T08:26:13 | 2023-09-14T15:25:55 | 40,062 | 14 | 7 | 47 | Java | false | false | package uk.gov.hmcts.reform.fpl.service.hearing;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.EnumSource;
import org.junit.jupiter.params.provider.NullSource;
... | UTF-8 | Java | 8,125 | java | HearingServiceTest.java | Java | [] | null | [] | package uk.gov.hmcts.reform.fpl.service.hearing;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Nested;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.EnumSource;
import org.junit.jupiter.params.provider.NullSource;
... | 8,125 | 0.626831 | 0.624615 | 223 | 35.434978 | 33.850422 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.408072 | false | false | 9 |
3693f5471bc934b766ec272466bfbe4c5f6c22b2 | 8,650,064,144,519 | 5409d9c3ea6b06d8c366dbbb0401b01292c761f5 | /egame.proxy.server.open.biz/src/cn/egame/proxy/server/open/biz/factory/AutoPurgeUrlThread.java | ef29bb69f8d19c5ee506247e913e15e0f7f9013c | [] | no_license | wendellup/varnish_egame | https://github.com/wendellup/varnish_egame | cacf7d9d26bd3cb7d3dc81755379c01fed27d8c3 | f90c2d6beddd3e287a414effe362e86d060e6b76 | refs/heads/master | 2018-12-28T15:36:28.592000 | 2015-05-11T10:35:05 | 2015-05-11T10:35:05 | 31,747,331 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.egame.proxy.server.open.biz.factory;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import org.apache.http.HttpEntity;
import or... | UTF-8 | Java | 24,252 | java | AutoPurgeUrlThread.java | Java | [
{
"context": "d main(String[] args) {\n//\t\tString url = \"http://192.168.70.156/api/v2/mobile/channel/content.json?channel_id=702",
"end": 22786,
"score": 0.7929772734642029,
"start": 22773,
"tag": "IP_ADDRESS",
"value": "92.168.70.156"
}
] | null | [] | package cn.egame.proxy.server.open.biz.factory;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import org.apache.http.HttpEntity;
import or... | 24,251 | 0.566889 | 0.559918 | 610 | 37.331146 | 28.954433 | 136 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.586885 | false | false | 9 |
16950aec7296af9ce8d36d00da105757c9f6927a | 25,159,918,429,666 | c8382a5e077c53617287d94eac196e2e6c99a860 | /DClick2.java | f6278b6b43c4a5cf443141a9080f8ad8dd960e18 | [] | no_license | aonatechnologies/SQL-Query-System | https://github.com/aonatechnologies/SQL-Query-System | c160d7e961141488dfac5edfe1b903ef5546822c | 546c826e650a2377a42cb7cb23f7d1d9629ccee4 | refs/heads/master | 2016-09-13T01:20:54.886000 | 2016-05-31T04:10:39 | 2016-05-31T04:10:39 | 58,554,054 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package initialClasses;
import java.awt.Frame;
import java.awt.Panel;
import java.awt.TextField;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
public class DClick2 implements MouseListener {
private TextField t1;
private TextField t3;
private TextField t2;
private TGMenu f;
... | UTF-8 | Java | 990 | java | DClick2.java | Java | [] | null | [] | package initialClasses;
import java.awt.Frame;
import java.awt.Panel;
import java.awt.TextField;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
public class DClick2 implements MouseListener {
private TextField t1;
private TextField t3;
private TextField t2;
private TGMenu f;
... | 990 | 0.69596 | 0.673737 | 54 | 16.333334 | 17.021772 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.240741 | false | false | 9 |
5d8f1fee374f59f64952a9c171da35a41e721f66 | 5,523,327,953,930 | b364b74ad664521b2418f98ad68f05cc71edb48a | /src/FaceTrack/FaceTrackPanel.java | 7cdb689402dfdc9ff9882a7a9d436f6294d39b1c | [] | no_license | ncontreras2018/OpenCV-Stuff | https://github.com/ncontreras2018/OpenCV-Stuff | c1ad5a3e158b7caaf509eeb81947c47ef071c76f | d3ba3a78813be9096f023f3f6a1e75768529cadd | refs/heads/master | 2020-02-26T15:04:01.437000 | 2016-07-26T02:36:52 | 2016-07-26T02:36:52 | 41,917,357 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package FaceTrack;
import java.awt.Dimension;
import javax.swing.JFrame;
import javax.swing.JPanel;
import org.opencv.core.Mat;
@SuppressWarnings("serial")
public class FaceTrackPanel extends JPanel {
Mat webcamFeed;
public FaceTrackPanel(int width, int height, String frameName) {
JFrame frame ... | UTF-8 | Java | 582 | java | FaceTrackPanel.java | Java | [] | null | [] | package FaceTrack;
import java.awt.Dimension;
import javax.swing.JFrame;
import javax.swing.JPanel;
import org.opencv.core.Mat;
@SuppressWarnings("serial")
public class FaceTrackPanel extends JPanel {
Mat webcamFeed;
public FaceTrackPanel(int width, int height, String frameName) {
JFrame frame ... | 582 | 0.709622 | 0.709622 | 30 | 17.4 | 19.222557 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.166667 | false | false | 9 |
589806a2c4a900f0065cc2f97df99a5dd04df533 | 28,484,223,118,170 | 3103db488150208ad3fa8778fad06f372e8657b7 | /src/main/resources/archetype-resources/src/main/java/config/WebappMvcConfig.java | 8d834ecfda36223a714df09e240a03bc786dd756 | [] | no_license | Shaika-Dzari/SpringWebMvc-Archetype | https://github.com/Shaika-Dzari/SpringWebMvc-Archetype | fb44a8266e7d6d0dd7d4205fde36009a6a6dc290 | d8a7058a2a9e6827103b327976f27ad7628fb8a9 | refs/heads/master | 2020-06-02T08:27:52.827000 | 2014-10-01T01:23:57 | 2014-10-01T01:23:57 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | #set( $symbol_pound = '#' )
#set( $symbol_dollar = '$' )
#set( $symbol_escape = '\' )
/**
* Copyright © 2014 Remi Guillemette <rguillemette@n4dev.ca>
* This work is free. You can redistribute it and/or modify it under the
* terms of the Do What The Fuck You Want To Public License, Version 2,
* as published by Sam H... | UTF-8 | Java | 651 | java | WebappMvcConfig.java | Java | [
{
"context": "et( $symbol_escape = '\\' )\n/**\n * Copyright © 2014 Remi Guillemette <rguillemette@n4dev.ca>\n * This work is free. You",
"end": 126,
"score": 0.9998936653137207,
"start": 110,
"tag": "NAME",
"value": "Remi Guillemette"
},
{
"context": "= '\\' )\n/**\n * Copyright © 2... | null | [] | #set( $symbol_pound = '#' )
#set( $symbol_dollar = '$' )
#set( $symbol_escape = '\' )
/**
* Copyright © 2014 <NAME> <<EMAIL>>
* This work is free. You can redistribute it and/or modify it under the
* terms of the Do What The Fuck You Want To Public License, Version 2,
* as published by Sam Hocevar. See the COPYING ... | 627 | 0.726154 | 0.707692 | 23 | 27.26087 | 25.89312 | 72 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.26087 | false | false | 9 |
02df680100bc3ee356fd3467fb400f70b3a98db1 | 33,285,996,548,823 | b38be5c5ba28cc43adc530c86d62b033e4fa819d | /src/springChapter/homework3/spring-core-study/src/proxy/MyPayGateWay.java | 10d1da8b20d7e9623f19a05f263bcf8d55413fdb | [] | no_license | chenhaiyan90/myJavaClass | https://github.com/chenhaiyan90/myJavaClass | 802187e822c9a8329c1e44d6feaf93c48d9e0a15 | 9266181d1f41f7cb5cff66794ead55046814dcd2 | refs/heads/master | 2021-01-12T06:43:16.640000 | 2017-12-14T04:27:39 | 2017-12-14T04:27:45 | 77,421,490 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package proxy;
public interface MyPayGateWay {
public boolean pay(int userId,long orderId,double money);
}
| UTF-8 | Java | 115 | java | MyPayGateWay.java | Java | [] | null | [] | package proxy;
public interface MyPayGateWay {
public boolean pay(int userId,long orderId,double money);
}
| 115 | 0.747826 | 0.747826 | 8 | 13.375 | 19.671919 | 58 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.875 | false | false | 9 |
d1032c9c3c9718e524fd5ba90c3c2225e2f227f5 | 3,032,246,924,142 | 468901ca7035d3bfc93d5c868707756351c76f8e | /src/main/java/com/learning/ds/educative/dp/knapsack_1/P5_MinSubsetSumDifference.java | a4071856304d229e30f81106db47887ac9ade0e8 | [] | no_license | nickahujaaol/DataStructures | https://github.com/nickahujaaol/DataStructures | 63fd88325ba0dc8a75b96e87f2813c02ff87320c | d6b2bf6694bcc6f955d895789c5fca700b6133da | refs/heads/master | 2023-03-11T23:34:39.766000 | 2021-02-25T06:27:21 | 2021-02-25T06:27:21 | 266,102,280 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.learning.ds.educative.dp.knapsack_1;
public class P5_MinSubsetSumDifference {
public static void main(String[] args) {
int[] inSet = {1, 2, 3, 9};
int minDiff = findMinDifference(inSet, 0, 0, 0);
System.out.println("Min Diff: " + minDiff);
}
private static int findMinDi... | UTF-8 | Java | 701 | java | P5_MinSubsetSumDifference.java | Java | [] | null | [] | package com.learning.ds.educative.dp.knapsack_1;
public class P5_MinSubsetSumDifference {
public static void main(String[] args) {
int[] inSet = {1, 2, 3, 9};
int minDiff = findMinDifference(inSet, 0, 0, 0);
System.out.println("Min Diff: " + minDiff);
}
private static int findMinDi... | 701 | 0.623395 | 0.596291 | 19 | 35.894737 | 29.754955 | 89 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.263158 | false | false | 9 |
e15f7d7f62138346edbc0e4f95ce7b8c7c804dde | 6,657,199,342,079 | c219f315067a6a21030c4fec8a39f1f99173a981 | /PropertyHeatMap/Server/src/net/zettroke/PropertyHeatMapServer/utils/IndexedThread.java | 6461b32ef5b2a4ad348af10dd5d70590c168e792 | [] | no_license | Zettroke/PropertyHeatMap | https://github.com/Zettroke/PropertyHeatMap | f16bb0821ce0ec6c79424e3e8987865cd21818ef | abe128554e404696e04f3c37d0e1f3f74f527eb4 | refs/heads/master | 2021-09-28T20:49:41.114000 | 2018-11-20T13:09:01 | 2018-11-20T13:09:01 | 106,757,374 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.zettroke.PropertyHeatMapServer.utils;
public class IndexedThread extends Thread{
public int index;
IndexedThread(Runnable r){
super(r);
}
}
| UTF-8 | Java | 173 | java | IndexedThread.java | Java | [] | null | [] | package net.zettroke.PropertyHeatMapServer.utils;
public class IndexedThread extends Thread{
public int index;
IndexedThread(Runnable r){
super(r);
}
}
| 173 | 0.710983 | 0.710983 | 8 | 20.625 | 17.38489 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.375 | false | false | 9 |
8f7446ff19da101894d85f4dc926cf432b6f8198 | 6,657,199,340,589 | 2c2af78417aac0e823973de9513209f27dabc16c | /src/main/java/com/demo/activiti/entity/Staff.java | cfa3b8db5eb21eae7d874b8b8480b70e02393126 | [] | no_license | jayz2017/testdemo | https://github.com/jayz2017/testdemo | 3fdc43beff25685097401091fd464aa18835a53d | 3c3b40019bde9d42511c2115bb81b3741c46834a | refs/heads/master | 2020-04-25T14:56:55.012000 | 2019-02-28T08:25:02 | 2019-02-28T08:25:02 | 172,860,426 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.demo.activiti.entity;
public class Staff {
private String staff_id;
private String staff_name;
private String department;
private String role;
public String getStaff_id() {
return staff_id;
}
public void setStaff_id(String staff_id) {
this.staff_id = staff_id;
}
public String getStaff_name(... | UTF-8 | Java | 683 | java | Staff.java | Java | [] | null | [] | package com.demo.activiti.entity;
public class Staff {
private String staff_id;
private String staff_name;
private String department;
private String role;
public String getStaff_id() {
return staff_id;
}
public void setStaff_id(String staff_id) {
this.staff_id = staff_id;
}
public String getStaff_name(... | 683 | 0.70571 | 0.70571 | 41 | 15.658537 | 15.17477 | 47 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.195122 | false | false | 9 |
6e813bbe428e5260c2bfd37aaea4b12b36848a5b | 3,367,254,380,678 | abf9c58adb57bce2472934fca7f058facb1f9bd2 | /String/ToUpperCase.java | d720a3ce745140249766b487a228b41a796c8321 | [] | no_license | tina-wuuuuu/Test2_Exercise | https://github.com/tina-wuuuuu/Test2_Exercise | 8c273ab44f27059907e06e418443d67207c383c4 | 6d572e299315786401aab67d503b8520c83a229a | refs/heads/master | 2022-12-26T12:46:38.185000 | 2020-10-13T07:55:43 | 2020-10-13T07:55:43 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package String;
public class ToUpperCase {
//Âà´«¦¨¤j¼g¦r¦ê
//String toUpperCase()
public static void main(String[] args) {
// TODO Auto-generated method stub
String strCom = "i like java";
System.out.println(strCom.toUpperCase());
}
}
| WINDOWS-1252 | Java | 260 | java | ToUpperCase.java | Java | [] | null | [] | package String;
public class ToUpperCase {
//Âà´«¦¨¤j¼g¦r¦ê
//String toUpperCase()
public static void main(String[] args) {
// TODO Auto-generated method stub
String strCom = "i like java";
System.out.println(strCom.toUpperCase());
}
}
| 260 | 0.682731 | 0.678715 | 13 | 18.153847 | 15.907648 | 43 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1 | false | false | 9 |
d354155d48b74a93d8cabf5fba95cbdc00bcb974 | 4,870,492,935,920 | 4379e0b6f3c7cc75189243eebfc0f1fcc5c9f5ba | /ExposureTimeCalculator/test/alma/obsprep/services/etc/AtmosphereTableTest.java | f71879a22d17909e7403f943dfa8502f8d9fb7e8 | [] | no_license | CCATObservatory/alma-ot | https://github.com/CCATObservatory/alma-ot | bb1cb62bc5f6bd21cde88ac476a461f9b1bd2110 | d9db079e46cd47f3c0cae9ebbc5e426729dd2318 | refs/heads/master | 2016-09-06T18:44:01.550000 | 2014-12-19T17:11:57 | 2014-12-19T17:11:57 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*******************************************************************************
* ALMA - Atacama Large Millimeter Array
* Copyright (c) UKATC - UK Astronomy Technology Centre, Science and Technology Facilities Council, 2011
* (in the framework of the ALMA collaboration).
* All rights reserved.
*
* This library ... | UTF-8 | Java | 6,542 | java | AtmosphereTableTest.java | Java | [
{
"context": "ities;\n\n/**\n * AtmosphereTable test\n * \n * @author yatagai, 2006-07-21\n */\npublic class AtmosphereTableTest ",
"end": 1398,
"score": 0.9221920967102051,
"start": 1391,
"tag": "USERNAME",
"value": "yatagai"
}
] | null | [] | /*******************************************************************************
* ALMA - Atacama Large Millimeter Array
* Copyright (c) UKATC - UK Astronomy Technology Centre, Science and Technology Facilities Council, 2011
* (in the framework of the ALMA collaboration).
* All rights reserved.
*
* This library ... | 6,542 | 0.643993 | 0.409355 | 145 | 44.117241 | 58.26355 | 250 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.275862 | false | false | 9 |
1cb9890435cd85fd64997616fa574893c04acbb3 | 1,305,670,080,312 | 1a8484aec668ca4c93c58aa8ea49ed662ba0f1fb | /An TK's Beispiel angepasst/Java_eShop 1.0.0/src/persistance/PersistenceManager.java | c2db5f2f2dd8056953030f79dddd05e3b2ad5b2e | [] | no_license | Dawinartor/Java_eShop | https://github.com/Dawinartor/Java_eShop | d5770145b3c730036150201ee90263193254b855 | b196ff0e8fc6e3f4bce3d1ec4568b63148b94eb0 | refs/heads/master | 2020-05-18T12:12:16.804000 | 2019-06-10T07:23:22 | 2019-06-10T07:23:22 | 184,400,128 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
*
*/
package persistance;
import java.io.IOException;
import valueobjects.Artikel;
import valueobjects.Kunde;
import valueobjects.Mitarbeiter;
/**
* @author Dawinartor
*
*Allgemeine Schnittstelle für den Zugriff auf ein Speichermedium
* (z.B. Datei oder Datenbank) zum Ablegen von beispielsweise
* Artikel... | ISO-8859-1 | Java | 2,500 | java | PersistenceManager.java | Java | [
{
"context": ";\nimport valueobjects.Mitarbeiter;\n\n/**\n * @author Dawinartor\n *\n *Allgemeine Schnittstelle für den Zugriff auf",
"end": 178,
"score": 0.9935189485549927,
"start": 168,
"tag": "NAME",
"value": "Dawinartor"
}
] | null | [] | /**
*
*/
package persistance;
import java.io.IOException;
import valueobjects.Artikel;
import valueobjects.Kunde;
import valueobjects.Mitarbeiter;
/**
* @author Dawinartor
*
*Allgemeine Schnittstelle für den Zugriff auf ein Speichermedium
* (z.B. Datei oder Datenbank) zum Ablegen von beispielsweise
* Artikel... | 2,500 | 0.726691 | 0.726691 | 92 | 26.163044 | 26.68507 | 81 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.054348 | false | false | 9 |
6a7ed2f6cdab2acb4cd6a606bc731d31a280071a | 962,072,682,291 | 59e4596f07b00a69feabb1fb119619aa58964dd4 | /StsTool.v.1.3.3/eu.aniketos.wp1.ststool.diagram/src/eu/aniketos/wp1/ststool/diagram/custom/utility/DescriptionDialog.java | 8d6d37e0a7920d77021a52a2e6097a65dc0bd3ca | [] | no_license | AniketosEU/Socio-technical-Security-Requirements | https://github.com/AniketosEU/Socio-technical-Security-Requirements | 895bac6785af1a40cb55afa9cb3dd73f83f8011f | 7ce04c023af6c3e77fa4741734da7edac103c875 | refs/heads/master | 2018-12-31T17:08:39.594000 | 2014-02-21T14:36:14 | 2014-02-21T14:36:14 | 15,801,803 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* DescriptionDialog.java
*
* This file is part of the STS-Tool project.
* Copyright (c) 2011-2012 "University of Trento - DISI" All rights reserved.
*
* Is strictly forbidden to remove this copyright notice from this source code.
*
* Disclaimer of Warranty:
* STS-Tool (this software) is provided "as-is" and... | UTF-8 | Java | 4,926 | java | DescriptionDialog.java | Java | [
{
"context": " please contact STS-Tool group at this\r\n* address: ststool@disi.unitn.it\r\n*\r\n*/\r\npackage eu.aniketos.wp1.ststool.diagram.c",
"end": 2034,
"score": 0.9999294281005859,
"start": 2013,
"tag": "EMAIL",
"value": "ststool@disi.unitn.it"
}
] | null | [] | /*
* DescriptionDialog.java
*
* This file is part of the STS-Tool project.
* Copyright (c) 2011-2012 "University of Trento - DISI" All rights reserved.
*
* Is strictly forbidden to remove this copyright notice from this source code.
*
* Disclaimer of Warranty:
* STS-Tool (this software) is provided "as-is" and... | 4,912 | 0.723508 | 0.712343 | 145 | 31.972414 | 27.40575 | 89 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.427586 | false | false | 9 |
2fb4ca0a39ef40babb4d108aa3aa6005e764046b | 19,396,072,377,085 | e61b5f97813e2afe758e1603e21b4c804ac1ad9a | /springmvc/src/main/java/com/liugw/learn/di/DITest.java | ba222ae1d6fb9de5e648be83ded758df1d294e0e | [] | no_license | liugaowei999/spring-mvc-learn | https://github.com/liugaowei999/spring-mvc-learn | 4036c9489230cf68b233d65ad568c1e292435b66 | 7da167bb8c2b63018dc7add6a6c192388480997d | refs/heads/master | 2021-09-13T13:22:19.785000 | 2018-04-30T14:55:49 | 2018-04-30T14:55:49 | 112,701,914 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.liugw.learn.di;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class DITest {
public static void main(String[] args) {
// Women women = new Women();
// Man man = new Man();
//
// HuShi huShi = new HuShi(man);
// huShi.doWork();
//
// H... | UTF-8 | Java | 719 | java | DITest.java | Java | [] | null | [] | package com.liugw.learn.di;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class DITest {
public static void main(String[] args) {
// Women women = new Women();
// Man man = new Man();
//
// HuShi huShi = new HuShi(man);
// huShi.doWork();
//
// H... | 719 | 0.652295 | 0.649513 | 27 | 24.629629 | 22.865383 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.37037 | false | false | 9 |
0043c0794a879e0730dd74f3ea782b4d0b49a723 | 29,343,216,571,211 | 9ac51ef6fe6dba4d47540e51eea479744a540aba | /Java.Homeworks.Stefan-Alexandru.Rentea/src/hells/Choice.java | 03e2ce0e4c6cd4bf566ac2e7ff71e59290119df3 | [] | no_license | stefan574/JavaHomeworksRenteaStefan-Alexandru | https://github.com/stefan574/JavaHomeworksRenteaStefan-Alexandru | 5f58364ce942a867b75e1b3ff793ede9b89b3776 | 90badf0fa4d1c3e6f42cf965b31d0ff240633279 | refs/heads/master | 2020-12-24T12:33:42.570000 | 2017-03-11T15:29:31 | 2017-03-11T15:29:31 | 72,980,581 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Choice Class
*/
package hells;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Random;
/**
* @author Stefan-Alexandru Rentea
*/
public class Choice {
private final TheNineHellsOfBaator[] hells = new TheNineHel... | UTF-8 | Java | 2,734 | java | Choice.java | Java | [
{
"context": "List;\r\nimport java.util.Random;\r\n\r\n/**\r\n * @author Stefan-Alexandru Rentea\r\n */\r\npublic class Choice {\r\n \r\n private fi",
"end": 221,
"score": 0.9998685121536255,
"start": 198,
"tag": "NAME",
"value": "Stefan-Alexandru Rentea"
}
] | null | [] | /*
* Choice Class
*/
package hells;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Random;
/**
* @author <NAME>
*/
public class Choice {
private final TheNineHellsOfBaator[] hells = new TheNineHellsOfBaator[4];
... | 2,717 | 0.603877 | 0.596562 | 93 | 27.39785 | 25.017044 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.387097 | false | false | 9 |
31a7f9db7cca93c2a5aba8639f85e753d30abd82 | 1,580,547,975,300 | faab5bccac31c54c753f7826ba3484f7cdd56c58 | /trunck/AP99/AP99-contract/AP99-contract-runtime/src/main/java/com/ebao/ap99/contract/entity/TRiContractAreaperil.java | 3d60e2e8a03a705d48558982e920268c86a96d48 | [] | no_license | semaxu/peakre | https://github.com/semaxu/peakre | 19e99d83e54ef815f8e2e480f29ad65569136fbd | c64ed4d4af93dc2015846a613f493e17b8c6d1e9 | refs/heads/master | 2021-01-23T12:11:50.815000 | 2016-07-13T05:55:47 | 2016-07-13T05:55:47 | 62,941,992 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ebao.ap99.contract.entity;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.NamedQuery;
import javax.persistence.OneToOne;
import javax.persistence.Table;
import javax.x... | UTF-8 | Java | 3,349 | java | TRiContractAreaperil.java | Java | [] | null | [] | package com.ebao.ap99.contract.entity;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.NamedQuery;
import javax.persistence.OneToOne;
import javax.persistence.Table;
import javax.x... | 3,349 | 0.685578 | 0.684085 | 133 | 24.18045 | 21.940739 | 122 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.308271 | false | false | 9 |
64e56265d1475696de47f05f7ce2884ad316e1fd | 24,592,982,752,792 | ef0ea8f7a83b3aa2de12b88c2b1bf6750ee0647e | /src/main/java/com/sargije/rest/hidmet/app/config/MvcConfig.java | ba1f7692c2e16cd6037305de887be9bf91bfb951 | [] | no_license | ivanristic/hidmet | https://github.com/ivanristic/hidmet | 478c935ded9796868f884bcdb12d79947f0ab913 | 9506365fac09fd03887816ad702ce233ffffe0fd | refs/heads/master | 2022-09-22T06:43:16.255000 | 2021-03-24T11:05:13 | 2021-03-24T11:05:13 | 101,793,346 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sargije.rest.hidmet.app.config;
import com.sargije.rest.hidmet.app.interceptors.CustomRequestLoggingInterceptor;
import com.sargije.rest.hidmet.app.model.Authorities;
import com.sargije.rest.hidmet.app.model.AuthoritiesId;
import graphql.kickstart.tools.SchemaParserDictionary;
import io.aexp.nodes.graphql.... | UTF-8 | Java | 2,569 | java | MvcConfig.java | Java | [
{
"context": "ceptors().add(new BasicAuthenticationInterceptor(\"ivan\", \"123456\"));\n\t\treturn restTemplate;\n\t}\n\n\t// work",
"end": 2228,
"score": 0.8309071063995361,
"start": 2224,
"tag": "USERNAME",
"value": "ivan"
},
{
"context": "king for Mutations #216 https://github.com... | null | [] | package com.sargije.rest.hidmet.app.config;
import com.sargije.rest.hidmet.app.interceptors.CustomRequestLoggingInterceptor;
import com.sargije.rest.hidmet.app.model.Authorities;
import com.sargije.rest.hidmet.app.model.AuthoritiesId;
import graphql.kickstart.tools.SchemaParserDictionary;
import io.aexp.nodes.graphql.... | 2,569 | 0.8116 | 0.806929 | 78 | 31.935898 | 31.631428 | 140 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.141026 | false | false | 9 |
bc5cefcbeedc7c6dd0e91c962b6b21a9f94063b2 | 26,139,170,981,306 | 5a5abfcbdad8bd7074b4e2ad92ce5e2cfb66a094 | /bole-server/bole-service/src/main/java/com/bin/bole/service/NationService.java | db823bbb1a481f6949e637c6e6f9dda3662aea92 | [] | no_license | leo-bin/bole | https://github.com/leo-bin/bole | 52b17bcf51ebfc0a0c995e8b0142d2b298915d68 | 315aae56cdf50678cbe7e03bab05c2bb27113e16 | refs/heads/master | 2023-05-04T18:47:31.326000 | 2021-05-23T11:21:31 | 2021-05-23T11:21:31 | 360,897,172 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.bin.bole.service;
import com.bin.bole.dao.NationMapper;
import com.bin.bole.domain.emp.Nation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class NationService {
@Autowired
NationMapper natio... | UTF-8 | Java | 424 | java | NationService.java | Java | [] | null | [] | package com.bin.bole.service;
import com.bin.bole.dao.NationMapper;
import com.bin.bole.domain.emp.Nation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class NationService {
@Autowired
NationMapper natio... | 424 | 0.764151 | 0.764151 | 19 | 21.31579 | 19.265602 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.421053 | false | false | 9 |
77011a3070a3806088f594b19c5f3cc7908bd356 | 19,550,691,147,766 | 2608dc190ea9d6616c473342502e26b0be041bc5 | /src/domain/ui/controller/handlers/basket/orderHandler.java | 3d4c3f31db0430b6cc4b9fc28dd8e428667afc53 | [] | no_license | Testing1819/webshop | https://github.com/Testing1819/webshop | d1ad27562b01329e935021e339d6f65633b02431 | e8048291aea7f6a586e48315ac202185f71595b7 | refs/heads/master | 2020-04-07T18:38:53.211000 | 2018-12-11T12:35:26 | 2018-12-11T12:35:26 | 156,883,530 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package domain.ui.controller.handlers.basket;
import domain.model.*;
import domain.ui.controller.HandlerFactory;
import domain.ui.controller.RequestHandler;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.io.IOException;
i... | UTF-8 | Java | 1,155 | java | orderHandler.java | Java | [] | null | [] | package domain.ui.controller.handlers.basket;
import domain.model.*;
import domain.ui.controller.HandlerFactory;
import domain.ui.controller.RequestHandler;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import java.io.IOException;
i... | 1,155 | 0.709957 | 0.709957 | 32 | 35.09375 | 34.560055 | 155 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.75 | false | false | 9 |
c4c2735b14719494d8112d8405cb897a7e2efe18 | 5,119,601,039,395 | 2f8c53426421070eb79188c12ad1c9307d626ccb | /core/src/view/EditorView.java | ecc9817678f7955033c03d97ca9de24b0798b857 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | DannyJo/OpenRTS | https://github.com/DannyJo/OpenRTS | 26242c692b246a0de42adb75a4f845d6aa222d4f | b8bb7ce553dece71b5a9a7ddfb37a76498532996 | refs/heads/master | 2017-10-31T15:09:18.627000 | 2015-05-21T12:54:20 | 2015-05-21T12:54:20 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package view;
import java.awt.event.ActionListener;
import model.ModelManager;
import view.mapDrawing.EditorRenderer;
import com.jme3.asset.AssetManager;
import com.jme3.bullet.PhysicsSpace;
import com.jme3.renderer.ViewPort;
import com.jme3.scene.Node;
public class EditorView extends MapView implements... | UTF-8 | Java | 1,036 | java | EditorView.java | Java | [] | null | [] | package view;
import java.awt.event.ActionListener;
import model.ModelManager;
import view.mapDrawing.EditorRenderer;
import com.jme3.asset.AssetManager;
import com.jme3.bullet.PhysicsSpace;
import com.jme3.renderer.ViewPort;
import com.jme3.scene.Node;
public class EditorView extends MapView implements... | 1,036 | 0.76834 | 0.764479 | 37 | 26 | 24.697084 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.513514 | false | false | 9 |
595a43cb9cef47dad2c181f16983139bc3645960 | 29,360,396,455,915 | 631afd8bb77a19ac0f0604c41176d11f63e90c7d | /kie-wb-common-stunner-client/kie-wb-common-stunner-widgets/src/main/java/org/kie/workbench/common/stunner/client/widgets/session/presenter/impl/CanvasSessionPresenterView.java | c58fc033c1c12de0e1faf1c416e1bf59a2dafbd1 | [] | no_license | tsurdilo/wirez | https://github.com/tsurdilo/wirez | 86aaf88fcf412cfa1b03a9cfa8e81503b52439bc | fd8963cdd0dd6ec916b051dc5759f23bd6fe2074 | refs/heads/master | 2020-12-29T03:07:36.637000 | 2016-10-04T01:44:36 | 2016-10-04T02:29:18 | 68,604,988 | 0 | 0 | null | true | 2016-09-19T12:46:45 | 2016-09-19T12:46:45 | 2016-01-17T18:41:42 | 2016-09-19T12:22:25 | 5,001 | 0 | 0 | 0 | null | null | null | package org.kie.workbench.common.stunner.client.widgets.session.presenter.impl;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.IsWidget;
import com.google.gwt.user.client.ui.Label;
import org.gwtbootstrap3.client.ui.gwt.FlowPanel;
import org.jboss.errai.ui.shared.api.annotations.D... | UTF-8 | Java | 1,495 | java | CanvasSessionPresenterView.java | Java | [] | null | [] | package org.kie.workbench.common.stunner.client.widgets.session.presenter.impl;
import com.google.gwt.user.client.ui.Composite;
import com.google.gwt.user.client.ui.IsWidget;
import com.google.gwt.user.client.ui.Label;
import org.gwtbootstrap3.client.ui.gwt.FlowPanel;
import org.jboss.errai.ui.shared.api.annotations.D... | 1,495 | 0.723746 | 0.723077 | 57 | 25.228069 | 23.811407 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.385965 | false | false | 9 |
ce22377e100079fece43e6feae0c51ff52c93fed | 13,159,779,817,524 | 18a66a9ebda178942ec7ba0289e09e709cd467b1 | /src/main/java/com/agoda/poc/utility/Helper.java | 5a1cd54661e5f244a06bf6438ff8296b687c09d8 | [] | no_license | harpzzz/RateLimiter | https://github.com/harpzzz/RateLimiter | 0920db8cdd68e28cd7bbe7fdf8975190a8f5b0d2 | dafe2d0e2a8d81362915ccfbc1ab550bd938106f | refs/heads/master | 2023-03-18T14:00:41.987000 | 2021-03-15T08:07:29 | 2021-03-15T08:07:29 | 347,898,799 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.agoda.poc.utility;
import static com.agoda.poc.contstant.Constant.BASE_URL;
public class Helper {
public static boolean isValidUrl(String uri) {
if(uri.contains(BASE_URL)){
String subUrl = uri.replace(BASE_URL,"");
if(!subUrl.isEmpty()){
return true;
... | UTF-8 | Java | 497 | java | Helper.java | Java | [] | null | [] | package com.agoda.poc.utility;
import static com.agoda.poc.contstant.Constant.BASE_URL;
public class Helper {
public static boolean isValidUrl(String uri) {
if(uri.contains(BASE_URL)){
String subUrl = uri.replace(BASE_URL,"");
if(!subUrl.isEmpty()){
return true;
... | 497 | 0.56338 | 0.561368 | 23 | 20.608696 | 19.22575 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.347826 | false | false | 9 |
7b66bfdd64ac34dad0d4dd862c66666c495c545a | 17,145,509,514,095 | ce09bd4982516bb5f048660810f8fc206cf0ce32 | /commandprocessor/src/main/java/me/deprilula28/gamesrob/data/Statistics.java | b7f1e221d648e30ee0550afafb1114a291c606aa | [] | no_license | GamesROB/Bot | https://github.com/GamesROB/Bot | e3a91458b6292fc7938af03d21ebcd0579c86236 | f5798586462d7a355fab5081b64ca0d09195f32b | refs/heads/master | 2018-12-27T00:18:03.230000 | 2018-11-11T03:17:01 | 2018-11-11T03:17:01 | 134,065,018 | 3 | 3 | null | false | 2019-03-13T23:44:46 | 2018-05-19T13:36:40 | 2019-03-02T15:06:11 | 2019-03-13T23:44:45 | 22,408 | 4 | 3 | 0 | Java | false | null | package me.deprilula28.gamesrob.data;
import me.deprilula28.gamesrob.GamesROB;
import lombok.AllArgsConstructor;
import lombok.Data;
import me.deprilula28.gamesrob.baseFramework.GamesInstance;
import me.deprilula28.gamesrob.utility.Cache;
import me.deprilula28.gamesrobshardcluster.utilities.Constants;
import me.depril... | UTF-8 | Java | 4,819 | java | Statistics.java | Java | [
{
"context": "package me.deprilula28.gamesrob.data;\n\nimport me.deprilula28.gamesrob.Ga",
"end": 22,
"score": 0.6676022410392761,
"start": 13,
"tag": "USERNAME",
"value": "prilula28"
},
{
"context": "ackage me.deprilula28.gamesrob.data;\n\nimport me.deprilula28.gamesrob.GamesROB;\ni... | null | [] | package me.deprilula28.gamesrob.data;
import me.deprilula28.gamesrob.GamesROB;
import lombok.AllArgsConstructor;
import lombok.Data;
import me.deprilula28.gamesrob.baseFramework.GamesInstance;
import me.deprilula28.gamesrob.utility.Cache;
import me.deprilula28.gamesrobshardcluster.utilities.Constants;
import me.depril... | 4,819 | 0.641419 | 0.630836 | 124 | 37.862904 | 28.045567 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.854839 | false | false | 9 |
5dd914a1ff062f142ec3c609b7c0f573b2e2d4a6 | 1,030,792,219,981 | 5085fe26fff67a73b18092eb4d3441f72120e00b | /app/src/main/java/com/android/messagebusexample/lib/MessageDataConstants.java | f74d119226014c9aba09b6d169f10ebaa99dd8b2 | [] | no_license | vishaljec/MessageBus | https://github.com/vishaljec/MessageBus | 2870366a465f23308a2ea15399cd2cfd1f523068 | 4bc04d5d1ae7b5f68451f1d99a4a0a4d7a712bf2 | refs/heads/master | 2022-11-06T04:51:36.019000 | 2020-06-23T09:50:47 | 2020-06-23T09:50:47 | 269,274,636 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.android.messagebusexample.lib;
public final class MessageDataConstants {
public static final String NO_CONNECTIVITY = "noConnectivity";
private MessageDataConstants() {
//Do nothing
}
}
| UTF-8 | Java | 221 | java | MessageDataConstants.java | Java | [] | null | [] | package com.android.messagebusexample.lib;
public final class MessageDataConstants {
public static final String NO_CONNECTIVITY = "noConnectivity";
private MessageDataConstants() {
//Do nothing
}
}
| 221 | 0.723982 | 0.723982 | 10 | 21.1 | 22.51866 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.2 | false | false | 9 |
56076c0bc99f77d350bed748da43d7f37b65ee8a | 37,271,726,196,025 | 78f1235efe79bf54a458b22508d9070b98fb761b | /design_patterns/src/com/ccy/proxy/DynamicProxyTest.java | c76ffa236a6bb510256dd05c586145cb9c2ac12a | [] | no_license | CCanyong/study | https://github.com/CCanyong/study | 805432cb59e20bd021d504c41c42530729ebd3c4 | bf75ec56f566aa39032e65bdebfdf79d00bce968 | refs/heads/master | 2022-12-07T02:32:00.778000 | 2020-09-03T06:15:53 | 2020-09-03T06:15:53 | 254,859,026 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ccy.proxy;
import java.lang.reflect.Proxy;
public class DynamicProxyTest {
public static void main(String[] args) {
Student student = new Student();
DynamicProxy dynamicProxy = new DynamicProxy(student);
Person person = (Person) Proxy.newProxyInstance(student.getClass().getCla... | UTF-8 | Java | 430 | java | DynamicProxyTest.java | Java | [] | null | [] | package com.ccy.proxy;
import java.lang.reflect.Proxy;
public class DynamicProxyTest {
public static void main(String[] args) {
Student student = new Student();
DynamicProxy dynamicProxy = new DynamicProxy(student);
Person person = (Person) Proxy.newProxyInstance(student.getClass().getCla... | 430 | 0.669767 | 0.669767 | 15 | 27.666666 | 27.798481 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.533333 | false | false | 9 |
f08208e1029d0ba63407bd4ed994fde52107fca0 | 25,795,573,621,897 | af8f23765d1e6af3b88191a2129bb2d3909e9fbd | /src/org/bukkit/plugin/java/annotation/permission/ChildPermission.java | f2e2f1cfa7749eaf5b8ea513973f72cace2f197f | [
"BSD-3-Clause"
] | permissive | Lakasabasz/Plugin-Annotation | https://github.com/Lakasabasz/Plugin-Annotation | f6919ed45a6dd015e399190b3e68e5db49bde4d2 | c1acd6a9ca0e02026a7f88344d3176de8578435a | refs/heads/main | 2023-03-08T00:13:49.863000 | 2021-02-18T16:54:41 | 2021-02-18T16:54:41 | 325,280,058 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.bukkit.plugin.java.annotation.permission;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Documented
@Target({ElementType.TYPE})
@Retention(RetentionPol... | UTF-8 | Java | 420 | java | ChildPermission.java | Java | [] | null | [] | package org.bukkit.plugin.java.annotation.permission;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Documented
@Target({ElementType.TYPE})
@Retention(RetentionPol... | 420 | 0.819048 | 0.819048 | 16 | 25.3125 | 17.380732 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.625 | false | false | 9 |
68d0bc5522bc318bef69783f3346e896a2d820ea | 28,621,662,062,376 | 47def904d7ed574278855bc779ff10911f1a85b4 | /src/main/java/com/progforce/BI_Interface/service/MailSenderService.java | 9eea3979bf4a43c12316c2f62bceb925797cb098 | [] | no_license | ElizavetaVinogradova/BI_Interface | https://github.com/ElizavetaVinogradova/BI_Interface | 457275fbe0f3ae00f2b32433934996a40738b4b1 | ba21c899b8d35a0d79580b2332bc2086838d0d4a | refs/heads/master | 2020-08-07T09:28:01.551000 | 2019-10-24T09:12:59 | 2019-10-24T09:12:59 | 213,391,912 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.progforce.BI_Interface.service;
import com.progforce.BI_Interface.config.EmailConfiguration;
import com.progforce.BI_Interface.domain.Message;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.mail.SimpleMailMessage;
import org.springframework.mail.javamail.JavaMailS... | UTF-8 | Java | 997 | java | MailSenderService.java | Java | [] | null | [] | package com.progforce.BI_Interface.service;
import com.progforce.BI_Interface.config.EmailConfiguration;
import com.progforce.BI_Interface.domain.Message;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.mail.SimpleMailMessage;
import org.springframework.mail.javamail.JavaMailS... | 997 | 0.757272 | 0.757272 | 33 | 29.212122 | 22.812487 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.484848 | false | false | 9 |
535c906518e426f21a73278b662f189e307feb6a | 22,505,628,682,939 | 05499a2b418fff2af68f6a53ecc68e8cd0e30920 | /LeapYear.java | b84ecaaca97ed4509a342ef027d31a227bfb6988 | [] | no_license | Nilkamal-m/java_practice_code | https://github.com/Nilkamal-m/java_practice_code | 06d4e1d2bd9f006a3429b475893706d321a802a0 | 1231a2b3dc599ec6b8a368c3b0b85b1f58159886 | refs/heads/master | 2023-07-17T10:18:38.121000 | 2021-09-09T17:02:21 | 2021-09-09T17:02:21 | 404,804,569 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.*;
import java.lang.*;
public class LeapYear{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
System.out.println("Enter the year ");
int year=scan.nextInt();
boolean isLeapYear=false;
if(year%400==0){
isLeapYear=true;
}
System.out.println(isLeapYea... | UTF-8 | Java | 328 | java | LeapYear.java | Java | [] | null | [] | import java.util.*;
import java.lang.*;
public class LeapYear{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
System.out.println("Enter the year ");
int year=scan.nextInt();
boolean isLeapYear=false;
if(year%400==0){
isLeapYear=true;
}
System.out.println(isLeapYea... | 328 | 0.682927 | 0.670732 | 17 | 18.352942 | 14.303192 | 40 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.764706 | false | false | 9 |
13236f3b8be324857e28c3067b984a28ea968e97 | 34,832,184,776,112 | f4aec9162837f3d96ef98c15c0011f172a6147ff | /be-graphes-algos/src/main/java/org/insa/graphs/algorithm/shortestpath/Label.java | 244ff357175eb97400048f94e747b6eabb942355 | [] | no_license | 98rostom/BE-GRAPHES | https://github.com/98rostom/BE-GRAPHES | 61f0fefb202464eda639431ed6aaae8f66eb160f | b1969149511da2e0d605b352e04a0fae25a23982 | refs/heads/master | 2023-04-28T13:12:03.888000 | 2021-10-17T00:40:05 | 2021-10-17T00:40:05 | 351,597,834 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.insa.graphs.algorithm.shortestpath;
import org.insa.graphs.model.*;//pour reconnaître la classe arc (et autres)
public class Label implements Comparable<Label>{//pour la fonction compareTo
//le label de chaque noeud pourra nous donner toutes les infos dont on a besoin
//lors de l'écriture de l'algo de... | UTF-8 | Java | 1,697 | java | Label.java | Java | [] | null | [] | package org.insa.graphs.algorithm.shortestpath;
import org.insa.graphs.model.*;//pour reconnaître la classe arc (et autres)
public class Label implements Comparable<Label>{//pour la fonction compareTo
//le label de chaque noeud pourra nous donner toutes les infos dont on a besoin
//lors de l'écriture de l'algo de... | 1,697 | 0.723188 | 0.723188 | 68 | 23.544117 | 27.269049 | 111 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.235294 | false | false | 9 |
bc8bbfd3676a52cb8135e14c4a9c187d2281dec2 | 34,961,033,800,395 | bc41d4b5092e20a13d7f96f9a9d2a6a15ab6c9fb | /src/main/java/com/any/event/controller/EventController.java | eee93ce65338f2179fedebf3c86da25ba765b88b | [] | no_license | Lionhead93/event-kr | https://github.com/Lionhead93/event-kr | 8a7d5226e526120cd4fad9ebd52451ac96af34c3 | 869a1d431b1396ee4b88f3ba82326a608e3e1d82 | refs/heads/master | 2023-01-09T16:25:46.491000 | 2022-12-29T01:27:13 | 2022-12-29T01:27:13 | 228,572,329 | 1 | 0 | null | false | 2022-12-29T01:28:20 | 2019-12-17T08:45:16 | 2022-12-29T01:27:18 | 2022-12-29T01:28:18 | 4,424 | 1 | 0 | 0 | Java | false | false | package com.any.event.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class EventController {
@GetMapping("/api/hello")
public String hello() {
return "this is msg from controller";
}
}
| UTF-8 | Java | 320 | java | EventController.java | Java | [] | null | [] | package com.any.event.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class EventController {
@GetMapping("/api/hello")
public String hello() {
return "this is msg from controller";
}
}
| 320 | 0.74375 | 0.74375 | 15 | 20.333334 | 21.356237 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.266667 | false | false | 9 |
92e1b65d4896d0fb3fd7f1b5641120239835716f | 12,017,318,544,559 | 3cd49ab4b2da1b5b532dab926e76d0b8e1bd6622 | /hw01-0036514918/src/main/java/hr/fer/oprpp1/hw01/ComplexNumber.java | 7666510e1dfd9b525716a024beb20a290a93f6ab | [] | no_license | svenalmer/java-homeworks | https://github.com/svenalmer/java-homeworks | d2ccce4e38cc4faa55460588f2ea2e2dc250838c | 7bd1c4ee83749e4d4e580addee848c0b78e32a97 | refs/heads/master | 2023-05-05T22:19:33.295000 | 2021-05-22T10:39:31 | 2021-05-22T10:39:31 | 369,777,706 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package hr.fer.oprpp1.hw01;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
// TODO: Auto-generated Javadoc
/**
* The Class representing a complex number, allowing the user to perform various operations.
*/
public class ComplexNumber {
private double real;
private double imaginary;
/**
* In... | UTF-8 | Java | 7,243 | java | ComplexNumber.java | Java | [] | null | [] | package hr.fer.oprpp1.hw01;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
// TODO: Auto-generated Javadoc
/**
* The Class representing a complex number, allowing the user to perform various operations.
*/
public class ComplexNumber {
private double real;
private double imaginary;
/**
* In... | 7,243 | 0.659069 | 0.650642 | 259 | 26.949806 | 28.292347 | 130 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.907336 | false | false | 9 |
9b61b5136ce325638718b1cdec04cbf2af4ab25c | 30,013,231,490,843 | 43c55df055b59d7c426ed6e390633946e0afe805 | /lcm (1).java | d72116750d3da8a25632b6ba20a66b323483b16c | [] | no_license | Janani110798/java-program | https://github.com/Janani110798/java-program | 44c7c236a3dcc5b1e0a019673a8761a1c7b9e55a | 53c343eb1606c418f1b7bbee875280d1fa9717e0 | refs/heads/master | 2020-05-25T20:13:50.047000 | 2019-05-22T10:33:51 | 2019-05-22T10:33:51 | 187,970,620 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.io.*;
import java.util.*;
class lcm{
public static void main (String args[]){
int n1=24,n2=12,lcm;
lcm=(n1>n2)?n1:n2;
while(true){
if(lcm%n1==0 && lcm%n2==0){
System.out.printf("lcm of %d and %d is %d.",n1,n2,lcm);
break;
}
++lcm;
}
}
}
| UTF-8 | Java | 270 | java | lcm (1).java | Java | [] | null | [] | import java.io.*;
import java.util.*;
class lcm{
public static void main (String args[]){
int n1=24,n2=12,lcm;
lcm=(n1>n2)?n1:n2;
while(true){
if(lcm%n1==0 && lcm%n2==0){
System.out.printf("lcm of %d and %d is %d.",n1,n2,lcm);
break;
}
++lcm;
}
}
}
| 270 | 0.574074 | 0.514815 | 15 | 15.6 | 15.050138 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.8 | false | false | 9 |
3924cd3a5093afccab38a832dc605521dbd54c8b | 3,169,685,932,296 | 56beda9aa2961e9010ce32306cc1da39c2126399 | /src/main/java/com/fibermc/essentialcommands/commands/BackCommand.java | f4c75b1786ec5661b302e4202d071012beb361a4 | [
"MIT"
] | permissive | John-Paul-R/Essential-Commands | https://github.com/John-Paul-R/Essential-Commands | 77f97544b4a60fc6bc30a68e05408e652b7252ad | 0d9740214a333c1a3a75103be9d992e833c329af | refs/heads/1.20.x | 2023-08-23T05:27:53.884000 | 2023-08-03T21:24:59 | 2023-08-03T21:24:59 | 196,686,025 | 90 | 43 | MIT | false | 2023-09-14T00:20:08 | 2019-07-13T06:18:08 | 2023-08-30T11:17:07 | 2023-09-14T00:20:07 | 1,375 | 86 | 26 | 50 | Java | false | false | package com.fibermc.essentialcommands.commands;
import com.fibermc.essentialcommands.access.ServerPlayerEntityAccess;
import com.fibermc.essentialcommands.playerdata.PlayerData;
import com.fibermc.essentialcommands.teleportation.PlayerTeleporter;
import com.fibermc.essentialcommands.text.ECText;
import com.fibermc.ess... | UTF-8 | Java | 1,524 | java | BackCommand.java | Java | [] | null | [] | package com.fibermc.essentialcommands.commands;
import com.fibermc.essentialcommands.access.ServerPlayerEntityAccess;
import com.fibermc.essentialcommands.playerdata.PlayerData;
import com.fibermc.essentialcommands.teleportation.PlayerTeleporter;
import com.fibermc.essentialcommands.text.ECText;
import com.fibermc.ess... | 1,524 | 0.75853 | 0.757218 | 41 | 36.170731 | 30.342678 | 95 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.512195 | false | false | 9 |
d6738a6a9f3468bab3efc287b70d9593c6731055 | 6,863,357,795,975 | 915d2ac6d2ff246ece0657ac6f777a1851fbd110 | /src/main/java/com/ufobuilders/branchlet/git/GitRepository.java | 2b852140ef7919b69fb38314ca2abdd482582afa | [] | no_license | ufobuilders/branchlet | https://github.com/ufobuilders/branchlet | e19893bf96cfbd10b28770b97749f2cf31cb4f5d | 877ea548676e1b1bc54e26c71ce7d52bcf6a655f | refs/heads/master | 2016-08-04T03:29:57.754000 | 2014-02-11T09:55:40 | 2014-02-11T09:55:40 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ufobuilders.branchlet.git;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.lib.Ref;
import org.eclipse.jgit.lib.Repository;
public class GitRepository {
private Repository repository;
public... | UTF-8 | Java | 735 | java | GitRepository.java | Java | [] | null | [] | package com.ufobuilders.branchlet.git;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.lib.Ref;
import org.eclipse.jgit.lib.Repository;
public class GitRepository {
private Repository repository;
public... | 735 | 0.746939 | 0.746939 | 30 | 23.5 | 20.248045 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.1 | false | false | 9 |
0cce57e284fd0f47b4efb0d1d11338db45c595d4 | 11,149,735,133,393 | 52727fb7d9123f3ae5fa25284b65d25f736fa4ac | /VerwaltenDatenbankBuch.java | 51274df0878bb03aa806489647f5a8c38d07364f | [] | no_license | EDVBeratung-Zimmermann/CHMV | https://github.com/EDVBeratung-Zimmermann/CHMV | b5b0e591a02a88b231679325ad9adfb0539d6a31 | b896eb9e74350f48a42f8066d92accba4fe8c72f | refs/heads/master | 2023-03-16T06:15:51.290000 | 2023-03-04T10:24:45 | 2023-03-04T10:24:45 | 163,578,554 | 2 | 2 | null | false | 2019-10-14T15:43:03 | 2018-12-30T10:19:16 | 2019-10-13T17:55:32 | 2019-10-14T15:43:02 | 1,309 | 1 | 2 | 0 | Java | false | false | /*
*
* Das JAVA-Programm Miles-Verlag Verlagsverwaltung stellt alle notwendigen
* Funktionen für die Verwaltung des Carola Hartman Miles-Verlags bereit.
*
* Copyright (C) 2017 EDV-Beratung und Betrieb, Entwicklung von SOftware
* Dipl.Inform Thomas Zimmermann
*
* This program is free software:... | ISO-8859-1 | Java | 144,940 | java | VerwaltenDatenbankBuch.java | Java | [
{
"context": "e notwendigen\n * Funktionen für die Verwaltung des Carola Hartman Miles-Verlags bereit.\n *\n * Copyright (C) 2017 EDV-Bera",
"end": 139,
"score": 0.9955164790153503,
"start": 119,
"tag": "NAME",
"value": "Carola Hartman Miles"
},
{
"context": "ung von SOftware\n * ... | null | [] | /*
*
* Das JAVA-Programm Miles-Verlag Verlagsverwaltung stellt alle notwendigen
* Funktionen für die Verwaltung des <NAME>-Verlags bereit.
*
* Copyright (C) 2017 EDV-Beratung und Betrieb, Entwicklung von SOftware
* Dipl.Inform <NAME>
*
* This program is free software: you can redistribute it ... | 144,882 | 0.544844 | 0.532865 | 2,838 | 50.066242 | 32.018017 | 185 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.865751 | false | false | 9 |
c71ce3b7f1ebd2619b110bc17e49f93b50c066a0 | 23,338,852,318,285 | bf2ddb1279417276a3c5d2f38e8ad19ff9365087 | /src/main/java/com/fanbo/model/response/LoginResponse.java | b8cfe00cb4b213507528c9701c5d08f318297b39 | [] | no_license | ybfanbo/websvr-composite | https://github.com/ybfanbo/websvr-composite | d4b06edae6c221db6a3e5a55d034136401837f1c | ea79e20d7cfb0bd3b0ab7b6af6a607dab066dc28 | refs/heads/master | 2022-12-05T10:10:19.334000 | 2020-08-23T02:39:27 | 2020-08-23T02:39:27 | 280,291,025 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.fanbo.model.response;
public class LoginResponse {
}
| UTF-8 | Java | 66 | java | LoginResponse.java | Java | [] | null | [] | package com.fanbo.model.response;
public class LoginResponse {
}
| 66 | 0.787879 | 0.787879 | 4 | 15.5 | 15.107944 | 33 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.25 | false | false | 9 |
584ff15b60a6768169e306706e754e0a7d9b6456 | 20,401,094,681,542 | af2b0e531d534e980c3680641d7a37d0a9c18aef | /src/exercise/chapter1/EX1416ClosestPair1D.java | 99bdb1ec339a3318d436fcaacbb3df45d29aad11 | [] | no_license | whuTangYue/Algorithm | https://github.com/whuTangYue/Algorithm | c8309ed4f42acaad3987f100b8a359cea44baeb5 | 1049f6534b7be6a76bba4349abfe023e11f66d37 | refs/heads/master | 2021-01-21T12:31:05.722000 | 2018-07-11T03:05:04 | 2018-07-11T03:05:04 | 102,078,086 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package exercise.chapter1;
import java.util.Arrays;
public class EX1416ClosestPair1D {
public static double[] closestPair(double[] nums){
if(nums==null||nums.length<2) return new double[0];
if(nums.length==2) return nums;
Arrays.sort(nums);//O(nlogn)
double[] m=new double[2];
double min=Doub... | UTF-8 | Java | 801 | java | EX1416ClosestPair1D.java | Java | [] | null | [] | package exercise.chapter1;
import java.util.Arrays;
public class EX1416ClosestPair1D {
public static double[] closestPair(double[] nums){
if(nums==null||nums.length<2) return new double[0];
if(nums.length==2) return nums;
Arrays.sort(nums);//O(nlogn)
double[] m=new double[2];
double min=Doub... | 801 | 0.621723 | 0.569288 | 31 | 23.838709 | 21.068394 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.322581 | false | false | 9 |
ab0447933390819ae300fa09bfe632d44f7cf884 | 17,549,236,403,006 | 5516cb4f94317c4bc13de1390b6ebac6a7ac9bd6 | /Test/src/main/java/stand/pcm/tx/CurrentVoltageSensor.java | 5490ea403d5b41d3a75ef2c71ee0a77d1bd45f22 | [] | no_license | SharyfIsmail/Stand-java | https://github.com/SharyfIsmail/Stand-java | 66b05d9f46490cf81ab60b067c10da36641b600b | ac78c88d15b26f6e1074a915146461e63570c3bf | refs/heads/master | 2023-02-12T03:27:44.708000 | 2021-01-14T09:33:43 | 2021-01-14T09:33:43 | 270,939,861 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package stand.pcm.tx;
import stand.can.CanCdr;
import stand.can.candata.DataFromCan;
import stand.util.BigEndByteParser;
public class CurrentVoltageSensor extends CanCdr implements DataFromCan {
private int current;
private int voltage;
private String error; // 65535(current) - Current_Voltage_Sensor not connecte... | UTF-8 | Java | 2,218 | java | CurrentVoltageSensor.java | Java | [] | null | [] | package stand.pcm.tx;
import stand.can.CanCdr;
import stand.can.candata.DataFromCan;
import stand.util.BigEndByteParser;
public class CurrentVoltageSensor extends CanCdr implements DataFromCan {
private int current;
private int voltage;
private String error; // 65535(current) - Current_Voltage_Sensor not connecte... | 2,218 | 0.658481 | 0.633924 | 90 | 23.433332 | 22.088232 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.2 | false | false | 9 |
fdfdc2cf0fd6cc462fbe64ee0881ca32b51cbd4b | 15,238,544,003,888 | 3f9f2250447ff64240eeafd20eeba0e9123d7831 | /src/main/java/org/ocsoft/flatlaf/extended/tree/WebExTree.java | 1ed5e811407537464820870393625a4eec748a58 | [] | no_license | tohhy/flatlaf | https://github.com/tohhy/flatlaf | 351f363a4b87f88040d735d484fac4240842a468 | ae9b87cae5e247c649eb15cd19cf56c3584710ce | refs/heads/master | 2016-09-05T12:48:19.708000 | 2016-01-20T12:55:59 | 2016-01-20T12:55:59 | 28,683,550 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* This file is part of WebLookAndFeel library.
*
* WebLookAndFeel library is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
... | UTF-8 | Java | 21,974 | java | WebExTree.java | Java | [
{
"context": "the tree to\n * create its structure.\n *\n * @author Mikle Garin\n * @see org.ocsoft.flatlaf.extended.tree.ExTreeMo",
"end": 1692,
"score": 0.9998432397842407,
"start": 1681,
"tag": "NAME",
"value": "Mikle Garin"
}
] | null | [] | /*
* This file is part of WebLookAndFeel library.
*
* WebLookAndFeel library is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
... | 21,969 | 0.588104 | 0.587786 | 711 | 29.907173 | 23.907459 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.251758 | false | false | 9 |
c20749c51c4085f2b2d51108bb095242387ff3bd | 8,040,178,796,987 | 8a4d5f8f38977d1ed489a802d628b243afebdbee | /src/main/java/com/hcl/bankingapp/repository/BeneficiaryStatusRepository.java | f2077f6813ffd21a98a7f570f8a63a38c4f371e7 | [] | no_license | shadowkate/Banking1 | https://github.com/shadowkate/Banking1 | 26e97698391c11505c1fb47702b58a930691e3df | a497aa50d4ecd9977755296df9177960d0a45c9d | refs/heads/master | 2020-07-19T03:44:01.632000 | 2019-09-04T16:52:39 | 2019-09-04T16:52:39 | 206,368,254 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hcl.bankingapp.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import com.hcl.bankingapp.entity.BeneficiaryStatus;
public interface BeneficiaryStatusRepository extends JpaRepository<BeneficiaryStatus, Integer> {
}
| UTF-8 | Java | 256 | java | BeneficiaryStatusRepository.java | Java | [] | null | [] | package com.hcl.bankingapp.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import com.hcl.bankingapp.entity.BeneficiaryStatus;
public interface BeneficiaryStatusRepository extends JpaRepository<BeneficiaryStatus, Integer> {
}
| 256 | 0.851563 | 0.851563 | 9 | 27.444445 | 33.671982 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.444444 | false | false | 9 |
f85bbd9f54f25048ee1b256c9683708dd13321ba | 8,040,178,797,980 | f7167b6f416b7e75c4a5965e198d1628f5d61fb0 | /mad-graphs-master/mad-graphs-master/mad-graphs-master@e3528182ef3/src/main/java/com/jda/mad/GraphAllProbesFromSupportZip.java | 2ba2e6ba5a6352fb74143d196075f3b1d6e4028e | [] | no_license | SamNiBoy/Knowledge | https://github.com/SamNiBoy/Knowledge | cacceba18ccbe7ca61b9c2b27e15d1fd1ef8f9c1 | cf3497888e9ea05a6695f76f5d7c24f61d624701 | refs/heads/master | 2020-02-29T11:50:21.278000 | 2020-02-07T02:50:33 | 2020-02-07T02:50:33 | 88,963,053 | 0 | 3 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jda.mad;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.TimeZone;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import com.jda.mad.graphs.ChartType;
import com.jda.mad.graphs.Grapher;
import com.jda.mad.graphs.Ut... | UTF-8 | Java | 6,438 | java | GraphAllProbesFromSupportZip.java | Java | [
{
"context": "016 JDA Software All Rights Reserved\n *\n * @author mdobrinin\n */\npublic class GraphAllProbesFromSupportZip {\n\n",
"end": 890,
"score": 0.9955969452857971,
"start": 881,
"tag": "USERNAME",
"value": "mdobrinin"
}
] | null | [] | package com.jda.mad;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.TimeZone;
import java.util.zip.ZipEntry;
import java.util.zip.ZipFile;
import com.jda.mad.graphs.ChartType;
import com.jda.mad.graphs.Grapher;
import com.jda.mad.graphs.Ut... | 6,438 | 0.607642 | 0.605002 | 163 | 38.503067 | 32.827187 | 254 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.742331 | false | false | 9 |
79b15651a1b7b2d6ce6555453890766c1b8bd04b | 29,394,756,176,048 | 2800bee378af90c7ad736743e37ba40c0745275e | /GeneticKnapsack/src/org/knapsack/KnapsackItem.java | db03790525f6cab85c46db0ec969c0078e37c627 | [] | no_license | fractalDimension/knapsack-problem-genetic-algo | https://github.com/fractalDimension/knapsack-problem-genetic-algo | 0a8bec7a25df558c91671640cb3ec9aff4695cd2 | bfabdcaca4760654a312b244f88160195d845868 | refs/heads/master | 2016-09-06T01:28:50.268000 | 2015-07-10T03:28:53 | 2015-07-10T03:28:53 | 38,797,459 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.knapsack;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import org.uncommons.maths.random.MersenneTwisterRNG;
//git staging test delete this comment when done
public class KnapsackItem {
//still need to create a factory to create objects of this dude
private List<List<St... | UTF-8 | Java | 1,370 | java | KnapsackItem.java | Java | [] | null | [] | package org.knapsack;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import org.uncommons.maths.random.MersenneTwisterRNG;
//git staging test delete this comment when done
public class KnapsackItem {
//still need to create a factory to create objects of this dude
private List<List<St... | 1,370 | 0.662044 | 0.653285 | 51 | 25.862745 | 21.274139 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.117647 | false | false | 9 |
639ea54762b5a22adcacc5adbe44562f7bbeb362 | 6,442,450,974,637 | b75d958cf00bf19bffaf9d74d8b7754fbe35ea39 | /springboot-rabbitmq/src/test/java/com/example/rabbitmq/mq/MQTest.java | ed695477907083ef79c4ac565db870ffd0cd97ea | [
"Apache-2.0"
] | permissive | pcshao/springboot-example | https://github.com/pcshao/springboot-example | bb56c739a1a3ac9907f5dc7fa5ffd904424bb60d | 21a4d0974789ecd65b16152de98b7c3dbc154a45 | refs/heads/master | 2020-04-05T06:57:05.383000 | 2018-11-09T03:23:58 | 2018-11-09T03:23:58 | 156,657,946 | 0 | 0 | Apache-2.0 | true | 2018-11-08T06:04:23 | 2018-11-08T06:04:23 | 2018-11-05T14:48:35 | 2018-09-12T03:40:10 | 69 | 0 | 0 | 0 | null | false | null | package com.example.rabbitmq.mq;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import java.text.SimpleDateFormat;
import ja... | UTF-8 | Java | 680 | java | MQTest.java | Java | [] | null | [] | package com.example.rabbitmq.mq;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import java.text.SimpleDateFormat;
import ja... | 680 | 0.737463 | 0.735988 | 26 | 25.115385 | 22.106955 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.461538 | false | false | 9 |
a9c0c1ecbfc0f9d5cce4bdcd7402f20192ac6def | 29,523,605,219,185 | df1ade52dec2914bbea095e1e7a639ddbf4e3a15 | /src/main/java/input/MySQLConnectionInfo.java | 75823a635421f8187d9a136793a2ce13b1d52582 | [] | no_license | lhermannGit/RDFAnalyzer | https://github.com/lhermannGit/RDFAnalyzer | 8ccb4c9278e4997031d6da1d1074eab515c6c74b | c09cb99f579a412c37d8c42c98b0c28742dd12cc | refs/heads/master | 2021-01-10T08:43:32.487000 | 2016-03-03T17:41:14 | 2016-03-03T17:41:14 | 50,346,733 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package input;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class MySQLConnectionInfo {
String password = "";
String username = "";
String database = "";
String server = "";
... | UTF-8 | Java | 1,372 | java | MySQLConnectionInfo.java | Java | [
{
"context": "ad(inputStream);\n\t\t\t\tusername = prop.getProperty(\"username\");\n\t\t\t\tpassword = prop.getProperty(\"password\");\n\t",
"end": 708,
"score": 0.9978632926940918,
"start": 700,
"tag": "USERNAME",
"value": "username"
},
{
"context": "rty(\"username\");\n\t\t\t\tpass... | null | [] | package input;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class MySQLConnectionInfo {
String password = "";
String username = "";
String database = "";
String server = "";
... | 1,376 | 0.689504 | 0.688047 | 65 | 20.107693 | 17.340147 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.015385 | false | false | 9 |
392d6e65c50dff065232a04d8bda368557623310 | 26,285,199,876,604 | be6edaedcb611b094335677fdd829a62786e50fd | /src/test/java/com/labkit/test/personapi/patch/jax/rs/PatchingTest.java | eeac02ee17a5fb8fc9703226c1ffdb2441d55906 | [
"MIT"
] | permissive | vidhya03/http-patch-jax-rs | https://github.com/vidhya03/http-patch-jax-rs | 4936330cfd590e370ff43288e9dd7d9a43e4a3f6 | 6806e679618fb22906e1f01c333cfb251314dde5 | refs/heads/master | 2021-01-17T17:55:55.540000 | 2018-10-23T07:46:15 | 2018-10-23T07:46:15 | 53,337,719 | 1 | 6 | MIT | false | 2018-10-23T07:46:17 | 2016-03-07T15:50:20 | 2018-03-30T16:03:14 | 2018-10-23T07:46:16 | 8,643 | 1 | 5 | 8 | Java | false | null | package com.labkit.test.personapi.patch.jax.rs;
import static org.mockito.Mockito.when;
import javax.ws.rs.core.UriInfo;
import javax.ws.rs.ext.ReaderInterceptorContext;
import org.junit.Test;
import org.mockito.Mock;
import com.vidhya.java.http.patch.jax.rs.Patching;
public class PatchingTest {
Patching patch;... | UTF-8 | Java | 561 | java | PatchingTest.java | Java | [] | null | [] | package com.labkit.test.personapi.patch.jax.rs;
import static org.mockito.Mockito.when;
import javax.ws.rs.core.UriInfo;
import javax.ws.rs.ext.ReaderInterceptorContext;
import org.junit.Test;
import org.mockito.Mock;
import com.vidhya.java.http.patch.jax.rs.Patching;
public class PatchingTest {
Patching patch;... | 561 | 0.764706 | 0.764706 | 31 | 17.096775 | 19.776745 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.967742 | false | false | 9 |
4b64c042a7740b406185e6a2302d94757a22d2a2 | 19,396,072,330,146 | 8c920fa1f68f32ba7d872f73925b24eb0c5a4c4c | /Pertemuan11/src/pratikum11/bangundatar/Resizeable.java | 8a8817a15901a161546c80de92e01248cc12d27a | [] | no_license | alfendors/PBO_4423 | https://github.com/alfendors/PBO_4423 | 4d187ca3178eb3e35831fa45f05b9783298233b9 | 53bafe4d65c239e73274002927331909e0a48063 | refs/heads/main | 2023-06-12T02:07:59.727000 | 2021-07-12T10:31:45 | 2021-07-12T10:31:45 | 344,752,861 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pratikum11.bangundatar;
public interface Resizeable {
public void resize(double x);
}
| UTF-8 | Java | 99 | java | Resizeable.java | Java | [] | null | [] | package pratikum11.bangundatar;
public interface Resizeable {
public void resize(double x);
}
| 99 | 0.767677 | 0.747475 | 5 | 18.799999 | 14.998667 | 33 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 9 |
edf5d9f07df2babef25ffd7ba45972b2e87cb723 | 27,831,388,105,834 | 53653737855af76622b782b9050463ebb6e11c45 | /src/model/SalesOrder.java | d8112ce83df78b22267b68c020546b81bca26a8f | [] | no_license | inforkgodara/automate-manual-repetitive-data-entry-tasks | https://github.com/inforkgodara/automate-manual-repetitive-data-entry-tasks | d29214d30f5fd2eeeac8529f6ec10b66c04cebb4 | 452a3e432313493e1f67e03ebf10bb511e1b076c | refs/heads/master | 2023-05-13T04:52:51.542000 | 2021-06-06T20:14:31 | 2021-06-06T20:14:31 | 304,935,478 | 8 | 2 | 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 model;
/**
*
* @author Ramesh Godara
*/
public class SalesOrder {
}
| UTF-8 | Java | 270 | java | SalesOrder.java | Java | [
{
"context": " the editor.\n */\npackage model;\n\n/**\n *\n * @author Ramesh Godara\n */\npublic class SalesOrder {\n \n}\n",
"end": 232,
"score": 0.9998818635940552,
"start": 219,
"tag": "NAME",
"value": "Ramesh Godara"
}
] | 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 model;
/**
*
* @author <NAME>
*/
public class SalesOrder {
}
| 263 | 0.696296 | 0.696296 | 14 | 18.285715 | 23.571861 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.285714 | false | false | 9 |
efe8cdd855119615aa18b18d10513dc01fceb6c5 | 19,808,389,201,894 | 944da74138e0b0efde96b5fe731bbfdbe4520c5c | /Starterbot/src/gos/bot/Engine.java | 87ab64381a5b91b87f2c41bc1e59f35fcd637f53 | [
"Apache-2.0"
] | permissive | Oduig/swoc2014 | https://github.com/Oduig/swoc2014 | d9d62b1799c3c4a4ad15fd0eb0ccca341c298f72 | 9459163c0df76d64da54dd0f02d0b6634da95055 | refs/heads/master | 2021-01-10T21:08:57.192000 | 2014-10-12T18:46:18 | 2014-10-12T18:46:18 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package gos.bot;
import gos.bot.protocol.InitiateRequest;
import gos.bot.protocol.Move;
import gos.bot.protocol.MoveRequest;
import gos.bot.protocol.Player;
import gos.bot.protocol.ProcessedMove;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import com.google.gson.Gson;... | UTF-8 | Java | 4,567 | java | Engine.java | Java | [] | null | [] | package gos.bot;
import gos.bot.protocol.InitiateRequest;
import gos.bot.protocol.Move;
import gos.bot.protocol.MoveRequest;
import gos.bot.protocol.Player;
import gos.bot.protocol.ProcessedMove;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import com.google.gson.Gson;... | 4,567 | 0.567988 | 0.567988 | 189 | 23.164021 | 21.334562 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.365079 | false | false | 9 |
70fd11f7580599b0ebe8b406b4e9ae7ff3d29659 | 2,147,483,670,178 | d97188826b74798317d1d0213f81df1a908a7854 | /src/main/java/com/equipment/management/handler/JwtAccessDeniedHandler.java | 324c71b27169daf4613692ce0fa5dd40c7f105e2 | [] | no_license | alllostser/equipment-management-system | https://github.com/alllostser/equipment-management-system | d17843e3397f0f00103f105a1a356edbea861455 | a5a8cce8e725654f270d91f6244ae36f1806b11a | refs/heads/master | 2023-03-17T02:45:42.604000 | 2021-03-07T17:25:35 | 2021-03-07T17:25:35 | 328,713,301 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.equipment.management.handler;
import com.equipment.management.utils.ResultUtil;
import lombok.SneakyThrows;
import org.springframework.security.access.AccessDeniedException;
import org.springframework.security.web.access.AccessDeniedHandler;
import javax.servlet.http.HttpServletRequest;
import javax.servl... | UTF-8 | Java | 1,251 | java | JwtAccessDeniedHandler.java | Java | [
{
"context": "cessDeineHandler 用来解决认证过的用户访问无权限资源时的异常\n * @author: Guxinyu\n * @created: 2020/09/18 17:30\n */\npublic class Jw",
"end": 507,
"score": 0.9995051622390747,
"start": 500,
"tag": "USERNAME",
"value": "Guxinyu"
}
] | null | [] | package com.equipment.management.handler;
import com.equipment.management.utils.ResultUtil;
import lombok.SneakyThrows;
import org.springframework.security.access.AccessDeniedException;
import org.springframework.security.web.access.AccessDeniedHandler;
import javax.servlet.http.HttpServletRequest;
import javax.servl... | 1,251 | 0.764075 | 0.75067 | 33 | 32.909092 | 29.281666 | 146 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 9 |
9f5ea13e3297e50e831c1135da81975a1fa23fb9 | 2,594,160,268,355 | d04318f0a01b10d4f9e9415873178c99697b637d | /src/main/java/repository/ServicoRepositoryList.java | 591e885b81340bc9d8cf73df190edd6f79313c1a | [] | no_license | UCDB/sistema_financeiro_2017_A2 | https://github.com/UCDB/sistema_financeiro_2017_A2 | cbc9327f48fadb98762e1f8e28a4b995e26adbd4 | 5911a5cab4450c4d9f4d3ff3100d323966b96cbe | refs/heads/master | 2021-01-21T22:05:52.044000 | 2017-06-23T01:55:21 | 2017-06-23T01:55:21 | 95,165,069 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package repository;
import java.util.ArrayList;
import java.util.List;
import model.Servico;
public class ServicoRepositoryList implements ServicoRepository{
private int id=0;
private List<Servico> lista = new ArrayList<>();
@Override
public void cadastrar(Servico serv) {
serv.setId_funcionario(id++);
... | UTF-8 | Java | 544 | java | ServicoRepositoryList.java | Java | [] | null | [] | package repository;
import java.util.ArrayList;
import java.util.List;
import model.Servico;
public class ServicoRepositoryList implements ServicoRepository{
private int id=0;
private List<Servico> lista = new ArrayList<>();
@Override
public void cadastrar(Servico serv) {
serv.setId_funcionario(id++);
... | 544 | 0.689338 | 0.685662 | 29 | 17.758621 | 18.214537 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.517241 | false | false | 15 |
6d00c577d5722e3a55238ab3735bf396377c8063 | 19,198,503,815,119 | bc481ba079430cf1c271126d91ec287524e5ad69 | /Tutorial34/src/SerializeArray/WriteObjects.java | 5f3dda423eaaf092e43c5de438452ce93ca33798 | [] | no_license | gg-akaghzi/java | https://github.com/gg-akaghzi/java | 2038dde676213c8f201a31d5120e81c7f0354349 | 353eea953dbedbf1dcbaae7dd4d4a32bd6f5525a | refs/heads/master | 2016-08-06T14:24:26.274000 | 2014-11-14T16:46:23 | 2014-11-14T16:46:23 | 26,131,715 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package SerializeArray;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import java.util.ArrayList;
import java.util.Arrays;
public class WriteObjects {
public static void main(String[] args) {
System.out.println("Writing object... | UTF-8 | Java | 1,008 | java | WriteObjects.java | Java | [
{
"context": "g objects\");\n\t\tPerson[] people = { new Person(1, \"mike\"), new Person(2, \"sue\"),\n\t\t\t\tnew Person(3, \"bob\")",
"end": 366,
"score": 0.9998189806938171,
"start": 362,
"tag": "NAME",
"value": "mike"
},
{
"context": " people = { new Person(1, \"mike\"), new Pers... | null | [] | package SerializeArray;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import java.util.ArrayList;
import java.util.Arrays;
public class WriteObjects {
public static void main(String[] args) {
System.out.println("Writing object... | 1,008 | 0.704365 | 0.701389 | 35 | 27.799999 | 21.36459 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.142857 | false | false | 15 |
dd2248ef8de51e16e061f63bca5da04b895dc417 | 1,013,612,305,071 | 12762497d537c34c977b85ec6875157ae9131ed1 | /app/src/main/java/com/yundong/milk/api/service/IPCAService.java | 3a5025ac5fbf76fdadd94e8838da09da886a994a | [] | no_license | 415192022/Milk | https://github.com/415192022/Milk | 42fc2bf6298f5f626c9154842fe8fe8f33123053 | c43e8b96d7b2ab95c3b17860110917e55c37e14a | refs/heads/master | 2021-01-16T23:16:37.189000 | 2017-03-20T09:58:21 | 2017-03-20T09:58:21 | 82,780,130 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.yundong.milk.api.service;
import com.yundong.milk.model.BuyNowBean;
import com.yundong.milk.model.PCABean;
import retrofit2.http.Field;
import retrofit2.http.FormUrlEncoded;
import retrofit2.http.POST;
import rx.Observable;
/**
* Created by MingweiLi on 2017/3/3.
*/
public interface IPCAService {
... | UTF-8 | Java | 464 | java | IPCAService.java | Java | [
{
"context": "ttp.POST;\nimport rx.Observable;\n\n/**\n * Created by MingweiLi on 2017/3/3.\n */\n\npublic interface IPCAService {\n",
"end": 266,
"score": 0.8820414543151855,
"start": 257,
"tag": "USERNAME",
"value": "MingweiLi"
}
] | null | [] | package com.yundong.milk.api.service;
import com.yundong.milk.model.BuyNowBean;
import com.yundong.milk.model.PCABean;
import retrofit2.http.Field;
import retrofit2.http.FormUrlEncoded;
import retrofit2.http.POST;
import rx.Observable;
/**
* Created by MingweiLi on 2017/3/3.
*/
public interface IPCAService {
... | 464 | 0.724138 | 0.704741 | 21 | 21.095238 | 17.0961 | 58 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.380952 | false | false | 15 |
7b9a417cdc51f5d7640af34b991fe990d1361660 | 26,199,300,530,280 | 5a17f2137e1b29edcbf268dd3c2de3150a78ec43 | /ZipCodeRange/src/main/java/com/williamssonoma/zipcode/model/ZipCodeRange.java | 11d235298d94e5922d7845ccff3c01dd7823f647 | [] | no_license | asajjad1234/JavaMisc | https://github.com/asajjad1234/JavaMisc | 7c737a363831b82e866b0933fcff356d104444a1 | e63846f8a0681e35cd80bbab0ab5a0768254941b | refs/heads/master | 2020-04-11T02:13:54.606000 | 2019-01-22T09:36:03 | 2019-01-22T09:36:03 | 161,438,874 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
*
*/
package com.williamssonoma.zipcode.model;
/**
* @author ahmedsajjad
* A class to hold the lower and upper bound Zip Code ranges.
*/
public final class ZipCodeRange implements Comparable <ZipCodeRange> {
private String lowerBound;
private String upperBound;
/**
* Constructor to cre... | UTF-8 | Java | 1,216 | java | ZipCodeRange.java | Java | [
{
"context": "m.williamssonoma.zipcode.model;\r\n\r\n/**\r\n * @author ahmedsajjad\r\n * A class to hold the lower and upper bound Zip",
"end": 87,
"score": 0.9990501403808594,
"start": 76,
"tag": "USERNAME",
"value": "ahmedsajjad"
}
] | null | [] | /**
*
*/
package com.williamssonoma.zipcode.model;
/**
* @author ahmedsajjad
* A class to hold the lower and upper bound Zip Code ranges.
*/
public final class ZipCodeRange implements Comparable <ZipCodeRange> {
private String lowerBound;
private String upperBound;
/**
* Constructor to cre... | 1,216 | 0.658717 | 0.657895 | 60 | 18.266666 | 19.811501 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.066667 | false | false | 15 |
c8d1f68786e31f87f87f04f461d4d40a601a6937 | 18,665,927,911,151 | 7f0c43b9d8914e856ccc30fe27ea8e11f4dd06be | /src/main/java/com/guonl/car/factory/CSSupplier.java | dea611fd63e01d9f216e33e54d8d89409cb02f2b | [
"Apache-2.0"
] | permissive | guonl/DesignPattern | https://github.com/guonl/DesignPattern | 8a95e59887b4eac15311c27b5a9db1821283b4d1 | e8a5be9185eca7afe8d355e6f2c80d84ec8f9e9a | refs/heads/master | 2020-12-02T18:12:27.364000 | 2017-11-21T02:58:41 | 2017-11-21T02:58:41 | 96,303,749 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.guonl.car.factory;
/**
*
* @ClassName: JSSupplier
* @Description: 捷顺供应商
* @author guonl
* @date 2017年8月3日 上午10:46:32
* @version V1.0
*
*/
public class CSSupplier implements ParkingSupplier {
@Override
public Boolean checkIsExist() {
return true;
}
@Override
public ... | UTF-8 | Java | 564 | java | CSSupplier.java | Java | [
{
"context": "e: JSSupplier \r\n * @Description: 捷顺供应商\r\n * @author guonl\r\n * @date 2017年8月3日 上午10:46:32 \r\n * @version V1.0",
"end": 112,
"score": 0.9993324875831604,
"start": 107,
"tag": "USERNAME",
"value": "guonl"
}
] | null | [] | package com.guonl.car.factory;
/**
*
* @ClassName: JSSupplier
* @Description: 捷顺供应商
* @author guonl
* @date 2017年8月3日 上午10:46:32
* @version V1.0
*
*/
public class CSSupplier implements ParkingSupplier {
@Override
public Boolean checkIsExist() {
return true;
}
@Override
public ... | 564 | 0.634328 | 0.608209 | 30 | 15.866667 | 17.188627 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.7 | false | false | 15 |
d09a5576d7000e227f0709c8ab1227f9aa8025be | 35,622,458,761,894 | d835e9623b5f83c18a21407bd6cf0ab7d2f26895 | /src/org/AttackTheFortress/views/MenuView.java | 3ade18cfd99cf4706eed28c1b70bbfa50bf04898 | [] | no_license | panda926/AttackTheFortness | https://github.com/panda926/AttackTheFortness | 400633c32246e93bc2565dd2176bf50679305370 | f5bdc44b18a6f2cb8118bc8c8135ad6d005ca534 | refs/heads/master | 2021-01-10T05:24:28.545000 | 2016-03-17T13:59:33 | 2016-03-17T13:59:33 | 54,122,168 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.AttackTheFortress.views;
import org.AttackTheFortress.DataManager;
import org.AttackTheFortress.Global;
import org.cocos2d.layers.Layer;
import org.cocos2d.menus.Menu;
import org.cocos2d.menus.MenuItem;
import org.cocos2d.menus.MenuItemImage;
import org.cocos2d.nodes.Director;
import org.cocos2d.n... | UTF-8 | Java | 1,685 | java | MenuView.java | Java | [] | null | [] | package org.AttackTheFortress.views;
import org.AttackTheFortress.DataManager;
import org.AttackTheFortress.Global;
import org.cocos2d.layers.Layer;
import org.cocos2d.menus.Menu;
import org.cocos2d.menus.MenuItem;
import org.cocos2d.menus.MenuItemImage;
import org.cocos2d.nodes.Director;
import org.cocos2d.n... | 1,685 | 0.691395 | 0.674777 | 57 | 27.561403 | 23.241688 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.649123 | false | false | 15 |
6c3d6812be88ba31d8292234918cd575ad4eb6aa | 11,785,390,323,933 | 2d76beab605a966bf26a86a26e510b9ec127e698 | /src/main/java/com/lysong/friday/service/PermissionService.java | babd477530f7e1390d0b96595ff52348731cc0df | [] | no_license | LySong000/SpringBootRBAC | https://github.com/LySong000/SpringBootRBAC | dae545cd8fac2075da277e3231d41482568b6385 | 879345b9f13b37b8f57f7d5e695347d7d35dbfdb | refs/heads/master | 2022-06-21T11:49:59.502000 | 2020-03-22T04:57:32 | 2020-03-22T04:57:32 | 248,483,495 | 3 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lysong.friday.service;
import com.lysong.friday.base.result.Results;
import com.lysong.friday.model.SysPermission;
/**
* @Author: LySong
* @Date: 2020/3/17 23:13
*/
public interface PermissionService {
Results listAllPermission();
Results<SysPermission> listAllPermissionByRoleId(... | UTF-8 | Java | 658 | java | PermissionService.java | Java | [
{
"context": "ng.friday.model.SysPermission;\r\n\r\n/**\r\n * @Author: LySong\r\n * @Date: 2020/3/17 23:13\r\n */\r\npublic interface",
"end": 157,
"score": 0.999122142791748,
"start": 151,
"tag": "USERNAME",
"value": "LySong"
}
] | null | [] | package com.lysong.friday.service;
import com.lysong.friday.base.result.Results;
import com.lysong.friday.model.SysPermission;
/**
* @Author: LySong
* @Date: 2020/3/17 23:13
*/
public interface PermissionService {
Results listAllPermission();
Results<SysPermission> listAllPermissionByRoleId(... | 658 | 0.727964 | 0.711246 | 27 | 22.370371 | 23.297031 | 67 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.407407 | false | false | 15 |
4e527a5537446c326bb383b4539651602f28684f | 27,530,740,391,658 | 67b01200460a5ee7d143a400c37cf1244dc30a5c | /springockito-annotations/src/test/java/org/kubek2k/springockito/annotations/it/SpringockitoAnnotationsSpiesIntegrationTest.java | 34fd5416355ea8c1ee5185a42fde64d7ebc4c684 | [] | no_license | kmoens/springockito | https://github.com/kmoens/springockito | 17b3234027026f5b427f14ed5f1002dbed8ee35b | 108d86705d34ac8e75fca190f85a8e517b0da9fa | refs/heads/master | 2022-12-21T13:21:53.282000 | 2020-02-25T12:53:45 | 2020-02-25T12:53:45 | 40,006,287 | 5 | 4 | null | false | 2022-12-16T00:47:31 | 2015-07-31T13:21:26 | 2020-02-25T12:53:49 | 2022-12-16T00:47:28 | 94 | 6 | 3 | 11 | Java | false | false | package org.kubek2k.springockito.annotations.it;
import org.kubek2k.springockito.annotations.SpringockitoContextLoader;
import org.kubek2k.springockito.annotations.WrapWithSpy;
import org.kubek2k.springockito.annotations.it.beans.InnerBean;
import org.kubek2k.springockito.annotations.it.beans.OuterBean;
import org.spr... | UTF-8 | Java | 1,334 | java | SpringockitoAnnotationsSpiesIntegrationTest.java | Java | [] | null | [] | package org.kubek2k.springockito.annotations.it;
import org.kubek2k.springockito.annotations.SpringockitoContextLoader;
import org.kubek2k.springockito.annotations.WrapWithSpy;
import org.kubek2k.springockito.annotations.it.beans.InnerBean;
import org.kubek2k.springockito.annotations.it.beans.OuterBean;
import org.spr... | 1,334 | 0.801349 | 0.797601 | 37 | 35.081081 | 28.421898 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.513514 | false | false | 15 |
71d172e539c112c8cd1214b0a5f85314904d9ba6 | 30,150,670,477,894 | c99e3e1d7f0f5f47b6b186b79685a17bd8d12f51 | /sif3-naplan-provider/src/main/java/sif3/au/naplan/provider/service/NAPCodeFrameService.java | 180299404b412b1bb20aeda7d6894c04a801d44c | [
"Apache-2.0"
] | permissive | nsip/sif3-naplan-adapter | https://github.com/nsip/sif3-naplan-adapter | 146ec746523513ee2c9974662ce077e340b624c7 | ee34c4c7b2e4584b99c81bd5da4f46cae347e3f8 | refs/heads/master | 2020-03-31T19:55:24.532000 | 2018-10-23T03:45:25 | 2018-10-23T03:45:25 | 152,518,308 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package sif3.au.naplan.provider.service;
import sif.dd.au30.model.NAPCodeFrameCollectionType;
public interface NAPCodeFrameService extends NaplanService<NAPCodeFrameCollectionType> {
}
| UTF-8 | Java | 188 | java | NAPCodeFrameService.java | Java | [] | null | [] | package sif3.au.naplan.provider.service;
import sif.dd.au30.model.NAPCodeFrameCollectionType;
public interface NAPCodeFrameService extends NaplanService<NAPCodeFrameCollectionType> {
}
| 188 | 0.851064 | 0.835106 | 7 | 25.857143 | 32.445244 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.285714 | false | false | 15 |
21859e8f946938f33cca7c8fbfbc0b70ed52ad4f | 4,475,355,981,803 | d70956121e9d644baba3e1ad311b550c941a6688 | /app/src/main/java/com/sahara/melanie/fortify_android/metrics/surveys/SurveyResponseActivity.java | 51d981867c3f2941ad2553129d9b3fd06c453bb6 | [] | no_license | melanie38/sandbox | https://github.com/melanie38/sandbox | 4222dfa416e93a10e69fbb4c95671d02b80c40e7 | 70895aedec1f189715c36e42d3bce861d4291219 | refs/heads/master | 2018-04-20T11:49:07.946000 | 2018-04-06T16:55:12 | 2018-04-06T16:55:12 | 90,777,222 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sahara.melanie.fortify_android.metrics.surveys;
import android.content.Intent;
import android.support.design.widget.TabLayout;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentStatePagerAdapter;
import android.support.v4.view.ViewP... | UTF-8 | Java | 3,243 | java | SurveyResponseActivity.java | Java | [] | null | [] | package com.sahara.melanie.fortify_android.metrics.surveys;
import android.content.Intent;
import android.support.design.widget.TabLayout;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentStatePagerAdapter;
import android.support.v4.view.ViewP... | 3,243 | 0.650015 | 0.646623 | 100 | 31.43 | 27.147839 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.52 | false | false | 15 |
c61f1ccd82f27e8ebe8c31638ac8791857850cb0 | 8,126,078,159,424 | 66146e2d2c12c9d2f1e43ab494340f07fd52bdbd | /src/main/java/ua/kozak/service/UserService.java | 48a9834c1baffe54cb720f211453788afa43cd37 | [] | no_license | OrysiaKozak/Online_Shop | https://github.com/OrysiaKozak/Online_Shop | 37b8def64418976dd0ef2e4e525dd96f731cf278 | b29500f823d13fea0048900cbf2256cd7b5cbdb7 | refs/heads/master | 2016-09-13T00:05:23.911000 | 2016-05-17T15:03:32 | 2016-05-17T15:03:32 | 58,444,841 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ua.kozak.service;
import java.util.List;
import ua.kozak.entity.User;
public interface UserService {
public void add(String firstName, String secondName, String email,
String phoneNumber, String roleName);
public List<User> getAllUsers();
public void update(int id,String firstName, Stri... | UTF-8 | Java | 427 | java | UserService.java | Java | [] | null | [] | package ua.kozak.service;
import java.util.List;
import ua.kozak.entity.User;
public interface UserService {
public void add(String firstName, String secondName, String email,
String phoneNumber, String roleName);
public List<User> getAllUsers();
public void update(int id,String firstName, Stri... | 427 | 0.735363 | 0.735363 | 18 | 21.722221 | 23.323345 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.444444 | false | false | 15 |
108e12cc44d0d4285aa5ad7f88f0074ea4fb9d93 | 35,871,566,865,514 | 986fb035dbf2f82be8c1b991dfc2751e18885adf | /ms-general/src/main/java/com/flores/controller/UbigeoDepartamentoController.java | d17cdc32ae4c0815dc63ac5bf7b15dbf0a9bc741 | [] | no_license | Wil1999/aeg-unasam | https://github.com/Wil1999/aeg-unasam | 7192cfc086141504b20fd764c9a7c2d99b2aeffd | 7f424681ea3010475ab6a6f483bb99425963b555 | refs/heads/main | 2023-04-16T20:00:53.763000 | 2021-04-10T21:47:21 | 2021-04-10T21:47:21 | 354,992,279 | 0 | 0 | null | false | 2021-04-10T21:47:22 | 2021-04-05T22:44:14 | 2021-04-05T23:22:10 | 2021-04-10T21:47:22 | 131 | 0 | 0 | 0 | Java | false | false | package com.flores.controller;
import java.util.List;
import java.util.Optional;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVa... | UTF-8 | Java | 2,020 | java | UbigeoDepartamentoController.java | Java | [] | null | [] | package com.flores.controller;
import java.util.List;
import java.util.Optional;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVa... | 2,020 | 0.819802 | 0.819802 | 57 | 34.438595 | 28.562038 | 112 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.210526 | false | false | 15 |
ecd571dd64b803cdd0eb986dc056f95776a27db1 | 1,717,986,924,502 | dd4a224e8d4b5355163fa4a3d80ad81d9a79b25d | /src/main/java/com/hzl/demo/pojo/User.java | 6a9c2e03f708f1122e39df6b38ee6bb23850ab17 | [] | no_license | baimuchengling/springboot | https://github.com/baimuchengling/springboot | c76c765172203e2655c22ba9e4531130d5b86733 | 163de3dd782f3b38316bee01a2164f0a94a6c103 | refs/heads/master | 2020-05-18T00:58:40.417000 | 2019-04-30T16:31:02 | 2019-04-30T16:31:02 | 184,077,380 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hzl.demo.pojo;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonInclude;
import javax.validation.constraints.Min;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.util.Date;
/**
* @Auther:
* @Date: 201... | UTF-8 | Java | 1,932 | java | User.java | Java | [
{
"context": "\n\n public String getUsername() {\n return username;\n }\n\n public void setUsername(String userna",
"end": 830,
"score": 0.8001244068145752,
"start": 822,
"tag": "USERNAME",
"value": "username"
},
{
"context": "sername(String username) {\n this.... | null | [] | package com.hzl.demo.pojo;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonInclude;
import javax.validation.constraints.Min;
import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
import java.util.Date;
/**
* @Auther:
* @Date: 201... | 1,938 | 0.593354 | 0.579114 | 87 | 20.793104 | 17.714945 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.344828 | false | false | 15 |
76b1f86e1c18003ead90a5d4970b8821569d46b2 | 31,774,168,110,860 | 151e65ef89ddb8b3adb881a098a1534fc8297661 | /se-web/.svn/pristine/76/76b1f86e1c18003ead90a5d4970b8821569d46b2.svn-base | 74d0e974803ad89d07843c7c0ab462b96e171705 | [] | no_license | Ox0400/test | https://github.com/Ox0400/test | 94adc938bf6f1b75c2798e1abd2d4e348e0907aa | 116b6927ee9acf56188e1bdad6bd7224d017035a | refs/heads/master | 2023-03-17T17:58:20.746000 | 2020-02-08T07:16:12 | 2020-02-08T07:16:12 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.xjw.utility;
import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class MD5Util {
/***
* MD5加密 生成32位md5码
*
* @param 待加密字符串
* @return 返回32位md5码
*/
public static String md5Encode(String inStr) throws ... | UTF-8 | Java | 3,500 | 76b1f86e1c18003ead90a5d4970b8821569d46b2.svn-base | Java | [
{
"context": "en22</properties>\r\n//\t<properties name=\"password\">9bc5587ad3</properties>\r\n//\t<properties name=\"token\">d4a96ce",
"end": 2174,
"score": 0.993407130241394,
"start": 2164,
"tag": "PASSWORD",
"value": "9bc5587ad3"
},
{
"context": "5587ad3</properties>\r\n//\t<prop... | null | [] | package com.xjw.utility;
import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class MD5Util {
/***
* MD5加密 生成32位md5码
*
* @param 待加密字符串
* @return 返回32位md5码
*/
public static String md5Encode(String inStr) throws ... | 3,467 | 0.662073 | 0.608149 | 109 | 28.623854 | 22.966185 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.889908 | false | false | 15 | |
415aac00f27896789c1ec794f32a03a071e955d3 | 13,975,823,611,232 | 1907cbc9105a0ac30a61e191530e1b87a4a7ce1c | /src/com/bright/amp/authc/model/TsysModule.java | 0d68d6ba1738beec315c25c24a52835388151391 | [] | no_license | brightsw/amp | https://github.com/brightsw/amp | 4fa8a299bd3edfa302afb00b30c3439f1ade4db6 | 62a2219d5b68834e494d3958682045c6d0004b1e | refs/heads/master | 2021-05-04T04:11:06.403000 | 2016-10-24T08:25:21 | 2016-10-24T08:25:21 | 70,866,702 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.bright.amp.authc.model;
import java.util.List;
import org.apache.ibatis.type.Alias;
@Alias("TsysModule")
public class TsysModule {
private String modid;
private String modname;
private String modlevel;
private String parentid;
private String url;
private String modCode;
... | UTF-8 | Java | 1,622 | java | TsysModule.java | Java | [] | null | [] | package com.bright.amp.authc.model;
import java.util.List;
import org.apache.ibatis.type.Alias;
@Alias("TsysModule")
public class TsysModule {
private String modid;
private String modname;
private String modlevel;
private String parentid;
private String url;
private String modCode;
... | 1,622 | 0.694205 | 0.694205 | 99 | 15.393939 | 15.790176 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.959596 | false | false | 15 |
4a045a4e90b7111b1996dd5cac8249905e0b7c82 | 7,499,012,943,793 | 2963d07727d66c2d571ae04ae14fc11e25cdcd00 | /T11.java | 7bd2d4614748a1c6e0ba1dc9474125d340acee09 | [] | no_license | Qianheorgan/siyuetian | https://github.com/Qianheorgan/siyuetian | d1913fd15b61b9a2e13910592facb80b79c270b3 | 8e73174d1751578ce88efefdc669781140449ad3 | refs/heads/master | 2021-07-08T05:53:12.953000 | 2020-10-24T06:25:35 | 2020-10-24T06:25:35 | 197,773,562 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import com.sun.corba.se.impl.orbutil.CacheTable;
public class T11 {
public static void main(String[] args) {
int x=20;
int y=5;
System.out.println(x+y+""+(x+y)+y);
int a=1234;
System.out.println(a%10);
}
}
| UTF-8 | Java | 255 | java | T11.java | Java | [] | null | [] | import com.sun.corba.se.impl.orbutil.CacheTable;
public class T11 {
public static void main(String[] args) {
int x=20;
int y=5;
System.out.println(x+y+""+(x+y)+y);
int a=1234;
System.out.println(a%10);
}
}
| 255 | 0.560784 | 0.517647 | 11 | 22.181818 | 16.573902 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.545455 | false | false | 15 |
c7bdee7c1eac8be99a7825e94b42e89a41b31c3d | 2,379,411,918,005 | 78b7db9fade7e66fc621b698e4739fac862f603b | /demo/zhuyuan/com/dao/IThDao.java | cff6842c09959b99423863e1042072dc6463be7f | [] | no_license | Amaindex/HP_Exercitation | https://github.com/Amaindex/HP_Exercitation | c9b3610c8660b89bc96fc1c5971dd4469a4b4fc6 | 4589cb11a12923cd87302fdb6201fcbb6c29e6fe | refs/heads/master | 2020-04-14T18:55:50.910000 | 2019-03-08T03:06:27 | 2019-03-08T03:06:27 | 164,038,283 | 2 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dao;
import com.pojo.Th;
public interface IThDao {
public Th getbyid(String id);
}
| UTF-8 | Java | 101 | java | IThDao.java | Java | [] | null | [] | package com.dao;
import com.pojo.Th;
public interface IThDao {
public Th getbyid(String id);
}
| 101 | 0.712871 | 0.712871 | 9 | 10.222222 | 11.564099 | 30 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.555556 | false | false | 15 |
549a657a4597541678a90590a372cb7a89e65d0f | 18,339,510,378,274 | 3c721c91e615189ca2aa486d580374a6b670d4da | /src/main/java/com/elane/learning/annotations/ClassA.java | 63ab670b91a3ea21226a2ae76bfa5295989e2437 | [] | no_license | lixin2302007/jenkins-demo-springboot | https://github.com/lixin2302007/jenkins-demo-springboot | 83d8652b989e09c3f4ba94f4471468dbf580bef0 | f370015a336f53e0b0de2f5f14af426e03c42763 | refs/heads/master | 2023-05-28T01:49:02.871000 | 2021-06-17T06:40:25 | 2021-06-17T06:40:25 | 319,208,530 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.elane.learning.annotations;
public class ClassA implements ScanClassInterface {
}
| UTF-8 | Java | 95 | java | ClassA.java | Java | [] | null | [] | package com.elane.learning.annotations;
public class ClassA implements ScanClassInterface {
}
| 95 | 0.831579 | 0.831579 | 4 | 22.75 | 22.653643 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.25 | false | false | 15 |
14bb3e99ae6f12dca64ea3a9091e210a9c0ae25c | 30,640,296,714,815 | 8e19c3b5fb7fffc67b8a5c34660d1b15cea92761 | /src/main/java/com/java/springaop/pointcut/PointCutDefinition.java | 9a29bffb48af0b93bac87ae3946f335e8b105d02 | [] | no_license | Spring-Projects-org/SpringAOP | https://github.com/Spring-Projects-org/SpringAOP | 4e19da22e98c078bd5135193f157ffaeab89acaf | dead9cc697bc9187f530fa0fdde378e2cdd0855b | refs/heads/master | 2020-03-31T18:29:14.255000 | 2018-10-14T08:45:44 | 2018-10-14T08:45:44 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.java.springaop.pointcut;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;
@Aspect
@Component
public class PointCutDefinition {
@Pointcut("within(com.java.springaop.service..*)")
public void serviceLayer() {
}
... | UTF-8 | Java | 322 | java | PointCutDefinition.java | Java | [] | null | [] | package com.java.springaop.pointcut;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;
@Aspect
@Component
public class PointCutDefinition {
@Pointcut("within(com.java.springaop.service..*)")
public void serviceLayer() {
}
... | 322 | 0.779503 | 0.779503 | 15 | 20.466667 | 19.720942 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.466667 | false | false | 15 |
4ba308e197a9f9187226d1304154dcdf485af4d3 | 19,232,863,581,640 | 549275146dc8ecdba9144a6aed2796baa1639eb3 | /Codes/yore/medium/Number319.java | 9f5e5ce8ce4d9ec055ad313a28d6119af371812b | [
"Apache-2.0"
] | permissive | asdf2014/algorithm | https://github.com/asdf2014/algorithm | fdb07986746a3e5c36bfc66f4b6b7cb60850ff84 | b0ed7a36f47b66c04b908eb67f2146843a9c71a3 | refs/heads/master | 2023-09-05T22:35:12.922000 | 2023-09-01T12:04:03 | 2023-09-01T12:04:03 | 108,250,452 | 270 | 87 | Apache-2.0 | false | 2021-09-24T16:12:08 | 2017-10-25T09:45:27 | 2021-09-24T12:03:46 | 2021-09-24T16:12:08 | 13,172 | 199 | 58 | 1 | Java | false | false | package com.yore.medium;
/**
* @author Yore
* @date 2021/11/15 14:37
* @description
*/
public class Number319 {
public int bulbSwitch(int n) {
return (int) Math.sqrt(n + 0.5);
}
}
| UTF-8 | Java | 201 | java | Number319.java | Java | [
{
"context": "package com.yore.medium;\n\n/**\n * @author Yore\n * @date 2021/11/15 14:37\n * @description\n */\npub",
"end": 45,
"score": 0.8482517004013062,
"start": 41,
"tag": "USERNAME",
"value": "Yore"
}
] | null | [] | package com.yore.medium;
/**
* @author Yore
* @date 2021/11/15 14:37
* @description
*/
public class Number319 {
public int bulbSwitch(int n) {
return (int) Math.sqrt(n + 0.5);
}
}
| 201 | 0.597015 | 0.512438 | 12 | 15.75 | 13.071119 | 40 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.166667 | false | false | 15 |
ef7a37a09d6c48983278fce4be693b7886ca66af | 24,498,493,512,619 | fbc7305ee7cc359689b6e3ff4aba9cf758995de9 | /Trapping_Rain_Water.java | d57c77f079a88c746e591c428b9d82855f3c1817 | [] | no_license | deepakrkole/leetcode-Java | https://github.com/deepakrkole/leetcode-Java | dedde69e695c095075e3ba43fa4c27b1ed84ec4b | 99dcd5127568f956ec4ec36d8e88d5949ba519d9 | refs/heads/master | 2021-01-15T20:53:22.539000 | 2015-01-31T21:40:38 | 2015-01-31T21:40:38 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class Solution {
public int trap(int[] A) {
if( A.length <= 2 )
return 0;
int[] leftHighest = new int[A.length];
int[] rightHighest = new int[A.length];
int leftHigh = A[0];
leftHighest[0] = 0;
for( int i = 1; i < A.length; ++i ) {
leftH... | UTF-8 | Java | 948 | java | Trapping_Rain_Water.java | Java | [] | null | [] | public class Solution {
public int trap(int[] A) {
if( A.length <= 2 )
return 0;
int[] leftHighest = new int[A.length];
int[] rightHighest = new int[A.length];
int leftHigh = A[0];
leftHighest[0] = 0;
for( int i = 1; i < A.length; ++i ) {
leftH... | 948 | 0.427215 | 0.413502 | 30 | 30.6 | 17.180609 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.733333 | false | false | 15 |
09e50341647b7519a9fcee696d6a8667f9fdefd9 | 31,997,506,396,936 | 7820fbc18fd86119fafa64316d30a27995609e80 | /CivitasJava/civitas/Casilla_Impuesto.java | aa7f187fa7b10e6cfa298412cdbbc31286ce3686 | [] | no_license | KamiJuanmi/Civitas | https://github.com/KamiJuanmi/Civitas | 54105668496963043c67987ff8997741bc5118c3 | 5bec2e106ea89f32b09152abbcce851e854c525e | refs/heads/main | 2023-05-06T23:04:31.892000 | 2021-05-23T17:37:32 | 2021-05-23T17:37:32 | 370,108,704 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package civitas;
import java.util.ArrayList;
public class Casilla_Impuesto extends Casilla
{
private float importe;
Casilla_Impuesto(String nombre, float cantidad)
{
super(nombre);
this.importe=cantidad;
}
public float getImporte()
{
return this.importe;
}
@... | UTF-8 | Java | 755 | java | Casilla_Impuesto.java | Java | [] | null | [] |
package civitas;
import java.util.ArrayList;
public class Casilla_Impuesto extends Casilla
{
private float importe;
Casilla_Impuesto(String nombre, float cantidad)
{
super(nombre);
this.importe=cantidad;
}
public float getImporte()
{
return this.importe;
}
@... | 755 | 0.601324 | 0.601324 | 34 | 21.117647 | 19.682426 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.441176 | false | false | 15 |
04b08f4c4a26d244be84ec034e808a9feca6fd74 | 33,500,744,956,594 | fad4ec927af16fb64f21dc63a10e917f926c0325 | /first/src/main/java/cn/zero/main/Main.java | 694d4456a2d8cd0495ac1bd5d531167868ce3a92 | [] | no_license | Linhangyang/list | https://github.com/Linhangyang/list | 83e67d628572a200a0bcb3da3407794e28ae657e | 8cd1534d04d382acba5f31b92bbfc3a4adca52fc | refs/heads/master | 2022-04-28T11:17:21.858000 | 2019-07-15T03:15:11 | 2019-07-15T03:15:11 | 192,641,195 | 0 | 0 | null | false | 2022-03-31T18:50:03 | 2019-06-19T02:06:02 | 2019-07-15T03:15:45 | 2022-03-31T18:50:03 | 64 | 0 | 0 | 1 | Java | false | false | package cn.zero.main;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
public class Main {
private static SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
public static void main(String[] args) throws Exception {
Strin... | UTF-8 | Java | 924 | java | Main.java | Java | [] | null | [] | package cn.zero.main;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
public class Main {
private static SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
public static void main(String[] args) throws Exception {
Strin... | 924 | 0.642857 | 0.622294 | 31 | 28.806452 | 23.22043 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.677419 | false | false | 15 |
15057a36722c9d42590bc5b6e547ef89366cb953 | 22,514,218,566,032 | 61a7dbad353b40c569fb4b0e8637608fe39d3d4d | /heranca2/exercicio1/Assistente.java | 779f9d8f3d7d07e20984439f28eb6aa18c37f0a5 | [] | no_license | callboydev/heranca | https://github.com/callboydev/heranca | 2f83fa9d8a791af6f752fed9981f32a98589d521 | cc06e2eccb3bca9b33bc9574019e7506e6cc9fbc | refs/heads/main | 2023-01-03T08:06:14.916000 | 2020-10-31T18:44:29 | 2020-10-31T18:44:29 | 300,623,948 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class Assistente extends Funcionario {
protected String matricula;
public String getMatricula() {
return matricula;
}
public Assistente(String nome, String setor, double salario, String matricula) {
super(nome, setor, salario);
this.matricula = matricula;
}
publ... | UTF-8 | Java | 612 | java | Assistente.java | Java | [] | null | [] | public class Assistente extends Funcionario {
protected String matricula;
public String getMatricula() {
return matricula;
}
public Assistente(String nome, String setor, double salario, String matricula) {
super(nome, setor, salario);
this.matricula = matricula;
}
publ... | 612 | 0.626841 | 0.626841 | 22 | 26.772728 | 32.901966 | 143 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 15 |
74133215c3632ec86817b84ac067924ae820da91 | 3,831,110,863,370 | 47a8cd3e3042b9231a9daf45d60292e9b2f9746c | /src/pmh_system/controller/RegPayment.java | 91e047dac7d92d0aafff76d11f994fd8bc9e484c | [] | no_license | Elisvobs/mortage_system | https://github.com/Elisvobs/mortage_system | ac6a81576d43b06f0e356b36785d72976f686541 | 10cd041dd4a02e66ca05c7876dac39d151a716ea | refs/heads/master | 2020-07-28T05:04:34.167000 | 2019-09-18T13:39:14 | 2019-09-18T13:39:14 | 209,317,537 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pmh_system.controller;
import com.itextpdf.text.DocumentException;
import com.jfoenix.controls.JFXComboBox;
import com.jfoenix.controls.JFXTextField;
import com.jfoenix.validation.NumberValidator;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent... | UTF-8 | Java | 3,856 | java | RegPayment.java | Java | [] | null | [] | package pmh_system.controller;
import com.itextpdf.text.DocumentException;
import com.jfoenix.controls.JFXComboBox;
import com.jfoenix.controls.JFXTextField;
import com.jfoenix.validation.NumberValidator;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent... | 3,856 | 0.685944 | 0.685944 | 103 | 36.446602 | 27.571524 | 105 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.805825 | false | false | 15 |
a7cdfc8f6d00a2eff8954c4d4c591eda2cdde45d | 18,090,402,292,500 | 89611acca839b26de3fe9c77fa065bf15f42aad1 | /api/src/main/java/pl/dawid/kaszyca/dto/CategoryDTO.java | c224ffec2d57843630796a5185898f2ea0d1c8a0 | [] | no_license | dawidkaszyca/Auction-application | https://github.com/dawidkaszyca/Auction-application | 1046cd7920454b2ccc583487a6b7f89fa34c5058 | 6e5c9a7d3abef4f473e16128516eb97a21c6058b | refs/heads/master | 2023-03-08T10:00:59.282000 | 2021-02-27T16:09:42 | 2021-02-27T16:09:42 | 254,859,735 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pl.dawid.kaszyca.dto;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import java.util.List;
@Getter
@Setter
@NoArgsConstructor
public class CategoryDTO {
private String name;
private List<CategoryAttributesDTO> categoryAttributes;
}
| UTF-8 | Java | 284 | java | CategoryDTO.java | Java | [] | null | [] | package pl.dawid.kaszyca.dto;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import java.util.List;
@Getter
@Setter
@NoArgsConstructor
public class CategoryDTO {
private String name;
private List<CategoryAttributesDTO> categoryAttributes;
}
| 284 | 0.792253 | 0.792253 | 17 | 15.705882 | 15.705993 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.411765 | false | false | 15 |
e69f5d0252b54487b9529da225509e372c394f20 | 15,247,133,964,174 | 6b3ba91109f4ea919ad27518e47ec556a264384b | /cs180/lab09/src/edu/purdue/zmai/lab/Listener.java | 4f3cf491d9883bc1715ccee35bf6293f8da4ebed | [] | no_license | SpeedBird-C/CourseProjects | https://github.com/SpeedBird-C/CourseProjects | 8d9d60536b31dda5dc0db75e5fcb6704c8cb1144 | 6aad595fabe99f140c0c31accfa7aa078039a4cd | refs/heads/master | 2021-01-01T21:52:02.309000 | 2015-10-20T18:08:39 | 2015-10-20T18:08:39 | 239,356,973 | 1 | 0 | null | true | 2020-02-09T18:56:47 | 2020-02-09T18:56:46 | 2020-02-09T18:56:44 | 2015-10-20T18:09:05 | 67,140 | 0 | 0 | 0 | null | false | false | // package edu.purdue.zmai.lab;
import android.view.View.*;
import android.view.View;
import java.util.*;
import android.os.*;
import android.widget.*;
public class Listener implements OnClickListener {
@Override
public void onClick(View arg) {
Button b = (Button) arg;
String c = b.getText().toString();
... | UTF-8 | Java | 423 | java | Listener.java | Java | [] | null | [] | // package edu.purdue.zmai.lab;
import android.view.View.*;
import android.view.View;
import java.util.*;
import android.os.*;
import android.widget.*;
public class Listener implements OnClickListener {
@Override
public void onClick(View arg) {
Button b = (Button) arg;
String c = b.getText().toString();
... | 423 | 0.673759 | 0.673759 | 17 | 23.941177 | 17.691708 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.764706 | false | false | 15 |
7f702e2690ecfeb6ea53dbea9edc56c70c192c26 | 15,247,133,962,302 | b3a21256acff0d6346c9cff598fba927244f9831 | /src/main/java/com/qdone/common/mq/JMSConfig.java | 06fc9dcf750e28f0b58de36e6deee672f14a9522 | [
"Apache-2.0"
] | permissive | yhb19930707/boot-master | https://github.com/yhb19930707/boot-master | d95a16c19ba51218d025e86c92ea7ff7931bb8e3 | b19e9b701cf4384ac951db474f6041d33e6377f1 | refs/heads/master | 2023-01-22T18:00:21.402000 | 2020-11-23T08:38:48 | 2020-11-23T08:38:48 | 315,250,194 | 2 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.qdone.common.mq;
import javax.jms.ConnectionFactory;
import javax.jms.Destination;
import org.apache.activemq.command.ActiveMQQueue;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.jms.config.DefaultJmsList... | UTF-8 | Java | 3,125 | java | JMSConfig.java | Java | [
{
"context": "support.converter.MessageType;\r\n\r\n/**\r\n * @author 付为地 \r\n * 配置jms 同时支持queue和topic消息\r\n * 参考资料:https://spr",
"end": 720,
"score": 0.999596893787384,
"start": 717,
"tag": "NAME",
"value": "付为地"
}
] | null | [] | package com.qdone.common.mq;
import javax.jms.ConnectionFactory;
import javax.jms.Destination;
import org.apache.activemq.command.ActiveMQQueue;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.jms.config.DefaultJmsList... | 3,125 | 0.764807 | 0.76378 | 82 | 33.621952 | 30.106979 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.170732 | false | false | 15 |
dad24d57f1db36a7244610f2ce4c6d4bfd5a806f | 30,571,577,278,987 | d5b6be3dd3f60c511fc72b4e23eaf55a44662f5b | /src/com/project/pojo/BankCard.java | d716c6728961086d4d4a42c174fd721d60a64993 | [] | no_license | jeluck/tennis | https://github.com/jeluck/tennis | 897bc0f54f4349a7d45cdcf6555bb9147df3a1f8 | 2e20ed1edfa135c9cfb750dfa1c46a8172f86261 | refs/heads/master | 2020-03-21T13:22:09.946000 | 2018-06-25T16:12:45 | 2018-06-25T16:12:45 | 138,602,276 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.project.pojo;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
@Entity
@Table(... | UTF-8 | Java | 3,686 | java | BankCard.java | Java | [] | null | [] | package com.project.pojo;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
@Entity
@Table(... | 3,686 | 0.669933 | 0.668253 | 171 | 19.888889 | 17.074465 | 81 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.105263 | false | false | 15 |
8de2744b557091f51c614f0ca0d78f24198da33a | 20,736,102,140,768 | cc3ffdc65faca0c78031128b1d6cb416236a161a | /SKS-Web/src/java/interfaces/PacketRepository.java | c61f1b716c02c6489b4909f2c95d451b77405057 | [] | no_license | arbego/SKS | https://github.com/arbego/SKS | 8131225c682c5f9da85019a2fad6d697240461bd | 4ba17cc1337b802ba34e977661c08abc5d991220 | refs/heads/master | 2016-09-08T02:21:45.951000 | 2014-01-21T23:59:16 | 2014-01-21T23:59:16 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package interfaces;
import entities.DeliveryWarehouse;
import entities.Packet;
import entities.ReceiverPerson;
import java.util.List;
public interface PacketRepository extends Repository<Packet> {
List<Packet> getByReceiver(ReceiverPerson receiver);
List<Packet> getByDeliveryWarehouse(DeliveryWarehouse delive... | UTF-8 | Java | 336 | java | PacketRepository.java | Java | [] | null | [] | package interfaces;
import entities.DeliveryWarehouse;
import entities.Packet;
import entities.ReceiverPerson;
import java.util.List;
public interface PacketRepository extends Repository<Packet> {
List<Packet> getByReceiver(ReceiverPerson receiver);
List<Packet> getByDeliveryWarehouse(DeliveryWarehouse delive... | 336 | 0.830357 | 0.830357 | 11 | 29.545454 | 24.860935 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.636364 | false | false | 15 |
9c735f426f40811f78f4d88b42be4e36bb23fc4c | 15,358,803,115,617 | a947a21357b7b4712cc2b1e828e57dc7fc959f81 | /src/main/java/demo/bedoreH/demo0927/demo2.java | 6d22be8ce625c7d4df311cdb7b771b02c7fe0279 | [] | no_license | zzw-echo/DailyLearning | https://github.com/zzw-echo/DailyLearning | c103f0a2d43148a89fc6a36a4904cb89a33bca8c | 50f2a72aafe929cfe41558ac0dad8c665dd665ec | refs/heads/master | 2021-12-27T09:03:59.418000 | 2021-09-12T09:11:03 | 2021-09-12T09:11:03 | 243,429,154 | 0 | 0 | null | false | 2020-10-14T00:06:07 | 2020-02-27T04:19:11 | 2020-10-13T05:58:01 | 2020-10-14T00:06:05 | 152,019 | 0 | 0 | 1 | Java | false | false | package demo.bedoreH.demo0927;
import java.util.Scanner;
/**
* 作者 : 张泽文
* 邮箱 : zzw.me@qq.com
* 时间 : 2020/9/27 20:26
*/
public class demo2 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x = sc.nextInt() % 4;
int y = sc.nextInt() % 2;
int z = ... | UTF-8 | Java | 1,476 | java | demo2.java | Java | [
{
"context": "demo0927;\n\nimport java.util.Scanner;\n\n/**\n * 作者 : 张泽文\n * 邮箱 : zzw.me@qq.com\n * 时间 : 2020/9/27 20:26\n */",
"end": 74,
"score": 0.9998102188110352,
"start": 71,
"tag": "NAME",
"value": "张泽文"
},
{
"context": "import java.util.Scanner;\n\n/**\n * 作者 : 张泽文\n * 邮箱 : z... | null | [] | package demo.bedoreH.demo0927;
import java.util.Scanner;
/**
* 作者 : 张泽文
* 邮箱 : <EMAIL>
* 时间 : 2020/9/27 20:26
*/
public class demo2 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int x = sc.nextInt() % 4;
int y = sc.nextInt() % 2;
int z = sc.nex... | 1,470 | 0.354683 | 0.325069 | 60 | 23.200001 | 14.1419 | 44 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.533333 | false | false | 15 |
f6a74e17d86b400579871a5986ef533aa4d13732 | 18,665,927,931,195 | 77e25c2197fd69eb3716744c5d383e80a2760112 | /src/main/java/com/lerx/portal/obj/GlobalTagsAnalyzeReturn.java | 2d6963f66162f98231c1e54ec0b153abf99f9172 | [] | no_license | LWHTarena/lerx20190613 | https://github.com/LWHTarena/lerx20190613 | 51f6a1ebfb05a2af0d66656d0e694564070224b9 | 604c9914f4ce4f513c2a9f60a781c35329711d98 | refs/heads/master | 2022-12-24T03:51:10.507000 | 2019-06-13T05:39:30 | 2019-06-13T05:39:30 | 191,605,783 | 0 | 0 | null | false | 2022-12-16T11:17:24 | 2019-06-12T16:16:04 | 2019-06-13T05:44:11 | 2022-12-16T11:17:21 | 31,295 | 0 | 0 | 16 | JavaScript | false | false | package com.lerx.portal.obj;
public class GlobalTagsAnalyzeReturn {
private EnvirSet es;
private String html;
public EnvirSet getEs() {
return es;
}
public void setEs(EnvirSet es) {
this.es = es;
}
public String getHtml() {
return html;
}
public void setHtml(String html) {
this.html = html;
}
}
| UTF-8 | Java | 320 | java | GlobalTagsAnalyzeReturn.java | Java | [] | null | [] | package com.lerx.portal.obj;
public class GlobalTagsAnalyzeReturn {
private EnvirSet es;
private String html;
public EnvirSet getEs() {
return es;
}
public void setEs(EnvirSet es) {
this.es = es;
}
public String getHtml() {
return html;
}
public void setHtml(String html) {
this.html = html;
}
}
| 320 | 0.684375 | 0.684375 | 21 | 14.238095 | 12.843026 | 38 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.285714 | false | false | 15 |
f4e915e41edc62c010bc6a677835ef91af7e7b24 | 10,505,490,049,706 | 813ba0f584c3f59674e428977582cdba196e2268 | /src/main/java/org/reflection/model/com/AbstractTransactableAmount.java | 1795de71f08ad603019f01aceafd94865d18bfdd | [] | no_license | oith/r_pos | https://github.com/oith/r_pos | 6fce9db40407576d8c7fd6e7749fc2dd5f617e5c | 41fd5d9b59e5a086103a45fb85ef25fe11d03c52 | refs/heads/master | 2021-01-23T01:35:08.425000 | 2017-04-08T05:20:23 | 2017-04-08T05:20:23 | 85,919,919 | 3 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.reflection.model.com;
import com.oith.annotation.MacCodable;
import org.reflection.model.auth.AuthUser;
import javax.persistence.*;
import javax.validation.constraints.Size;
import java.util.Date;
@Entity
@Table(name = "ADM_TRANSACTION_AMOUNT")
@MacCodable(id = "id", code = "code", caption = "remarks")
@... | UTF-8 | Java | 3,237 | java | AbstractTransactableAmount.java | Java | [] | null | [] | package org.reflection.model.com;
import com.oith.annotation.MacCodable;
import org.reflection.model.auth.AuthUser;
import javax.persistence.*;
import javax.validation.constraints.Size;
import java.util.Date;
@Entity
@Table(name = "ADM_TRANSACTION_AMOUNT")
@MacCodable(id = "id", code = "code", caption = "remarks")
@... | 3,237 | 0.686438 | 0.683967 | 117 | 26.666666 | 24.901173 | 113 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.470085 | false | false | 15 |
72443472a086ebbfb6345474239034c2fe9b2a83 | 35,467,839,946,995 | d5f09c7b0e954cd20dd613af600afd91b039c48a | /sources/androidx/databinding/adapters/TableLayoutBindingAdapter.java | 16367bde310bb9830ef91475f65ca3f15b3b5ab3 | [] | no_license | t0HiiBwn/CoolapkRelease | https://github.com/t0HiiBwn/CoolapkRelease | af5e00c701bf82c4e90b1033f5c5f9dc8526f4b3 | a6a2b03e32cde0e5163016e0078391271a8d33ab | refs/heads/main | 2022-07-29T23:28:35.867000 | 2021-03-26T11:41:18 | 2021-03-26T11:41:18 | 345,290,891 | 5 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package androidx.databinding.adapters;
import android.util.SparseBooleanArray;
import android.widget.TableLayout;
import java.util.regex.Pattern;
public class TableLayoutBindingAdapter {
private static final int MAX_COLUMNS = 20;
private static Pattern sColumnPattern = Pattern.compile("\\s*,\\s*");
publi... | UTF-8 | Java | 2,792 | java | TableLayoutBindingAdapter.java | Java | [] | null | [] | package androidx.databinding.adapters;
import android.util.SparseBooleanArray;
import android.widget.TableLayout;
import java.util.regex.Pattern;
public class TableLayoutBindingAdapter {
private static final int MAX_COLUMNS = 20;
private static Pattern sColumnPattern = Pattern.compile("\\s*,\\s*");
publi... | 2,792 | 0.590616 | 0.586318 | 71 | 38.323944 | 27.527592 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.746479 | false | false | 15 |
47e1d5870212d6c70938fced237ccf1b6e24c317 | 35,467,839,946,265 | b0bbcedf6312b3e426f9bd71329448e762b23326 | /recrutamento-teste-carrinho-compras-joaosouz/src/main/java/br/com/improving/carrinho/CarrinhoComprasFactory.java | 1288d822919a3003ba86192f08d7b1cbf388f8f2 | [] | no_license | joaosouz91/teste-improving-solucao | https://github.com/joaosouz91/teste-improving-solucao | 8813e1e9c18f37d332cf304dd5a958485fc94b3d | d86a041d9118409d48c8462cb5e9adede9bae895 | refs/heads/master | 2020-03-28T21:47:51.837000 | 2018-09-17T23:24:14 | 2018-09-17T23:24:14 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.com.improving.carrinho;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
/**
* Classe responsável pela criação e recuperação dos carrinhos de compras.
*/
public class CarrinhoComprasFactory {
private List<CarrinhoCompras> carrinhoList = new ArrayList<>();
public Lis... | UTF-8 | Java | 2,743 | java | CarrinhoComprasFactory.java | Java | [] | null | [] | package br.com.improving.carrinho;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
/**
* Classe responsável pela criação e recuperação dos carrinhos de compras.
*/
public class CarrinhoComprasFactory {
private List<CarrinhoCompras> carrinhoList = new ArrayList<>();
public Lis... | 2,743 | 0.713184 | 0.710981 | 81 | 32.617283 | 33.431915 | 122 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.975309 | false | false | 15 |
452a3b917c238dd80bc0c2e4ab07160d2b0f634b | 22,737,556,934,546 | 939cfc256a6e11ff318504700c0b88f6e30f87e4 | /bubble sort/bubble.java | 3e33e0f7a5b69e1241fdde4733164ce8dd86ab81 | [] | no_license | joeant1989/prom1 | https://github.com/joeant1989/prom1 | e190b6585365fc4a2a4e19c35558b0d8930a8c2c | 95a4a7024cea9bab8185b2396c590ed956b7bc5b | refs/heads/master | 2021-01-01T17:29:19.393000 | 2017-08-12T10:12:04 | 2017-08-12T10:12:04 | 98,083,135 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package sort;
import java.util.Scanner;
public class Bubble {
public static void main(String[] args) throws InterruptedException {
int i, j, temp = 0;
Scanner sc = new Scanner(System.in);
System.out.println("Enter the number of elements: ");
int n = sc.nextInt();
int a[] = new int[50];
System.... | UTF-8 | Java | 828 | java | bubble.java | Java | [] | null | [] | package sort;
import java.util.Scanner;
public class Bubble {
public static void main(String[] args) throws InterruptedException {
int i, j, temp = 0;
Scanner sc = new Scanner(System.in);
System.out.println("Enter the number of elements: ");
int n = sc.nextInt();
int a[] = new int[50];
System.... | 828 | 0.508454 | 0.493961 | 36 | 21 | 16.4063 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.861111 | false | false | 15 |
d000b534a5f19b97102adb479af23bfb62ed31c7 | 33,895,881,916,508 | 6dcb2fd11c7d2a43ee5309727861d2ad47355c4c | /app/src/main/java/com/example/android/musicalstructure/MainActivity.java | 4f9304d7fd8cbde6f65ffb04ad2ea721e90196c2 | [] | no_license | pigscanfly/MusicalStructure2 | https://github.com/pigscanfly/MusicalStructure2 | 7b0f3f2f8f27ce3febc6149cf83a5e8103fbc53b | 54c74643b711305a7df8fc4cb2e913f2e9e2af89 | refs/heads/master | 2021-01-20T13:43:32.555000 | 2017-05-07T14:01:24 | 2017-05-07T14:01:24 | 90,521,136 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.android.musicalstructure;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.ImageView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle sav... | UTF-8 | Java | 3,276 | java | MainActivity.java | Java | [] | null | [] | package com.example.android.musicalstructure;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.ImageView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle sav... | 3,276 | 0.609585 | 0.60928 | 97 | 32.773197 | 28.350714 | 90 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.298969 | false | false | 15 |
58bd8d2d830554e0d6f8fa1b80d2af1357cca298 | 18,013,092,880,356 | 50d849210daf514035086497f960c2c17f13efdd | /src/main/java/com/xwj/util/TestJdbc.java | 867e0ff18776141afc804c2a3de48ace3709170b | [] | no_license | xuwenjin/springJdbc | https://github.com/xuwenjin/springJdbc | f1395b3d1f2e69cd9ac3b15b2a02ab4503a87f4c | 3ac11d5551ba3435654166db24c5012a1606839b | refs/heads/master | 2020-03-25T08:03:21.014000 | 2018-08-05T08:18:06 | 2018-08-05T08:18:06 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.xwj.util;
import java.util.ArrayList;
import java.util.List;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.jdbc.core.BeanPropertyRowMapper;
import org.springframework.jdbc.... | GB18030 | Java | 3,756 | java | TestJdbc.java | Java | [
{
"context": "t<>();\n\t\tbatchArgs.add(new Object[] { \"2\", \"AA\", \"aa@atguigu.com\" });\n\t\tbatchArgs.add(new Object[] { \"3\", \"BB\", \"b",
"end": 1533,
"score": 0.9999290108680725,
"start": 1519,
"tag": "EMAIL",
"value": "aa@atguigu.com"
},
{
"context": "m\" });\n\t\tbatchAr... | null | [] | package com.xwj.util;
import java.util.ArrayList;
import java.util.List;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.jdbc.core.BeanPropertyRowMapper;
import org.springframework.jdbc.... | 3,728 | 0.666265 | 0.662349 | 114 | 28.122807 | 26.867819 | 112 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.429825 | false | false | 15 |
f1cd76dd9f4cc37f44614729f612ca650efd254e | 29,807,073,099,971 | 3a09a1c7292df560566b9c18a997b0e785695fb7 | /src/mastermind_calc/Calculations.java | fddad0136adc3a61b1ac0f07f1d4f99b192921d9 | [] | no_license | joannastecura97/Mastermind | https://github.com/joannastecura97/Mastermind | 01c89f1fe5cb9ce350e170c33f4c39ee17d68522 | 549db4b082343f10e8d420e43c9b215412965033 | refs/heads/master | 2022-08-11T20:03:04.248000 | 2020-05-19T19:27:48 | 2020-05-19T19:27:48 | 265,343,113 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package mastermind_calc;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
/**
* Class used for finding a win in the game.
*/
public class Calculations {
/**
* Method used for calculating how many number of colors in<code>guess</code>
* are the same and how many colors in<cod... | UTF-8 | Java | 3,493 | java | Calculations.java | Java | [] | null | [] | package mastermind_calc;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
/**
* Class used for finding a win in the game.
*/
public class Calculations {
/**
* Method used for calculating how many number of colors in<code>guess</code>
* are the same and how many colors in<cod... | 3,493 | 0.590324 | 0.581449 | 90 | 37.822224 | 34.316364 | 183 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 15 |
61cefb23956aeb13184272f76e585354b642849a | 15,324,443,367,578 | ea75256408143f7915c3d514d359d0e01193d324 | /eses-client/src/main/java/de/osrg/eses/client/select/LocatedLableableSelector.java | 274f6ed8dd01f847174b0c69dd91fdfed7e0adf9 | [] | no_license | mediahype/de.osrg.eses | https://github.com/mediahype/de.osrg.eses | 50d1799db5471c6955886f89ef9338fd7143ad00 | f793d500029bebf5516cb28b43ebddcdb824eb3e | refs/heads/master | 2016-09-14T16:04:47.399000 | 2016-05-26T20:44:30 | 2016-05-26T20:44:30 | 32,334,349 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package de.osrg.eses.client.select;
import org.eclipse.jface.viewers.ColumnLabelProvider;
import org.eclipse.jface.viewers.IContentProvider;
import org.eclipse.jface.viewers.TableViewer;
import org.eclipse.jface.viewers.TableViewerColumn;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.SashForm;
impo... | UTF-8 | Java | 4,711 | java | LocatedLableableSelector.java | Java | [
{
"context": "igned a label (which is also NYI)\r\n * \r\n * @author saatsch\r\n *\r\n */\r\npublic abstract class LocatedLableableS",
"end": 1119,
"score": 0.9978294372558594,
"start": 1112,
"tag": "USERNAME",
"value": "saatsch"
}
] | null | [] | package de.osrg.eses.client.select;
import org.eclipse.jface.viewers.ColumnLabelProvider;
import org.eclipse.jface.viewers.IContentProvider;
import org.eclipse.jface.viewers.TableViewer;
import org.eclipse.jface.viewers.TableViewerColumn;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.SashForm;
impo... | 4,711 | 0.694545 | 0.683719 | 150 | 29.406666 | 25.432812 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.833333 | false | false | 15 |
22a729bb9f4bbe2ef3efd2026c2a6ff98635ff2e | 18,631,568,184,259 | 380b8e3ee1c4b753e2c94b58d8f0b05ad0abd534 | /tutorial-java-basic/src/main/java/com/example/javabasic/sample/exception/multilevel/CatchException1.java | bab1156606b0f243029ee9e8fd0403c8beb4e938 | [
"Apache-2.0"
] | permissive | chenpenghui93/tutorial | https://github.com/chenpenghui93/tutorial | 836048f02bfaae78b0eb93c1b7039dc4cc416dcd | a75700dca0a62ee68816d4ea51ba0d77841e10de | refs/heads/main | 2023-08-22T12:05:03.631000 | 2021-09-25T13:10:46 | 2021-09-25T13:10:46 | 356,541,517 | 0 | 0 | Apache-2.0 | false | 2021-04-10T10:31:38 | 2021-04-10T10:02:49 | 2021-04-10T10:03:01 | 2021-04-10T10:31:37 | 0 | 0 | 0 | 0 | null | false | false | package com.example.javabasic.sample.exception.multilevel;
/**
* @author: cph
* @date: 2021/9/2 12:10
*/
public class CatchException1 {
public static void main(String[] args) {
try {
try {
// 该异常被内层catch捕获
throw new ArrayIndexOutOfBoundsException();
... | UTF-8 | Java | 866 | java | CatchException1.java | Java | [
{
"context": "asic.sample.exception.multilevel;\n\n/**\n * @author: cph\n * @date: 2021/9/2 12:10\n */\npublic class CatchEx",
"end": 79,
"score": 0.9996746778488159,
"start": 76,
"tag": "USERNAME",
"value": "cph"
}
] | null | [] | package com.example.javabasic.sample.exception.multilevel;
/**
* @author: cph
* @date: 2021/9/2 12:10
*/
public class CatchException1 {
public static void main(String[] args) {
try {
try {
// 该异常被内层catch捕获
throw new ArrayIndexOutOfBoundsException();
... | 866 | 0.596977 | 0.583123 | 24 | 32.083332 | 24.419794 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.25 | false | false | 15 |
0f98de2772dc2d2cc418c4a245a293cc642fa24c | 18,631,568,183,887 | 68a706fa2034763d1ec28aa314e7744975974a65 | /src/main/java/com/company/transportmanagementadmin/configs/DataSourceConfig.java | d9340cdc28d3de25690c61882ae5c0af09e0d79a | [] | no_license | deepaksureshs/transport-management-admin | https://github.com/deepaksureshs/transport-management-admin | cc878d92b73dbc197516ba0f7f31132a3085140b | d3ab4ec5ff25e7e3f083e4760d5a9fafe43cc2a8 | refs/heads/main | 2023-04-29T07:03:30.885000 | 2021-05-23T07:19:33 | 2021-05-23T07:19:33 | 369,552,632 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.company.transportmanagementadmin.configs;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.jdbc.core.n... | UTF-8 | Java | 1,211 | java | DataSourceConfig.java | Java | [
{
"context": "etUrl(url);\n\t\tdriverManagerDataSource.setUsername(userName);\n\t\tdriverManagerDataSource.setPassword(password)",
"end": 905,
"score": 0.9988664388656616,
"start": 897,
"tag": "USERNAME",
"value": "userName"
},
{
"context": "(userName);\n\t\tdriverManagerDataSource.s... | null | [] | package com.company.transportmanagementadmin.configs;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.jdbc.core.n... | 1,213 | 0.827415 | 0.827415 | 38 | 30.868422 | 26.747524 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.105263 | false | false | 15 |
560228f73378ea45a326d3d6497ab849d3be2106 | 36,335,423,348,754 | 1d928c3f90d4a0a9a3919a804597aa0a4aab19a3 | /java/elasticsearch/2015/4/PeriodThrottler.java | 9a2aa761433c23b99936360c683dcb077410963a | [] | no_license | rosoareslv/SED99 | https://github.com/rosoareslv/SED99 | d8b2ff5811e7f0ffc59be066a5a0349a92cbb845 | a062c118f12b93172e31e8ca115ce3f871b64461 | refs/heads/main | 2023-02-22T21:59:02.703000 | 2021-01-28T19:40:51 | 2021-01-28T19:40:51 | 306,497,459 | 1 | 1 | null | false | 2020-11-24T20:56:18 | 2020-10-23T01:18:07 | 2020-11-24T20:46:14 | 2020-11-24T20:56:17 | 744,608 | 0 | 0 | 0 | null | false | false | /*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
package org.elasticsearch.watcher.throttle;
import org.elasticsearch.watcher.... | UTF-8 | Java | 1,685 | java | PeriodThrottler.java | Java | [] | null | [] | /*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
package org.elasticsearch.watcher.throttle;
import org.elasticsearch.watcher.... | 1,685 | 0.68724 | 0.68724 | 49 | 33.387756 | 30.332724 | 111 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.489796 | false | false | 15 |
07c15282dbc9c0c2b92924db8307fd80cbd38dde | 3,118,146,310,408 | 0b47c44e9f860cb820e1db22420b9359ddf885fc | /Week_07/G20200343030592/LeetCode_1122_592.java | d18b71fa0184ad45f8a1cdd3fe10f8aab63476f0 | [] | no_license | maxminute/algorithm006-class02 | https://github.com/maxminute/algorithm006-class02 | f71f9e8d2f59b1f7bbde434182a29c09792795d2 | 320d978f3a18751ebbac0c2c9a45462cdcc4cbc6 | refs/heads/master | 2021-01-02T03:17:20.549000 | 2020-04-05T14:54:22 | 2020-04-05T14:54:22 | 239,468,160 | 0 | 2 | null | true | 2020-04-05T14:54:23 | 2020-02-10T09:01:46 | 2020-04-05T14:53:34 | 2020-04-05T14:54:22 | 10,215 | 0 | 0 | 0 | Java | false | false | package com.gsf.geekbang_demo.arithmetic.leetCode.week07;
import java.util.Arrays;
/**
* 1122. 数组的相对排序
*/
public class Demo1122 {
public int[] relativeSortArray(int[] arr1, int[] arr2) {
int k = 0;
for (int i = 0; i < arr2.length; i++) {
for (int j = 0; j < arr1.length; j++) {
... | UTF-8 | Java | 1,205 | java | LeetCode_1122_592.java | Java | [] | null | [] | package com.gsf.geekbang_demo.arithmetic.leetCode.week07;
import java.util.Arrays;
/**
* 1122. 数组的相对排序
*/
public class Demo1122 {
public int[] relativeSortArray(int[] arr1, int[] arr2) {
int k = 0;
for (int i = 0; i < arr2.length; i++) {
for (int j = 0; j < arr1.length; j++) {
... | 1,205 | 0.433249 | 0.378673 | 43 | 26.697674 | 25.715378 | 137 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.837209 | false | false | 15 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.