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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bd1bb13d0e6594c3995da81664085d43f0e76f17 | 29,016,799,075,085 | 359fcdc732b36a9f702a5ad0441fc953efac3125 | /Collection/src/HeapL/Heap.java | 6521b815ff5125026b0aff1421c1e53a0f28bd14 | [] | no_license | s11235218/LJava | https://github.com/s11235218/LJava | a1937ad54baf054861d2f2306b68601635279ba7 | d9c7a754efc38fafa2b1e9541571b341719c7e09 | refs/heads/master | 2022-12-03T13:42:55.116000 | 2021-08-07T02:30:40 | 2021-08-07T02:30:40 | 222,437,674 | 3 | 0 | null | false | 2022-11-16T08:38:08 | 2019-11-18T11:53:36 | 2021-08-07T02:32:47 | 2022-11-16T08:38:05 | 15,670 | 1 | 0 | 17 | JavaScript | false | false | package HeapL;
// 大堆
public class Heap {
// 向下调整
public static void shiftDown(int[] array, int size, int index) {
int parent = index;
int child = 2 * parent + 1;
while(child < size) {
if(child + 1 < size && array[child + 1] > array[child]) {
child = child + 1... | UTF-8 | Java | 1,022 | java | Heap.java | Java | [] | null | [] | package HeapL;
// 大堆
public class Heap {
// 向下调整
public static void shiftDown(int[] array, int size, int index) {
int parent = index;
int child = 2 * parent + 1;
while(child < size) {
if(child + 1 < size && array[child + 1] > array[child]) {
child = child + 1... | 1,022 | 0.446029 | 0.427699 | 36 | 26.277779 | 19.388729 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.75 | false | false | 3 |
571f596907e1ad8c85242fdd576b3e216a3436b1 | 5,059,471,514,138 | c4a165562100bf017153ee609e7cba2bf82f156f | /src/main/java/com/example/ConcatWithIterable.java | a50bd93d1e1b9180293b96c95184e06ff015aad0 | [] | no_license | reta-ygs/string-concat | https://github.com/reta-ygs/string-concat | daa5481942587cf136a0d2e6c5cf92f6540834d5 | e1975a51a9e44b67f7663b67b4262bafb80d6dde | refs/heads/main | 2023-08-21T01:22:59.278000 | 2021-10-02T15:11:02 | 2021-10-02T15:11:02 | 412,830,103 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example;
import java.util.ArrayList;
public class ConcatWithIterable {
static String concat(String s, int count) {
ArrayList<String> result = new ArrayList<>();
result.add(s);
for (int i = 0; i < count; i++) {
result.add(s);
}
return String.join("", result);
}
}
| UTF-8 | Java | 293 | java | ConcatWithIterable.java | Java | [] | null | [] | package com.example;
import java.util.ArrayList;
public class ConcatWithIterable {
static String concat(String s, int count) {
ArrayList<String> result = new ArrayList<>();
result.add(s);
for (int i = 0; i < count; i++) {
result.add(s);
}
return String.join("", result);
}
}
| 293 | 0.65529 | 0.651877 | 15 | 18.533333 | 16.499966 | 47 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.666667 | false | false | 3 |
f2734e806fb494cf62f0e722cb0eacca78c957e2 | 25,409,026,561,184 | cadd19c25c5c35d2d6709e17526585e8a5f33d05 | /src/main/API/Door.java | 681d3284a0cb6db4919ed081045a84e748ceecae | [] | no_license | ViRb3/iddqdBot | https://github.com/ViRb3/iddqdBot | c96c93bc6ff82cd4d9a5ef23695dbc6d2bbfb8a0 | 5ab580d8b884580cb607328ecb795137466ecde7 | refs/heads/master | 2023-03-09T14:26:40.696000 | 2017-10-31T21:24:23 | 2017-10-31T21:24:23 | 109,022,023 | 3 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package main.API;
public class Door
{
private Boolean open;
private Boolean red = false;
private Boolean blue = false;
private Boolean yellow = false;
private int x1;
private int y1;
private int x2;
private int y2;
Door(Boolean open, String keyReqd, int x1, int x2, int y1, int y... | UTF-8 | Java | 1,117 | java | Door.java | Java | [] | null | [] | package main.API;
public class Door
{
private Boolean open;
private Boolean red = false;
private Boolean blue = false;
private Boolean yellow = false;
private int x1;
private int y1;
private int x2;
private int y2;
Door(Boolean open, String keyReqd, int x1, int x2, int y1, int y... | 1,117 | 0.495971 | 0.474485 | 72 | 14.513889 | 13.282187 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.416667 | false | false | 3 |
d9486cf0ba944860bc26ea0a527d43b2954ee6a6 | 15,144,054,727,764 | cc3431a688ae5d6a4560e22da642f3881525726a | /src/文件管理/FileCopy.java | e441014c22df27cc50e633ce91360d519ec0be8b | [] | no_license | bossikill/Java | https://github.com/bossikill/Java | 1f1db93071d55dc3d49fb57bd126e31637d5787b | 993e562fa79367b86c0d0dad83a7de4b0b184818 | refs/heads/master | 2020-11-24T07:15:51.058000 | 2020-02-08T05:51:12 | 2020-02-08T05:51:12 | 228,024,967 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package 文件管理;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
//文件复制
public class FileCopy {
public static void main(String[] args) {
try (FileInputStream in = new FileInputStream("./TestDir/build.txt");
FileOutputStream out = new FileOutputStream(... | UTF-8 | Java | 771 | java | FileCopy.java | Java | [] | null | [] | package 文件管理;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
//文件复制
public class FileCopy {
public static void main(String[] args) {
try (FileInputStream in = new FileInputStream("./TestDir/build.txt");
FileOutputStream out = new FileOutputStream(... | 771 | 0.552318 | 0.54702 | 26 | 28.038462 | 22.112442 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.538462 | false | false | 3 |
c17ffd548f0cc4e6028fb8e392cce844ea672bcd | 12,171,937,358,378 | 77f61364b90b1b1e2919db2e50c66a21782b1923 | /Java Practice/src/chapter_9/DateTest.java | 69e0428b7d9e1905a1a654ef8f43a15c0b8549a5 | [] | no_license | msalaterski/Java-Practice | https://github.com/msalaterski/Java-Practice | bbdf397d0110104e45bda2be85fd0b14ad3643ba | ed0487e88a3c8b9557ef5c2adbf58bbfcaccd501 | refs/heads/master | 2021-01-22T06:27:36.009000 | 2017-02-12T23:32:13 | 2017-02-12T23:32:13 | 81,760,254 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package chapter_9;
import java.util.Date;
public class DateTest {
public static void main(String[] args) {
Date theDate = new Date(10000);
for (int i = 0; i < 8; i++) {
System.out.println("During iteration " + (i + 1) + ", the date is " + theDate.toString() + ".");
theDate.setTime(theDate.getTime() * 10);... | UTF-8 | Java | 332 | java | DateTest.java | Java | [] | null | [] | package chapter_9;
import java.util.Date;
public class DateTest {
public static void main(String[] args) {
Date theDate = new Date(10000);
for (int i = 0; i < 8; i++) {
System.out.println("During iteration " + (i + 1) + ", the date is " + theDate.toString() + ".");
theDate.setTime(theDate.getTime() * 10);... | 332 | 0.611446 | 0.578313 | 15 | 21.133333 | 25.974005 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.533333 | false | false | 3 |
ac8bc432b1daa23d2dbb1f31712e082bf0306ebd | 9,921,374,513,221 | 6f5dddfa2a1270911f984c1855da741b7b9a18ac | /Ch5P6Steven/app/src/main/java/com/example/steven/ch5p6steven/MainActivity.java | 1e9959a3f340068ca43e151cf5c5a0b65df7dcca | [] | no_license | struongm/Android2018 | https://github.com/struongm/Android2018 | 3590ef5f36494c60c87c26ae975b32130ea11eeb | cff917f4cb12bc8ab6ad292a2e108afddbee4e2a | refs/heads/master | 2018-10-24T11:42:22.559000 | 2018-08-23T00:11:50 | 2018-08-23T00:11:50 | 142,729,953 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.steven.ch5p6steven;
import android.app.ListActivity;
import android.content.Intent;
import android.net.Uri;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
public class MainActi... | UTF-8 | Java | 1,393 | java | MainActivity.java | Java | [
{
"context": "package com.example.steven.ch5p6steven;\n\nimport android.app.ListActivity;\nim",
"end": 26,
"score": 0.947909951210022,
"start": 20,
"tag": "USERNAME",
"value": "steven"
},
{
"context": "f Legends\", \"Monster Hunter World\", \"Overwatch\", \"Tom Clancy's Rainbow Six S... | null | [] | package com.example.steven.ch5p6steven;
import android.app.ListActivity;
import android.content.Intent;
import android.net.Uri;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
public class MainActi... | 1,389 | 0.64537 | 0.640345 | 38 | 35.657894 | 32.860371 | 118 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.868421 | false | false | 3 |
2ee8beac488c358e9097d618bdb1515690dee37c | 23,175,643,587,050 | 69de0f7f23943694f7cf0407355b7a61ad019e9a | /gdpr_android/src/main/java/com/iab/gdpr_android/exception/VendorConsentParseException.java | ed7f98c03481d64841ef7c81347734d84ff3244a | [
"MIT"
] | permissive | didomi/Consent-String-SDK-Android | https://github.com/didomi/Consent-String-SDK-Android | 7b66d2c89e2061643a83772f7235d5ade2ca782c | 362e6b4f015ffd7d3b406a772e316b67f60de15b | refs/heads/master | 2020-03-27T22:27:10.224000 | 2018-09-05T15:42:27 | 2018-09-05T15:42:27 | 147,232,355 | 1 | 1 | null | false | 2018-09-03T19:53:58 | 2018-09-03T17:01:35 | 2018-09-03T17:01:38 | 2018-09-03T19:53:58 | 176 | 0 | 0 | 0 | null | false | null | package com.iab.gdpr_android.exception;
public class VendorConsentParseException extends VendorConsentException {
public VendorConsentParseException(String message, Throwable cause) {
super(message, cause);
}
public VendorConsentParseException(String message) {
super(message);
}
}
| UTF-8 | Java | 316 | java | VendorConsentParseException.java | Java | [] | null | [] | package com.iab.gdpr_android.exception;
public class VendorConsentParseException extends VendorConsentException {
public VendorConsentParseException(String message, Throwable cause) {
super(message, cause);
}
public VendorConsentParseException(String message) {
super(message);
}
}
| 316 | 0.743671 | 0.743671 | 11 | 27.727272 | 27.532101 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.454545 | false | false | 3 |
ffd64ec9b2b38e017ebe1ca36d6643fe320f02cf | 20,229,296,006,681 | f2e5f0c74cca281000e5b0a47044a84b49d5cb87 | /Comp401/Comp 401 Workspace/Assignment8/src/view/AdventureView.java | 2d06e9ec2529cc2f9551c7796c7a82ad7cfaa781 | [] | no_license | AaronZhangGitHub/Archive | https://github.com/AaronZhangGitHub/Archive | 7ad351831c7d1d197471213a2b483696ee38f426 | e803443d5333f7f8f99e99e257735d5440ca8df7 | refs/heads/master | 2021-01-16T19:06:45.637000 | 2017-08-12T20:49:55 | 2017-08-12T20:49:55 | 100,136,627 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package view;
import java.awt.BorderLayout;
import javax.swing.JLabel;
import javax.swing.JPanel;
import model.Adventure;
public class AdventureView extends JPanel {
private Adventure adventure;
public AdventureView(Adventure adventure) {
this.adventure = adventure;
setLayout(new BorderLayout());
a... | UTF-8 | Java | 378 | java | AdventureView.java | Java | [] | null | [] | package view;
import java.awt.BorderLayout;
import javax.swing.JLabel;
import javax.swing.JPanel;
import model.Adventure;
public class AdventureView extends JPanel {
private Adventure adventure;
public AdventureView(Adventure adventure) {
this.adventure = adventure;
setLayout(new BorderLayout());
a... | 378 | 0.753968 | 0.753968 | 21 | 17 | 17.391842 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.142857 | false | false | 3 |
f66caf1ee7d17465538e35da84984ed2fab1a0fb | 34,230,889,368,316 | 6114c6cd4d7c2db754b6af30557bf23041412b8b | /xoai-common/src/main/java/com/lyncode/xoai/model/oaipmh/DeletedRecord.java | 54ae26e4976f17f561a03de50c6de0f85a455cd3 | [
"Apache-2.0"
] | permissive | andrefgomes/xoai | https://github.com/andrefgomes/xoai | 342785c54860c1090231a644f95f2f9a971c92f1 | 13233a4e8419f50d48df5bea5c1f9e901b0f846c | refs/heads/master | 2021-01-16T20:33:09.554000 | 2015-06-12T17:50:23 | 2015-06-12T17:50:23 | 21,691,112 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lyncode.xoai.model.oaipmh;
public enum DeletedRecord {
NO("no"),
PERSISTENT("persistent"),
TRANSIENT("transient");
public static DeletedRecord fromValue(String value) {
for (DeletedRecord c : DeletedRecord.values()) {
if (c.value.equals(value)) {
return c;
... | UTF-8 | Java | 607 | java | DeletedRecord.java | Java | [] | null | [] | package com.lyncode.xoai.model.oaipmh;
public enum DeletedRecord {
NO("no"),
PERSISTENT("persistent"),
TRANSIENT("transient");
public static DeletedRecord fromValue(String value) {
for (DeletedRecord c : DeletedRecord.values()) {
if (c.value.equals(value)) {
return c;
... | 607 | 0.607908 | 0.607908 | 33 | 17.39394 | 16.952589 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 3 |
724edcb35b6511df31cde7fcb8c1e9bb0f36c8d1 | 7,352,984,050,704 | 75da98a9682b2d76370dea5c2102f69c66b4cba5 | /src/customer/DaoCustomerManager.java | 3777fa9b478b2d36b60ad7594ba874a18cccaea4 | [] | no_license | SE-moustakim/store-management-javafx | https://github.com/SE-moustakim/store-management-javafx | 0fc552323557b5430568dc0b2ab8b2230a216ff9 | daef04d661326ce0579a610a7ad4bbb730a0cfb6 | refs/heads/master | 2022-12-30T03:40:48.198000 | 2020-10-20T19:10:55 | 2020-10-20T19:10:55 | 305,740,500 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package customer;
import java.util.List;
public interface DaoCustomerManager {
public void insert(Customer customer);
public void edit(int id, String firstName, String lastName, String phone);
public Customer search(int id);
public void delete(int id);
public List<Customer> getAll();
}
| UTF-8 | Java | 296 | java | DaoCustomerManager.java | Java | [
{
"context": "ustomer customer);\npublic void edit(int id, String firstName, String lastName, String phone);\npublic Customer ",
"end": 163,
"score": 0.998860239982605,
"start": 154,
"tag": "NAME",
"value": "firstName"
},
{
"context": "\npublic void edit(int id, String firstName, Str... | null | [] |
package customer;
import java.util.List;
public interface DaoCustomerManager {
public void insert(Customer customer);
public void edit(int id, String firstName, String lastName, String phone);
public Customer search(int id);
public void delete(int id);
public List<Customer> getAll();
}
| 296 | 0.766892 | 0.766892 | 13 | 21.692308 | 20.778631 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.769231 | false | false | 3 |
c485d51c886d6bb8fc2fb2c2b7e2e1791f815fcb | 34,557,306,883,717 | 13fcadb602671b9ef2d19fea6a51a498b9d953d4 | /JAVA/src/Algorithms/Mathematics/SumOfConsecutiveSquares.java | 7ea6c1b8aee20f4de9fd8dab4f5c9dc170397a02 | [
"MIT"
] | permissive | argshub/Algorithmics | https://github.com/argshub/Algorithmics | bf815093c3bb80e5749695d6d738377b213e1ba4 | 98999205782083acbcdd2397288508779fdf332e | refs/heads/master | 2021-04-30T15:07:26.104000 | 2018-07-26T16:36:12 | 2018-07-26T16:36:12 | 121,232,181 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Algorithms.Mathematics;
/**
*
* @author argshub
*/
public class SumOfConsecutiveSquares {
public static int s... | UTF-8 | Java | 628 | java | SumOfConsecutiveSquares.java | Java | [
{
"context": "package Algorithms.Mathematics;\n\n/**\n *\n * @author argshub\n */\npublic class SumOfConsecutiveSquares {\n \n ",
"end": 243,
"score": 0.9973006248474121,
"start": 236,
"tag": "USERNAME",
"value": "argshub"
}
] | 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 Algorithms.Mathematics;
/**
*
* @author argshub
*/
public class SumOfConsecutiveSquares {
public static int s... | 628 | 0.595541 | 0.579618 | 28 | 21.428572 | 21.736126 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.357143 | false | false | 3 |
4996f946304ac2d3996cb7edf0837efd59071abd | 3,779,571,269,840 | 75ee16ee423e272ac123edf9537451606f6fcdd2 | /src/it/unitn/ing/rista/diffr/data/ILLDataFile.java | c28f6eed0153027384cfa0e3392d3b21b18e0978 | [
"BSD-3-Clause"
] | permissive | luttero/Maud | https://github.com/luttero/Maud | 0b031a40f94b3f6519ef3b74f883a19c8b82788b | 51b07e0c36011c68d71c6d0dfbfb6a1992c18eec | refs/heads/version2 | 2023-06-21T20:13:03.621000 | 2023-06-19T15:37:29 | 2023-06-19T15:37:29 | 81,939,182 | 5 | 5 | BSD-3-Clause | false | 2022-08-05T16:26:19 | 2017-02-14T11:36:38 | 2022-05-25T22:53:06 | 2022-08-05T16:26:18 | 180,699 | 2 | 4 | 2 | Java | false | false | /*
* @(#)ILLDataFile.java created 08/07/1998 ILL, Grenoble
*
* Copyright (c) 1998 Luca Lutterotti All Rights Reserved.
*
* This software is the research result of Luca Lutterotti and it is
* provided as it is as confidential and proprietary information.
* You shall not disclose such Confidential Information and ... | UTF-8 | Java | 5,344 | java | ILLDataFile.java | Java | [
{
"context": " 08/07/1998 ILL, Grenoble\n *\n * Copyright (c) 1998 Luca Lutterotti All Rights Reserved.\n *\n * This software is the r",
"end": 100,
"score": 0.9998801350593567,
"start": 85,
"tag": "NAME",
"value": "Luca Lutterotti"
},
{
"context": "ved.\n *\n * This software is the ... | null | [] | /*
* @(#)ILLDataFile.java created 08/07/1998 ILL, Grenoble
*
* Copyright (c) 1998 <NAME> All Rights Reserved.
*
* This software is the research result of Luca Lutterotti and it is
* provided as it is as confidential and proprietary information.
* You shall not disclose such Confidential Information and shall use... | 5,326 | 0.568114 | 0.558757 | 174 | 29.712645 | 23.135735 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.718391 | false | false | 3 |
06a44fab7014266dfe2cc2b88c2bb88046ff8447 | 10,170,482,627,877 | b5816dad5ee6a5236377bc9cb9dfcbf1ecc926cd | /src/main/java/com/example/demo/support/Support.java | 10fe0a60e6df4567f25ec9722efd4704da9e74ab | [] | no_license | Pruspat/Biblioteka-testowa | https://github.com/Pruspat/Biblioteka-testowa | ee7a0ff79e629528b1f94db410549cefc1bfb12a | ca5722de13535e35e0f60189c9a172305d7532e0 | refs/heads/master | 2020-04-18T20:03:09.937000 | 2019-05-15T18:29:56 | 2019-05-15T18:29:56 | 167,727,828 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.demo.support;
public class Support {
private Integer id;
private Integer customerId;
private String customerName;
private String customerSurname;
private String content;
private String replay;
private boolean status;
private Integer workerId;
public Support() {... | UTF-8 | Java | 2,921 | java | Support.java | Java | [
{
"context": "stomerId = customerId;\n this.customerName = customerName;\n this.customerSurname = customerSurname;\n",
"end": 966,
"score": 0.9600800275802612,
"start": 954,
"tag": "NAME",
"value": "customerName"
},
{
"context": "stomerId = customerId;\n this.cus... | null | [] | package com.example.demo.support;
public class Support {
private Integer id;
private Integer customerId;
private String customerName;
private String customerSurname;
private String content;
private String replay;
private boolean status;
private Integer workerId;
public Support() {... | 2,921 | 0.637111 | 0.637111 | 117 | 23.965813 | 26.252531 | 162 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.589744 | false | false | 3 |
f52002500c6d1783a9a4a673e88675676d760766 | 15,522,011,847,086 | d894da4b380fb2fb8f4f73f252c782ed7a961b22 | /src/main/java/org/klems/spark/example/css/CSS.java | adaad6db42491330acd0d769bc23c9c316df240d | [] | no_license | Klemsus/kultprosvet | https://github.com/Klemsus/kultprosvet | 6d44459562b33d0cf3ae0bbc3db7b56fa68358eb | e1d5fe13c41fab5c7cc5815505ccca8d15d735bb | refs/heads/master | 2021-01-13T09:04:51.293000 | 2016-04-08T08:11:36 | 2016-04-08T08:11:36 | 72,516,217 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.klems.spark.example.css;
public interface CSS {
String getHref();
}
| UTF-8 | Java | 83 | java | CSS.java | Java | [] | null | [] | package org.klems.spark.example.css;
public interface CSS {
String getHref();
}
| 83 | 0.73494 | 0.73494 | 5 | 15.6 | 13.602941 | 36 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 3 |
1aff701ca321bd86eeb45ce2d4cd5736229d2779 | 35,373,350,663,378 | 23a83f9642706c0e2da718c6ede2aa7bea886d84 | /src/test/java/com/softswiss/go/dev/pages/SearchResultsPage.java | bd5427f799b09ab0594c8bc1c8067bb5a182f772 | [] | no_license | vmorochkovskaya/go.dev | https://github.com/vmorochkovskaya/go.dev | f7b9a32dd70e282c0c36743163e982c8cd3feb7b | 1636c04827cb0d6d4a10f550a7b16f303f062b41 | refs/heads/master | 2023-05-10T01:42:29.770000 | 2020-06-08T22:53:44 | 2020-06-08T22:53:44 | 270,823,869 | 0 | 0 | null | false | 2023-05-09T18:50:05 | 2020-06-08T20:52:01 | 2020-06-08T22:53:44 | 2023-05-09T18:50:01 | 33 | 0 | 0 | 2 | Java | false | false | package com.softswiss.go.dev.pages;
import com.softswiss.go.dev.models.Package;
import framework.elements.Button;
import framework.elements.Label;
import framework.elements.Link;
import framework.enums.Setting;
import framework.webdriver.BaseForm;
import org.openqa.selenium.By;
import static com.softswiss.go.dev.func... | UTF-8 | Java | 2,146 | java | SearchResultsPage.java | Java | [] | null | [] | package com.softswiss.go.dev.pages;
import com.softswiss.go.dev.models.Package;
import framework.elements.Button;
import framework.elements.Label;
import framework.elements.Link;
import framework.enums.Setting;
import framework.webdriver.BaseForm;
import org.openqa.selenium.By;
import static com.softswiss.go.dev.func... | 2,146 | 0.718546 | 0.717614 | 53 | 39.509434 | 36.873379 | 148 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.716981 | false | false | 3 |
3a70c466cc6e730be19ba5d7d706e193e3b6c0aa | 2,705,829,397,543 | 5b8ad3f95518abc227c417a2486520f761d96e72 | /1029. Two City Scheduling.Java | e1e5da9a97b3fb9860f152f0a4b03cfbdb05855a | [] | no_license | SaoriKaku/LeetCode | https://github.com/SaoriKaku/LeetCode | cb77eae65db2017d45bdd505974c41eed72fecf4 | 815dc0819736cbf6ac65c3cca6481bef48628c83 | refs/heads/master | 2021-08-28T01:40:13.241000 | 2021-08-25T01:12:29 | 2021-08-25T01:12:29 | 208,539,948 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
/*
There are 2N people a company is planning to interview. The cost of flying the i-th person to city A is costs[i][0], and the cost of flying the i-th person to city B is costs[i][1].
Return the minimum cost to fly every person to a city such that exactly N people arrive in each city.
Example 1:
Input: [[10,20],[30,... | UTF-8 | Java | 1,300 | java | 1029. Two City Scheduling.Java | Java | [] | null | [] |
/*
There are 2N people a company is planning to interview. The cost of flying the i-th person to city A is costs[i][0], and the cost of flying the i-th person to city B is costs[i][1].
Return the minimum cost to fly every person to a city such that exactly N people arrive in each city.
Example 1:
Input: [[10,20],[30,... | 1,300 | 0.605385 | 0.551538 | 38 | 33.052631 | 35.222561 | 181 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.605263 | false | false | 3 |
00581c7d8d414bdd7f734038bf1f803940562098 | 2,705,829,396,484 | 6da40f85d77584a14449b8975924c26e4e5b37bf | /shop1/src/main/java/service/impl/FacebookSocialService.java | f78112831192a65938b049ab345ef069acf169f4 | [] | no_license | kardinaldon/ext-systems | https://github.com/kardinaldon/ext-systems | cf0c4672a2a30f13ad47eb7b66d05f787aa697fb | 37f9b1f09c7eb277c8db59f72042825d36ff13d1 | refs/heads/master | 2022-03-04T05:00:06.168000 | 2020-01-02T20:03:23 | 2020-01-02T20:03:23 | 185,272,545 | 1 | 0 | null | false | 2022-02-16T01:07:12 | 2019-05-06T21:11:00 | 2021-05-19T16:02:13 | 2022-02-16T01:07:12 | 9,687 | 0 | 0 | 17 | Java | false | false | package service.impl;
import com.restfb.DefaultFacebookClient;
import com.restfb.FacebookClient;
import com.restfb.Parameter;
import com.restfb.Version;
import com.restfb.scope.ExtendedPermissions;
import com.restfb.scope.ScopeBuilder;
import com.restfb.types.User;
import model.SocialAccount;
import service.SocialServ... | UTF-8 | Java | 1,736 | java | FacebookSocialService.java | Java | [] | null | [] | package service.impl;
import com.restfb.DefaultFacebookClient;
import com.restfb.FacebookClient;
import com.restfb.Parameter;
import com.restfb.Version;
import com.restfb.scope.ExtendedPermissions;
import com.restfb.scope.ScopeBuilder;
import com.restfb.types.User;
import model.SocialAccount;
import service.SocialServ... | 1,736 | 0.753456 | 0.75 | 41 | 41.341465 | 33.132851 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.951219 | false | false | 3 |
34548fafbc3ea7cd5ac9a857239e1abe62e48364 | 21,045,339,780,326 | d7de50fc318ff59444caabc38d274f3931349f19 | /src/com/facebook/stetho/Stetho$Initializer.java | 8540e5a743156280b4a7d004bbacb8cf49613038 | [] | no_license | reverseengineeringer/fr.dvilleneuve.lockito | https://github.com/reverseengineeringer/fr.dvilleneuve.lockito | 7bbd077724d61e9a6eab4ff85ace35d9219a0246 | ad5dbd7eea9a802e5f7bc77e4179424a611d3c5b | refs/heads/master | 2021-01-20T17:21:27.500000 | 2016-07-19T16:23:04 | 2016-07-19T16:23:04 | 63,709,932 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.facebook.stetho;
import android.content.Context;
import com.facebook.stetho.common.LogUtil;
import com.facebook.stetho.dumpapp.Dumper;
import com.facebook.stetho.dumpapp.DumperPlugin;
import com.facebook.stetho.dumpapp.RawDumpappHandler;
import com.facebook.stetho.dumpapp.StreamingDumpappHandler;
import co... | UTF-8 | Java | 3,212 | java | Stetho$Initializer.java | Java | [] | null | [] | package com.facebook.stetho;
import android.content.Context;
import com.facebook.stetho.common.LogUtil;
import com.facebook.stetho.dumpapp.Dumper;
import com.facebook.stetho.dumpapp.DumperPlugin;
import com.facebook.stetho.dumpapp.RawDumpappHandler;
import com.facebook.stetho.dumpapp.StreamingDumpappHandler;
import co... | 3,212 | 0.792653 | 0.789228 | 81 | 38.666668 | 32.945148 | 142 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.641975 | false | false | 3 |
4f7e5903b9d8b6a3b023904a637bba5d0e8bdeb2 | 13,606,456,429,152 | c71405c6858807f6bb0847980e7711b23c8f7fad | /app/src/main/java/com/andrezacampbell/adidevhighlanders/view/activity/PopInterestsGridActivity.java | 20737cfac2c36ced4fe02a95328651e01bffd0d6 | [] | no_license | francorufino/highlandersCode | https://github.com/francorufino/highlandersCode | ee990f67e3122f75d3c02c3e3c00760d230cfb51 | da713eb984a109d2b87c36e6f801227ab80b1ef2 | refs/heads/master | 2020-12-26T20:14:05.955000 | 2020-02-04T19:50:30 | 2020-02-04T19:50:30 | 237,628,482 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.andrezacampbell.adidevhighlanders.view.activity;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;
import com.andre... | UTF-8 | Java | 2,643 | java | PopInterestsGridActivity.java | Java | [] | null | [] | package com.andrezacampbell.adidevhighlanders.view.activity;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageView;
import android.widget.TextView;
import com.andre... | 2,643 | 0.662126 | 0.657586 | 80 | 32.037498 | 26.873985 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4875 | false | false | 3 |
c270620e867dddaedfcb9052c14de1dea00bfb2d | 25,941,602,538,246 | 444cc3416f9852542b137cc2a3d204f456af74a4 | /src/test/java/org/bioinfo/cellbase/parser/GtfParserTest.java | 3a06c24989ca6f43b69d7ec3bf636fc427b4d7f4 | [] | no_license | Echirivella/cellbase | https://github.com/Echirivella/cellbase | d3054c77936befe60c4b624480ec38f0f36dac48 | f657f5072bfc275238bd7fecc1454edd72c873c6 | refs/heads/master | 2021-01-15T21:15:12.798000 | 2013-02-21T18:49:53 | 2013-02-21T18:49:53 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.bioinfo.cellbase.parser;
import java.io.File;
import java.io.IOException;
import org.bioinfo.formats.exception.FileFormatException;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class GtfParserTest {
@Before
public void setUp() throws Exception {
}
@After
public vo... | UTF-8 | Java | 1,295 | java | GtfParserTest.java | Java | [] | null | [] | package org.bioinfo.cellbase.parser;
import java.io.File;
import java.io.IOException;
import org.bioinfo.formats.exception.FileFormatException;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class GtfParserTest {
@Before
public void setUp() throws Exception {
}
@After
public vo... | 1,295 | 0.697297 | 0.69112 | 47 | 26.553192 | 35.836987 | 236 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.851064 | false | false | 3 |
2ca619c135c9d7b0c3528fe5bdab9f02157861b2 | 28,355,374,155,929 | 4a34a1d734bae72782919b11d0ebd1b41c6233c0 | /src/main/java/com/solvd/companystructure/Main.java | 6bc4bcc87c97b64e302f163f76bc33582a08789a | [] | no_license | jovchinnikova/company-structure | https://github.com/jovchinnikova/company-structure | ff57f4ecde7226e88f1d5cc82e194ab04dd83404 | d37a1c17035ea2b6f3edd0bd00756ece19bb8374 | refs/heads/master | 2023-08-24T06:05:45.699000 | 2021-11-01T10:57:18 | 2021-11-01T10:57:18 | 420,593,758 | 0 | 0 | null | false | 2021-11-01T10:57:19 | 2021-10-24T05:16:09 | 2021-10-29T22:04:43 | 2021-11-01T10:57:18 | 72 | 0 | 0 | 0 | Java | false | false | package com.solvd.companystructure;
import com.solvd.companystructure.companyinfo.*;
import com.solvd.companystructure.companyinfo.impl.AccountingImpl;
import com.solvd.companystructure.exception.InvalidPhoneException;
import com.solvd.companystructure.exception.TillProjException;
import com.solvd.companystructure.inf... | UTF-8 | Java | 16,155 | java | Main.java | Java | [
{
"context": "any(\"Solvd Inc\");\n CEO director = new CEO(\"Ivan\", \"Ivanov\");\n director.setDob(LocalDateTim",
"end": 1479,
"score": 0.9997743368148804,
"start": 1475,
"tag": "NAME",
"value": "Ivan"
},
{
"context": "vd Inc\");\n CEO director = new CEO(\"Ivan\... | null | [] | package com.solvd.companystructure;
import com.solvd.companystructure.companyinfo.*;
import com.solvd.companystructure.companyinfo.impl.AccountingImpl;
import com.solvd.companystructure.exception.InvalidPhoneException;
import com.solvd.companystructure.exception.TillProjException;
import com.solvd.companystructure.inf... | 16,155 | 0.642278 | 0.624636 | 397 | 39.692696 | 24.608599 | 136 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.166247 | false | false | 3 |
f5971340c4eaf7ddfb4263db5351d73384043e61 | 541,165,890,641 | 3fc3cbf6a831ee64555e21020df0b4e698822055 | /src/main/java/com/webcheckers/ui/PostSignInRoute.java | 06aa7f1d6f74c7594991ae299694712ddc828bb1 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | jgoneil/Checkers | https://github.com/jgoneil/Checkers | eed614254adb335a41e04f3179e048b6d9f5f224 | 54b959191bab8fae8f7e81fabf351f281cec5ec8 | refs/heads/master | 2020-04-21T19:20:45.536000 | 2019-02-13T19:25:29 | 2019-02-13T19:25:29 | 169,803,181 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.webcheckers.ui;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import spark.ModelAndView;
import spark.Request;
import spark.Response;
import spark.Route;
import spark.TemplateEngine;
import spark.Session;
import static spark.Spark.halt;
import com.webcheckers.appl.PlayerLobby... | UTF-8 | Java | 2,654 | java | PostSignInRoute.java | Java | [
{
"context": "\"signin.ftl\";\n static final String USER_PARAM = \"username\";\n\n //HTML template loader for freemarker pages\n",
"end": 648,
"score": 0.628452479839325,
"start": 640,
"tag": "USERNAME",
"value": "username"
}
] | null | [] | package com.webcheckers.ui;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import spark.ModelAndView;
import spark.Request;
import spark.Response;
import spark.Route;
import spark.TemplateEngine;
import spark.Session;
import static spark.Spark.halt;
import com.webcheckers.appl.PlayerLobby... | 2,654 | 0.721929 | 0.721929 | 82 | 31.365854 | 27.745583 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.548781 | false | false | 3 |
166c4c71c5a76dcff45c5effd7bf478e36e6d3eb | 764,504,235,531 | 638668b2e053972f47bf1c04d886acdbd6c1b537 | /beige-logging-base/src/main/java/org/beigesoft/log/PrnThr.java | fa8f472316d483982d6bdb778fb34e75e7dbbc43 | [
"BSD-2-Clause",
"MIT",
"Apache-2.0"
] | permissive | demidenko05/beige-logging | https://github.com/demidenko05/beige-logging | 5cc92a35d46c381343895ec62cbe36544abc0c41 | 3e1d2ef852da7813815c68ab75bbef73fe4647b2 | refs/heads/master | 2021-06-03T07:30:17.494000 | 2020-10-13T11:12:31 | 2020-10-13T11:12:31 | 104,195,013 | 0 | 0 | BSD-2-Clause | false | 2020-10-13T00:22:01 | 2017-09-20T09:31:08 | 2020-09-13T08:43:17 | 2020-10-13T00:22:00 | 135 | 0 | 0 | 1 | Java | false | false | /*
BSD 2-Clause License
Copyright (c) 2019, Beigesoft™
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions... | UTF-8 | Java | 3,479 | java | PrnThr.java | Java | [
{
"context": "g;\n\n/**\n * <p>Throwable printer.</p>\n *\n * @author Yury Demidenko\n */\npublic class PrnThr {\n\n /**\n * <p>Line sep",
"end": 1412,
"score": 0.9996966123580933,
"start": 1398,
"tag": "NAME",
"value": "Yury Demidenko"
}
] | null | [] | /*
BSD 2-Clause License
Copyright (c) 2019, Beigesoft™
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions... | 3,471 | 0.665804 | 0.663503 | 111 | 30.324324 | 26.187874 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.513514 | false | false | 3 |
697e8d6fe603715aa642840ade6545d3b01d76fe | 30,992,484,049,318 | 1e9c9f2a9639db7cdb032aae69cb4d99aef1d3a5 | /pluralSight/javaFundamentalsPart2/4_io/printing/ICartridge.java | b093289ae31e16b50c804f388a0a85b4e29ae42d | [
"MIT"
] | permissive | sagarnikam123/learnNPractice | https://github.com/sagarnikam123/learnNPractice | f0da3f8acf653e56c591353ab342765a6831698c | 1b3b0cb2cff2f478006626a4c37a99102acbb628 | refs/heads/master | 2023-02-04T11:21:18.211000 | 2023-01-24T14:47:52 | 2023-01-24T14:47:52 | 61,184,927 | 2 | 1 | MIT | false | 2022-03-06T11:07:18 | 2016-06-15T06:57:19 | 2022-01-09T16:47:26 | 2022-03-06T11:07:18 | 33,448 | 0 | 1 | 0 | Python | false | false | package printing;
public interface ICartridge
{
public String getFillPercentage();
public String printColor();
}
| UTF-8 | Java | 123 | java | ICartridge.java | Java | [] | null | [] | package printing;
public interface ICartridge
{
public String getFillPercentage();
public String printColor();
}
| 123 | 0.739837 | 0.739837 | 7 | 15.571428 | 13.79293 | 35 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.714286 | false | false | 3 |
bb5a4f3352f4dec6852c8783eca374b2c9027c4e | 16,612,933,550,030 | d7b38d8aeb27dcb8e1b1191a0da1adf66a666545 | /build/project/src/sudoku/BoardController.java | 312f426a9ab7766b4eb95caf5898c1c96cd3358d | [] | no_license | MrKhantee/SudokuGameJava | https://github.com/MrKhantee/SudokuGameJava | 2bea288b703cea750cd892559a06f6a6155dd2ca | eb633e2124528db7c478a6c7fa06c7fd88daee4d | refs/heads/master | 2020-06-29T05:49:03.392000 | 2017-04-09T09:37:11 | 2017-04-09T09:37:11 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package sudoku;
import java.io.FileNotFoundException;
import java.net.URL;
import java.util.Optional;
import java.util.ResourceBundle;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Alert;
import javafx.scene.co... | UTF-8 | Java | 5,685 | java | BoardController.java | Java | [] | null | [] | package sudoku;
import java.io.FileNotFoundException;
import java.net.URL;
import java.util.Optional;
import java.util.ResourceBundle;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Alert;
import javafx.scene.co... | 5,685 | 0.671592 | 0.655937 | 198 | 27.712122 | 22.953245 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.691919 | false | false | 3 |
fb824b43f7ae29011402b44ab30eac2682484052 | 33,964,601,387,736 | ccebc68dadc76a41ee9b912cbc13700264c3d011 | /hl-common/src/main/java/com/hualongdata/springstarter/common/domain/UserSex.java | 35e2bf1973fcad9d1b89219339169c7ce0c9c3d8 | [] | no_license | Syngain/spring-starter | https://github.com/Syngain/spring-starter | 85da710eb5b84e0053894e3ad1422b5437f59fb8 | 5cef0efc9218bd4478e1d2c7b8aed89a3d5ad17f | refs/heads/master | 2020-07-03T07:16:47.635000 | 2016-09-27T09:45:09 | 2016-09-27T09:45:09 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hualongdata.springstarter.common.domain;
/**
* Created by yangbajing on 16-9-9.
*/
public enum UserSex {
F, // 女
M, // 男
U // 未知
}
| UTF-8 | Java | 166 | java | UserSex.java | Java | [
{
"context": "ta.springstarter.common.domain;\n\n/**\n * Created by yangbajing on 16-9-9.\n */\npublic enum UserSex {\n F, // 女\n",
"end": 82,
"score": 0.9995942711830139,
"start": 72,
"tag": "USERNAME",
"value": "yangbajing"
}
] | null | [] | package com.hualongdata.springstarter.common.domain;
/**
* Created by yangbajing on 16-9-9.
*/
public enum UserSex {
F, // 女
M, // 男
U // 未知
}
| 166 | 0.601266 | 0.575949 | 10 | 14.8 | 16.004999 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3 | false | false | 3 |
505b02d3842f556d321d80e2c78d21d6a626d9ab | 13,211,319,451,398 | 7f2f94365ffec4866446d97adc05e67f42c1b5dd | /components-c3p0/src/main/java/com/libo/c3p0/util/DBPropUtil.java | d6dce29a6e5c6d960139cbf54742a61228325aaf | [
"Apache-2.0"
] | permissive | alex4java/coffice-components | https://github.com/alex4java/coffice-components | 7d85ab6c89f7cda1ddd6d1878f24c64c7d513920 | b0b42f38feccfe529d32188d731d616444c405d9 | refs/heads/master | 2020-03-14T12:20:50.140000 | 2018-04-30T16:03:39 | 2018-04-30T16:03:39 | 131,609,855 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.libo.c3p0.util;
import java.io.IOException;
import java.util.Properties;
import com.libo.c3p0.constant.DBConnKey;
import com.libo.c3p0.constant.DBConstant;
/**
* @author libo
* @date 2015-12-28
* @description 专门用于读取数据库DB信息Properties文件
*/
public class DBPropUtil {
//系统数据库的映射对象
private static Prop... | UTF-8 | Java | 3,563 | java | DBPropUtil.java | Java | [
{
"context": "om.libo.c3p0.constant.DBConstant;\n\n\n/**\n * @author libo\n * @date 2015-12-28\n * @description 专门用于读取数据库DB信息",
"end": 191,
"score": 0.999518632888794,
"start": 187,
"tag": "USERNAME",
"value": "libo"
}
] | null | [] | package com.libo.c3p0.util;
import java.io.IOException;
import java.util.Properties;
import com.libo.c3p0.constant.DBConnKey;
import com.libo.c3p0.constant.DBConstant;
/**
* @author libo
* @date 2015-12-28
* @description 专门用于读取数据库DB信息Properties文件
*/
public class DBPropUtil {
//系统数据库的映射对象
private static Prop... | 3,563 | 0.707654 | 0.676299 | 151 | 20.543047 | 24.882702 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.205298 | false | false | 3 |
9b3b2c38c5be1f5df0f0337a9941d3099bc8c6c8 | 10,840,497,467,350 | cd5e032a8db1c3cd7acc09798017b600120988eb | /app/src/main/java/com/a7552_2c_2018/melliapp/fragment/CCSecureCodeFragment.java | fa1442bab8030a679dd0728b46b3d3320be44113 | [
"Apache-2.0"
] | permissive | 7552-2C-2018/MelliApp | https://github.com/7552-2C-2018/MelliApp | ce3de2f381ebdce9e866944d85c713aa3f4f80f6 | c9b261466f5a22bd81f1c02e791669b33b744ef7 | refs/heads/master | 2020-03-27T05:55:07.853000 | 2018-12-13T05:47:39 | 2018-12-13T05:47:39 | 146,061,853 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.a7552_2c_2018.melliapp.fragment;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v4.app.Fragment;
import android.text.Editable;
import android.text.TextUtils;
import android.text.TextWatcher;
import android.util.Log;
import android.view.LayoutInflater;
import an... | UTF-8 | Java | 3,125 | java | CCSecureCodeFragment.java | Java | [] | null | [] | package com.a7552_2c_2018.melliapp.fragment;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v4.app.Fragment;
import android.text.Editable;
import android.text.TextUtils;
import android.text.TextWatcher;
import android.util.Log;
import android.view.LayoutInflater;
import an... | 3,125 | 0.6144 | 0.59552 | 121 | 24.826447 | 24.153667 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.471074 | false | false | 3 |
4c92b08dea051a3b5619b98f136a5d8f3cdb1d06 | 4,475,355,925,324 | f4e7664d21a4c89d3f4fae7258d5a75f3ceeefec | /src/paczka/CleanTemp.java | 2d15ffbebecb0aba5bb3eb26716acc751e9770e0 | [] | no_license | simsonek/tipp | https://github.com/simsonek/tipp | dcb901c687e1b20c8c8ecf34cdfe9a6753aa8a49 | e987df613656431023e1ef5b347c594cfbd4b599 | refs/heads/master | 2016-07-30T22:05:33.163000 | 2014-08-11T17:15:10 | 2014-08-11T17:15:10 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package paczka;
import java.io.File;
public class CleanTemp {
public void Run(String filePath){
//FileUtils.deleteDirectory(new File("directory"));
File plik = new File(filePath);
if(plik.isDirectory()){
File[] pliki = plik.listFiles();
for(File file : pliki){
Run(file.getAbsolutePath());
}
p... | UTF-8 | Java | 375 | java | CleanTemp.java | Java | [] | null | [] | package paczka;
import java.io.File;
public class CleanTemp {
public void Run(String filePath){
//FileUtils.deleteDirectory(new File("directory"));
File plik = new File(filePath);
if(plik.isDirectory()){
File[] pliki = plik.listFiles();
for(File file : pliki){
Run(file.getAbsolutePath());
}
p... | 375 | 0.64 | 0.64 | 24 | 14.625 | 14.913116 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.708333 | false | false | 3 |
eeb00f49e9dbfc7c4d6887d018af50e42262ab34 | 14,637,248,610,259 | dcfc7a4bb293fb1ef9e9700585b741ea7b673bd4 | /TrabajoPW/src/main/java/pe/edu/upc/entity/Rent.java | 69ac83d2f1ca9f88a56ebd124397e2373cbec393 | [] | no_license | RonalManuel/TrabajoPW | https://github.com/RonalManuel/TrabajoPW | 7cdbc2d1b2376b15bc0c4e94f1b2cc7642e86709 | 0eef6a264a2a5082a50bb49c735a40bdab965e83 | refs/heads/master | 2022-11-13T09:37:28.387000 | 2020-06-30T10:47:49 | 2020-06-30T10:47:49 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pe.edu.upc.entity;
import java.util.Date;
import java.util.List;
import java.util.stream.Collectors;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.pers... | UTF-8 | Java | 2,932 | java | Rent.java | Java | [] | null | [] | package pe.edu.upc.entity;
import java.util.Date;
import java.util.List;
import java.util.stream.Collectors;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.pers... | 2,932 | 0.722715 | 0.722715 | 124 | 21.645161 | 18.997536 | 95 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.096774 | false | false | 3 |
3d2048b6dceb2ef4fc3534a022369dfc39172244 | 15,745,350,174,613 | 7758a313719d8632480b294c138d9ce9d68e2cbd | /dont-wreck-my-house/src/main/java/learn/dontwreck/data/ReservationFileRepository.java | 7c6021096ba752aea191ba6640862f9c78d3dfa3 | [] | no_license | isaaceriya/dont-wreck-my-house-updated | https://github.com/isaaceriya/dont-wreck-my-house-updated | ce91bc1455434f12b891c1811e267f9ceab0a54e | a22e374c0dd0c143c8ab48c764075701cb71e27e | refs/heads/main | 2023-07-06T12:01:40.083000 | 2021-08-13T14:27:30 | 2021-08-13T14:27:30 | 395,681,774 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package learn.dontwreck.data;
import learn.dontwreck.models.Guest;
import learn.dontwreck.models.Host;
import learn.dontwreck.models.Reservation;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Repository;
import java.io.*;
import java.math.BigDecimal;
import java.nio.... | UTF-8 | Java | 4,513 | java | ReservationFileRepository.java | Java | [] | null | [] | package learn.dontwreck.data;
import learn.dontwreck.models.Guest;
import learn.dontwreck.models.Host;
import learn.dontwreck.models.Reservation;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Repository;
import java.io.*;
import java.math.BigDecimal;
import java.nio.... | 4,513 | 0.594948 | 0.592511 | 148 | 29.493244 | 26.616774 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.621622 | false | false | 3 |
df73887258b65fcdb21f894d84d5a40fa6625ea6 | 1,099,511,647,234 | 129839e3017392a2eeee8c37e8cf7224e1427910 | /src/Bishop.java | 18888c16e5676e653065eeda07211bb4ffbaa655 | [] | no_license | MuirDH/ChessGame | https://github.com/MuirDH/ChessGame | 53c1c75a21bcd127e79482fbe04a8bf7b0cb4e7b | e4bf14b86fe854332b5b6169d8df8eead9abe6b9 | refs/heads/master | 2021-01-20T01:30:41.606000 | 2017-08-24T12:31:43 | 2017-08-24T12:31:43 | 101,292,783 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
// child class, parent class is Piece
public class Bishop extends Piece{
public Bishop() {
super();
this.name = "bishop";
}
@Override
boolean isValidMove(Position newPosition) {
// First check the parent's isValidMove test, then move on to the Bishop's movement rules test.
... | UTF-8 | Java | 789 | java | Bishop.java | Java | [
{
"context": " Bishop() {\n super();\n this.name = \"bishop\";\n }\n\n @Override\n boolean isValidMove(Po",
"end": 141,
"score": 0.989709198474884,
"start": 135,
"tag": "NAME",
"value": "bishop"
}
] | null | [] |
// child class, parent class is Piece
public class Bishop extends Piece{
public Bishop() {
super();
this.name = "bishop";
}
@Override
boolean isValidMove(Position newPosition) {
// First check the parent's isValidMove test, then move on to the Bishop's movement rules test.
... | 789 | 0.674271 | 0.674271 | 18 | 42.777779 | 40.093716 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.388889 | false | false | 3 |
ae6c37d2e9c7acfe5ca61f661b7e5b925da6bdf0 | 22,136,261,512,625 | 71dd5a62896d88ef3d1a8b383d6964408d7d239f | /javastudy/part16-interface/src/com/koreait/ex2/TV.java | 91c4e480259f5bef0a1020d64d06d3a146649934 | [] | no_license | hwangseokjin94/java_web_0224 | https://github.com/hwangseokjin94/java_web_0224 | 42df3f57b3b50598e2ca8b12d27e20a284670ca7 | 6c9ab05ac743763db8264c42c814b79cada95458 | refs/heads/master | 2022-11-13T08:23:36.271000 | 2020-07-02T08:26:19 | 2020-07-02T08:26:19 | 250,546,467 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.koreait.ex2;
public class TV implements Product {
@Override
public void info() {
System.out.println("TV정보");
}
}
| UTF-8 | Java | 142 | java | TV.java | Java | [] | null | [] | package com.koreait.ex2;
public class TV implements Product {
@Override
public void info() {
System.out.println("TV정보");
}
}
| 142 | 0.666667 | 0.65942 | 14 | 8.857142 | 12.426108 | 36 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.571429 | false | false | 3 |
d7485b21a9be4244838ccd9ae164df9a51403ccb | 3,186,865,775,774 | 2015eb8f016270456f201ae67f2e1d4c0dc83451 | /src/test/java/com/vortex/MergeSortTest.java | 99be0a9882c268c96397be4475cc951b4a35cb3f | [] | no_license | OleksandrMatiash/algorithms | https://github.com/OleksandrMatiash/algorithms | ba61097284655a802deacc6010ad6331e5d5d3f4 | 99086f7adb305d298f6f5f005887f79419d16c0b | refs/heads/master | 2021-07-08T04:12:22.776000 | 2019-06-19T10:37:27 | 2019-06-19T10:37:27 | 192,711,303 | 0 | 0 | null | false | 2020-10-13T14:01:15 | 2019-06-19T10:31:13 | 2019-06-19T10:37:38 | 2020-10-13T14:01:14 | 37 | 0 | 0 | 1 | Java | false | false | package com.vortex;
import org.junit.Assert;
import org.junit.Test;
import java.util.Arrays;
import java.util.Collections;
import java.util.Random;
import java.util.stream.Collectors;
import static org.junit.Assert.*;
public class MergeSortTest {
@Test
public void sort() {
for (int j = 0; j < 10000;... | UTF-8 | Java | 805 | java | MergeSortTest.java | Java | [] | null | [] | package com.vortex;
import org.junit.Assert;
import org.junit.Test;
import java.util.Arrays;
import java.util.Collections;
import java.util.Random;
import java.util.stream.Collectors;
import static org.junit.Assert.*;
public class MergeSortTest {
@Test
public void sort() {
for (int j = 0; j < 10000;... | 805 | 0.598758 | 0.583851 | 31 | 25 | 21.616899 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.645161 | false | false | 3 |
67e3e480e77fde9fe066d7438286e6fb13921882 | 3,186,865,773,697 | a437746afe3163a8392f06188e48c41822a3fbfb | /support/ok/okhttp/src/main/java/sparkles/support/okhttp/LoggingInterceptor.java | 182729650c1fd7f5e9dbca4850c3f8a47040838b | [
"MIT"
] | permissive | sparkles-dev/sparkles | https://github.com/sparkles-dev/sparkles | e659826eeb5311c531c12e28f00ffd8a2a4589d1 | 5bc6b7fe922cfb4548404f8e6834151a88f560bd | refs/heads/master | 2023-08-31T20:32:53.714000 | 2019-12-16T15:40:06 | 2019-12-16T15:40:06 | 127,345,659 | 1 | 0 | MIT | false | 2023-05-28T08:45:17 | 2018-03-29T20:45:57 | 2020-03-06T14:54:18 | 2023-05-28T08:45:14 | 2,563 | 2 | 0 | 37 | Java | false | false | package sparkles.support.okhttp;
import org.slf4j.Logger;
import okhttp3.logging.HttpLoggingInterceptor;
public final class LoggingInterceptor {
public static HttpLoggingInterceptor slf4j(Logger logger) {
return create(logger::info);
}
public static HttpLoggingInterceptor create(HttpLoggingInterceptor.Log... | UTF-8 | Java | 594 | java | LoggingInterceptor.java | Java | [] | null | [] | package sparkles.support.okhttp;
import org.slf4j.Logger;
import okhttp3.logging.HttpLoggingInterceptor;
public final class LoggingInterceptor {
public static HttpLoggingInterceptor slf4j(Logger logger) {
return create(logger::info);
}
public static HttpLoggingInterceptor create(HttpLoggingInterceptor.Log... | 594 | 0.80303 | 0.79798 | 20 | 28.700001 | 33.978081 | 121 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 3 |
12ef3bf06e59a4510a9b442fce269db4768e0422 | 24,438,363,985,228 | 5fbc6b2215f25b0b725ad4e0f793eedf81322030 | /train-booking-service/src/main/java/com/train/bookingservice/repository/PaymentInformationRepository.java | e4f377ccf6546dde41850f2dab78bd833ff19ea9 | [] | no_license | anils15/TicketBooking | https://github.com/anils15/TicketBooking | 07c193851b5dee3b908b6ce4851a742419172d7a | da7bf8da2be1cf77dcf5b50f02fd63a8820c8c9c | refs/heads/main | 2023-08-27T14:02:39.018000 | 2021-11-05T12:12:23 | 2021-11-05T12:12:23 | 344,490,088 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.train.bookingservice.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import com.train.bookingservice.entity.PaymentInformation;
@Repository
public interface PaymentInformationRepository extends JpaRepository <PaymentInformation, ... | UTF-8 | Java | 331 | java | PaymentInformationRepository.java | Java | [] | null | [] | package com.train.bookingservice.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import com.train.bookingservice.entity.PaymentInformation;
@Repository
public interface PaymentInformationRepository extends JpaRepository <PaymentInformation, ... | 331 | 0.864048 | 0.864048 | 10 | 32.099998 | 32.632652 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 3 |
94dd32e6c94f39e8b03260cd2082ae96194e6816 | 24,446,953,850,437 | b251171516581875765f52ae82a3d571bf58ebe5 | /src/main/java/problems/google/odd_man_out.java | 1e7f4913c4e81758c8ec8822cfddfdc8f4d70edd | [] | no_license | brrcat/DefensiveCoding | https://github.com/brrcat/DefensiveCoding | 21605f2d280b490dbebdf75c9ab9d37da595ec8f | 797f33e281af463869ffb21c42c7a3acc6ae82e5 | refs/heads/master | 2016-08-08T16:17:19.089000 | 2014-11-15T02:07:55 | 2014-11-15T02:07:55 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package problems.google;
import java.util.HashSet;
/**
* Class: odd_man_out
* Date: 5/22/13
* Author: Kelvin Lai
*
* Find integer where every integer appears exactly twice except one integer which appears only once.
* takes O(n) time and O(n) space
*/
public class odd_man_out {
public int oddManOut(int []... | UTF-8 | Java | 993 | java | odd_man_out.java | Java | [
{
"context": "\n * Class: odd_man_out\n * Date: 5/22/13\n * Author: Kelvin Lai\n *\n * Find integer where every integer appears ex",
"end": 117,
"score": 0.9998669624328613,
"start": 107,
"tag": "NAME",
"value": "Kelvin Lai"
}
] | null | [] | package problems.google;
import java.util.HashSet;
/**
* Class: odd_man_out
* Date: 5/22/13
* Author: <NAME>
*
* Find integer where every integer appears exactly twice except one integer which appears only once.
* takes O(n) time and O(n) space
*/
public class odd_man_out {
public int oddManOut(int [] arr... | 989 | 0.52568 | 0.515609 | 39 | 24.461538 | 24.515663 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.410256 | false | false | 3 |
a845003cf62143c26b4295f9b1651e984fdfb181 | 25,168,508,365,443 | 964b858f099b40572f4879c02edbb6b85ca76053 | /Example/nrf-mesh/app/src/main/java/no/nordicsemi/android/nrfmeshprovisioner/NetworkFragment.java | 00cbc12870aed3c16df86c47171b972fa29ce7cf | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | insoonior/Android-nRF-Mesh-Library | https://github.com/insoonior/Android-nRF-Mesh-Library | c1b1db07657df2ea7b6f939f38d8dbbe000d46ca | 198a4a7554c3d2c15b0a92983d1a9aa6b254ee89 | refs/heads/master | 2020-04-07T07:50:31.898000 | 2018-09-27T08:03:54 | 2018-09-27T08:03:54 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright (c) 2018, Nordic Semiconductor
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditi... | UTF-8 | Java | 6,861 | java | NetworkFragment.java | Java | [] | null | [] | /*
* Copyright (c) 2018, Nordic Semiconductor
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of conditi... | 6,861 | 0.728174 | 0.726133 | 159 | 42.150944 | 40.353344 | 150 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.672956 | false | false | 3 |
91f8be8d6d870c3d101db46afb10e7d92a28b8d1 | 11,931,419,155,517 | 1ff30c370ddbedcd069826177b7957fde7152383 | /ehwork/src/main/java/com/ehwork/dao/impl/ShippingMethodDaoImpl.java | 61c825af63f11a1e6d82425d158b0e3d0b9a8ed3 | [] | no_license | alfredsu123/ehwork | https://github.com/alfredsu123/ehwork | 3d61c8ceaf769d10b887120a7d4d5372db6e8dd1 | bc110285b223aad9e750af1859769509a2d0b105 | refs/heads/master | 2016-08-04T22:41:36.123000 | 2014-06-01T07:20:06 | 2014-06-01T07:20:08 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright 2005-2013 ehwork.com. All rights reserved.
* Support: http://www.ehwork.com
* License: http://www.ehwork.com/license
*/
package com.ehwork.dao.impl;
import com.ehwork.dao.ShippingMethodDao;
import com.ehwork.entity.ShippingMethod;
import org.springframework.stereotype.Repository;
/**
* Dao - 配送方式... | UTF-8 | Java | 523 | java | ShippingMethodDaoImpl.java | Java | [] | null | [] | /*
* Copyright 2005-2013 ehwork.com. All rights reserved.
* Support: http://www.ehwork.com
* License: http://www.ehwork.com/license
*/
package com.ehwork.dao.impl;
import com.ehwork.dao.ShippingMethodDao;
import com.ehwork.entity.ShippingMethod;
import org.springframework.stereotype.Repository;
/**
* Dao - 配送方式... | 523 | 0.759223 | 0.739806 | 22 | 22.454546 | 25.894413 | 107 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.227273 | false | false | 3 |
492e30fe65d181ce6d6403d615ae4573994ea183 | 3,977,139,727,770 | 1607b379816531e192393f576ade70cfe3d90bb7 | /src/main/java/com/coastcapitalsavings/mvc/repositories/RequestRepository.java | 8b48c4b1cabae28b075fa19ef73696931f51f80d | [] | no_license | UBC-CPSC319/team-6 | https://github.com/UBC-CPSC319/team-6 | 29a04a75a7f9097dc634045700037eb143c38ce2 | 61596d348e75dc4d2d22f918cd79c09237dde89b | refs/heads/master | 2017-12-13T17:10:58.868000 | 2017-04-20T06:35:40 | 2017-04-20T06:35:40 | 78,295,826 | 1 | 0 | null | false | 2017-04-20T05:55:28 | 2017-01-07T18:22:10 | 2017-03-10T06:20:26 | 2017-04-20T05:55:28 | 14,245 | 1 | 0 | 2 | Java | null | null | package com.coastcapitalsavings.mvc.repositories;
import com.coastcapitalsavings.util.RequestStatusCodes;
import org.springframework.stereotype.Repository;
import org.springframework.beans.factory.annotation.Autowired;
import com.coastcapitalsavings.mvc.models.Request;
import com.coastcapitalsavings.mvc.models.Reques... | UTF-8 | Java | 23,126 | java | RequestRepository.java | Java | [] | null | [] | package com.coastcapitalsavings.mvc.repositories;
import com.coastcapitalsavings.util.RequestStatusCodes;
import org.springframework.stereotype.Repository;
import org.springframework.beans.factory.annotation.Autowired;
import com.coastcapitalsavings.mvc.models.Request;
import com.coastcapitalsavings.mvc.models.Reques... | 23,126 | 0.682306 | 0.682306 | 477 | 47.482182 | 35.266079 | 139 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.870021 | false | false | 3 |
89c3f3d3a916a859a3f5838be6e679532d01245a | 850,403,536,402 | be7b72d54574b9aaf8e7a474b461ac6f64088929 | /src/LibraryManagerFinal/AdminController.java | ba4354fc25ad66d7092fde030c4d708500b8ea47 | [] | no_license | shiponsheikh/librarymanagement | https://github.com/shiponsheikh/librarymanagement | 9b32fa106e2ed08ec1eaaab66e087f1558e78bda | fab3006ff656abd57f9bd8141a2f8ef896246fa3 | refs/heads/master | 2020-05-17T09:44:38.169000 | 2019-04-26T14:19:34 | 2019-04-26T14:19:34 | 183,640,897 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package LibraryManagerFinal;
import java.net.URL;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;
im... | UTF-8 | Java | 3,149 | java | AdminController.java | Java | [
{
"context": "Event;\n\n/**\n * FXML Controller class\n *\n * @author Shah Ali\n */\npublic class AdminController implements Initia",
"end": 747,
"score": 0.9362228512763977,
"start": 739,
"tag": "NAME",
"value": "Shah Ali"
},
{
"context": "rivate void change() {\n String pass... | 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 LibraryManagerFinal;
import java.net.URL;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.Statement;
im... | 3,150 | 0.551286 | 0.54811 | 102 | 29.872549 | 25.77492 | 140 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.480392 | false | false | 3 |
bf34458a0add5823defdc9593f02fdb0ad9943dc | 15,934,328,688,956 | 3c87ae5f0e1afafae8065c8a9b1ff94b770d5392 | /src/main/java/blackjack/domain/deck/DeckGenerator.java | 740bdc2df8e8f73704f31db31fa2076f133c65e9 | [] | no_license | jiwoo-kimm/mirror-java-blackjack | https://github.com/jiwoo-kimm/mirror-java-blackjack | 05e00ab93525c18ac4e52a2c0f63bd15cfc842f3 | d98cb0379c7d5293e5ce7be0dc1cd305304c5e9b | refs/heads/master | 2023-07-16T18:33:58.769000 | 2021-08-21T16:40:12 | 2021-08-21T16:40:12 | 396,597,436 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package blackjack.domain.deck;
import blackjack.domain.card.Card;
import java.util.Deque;
public interface DeckGenerator {
Deque<Card> generateDeck();
}
| UTF-8 | Java | 160 | java | DeckGenerator.java | Java | [] | null | [] | package blackjack.domain.deck;
import blackjack.domain.card.Card;
import java.util.Deque;
public interface DeckGenerator {
Deque<Card> generateDeck();
}
| 160 | 0.76875 | 0.76875 | 9 | 16.777779 | 15.046431 | 34 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.444444 | false | false | 3 |
b7c181ca802945716c935c0cebe722ba5ccc2568 | 15,934,328,688,816 | b5bcac0ee7be67bd54870c162de1c75e721fd8bf | /sales/sales-ejb/src/main/java/japhet/sales/mailing/service/ITemplateReaderService.java | 11b06865a8802874939fe3bb6d57de02f0ea9eea | [] | no_license | idcodeoverflow/prosperad | https://github.com/idcodeoverflow/prosperad | 08039513bf260f92736469b5dc42057f312f56b8 | 8145bfa0f0f41924ec529c75a71515d31e3b8a28 | refs/heads/master | 2021-06-17T11:07:11.636000 | 2017-05-22T07:10:50 | 2017-05-22T07:10:50 | 63,505,715 | 0 | 1 | null | false | 2017-05-22T07:10:51 | 2016-07-16T23:03:33 | 2016-12-23T06:40:30 | 2017-05-22T07:10:51 | 7,173 | 0 | 0 | 0 | Java | null | null | /**
*
*/
package japhet.sales.mailing.service;
import java.io.Serializable;
import java.util.Map;
import javax.ejb.Local;
import japhet.sales.except.TemplateReaderException;
import japhet.sales.mailing.MailingTemplates;
/**
* @author David Israel Garcia Alcazar
*
*/
@Local
public interface ITemplateReaderServ... | UTF-8 | Java | 477 | java | ITemplateReaderService.java | Java | [
{
"context": "et.sales.mailing.MailingTemplates;\n\n/**\n * @author David Israel Garcia Alcazar\n *\n */\n@Local\npublic interface ITemplateReaderSer",
"end": 269,
"score": 0.9952505230903625,
"start": 242,
"tag": "NAME",
"value": "David Israel Garcia Alcazar"
}
] | null | [] | /**
*
*/
package japhet.sales.mailing.service;
import java.io.Serializable;
import java.util.Map;
import javax.ejb.Local;
import japhet.sales.except.TemplateReaderException;
import japhet.sales.mailing.MailingTemplates;
/**
* @author <NAME>
*
*/
@Local
public interface ITemplateReaderService extends Serializa... | 456 | 0.786164 | 0.786164 | 23 | 19.73913 | 24.315351 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.565217 | false | false | 3 |
0514b95da0f762ce159b7551db74e9b6ef681111 | 26,147,760,909,307 | 4ff504748f2805a2c0ca912340c7f8822d92f08f | /jva-001-p1/src/com/luxoft/jva001p1/oop/demo/Demo.java | 5b2449c29756d0b19c4c32045abda37f58bde1bc | [] | no_license | Denis891906/java_007 | https://github.com/Denis891906/java_007 | 990b0ecc673a3eb43fab1ab2959930c00a10e6ec | 44615d8e2d0f27fb012baa06fd509088bf164690 | refs/heads/master | 2020-07-12T02:01:14.887000 | 2019-09-19T12:34:15 | 2019-09-19T12:34:15 | 204,689,984 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.luxoft.jva001p1.oop.demo;
import java.util.ArrayList;
public class Demo
{
public static void main(String[] args)
{
ArrayList<Cat> data = new ArrayList<>();
Cat cat1 = new Cat();
cat1.name = "Murzik";
cat1.age = 20;
Cat cat2 = new Cat();
cat2.name =... | UTF-8 | Java | 983 | java | Demo.java | Java | [
{
"context": " Cat cat1 = new Cat();\n cat1.name = \"Murzik\";\n cat1.age = 20;\n\n Cat cat2 = new ",
"end": 244,
"score": 0.9995495676994324,
"start": 238,
"tag": "NAME",
"value": "Murzik"
},
{
"context": " Cat cat2 = new Cat();\n cat2.name = ... | null | [] | package com.luxoft.jva001p1.oop.demo;
import java.util.ArrayList;
public class Demo
{
public static void main(String[] args)
{
ArrayList<Cat> data = new ArrayList<>();
Cat cat1 = new Cat();
cat1.name = "Murzik";
cat1.age = 20;
Cat cat2 = new Cat();
cat2.name =... | 983 | 0.459817 | 0.434385 | 57 | 16.245613 | 16.228933 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.438596 | false | false | 3 |
0fc90f8ebf1607eda6d1e9cb988765bdb7f30428 | 575,525,631,697 | 2044ed1c76a96a4fea16d872a8585b0eb94707aa | /F10-cmdline/src/com/javaoktato/nio/fileop/CmdLine.java | dbe941603e0557ea776fe0815bf3e38a8cc3d555 | [] | no_license | gaborbsd/java_2ed_sources | https://github.com/gaborbsd/java_2ed_sources | 17c06cacf5feb7b5ce54b37c998430fa64d87209 | 8583ef08b06eaff7a6702ebadbddd20ddd08ec6f | refs/heads/master | 2020-03-30T07:45:11.987000 | 2018-10-02T17:29:00 | 2018-10-02T17:29:00 | 150,964,326 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright © 2018. Kövesdán Gábor
*
* Az alábbi forráskód a "Szoftverfejlesztés Java SE platformon"
* c. könyv második kiadásának (ISBN 978-615-00-2933-7) mellékletét
* képezi. A forráskódot vagy annak részeit a kiadó engedélye nélkül
* tilos reprodukálni, adatrögzítő rendszerben tárolni, bármilyen
* formá... | UTF-8 | Java | 1,863 | java | CmdLine.java | Java | [
{
"context": "/*\n * Copyright © 2018. Kövesdán Gábor\n * \n * Az alábbi forráskód a \"Szoftverfejlesztés ",
"end": 38,
"score": 0.9998793601989746,
"start": 24,
"tag": "NAME",
"value": "Kövesdán Gábor"
}
] | null | [] | /*
* Copyright © 2018. <NAME>
*
* Az alábbi forráskód a "Szoftverfejlesztés Java SE platformon"
* c. könyv második kiadásának (ISBN 978-615-00-2933-7) mellékletét
* képezi. A forráskódot vagy annak részeit a kiadó engedélye nélkül
* tilos reprodukálni, adatrögzítő rendszerben tárolni, bármilyen
* formában vagy... | 1,852 | 0.666667 | 0.653509 | 66 | 26.636364 | 21.273569 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.151515 | false | false | 3 |
ebb406567e65c73f4c9768dcf5c65bfebaa00eec | 31,739,808,332,419 | 9dcd51def19de3b1a13562f98b3106f9d50c3c53 | /src/test/java/com/project/CaseKey/UserTest.java | bc22cb3131daf0150fa2d381fa3471404ad1be50 | [] | no_license | Pakistanp/CaseKey | https://github.com/Pakistanp/CaseKey | 69b3e7cbd4c8052a0e5af37768092c05ec927956 | af791b368d5db2a3bf2ebc3340052abdc59b4fae | refs/heads/master | 2023-03-30T03:00:31.869000 | 2021-03-20T10:08:18 | 2021-03-20T10:08:18 | 304,367,498 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.project.CaseKey;
import com.project.CaseKey.JsonModel.UserInfo;
import com.project.CaseKey.Service.UserService;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootT... | UTF-8 | Java | 1,700 | java | UserTest.java | Java | [] | null | [] | package com.project.CaseKey;
import com.project.CaseKey.JsonModel.UserInfo;
import com.project.CaseKey.Service.UserService;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootT... | 1,700 | 0.785882 | 0.703529 | 31 | 53.838711 | 116.447716 | 675 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.580645 | false | false | 3 |
b2c7d1543b5401b8ff9555cc5e2832de22a02bcd | 3,496,103,396,629 | 4a596e993071b256763bb62e4a4734d9c9528834 | /src/main/java/com/karakal/tycms/web/action/terminaladapterAction/ManufacturerAction.java | a9028ad6794ad32bf9a8591abce1ad96613c0f44 | [] | no_license | kkhechao/tycms-web | https://github.com/kkhechao/tycms-web | 1390f3d75b5d779f01296d406c806a66e2310491 | 7493dc10bb727c312fdd6246934ef8c1693bf16d | refs/heads/master | 2020-03-22T01:33:37.781000 | 2018-07-01T08:50:59 | 2018-07-01T08:50:59 | 139,313,529 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.karakal.tycms.web.action.terminaladapterAction;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Date;
import java.util.LinkedList;
import java.util.List;
import javax.annotation.Resource;
import org.apache.commons.beanutils.BeanUtils;
import org.apache.com... | UTF-8 | Java | 13,415 | java | ManufacturerAction.java | Java | [] | null | [] | package com.karakal.tycms.web.action.terminaladapterAction;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.Date;
import java.util.LinkedList;
import java.util.List;
import javax.annotation.Resource;
import org.apache.commons.beanutils.BeanUtils;
import org.apache.com... | 13,415 | 0.765669 | 0.761747 | 328 | 38.646343 | 34.830818 | 176 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.381098 | false | false | 3 |
9753f1987bfc2d76adfec28106117826a1fcf449 | 33,569,464,412,734 | 64ef5651e1fca84cb8f777a09f7f1f57937c7037 | /app/src/main/java/com/example/thomas/artifact/AddStudents.java | c99b70aa7b1f8a4f9a878ca4e025ae1bba127382 | [] | no_license | Th0masW/Artifact | https://github.com/Th0masW/Artifact | a78ed9879889c254de7941b9ee1101471e863019 | 91af34176b125c189ea8c8a062bd198de0c91ecd | refs/heads/master | 2021-04-28T01:29:06.527000 | 2018-04-11T02:02:54 | 2018-04-11T02:02:54 | 122,278,236 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.thomas.artifact;
import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v7.app.AppCompatActivity;
import android.text.TextUtils;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.V... | UTF-8 | Java | 5,321 | java | AddStudents.java | Java | [] | null | [] | package com.example.thomas.artifact;
import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v7.app.AppCompatActivity;
import android.text.TextUtils;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.V... | 5,321 | 0.61605 | 0.615862 | 167 | 30.868263 | 24.096252 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.580838 | false | false | 3 |
3abbdda318ba060394fbbf6864269ad572156ac5 | 28,827,820,496,302 | 3032edbc7a7077418cc4e43d15971ff993613284 | /com-xyf-service/src/main/java/com/xyf/service/AdminService.java | 0f119dc6a9d3f76abf6f52897d140ee173c66cdb | [] | no_license | RAOE/RunnerManager | https://github.com/RAOE/RunnerManager | 13bdf7a933fa6746a919cf892d66f970f9201819 | 2e5777ad89f55501e3e43a67d2054664909196a6 | refs/heads/master | 2022-12-26T04:45:15.154000 | 2021-12-13T05:20:32 | 2021-12-13T05:20:32 | 127,129,249 | 294 | 34 | null | false | 2022-12-16T09:45:08 | 2018-03-28T11:20:12 | 2022-11-17T01:22:43 | 2022-12-16T09:45:07 | 71,200 | 181 | 33 | 17 | Java | false | false | package com.xyf.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.xyf.mapper.AdminMapper;
import com.xyf.mapper.UserMapper;
import com.xyf.pojo.Admin;
import com.xyf.utils.CommonUtils;
import redis.clients.jedis.P... | UTF-8 | Java | 1,120 | java | AdminService.java | Java | [
{
"context": "\n \tadmin.setName(name);\n \tadmin.setPassword(password);\n admin=selectOne(admin);\n \tif(admin!=",
"end": 853,
"score": 0.9925196170806885,
"start": 845,
"tag": "PASSWORD",
"value": "password"
}
] | null | [] | package com.xyf.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.xyf.mapper.AdminMapper;
import com.xyf.mapper.UserMapper;
import com.xyf.pojo.Admin;
import com.xyf.utils.CommonUtils;
import redis.clients.jedis.P... | 1,122 | 0.650278 | 0.650278 | 59 | 17.271187 | 17.188713 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.915254 | false | false | 3 |
c060f04c81409094719097eeef6bdff91e8116f9 | 24,498,493,483,506 | 4e6a1c69b4c1b2481ad356e4a30f46dd9b065f70 | /com/peter/algo/level1test/MultipleTest.java | 3debbb6331942547462a9a43df562a31103b2d88 | [] | no_license | peter0618/Programmers | https://github.com/peter0618/Programmers | 59c503792255608b0ae073d00c26d576f2462067 | 91a60cc4683ed454d558536973e8e5f52727022c | refs/heads/master | 2020-08-17T20:32:03.985000 | 2020-07-02T14:08:03 | 2020-07-02T14:08:03 | 215,708,761 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.peter.algo.level1test;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test;
import com.peter.algo.level1.Multiple;
class MultipleTest {
@Test
void testSolution1() {
Multiple multiple = new Multiple();
assertArrayEquals(
new int[] {5, 10},
multiple.solut... | UTF-8 | Java | 718 | java | MultipleTest.java | Java | [] | null | [] | package com.peter.algo.level1test;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Test;
import com.peter.algo.level1.Multiple;
class MultipleTest {
@Test
void testSolution1() {
Multiple multiple = new Multiple();
assertArrayEquals(
new int[] {5, 10},
multiple.solut... | 718 | 0.632312 | 0.584958 | 44 | 15.318182 | 16.074787 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.113636 | false | false | 3 |
1ea69e4c167b2f50aa9154fcfc6654650912d13f | 747,324,329,929 | dac8684cd73a8bbab99ec9cd8a21a19e1a48a2cb | /online-store/src/main/java/com/ztgg/ecommerce/dao/ProductImgDao.java | 122ded62e6656f874b31f335aea2581b258c2c42 | [] | no_license | aaronyan0328/e-commerce-project | https://github.com/aaronyan0328/e-commerce-project | 4c1947294ead9b1c58f23487dd05b4da027c74b6 | 954316b49b67a5ebb2e12075ca71d7843f478ec9 | refs/heads/main | 2023-02-22T07:26:07.111000 | 2021-01-25T22:01:41 | 2021-01-25T22:01:41 | 311,533,230 | 1 | 0 | null | true | 2020-11-10T03:21:30 | 2020-11-10T03:21:30 | 2020-10-20T02:25:33 | 2020-10-20T02:25:30 | 0 | 0 | 0 | 0 | null | false | false | package com.ztgg.ecommerce.dao;
import java.util.List;
import com.ztgg.ecommerce.entity.ProductImg;
public interface ProductImgDao {
/**
* this function returns a list of ProductImg
* @return ProductImgList
*/
List<ProductImg> queryProductImg();
}
| UTF-8 | Java | 259 | java | ProductImgDao.java | Java | [] | null | [] | package com.ztgg.ecommerce.dao;
import java.util.List;
import com.ztgg.ecommerce.entity.ProductImg;
public interface ProductImgDao {
/**
* this function returns a list of ProductImg
* @return ProductImgList
*/
List<ProductImg> queryProductImg();
}
| 259 | 0.752896 | 0.752896 | 13 | 18.923077 | 17.255819 | 46 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.692308 | false | false | 3 |
37084ebe53efe64c46f99a6d43204702aa340d54 | 26,757,646,280,340 | 9a52fe3bcdd090a396e59c68c63130f32c54a7a8 | /sources/com/applovin/impl/adview/C0887r.java | bb63abac7068e7c16406d029070363d844bb8071 | [] | no_license | mzkh/LudoKing | https://github.com/mzkh/LudoKing | 19d7c76a298ee5bd1454736063bc392e103a8203 | ee0d0e75ed9fa8894ed9877576d8e5589813b1ba | refs/heads/master | 2022-04-25T06:08:41.916000 | 2020-04-14T17:00:45 | 2020-04-14T17:00:45 | 255,670,636 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.applovin.impl.adview;
import android.graphics.PointF;
import android.net.Uri;
import android.os.Bundle;
import com.applovin.impl.p005a.C0769a;
import com.applovin.impl.p005a.C0769a.C0773c;
import com.applovin.impl.p005a.C0776d;
import com.applovin.impl.p005a.C0780g;
import com.applovin.impl.p005a.C0781h;
i... | UTF-8 | Java | 5,635 | java | C0887r.java | Java | [] | null | [] | package com.applovin.impl.adview;
import android.graphics.PointF;
import android.net.Uri;
import android.os.Bundle;
import com.applovin.impl.p005a.C0769a;
import com.applovin.impl.p005a.C0769a.C0773c;
import com.applovin.impl.p005a.C0776d;
import com.applovin.impl.p005a.C0780g;
import com.applovin.impl.p005a.C0781h;
i... | 5,635 | 0.566815 | 0.486779 | 183 | 29.792349 | 23.907621 | 174 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.606557 | false | false | 3 |
52db9e8ec280d6010b82c499421bc736336efab6 | 7,017,976,580,117 | 22f01e92ad3fb05d0b8439c86992e470b4a29d5c | /Java/javaWorkspace/com.ebroker.clientcima/src/test/java/com/ebroker/clientcima/fer.java | ad5ed6ac20f527182eda3e78ceb9175877515ed0 | [] | no_license | Ferangel/workspaceTest | https://github.com/Ferangel/workspaceTest | 9e71c4f51f848ebbd719ebb97ddb2ddfa88dea7c | 8588d92243bec229b361a7a4417b92ccbad52264 | refs/heads/master | 2020-06-19T18:35:12.019000 | 2020-04-27T09:20:38 | 2020-04-27T09:20:38 | 196,823,768 | 0 | 0 | null | false | 2021-03-31T22:32:24 | 2019-07-14T10:37:04 | 2020-04-27T09:20:12 | 2021-03-31T22:32:24 | 8,762 | 0 | 0 | 21 | Java | false | false | package com.ebroker.clientcima;
public class fer {
}
| UTF-8 | Java | 55 | java | fer.java | Java | [] | null | [] | package com.ebroker.clientcima;
public class fer {
}
| 55 | 0.745455 | 0.745455 | 5 | 10 | 12.537943 | 31 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.2 | false | false | 3 |
a90b9cba80fe26200e16e8b763d6d09502d2b0bf | 17,695,265,289,324 | 6ecf6ab6e7b1e398f2332db2eff97d950f5ef4c9 | /src/main/java/com/naown/aop/entity/LogEntity.java | 006354afd0173e5cefe8399425accc75b33e8772 | [] | no_license | naown/blog-vue | https://github.com/naown/blog-vue | 9dbb304a457c84eddab37e56cc4e68585caf7b2c | 7402be180588963e1601a7ff1fc9b0615b8492bb | refs/heads/main | 2023-03-31T01:25:52.317000 | 2021-03-31T09:09:38 | 2021-03-31T09:09:38 | 343,453,830 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.naown.aop.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.sql.Timestamp;
/**
* 对应sys_log... | UTF-8 | Java | 1,562 | java | LogEntity.java | Java | [
{
"context": "ava.sql.Timestamp;\n\n/**\n * 对应sys_log表\n * @author : chenjian\n * @since : 2021/2/21 1:30 周日\n **/\n@Data\n@AllArgs",
"end": 343,
"score": 0.9996680617332458,
"start": 335,
"tag": "USERNAME",
"value": "chenjian"
}
] | null | [] | package com.naown.aop.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.sql.Timestamp;
/**
* 对应sys_log... | 1,562 | 0.62804 | 0.620887 | 74 | 17.891891 | 14.585783 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.351351 | false | false | 3 |
69a8f5d36db16b4a4045059bfd3d2a6c939c89d0 | 11,158,325,095,170 | 92aa6cf7ce1b180a52c4fab6bdbae573763b6172 | /lorem-ipsum-jpa/src/test/java/br/com/delogic/jpasy/populator/ApiUsageTest.java | e4ae9c9c7bf7749ca6cef0d7f48fd54978b768f3 | [
"Apache-2.0"
] | permissive | celiosilva/jpasy | https://github.com/celiosilva/jpasy | 647fa803654c4d25e39f25adb5f9149dfdce3ce7 | b445b3b51ed757ae7798f1c04ac296f7fbed9d76 | refs/heads/master | 2020-06-01T09:29:38.074000 | 2013-12-12T12:52:51 | 2013-12-12T12:52:51 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.com.delogic.jpasy.populator;
import java.lang.reflect.Method;
import org.junit.Test;
import br.com.delogic.jpasy.populator.AttributeConfiguration;
import br.com.delogic.jpasy.populator.AttributeGenerator;
import br.com.delogic.jpasy.populator.AttributeGeneratorVarargs;
import br.com.delogic.jpasy.populato... | UTF-8 | Java | 1,800 | java | ApiUsageTest.java | Java | [
{
"context": "name\",\n\t\t\t\tnew AttributeGeneratorVarargs<String>(\"John\", \"Mary\", \"Paul\"));\n\n\t\tAttributeConfiguration con",
"end": 1608,
"score": 0.9997819066047668,
"start": 1604,
"tag": "NAME",
"value": "John"
},
{
"context": "\t\t\tnew AttributeGeneratorVarargs<String... | null | [] | package br.com.delogic.jpasy.populator;
import java.lang.reflect.Method;
import org.junit.Test;
import br.com.delogic.jpasy.populator.AttributeConfiguration;
import br.com.delogic.jpasy.populator.AttributeGenerator;
import br.com.delogic.jpasy.populator.AttributeGeneratorVarargs;
import br.com.delogic.jpasy.populato... | 1,800 | 0.733889 | 0.730556 | 64 | 27.125 | 23.241598 | 72 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.53125 | false | false | 3 |
576ff23cb41b3434c829b04e174bb953571518e9 | 9,577,777,099,364 | 3b481b302b02edf57b816acac9e5ff3b7ec602e2 | /src/com/google/android/gms/ads/internal/client/t.java | 003ef249557240bc51b4d9368faf554684f7ca39 | [] | no_license | reverseengineeringer/com.twitter.android | https://github.com/reverseengineeringer/com.twitter.android | 53338ae009b2b6aa79551a8273875ec3728eda99 | f834eee04284d773ccfcd05487021200de30bd1e | refs/heads/master | 2021-04-15T04:35:06.232000 | 2016-07-21T03:51:19 | 2016-07-21T03:51:19 | 63,835,046 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.google.android.gms.ads.internal.client;
import android.location.Location;
import android.os.Bundle;
import com.google.android.gms.internal.oi;
import java.util.ArrayList;
import java.util.List;
@oi
public final class t
{
private long a;
private Bundle b;
private int c;
private List<String> d;
pr... | UTF-8 | Java | 1,503 | java | t.java | Java | [] | null | [] | package com.google.android.gms.ads.internal.client;
import android.location.Location;
import android.os.Bundle;
import com.google.android.gms.internal.oi;
import java.util.ArrayList;
import java.util.List;
@oi
public final class t
{
private long a;
private Bundle b;
private int c;
private List<String> d;
pr... | 1,503 | 0.56487 | 0.557552 | 87 | 16.287355 | 13.990891 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.873563 | false | false | 3 |
d0469478068c03b028556ed196c8aa6bfbda8804 | 22,548,578,345,254 | 1a4f4de64cd0296ebf7461a80b45f590946e3328 | /src/services/ShopsService.java | b820bed2416da13b53bbb40628643d49237f68be | [] | no_license | jpmono416/Winedunk_CRUD_API | https://github.com/jpmono416/Winedunk_CRUD_API | d31fe663f614c4474c676bbfd6cb30377e2c4f64 | 540bc094cca8027ee5ceea130417042cee5089a2 | refs/heads/master | 2021-01-01T18:44:13.151000 | 2018-06-06T17:18:53 | 2018-06-06T17:18:53 | 98,418,027 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package services;
import java.util.List;
import javax.ejb.LocalBean;
import javax.ejb.Stateless;
import javax.persistence.Column;
import javax.persistence.EntityManager;
import javax.persistence.NoResultException;
import javax.persistence.PersistenceContext;
import javax.persistence.Query;
import models.tblShops;
@... | UTF-8 | Java | 3,184 | java | ShopsService.java | Java | [] | null | [] | package services;
import java.util.List;
import javax.ejb.LocalBean;
import javax.ejb.Stateless;
import javax.persistence.Column;
import javax.persistence.EntityManager;
import javax.persistence.NoResultException;
import javax.persistence.PersistenceContext;
import javax.persistence.Query;
import models.tblShops;
@... | 3,184 | 0.625628 | 0.620603 | 98 | 31.5 | 31.620275 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.183674 | false | false | 3 |
255a166186614b729da3e6481ea4ee6a110790db | 26,577,257,677,181 | 9b78f481f92faa20ea9ed5b574cb51a5cac0c58f | /MyDiary_MVP/app/src/main/java/com/example/my/mydiary/eventbus/SecondActivity.java | ed6ca432afe4f14e96f74a5680df0bf822ed43a9 | [] | no_license | miaoyungsjm/MyDiary | https://github.com/miaoyungsjm/MyDiary | f7a00ed5c8c35263f01c1ca024d0933ae8ebee7b | e9698a83d3104cdd59988ce556fa12ee173dd595 | refs/heads/master | 2020-03-22T14:06:32.018000 | 2018-08-25T05:36:20 | 2018-08-25T05:36:20 | 137,372,401 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.my.mydiary.eventbus;
import android.app.Activity;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import com.example.my.mydiary.R;
import org.greenrobot.eventbus.EventBus;
/**
* @author ggz
*... | UTF-8 | Java | 1,715 | java | SecondActivity.java | Java | [
{
"context": " org.greenrobot.eventbus.EventBus;\n\n/**\n * @author ggz\n * @date 18年8月13日\n */\n\npublic class SecondActivit",
"end": 317,
"score": 0.9996639490127563,
"start": 314,
"tag": "USERNAME",
"value": "ggz"
}
] | null | [] | package com.example.my.mydiary.eventbus;
import android.app.Activity;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import com.example.my.mydiary.R;
import org.greenrobot.eventbus.EventBus;
/**
* @author ggz
*... | 1,715 | 0.626097 | 0.620246 | 67 | 24.507463 | 21.511797 | 101 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.492537 | false | false | 3 |
7d086e57f1c187a8b9bfaa840ff54174ad7d5368 | 19,559,281,093,303 | bd20ba6a8861abed1abe72e6c04dc8bde3fe53f0 | /src/main/java/com/djdu/address/entity/Address.java | 8bee8025aad4864ad5a006451bdb5aef9212bfdf | [] | no_license | MRDJDU/MT | https://github.com/MRDJDU/MT | b8999353c258b628a6377e6e0765afd5aed1ff4f | 3003751d064382be9d2b2784c0492a04311495a4 | refs/heads/master | 2020-04-22T03:02:32.792000 | 2019-05-10T17:28:23 | 2019-05-10T17:28:23 | 170,071,856 | 8 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.djdu.address.entity;
import com.djdu.common.base.BaseEmtity2;
import com.djdu.user.entity.User;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
import javax.persistence.*;
/**
* @ClassName Address
* @Description TODO 用于存储用户填写的收货地址
* @Author DJDU
* @Date 2019/2/20 15:... | UTF-8 | Java | 1,009 | java | Address.java | Java | [
{
"context": "ress\n * @Description TODO 用于存储用户填写的收货地址\n * @Author DJDU\n * @Date 2019/2/20 15:29\n * @Version 1.0\n **/\n\n@D",
"end": 297,
"score": 0.9962736964225769,
"start": 293,
"tag": "USERNAME",
"value": "DJDU"
}
] | null | [] | package com.djdu.address.entity;
import com.djdu.common.base.BaseEmtity2;
import com.djdu.user.entity.User;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
import javax.persistence.*;
/**
* @ClassName Address
* @Description TODO 用于存储用户填写的收货地址
* @Author DJDU
* @Date 2019/2/20 15:... | 1,009 | 0.717084 | 0.700762 | 44 | 19.886364 | 18.826017 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.363636 | false | false | 3 |
35e508ac71839d32c37559a5ed1fe0e834401292 | 9,783,935,538,895 | 8a4d668b93783a78ab26bdf76fa36b38531ee594 | /DE2.java | 7fa70eeb7b4743c4ca7ffeed1834da90578ada9d | [] | no_license | 2031TeamA/sonar-sensing | https://github.com/2031TeamA/sonar-sensing | b533279bc901a3dd6629f2ed9505ea19332b8bee | 8d870526a80b59750d4f3bc17ca4be56cd8688ac | refs/heads/master | 2016-09-05T22:32:23.266000 | 2015-01-21T19:59:26 | 2015-01-21T19:59:26 | 26,565,134 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pack;
import java.util.ArrayList;
public class DE2 {
int x, y, x1, y1, x2, y2, deltaX, deltaY;
public DE2(){
}
public ArrayList <String> navigateEverywhere(Point start, ArrayList<Point> points){
ArrayList <String> directions = new ArrayList <String> ();
for (Point point : points){
direction... | UTF-8 | Java | 3,935 | java | DE2.java | Java | [] | null | [] | package pack;
import java.util.ArrayList;
public class DE2 {
int x, y, x1, y1, x2, y2, deltaX, deltaY;
public DE2(){
}
public ArrayList <String> navigateEverywhere(Point start, ArrayList<Point> points){
ArrayList <String> directions = new ArrayList <String> ();
for (Point point : points){
direction... | 3,935 | 0.607624 | 0.590343 | 181 | 20.740332 | 19.928713 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.546961 | false | false | 3 |
950c6555cc164db5f49d2cf3f86e37cbde51d3b7 | 22,548,578,348,992 | ff0d562a9f75d1eaebc066a45248adb19262f8be | /src/main/java/co/realtime/storage/annotations/StorageProperty.java | a749c0778230cceb362151ba5df2062cf48ced25 | [] | no_license | joaoantunes87/OsmRealtimeStorage-Java | https://github.com/joaoantunes87/OsmRealtimeStorage-Java | a13b173ca8e7a7b61fdd698f0b1048263dd1809a | f4242421a2b34294934e6de54ab631aec3356ceb | refs/heads/master | 2020-05-28T04:34:06.359000 | 2015-07-13T08:57:07 | 2015-07-13T08:57:07 | 17,664,745 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package co.realtime.storage.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* The Interface StorageProperty.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @int... | UTF-8 | Java | 702 | java | StorageProperty.java | Java | [] | null | [] | package co.realtime.storage.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* The Interface StorageProperty.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @int... | 702 | 0.675214 | 0.675214 | 33 | 20.272728 | 16.63744 | 44 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.30303 | false | false | 3 |
e7c1994af6d9ee0ac716e1324799f3585d7b7c84 | 11,089,605,615,854 | 4c82b5b72421da0f555f8562c96c88b6e9ea71c0 | /CollegeScoring/src/collegescoring/ChartLine.java | d93376889d0301b41b5685fb01ede2374b325b1c | [] | no_license | AnushkaDeshmukh/Oracle-Project | https://github.com/AnushkaDeshmukh/Oracle-Project | 2ef83bfb86b9f8c4e82b38c79d5f734c47e081b0 | 7c046707558c73f9e5e4e9d8196a438602e9fe60 | refs/heads/master | 2021-01-01T16:55:44.602000 | 2014-08-06T23:59:01 | 2014-08-06T23:59:01 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright (c) 2008, 2012 Oracle and/or its affiliates.
* All rights reserved. Use is subject to license terms.
*
* This file is available and licensed under the following license:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following... | UTF-8 | Java | 4,144 | java | ChartLine.java | Java | [] | null | [] | /*
* Copyright (c) 2008, 2012 Oracle and/or its affiliates.
* All rights reserved. Use is subject to license terms.
*
* This file is available and licensed under the following license:
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following... | 4,144 | 0.725869 | 0.719112 | 93 | 43.559139 | 30.682369 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.731183 | false | false | 3 |
577381a3928d73898114f265c5a941b10615c8aa | 24,567,212,967,314 | 23bf9733af620b523072c155586fd1d4c809c88c | /app/src/main/java/com/neprofinishedgood/qualitycheck/model/RejectedInput.java | d05e2611e177109b1e036b7f0e6184ffaa5250d2 | [] | no_license | kartikpandey/NeproFGProject | https://github.com/kartikpandey/NeproFGProject | 277f5326ee4d7363b0e63a36bc6c8c83e7654372 | 855cb95e3af39f99d1bb6c8439ae2b0b11b1264e | refs/heads/master | 2020-11-27T00:01:42.340000 | 2020-10-17T17:46:48 | 2020-10-17T17:46:48 | 229,236,995 | 0 | 0 | null | false | 2021-01-01T06:23:24 | 2019-12-20T09:50:17 | 2020-12-22T13:23:24 | 2021-01-01T06:23:23 | 1,168 | 0 | 0 | 0 | Java | false | false | package com.neprofinishedgood.qualitycheck.model;
public class RejectedInput {
String StickerNo;
String UserId;
String Shift;
String Quantity;
String Reason;
String ReasonName;
String IsKg;
String WorkOrderNo;
public RejectedInput(String stickerNo, String userId, String quantity, S... | UTF-8 | Java | 1,794 | java | RejectedInput.java | Java | [] | null | [] | package com.neprofinishedgood.qualitycheck.model;
public class RejectedInput {
String StickerNo;
String UserId;
String Shift;
String Quantity;
String Reason;
String ReasonName;
String IsKg;
String WorkOrderNo;
public RejectedInput(String stickerNo, String userId, String quantity, S... | 1,794 | 0.609253 | 0.609253 | 87 | 19.620689 | 21.078529 | 157 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.45977 | false | false | 3 |
364c646875044e33688f1bdbe6f8a1d1877431e8 | 472,446,427,540 | a063dcf701a8f049292667c2d525b9335d54b079 | /09_10/lesson/jw05/part01/CookieWriterToClient.java | 6323c0b162e7414fbabfb5c51908753dcf7e33bc | [] | no_license | ohchangyeol/bitcamp-theory-study | https://github.com/ohchangyeol/bitcamp-theory-study | cac6bc421ed57f740a5d7d170650a7cc0522b97e | c6cbee035ee98f983a6e55128d3f2ea44f4135bb | refs/heads/main | 2023-09-05T14:34:52.779000 | 2021-10-17T09:52:22 | 2021-10-17T09:52:22 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package jw05;
import java.io.IOException;
import java.io.PrintWriter;
import java.net.URLEncoder;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servl... | UHC | Java | 1,345 | java | CookieWriterToClient.java | Java | [] | null | [] | package jw05;
import java.io.IOException;
import java.io.PrintWriter;
import java.net.URLEncoder;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servl... | 1,345 | 0.723887 | 0.716599 | 40 | 29.9 | 24.039343 | 105 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.65 | false | false | 3 |
4ad056c250d92247e58ffaaef94337307ea2f43b | 24,910,810,347,590 | 93b210724d5e1b9a1b2b89c64c12d8582135f2aa | /EliteCSM-new/Applications/netvertex/testsrc/com/elitecore/netvertex/core/conf/impl/NetvertexServerInstanceFactoryTest.java | 2d35f34a93516af042a7f6e1cf470853be1e4632 | [] | no_license | sunilkumarpvns/newbrs | https://github.com/sunilkumarpvns/newbrs | e6b205a41898b25203f34a902d1334a83baafb09 | 38e8c22ea5deaee2e46938970be405a307918ce7 | refs/heads/master | 2021-06-17T08:45:52.964000 | 2019-08-21T02:58:00 | 2019-08-21T02:58:00 | 203,326,404 | 0 | 0 | null | false | 2021-05-12T00:24:10 | 2019-08-20T07:47:41 | 2019-08-21T03:00:28 | 2021-05-12T00:24:10 | 252,939 | 0 | 0 | 10 | Java | false | false | package com.elitecore.netvertex.core.conf.impl;
import com.elitecore.commons.logging.LogLevel;
import com.elitecore.corenetvertex.constants.RollingType;
import com.elitecore.corenetvertex.constants.TimeBasedRollingUnit;
import com.elitecore.corenetvertex.sm.serverinstance.ServerInstanceData;
import com.elitecore.coren... | UTF-8 | Java | 8,434 | java | NetvertexServerInstanceFactoryTest.java | Java | [] | null | [] | package com.elitecore.netvertex.core.conf.impl;
import com.elitecore.commons.logging.LogLevel;
import com.elitecore.corenetvertex.constants.RollingType;
import com.elitecore.corenetvertex.constants.TimeBasedRollingUnit;
import com.elitecore.corenetvertex.sm.serverinstance.ServerInstanceData;
import com.elitecore.coren... | 8,434 | 0.746265 | 0.743894 | 177 | 46.649719 | 57.436394 | 204 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.615819 | false | false | 3 |
b449ec993a22b63d12eb573814bd793ba0ff9ee5 | 16,595,753,633,834 | 75b43260f94287bd6162f706e645db2e7f7b3804 | /app/src/main/java/com/chartier/virginie/mynews/model/Response.java | 4e83326af002b19c5b1ac44ede7e1fce669e8aa2 | [] | no_license | Taiviv/MyNews | https://github.com/Taiviv/MyNews | f5611e00a4c760d2cc2c0acc1ea16f05e3ffdd58 | 9a27e0cf99ea3cf390b1bf7f25e212f4fdb789e7 | refs/heads/master | 2020-03-27T13:59:37.033000 | 2019-03-13T22:00:52 | 2019-03-13T22:00:52 | 146,600,399 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.chartier.virginie.mynews.model;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/**
* Created by Virginie Chartier alias Taiviv on 11/11/2018.
*/
public class Response {
// Serialized JSON name
@SerializedName("docs")
@Exp... | UTF-8 | Java | 575 | java | Response.java | Java | [
{
"context": "edName;\n\nimport java.util.List;\n\n/**\n * Created by Virginie Chartier alias Taiviv on 11/11/2018.\n */\npublic class Response {",
"end": 205,
"score": 0.9992852210998535,
"start": 182,
"tag": "NAME",
"value": "Virginie Chartier alias"
},
{
"context": "l.List;\n\n/**... | null | [] | package com.chartier.virginie.mynews.model;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/**
* Created by <NAME> Taiviv on 11/11/2018.
*/
public class Response {
// Serialized JSON name
@SerializedName("docs")
@Expose
private L... | 558 | 0.601739 | 0.587826 | 30 | 18.166666 | 17.295631 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.233333 | false | false | 3 |
262a51acbc2e8f2aca5bf79414702ac65d86e85d | 16,587,163,767,588 | 03dfcecb32f68604bb114138a59757211d71f897 | /0007.整数反转.java | 32a5881ecfce4bd65c5a3c57e0af93cc16b8cc49 | [] | no_license | kinwgze/LeetCode | https://github.com/kinwgze/LeetCode | 5b5e90429584790a317833fcadca20a4ad995d33 | 2c79fc38358f13e72524770f7191292b2a15750c | refs/heads/master | 2022-12-26T11:04:52.455000 | 2020-10-08T02:04:12 | 2020-10-08T02:04:12 | 282,557,172 | 2 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | //思路:我们可以一次构建反转整数的一位数字。
//在这样做的时候,我们可以预先检查向原整数附加另一位数字是否会导致溢出。
class Solution {
public int reverse(int x) {
int rev = 0;
while (x != 0) {
int pop = x % 10;
x /= 10;
if (rev > Integer.MAX_VALUE/10 || (rev == Integer.MAX_VALUE / 10 && pop > 7)) return 0;
... | UTF-8 | Java | 1,647 | java | 0007.整数反转.java | Java | [] | null | [] | //思路:我们可以一次构建反转整数的一位数字。
//在这样做的时候,我们可以预先检查向原整数附加另一位数字是否会导致溢出。
class Solution {
public int reverse(int x) {
int rev = 0;
while (x != 0) {
int pop = x % 10;
x /= 10;
if (rev > Integer.MAX_VALUE/10 || (rev == Integer.MAX_VALUE / 10 && pop > 7)) return 0;
... | 1,647 | 0.506264 | 0.488578 | 45 | 29.177778 | 27.113989 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.533333 | false | false | 3 |
65cdb5f67f72886488a3231cd555e9a91c9b167f | 4,681,514,385,880 | b5d2af5a35ded2c38c05533e8d0978e332a75176 | /11 - cookies/PrimerCop.java | 96b6e779dfebfcbd6af047c30cc6a07448d6f835 | [] | no_license | sergigrau/DAWM07UF2-1-Servlets-exercicis | https://github.com/sergigrau/DAWM07UF2-1-Servlets-exercicis | b960f76af88eb9e5f34e7a304dc18e7a9bcdd9e8 | 602186f015c7534b92aff8bad0314931d366e116 | refs/heads/master | 2021-01-10T04:56:16.620000 | 2017-03-23T11:40:11 | 2017-03-23T11:40:11 | 52,009,220 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package edu.fje.daw2;
import java.io.*;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.*;
/**
* Servlet que treballa amb cookies. Mostra un missatge de benvinguda si és el
* primer cop, en cas contrari mostra una sèrie d'opcions
* @author Sergi Grau
* ... | UTF-8 | Java | 1,472 | java | PrimerCop.java | Java | [
{
"context": "cas contrari mostra una sèrie d'opcions\n * @author Sergi Grau\n * @version 2.0 7/11/2013\n */\n@WebServlet(\"/cooki",
"end": 316,
"score": 0.9998683929443359,
"start": 306,
"tag": "NAME",
"value": "Sergi Grau"
}
] | null | [] | package edu.fje.daw2;
import java.io.*;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.*;
/**
* Servlet que treballa amb cookies. Mostra un missatge de benvinguda si és el
* primer cop, en cas contrari mostra una sèrie d'opcions
* @author <NAME>
* @ver... | 1,468 | 0.668482 | 0.653506 | 49 | 28.979591 | 21.602617 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.326531 | false | false | 3 |
fb448cfa9ec3a7caec2c92bb07d94c063c3379cb | 14,328,010,936,497 | a8b41ccd2a28e11c703195c3668d20be06f7ab43 | /bridgepattern/src/main/java/bupt/lth/Client_bridge.java | 20761892b93ef45e10e034ad1b89e3aeddaef416 | [] | no_license | ShelahLi/DesignPattern | https://github.com/ShelahLi/DesignPattern | f2ca776fc2dc558b5b767c5ccc9b8a4a9c785897 | d164bafb8ab19121fc6ea7aa613690c9eec57b98 | refs/heads/master | 2020-05-24T07:37:55.651000 | 2019-05-27T14:25:59 | 2019-05-27T14:25:59 | 187,164,373 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package bupt.lth;
public class Client_bridge {
public static void main(String[] args) {
Image image;
ImageImp imageImp;
image = (Image) XMLUtil_bridge.getBean("image");
imageImp = (ImageImp) XMLUtil_bridge.getBean("os");
image.setImageImp(imageImp);
image.parseFile("... | UTF-8 | Java | 336 | java | Client_bridge.java | Java | [] | null | [] |
package bupt.lth;
public class Client_bridge {
public static void main(String[] args) {
Image image;
ImageImp imageImp;
image = (Image) XMLUtil_bridge.getBean("image");
imageImp = (ImageImp) XMLUtil_bridge.getBean("os");
image.setImageImp(imageImp);
image.parseFile("... | 336 | 0.607143 | 0.607143 | 12 | 26.916666 | 18.909691 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.583333 | false | false | 3 |
73ad05937bd3860f58a06bc700599830c114abcc | 1,194,000,915,860 | feac9c2b46ffc1284780bacbf888dae9d82122f1 | /spring_erp_myoffice(지승민대리님)/src/main/java/com/erp/myoffice/project/service/ProjectService.java | 391a4248d9d09e2f51e162897f434fd861d8e90d | [] | no_license | FlashBack102/MyOffice | https://github.com/FlashBack102/MyOffice | bed7680c5d59e6cf58c8c5b7a188b92f3edcb96a | 7c748c9f9b512cbae8e161710d72316dc6cf55d1 | refs/heads/master | 2022-12-28T11:48:59.263000 | 2020-10-05T03:47:56 | 2020-10-05T03:47:56 | 289,822,038 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.erp.myoffice.project.service;
import javax.servlet.http.HttpServletRequest;
import org.springframework.ui.Model;
public interface ProjectService {
// 팀장 정보 가져오기
public void getMasterInfo(HttpServletRequest req, Model model);
// 팀원 리스트 가져오기
public void getTeamMemberList(HttpServletRequest req, Mod... | UTF-8 | Java | 854 | java | ProjectService.java | Java | [] | null | [] | package com.erp.myoffice.project.service;
import javax.servlet.http.HttpServletRequest;
import org.springframework.ui.Model;
public interface ProjectService {
// 팀장 정보 가져오기
public void getMasterInfo(HttpServletRequest req, Model model);
// 팀원 리스트 가져오기
public void getTeamMemberList(HttpServletRequest req, Mod... | 854 | 0.771505 | 0.771505 | 29 | 24.655172 | 25.807344 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.310345 | false | false | 3 |
dadd7bb420976b81c1b11b56d56d2f51f698c9ee | 21,715,354,686,085 | e16439e057cb101766cde996d6165f5c4b8d4813 | /HisCinemaDNS.java | 5c560acd544fc7135707694eff040e71863ba171 | [] | no_license | marcelpierres/Content-Distribution-Network | https://github.com/marcelpierres/Content-Distribution-Network | 2ed8e67e8d1e47e96a6085fbf9a459ae1f43a9d8 | 3fd5d2342e25036920274942d71f82320b51a7d5 | refs/heads/master | 2020-03-20T03:50:11.724000 | 2018-06-13T04:21:31 | 2018-06-13T04:21:31 | 137,161,109 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package CPS706;
import java.io.*;
import java.net.*;
class HisCinemaDNS
{
public static void main(String args[]) throws Exception
{
//===============DNS================
//=====================================
DatagramSocket serverSocket = new DatagramSocket(9877); // set port
... | UTF-8 | Java | 1,591 | java | HisCinemaDNS.java | Java | [] | null | [] | package CPS706;
import java.io.*;
import java.net.*;
class HisCinemaDNS
{
public static void main(String args[]) throws Exception
{
//===============DNS================
//=====================================
DatagramSocket serverSocket = new DatagramSocket(9877); // set port
... | 1,591 | 0.571339 | 0.561911 | 32 | 48.75 | 44.17437 | 162 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.78125 | false | false | 3 |
11fb695128105dc96e25fe7558d2f1a5d0213247 | 137,438,987,785 | f863c1e68a2215de65360089bbdd797d2bf615a3 | /src/main/java/ca/arsenii/plan4me/to/PlanTo.java | bfccd4e33a102770954e88ce2a959fa3b7d8caea | [] | no_license | Arsenii26/plan4me | https://github.com/Arsenii26/plan4me | 89ed01f1639aee4c21e84707ba68fdfee1b24a48 | 9d4ad8a4023c4760a8b7990b647aed2758798771 | refs/heads/master | 2022-11-23T05:19:56.988000 | 2020-02-17T20:57:53 | 2020-02-17T20:57:53 | 203,691,999 | 0 | 0 | null | false | 2022-11-16T12:24:52 | 2019-08-22T01:35:00 | 2020-10-27T16:41:26 | 2022-11-16T12:24:49 | 12,737 | 0 | 0 | 8 | Java | false | false | package ca.arsenii.plan4me.to;
import java.time.LocalDateTime;
import java.util.Objects;
public class PlanTo extends BaseTo{
private LocalDateTime dateTime;
private String plan;
public PlanTo(Integer id, LocalDateTime dateTime, String plan) {
super(id);
this.dateTime = dateTime;
... | UTF-8 | Java | 1,197 | java | PlanTo.java | Java | [] | null | [] | package ca.arsenii.plan4me.to;
import java.time.LocalDateTime;
import java.util.Objects;
public class PlanTo extends BaseTo{
private LocalDateTime dateTime;
private String plan;
public PlanTo(Integer id, LocalDateTime dateTime, String plan) {
super(id);
this.dateTime = dateTime;
... | 1,197 | 0.538847 | 0.538012 | 54 | 21.166666 | 18.810703 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 3 |
6f358fad1fe20e36f0cf9c3cc095de1cee3991c0 | 32,203,664,814,901 | 718e4efed4ee2cb687003550e5f4b1179993f1c0 | /src/main/java/com/odisseia/note/controller/UserController.java | 1aa5474e06d921374bca905db2ad118ad7bf8dd2 | [] | no_license | ArthurPimentabraga/note-api | https://github.com/ArthurPimentabraga/note-api | 6b2cc88d6d0f62f11821d35537531f1d0468df4d | 8556c577285d327902a877c35f583a1f75e1201a | refs/heads/master | 2022-04-18T22:45:22.510000 | 2020-04-21T23:42:57 | 2020-04-21T23:42:57 | 257,742,070 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.odisseia.note.controller;
import com.odisseia.note.domain.User;
import com.odisseia.note.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annota... | UTF-8 | Java | 992 | java | UserController.java | Java | [] | null | [] | package com.odisseia.note.controller;
import com.odisseia.note.domain.User;
import com.odisseia.note.service.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annota... | 992 | 0.741935 | 0.740927 | 35 | 27.342857 | 20.903784 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.457143 | false | false | 3 |
2898e8638832c495bb6029e3c715a34685b5a032 | 12,541,304,572,109 | 920ff90d92a46d0e1af45a6dcab19a27f759a3b0 | /src/main/java/com/dg/banco/bancodg/service/asesor/AsesorService.java | 7b28f854ef157c5aeb9313c912fa67f0f4a7896b | [] | no_license | geedia/banco-dg | https://github.com/geedia/banco-dg | 057d2c98777d178902cad8636e9b57dc802762e2 | a9167b895156ade287b09c7d4e8d97c91cd60cb4 | refs/heads/master | 2020-04-16T00:39:37.507000 | 2019-01-13T06:02:39 | 2019-01-13T06:02:39 | 165,146,647 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dg.banco.bancodg.service.asesor;
import java.util.List;
import java.util.Optional;
import com.dg.banco.bancodg.entity.asesor.Asesor;
/*
* Interfaz para el servicio de asesor
*/
public interface AsesorService {
public List<Asesor> listarAsesores();
public void guardarAsesor(Asesor asesor);
public voi... | UTF-8 | Java | 399 | java | AsesorService.java | Java | [] | null | [] | package com.dg.banco.bancodg.service.asesor;
import java.util.List;
import java.util.Optional;
import com.dg.banco.bancodg.entity.asesor.Asesor;
/*
* Interfaz para el servicio de asesor
*/
public interface AsesorService {
public List<Asesor> listarAsesores();
public void guardarAsesor(Asesor asesor);
public voi... | 399 | 0.774436 | 0.774436 | 17 | 22.470589 | 19.069895 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.764706 | false | false | 3 |
12a93318d911b7f1a8437e9c69d655016c7ce8e6 | 28,252,294,912,823 | 6c446c51f554b94687a584997da517e73b4d64f7 | /MapboxGLAndroidSDK/src/main/java/com/mapbox/mapboxsdk/maps/Style.java | d7cea7508ccb6e7e5698d25e7d4325d2fcab66d7 | [
"MIT",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause"
] | permissive | mapbox/mapbox-gl-native-android | https://github.com/mapbox/mapbox-gl-native-android | ffb6e9004de088445f4752fbfaabe61d35b42f52 | 7f03a710afbd714368084e4b514d3880bad11c27 | refs/heads/main | 2023-08-24T03:53:17.293000 | 2023-04-20T10:37:35 | 2023-04-20T10:37:35 | 213,687,575 | 232 | 142 | NOASSERTION | false | 2023-04-20T10:37:36 | 2019-10-08T15:52:14 | 2023-04-17T07:13:12 | 2023-04-20T10:37:35 | 9,530 | 207 | 114 | 147 | Java | false | false | package com.mapbox.mapboxsdk.maps;
import android.graphics.Bitmap;
import android.graphics.drawable.Drawable;
import android.os.AsyncTask;
import android.util.DisplayMetrics;
import android.util.Pair;
import com.mapbox.mapboxsdk.constants.MapboxConstants;
import com.mapbox.mapboxsdk.style.layers.Layer;
import com.map... | UTF-8 | Java | 49,852 | java | Style.java | Java | [] | null | [] | package com.mapbox.mapboxsdk.maps;
import android.graphics.Bitmap;
import android.graphics.drawable.Drawable;
import android.os.AsyncTask;
import android.util.DisplayMetrics;
import android.util.Pair;
import com.mapbox.mapboxsdk.constants.MapboxConstants;
import com.mapbox.mapboxsdk.style.layers.Layer;
import com.map... | 49,852 | 0.652572 | 0.651809 | 1,499 | 32.25684 | 30.113064 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.414943 | false | false | 3 |
15cfc81cf5d8981dfc5f9974c7c145b636180b8f | 25,074,019,119,187 | 9e681bfb6b2d24c9ae5a733a12c661788e4b6876 | /pointoffer/src/org/dalvin/chapter7/LowestCommonParent_50.java | 12c0526eaa1542e1ed493c28401e1960eb16a89b | [] | no_license | qiudeyang/pointoffer | https://github.com/qiudeyang/pointoffer | cb83789c99878fb335a3075145a27d5eea9c076b | cf7072f8189a0cb2cad907483bcfb4d5666c7215 | refs/heads/master | 2021-01-12T09:07:59.098000 | 2017-04-27T09:33:18 | 2017-04-27T09:33:18 | 76,771,793 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.dalvin.chapter7;
import org.dalvin.chapter2.TreeNode;
import java.util.Stack;
/**
* Created by qiudeyang on 04/02/17.
*/
public class LowestCommonParent_50 {
// 遍历方式
public static TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
if (root == null || p == null || ... | UTF-8 | Java | 2,610 | java | LowestCommonParent_50.java | Java | [
{
"context": "eNode;\n\nimport java.util.Stack;\n\n/**\n * Created by qiudeyang on 04/02/17.\n */\npublic class LowestCommonParent_",
"end": 120,
"score": 0.999283492565155,
"start": 111,
"tag": "USERNAME",
"value": "qiudeyang"
}
] | null | [] | package org.dalvin.chapter7;
import org.dalvin.chapter2.TreeNode;
import java.util.Stack;
/**
* Created by qiudeyang on 04/02/17.
*/
public class LowestCommonParent_50 {
// 遍历方式
public static TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
if (root == null || p == null || ... | 2,610 | 0.553333 | 0.545 | 74 | 31.432432 | 24.867802 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.864865 | false | false | 3 |
c5a0bec9e9c2e0675b52d5a7cb352013998025d2 | 4,861,903,025,182 | 143c21cd79bcd24f91a5d3344e2bc23f350a2e21 | /sdk/src/test/java/com/google/cloud/dataflow/sdk/PipelineTest.java | a61fad9ccaff9dd7eaae270e154b9c1078eaaccf | [
"Apache-2.0"
] | permissive | haonature888/DataflowJavaSDK | https://github.com/haonature888/DataflowJavaSDK | 51515356fb9f581ae372750022a40acf6bcb18f6 | e6252c0e9191aef4c8bea98bdeb8340dd09d9695 | refs/heads/master | 2021-01-18T11:45:53.650000 | 2015-04-16T21:51:54 | 2015-04-16T21:51:54 | 34,178,376 | 2 | 0 | null | true | 2015-04-18T18:51:58 | 2015-04-18T18:51:58 | 2015-04-18T18:51:48 | 2015-04-16T21:51:56 | 3,642 | 0 | 0 | 0 | null | null | null | /*
* Copyright (C) 2015 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... | UTF-8 | Java | 3,626 | java | PipelineTest.java | Java | [] | null | [] | /*
* Copyright (C) 2015 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... | 3,626 | 0.727523 | 0.724766 | 105 | 33.533333 | 26.246475 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.380952 | false | false | 3 |
78959664eef8140ca4ded92a15e720638d1ea67a | 11,536,282,192,754 | 0e9c6f5d27bdf3b54fc6e1f10bd371ead4a914c3 | /mysystem/src/main/java/com/graduation/controller/LoginController.java | 651fa0481cead75af0905109c32910aac95c0339 | [] | no_license | SmallAirP/graduation | https://github.com/SmallAirP/graduation | 8f119f9e84ade9bae574771fcfb88b5f4a495f92 | ceb4b6e1e289129cb31d6aa226aa10a09fb847c9 | refs/heads/master | 2022-11-13T02:34:18.861000 | 2020-06-30T07:47:22 | 2020-06-30T07:47:22 | 276,033,747 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.graduation.controller;
import com.graduation.bean.User;
import com.graduation.mapper.UserMapper;
import com.graduation.tool.CryptoUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.web.servlet.server.Session;
import org.springframework.stereotype.Controller... | UTF-8 | Java | 1,642 | java | LoginController.java | Java | [
{
"context": "ecklogin\")\n public String login(@RequestParam(\"username\") String name,\n @RequestPa",
"end": 727,
"score": 0.9936403632164001,
"start": 719,
"tag": "USERNAME",
"value": "username"
}
] | null | [] | package com.graduation.controller;
import com.graduation.bean.User;
import com.graduation.mapper.UserMapper;
import com.graduation.tool.CryptoUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.web.servlet.server.Session;
import org.springframework.stereotype.Controller... | 1,642 | 0.625159 | 0.625159 | 49 | 31.12245 | 20.704561 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.653061 | false | false | 3 |
6a63fa99a5ea8b5d34acbb59e2a7cf98336f94b0 | 12,704,513,312,996 | a651a2bcaa8cc1400d78da92a0ae24fdb5ebf676 | /org.activiti.designer.kickstart.gui.process/src/main/java/org/activiti/designer/kickstart/process/features/CreateEmailStepFeature.java | f0b58d5b9d3da455f9ca8860ea303dc760137744 | [] | no_license | chrisrobbo/Activiti-Designer | https://github.com/chrisrobbo/Activiti-Designer | 3612af031324d2c701e031ef3a3c1af0f01d6b29 | 051b1d6d262b8cdb5c39f764237c0e91b038498f | refs/heads/master | 2020-12-30T22:56:16.300000 | 2018-10-18T00:18:09 | 2018-10-18T00:18:09 | 56,194,583 | 0 | 1 | null | true | 2016-04-14T00:17:10 | 2016-04-14T00:17:10 | 2016-04-12T01:23:16 | 2016-02-05T20:14:51 | 21,405 | 0 | 0 | 0 | null | null | null | package org.activiti.designer.kickstart.process.features;
import org.activiti.designer.kickstart.process.KickstartProcessPluginImage;
import org.activiti.designer.kickstart.process.diagram.KickstartProcessFeatureProvider;
import org.activiti.workflow.simple.alfresco.step.AlfrescoEmailStepDefinition;
import org.activit... | UTF-8 | Java | 1,141 | java | CreateEmailStepFeature.java | Java | [
{
"context": "public static final String FEATURE_ID_KEY = \"email-step\";\n\n public CreateEmailStepFeature(KickstartProce",
"end": 567,
"score": 0.7145600318908691,
"start": 563,
"tag": "KEY",
"value": "step"
}
] | null | [] | package org.activiti.designer.kickstart.process.features;
import org.activiti.designer.kickstart.process.KickstartProcessPluginImage;
import org.activiti.designer.kickstart.process.diagram.KickstartProcessFeatureProvider;
import org.activiti.workflow.simple.alfresco.step.AlfrescoEmailStepDefinition;
import org.activit... | 1,141 | 0.80631 | 0.80631 | 33 | 33.60606 | 31.502707 | 87 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.454545 | false | false | 3 |
c5b2336aa55edd872ecca8d1051ce12c638c2411 | 22,874,995,870,105 | c0456d9871e8cd204024bc0e9252d11fb0d7de60 | /picture_library/src/main/java/com/luck/picture/lib/SpacesItemDecoration.java | 20579804532b64e81dc64be741a7c64f8c9cf8bc | [] | no_license | githubwxq/DevelopTools | https://github.com/githubwxq/DevelopTools | c3c85747604131280c40be9684a3179deb49f97c | 6b08b91897816845ed7f0f17eeeb3afa170586d1 | refs/heads/master | 2022-10-12T09:50:01.189000 | 2022-09-26T06:50:13 | 2022-09-26T06:50:13 | 138,365,510 | 10 | 6 | null | false | 2019-01-08T07:01:07 | 2018-06-23T02:37:50 | 2019-01-08T03:32:03 | 2019-01-08T07:01:06 | 10,925 | 3 | 2 | 0 | Java | false | null | package com.luck.picture.lib;
import android.graphics.Rect;
import androidx.recyclerview.widget.RecyclerView;
import android.view.View;
/**
* 右边有 最后一项没有 上面的间距 处理右面的间距
*/
public class SpacesItemDecoration extends RecyclerView.ItemDecoration {
private int space;
private int span; //列数
// 右边间距
pub... | UTF-8 | Java | 1,398 | java | SpacesItemDecoration.java | Java | [] | null | [] | package com.luck.picture.lib;
import android.graphics.Rect;
import androidx.recyclerview.widget.RecyclerView;
import android.view.View;
/**
* 右边有 最后一项没有 上面的间距 处理右面的间距
*/
public class SpacesItemDecoration extends RecyclerView.ItemDecoration {
private int space;
private int span; //列数
// 右边间距
pub... | 1,398 | 0.640275 | 0.625645 | 45 | 24.844444 | 28.834358 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.355556 | false | false | 3 |
af369543c1d0746f58c2614cd2da4cad7d224731 | 22,874,995,869,712 | 518017a73d63ea162e12063f2ce456d7f47a7d6d | /03-tag/rel-v1.0.0beta/03-tag/tag-v0.9.1beta/01-core/src/sys/spvisor/core/service/user/center/UserCenterService.java | bdb0661c313cfb5bbcfc9027d4c2ded5c15b96dc | [] | no_license | wzc99/MaurerlabSupervision | https://github.com/wzc99/MaurerlabSupervision | 7a1a9f21feb032cfc5d2085730dfc37f96177e4c | 105cd643795fd15c2f6d5ca856c51a460169189d | refs/heads/master | 2020-03-19T11:53:45.364000 | 2018-06-07T15:09:26 | 2018-06-07T15:09:26 | 136,483,463 | 0 | 0 | null | true | 2018-06-07T13:44:16 | 2018-06-07T13:44:16 | 2018-05-24T14:25:20 | 2018-06-07T13:40:23 | 112,117 | 0 | 0 | 0 | null | false | null | package sys.spvisor.core.service.user.center;
import java.util.Date;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import sys.spvisor.core.dao.ana.RoleDao;
import sys.spvisor.core.dao.ana.... | UTF-8 | Java | 2,337 | java | UserCenterService.java | Java | [] | null | [] | package sys.spvisor.core.service.user.center;
import java.util.Date;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import sys.spvisor.core.dao.ana.RoleDao;
import sys.spvisor.core.dao.ana.... | 2,337 | 0.764656 | 0.764656 | 84 | 26.821428 | 22.053593 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.785714 | false | false | 3 |
8e9c86195a4bb6902888fdf1347c6c7bda440f88 | 17,136,919,565,719 | 7c72cb055c2905aea3e7f971808b13113ca66c88 | /calculadora/src/calcudaroraTest.java | a1712efce460116de8e65399d4c47d3bbe72a952 | [] | no_license | tejedorjesus/Segundo-trimestre | https://github.com/tejedorjesus/Segundo-trimestre | 193cfbbd7cf57b83d2b82bf69bce884bb0dff3f8 | 9ea8a8f2446a66aab86653c8d66a43e525c863d4 | refs/heads/master | 2021-05-06T08:18:32.914000 | 2018-04-23T19:48:25 | 2018-04-23T19:48:25 | 114,010,918 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import static org.junit.Assert.*;
import org.junit.Test;
public class calcudaroraTest {
@Test
public void testObject() {
fail("Not yet implemented");
}
@Test
public void testGetClass() {
fail("Not yet implemented");
}
@Test
public void testHashCode() {
fail("Not yet implemented");
}
@Test
public ... | UTF-8 | Java | 377 | java | calcudaroraTest.java | Java | [] | null | [] | import static org.junit.Assert.*;
import org.junit.Test;
public class calcudaroraTest {
@Test
public void testObject() {
fail("Not yet implemented");
}
@Test
public void testGetClass() {
fail("Not yet implemented");
}
@Test
public void testHashCode() {
fail("Not yet implemented");
}
@Test
public ... | 377 | 0.67374 | 0.67374 | 27 | 12.962963 | 13.384572 | 33 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.962963 | false | false | 3 |
20a85175ab9ed95028e1e38d41fd0bf9564a4885 | 16,956,530,952,199 | 82b44ff7014cd29c87c75ea838f5d2608996967d | /MovieCatalogueService/src/main/java/com/java/microservices/resources/MovieCatalogueResource.java | 6486fac61f754a94a9225ac880566e42e5344b43 | [] | no_license | shivam13singh94/MicroservicesUsingSpringBoot | https://github.com/shivam13singh94/MicroservicesUsingSpringBoot | 8ae5a3027c50d1521f455eaa42fa8f0a9354ff9c | 4bbfb0876d1329d583faa8edf3054aa836735f2b | refs/heads/main | 2023-04-22T21:21:31.023000 | 2021-04-29T21:21:25 | 2021-04-29T21:21:25 | 362,924,804 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.java.microservices.resources;
import java.util.Collections;
import java.util.List;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.anno... | UTF-8 | Java | 684 | java | MovieCatalogueResource.java | Java | [] | null | [] | package com.java.microservices.resources;
import java.util.Collections;
import java.util.List;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.anno... | 684 | 0.809942 | 0.80848 | 24 | 27.5 | 28.179483 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 3 |
e2f36e0786ef09e46e5e9c5a578ccc30410ec5fc | 27,444,841,084,512 | 64841873d47dbba4a4682441e6473e7072695af8 | /app/src/main/java/de/umr/jepc/android/adapter/core/Adapter.java | 864fb8f4f3f3d928b60ba79edf647fb353101269 | [] | no_license | 3472/TestApplikation | https://github.com/3472/TestApplikation | 3d154e4b86edfdbc9f3b916b0d79f3c15bc7ce45 | 654ce233d4e7fbab90a537c3515bb0861d44f8c5 | refs/heads/master | 2017-12-22T11:01:58.119000 | 2016-03-15T22:01:55 | 2016-03-15T22:01:55 | 53,982,019 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package de.umr.jepc.android.adapter.core;
import android.jepc.umr.de.servicelibrary.Event;
import android.jepc.umr.de.servicelibrary.EventStream;
import android.jepc.umr.de.servicelibrary.Query;
import java.util.ArrayList;
/**
* Created by gerald on 03.10.15.
*/
/**
* An Adapter is used to convert events coming... | UTF-8 | Java | 2,531 | java | Adapter.java | Java | [
{
"context": ";\n\nimport java.util.ArrayList;\n\n\n/**\n * Created by gerald on 03.10.15.\n */\n\n/**\n * An Adapter is used to co",
"end": 251,
"score": 0.9429752826690674,
"start": 245,
"tag": "USERNAME",
"value": "gerald"
},
{
"context": "rmat that the cep engine can process\n *\... | null | [] | package de.umr.jepc.android.adapter.core;
import android.jepc.umr.de.servicelibrary.Event;
import android.jepc.umr.de.servicelibrary.EventStream;
import android.jepc.umr.de.servicelibrary.Query;
import java.util.ArrayList;
/**
* Created by gerald on 03.10.15.
*/
/**
* An Adapter is used to convert events coming... | 2,523 | 0.644664 | 0.640711 | 93 | 26.204302 | 25.82387 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.27957 | false | false | 3 |
f7651b1971a6c9b4161933651f8d9e37cd7adcbc | 14,302,241,161,864 | dbf3e1f21a76b93a7f7154afd43af6b2c35a33ea | /core/src/io/dico/dicore/config/serializers/IConfigSerializer.java | 3be27884aca364891ac9b7c1bdcd6fed7db64829 | [] | no_license | Dico200/dicore3 | https://github.com/Dico200/dicore3 | d6df6a624f5233e359be3151025b39d2b44b499d | e927c1381fbd96fe7088446a3f1e0b673e0c7867 | refs/heads/master | 2021-10-23T01:06:03.609000 | 2019-03-14T04:03:56 | 2019-03-14T04:03:56 | 113,863,385 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package io.dico.dicore.config.serializers;
import io.dico.dicore.config.ConfigLogging;
import java.util.function.UnaryOperator;
public interface IConfigSerializer<T> {
SerializerResult<T> load(Object source, ConfigLogging logger);
T defaultValue();
Object serialize(T value);
Class... | UTF-8 | Java | 933 | java | IConfigSerializer.java | Java | [] | null | [] | package io.dico.dicore.config.serializers;
import io.dico.dicore.config.ConfigLogging;
import java.util.function.UnaryOperator;
public interface IConfigSerializer<T> {
SerializerResult<T> load(Object source, ConfigLogging logger);
T defaultValue();
Object serialize(T value);
Class... | 933 | 0.69239 | 0.69239 | 33 | 27.272728 | 29.197626 | 89 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.484848 | false | false | 3 |
3f56d6ab54ceea74b5a56fc130d8e5f1b945a3c3 | 26,362,509,278,065 | 0f23178a62f1692e3f4a94efeedd21d3142efd7d | /net.menthor.antipattern/src/net/menthor/antipattern/wizard/undefphase/ChangeStereoTable.java | 86c46765b05a6a7abc3d28eda37104c910664233 | [
"MIT"
] | permissive | EdeysonGomes/menthor-editor | https://github.com/EdeysonGomes/menthor-editor | b59ca520eea89de3f7c28a923a9a483cca0b4a21 | 1618b272d8976688dff46fc9e9e35eb9371cd0f4 | refs/heads/master | 2023-03-13T15:29:56.984000 | 2021-03-10T20:49:35 | 2021-03-10T20:49:35 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.menthor.antipattern.wizard.undefphase;
import java.util.ArrayList;
import net.menthor.antipattern.undefphase.UndefPhaseOccurrence;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.TableEditor;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Composite;
import org.ec... | UTF-8 | Java | 2,495 | java | ChangeStereoTable.java | Java | [] | null | [] | package net.menthor.antipattern.wizard.undefphase;
import java.util.ArrayList;
import net.menthor.antipattern.undefphase.UndefPhaseOccurrence;
import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.TableEditor;
import org.eclipse.swt.widgets.Combo;
import org.eclipse.swt.widgets.Composite;
import org.ec... | 2,495 | 0.674549 | 0.662525 | 97 | 23.721649 | 19.8794 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.587629 | false | false | 3 |
77254fb818d975fb757d2b3d0a188228993b1ebb | 22,179,211,142,900 | 0afe1aaeadc2307f1b35d66293ed49afdadaeeb0 | /src/main/java/com/weixe/wifidog/dao/ApAdminDaoGen.java | 1881e0c6479556d1e775e79c56f14f113a2b2020 | [] | no_license | jiangchao0304/wifidog | https://github.com/jiangchao0304/wifidog | b6e9c89d697f9e11d79db2b236d6e55a7cb4ed18 | f0a018057c04f106f226b695ba9c6d049716f66c | refs/heads/master | 2017-12-22T01:51:59.788000 | 2016-11-10T13:43:26 | 2016-11-10T13:43:26 | 72,807,774 | 1 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.weixe.wifidog.dao;
import com.weixe.wifidog.model.ApAdminModel;
import org.springframework.dao.DataAccessException;
import java.util.List;
import java.util.Map;
public interface ApAdminDaoGen {
//===========================================代码生成开始 ========================================
ApAdminMode... | UTF-8 | Java | 913 | java | ApAdminDaoGen.java | Java | [] | null | [] | package com.weixe.wifidog.dao;
import com.weixe.wifidog.model.ApAdminModel;
import org.springframework.dao.DataAccessException;
import java.util.List;
import java.util.Map;
public interface ApAdminDaoGen {
//===========================================代码生成开始 ========================================
ApAdminMode... | 913 | 0.652418 | 0.652418 | 26 | 33.192307 | 36.708855 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 3 |
e483a6601911faca1cea4369199c089344fcb921 | 6,081,673,738,139 | e8b897df108a445dd92b47be7f0cfe490432ee7d | /sem2/ADF-II/JAVA2_BT/d03_generics/src/data/ProductList.java | f562039a1410d377c385ca7cb985becafd8301a8 | [] | no_license | thisisminh172/Aptech | https://github.com/thisisminh172/Aptech | 2e4f51dc4f21c839a1d8a8121b17756c96a780f9 | bd275eb99ed19909da4c156f5a973a0dff479297 | refs/heads/master | 2023-01-04T00:04:52.503000 | 2020-10-31T04:13:52 | 2020-10-31T04:13:52 | 265,212,106 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
Quan ly danh sach san pham trong HashSet
*/
package data;
import java.util.*;
import java.io.*;
import java.util.stream.Stream;
public class ProductList {
HashSet<Product> prList = new HashSet<>();
public void add() {
Product p = new Product();
p.input();
long cnt = prList.strea... | UTF-8 | Java | 2,237 | java | ProductList.java | Java | [] | null | [] | /*
Quan ly danh sach san pham trong HashSet
*/
package data;
import java.util.*;
import java.io.*;
import java.util.stream.Stream;
public class ProductList {
HashSet<Product> prList = new HashSet<>();
public void add() {
Product p = new Product();
p.input();
long cnt = prList.strea... | 2,237 | 0.530174 | 0.528833 | 85 | 25.317648 | 25.664446 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.388235 | false | false | 3 |
7cb06c53a130b4d60de17c3013564ac41785385b | 32,770,600,474,858 | e1572ca52d3c2bc46dc81958be78947ca566a780 | /Algorithms-and-DataStructures/leetcode/A344.java | 111d3887109347a2c129345a1d4999f74383f74d | [] | no_license | itsttk/Algorithms-and-DataStructures | https://github.com/itsttk/Algorithms-and-DataStructures | 687c63adc3ec6a603e9bf4605dd6b40ff160bb21 | e3397c569c664403f7d63b306fc39623e8a8003e | refs/heads/master | 2020-03-18T07:03:03.600000 | 2018-05-22T18:38:54 | 2018-05-22T18:38:54 | 134,429,341 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class A344
{
public String reverseString(String s) {
StringBuffer result= new StringBuffer();
for(int i=s.length();i>0;i--){
result = result.append(s.charAt(i-1));
}
return result.toString();
... | UTF-8 | Java | 515 | java | A344.java | Java | [] | null | [] | public class A344
{
public String reverseString(String s) {
StringBuffer result= new StringBuffer();
for(int i=s.length();i>0;i--){
result = result.append(s.charAt(i-1));
}
return result.toString();
... | 515 | 0.485437 | 0.456311 | 43 | 11 | 15.249857 | 50 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.488372 | false | false | 3 |
4bfee6a669b111b9794da00ffdb78275b58b49c5 | 26,362,509,283,052 | 5aa1f82e63c7e80d3f3a62088f0f65d92d200c4e | /src/main/java/com/cinematic/entities/Seat.java | 8e50b3c3b0e34ee2cf87e0551e6b0e8caaf98c7e | [] | no_license | CrackedClown/Cinematic | https://github.com/CrackedClown/Cinematic | 0638af3754f5400352420907c293bdc5ec1b4db6 | b0b2b81250c238296d62a19159c02d6d2c27710f | refs/heads/master | 2020-07-06T10:36:39.623000 | 2019-08-19T12:37:30 | 2019-08-19T12:37:30 | 202,988,571 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cinematic.entities;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne... | UTF-8 | Java | 1,730 | java | Seat.java | Java | [] | null | [] | package com.cinematic.entities;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne... | 1,730 | 0.749133 | 0.749133 | 82 | 20.097561 | 20.153442 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.134146 | false | false | 3 |
bea5e4c91971ed0eb1ab0efd5c4df318db00445f | 25,752,623,921,024 | d489e83a65bd612b0b75d9fd1f64a865ba2558e2 | /GestionReservasHotel/src/java/reservashotel/presentation/util/FechasUtil.java | fc88727c4949834fc421063e9d96d8733a8bce7e | [] | no_license | Albertocd/GestionApps | https://github.com/Albertocd/GestionApps | 953e27d000d6dc03fd51a3cfff0fdbf7f6073b3e | 5199e3406dce4673aa1b792e72d2b7da3f1904c1 | refs/heads/master | 2021-01-20T11:11:32.673000 | 2015-03-27T11:58:20 | 2015-03-27T11:58:20 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package reservashotel.presentation.util;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
/**
* @author alberto
* Clase con funcionalidades específicas para fechas.
*/
public class FechasUtil {
/**
* Obtiene la fecha actual.
*... | UTF-8 | Java | 2,637 | java | FechasUtil.java | Java | [
{
"context": "l.Calendar;\nimport java.util.Date;\n\n/**\n * @author alberto\n * Clase con funcionalidades específicas para fec",
"end": 184,
"score": 0.9966679811477661,
"start": 177,
"tag": "USERNAME",
"value": "alberto"
}
] | null | [] |
package reservashotel.presentation.util;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
/**
* @author alberto
* Clase con funcionalidades específicas para fechas.
*/
public class FechasUtil {
/**
* Obtiene la fecha actual.
*... | 2,637 | 0.613161 | 0.608977 | 98 | 25.816326 | 20.831858 | 89 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.316327 | false | false | 3 |
dbc04e7b91957193f6baedd18a60f5191375db5b | 31,387,621,032,990 | 372a94350745a8695d44def0146e045468707e23 | /app/src/main/java/com/example/csimcik/bakingapp/Recipe.java | a95582da2c51c93875dca2395286074198026abc | [] | no_license | christophersimcik/BakingApp_Udacity | https://github.com/christophersimcik/BakingApp_Udacity | 866757dfa4cd751f4c9cf0499c115c3f98cc3e4f | 1a23d7a9c365e9be7350a9644b78b37e648c08a5 | refs/heads/master | 2020-04-01T03:30:20.578000 | 2018-10-13T01:58:39 | 2018-10-13T01:58:39 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.csimcik.bakingapp;
import java.util.ArrayList;
public class Recipe {
public String name;
public ArrayList<Ingredient> ingredients;
public ArrayList<Instruction> instructions;
public String servings;
public Recipe(String nameA,String servingsA,ArrayList<Ingredient> ingredientsA,... | UTF-8 | Java | 788 | java | Recipe.java | Java | [] | null | [] | package com.example.csimcik.bakingapp;
import java.util.ArrayList;
public class Recipe {
public String name;
public ArrayList<Ingredient> ingredients;
public ArrayList<Instruction> instructions;
public String servings;
public Recipe(String nameA,String servingsA,ArrayList<Ingredient> ingredientsA,... | 788 | 0.678934 | 0.678934 | 30 | 25.233334 | 23.276144 | 121 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.566667 | false | false | 3 |
b5e05f59a3f23fd323c0f580d0822d9b834abe5c | 21,887,153,405,261 | 2f85cd1ba29d8f74083041d7cb60cd073f733353 | /app/src/main/java/com/example/trabalho/presenter/contracts/ActivityContract.java | bb57802a736c0fdede79c42e8fd09972fdce0f7c | [] | no_license | gabrielgl9/trabalho-dispositivos-moveis | https://github.com/gabrielgl9/trabalho-dispositivos-moveis | 957b5a5065c66afdcbf7c14a1142a0f21f2e5bc5 | 985d971097538988f2cd5466765df9b3935b6a3e | refs/heads/master | 2023-06-06T09:06:22.201000 | 2021-06-17T00:40:51 | 2021-06-17T00:40:51 | 359,964,747 | 0 | 5 | null | false | 2021-06-14T16:48:57 | 2021-04-20T22:17:42 | 2021-06-14T07:04:55 | 2021-06-14T16:48:56 | 10,795 | 0 | 3 | 0 | Java | false | false | package com.example.trabalho.presenter.contracts;
import android.content.Context;
import android.content.Intent;
import com.example.trabalho.models.Trip;
public class ActivityContract {
public interface ActivityView {
public Context getContext();
public void showToast(String message);
pub... | UTF-8 | Java | 595 | java | ActivityContract.java | Java | [] | null | [] | package com.example.trabalho.presenter.contracts;
import android.content.Context;
import android.content.Intent;
import com.example.trabalho.models.Trip;
public class ActivityContract {
public interface ActivityView {
public Context getContext();
public void showToast(String message);
pub... | 595 | 0.712605 | 0.712605 | 23 | 24.869566 | 19.545498 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.434783 | false | false | 3 |
70cace3755d4c765ae6e85ca3f6a0a78b40c2540 | 19,104,014,591,652 | b3e8e30330546faa2abfb7649353c713a54fe1ed | /Chess/src/chessfiles/SmartPlayer.java | 4a9bf0fafb442487db9aae338b449b5f8d8d7f73 | [
"MIT"
] | permissive | 18AdrianoH/Miscellaneous | https://github.com/18AdrianoH/Miscellaneous | 12af9e9683653e17dd0d0af3924b7c9a72e67080 | 633a31572ebe9996642d76a3868593070f8faf43 | refs/heads/master | 2021-01-19T07:53:06.567000 | 2017-03-18T20:39:49 | 2017-03-18T20:39:49 | 83,102,144 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package chessfiles;
import java.awt.Color;
public class SmartPlayer extends Player {
public SmartPlayer(Board board, Color color, String name) {
super(board, color, name);
// TODO Auto-generated constructor stub
}
@Override
public Move nextMove() {
// TODO Auto-generated method stub
return... | UTF-8 | Java | 337 | java | SmartPlayer.java | Java | [] | null | [] | package chessfiles;
import java.awt.Color;
public class SmartPlayer extends Player {
public SmartPlayer(Board board, Color color, String name) {
super(board, color, name);
// TODO Auto-generated constructor stub
}
@Override
public Move nextMove() {
// TODO Auto-generated method stub
return... | 337 | 0.68546 | 0.68546 | 18 | 16.722221 | 17.925171 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.166667 | false | false | 3 |
89b2d01ce6a56dbadf84d8d091670c1ade1f62c9 | 29,953,101,934,494 | 55e020dd17a90593cee269e7e926b7d8ea166490 | /src/main/java/com/ecotage/vo/AddCategory.java | 434c271f32b12c68eb6ee42dd196e5ff5e2fbd77 | [] | no_license | bharathithangaraj/Ecotage_java | https://github.com/bharathithangaraj/Ecotage_java | b8507b9c5cb36e0d5d8ccdbfd505162ba6c871dd | c788014ab7cde5350d2028be2feccd5e85760c30 | refs/heads/master | 2023-04-27T06:51:05.168000 | 2019-06-18T14:43:54 | 2019-06-18T14:43:54 | 182,494,240 | 0 | 0 | null | false | 2023-04-14T17:47:50 | 2019-04-21T05:35:39 | 2019-06-21T07:00:27 | 2023-04-14T17:47:48 | 1,220 | 0 | 0 | 1 | Java | false | false | package com.ecotage.vo;
public class AddCategory {
private String categoryName;
private String categoryType;
private String categoryDesc;
private int status;
private String navigateTo;
public String getCategoryName() {
return categoryName;
}
public void setCategoryName(String categoryName) {
this.catego... | UTF-8 | Java | 911 | java | AddCategory.java | Java | [] | null | [] | package com.ecotage.vo;
public class AddCategory {
private String categoryName;
private String categoryType;
private String categoryDesc;
private int status;
private String navigateTo;
public String getCategoryName() {
return categoryName;
}
public void setCategoryName(String categoryName) {
this.catego... | 911 | 0.74753 | 0.74753 | 51 | 16.862745 | 16.62389 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.196078 | false | false | 3 |
56b9dcadcaf74492f9332ac9869243f66f08c2eb | 22,162,031,315,239 | 38a82b234ebde0f68bc4890da7253e027510b0eb | /src/com/bugframework/auth/dao/impl/RoleImpl.java | d7891063879565989257885375f336e03fe03efa | [] | no_license | ruan374519700/weischool | https://github.com/ruan374519700/weischool | db3cb448cd6309118dece79ccb3e64caa2674c48 | dec83183e49300562cbc593adcd8abc29b03b3b0 | refs/heads/master | 2020-11-30T15:05:15.714000 | 2016-09-03T14:14:57 | 2016-09-03T14:14:57 | 67,276,469 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.bugframework.auth.dao.impl;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import org.hibernate.Criteria;
import org.hibernate.criterion.Expression;
import org.springframework.stereotype.Repository;
import com.bugframework.auth.dao.RoleDao;
import com.bugframework.auth.pojo.AuthRol... | UTF-8 | Java | 1,138 | java | RoleImpl.java | Java | [] | null | [] | package com.bugframework.auth.dao.impl;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import org.hibernate.Criteria;
import org.hibernate.criterion.Expression;
import org.springframework.stereotype.Repository;
import com.bugframework.auth.dao.RoleDao;
import com.bugframework.auth.pojo.AuthRol... | 1,138 | 0.779438 | 0.776801 | 39 | 28.179487 | 24.208361 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.461538 | false | false | 3 |
dd6f9af2ed97e376746d8d99559b481370857acd | 28,492,813,046,141 | b6c5b7bc661bfde7d47b52fbefae72dc836df3c1 | /src/Main.java | bfbb7518327752afde5349aec4664c3314c32ce2 | [] | no_license | babun1994/FillingArray | https://github.com/babun1994/FillingArray | 592718bb97dcc3738ba749cfcd60047f16c15ca9 | e68d37b51ab2016ca6d5844b36f8f2a67989fef7 | refs/heads/master | 2020-04-08T08:01:07.393000 | 2018-11-27T11:32:05 | 2018-11-27T11:32:05 | 159,161,559 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.ArrayList;
import java.util.Arrays;
public class Main {
public static void main(String[] args) {
Main main = new Main();
InputNumbersForArray inputNumbersForArray = new InputNumbersForArray();
inputNumbersForArray.inputNumbs();
int a = inputNumbersForArray.getFistNu... | UTF-8 | Java | 3,553 | java | Main.java | Java | [] | null | [] | import java.util.ArrayList;
import java.util.Arrays;
public class Main {
public static void main(String[] args) {
Main main = new Main();
InputNumbersForArray inputNumbersForArray = new InputNumbersForArray();
inputNumbersForArray.inputNumbs();
int a = inputNumbersForArray.getFistNu... | 3,553 | 0.518717 | 0.511399 | 111 | 31.009008 | 25.556332 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.738739 | false | false | 3 |
faef9d03a898a169c68e664d3a8fb530df0720ac | 7,524,782,773,448 | d7fc4ddc2dbacd71f82bcf0a1e4ba652fd18457f | /app/src/main/java/com/example/mastermind/ui/activities/ThemesActivity.java | fb4afa215490705439c57b26fe33be2892d35213 | [] | no_license | alon1302/MasterMind | https://github.com/alon1302/MasterMind | 7f3d318b1011fee55999ada7dfecca7a2195a6d0 | 912365980a9a1e8b9b4f499d0202e08c71a39b2d | refs/heads/master | 2023-05-01T07:02:26.766000 | 2021-05-24T15:17:08 | 2021-05-24T15:17:08 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.mastermind.ui.activities;
import android.annotation.SuppressLint;
import android.app.Dialog;
import android.graphics.drawable.ColorDrawable;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;
i... | UTF-8 | Java | 4,036 | java | ThemesActivity.java | Java | [] | null | [] | package com.example.mastermind.ui.activities;
import android.annotation.SuppressLint;
import android.app.Dialog;
import android.graphics.drawable.ColorDrawable;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;
i... | 4,036 | 0.669475 | 0.666749 | 95 | 41.494736 | 30.431242 | 130 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.715789 | false | false | 3 |
2601ca989e86a2a98689f560b1f2fd79eb23f911 | 19,937,238,254,766 | 0a93a191e05892a9aa293a5591c2ef7e771a7860 | /libhandyhttpd/src/main/java/me/linjw/handyhttpd/annotation/Param.java | 3ea4742ed1cae4a93cb900ea1cd9d793c3cd9ab1 | [
"WTFPL"
] | permissive | bluesky466/HandyHTTPD | https://github.com/bluesky466/HandyHTTPD | b64f7d630af3bcea8c143224314e414dd2b9b5a0 | a10942afa79d9e2c2a16624e3b95a855fed7a8ea | refs/heads/master | 2020-03-07T10:48:57.154000 | 2018-09-15T03:59:17 | 2018-09-15T03:59:17 | 127,440,455 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package me.linjw.handyhttpd.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Created by linjiawei on 2018/7/4.
* e-mail : bluesky466@qq.com
*/
@Target(ElementType.PARAMETER)
@Retention... | UTF-8 | Java | 471 | java | Param.java | Java | [
{
"context": "rt java.lang.annotation.Target;\n\n/**\n * Created by linjiawei on 2018/7/4.\n * e-mail : bluesky466@qq.com\n */\n\n@",
"end": 230,
"score": 0.998301088809967,
"start": 221,
"tag": "USERNAME",
"value": "linjiawei"
},
{
"context": "*\n * Created by linjiawei on 2018/7/4.... | null | [] | package me.linjw.handyhttpd.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Created by linjiawei on 2018/7/4.
* e-mail : <EMAIL>
*/
@Target(ElementType.PARAMETER)
@Retention(Retention... | 461 | 0.70913 | 0.690021 | 22 | 20.40909 | 15.54366 | 44 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.272727 | false | false | 3 |
9f92f06c71b47b793af62b4569c57fd02543f990 | 2,070,174,245,533 | 310ac6aa4af069f68266101f56f32ea1affd0931 | /src/ha/MyQueue.java | 0c0ccc6d14bd66f6a2be0e43e5ecfa34a67ffe1e | [] | no_license | Hakulukiam/Marcel-HA | https://github.com/Hakulukiam/Marcel-HA | ec2ae6aedb17a5fa9abc1b569f34073967f48f8d | 84dab6d72a0a1e80a57fd1bdb8739e7f60aa0a3e | refs/heads/master | 2021-01-21T07:08:42.407000 | 2017-06-10T16:50:23 | 2017-06-10T16:50:23 | 91,600,992 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package ha;
/**
*
* @author Marcel Clemeur 4840095 Gruppe 2C
*/
public class MyQueue extends MyList {
/**
* Fügt das Element e ans Ende der Warteschlange ein.
* @param e wird uebergeben
*/
public void add(MyListElement e) {
this.append(e);
}
/**
* Löscht ... | UTF-8 | Java | 1,158 | java | MyQueue.java | Java | [
{
"context": "\npackage ha;\n\n/**\n *\n * @author Marcel Clemeur 4840095 Gruppe 2C\n */\npublic class MyQueue extend",
"end": 46,
"score": 0.9998777508735657,
"start": 32,
"tag": "NAME",
"value": "Marcel Clemeur"
}
] | null | [] |
package ha;
/**
*
* @author <NAME> 4840095 Gruppe 2C
*/
public class MyQueue extends MyList {
/**
* Fügt das Element e ans Ende der Warteschlange ein.
* @param e wird uebergeben
*/
public void add(MyListElement e) {
this.append(e);
}
/**
* Löscht das vord... | 1,150 | 0.53559 | 0.52691 | 42 | 26.428572 | 25.999214 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.238095 | false | false | 3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.