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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4c96dc4aa4399300689151ee714cd5b5dde09697 | 12,644,383,777,444 | 47e2fa047571096dec2fdfd05d7f468f00ef21c9 | /src/additional/EvalRPN.java | 96360a15a93155cca08c7933f53c0224a38aa10c | [] | no_license | xsh857104167/intermediateAlgorithm | https://github.com/xsh857104167/intermediateAlgorithm | 4eab328bd3875ecaa34e53f4c9bda168d5ae41d7 | 7ecca8d93926776943b78706845c2c68b68cae0d | refs/heads/master | 2023-08-17T07:42:22.177000 | 2021-09-28T08:41:00 | 2021-09-28T08:41:00 | 393,368,323 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package additional;
import org.junit.Test;
import java.util.Deque;
import java.util.LinkedList;
/**
* 150. 逆波兰表达式求值
* @author Murphy Xu
* @create 2021-09-13 14:44
*/
public class EvalRPN {
/**
* 栈
* 5ms, 92.96%; 38 MB,78.16%
* @param tokens
* @return
*/
public int evalRPN(String... | UTF-8 | Java | 1,542 | java | EvalRPN.java | Java | [
{
"context": ".util.LinkedList;\n\n/**\n * 150. 逆波兰表达式求值\n * @author Murphy Xu\n * @create 2021-09-13 14:44\n */\npublic class Eval",
"end": 140,
"score": 0.9998029470443726,
"start": 131,
"tag": "NAME",
"value": "Murphy Xu"
}
] | null | [] | package additional;
import org.junit.Test;
import java.util.Deque;
import java.util.LinkedList;
/**
* 150. 逆波兰表达式求值
* @author <NAME>
* @create 2021-09-13 14:44
*/
public class EvalRPN {
/**
* 栈
* 5ms, 92.96%; 38 MB,78.16%
* @param tokens
* @return
*/
public int evalRPN(String[] ... | 1,539 | 0.411417 | 0.385171 | 60 | 24.4 | 16.372946 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.616667 | false | false | 12 |
ab60873ee1752270e7deadd10a06fa64378f852d | 12,644,383,779,194 | 0063802a206312b0f2e5437d4aa33678178ff5c1 | /src/main/java/controladvanced/duplicates/Duplicates.java | 54cd760d73d6550a860dc89da80e9dbf237f639f | [] | no_license | pszilveszter/training-solutions | https://github.com/pszilveszter/training-solutions | df1eb07887b5d3ec81a67ee0b3605c93ac6e4d2f | f2ee478783bd35bce8455867bcbd5cb8f1f16a39 | refs/heads/master | 2023-03-20T10:24:30.880000 | 2021-03-16T13:14:32 | 2021-03-16T13:14:32 | 307,976,294 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package controladvanced.duplicates;
import java.util.ArrayList;
import java.util.List;
public class Duplicates {
public List<Integer> find(List<Integer> numbers) {
List<Integer> duplications = new ArrayList<>();
for (int indexUp = 1; indexUp < numbers.size(); indexUp++) {
for (int... | UTF-8 | Java | 614 | java | Duplicates.java | Java | [] | null | [] | package controladvanced.duplicates;
import java.util.ArrayList;
import java.util.List;
public class Duplicates {
public List<Integer> find(List<Integer> numbers) {
List<Integer> duplications = new ArrayList<>();
for (int indexUp = 1; indexUp < numbers.size(); indexUp++) {
for (int... | 614 | 0.565147 | 0.561889 | 25 | 23.559999 | 25.119045 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.44 | false | false | 12 |
461740e86721c0eaf8f8bb9f9c2f6083b33916c5 | 8,392,366,118,010 | eb07749b55fd04a55bc14110561b3808166a3d97 | /Final_TermProject/src/Main_GUI.java | 9c964bb05b15e1d3d880eed3e5fe8b1fc5f3b602 | [] | no_license | scroogeElevator/Elevator-scrooge | https://github.com/scroogeElevator/Elevator-scrooge | a1e2a84ce2090f6d00bb6059904d6902608a14f3 | 62e6e03408e2fa941114fb0948b0844037e524b1 | refs/heads/master | 2021-06-16T22:48:53.356000 | 2017-06-10T16:21:17 | 2017-06-10T16:21:17 | 92,706,366 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.awt.Button;
import java.awt.Choice;
import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Image;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListe... | UTF-8 | Java | 10,471 | java | Main_GUI.java | Java | [] | null | [] | import java.awt.Button;
import java.awt.Choice;
import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.Image;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListe... | 10,471 | 0.636424 | 0.60319 | 353 | 27.668554 | 22.07778 | 131 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.614731 | false | false | 12 |
7f8b47f9ce59b6cda38ebb7ea58655d86e42252a | 18,141,941,893,713 | 9ceae4b069d355f040596b13ab21ddb96841d205 | /collector/src/main/java/task/hdfs/MonitorTask.java | 8257cb809e9a641f047a16e5c43ae30d485de555 | [] | no_license | lhwsgxka/spark | https://github.com/lhwsgxka/spark | ce28c39d46e1b6a14a2a687a8c6701e259324d1f | 84352cf59d75d53da7b091f9e12e06fdac2133bf | refs/heads/master | 2020-04-29T14:26:37.792000 | 2019-03-18T03:14:57 | 2019-03-18T03:14:57 | 176,196,507 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package task.hdfs;
import org.apache.commons.configuration.Configuration;
public interface MonitorTask extends Runnable {
void init(Configuration conf);
void clean();
}
| UTF-8 | Java | 180 | java | MonitorTask.java | Java | [] | null | [] | package task.hdfs;
import org.apache.commons.configuration.Configuration;
public interface MonitorTask extends Runnable {
void init(Configuration conf);
void clean();
}
| 180 | 0.766667 | 0.766667 | 9 | 19 | 20.127373 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.444444 | false | false | 12 |
c88263a7a0abdae89dc62577c665500ea631fc1b | 12,970,801,275,353 | e10ef76fc05019263111f652fff4951c4e57d9ad | /src/chapter1/Que7.java | ea78b5ff83dae973720672f83050a8e94d40bef7 | [] | no_license | dspatel28/CTCI | https://github.com/dspatel28/CTCI | 3297be7719ac74f952d98dd57cb76685f22b40b7 | 4441691b47026f88ef2f6b8fa2fa7c07a37e2172 | refs/heads/master | 2021-05-31T19:27:23.980000 | 2016-04-29T01:18:43 | 2016-04-29T01:18:43 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package chapter1;
public class Que7
{
public static void main(String[] args)
{
int ip[][] = {{1,2,3}, {4,5,6},{7,8,9}};
ip = rotateMatrix(ip,3);
System.out.println("");
}
public static int[][] rotateMatrix(int[][] ip, int n)
{
for(int layer=0; layer<n/2; layer++)
{
int last = n-1-layer;
for(int ... | UTF-8 | Java | 418 | java | Que7.java | Java | [] | null | [] | package chapter1;
public class Que7
{
public static void main(String[] args)
{
int ip[][] = {{1,2,3}, {4,5,6},{7,8,9}};
ip = rotateMatrix(ip,3);
System.out.println("");
}
public static int[][] rotateMatrix(int[][] ip, int n)
{
for(int layer=0; layer<n/2; layer++)
{
int last = n-1-layer;
for(int ... | 418 | 0.555024 | 0.519139 | 24 | 16.416666 | 16.730503 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.416667 | false | false | 12 |
9a3cb8a51bed5eafb316523a60df7f0b263b9ad9 | 30,193,620,126,657 | 622950f343e37a46ab11cb853440d419b88fc832 | /lab5MPP/src/assignment1/DocListener.java | 955df0c9963e980f97483f1e040e45dfc84efe7c | [] | no_license | itimotin/MPP | https://github.com/itimotin/MPP | 73ae26c072bd930f89ea8d91311dc3bb26cc45f0 | 3b26b4e7d72e2e2b5b4b3cc6188eaccd908f81d3 | refs/heads/master | 2020-03-28T11:13:50.744000 | 2018-09-10T17:26:13 | 2018-09-10T17:26:13 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package assignment1;
public class DocListener {
}
| UTF-8 | Java | 52 | java | DocListener.java | Java | [] | null | [] | package assignment1;
public class DocListener {
}
| 52 | 0.769231 | 0.75 | 5 | 9.4 | 11.271202 | 26 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.2 | false | false | 12 |
297390e86d70585970706390061abb8a25b044e5 | 25,701,084,337,554 | 9cfcb31c0c2949b528734f7071b5da7fecd6cbd0 | /FirstAndsecondHalfEqualSumSubstring.java | 77b7639c4824d8405c93f717dee053a1264d4a9d | [] | no_license | mukeshsureshsaini/data-structure-coreman-examples | https://github.com/mukeshsureshsaini/data-structure-coreman-examples | 1960355491c84db1ae80a4bfd1b4cb165827d72d | 855cc9de45664421120dd4e6323caedc01c7bbf1 | refs/heads/master | 2022-11-22T23:22:57.859000 | 2022-11-13T05:11:10 | 2022-11-13T05:11:10 | 85,578,582 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.recursion.dp;
// @formatter:off
// given a string of digits , find the substring such that sum of first half of substring is equal to sum of second half of substring
// eg 670341 -> 7034 , sum of first half 7+0 , sum of second half 3+4
// @formatter:on
class BruteForceMethod {
private String str;
priv... | UTF-8 | Java | 2,407 | java | FirstAndsecondHalfEqualSumSubstring.java | Java | [] | null | [] | package com.recursion.dp;
// @formatter:off
// given a string of digits , find the substring such that sum of first half of substring is equal to sum of second half of substring
// eg 670341 -> 7034 , sum of first half 7+0 , sum of second half 3+4
// @formatter:on
class BruteForceMethod {
private String str;
priv... | 2,407 | 0.615289 | 0.594931 | 107 | 21.495327 | 26.383362 | 133 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.093458 | false | false | 12 |
fd4994452b588417d0046b7bf24a58d36395fdf1 | 23,270,132,857,037 | b729349ccb4eae504dfb51207c6acb6a88cbc629 | /design-pattern/src/main/java/com/mzc/BehavioralModel/TemplateMethodPattern/HummerH1Model.java | 097895103167c2c7bd80db1e8f319ed6a2a7b585 | [] | no_license | jikeMisma/javaFamilyDemo | https://github.com/jikeMisma/javaFamilyDemo | 3f42cdef704a35a23dced540c5f5610536996dff | f2f94254f3fb19227adacac25bda8ee24adf4ea0 | refs/heads/master | 2023-07-17T16:47:05.869000 | 2021-07-31T14:55:20 | 2021-07-31T14:55:20 | 331,947,510 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mzc.BehavioralModel.TemplateMethodPattern;
/**
* 文件描述
*
* @ProductName: Hundsun HEP
* @ProjectName: design-pattern
* @Package: com.mzc.BehavioralModel.TemplateMethodPattern
* @Description: note
* @Author: mazc35591
* @CreateDate: 2021/4/2 8:59
* @UpdateUser: mazc35591
* @UpdateDate: 2021/4/2 8:59... | UTF-8 | Java | 1,137 | java | HummerH1Model.java | Java | [
{
"context": "ateMethodPattern\n * @Description: note\n * @Author: mazc35591\n * @CreateDate: 2021/4/2 8:59\n * @UpdateUser: maz",
"end": 234,
"score": 0.9995952248573303,
"start": 225,
"tag": "USERNAME",
"value": "mazc35591"
},
{
"context": "5591\n * @CreateDate: 2021/4/2 8:59\n * @... | null | [] | package com.mzc.BehavioralModel.TemplateMethodPattern;
/**
* 文件描述
*
* @ProductName: Hundsun HEP
* @ProjectName: design-pattern
* @Package: com.mzc.BehavioralModel.TemplateMethodPattern
* @Description: note
* @Author: mazc35591
* @CreateDate: 2021/4/2 8:59
* @UpdateUser: mazc35591
* @UpdateDate: 2021/4/2 8:59... | 1,137 | 0.647114 | 0.610801 | 48 | 21.395834 | 17.996225 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.166667 | false | false | 12 |
f6d22577febd392c9dd478252fe8adb1f7a97408 | 5,961,414,653,964 | 9c36f7a8e84c35d446fbaac1777cd0e20855ea99 | /app/src/main/java/com/romellfudi/callbacks/interfaces/ParseCallback.java | ea50a877b0614120a58d27ff5f4b57ffa86a405b | [
"Apache-2.0"
] | permissive | romellfudi/CallbacksSample | https://github.com/romellfudi/CallbacksSample | abbe0d7cadf81081a52468a8f14bc3dd0d021138 | cb451857ed1801978bd044cf6107d40ee23052ff | refs/heads/main | 2021-06-13T01:22:14.386000 | 2021-04-02T14:10:09 | 2021-04-02T14:10:09 | 142,793,663 | 3 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.romellfudi.callbacks.interfaces;
import java.text.ParseException;
/**
* Created by romelldominguez on 9/19/16.
*/
public interface ParseCallback {
void onParse(ParseException exception, Object... objects);
}
| UTF-8 | Java | 228 | java | ParseCallback.java | Java | [
{
"context": "mport java.text.ParseException;\n\n/**\n * Created by romelldominguez on 9/19/16.\n */\npublic interface ParseCallback {\n",
"end": 113,
"score": 0.9995501637458801,
"start": 98,
"tag": "USERNAME",
"value": "romelldominguez"
}
] | null | [] | package com.romellfudi.callbacks.interfaces;
import java.text.ParseException;
/**
* Created by romelldominguez on 9/19/16.
*/
public interface ParseCallback {
void onParse(ParseException exception, Object... objects);
}
| 228 | 0.758772 | 0.736842 | 10 | 21.799999 | 21.853146 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 12 |
d2186c32f0e97bb5308c53dafcb8cf77529a29ab | 5,961,414,653,262 | 2137540e15235edd282be79f44989ba81c2709fb | /src/main/java/grondag/canvas/buffer/input/VertexCollector.java | f069d3abd3fc3d1bf80d915c6fb7dfafea20ef5f | [
"LGPL-3.0-only",
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0"
] | permissive | PepperCode1/canvas | https://github.com/PepperCode1/canvas | f6a419c59655111401fcc142d9bc820f1d33aadb | 026ace4c427657a4ce39d408fb0653136927491b | refs/heads/1.17 | 2023-08-15T12:58:57.648000 | 2021-10-16T21:10:36 | 2021-10-16T21:10:36 | 390,942,916 | 1 | 0 | Apache-2.0 | true | 2021-07-30T05:32:13 | 2021-07-30T05:32:12 | 2021-07-30T02:53:40 | 2021-07-29T22:21:14 | 7,131 | 0 | 0 | 0 | null | false | false | /*
* Copyright © Contributing Authors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program ... | UTF-8 | Java | 1,286 | java | VertexCollector.java | Java | [] | null | [] | /*
* Copyright © Contributing Authors
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program ... | 1,286 | 0.737743 | 0.736965 | 39 | 31.948717 | 29.611111 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.564103 | false | false | 12 |
3f4a7eec6d2a0158360d56dd6ae1044db094c332 | 7,868,380,138,999 | f945102d95298ee27c95f13ccc6ab3a2356564e5 | /Selenium/src/actiTimePOMclass/Login2Page.java | 17dac19de99aea11a8a9957011908eadd57229e0 | [] | no_license | sumanth946/QSP-QCSM13 | https://github.com/sumanth946/QSP-QCSM13 | bd81de7979b989a9ca020a9ae1a0c23295d48094 | e22a76381fb6de6af922cb304eeda482f72c266b | refs/heads/master | 2023-08-29T01:18:16.824000 | 2021-11-03T06:02:51 | 2021-11-03T06:02:51 | 424,101,611 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package actiTimePOMclass;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
public class Login2Page {
// HARD CODING
// USING BUSINESS LOGIC
public Login2Page(WebDriver driver) {
P... | UTF-8 | Java | 754 | java | Login2Page.java | Java | [
{
"context": "initElements(driver, this);\r\n\t}\r\n\r\n\t@FindBy(id = \"username\")\r\n\tprivate WebElement usernameTextField;\r\n\r\n\t@Fi",
"end": 389,
"score": 0.6916477084159851,
"start": 381,
"tag": "USERNAME",
"value": "username"
},
{
"context": " String password) {\r\n\t\tuse... | null | [] | package actiTimePOMclass;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.PageFactory;
public class Login2Page {
// HARD CODING
// USING BUSINESS LOGIC
public Login2Page(WebDriver driver) {
P... | 756 | 0.730769 | 0.728117 | 33 | 20.848484 | 18.136053 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.030303 | false | false | 12 |
5448cc4f6801fc0badc40400fc8a7180934b629b | 6,296,422,114,542 | c67f6f4fe793cdb48b462e8637711ab1ffb4a74f | /src/test/java/lexicon/DrinksTest.java | 0a327e74a332876c54d0abb8804ec6e920d0693d | [] | no_license | Accapelo/Vendingmachine | https://github.com/Accapelo/Vendingmachine | 706c1ac8bad02f0bfaec2443dc18368ae869f183 | 53b9e0d7ee43cdb0444e609c3c98a5415a03d0dc | refs/heads/master | 2021-07-20T18:47:49.153000 | 2019-11-22T12:13:02 | 2019-11-22T12:13:02 | 223,396,110 | 0 | 0 | null | false | 2020-10-13T17:40:19 | 2019-11-22T12:13:16 | 2019-11-22T12:13:25 | 2020-10-13T17:40:17 | 11 | 0 | 0 | 1 | Java | false | false | package lexicon;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class DrinksTest {
@Test
public void consumeDrinkTest(){
Drinks hotChocolate = new Drinks("Hot Chocolate",10,100,3);
String eat = hotChocolate.consume();
assertEquals("Hot Chocolate was cons... | UTF-8 | Java | 576 | java | DrinksTest.java | Java | [] | null | [] | package lexicon;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class DrinksTest {
@Test
public void consumeDrinkTest(){
Drinks hotChocolate = new Drinks("Hot Chocolate",10,100,3);
String eat = hotChocolate.consume();
assertEquals("Hot Chocolate was cons... | 576 | 0.657986 | 0.628472 | 26 | 21.153847 | 23.536701 | 67 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.730769 | false | false | 12 |
41a4714b12117b20b6f551dbd80339a5beffcdf6 | 9,603,546,889,143 | 87806f10d6befae06874e2f18327be1b7ef0c91c | /app/src/main/java/com/elijahbosley/textclockwidget/SettingsActivity.java | 08b0ea10c0adf166f87ad73f8add6a32f6967a03 | [] | no_license | jrocharodrigues/NeloClockWidget | https://github.com/jrocharodrigues/NeloClockWidget | 0e198c5934301d96652fc32e969d88edcbce2860 | de3e4593587f492bf76b82b78845fcc3c1cada9e | refs/heads/master | 2020-09-03T17:22:06.491000 | 2017-11-21T10:00:30 | 2017-11-21T10:00:30 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.elijahbosley.textclockwidget;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.PreferenceFragment;
import android.preference.PreferenceManager;
import android.support.v7.app.AppCompatActivity;
/**
* Created by ekbos on 7/17/2016.... | UTF-8 | Java | 1,925 | java | SettingsActivity.java | Java | [
{
"context": "pport.v7.app.AppCompatActivity;\n\n/**\n * Created by ekbos on 7/17/2016.\n */\npublic class SettingsActivity e",
"end": 306,
"score": 0.9996767640113831,
"start": 301,
"tag": "USERNAME",
"value": "ekbos"
},
{
"context": "n(\"key was: \" + key);\n if (key.equ... | null | [] | package com.elijahbosley.textclockwidget;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.preference.PreferenceFragment;
import android.preference.PreferenceManager;
import android.support.v7.app.AppCompatActivity;
/**
* Created by ekbos on 7/17/2016.... | 1,925 | 0.705974 | 0.701818 | 52 | 36.01923 | 36.332066 | 135 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.461538 | false | false | 12 |
2c764bc5a6206eb14776744139d1ca806f491ccc | 4,389,456,595,951 | 73bb3a192a9c9718cb9fdad1e15573b9b29007bc | /PhoneBookAPI/src/test/java/APITests/TestTwoPOSTPUTDELETE.java | 1561eead7f42fe0ce0faa11dd9d51ea7f05dbee9 | [] | no_license | cromox1/Selenium_Java | https://github.com/cromox1/Selenium_Java | e0c026ac0ab94922b72b30dd3de81f0441c28d5f | d4e0b4142a1cdaea2d1bda59d6cd87887d875ab5 | refs/heads/master | 2023-05-29T10:53:55.063000 | 2020-10-14T11:24:34 | 2020-10-14T11:24:34 | 177,633,236 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package APITests;
import org.junit.FixMethodOrder;
import org.junit.Test;
import org.junit.runners.MethodSorters;
import static org.junit.Assert.assertEquals;
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestTwoPOSTPUTDELETE {
private static void testingString(String actual, String expected) {
... | UTF-8 | Java | 1,484 | java | TestTwoPOSTPUTDELETE.java | Java | [
{
"context": "(expected, actual); }\n\n static String user1 = \"testone\";\n\n @Test\n public void test1POSTuser() {\n ",
"end": 499,
"score": 0.9994998574256897,
"start": 492,
"tag": "USERNAME",
"value": "testone"
},
{
"context": "nickname\\\": \\\"\" + user1 + \"\\\", \\\... | null | [] | package APITests;
import org.junit.FixMethodOrder;
import org.junit.Test;
import org.junit.runners.MethodSorters;
import static org.junit.Assert.assertEquals;
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class TestTwoPOSTPUTDELETE {
private static void testingString(String actual, String expected) {
... | 1,493 | 0.648922 | 0.631402 | 49 | 29.285715 | 32.523773 | 136 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.653061 | false | false | 12 |
2f70e223b8a5ae662e14f4c8871ff4775a3a60be | 4,853,313,064,085 | 0b0702a3653687386de043b4d81b7414abce6cc9 | /Assignment1/ExtraCredit.java | ac17b4973c75ed98afa1f87ce17d04faa6902b34 | [] | no_license | dsangal/Fall-2019 | https://github.com/dsangal/Fall-2019 | 3dd338d447da084426dfb556c92ab5e64b4bc102 | 2b1421420628cb0fb61adac63e7a6c62f43113eb | refs/heads/master | 2020-07-10T08:04:37.712000 | 2020-02-03T06:27:42 | 2020-02-03T06:27:42 | 204,213,145 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Scanner;
public class ExtraCredit
{
public static void main(String[] args)
{
Scanner input=new Scanner(System.in);
double usr_input;
System.out.print("Insert dollar amount (e.g 12.56):");
usr_input=input.nextDouble() * 100; //converting to cents
double ten_dollar... | UTF-8 | Java | 1,405 | java | ExtraCredit.java | Java | [] | null | [] | import java.util.Scanner;
public class ExtraCredit
{
public static void main(String[] args)
{
Scanner input=new Scanner(System.in);
double usr_input;
System.out.print("Insert dollar amount (e.g 12.56):");
usr_input=input.nextDouble() * 100; //converting to cents
double ten_dollar... | 1,405 | 0.580071 | 0.546619 | 47 | 28.914894 | 23.766443 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.787234 | false | false | 12 |
a121e918ba6dce7172db372e5c1ac56e8e15d8df | 6,571,299,984,908 | 4ccc7e7d24d63ec053f2ea584c411963104596f9 | /src/main/java/stepdefinitions/HomePageSteps.java | f737ebec06c6cb440e8764062c32ea6fa3b8226e | [] | no_license | YuliiaSikorska/Yuliia_Sikorska_Lviv_FinalTask | https://github.com/YuliiaSikorska/Yuliia_Sikorska_Lviv_FinalTask | a73e5be8135e7c3b1a1808b07d68752ccd70b677 | ee30b86c9a5d5103f0920258a66e7f573f9c6283 | refs/heads/master | 2023-08-07T09:10:07.082000 | 2021-09-21T20:36:53 | 2021-09-21T20:36:53 | 408,966,187 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package stepdefinitions;
import io.cucumber.java.en.And;
import io.cucumber.java.en.Given;
import io.cucumber.java.en.Then;
import io.cucumber.java.en.When;
import pages.HomePage;
import pages.PreferencesPage;
import static org.junit.Assert.assertTrue;
import static stepdefinitions.BasePageSteps.DEFAULT_TIMEOUT;
pub... | UTF-8 | Java | 3,076 | java | HomePageSteps.java | Java | [] | null | [] | package stepdefinitions;
import io.cucumber.java.en.And;
import io.cucumber.java.en.Given;
import io.cucumber.java.en.Then;
import io.cucumber.java.en.When;
import pages.HomePage;
import pages.PreferencesPage;
import static org.junit.Assert.assertTrue;
import static stepdefinitions.BasePageSteps.DEFAULT_TIMEOUT;
pub... | 3,076 | 0.724317 | 0.723017 | 94 | 31.734043 | 24.542267 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.319149 | false | false | 12 |
e95da5f3b1884f912b0aede99224bbe31846b58c | 6,571,299,986,209 | 16eab91eab2ead13fbf0e0fc5e0829ad357da221 | /minirpc/minirpc-protocol/src/main/java/com/adlun/minirpc/protocol/protocol/MsgType.java | f661349ed2aa00c48e09629e47ad44f2ac5e91e1 | [] | no_license | adlun/minirpc | https://github.com/adlun/minirpc | c81d04ee93c0ceb560df0c1b45ab05503fb4e37b | 6969eb33a11c0efb8a029ea5aa46389f87bb1606 | refs/heads/main | 2023-06-01T01:45:05.779000 | 2021-07-11T09:11:07 | 2021-07-11T09:11:07 | 384,903,188 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.adlun.minirpc.protocol.protocol;
import lombok.Getter;
public enum MsgType {
REQUEST((byte) 0),
RESPONSE((byte) 1),
HEARTBEAT((byte) 2);
@Getter
private byte type;
MsgType(byte type) {
this.type = type;
}
public static MsgType findByType(byte msgType) {
... | UTF-8 | Java | 528 | java | MsgType.java | Java | [] | null | [] | package com.adlun.minirpc.protocol.protocol;
import lombok.Getter;
public enum MsgType {
REQUEST((byte) 0),
RESPONSE((byte) 1),
HEARTBEAT((byte) 2);
@Getter
private byte type;
MsgType(byte type) {
this.type = type;
}
public static MsgType findByType(byte msgType) {
... | 528 | 0.549242 | 0.543561 | 29 | 17.206896 | 15.961979 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.344828 | false | false | 12 |
05160496e152c4a5ec5072eb8506ddb50a0c7b50 | 29,815,662,987,784 | a8c0a71f7782c8fb35f360ff5ed9164e1eb28edb | /june-demo-practice/src/main/java/com/june/demo/guava/collection/GuavaCollectionTest.java | 3860c458f7d38d5a9a9edd4546b6f99673ffac10 | [] | no_license | hzchengchen1/june-demo | https://github.com/hzchengchen1/june-demo | 5d025cdb3278170c7d6e3a8bdf21dd951429d7ea | b9b7b735ecf5b68de83b3557b257367eaacb9220 | refs/heads/master | 2020-04-03T15:56:36.922000 | 2018-12-17T13:02:30 | 2018-12-17T13:02:30 | 155,384,095 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.june.demo.guava.collection;
import com.google.common.collect.BiMap;
import com.google.common.collect.HashBasedTable;
import com.google.common.collect.HashBiMap;
import com.google.common.collect.Table;
/**
* Reference: https://www.yiibai.com/guava/
*
* @author think
*/
public class GuavaCollectionTest ... | UTF-8 | Java | 1,544 | java | GuavaCollectionTest.java | Java | [
{
"context": "rence: https://www.yiibai.com/guava/\n *\n * @author think\n */\npublic class GuavaCollectionTest {\n\n /**\n ",
"end": 282,
"score": 0.987670361995697,
"start": 277,
"tag": "USERNAME",
"value": "think"
}
] | null | [] | package com.june.demo.guava.collection;
import com.google.common.collect.BiMap;
import com.google.common.collect.HashBasedTable;
import com.google.common.collect.HashBiMap;
import com.google.common.collect.Table;
/**
* Reference: https://www.yiibai.com/guava/
*
* @author think
*/
public class GuavaCollectionTest ... | 1,544 | 0.59715 | 0.581606 | 53 | 28.132076 | 18.858997 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.849057 | false | false | 12 |
38b37e83e218f2239200accc22f3b3ee12e570ff | 20,753,281,989,561 | d4d43514d9da6cf99c2910f34464a884156e5844 | /Banco/src/br/com/caelum/contas/modelo/Conta.java | 7bf48039c90490d7218b33dd279d9f3c051a509b | [] | no_license | rodrigohs16/FJ11 | https://github.com/rodrigohs16/FJ11 | cacab9a2f324910c46ae8eb137d5a31bbc0fcee0 | 9753a98343b077b67e6d3785399201eb35d9a3ee | refs/heads/master | 2021-09-09T22:31:55.186000 | 2018-03-20T02:12:06 | 2018-03-20T02:12:06 | 125,648,038 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.com.caelum.contas.modelo;
/**
*
* @author Rodrigo Salinas
*
*/
public abstract class Conta {
public abstract String getTipo();// {
// return "Conta";
// }
private int numero;
private String agencia;
private String titular;
protected double saldo;
private double limite;
private Data dataDeAbe... | UTF-8 | Java | 2,770 | java | Conta.java | Java | [
{
"context": "e br.com.caelum.contas.modelo;\n\n/**\n * \n * @author Rodrigo Salinas\n *\n */\npublic abstract class Conta {\n\n\tpublic abs",
"end": 72,
"score": 0.9997045397758484,
"start": 57,
"tag": "NAME",
"value": "Rodrigo Salinas"
}
] | null | [] | package br.com.caelum.contas.modelo;
/**
*
* @author <NAME>
*
*/
public abstract class Conta {
public abstract String getTipo();// {
// return "Conta";
// }
private int numero;
private String agencia;
private String titular;
protected double saldo;
private double limite;
private Data dataDeAbertura;
... | 2,761 | 0.663653 | 0.660036 | 139 | 18.899281 | 20.486982 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.438849 | false | false | 12 |
006ab38d37052b28ac57701063d31577f8802f36 | 8,873,402,457,345 | dd6f21e83d58363215a7cfed80e7d92e1a28a931 | /sound-common/src/main/java/com/sound/model/BigVAlbum.java | d56be47121f4b7d7e5983ebe4b6b1d955d182002 | [] | no_license | huang054/sound | https://github.com/huang054/sound | b8fea7c054bdf4852604e64ffbb8ca3b30218d87 | 194c62008b7071fd80e3aecc2e553fd04b94c401 | refs/heads/master | 2020-03-29T05:05:46.421000 | 2018-10-15T08:16:40 | 2018-10-15T08:16:40 | 149,566,189 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sound.model;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationTy... | UTF-8 | Java | 2,694 | java | BigVAlbum.java | Java | [] | null | [] | package com.sound.model;
import java.io.Serializable;
import java.util.Date;
import java.util.List;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationTy... | 2,694 | 0.738095 | 0.733259 | 105 | 24.6 | 20.729826 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.447619 | false | false | 12 |
81bd9067ec4c7adcf7a4b18bed5b1ff532eb93f2 | 12,412,455,511,539 | 23dbb45d9d81dfd8be9053b90f3d7f7bedd77ee1 | /fluentgen/src/main/java/com/azure/autorest/fluent/template/FluentResourceModelInterfaceDefinitionTemplate.java | 7103c6f0242b1f6881f3f2346dff41510e2a002a | [
"MIT",
"LicenseRef-scancode-generic-cla"
] | permissive | Azure/autorest.java | https://github.com/Azure/autorest.java | aa15d03b3024938305ea8eaf5f441c7928410f13 | 6d3a0b853cdaffa269231eeb1c2cb581161888cc | refs/heads/main | 2023-09-03T07:10:13.771000 | 2023-09-01T02:53:08 | 2023-09-01T02:53:08 | 100,315,700 | 34 | 81 | MIT | false | 2023-09-14T07:04:49 | 2017-08-14T22:53:39 | 2023-08-24T20:21:59 | 2023-09-14T07:04:47 | 203,551 | 29 | 78 | 124 | Java | false | false | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.autorest.fluent.template;
import com.azure.autorest.fluent.model.clientmodel.ModelNaming;
import com.azure.autorest.fluent.model.clientmodel.fluentmodel.method.FluentMethod;
import com.azure.autorest.flue... | UTF-8 | Java | 2,878 | java | FluentResourceModelInterfaceDefinitionTemplate.java | Java | [] | null | [] | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.autorest.fluent.template;
import com.azure.autorest.fluent.model.clientmodel.ModelNaming;
import com.azure.autorest.fluent.model.clientmodel.fluentmodel.method.FluentMethod;
import com.azure.autorest.flue... | 2,878 | 0.664698 | 0.660181 | 59 | 47.779659 | 34.834751 | 128 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.627119 | false | false | 12 |
7370f8d1c59739ffec48290843f49d68e96dae47 | 12,910,671,722,198 | 39accc3d716c22a24ffab702a06db27773f5dc8e | /model/src/main/java/com/cubearrow/model/rewriting/patterns/GenericPatternVariable.java | ca931dfaea417dbc17a1694dcdaf29d90021dedb | [
"MIT"
] | permissive | xCubeArrow/EquationSolver | https://github.com/xCubeArrow/EquationSolver | f0fb0f9545fb581cda603b77917b0f48c39d7bd2 | f1f813059b3e49f54a9fdc2b28e037b66932a4ca | refs/heads/master | 2020-09-28T05:24:43.991000 | 2020-05-31T15:41:30 | 2020-05-31T15:41:30 | 226,699,512 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cubearrow.model.rewriting.patterns;
import com.cubearrow.model.tree.Node;
public class GenericPatternVariable extends Node implements GenericPattern{
private final int patternIndex;
public GenericPatternVariable(int patternIndex, Node parent) {
super(null, null, parent);
this.pat... | UTF-8 | Java | 515 | java | GenericPatternVariable.java | Java | [] | null | [] | package com.cubearrow.model.rewriting.patterns;
import com.cubearrow.model.tree.Node;
public class GenericPatternVariable extends Node implements GenericPattern{
private final int patternIndex;
public GenericPatternVariable(int patternIndex, Node parent) {
super(null, null, parent);
this.pat... | 515 | 0.695146 | 0.695146 | 22 | 22.40909 | 22.388428 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.454545 | false | false | 12 |
13bd3a010c4ce78eb07afe6ca6523c949b9b9592 | 6,227,702,603,148 | ae0eb425aa35a5d5a89db80ab66250f877dc126f | /app/src/main/java/comt/leo/picker/moreaboutview/adapter/ImpressWordAdapter.java | f7a23f89c709ce8c761e92b8487192253be69e7b | [] | no_license | lihangleo2/More-AboutView | https://github.com/lihangleo2/More-AboutView | fa710bce41535925a4050b7325a472a39057d99f | 64b583a9e7a89b61bdc0e3150def90cc18d1e509 | refs/heads/master | 2021-07-07T13:02:12.272000 | 2020-07-29T11:51:31 | 2020-07-29T11:51:31 | 161,316,540 | 6 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package comt.leo.picker.moreaboutview.adapter;
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.RelativeLayout;
import android.widget.TextView;
import com.zhy.vi... | UTF-8 | Java | 4,812 | java | ImpressWordAdapter.java | Java | [
{
"context": "w.bean.NewImpressItemBean;\r\n\r\n\r\n/**\r\n * Created by lihang on 2016/4/18.\r\n */\r\npublic class ImpressWordAdapt",
"end": 665,
"score": 0.998429536819458,
"start": 659,
"tag": "USERNAME",
"value": "lihang"
}
] | null | [] | package comt.leo.picker.moreaboutview.adapter;
import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.RelativeLayout;
import android.widget.TextView;
import com.zhy.vi... | 4,812 | 0.612986 | 0.609141 | 142 | 30.97183 | 28.412689 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.478873 | false | false | 12 |
681193db375e8f965baa34a228ae113abdf240fd | 2,980,707,322,426 | 878a2f4f4c425ed22bf5452adb5c3705fafb258b | /Aula11/src/testepainel.java | 0868192849c69e79b952704458a032d9ac25fece | [] | no_license | AndrePS2021/Serratec-Programacao-Orientada-Objeto | https://github.com/AndrePS2021/Serratec-Programacao-Orientada-Objeto | 4a620fc2ac2be4239da7f9dd52dda56c20d019d8 | fb88613ff17ba3750bf18d4e09d344842e0b62de | refs/heads/main | 2023-08-22T13:40:35.373000 | 2021-10-13T12:29:33 | 2021-10-13T12:29:33 | 415,423,279 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Painel;
import javax.swing.JOptionPane;
public class testepainel {
public static void main(String[] args) {
JOptionPane.showInputDialog(null, "mensagem aki", "aki o tipo de mensagem: informação - erro - pergunta");
String[] opcoes = {"Fechar", "Sair"};
JOptionPane.showOptionDialog(null, "TEXTO",... | ISO-8859-1 | Java | 427 | java | testepainel.java | Java | [] | null | [] | package Painel;
import javax.swing.JOptionPane;
public class testepainel {
public static void main(String[] args) {
JOptionPane.showInputDialog(null, "mensagem aki", "aki o tipo de mensagem: informação - erro - pergunta");
String[] opcoes = {"Fechar", "Sair"};
JOptionPane.showOptionDialog(null, "TEXTO",... | 427 | 0.712941 | 0.710588 | 13 | 30.692308 | 42.20533 | 138 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.538462 | false | false | 12 |
3f2f0306b1543afcf43817aa2fa6206ff998f764 | 30,915,174,658,077 | 0347165879f6e2e4c5dacab830ab55fe90817a53 | /LeetCode/020 - Valid Parentheses.java | 9d6d11eb6fe8c482a9722413f20d9226fd346e1e | [] | no_license | ArthurFRamos/InterviewPreparation | https://github.com/ArthurFRamos/InterviewPreparation | 094e7a79ded4b783fbe4d2606fbcb11d064a019c | bf91f1a91322972e823d51245a6561127f150e1e | refs/heads/master | 2021-01-13T00:54:01.464000 | 2018-10-03T23:55:54 | 2018-10-03T23:55:54 | 44,847,058 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class Solution {
public boolean isValid(String s) {
if(s.length() == 0)
return true;
LinkedList<Character> stack = new LinkedList<>();
for(int i = 0; i < s.length(); i++)
{
char temp = s.charAt(i);
i... | UTF-8 | Java | 906 | java | 020 - Valid Parentheses.java | Java | [] | null | [] | public class Solution {
public boolean isValid(String s) {
if(s.length() == 0)
return true;
LinkedList<Character> stack = new LinkedList<>();
for(int i = 0; i < s.length(); i++)
{
char temp = s.charAt(i);
i... | 906 | 0.33223 | 0.330022 | 31 | 27.225807 | 16.063803 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.516129 | false | false | 12 |
ff3983d8054828e2d228d1430bfc2052d25ec8d6 | 32,341,103,747,600 | aee949f758d23b81457ca1efd9f0273c7106a02c | /test-expert/src/test/java/nl/carpago/testexpert/PeoplePerson.java | f547fec10132ce6eb9816fea62cda95ce09a2fab | [
"BSD-3-Clause"
] | permissive | carpago/test-expert | https://github.com/carpago/test-expert | 65f2e23e1e9d4599756e4b051d936c3134af3d9e | 9e2dd1731929a4348f11bfd8ab3ca7edec766d7b | refs/heads/master | 2016-09-06T21:36:39.523000 | 2015-03-23T13:29:49 | 2015-03-23T13:29:49 | 20,476,747 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package nl.carpago.testexpert;
public class PeoplePerson {
private int leeftijd;
private String voornaam;
public PeoplePerson(int leeftijd, String voornaam) {
this.leeftijd = leeftijd;
}
}
| UTF-8 | Java | 204 | java | PeoplePerson.java | Java | [] | null | [] | package nl.carpago.testexpert;
public class PeoplePerson {
private int leeftijd;
private String voornaam;
public PeoplePerson(int leeftijd, String voornaam) {
this.leeftijd = leeftijd;
}
}
| 204 | 0.740196 | 0.740196 | 13 | 14.692307 | 16.363113 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.153846 | false | false | 12 |
0e63bdc735fd602c61ae9aa5680dde36dc8833f8 | 11,905,649,392,620 | f5f6dce835eccc438f1157ad5528ed4feefac7c7 | /src/main/java/com/example/demo/service/AirportService.java | aa79dab23209b48ee85c8c43e9b5d85154959372 | [] | no_license | drxaos-edu/instrumenting-profiler | https://github.com/drxaos-edu/instrumenting-profiler | 5be80a6370619b488ca477fbfa8ae86e8651b49a | 29d71d090c27ea5ff182ea3af4abfb84368d0364 | refs/heads/master | 2021-05-01T12:04:28.731000 | 2018-03-14T12:42:26 | 2018-03-14T12:42:26 | 121,056,750 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.demo.service;
import com.example.demo.domain.air.Airport;
import com.example.demo.domain.air.AirportsRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import jav... | UTF-8 | Java | 1,682 | java | AirportService.java | Java | [] | null | [] | package com.example.demo.service;
import com.example.demo.domain.air.Airport;
import com.example.demo.domain.air.AirportsRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import jav... | 1,682 | 0.698573 | 0.698573 | 53 | 30.735849 | 31.134008 | 153 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.509434 | false | false | 12 |
9b4b0a2f8e39f9fb71be995e948bc7eacefe9383 | 21,423,296,880,013 | 1211ad4c61933d809971e02c7860bd0986be287c | /lab-model/src/main/java/pl/edu/agh/kis/soa/dao/StudentDao.java | 17f1214e0a0d33bcc95eae97d55d81fc984a5f1d | [] | no_license | matewydm/lab-soa | https://github.com/matewydm/lab-soa | b616b4ee54b4c84df14b1f236b8e6fc8c035fa9f | 3d147e006b9d766b74a703c9fc94a19d695be4f1 | refs/heads/master | 2021-01-21T17:28:10.940000 | 2017-05-30T06:42:32 | 2017-05-30T06:42:32 | 91,952,800 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pl.edu.agh.kis.soa.dao;
import pl.edu.agh.kis.soa.model.db.StudentEntity;
import javax.ejb.Local;
import java.util.List;
public interface StudentDao {
void save(StudentEntity student);
void update(StudentEntity student);
void delete(StudentEntity student);
List<StudentEntity> getAll();
... | UTF-8 | Java | 448 | java | StudentDao.java | Java | [] | null | [] | package pl.edu.agh.kis.soa.dao;
import pl.edu.agh.kis.soa.model.db.StudentEntity;
import javax.ejb.Local;
import java.util.List;
public interface StudentDao {
void save(StudentEntity student);
void update(StudentEntity student);
void delete(StudentEntity student);
List<StudentEntity> getAll();
... | 448 | 0.736607 | 0.736607 | 23 | 18.47826 | 18.474117 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.478261 | false | false | 12 |
f64090a99f8394c4e6777a7e712ee529f546f4c3 | 30,399,778,572,170 | bfe7ebfe848ef5a059d20e942d8cdf1960520043 | /trainingmanagementsystem (1)/src/main/java/com/virtusa/trainingmanagementsystem/services/FeedbackService.java | 227f8cdb78c72dce8550a54a9644806bfc9bd259 | [] | no_license | rakshi98/2ndPhase | https://github.com/rakshi98/2ndPhase | 83b7610fc0f044088080ea413cd0c45d55df4c40 | 21534f91406e0c0bfe24e0d657881ea54db42016 | refs/heads/master | 2022-11-22T05:29:17.711000 | 2019-10-15T01:33:28 | 2019-10-15T01:33:28 | 215,141,519 | 0 | 0 | null | false | 2022-11-16T06:29:48 | 2019-10-14T20:43:00 | 2019-10-15T01:33:30 | 2022-11-16T06:29:46 | 1,794 | 0 | 0 | 1 | Java | false | false | package com.virtusa.trainingmanagementsystem.services;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.virtusa.trainingmanagementsystem.models.Employee;
import com.virtusa.trainingmanagementsystem.models.Feedback;... | UTF-8 | Java | 1,379 | java | FeedbackService.java | Java | [] | null | [] | package com.virtusa.trainingmanagementsystem.services;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.virtusa.trainingmanagementsystem.models.Employee;
import com.virtusa.trainingmanagementsystem.models.Feedback;... | 1,379 | 0.762872 | 0.762872 | 57 | 22.192982 | 24.891651 | 81 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.596491 | false | false | 12 |
7d3cbd0b5b98f4d6fd78e20b0028f9645cbcf77d | 30,399,778,569,957 | 98ff3a1ae27e59d90af051f14d1ed1c15b209f4e | /AdditionalTasks/MovieDatabase/src/com/javastart/movieDatabase/fileController/SerializableDatabaseWriter.java | d4e2a081518bb38bf0f8c821cb553e830722d52c | [] | no_license | PaulinaGrabska/Javastart | https://github.com/PaulinaGrabska/Javastart | e7a67562b59c0b58dad61f5a6eaef422d3796db9 | d172dfb435f3e93faef7731c28e93da7f9516c54 | refs/heads/master | 2020-05-19T09:05:10.043000 | 2019-07-12T11:22:31 | 2019-07-12T11:22:31 | 184,938,357 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.javastart.movieDatabase.fileController;
public class SerializableDatabaseWriter {
}
| UTF-8 | Java | 97 | java | SerializableDatabaseWriter.java | Java | [] | null | [] | package com.javastart.movieDatabase.fileController;
public class SerializableDatabaseWriter {
}
| 97 | 0.85567 | 0.85567 | 4 | 23.25 | 23.025801 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.25 | false | false | 12 |
83e5ab9b9c1384ad25b90b9e167ed5838efa04fb | 8,211,977,534,761 | fceba1e7cf2cb721fc032bbc4a58c8ec833e40fa | /src/com/practice/oops/Person.java | 44e8105981cadc2b809b3dea8a78be5ffb65a501 | [] | no_license | sandeeppeddinti/test | https://github.com/sandeeppeddinti/test | 84958b517b39669519670b9af75c51ad908f3344 | 182752297fdca70c7bbd38cd7469b3f83718e6c0 | refs/heads/master | 2021-01-19T19:39:29.710000 | 2017-04-16T18:55:42 | 2017-04-16T18:55:42 | 88,432,725 | 0 | 0 | null | false | 2017-04-16T18:55:42 | 2017-04-16T18:00:22 | 2017-04-16T18:19:41 | 2017-04-16T18:55:42 | 0 | 0 | 0 | 0 | Java | null | null | package com.practice.oops;
public abstract class Person {
String name;
int Age;
int Height;
int weight;
String EyeColor;
String Gender;
public String sendName(String inputName){
name = "Hi "+inputName;
return name;
}
public abstract void displayEmpSal();
}
| UTF-8 | Java | 303 | java | Person.java | Java | [] | null | [] | package com.practice.oops;
public abstract class Person {
String name;
int Age;
int Height;
int weight;
String EyeColor;
String Gender;
public String sendName(String inputName){
name = "Hi "+inputName;
return name;
}
public abstract void displayEmpSal();
}
| 303 | 0.653465 | 0.653465 | 18 | 14.833333 | 13.04373 | 43 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.388889 | false | false | 12 |
afbd6535666ee09dff2e503125000b73ecca2bcc | 1,992,864,841,335 | ab7946c03b32cfb953d65645ea7aec9397492012 | /tratorweb/src/main/java/com/agrofauna/tratorweb/model/Login.java | 1a86d63ca859c712c9e42e86611138bcb49bfe25 | [] | no_license | wesleyhsm/Loja-Virtual-Trator | https://github.com/wesleyhsm/Loja-Virtual-Trator | d0877977573eb5b38b1902af3b155c487d0d68d0 | f0cd0876282066b475878128040fb631b00ead53 | refs/heads/master | 2021-01-20T09:54:52.409000 | 2017-05-04T19:38:23 | 2017-05-04T19:38:23 | 90,299,682 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.agrofauna.tratorweb.model;
import java.io.Serializable;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.p... | UTF-8 | Java | 2,874 | java | Login.java | Java | [] | null | [] | package com.agrofauna.tratorweb.model;
import java.io.Serializable;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.p... | 2,874 | 0.730689 | 0.727209 | 136 | 20.139706 | 19.515896 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.25 | false | false | 12 |
b4ba2877da14cd64b2b95b60056a795e021b2c8b | 5,342,939,384,423 | 49d2470d5cd15ddf3579e8127a41d25c52495efe | /src/main/java/com/egs/shop/service/RateService.java | 16a7b22251d17487b57d0967426c1467a4456824 | [] | no_license | mnazarizadeh/egs-shop | https://github.com/mnazarizadeh/egs-shop | 55ce7a90c69723b13d1b5d00c57398fac8b5808c | 2eb216d10faf1fae12c2769bf3f0e36274745501 | refs/heads/main | 2023-07-17T01:45:11.897000 | 2021-08-29T08:05:19 | 2021-08-29T08:05:19 | 399,588,707 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.egs.shop.service;
import com.egs.shop.model.dto.RateDTO;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
public interface RateService {
RateDTO createRate(RateDTO rateDTO);
RateDTO updateRate(RateDTO rateDTO);
Page<RateDTO> getAllRates(Pageable ... | UTF-8 | Java | 660 | java | RateService.java | Java | [] | null | [] | package com.egs.shop.service;
import com.egs.shop.model.dto.RateDTO;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
public interface RateService {
RateDTO createRate(RateDTO rateDTO);
RateDTO updateRate(RateDTO rateDTO);
Page<RateDTO> getAllRates(Pageable ... | 660 | 0.754545 | 0.754545 | 29 | 21.758621 | 23.061619 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.551724 | false | false | 12 |
93291245e93e34977c8db13f7e461721d7ff3950 | 6,528,350,318,187 | c91ec62aef35cf3e3a6b6f8b6f00481bd92099a7 | /Geometria/src/modelo/Circulo.java | b96fb9a6d3c29e6c712e1f4b4dc59eec1a381e56 | [] | no_license | aperez536/Ejercicio-java-unla | https://github.com/aperez536/Ejercicio-java-unla | f3e793571acc52d78ddb73f299f943dc4f48d5b0 | 5e97b43c6bff2fb2a984f9730f484ad9573956a5 | refs/heads/master | 2020-03-28T21:36:53.646000 | 2019-01-05T18:49:35 | 2019-01-05T18:49:35 | 149,169,558 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package modelo;
public class Circulo {
private Punto origen;
private double radio;
public Circulo(Punto origen, double radio) {
super();
this.origen = origen;
this.radio = radio;
}
public Circulo(Punto origen, Punto radio) {
super();
this.origen = origen;
this.setRadio(radio);
}
public Punto ... | UTF-8 | Java | 1,363 | java | Circulo.java | Java | [] | null | [] | package modelo;
public class Circulo {
private Punto origen;
private double radio;
public Circulo(Punto origen, double radio) {
super();
this.origen = origen;
this.radio = radio;
}
public Circulo(Punto origen, Punto radio) {
super();
this.origen = origen;
this.setRadio(radio);
}
public Punto ... | 1,363 | 0.699193 | 0.694791 | 71 | 18.197184 | 18.346907 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.661972 | false | false | 12 |
0e1b2d3694e9b0c02542baa2ed13a26b47bfdcee | 19,885,698,593,855 | e53a2390cf8f3fcb96152011215d5926270a574a | /mainPackage/GrrrrException.java | eeb8b6d9abbf1a7448af34a01e1f0cb6c4d243e4 | [] | no_license | dariopassarello/superTextBattleRoyale | https://github.com/dariopassarello/superTextBattleRoyale | 90845648687d1ad03f74c96592897daf3a0c934d | f06215b33e3eec2395a99e8558f8b03cad4a5418 | refs/heads/master | 2020-04-07T23:26:35.625000 | 2018-11-24T11:06:06 | 2018-11-24T11:06:06 | 158,812,873 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package daryx77.superTextBattleRoyale.mainPackage;
public class GrrrrException extends Exception
{
/**
*
*/
public GrrrrException()
{
super("GRRRRR");
}
}
| UTF-8 | Java | 171 | java | GrrrrException.java | Java | [
{
"context": "package daryx77.superTextBattleRoyale.mainPackage;\n\npublic class ",
"end": 15,
"score": 0.9347893595695496,
"start": 8,
"tag": "USERNAME",
"value": "daryx77"
}
] | null | [] | package daryx77.superTextBattleRoyale.mainPackage;
public class GrrrrException extends Exception
{
/**
*
*/
public GrrrrException()
{
super("GRRRRR");
}
}
| 171 | 0.690058 | 0.678363 | 14 | 11.214286 | 16.506184 | 50 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.785714 | false | false | 12 |
88804382806609dfd9d7013a1566eb906184f4eb | 2,216,203,193,788 | 8c085f12963e120be684f8a049175f07d0b8c4e5 | /castor/tags/TAG_0_9_9_M2/castor/src/tests/jdo/TestLazyPayRoll.java | b316951fad8e7f737a58d02542e8a7ba88a1829d | [] | no_license | alam93mahboob/castor | https://github.com/alam93mahboob/castor | 9963d4110126b8f4ef81d82adfe62bab8c5f5bce | 974f853be5680427a195a6b8ae3ce63a65a309b6 | refs/heads/master | 2020-05-17T08:03:26.321000 | 2014-01-01T20:48:45 | 2014-01-01T20:48:45 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package jdo;
public class TestLazyPayRoll {
private int _id;
private int _holiday;
private int _hourlyRate;
private TestLazyEmployee _employee;
public void setId( int id ) {
_id = id;
}
public int getId() {
return _id;
}
public void setHoliday( int holiday ) {
... | UTF-8 | Java | 704 | java | TestLazyPayRoll.java | Java | [] | null | [] |
package jdo;
public class TestLazyPayRoll {
private int _id;
private int _holiday;
private int _hourlyRate;
private TestLazyEmployee _employee;
public void setId( int id ) {
_id = id;
}
public int getId() {
return _id;
}
public void setHoliday( int holiday ) {
... | 704 | 0.607955 | 0.607955 | 35 | 19.085714 | 14.84659 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.628571 | false | false | 12 |
4199cab6ef03b3bcf5a3da18b2e76ab5775eca17 | 27,943,057,293,445 | 77fc25369090ba6290d070d6326724c03aad54ec | /app/src/main/java/com/xczn/smos/ui/fragment/home/analysis/AnalysisFragment.java | 9e31a4be5e61bb41d986c1218ddcfd49bd317d7e | [] | no_license | LifeisYou/Smos-admin | https://github.com/LifeisYou/Smos-admin | dc1af87b9e85c659fe956f9ff008e95918d9f2c2 | 947232ab350d86ebe2efd3102924cdb80a6e5fbd | refs/heads/master | 2020-03-23T09:01:41.082000 | 2018-07-19T08:08:42 | 2018-07-19T08:08:42 | 141,362,677 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.xczn.smos.ui.fragment.home.analysis;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v7.widget.Toolbar;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.... | UTF-8 | Java | 2,494 | java | AnalysisFragment.java | Java | [
{
"context": "import android.widget.Spinner;\n\nimport com.github.mikephil.charting.charts.LineChart;\nimport com.xczn.smos.R",
"end": 386,
"score": 0.8642770051956177,
"start": 378,
"tag": "USERNAME",
"value": "mikephil"
},
{
"context": ".ArrayList;\nimport java.util.List;\n\n/**\n ... | null | [] | package com.xczn.smos.ui.fragment.home.analysis;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v7.widget.Toolbar;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.... | 2,494 | 0.693081 | 0.687852 | 80 | 30.075001 | 24.719818 | 132 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5625 | false | false | 12 |
6b696343dda4ac32cd42be0a6d44eb7aacda0b0c | 31,318,901,580,222 | a3b684f79fc5727e8feaaee094d201ffe8be631d | /elara-core/src/main/java/org/tools4j/elara/factory/DefaultProcessorFactory.java | 6ca8fc0ecb8065191ef238b3134c3f93df197c2a | [
"MIT"
] | permissive | bellmit/elara | https://github.com/bellmit/elara | c2308c1645279219aa607a4d10dbab92a2463402 | cdc9e3600ab023931dfce15224b8eeab4a1e58b2 | refs/heads/master | 2023-09-05T15:04:46.279000 | 2021-11-19T11:31:30 | 2021-11-19T11:31:30 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* The MIT License (MIT)
*
* Copyright (c) 2020-2021 tools4j.org (Marco Terzer, Anton Anufriev)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including witho... | UTF-8 | Java | 4,715 | java | DefaultProcessorFactory.java | Java | [
{
"context": " (MIT)\n *\n * Copyright (c) 2020-2021 tools4j.org (Marco Terzer, Anton Anufriev)\n *\n * Permission is hereby grant",
"end": 83,
"score": 0.9998688101768494,
"start": 71,
"tag": "NAME",
"value": "Marco Terzer"
},
{
"context": "Copyright (c) 2020-2021 tools4j.org (Marco... | null | [] | /*
* The MIT License (MIT)
*
* Copyright (c) 2020-2021 tools4j.org (<NAME>, <NAME>)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation ... | 4,701 | 0.699258 | 0.693107 | 111 | 41.477478 | 31.671127 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.657658 | false | false | 12 |
6a5612dd424f6ca28f1711a96c18ed0dd54ad742 | 1,700,807,050,840 | c173832fd576d45c875063a1a480672fbd59ca04 | /seguridad/tags/release-1.0/modulos/apps/localgismezcla/src/com/geopista/app/printer/CDocument.java | dc45214ff9ccd7279472a605d796282c556ab1ef | [] | no_license | jormaral/allocalgis | https://github.com/jormaral/allocalgis | 1308616b0f3ac8aa68fb0820a7dfa89d5a64d0e6 | bd5b454b9c2e8ee24f70017ae597a32301364a54 | refs/heads/master | 2021-01-16T18:08:36.542000 | 2016-04-12T11:43:18 | 2016-04-12T11:43:18 | 50,914,723 | 0 | 0 | null | true | 2016-02-02T11:04:27 | 2016-02-02T11:04:27 | 2016-01-21T09:50:03 | 2016-01-28T13:15:00 | 519,283 | 0 | 0 | 0 | null | null | null | package com.geopista.app.printer;
import java.awt.*;
import java.awt.geom.Rectangle2D;
import java.awt.print.PageFormat;
import java.awt.print.Printable;
import java.net.URL;
import java.net.MalformedURLException;
/**
* This class is the painter for the document content.
*/
public class CDocument exten... | UTF-8 | Java | 2,096 | java | CDocument.java | Java | [] | null | [] | package com.geopista.app.printer;
import java.awt.*;
import java.awt.geom.Rectangle2D;
import java.awt.print.PageFormat;
import java.awt.print.Printable;
import java.net.URL;
import java.net.MalformedURLException;
/**
* This class is the painter for the document content.
*/
public class CDocument exten... | 2,096 | 0.693225 | 0.687023 | 67 | 29.283583 | 32.508003 | 191 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.791045 | false | false | 12 |
1dff84acebdd1741217521c2dd0d975c8bd30ecf | 7,473,243,154,240 | 87c616e8dbfd2b95393029245682535620ef0b45 | /Mage.Tests/src/test/java/org/mage/test/cards/single/OmniscienceTest.java | 088b01789cdfde55e13ff46e08b519101119b5c5 | [] | no_license | PedroTav/mage | https://github.com/PedroTav/mage | c625378af8d966b3c0852dfd66dcaf9171a33f23 | 2e551a971cb3fe71bf73e9b01766b1caf394ef10 | refs/heads/master | 2021-01-24T11:44:18.685000 | 2016-12-18T15:08:00 | 2016-12-18T15:08:00 | 70,226,202 | 1 | 2 | null | true | 2016-10-14T08:09:23 | 2016-10-07T07:55:50 | 2016-10-07T08:43:23 | 2016-10-14T08:09:22 | 452,372 | 1 | 1 | 0 | Java | null | null | /*
* Copyright 2010 BetaSteward_at_googlemail.com. 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 lis... | UTF-8 | Java | 11,353 | java | OmniscienceTest.java | Java | [
{
"context": "erside.base.CardTestPlayerBase;\n\n/**\n *\n * @author LevelX2\n */\npublic class OmniscienceTest extends CardTest",
"end": 1880,
"score": 0.9993703961372375,
"start": 1873,
"tag": "USERNAME",
"value": "LevelX2"
}
] | null | [] | /*
* Copyright 2010 BetaSteward_at_googlemail.com. 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 lis... | 11,353 | 0.66194 | 0.652074 | 295 | 37.484745 | 31.947292 | 128 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.074576 | false | false | 12 |
44fb5a6fb4fcb1160d9631aa10a31ff475a1e22c | 7,980,049,256,118 | b59eb879116d608e9c7df70a16a189e270dcb94f | /app/src/main/java/com/annimon/hotarufx/bundles/BundleLoader.java | abd56718ea5583e27f09fc3467f37c6e7e34a36e | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | aNNiMON/HotaruFX | https://github.com/aNNiMON/HotaruFX | 9672491b3c26e5e0b221eed561ee2237908a213b | 691064bb5e2277c6484ab5397385b1512d753fe7 | refs/heads/master | 2022-12-11T01:03:19.756000 | 2020-08-27T22:02:33 | 2020-08-27T22:02:33 | 103,023,961 | 12 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.annimon.hotarufx.bundles;
import com.annimon.hotarufx.lib.Context;
import java.lang.reflect.InvocationTargetException;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.function.BiConsumer;
public final class Bund... | UTF-8 | Java | 1,834 | java | BundleLoader.java | Java | [] | null | [] | package com.annimon.hotarufx.bundles;
import com.annimon.hotarufx.lib.Context;
import java.lang.reflect.InvocationTargetException;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.function.BiConsumer;
public final class Bund... | 1,834 | 0.622683 | 0.622683 | 53 | 33.603775 | 27.183748 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.830189 | false | false | 12 |
79c0ab3fa90edb33201ccb961f270a6d8f39842a | 11,055,245,841,603 | 164f8ef0cdb499c022bcbcad418e78b36f12b782 | /DM/src/hicamp/DataShow/ReaderShow/Reader.java | 1e399286998ca90f52e56da587fb9ff2d2487131 | [] | no_license | zhpmatrix/DataMining | https://github.com/zhpmatrix/DataMining | 779946e500294db0d2fa9d0d2b68574cb5fa2c77 | 538147da2a59ddc746d8b59b7846eb39d50e6f79 | refs/heads/master | 2016-02-28T02:27:34.759000 | 2013-11-03T14:57:28 | 2013-11-03T14:57:28 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
*
*/
package hicamp.DataShow.ReaderShow;
/**
* @author matrix
* @date:2013-10-29 下午04:18:15
* @version:
*
*/
public class Reader {
public static final int PAGE_SIZE = 6;
private String id;
private String pwd;
private String ins;
private String maj;
private String sex;
... | UTF-8 | Java | 848 | java | Reader.java | Java | [
{
"context": "ckage hicamp.DataShow.ReaderShow;\r\n/**\r\n * @author matrix\r\n * @date:2013-10-29 下午04:18:15\r\n * @version:\r\n *",
"end": 74,
"score": 0.8064064979553223,
"start": 68,
"tag": "USERNAME",
"value": "matrix"
}
] | null | [] | /**
*
*/
package hicamp.DataShow.ReaderShow;
/**
* @author matrix
* @date:2013-10-29 下午04:18:15
* @version:
*
*/
public class Reader {
public static final int PAGE_SIZE = 6;
private String id;
private String pwd;
private String ins;
private String maj;
private String sex;
... | 848 | 0.591232 | 0.57346 | 50 | 14.88 | 11.61833 | 39 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.28 | false | false | 12 |
def761354002bcd335cc95075efd0e73703455b5 | 420,906,799,466 | 8a91f5ed5ba3763f7ce827abff65005f7e0302dd | /src/main/java/com/iotek/service/AdminService.java | d57ac119d6bce9f5436eb3eeca26eeec34920079 | [] | no_license | 120720127suncheng/maven_shopping | https://github.com/120720127suncheng/maven_shopping | a35cac43ef80783134df45aa0cc79e89325cdeae | 2b8dd23347a065c6324b66b0117f91042f56db67 | refs/heads/master | 2021-04-03T05:54:00.973000 | 2018-03-22T15:19:58 | 2018-03-22T15:19:58 | 124,633,712 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.iotek.service;
import com.iotek.po.Admin;
/**
* com.iotek.service
*
* @author <Author Administrator>
* @date 2018/3/19 22:58
*/
public interface AdminService {
boolean addAdmin(Admin admin);
Admin findAdminByPassword(Admin admin);
boolean updateAdmin(Admin admin);
boolean updateAdminA... | UTF-8 | Java | 384 | java | AdminService.java | Java | [
{
"context": "n;\n\n/**\n * com.iotek.service\n *\n * @author <Author Administrator>\n * @date 2018/3/19 22:58\n */\npublic interface Ad",
"end": 116,
"score": 0.8868205547332764,
"start": 103,
"tag": "NAME",
"value": "Administrator"
}
] | null | [] | package com.iotek.service;
import com.iotek.po.Admin;
/**
* com.iotek.service
*
* @author <Author Administrator>
* @date 2018/3/19 22:58
*/
public interface AdminService {
boolean addAdmin(Admin admin);
Admin findAdminByPassword(Admin admin);
boolean updateAdmin(Admin admin);
boolean updateAdminA... | 384 | 0.726563 | 0.697917 | 17 | 21.647058 | 16.200731 | 47 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.411765 | false | false | 12 |
f85730776ce51aaad94b4141d5e6b43f4aa0c029 | 24,472,723,661,246 | 91adad30d19b142195418ae556052fc5949042cf | /src/main/java/com/taiji/app/service/TAppInfoService.java | 0c12c7285ccf89445a82bef6b603b2e94d271764 | [] | no_license | star-storm/sw-view | https://github.com/star-storm/sw-view | 735799618d50f71833fac76f7278dae7a19e744e | 7ef97e5ea568ff66599c3d2b63b85e29485a5fdc | refs/heads/master | 2022-12-15T20:16:11.488000 | 2020-09-11T02:25:40 | 2020-09-11T02:25:40 | 293,401,404 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
*
*/
package com.taiji.app.service;
import java.util.List;
import com.taiji.admin.common.LogMsgInfo;
import com.taiji.admin.common.PageInfo;
import com.taiji.admin.model.SUser;
import com.taiji.app.model.TAppInfo;
/**
*
* sw-view com.taiji.app.service TAppInfoService.java
*
* @author hsl
*
* 2020年5月9日 ... | UTF-8 | Java | 976 | java | TAppInfoService.java | Java | [
{
"context": "iji.app.service TAppInfoService.java\n *\n * @author hsl\n *\n * 2020年5月9日 下午4:39:29\n *\n * desc:\n */\npublic ",
"end": 303,
"score": 0.999524712562561,
"start": 300,
"tag": "USERNAME",
"value": "hsl"
}
] | null | [] | /**
*
*/
package com.taiji.app.service;
import java.util.List;
import com.taiji.admin.common.LogMsgInfo;
import com.taiji.admin.common.PageInfo;
import com.taiji.admin.model.SUser;
import com.taiji.app.model.TAppInfo;
/**
*
* sw-view com.taiji.app.service TAppInfoService.java
*
* @author hsl
*
* 2020年5月9日 ... | 976 | 0.651648 | 0.63956 | 60 | 14.166667 | 21.023136 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.95 | false | false | 12 |
25767681fe30ba778a1be91675763d4dcd807736 | 32,762,010,538,272 | 4bbb3ece3857c7ac905091c2c01e5439e6a99780 | /dede/src/main/java/net/frank/dede/rowmapper/DedeMtypesRowMapper.java | 254bcd25648b78c56d97d19dd9f314148f7c9a4b | [] | no_license | frankzhf/dream | https://github.com/frankzhf/dream | b98d77de2ea13209aed52a0499cced0be7b99d3c | c90edbdd8dcdb4b0e7c8c22c1fccdefadeb85791 | refs/heads/master | 2022-12-22T12:20:29.710000 | 2020-10-13T02:41:37 | 2020-10-13T02:41:37 | 38,374,538 | 0 | 1 | null | false | 2022-12-16T01:03:37 | 2015-07-01T14:06:19 | 2020-10-13T02:43:04 | 2022-12-16T01:03:33 | 82,177 | 0 | 1 | 70 | JavaScript | false | false | package net.frank.dede.rowmapper;
import java.sql.ResultSet;
import java.sql.SQLException;
import net.frank.dede.bean.DedeMtypes;
import org.springframework.jdbc.core.RowMapper;
public final class DedeMtypesRowMapper implements RowMapper<DedeMtypes> {
@Override
public DedeMtypes mapRow(ResultSet rs, ... | UTF-8 | Java | 579 | java | DedeMtypesRowMapper.java | Java | [] | null | [] | package net.frank.dede.rowmapper;
import java.sql.ResultSet;
import java.sql.SQLException;
import net.frank.dede.bean.DedeMtypes;
import org.springframework.jdbc.core.RowMapper;
public final class DedeMtypesRowMapper implements RowMapper<DedeMtypes> {
@Override
public DedeMtypes mapRow(ResultSet rs, ... | 579 | 0.73057 | 0.73057 | 22 | 24.318182 | 20.516926 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.363636 | false | false | 12 |
65c041021a847fbf6982a2a220f335ef166deb9c | 9,148,280,352,892 | bb78cd9387bb51b1dc32fb7eee6cd9b72cb57b55 | /mobile/build/tmp/kapt3/stubs/debug/com/google/samples/apps/iosched/ui/signin/SignInEvent.java | 4aedc128e60839d1e99109c8442a7e24bf833550 | [
"Apache-2.0"
] | permissive | IgorGolubenkov/qa_task_city_mobil | https://github.com/IgorGolubenkov/qa_task_city_mobil | 25db6fe5c61c05adb3a0fd8b4ba967a98cb62b9f | 6a296bd44fd991e3140e847c785c2669e8d641cb | refs/heads/master | 2020-12-11T14:07:19.752000 | 2020-01-14T14:39:16 | 2020-01-14T14:39:16 | 233,859,471 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.google.samples.apps.iosched.ui.signin;
import java.lang.System;
@kotlin.Metadata(mv = {1, 1, 15}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0010\n\u0002\b\u0004\b\u0086\u0001\u0018\u00002\b\u0012\u0004\u0012\u00020\u00000\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002j\... | UTF-8 | Java | 719 | java | SignInEvent.java | Java | [] | null | [] | package com.google.samples.apps.iosched.ui.signin;
import java.lang.System;
@kotlin.Metadata(mv = {1, 1, 15}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0010\n\u0002\b\u0004\b\u0086\u0001\u0018\u00002\b\u0012\u0004\u0012\u00020\u00000\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002j\... | 719 | 0.698192 | 0.499305 | 12 | 59 | 116.997154 | 438 | false | false | 0 | 0 | 36 | 0.150209 | 0 | 0 | 1.583333 | false | false | 12 |
578c782c35c9b1c829f0625c1e531a119144cf79 | 21,878,563,434,377 | 9b7fee1eab11c55fa17458531a60a695acfc8821 | /src/main/java/com/athena/backend/platform/dto/users/UserSettingsDTO.java | 1f428df23c1f847c90ac1c7db414e29524cbe967 | [] | no_license | myteksp/athena-platform | https://github.com/myteksp/athena-platform | ccb522678fc1bf9e11e909463363bf61372353f9 | 0521a969aff2c7bfe362465ce0ea7d531f06aa0e | refs/heads/master | 2021-01-22T00:36:42.835000 | 2019-04-16T11:17:57 | 2019-04-16T11:17:57 | 102,191,188 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.athena.backend.platform.dto.users;
import com.gf.util.string.JSON;
public final class UserSettingsDTO {
public HomeSceenWidget homeWidget;
public String homeWidgetParam;
public String homeWidgetImageUrl;
public static enum HomeSceenWidget{
NONE, MINIGAME, APP_PAGE
}
@Override
public final int ... | UTF-8 | Java | 744 | java | UserSettingsDTO.java | Java | [] | null | [] | package com.athena.backend.platform.dto.users;
import com.gf.util.string.JSON;
public final class UserSettingsDTO {
public HomeSceenWidget homeWidget;
public String homeWidgetParam;
public String homeWidgetImageUrl;
public static enum HomeSceenWidget{
NONE, MINIGAME, APP_PAGE
}
@Override
public final int ... | 744 | 0.724462 | 0.724462 | 33 | 21.545454 | 16.542124 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.636364 | false | false | 12 |
08ad472afdcbc3040134f228afe7075e806185ea | 13,280,038,886,974 | 3d8bf2ce9adfe8c5ed704c0b8695eb8bdc0df4d2 | /src/main/java/net/blay09/mods/cookingbook/client/model/ModelSmallFridge.java | 60e17b9240beb5ac1f452d6a2fff7fc64090f823 | [
"MIT"
] | permissive | CannibalVox/CookingForBlockheads | https://github.com/CannibalVox/CookingForBlockheads | bcd1fd9acc9b3f39a7a4d4b0a9bf096dac333eb5 | c7274a3b532982313f64f6e776a0184f923980cf | refs/heads/master | 2021-01-15T16:41:22.905000 | 2015-08-23T17:53:27 | 2015-08-23T17:53:27 | 41,258,612 | 1 | 0 | null | true | 2015-08-23T17:01:01 | 2015-08-23T17:01:00 | 2015-07-24T10:29:31 | 2015-08-19T15:44:36 | 488 | 0 | 0 | 0 | null | null | null | package net.blay09.mods.cookingbook.client.model;
import net.minecraft.client.model.ModelBase;
import net.minecraft.client.model.ModelRenderer;
import net.minecraft.entity.Entity;
import org.lwjgl.opengl.GL11;
/**
* Small Fridge - Blay & Zero
* Created using Tabula 5.1.0
*/
public class ModelSmallFridge extends Mo... | UTF-8 | Java | 6,698 | java | ModelSmallFridge.java | Java | [] | null | [] | package net.blay09.mods.cookingbook.client.model;
import net.minecraft.client.model.ModelBase;
import net.minecraft.client.model.ModelRenderer;
import net.minecraft.entity.Entity;
import org.lwjgl.opengl.GL11;
/**
* Small Fridge - Blay & Zero
* Created using Tabula 5.1.0
*/
public class ModelSmallFridge extends Mo... | 6,698 | 0.633174 | 0.540908 | 157 | 41.662422 | 20.973915 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.076433 | false | false | 12 |
43f5c915f00244584e662b2e0fca745b37019e1e | 17,824,114,282,092 | 0339a2bd13d4ced5498bf45e9037ff923f88aca9 | /app/src/main/java/com/example/legible/seguridadargusapp/View/Activity/Captura/AsistioActivity.java | 257275da82c05873443185e58d8458950ab89807 | [] | no_license | SergioSilvaL/ArgusSeguridadApp | https://github.com/SergioSilvaL/ArgusSeguridadApp | bc1f6168fd7be54fbf0863c946bb2cd0ba97452c | 34ae1cb05b861f3d590ffb031eef51ae0de99c91 | refs/heads/master | 2021-01-19T13:41:22.881000 | 2017-08-10T18:12:54 | 2017-08-10T18:12:54 | 82,410,015 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.legible.seguridadargusapp.View.Activity.Captura;
import android.os.Bundle;
import android.view.View;
import com.example.legible.seguridadargusapp.R;
import java.util.HashMap;
import java.util.Map;
public class AsistioActivity extends CapturaActivity {
@Override
protected void onCreate(B... | UTF-8 | Java | 1,699 | java | AsistioActivity.java | Java | [] | null | [] | package com.example.legible.seguridadargusapp.View.Activity.Captura;
import android.os.Bundle;
import android.view.View;
import com.example.legible.seguridadargusapp.R;
import java.util.HashMap;
import java.util.Map;
public class AsistioActivity extends CapturaActivity {
@Override
protected void onCreate(B... | 1,699 | 0.66804 | 0.66804 | 60 | 27.316668 | 24.218788 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.633333 | false | false | 12 |
5fde9c97caa87f5ccc7c7699b6596cfa19b8854a | 26,268,019,990,628 | c4b170b2b75c5b33c85d95bb250fb56b4433ceb4 | /health_web/src/main/java/com/jd/health/controller/CheckItemController.java | 3f8d0760d890bc0e72578adb4a32a10f6062352c | [] | no_license | hello-8848/001jk | https://github.com/hello-8848/001jk | b08aedd5e27d86cdd1604f5aba47f532d0e0585d | ae9b0fca68f609585d175d34c8d1c11ea623b84c | refs/heads/master | 2023-02-17T13:27:21.711000 | 2021-01-16T09:06:27 | 2021-01-16T09:06:29 | 330,114,921 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jd.health.controller;
import com.alibaba.dubbo.config.annotation.Reference;
import com.jd.health.constant.MessageConstant;
import com.jd.health.entity.PageResult;
import com.jd.health.entity.Result;
import com.jd.health.pojo.CheckItem;
import com.jd.health.pojo.QueryPageBean;
import com.jd.health.service.C... | UTF-8 | Java | 3,573 | java | CheckItemController.java | Java | [
{
"context": "otation.*;\n\nimport java.util.List;\n\n/**\n * @Auther lxy\n * @Date\n */\n@RestController\n@RequestMapping(\"/ch",
"end": 555,
"score": 0.999539852142334,
"start": 552,
"tag": "USERNAME",
"value": "lxy"
}
] | null | [] | package com.jd.health.controller;
import com.alibaba.dubbo.config.annotation.Reference;
import com.jd.health.constant.MessageConstant;
import com.jd.health.entity.PageResult;
import com.jd.health.entity.Result;
import com.jd.health.pojo.CheckItem;
import com.jd.health.pojo.QueryPageBean;
import com.jd.health.service.C... | 3,573 | 0.684335 | 0.684335 | 101 | 32.435642 | 28.505138 | 135 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.475248 | false | false | 12 |
2df12a624bc1a26b0c200f0faa097a073713ac6d | 33,621,003,997,558 | b1b082d13dc6001a9b1836a8ad653ed821f44a89 | /gtl/src/main/java/com/admin/dao/PtsMrzcjsDaoI.java | 12f9e79637161479b0b4bc40322106a7eb17397b | [] | no_license | zeng95xin/exploit | https://github.com/zeng95xin/exploit | 0a078aad06c16e26e6713a07e3cd86ad18c5bde5 | 1c30051343b168138b0766f00a388b0dece62fe5 | refs/heads/master | 2021-09-10T17:31:58.650000 | 2018-03-30T02:23:12 | 2018-03-30T02:23:12 | 115,505,870 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.admin.dao;
import com.admin.model.PtsMrzcjs;
/**
* 用户数据库操作类
*
* @author
*
*/
public interface PtsMrzcjsDaoI extends BaseDaoI<PtsMrzcjs> {
}
| UTF-8 | Java | 178 | java | PtsMrzcjsDaoI.java | Java | [] | null | [] | package com.admin.dao;
import com.admin.model.PtsMrzcjs;
/**
* 用户数据库操作类
*
* @author
*
*/
public interface PtsMrzcjsDaoI extends BaseDaoI<PtsMrzcjs> {
}
| 178 | 0.691358 | 0.691358 | 13 | 11.461538 | 16.923426 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.153846 | false | false | 12 |
8eab50382c4c95e8812c43ca184b12cff1d4588f | 21,758,304,342,370 | c12d1b90d49b64c1dc18a046ad283e67fe650bd0 | /spring-data-jdbc/src/test/java/org/example/springdatajdbc/config/TestAuditConfig.java | 833e53c6afa72f91fda638bdd14732ee681abf07 | [] | no_license | fy8207345/spring-demo | https://github.com/fy8207345/spring-demo | 7c3ad86c85627922ae1ea28f1e932f1eed8bbc04 | d83876e69737859cdb847410080e0b8f136d308d | refs/heads/master | 2023-07-04T04:49:30.279000 | 2021-08-03T07:29:48 | 2021-08-03T07:29:48 | 362,739,631 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.example.springdatajdbc.config;
import lombok.extern.slf4j.Slf4j;
import org.example.springdatajdbc.entity.GeneratedId;
import org.example.springdatajdbc.idgeneration.DefaultGeneratorContext;
import org.example.springdatajdbc.idgeneration.IdGenerationFactory;
import org.example.springdatajdbc.idgeneration.I... | UTF-8 | Java | 2,060 | java | TestAuditConfig.java | Java | [] | null | [] | package org.example.springdatajdbc.config;
import lombok.extern.slf4j.Slf4j;
import org.example.springdatajdbc.entity.GeneratedId;
import org.example.springdatajdbc.idgeneration.DefaultGeneratorContext;
import org.example.springdatajdbc.idgeneration.IdGenerationFactory;
import org.example.springdatajdbc.idgeneration.I... | 2,060 | 0.659223 | 0.657767 | 48 | 41.916668 | 30.033199 | 137 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.625 | false | false | 12 |
4855bcdff7ccb23cabcf29382d8ae5548137eb2d | 13,288,628,866,799 | 1828782bc700f0c00b07b53188c6bb87c53fd749 | /jquery/intranetuserjs/home/all pages/check_out_autocomplete_off.java | ab00d3164399fe5da551be59e3d4cc4204a36652 | [] | no_license | northeast-kansas-library-system/nextcustomizations | https://github.com/northeast-kansas-library-system/nextcustomizations | b6edd8621cf6890d504c0678842facc5a2f8fc85 | 645e261fe526394bdc425cf17c7c1d3bbf7b793a | refs/heads/master | 2022-11-18T18:37:49.675000 | 2020-07-17T22:19:49 | 2020-07-17T22:19:49 | 267,362,012 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /* This turns off autocomplete in the "Check out" input box in the search header */
/* This may no longer be necessary */
//BEGIN disable autocomplete in checkout box
$("#patronsearch").attr("autocomplete","off")
| UTF-8 | Java | 217 | java | check_out_autocomplete_off.java | Java | [] | null | [] | /* This turns off autocomplete in the "Check out" input box in the search header */
/* This may no longer be necessary */
//BEGIN disable autocomplete in checkout box
$("#patronsearch").attr("autocomplete","off")
| 217 | 0.718894 | 0.718894 | 5 | 42.400002 | 26.469604 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.2 | false | false | 12 |
09e5046ee62dd5cb17837a8bce8dc744da3b72da | 13,623,636,314,696 | 6f2319d769ddf45600930a5188bae6f2a5b7d56a | /framework-import-excel/src/main/java/com/ddd/framework/importexcel/utils/ExcelDataConverter.java | edec018f84c960f28b86b68042a7949c4cb8cda7 | [] | no_license | jzft/framework-code | https://github.com/jzft/framework-code | f8abf8da1dcdc36311e9d57a6b8ea21e4a3b22f0 | b602b94ef4b0979a8e1f20284bb57aff52a4c9a0 | refs/heads/main | 2023-03-25T20:31:57.124000 | 2021-03-25T16:34:18 | 2021-03-25T16:34:18 | 282,160,813 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
/*
* 文件名: DataValidater.java
* 版权:
* 描述:
* 修改人: Zhuang Shao Bin
* 修改时间: 2012-6-27
* 修改内容:
*/
package com.ddd.framework.importexcel.utils;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
import j... | UTF-8 | Java | 8,596 | java | ExcelDataConverter.java | Java | [
{
"context": "\n * 文件名: DataValidater.java\n * 版权: \n * 描述:\n * 修改人: Zhuang Shao Bin\n * 修改时间: 2012-6-27\n * 修改内容: \n */\npackage com.ddd.",
"end": 69,
"score": 0.9998569488525391,
"start": 54,
"tag": "NAME",
"value": "Zhuang Shao Bin"
},
{
"context": "apache.commons.lang3.StringUtil... | null | [] |
/*
* 文件名: DataValidater.java
* 版权:
* 描述:
* 修改人: <NAME>
* 修改时间: 2012-6-27
* 修改内容:
*/
package com.ddd.framework.importexcel.utils;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Date;
import java.util.List;
import java.util.... | 8,488 | 0.633294 | 0.615284 | 352 | 22.974432 | 21.838169 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.088068 | false | false | 12 |
eb0232730f6b14d99d6c6cba7ff4d626910b0364 | 16,484,084,538,304 | 9aa40a8ce7e461afcba4d775328867ecd598a6b3 | /Carte.java | 072573bce07d799fedd00cdb85f5019447a66ed9 | [] | no_license | projetalgof/projet | https://github.com/projetalgof/projet | c2c78c1d12a0d047525f5e13553b3723f40decaf | 2490d2d84d88b45d76f7b5c10f7c3df410516321 | refs/heads/master | 2020-05-28T04:03:33.363000 | 2019-06-21T14:58:54 | 2019-06-21T14:58:54 | 188,874,015 | 0 | 1 | null | false | 2019-05-31T16:48:50 | 2019-05-27T16:08:27 | 2019-05-27T16:09:43 | 2019-05-31T16:48:38 | 39 | 0 | 1 | 0 | null | false | false | import java.util.*;
public class Carte implements Comparable<Carte>
{
protected String declencheur; // String pour gerais les declencheur multiple
protected String nom ;
protected String type ;
protected int cout ;
protected int piece ;
public Carte(String declencheur, String nom, String type,int co... | UTF-8 | Java | 1,423 | java | Carte.java | Java | [] | null | [] | import java.util.*;
public class Carte implements Comparable<Carte>
{
protected String declencheur; // String pour gerais les declencheur multiple
protected String nom ;
protected String type ;
protected int cout ;
protected int piece ;
public Carte(String declencheur, String nom, String type,int co... | 1,423 | 0.56922 | 0.56922 | 46 | 29.934782 | 26.692616 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.608696 | false | false | 12 |
8319e5d7088ad5373f9dbc8f8197e85516e5878c | 9,603,546,923,676 | e279546b0f0d62929da97d1c249de21d4ab02fe1 | /src/main/java/com/mpls/web2/service/ChatRoomService.java | 86c00710658dd2ddd1d88a9a17ebd58841fd6d95 | [] | no_license | M-Pluse/010-server | https://github.com/M-Pluse/010-server | 5f697db9bf602f47cd4ef091fea4067074e60db0 | 03f9473c05ea13ae4e5fccd0d6a020c373f9b411 | refs/heads/master | 2018-10-27T23:27:33.298000 | 2018-06-08T11:57:30 | 2018-06-08T11:57:30 | 124,900,284 | 1 | 0 | null | false | 2018-05-16T17:15:58 | 2018-03-12T14:18:40 | 2018-05-16T17:04:46 | 2018-05-16T17:15:57 | 1,175 | 1 | 0 | 0 | Java | false | null | package com.mpls.web2.service;
import com.mpls.web2.dto.ChatRoomIntegerWrapper;
import com.mpls.web2.model.ChatRoom;
import org.springframework.data.domain.Pageable;
import java.security.Principal;
import java.util.List;
public interface ChatRoomService {
ChatRoomIntegerWrapper findOneWithMessagesPageable(Long ... | UTF-8 | Java | 833 | java | ChatRoomService.java | Java | [] | null | [] | package com.mpls.web2.service;
import com.mpls.web2.dto.ChatRoomIntegerWrapper;
import com.mpls.web2.model.ChatRoom;
import org.springframework.data.domain.Pageable;
import java.security.Principal;
import java.util.List;
public interface ChatRoomService {
ChatRoomIntegerWrapper findOneWithMessagesPageable(Long ... | 833 | 0.779112 | 0.77551 | 33 | 24.242424 | 26.740086 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.636364 | false | false | 12 |
d23ccd0530a2214fc4753af900057060d108cc57 | 17,643,725,712,616 | c2ab2108d1c7b9a284212a7d91f97b939e2e3f2b | /src/CreditPaymentService.java | fe8c7e9072020168bb1bfd249a617419747d53a5 | [] | no_license | daryamorozova/Task-2.2.3 | https://github.com/daryamorozova/Task-2.2.3 | 2aaa953f45858b3dffebb19e19c52350ed341264 | 0d3a69bc5f0185e70cf45de5f834bd2ff3f05250 | refs/heads/master | 2022-11-20T09:35:59.877000 | 2020-07-17T15:49:24 | 2020-07-17T15:49:24 | 280,465,051 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class CreditPaymentService {
public double calculate(double amount, double periodmonth) {
double ratemonth = 9.99 / 1200;
double annuityfactor = (ratemonth * Math.pow(1 + ratemonth, periodmonth)) / (Math.pow(1 + ratemonth, periodmonth) - 1);
double monthlypay = amount * annuityfactor;... | UTF-8 | Java | 356 | java | CreditPaymentService.java | Java | [] | null | [] | public class CreditPaymentService {
public double calculate(double amount, double periodmonth) {
double ratemonth = 9.99 / 1200;
double annuityfactor = (ratemonth * Math.pow(1 + ratemonth, periodmonth)) / (Math.pow(1 + ratemonth, periodmonth) - 1);
double monthlypay = amount * annuityfactor;... | 356 | 0.671348 | 0.643258 | 8 | 43.5 | 37.309517 | 127 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.875 | false | false | 12 |
fbed3fd0c23dd99c2c484b264da4c263a3687ea9 | 4,707,284,203,715 | 6fbdf9dd952151d8fede1c3be241c992b9e4f7ce | /Codechef/PRACTICE/RECIPE.java | a1a9b86e98be14989199d0293178bc688f4592db | [] | no_license | rahul-953/Codechef | https://github.com/rahul-953/Codechef | 69d3464e54d172354372334e99fec5a010fee00c | 45728aaed2d5506fc6f5966d72773e6c1fe55f6f | refs/heads/master | 2020-04-05T13:08:52.196000 | 2017-07-17T13:14:02 | 2017-07-17T13:14:02 | 95,121,052 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.*;
class RECIPE
{
public static void main(String aarg[])
{
Scanner sc=new Scanner(System.in);
int t=sc.nextInt();
while(t-->0)
{
int n;
n=sc.nextInt();
int a[]=new int[n];
int i,gcd;
for(i=0;i<n;i++)
a[i]=sc.nextInt();
gcd=GCD(a[0],a[1]);
... | UTF-8 | Java | 571 | java | RECIPE.java | Java | [] | null | [] | import java.util.*;
class RECIPE
{
public static void main(String aarg[])
{
Scanner sc=new Scanner(System.in);
int t=sc.nextInt();
while(t-->0)
{
int n;
n=sc.nextInt();
int a[]=new int[n];
int i,gcd;
for(i=0;i<n;i++)
a[i]=sc.nextInt();
gcd=GCD(a[0],a[1]);
... | 571 | 0.488616 | 0.476357 | 37 | 13.486486 | 11.272118 | 39 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.72973 | false | false | 12 |
648f33469eb43f3ed822944b0cb8c63bfe27bcc9 | 8,650,064,182,772 | a02ebaeed2756e0b9c238fe31355b5c86821e401 | /Module_10/src/test/java/test/keywords/GooglePageKeywords.java | 0256d5253535feb26a388de488183b6ca5c5cf8c | [] | no_license | Vozzhaeva/at-mentoring | https://github.com/Vozzhaeva/at-mentoring | 1a164f0e3c7055479949fb0695e725c93c41cbd1 | ceff881a31435a3b6cb04f0dcbb68040f637fa2c | refs/heads/master | 2023-02-13T01:00:59.693000 | 2021-01-17T19:56:52 | 2021-01-17T19:56:52 | 330,473,203 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package test.keywords;
import io.cucumber.java.ru.Допустим;
import io.cucumber.java.ru.Если;
import io.cucumber.java.ru.И;
import io.cucumber.java.ru.То;
import org.testng.Assert;
import pages.google.CalculatorCloudGooglePage;
import pages.google.CloudGooglePage;
import pages.google.PricingCloudGooglePage;
import page... | UTF-8 | Java | 3,001 | java | GooglePageKeywords.java | Java | [] | null | [] | package test.keywords;
import io.cucumber.java.ru.Допустим;
import io.cucumber.java.ru.Если;
import io.cucumber.java.ru.И;
import io.cucumber.java.ru.То;
import org.testng.Assert;
import pages.google.CalculatorCloudGooglePage;
import pages.google.CloudGooglePage;
import pages.google.PricingCloudGooglePage;
import page... | 3,001 | 0.656092 | 0.649243 | 83 | 32.421688 | 20.591915 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.457831 | false | false | 12 |
5ed2b34fa668756a1ca60f2d89432f3ffae53f2a | 24,438,363,963,105 | 9bf4cb5c50d77130d16852b0ea8e9e97f5f5f52a | /homework09-traversingtrav/src/fire.java | cd57f04e47c73220eeed8a71e911f65841604f2e | [] | no_license | traversingtrav/mini-game1 | https://github.com/traversingtrav/mini-game1 | 014b37a540b3bf449e751f0f1f1d1e602585bebd | 43fdec1bf21e90813757614a852f2beedc8ccbeb | refs/heads/main | 2023-08-14T01:17:51.928000 | 2021-09-23T11:30:41 | 2021-09-23T11:30:41 | 409,563,629 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /* Travis Crowell
SWEN-601
homework 09
09/22/2021
*/
/**
* initiates parent class constructors along with attackers attack.
*/
public class fire extends Pokemon {
private int Attacker_attack;
/**
* initiates parent class constructors along with attackers attack.
*/
public fire(St... | UTF-8 | Java | 825 | java | fire.java | Java | [
{
"context": "/* Travis Crowell\r\nSWEN-601\r\nhomework 09\r\n09/22/2021\r\n */\r\n/**\r\n * ",
"end": 17,
"score": 0.9996769428253174,
"start": 3,
"tag": "NAME",
"value": "Travis Crowell"
}
] | null | [] | /* <NAME>
SWEN-601
homework 09
09/22/2021
*/
/**
* initiates parent class constructors along with attackers attack.
*/
public class fire extends Pokemon {
private int Attacker_attack;
/**
* initiates parent class constructors along with attackers attack.
*/
public fire(String nam... | 817 | 0.581818 | 0.563636 | 30 | 25.433332 | 22.461349 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.433333 | false | false | 12 |
a93619cd9d4580daaced69d9c56191a472ad05fa | 19,078,244,778,918 | af3c0e7cc993d954eca9d1ddc60ba4ab750db52f | /build/generated/jax-wsCache/calcws/WsCalcWebServiceCliente/ObjectFactory.java | 6738b46bf69b9e30b31868aa5144494ef355c79e | [] | no_license | vfbellaver/cliente-ws-calc | https://github.com/vfbellaver/cliente-ws-calc | ce112c62204066449aa50e6a28b1c233de48cbb8 | a3c097f39565db6b403315ffb2860b1196de0ee4 | refs/heads/master | 2021-05-03T14:42:27.392000 | 2018-02-06T16:59:29 | 2018-02-06T16:59:29 | 120,462,659 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package WsCalcWebServiceCliente;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generate... | UTF-8 | Java | 6,419 | java | ObjectFactory.java | Java | [] | null | [] |
package WsCalcWebServiceCliente;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generate... | 6,419 | 0.677364 | 0.677364 | 178 | 35.056179 | 37.634361 | 137 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.393258 | false | false | 12 |
607abe11b5a07683d65931876135721f4c163281 | 33,389,075,817,212 | ef0e1362b85daa34db64cdf2e65222cbf32a66b0 | /app/src/main/java/com/example/triviaapp/Controller/Question3.java | 0ead315619b0fffa5034a768a2ea17947d8acb54 | [] | no_license | Jinshadnu/TriviaApp | https://github.com/Jinshadnu/TriviaApp | c461ef90fb24bb67d5477aa87ddfab8bde892c0d | 90ef50b81a861ad64fe4eac6edf0b72c11df1ecf | refs/heads/master | 2021-01-15T02:28:47.150000 | 2020-02-24T21:33:24 | 2020-02-24T21:33:24 | 242,848,297 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.triviaapp.Controller;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.RadioButton;
import an... | UTF-8 | Java | 2,190 | java | Question3.java | Java | [] | null | [] | package com.example.triviaapp.Controller;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.RadioButton;
import an... | 2,190 | 0.630594 | 0.619635 | 57 | 37.421051 | 21.050438 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.842105 | false | false | 12 |
bc30af3834f52bb847d40133c83d97776571efeb | 11,862,699,708,263 | 6917e1164f9f2da9a22973b2a6487c09bee6e88c | /src/main/java/be/vb/storingenmelder/domain/City.java | ee66c9073f2497533aeecfd94694bce348ed6851 | [] | no_license | vincentB23/ov-storingenmelder | https://github.com/vincentB23/ov-storingenmelder | 7b1c4e4b5c5f2b0dbd53d01404be3e376f3f71a5 | 5b3144370d333251b13c25b0a0692d42b53edcfd | refs/heads/master | 2022-04-07T20:37:58.382000 | 2020-03-13T20:31:31 | 2020-03-13T20:31:31 | 245,028,307 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package be.vb.storingenmelder.domain;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;
import lombok.Data;
import javax.persistence.*;
@Data
@Entity
public class City {
@Id
@GeneratedValue... | UTF-8 | Java | 920 | java | City.java | Java | [] | null | [] | package be.vb.storingenmelder.domain;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;
import lombok.Data;
import javax.persistence.*;
@Data
@Entity
public class City {
@Id
@GeneratedValue... | 920 | 0.688043 | 0.688043 | 37 | 23.864864 | 19.47023 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.486486 | false | false | 12 |
bb06c49a6acbf0238f0fae11760f70654fc12fe7 | 5,119,601,057,978 | b61ba3bc6e27a70379ae5261a4af1e7d58cb3cb7 | /Ejercicios de Porti/src/Bucles Ampliación/Ejercicio17.java | 7e2ebc59ef072df78dfddda11c32433f4761262f | [] | no_license | PortiDGZ/Programacion | https://github.com/PortiDGZ/Programacion | f31bbe08b45bbf7f60b2642ec425cc4ac8f17192 | 5f7d17f0127509246c6a6ad90b19683a40d546c2 | refs/heads/master | 2020-12-08T20:16:46.226000 | 2020-10-04T16:51:51 | 2020-10-04T16:51:51 | 233,083,052 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Ejercicio5;
import java.util.Scanner;
public class Ejercicio17 {
public static void main(String[] args) {
int N = 0;
int i;
char resp;
int cont = 0;
int suma = 0;
Scanner entrada = new Scanner(System.in);
do {
System.out.print("Introduce un número: ");
... | ISO-8859-1 | Java | 699 | java | Ejercicio17.java | Java | [] | null | [] | package Ejercicio5;
import java.util.Scanner;
public class Ejercicio17 {
public static void main(String[] args) {
int N = 0;
int i;
char resp;
int cont = 0;
int suma = 0;
Scanner entrada = new Scanner(System.in);
do {
System.out.print("Introduce un número: ");
... | 699 | 0.509326 | 0.493544 | 53 | 12.150944 | 15.589542 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.509434 | false | false | 12 |
a7894a8623c0a3fc77395fd367030e4f6e7067e1 | 33,139,967,687,296 | ef13c8832e179d78922c989024cb1b465dc6b6c0 | /marylove/src/marylove/vista/FormaAgregarAgresores.java | ec7c544f9c1de6e363be7c2f7253e877ceef5281 | [] | no_license | desarrollotds/marylove | https://github.com/desarrollotds/marylove | 16c67f9d624a80e983b7aeaf4a7b7f6debe20d7b | 5b7ee301e98a725c18d5cbba6a6ab92f6e274791 | refs/heads/master | 2021-07-11T08:50:04.817000 | 2020-09-28T22:59:46 | 2020-09-28T22:59:46 | 218,843,116 | 6 | 1 | 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 marylove.vista;
import com.toedter.calendar.JDateChooser;
import javax.swing.JButton;
import javax.swing.JComboBox;
import jav... | UTF-8 | Java | 38,610 | java | FormaAgregarAgresores.java | Java | [
{
"context": "\nimport javax.swing.JTextField;\n\n/**\n *\n * @author usuario\n */\npublic class FormaAgregarAgresores extends jav",
"end": 394,
"score": 0.9387600421905518,
"start": 387,
"tag": "USERNAME",
"value": "usuario"
},
{
"context": ".SwingConstants.CENTER);\n jLabel1... | 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 marylove.vista;
import com.toedter.calendar.JDateChooser;
import javax.swing.JButton;
import javax.swing.JComboBox;
import jav... | 38,610 | 0.636599 | 0.608259 | 806 | 46.893299 | 39.636887 | 178 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.914392 | false | false | 12 |
7d5f5e32f2ba9ef092a2cd5db852677947de316e | 13,623,636,302,817 | 52223c145801e1352a811f8053e2b747e9788aee | /src/main/java/School.java | 8951ffe7d103240a1384a02fa237dee7d309bb33 | [] | no_license | JelenaDinere/mySchoolProject | https://github.com/JelenaDinere/mySchoolProject | d5c729a57dc872fc7ad9ef1efccbca175d755db8 | 69bea52b15100c06fb1b1de477d6c6af107f60d6 | refs/heads/main | 2023-08-04T09:25:10.031000 | 2021-09-23T08:55:29 | 2021-09-23T08:55:29 | 409,517,828 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.ArrayList;
public class School {
private ArrayList<Teacher>teachers;
private ArrayList<Student>students;
private static int totalMoneyEarned;
private static int totalMoneySpent;
private static int balance;
School(){
teachers = new ArrayList<>();
students = new... | UTF-8 | Java | 1,280 | java | School.java | Java | [] | null | [] | import java.util.ArrayList;
public class School {
private ArrayList<Teacher>teachers;
private ArrayList<Student>students;
private static int totalMoneyEarned;
private static int totalMoneySpent;
private static int balance;
School(){
teachers = new ArrayList<>();
students = new... | 1,280 | 0.660156 | 0.658594 | 51 | 24.09804 | 18.671835 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.411765 | false | false | 12 |
fc73bfe475d8bc9a79d06ca9e2923b5f0126ce3d | 17,188,459,170,346 | fbd02f58e0df2740e4e9e8ffbb5ad84bd6c68855 | /src/helper/Settings.java | 200405239f38058840315fb3eabba960a329e63c | [] | no_license | danbax/3D-modeling-of-diamond-inclusions | https://github.com/danbax/3D-modeling-of-diamond-inclusions | a954a4fe4c79525e676d8c05d392e516003e6998 | d80c962441bc8c875dac7a98451031dbc85a49b3 | refs/heads/master | 2023-02-19T07:30:44.471000 | 2021-01-06T23:05:19 | 2021-01-06T23:05:19 | 180,599,485 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package helper;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;
import org.json.*;
public class Settings
{
private String settingsString;
private String settingsFolderLocation = "C:\\diamondsModelingData";
private String settingsFileName = "s... | UTF-8 | Java | 2,589 | java | Settings.java | Java | [] | null | [] | package helper;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;
import org.json.*;
public class Settings
{
private String settingsString;
private String settingsFolderLocation = "C:\\diamondsModelingData";
private String settingsFileName = "s... | 2,589 | 0.691387 | 0.690228 | 88 | 27.397728 | 26.029503 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.693182 | false | false | 12 |
b8c9144c04baac950c394efea9fce8a19d514995 | 1,468,878,865,846 | 2eaad2b275846b5619cab5245172c2321333064c | /src/main/java/cnam/medimage/bean/UsageUser.java | 1860d78a4c74f38da8fe315dd60d8e73c83480c7 | [] | no_license | nikolaiRetamal/medimage | https://github.com/nikolaiRetamal/medimage | f633dbcd77f71317b97788a012d68d308df8804e | 278ae4be499c59aa722d02ea426b7a40f5505896 | refs/heads/master | 2020-07-02T04:03:01.223000 | 2015-06-18T07:41:05 | 2015-06-18T07:41:05 | 22,201,694 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cnam.medimage.bean;
import java.io.Serializable;
import java.util.UUID;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import org.easycassandra.Index;
@Entity(name = "usage_user")
public class UsageUser implements Serializable{
/**
*
*/
... | UTF-8 | Java | 1,078 | java | UsageUser.java | Java | [] | null | [] | package cnam.medimage.bean;
import java.io.Serializable;
import java.util.UUID;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import org.easycassandra.Index;
@Entity(name = "usage_user")
public class UsageUser implements Serializable{
/**
*
*/
... | 1,078 | 0.641002 | 0.640074 | 63 | 15.111111 | 14.857109 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.253968 | false | false | 12 |
c9f8ce2f1ad2e099ca36f8af12d4b6f1407a6b6d | 30,159,260,393,673 | 022be1596843705a02435ac06224783380411d9c | /src/main/java/util/ServerCommands.java | 4972fb78d5a996caed1e0e077809de583fa7318f | [] | no_license | MinchukSergei/KBRS | https://github.com/MinchukSergei/KBRS | af0e7401c7203a0deac88bdf9b09dcf8b0b0e975 | 8c9abf167d2533671e18cdd1dd371bddc21a77bb | refs/heads/master | 2021-05-01T02:05:39.176000 | 2016-11-19T19:09:30 | 2016-11-19T19:09:30 | 68,807,322 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package util;
/**
* Created by USER on 24.09.2016.
*/
public enum ServerCommands {
SEND_ENCODED_SESSION_KEY(0),
SEND_ENCODED_FILE(1),
SEND_EOF(2),
SEND_SESSION_TOKEN(3),
// FILE SENDING CONSTANTS
FILE_EXISTS(10),
FILE_NOT_FOUND(11),
END_OF_FILE(13),
SESSION_KEY_IS_NULL(21),
... | UTF-8 | Java | 1,140 | java | ServerCommands.java | Java | [] | null | [] | package util;
/**
* Created by USER on 24.09.2016.
*/
public enum ServerCommands {
SEND_ENCODED_SESSION_KEY(0),
SEND_ENCODED_FILE(1),
SEND_EOF(2),
SEND_SESSION_TOKEN(3),
// FILE SENDING CONSTANTS
FILE_EXISTS(10),
FILE_NOT_FOUND(11),
END_OF_FILE(13),
SESSION_KEY_IS_NULL(21),
... | 1,140 | 0.586842 | 0.547368 | 55 | 19.727272 | 14.522027 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.472727 | false | false | 12 |
70e25d0a33be91fedf5469e59fb9e0e3876ea6f1 | 25,039,659,384,419 | 4b7205cf3c1ac3629c15e3541f3f272f47730bad | /src/main/java/com/fantasyworks/util/FilesUtil.java | c0eca2da94197810073df185efc92530b887288c | [] | no_license | christopheryang/FanGraphsParser | https://github.com/christopheryang/FanGraphsParser | a4513c9493773eade046b3b4d2f3f92caf1a99a7 | 17258625cb11854f8fa4c23e19e54d418026e4bb | refs/heads/master | 2021-01-10T13:08:24.040000 | 2016-02-15T23:54:25 | 2016-02-15T23:54:25 | 51,601,097 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.fantasyworks.util;
import java.io.File;
import java.io.IOException;
import com.google.common.base.Charsets;
import com.google.common.io.Files;
public class FilesUtil {
public static void writeToFile(String fileName, String content){
writeToFile(new File(fileName), content);
}
public static void ... | UTF-8 | Java | 921 | java | FilesUtil.java | Java | [] | null | [] | package com.fantasyworks.util;
import java.io.File;
import java.io.IOException;
import com.google.common.base.Charsets;
import com.google.common.io.Files;
public class FilesUtil {
public static void writeToFile(String fileName, String content){
writeToFile(new File(fileName), content);
}
public static void ... | 921 | 0.731813 | 0.729642 | 42 | 20.928572 | 20.687462 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.761905 | false | false | 12 |
f9a783072a3dc8fb3b6a3d3ece401ba07d41b6fe | 25,039,659,386,890 | 773ef441d96512d806b564132575a690cf3aa0c7 | /desenvolvimento-agil-com-java-avancado/forum/src/main/java/controller/InsereTopicoController.java | 58538264be9d18daaf92a7056fb8c77a15222bbd | [] | no_license | paulovitor/coursera | https://github.com/paulovitor/coursera | 7b08d96224207845cae3da593781d487e11a1caa | 93a268460f5d01fa23f77cc090259ec253962d50 | refs/heads/master | 2020-05-21T15:05:15.968000 | 2019-03-31T03:22:50 | 2019-03-31T03:22:50 | 57,310,246 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package controller;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class InsereTopicoController implements Controller {
@Override
public void executar(HttpServletRequest request, HttpServletResponse response) throws Exception {
request.getRequestDi... | UTF-8 | Java | 399 | java | InsereTopicoController.java | Java | [] | null | [] | package controller;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class InsereTopicoController implements Controller {
@Override
public void executar(HttpServletRequest request, HttpServletResponse response) throws Exception {
request.getRequestDi... | 399 | 0.794486 | 0.794486 | 12 | 32.25 | 35.942371 | 101 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 12 |
7ebc3ea3ddbde732f28c3eee6c7dea9af886aa29 | 27,032,524,210,290 | e69a7ba3e413aeaff47a0f416003ed7e96bf4643 | /src/Transformations/Scale.java | 92dee67b3e05d47bb20fe9879dab9e01268c8343 | [] | no_license | Zkaron/Graphics2D | https://github.com/Zkaron/Graphics2D | 6928cc484bfef8c0fd4b9f73a6af73600f16f2ef | e312623d666a47be40d9d03ea156ed74d91de1dc | refs/heads/master | 2021-08-17T08:32:57.647000 | 2017-11-08T16:00:11 | 2017-11-08T16:00:11 | 96,690,173 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Transformations;
import Figures.*;
import Lines.AbstractLine;
import Lines.BresenhamLine;
import java.awt.*;
import java.util.LinkedList;
/**
* Created by Erik on 9/22/2017.
*/
public class Scale {
public Scale() {
}
/**
* For lines and rectangles
* @param p0
... | UTF-8 | Java | 1,496 | java | Scale.java | Java | [
{
"context": "import java.util.LinkedList;\r\n\r\n/**\r\n * Created by Erik on 9/22/2017.\r\n */\r\npublic class Scale {\r\n\r\n\r\n ",
"end": 181,
"score": 0.9968122839927673,
"start": 177,
"tag": "NAME",
"value": "Erik"
}
] | null | [] | package Transformations;
import Figures.*;
import Lines.AbstractLine;
import Lines.BresenhamLine;
import java.awt.*;
import java.util.LinkedList;
/**
* Created by Erik on 9/22/2017.
*/
public class Scale {
public Scale() {
}
/**
* For lines and rectangles
* @param p0
... | 1,496 | 0.54746 | 0.525401 | 56 | 24.714285 | 25.252804 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.553571 | false | false | 12 |
de614f403fd59b38e0ea0421f2f80a0e0bb3f7d7 | 27,101,243,688,729 | 209554fd9c2f00580f494a8f32db6581cc6c6ddc | /src/main/java/com/cheer/result/ShopLocationResult.java | 264c0c3f3fe0e9e41bf36b101ff39b331e356003 | [] | no_license | sweetanran/cheer-sgcc | https://github.com/sweetanran/cheer-sgcc | 73cb904250a2ec66867213a5150127d473d52ba1 | a9f2d700bd65840baa505b1d2a4fe65b83023eba | refs/heads/master | 2020-04-05T20:30:54.858000 | 2018-11-28T02:41:00 | 2018-11-28T02:41:00 | 157,183,670 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cheer.result;
/**
* @author cheer
*/
public class ShopLocationResult {
private String name;
private String value;
public String getName() {
return name;
}
public ShopLocationResult setName(String name) {
this.name = name;
return this;
}
public Stri... | UTF-8 | Java | 477 | java | ShopLocationResult.java | Java | [
{
"context": "package com.cheer.result;\n\n/**\n * @author cheer\n */\npublic class ShopLocationResult {\n\n privat",
"end": 47,
"score": 0.9988714456558228,
"start": 42,
"tag": "USERNAME",
"value": "cheer"
}
] | null | [] | package com.cheer.result;
/**
* @author cheer
*/
public class ShopLocationResult {
private String name;
private String value;
public String getName() {
return name;
}
public ShopLocationResult setName(String name) {
this.name = name;
return this;
}
public Stri... | 477 | 0.599581 | 0.599581 | 29 | 15.448276 | 15.228345 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.310345 | false | false | 12 |
09830ce86631b988ec7c6f113118624301a27172 | 755,914,308,058 | b49a3e3d98dee389335275ce98872aac139c321e | /CS-101/Source Code/Chapter_12/Example12_46_47_48/PlayTreasureHunt.java | d0d8d93e5c75852b0ce22aa993d1ae89d125a2f5 | [] | no_license | DRK-512/Java_Projects | https://github.com/DRK-512/Java_Projects | 164f834c22a294f2f9999d4497bb49b3f694d1e9 | 3705a8e4df11c6a60e6135ba5f4198ab4351fd04 | refs/heads/master | 2023-05-07T23:07:52.508000 | 2023-01-25T04:33:54 | 2023-01-25T04:33:54 | 288,883,164 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /* PlayTreasureHunt class
Anderson, Franceschi
*/
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class PlayTreasureHunt extends Application
{
private final int GAME_SIZE = 500;
@Override
public void start( Stage stage )
{
TreasureHunt th = new Treas... | UTF-8 | Java | 673 | java | PlayTreasureHunt.java | Java | [
{
"context": "/* PlayTreasureHunt class\n Anderson, Franceschi\n*/\n\nimport javafx.application.Application;\nimport",
"end": 49,
"score": 0.9986114501953125,
"start": 29,
"tag": "NAME",
"value": "Anderson, Franceschi"
}
] | null | [] | /* PlayTreasureHunt class
<NAME>
*/
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class PlayTreasureHunt extends Application
{
private final int GAME_SIZE = 500;
@Override
public void start( Stage stage )
{
TreasureHunt th = new TreasureHunt( GAME_... | 659 | 0.679049 | 0.674591 | 30 | 21.433332 | 19.393614 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.533333 | false | false | 0 |
5641777130c7e89ccc5c92940f55125fcfc517ae | 24,429,773,982,671 | ff991f15e5938e3787788e0897e5e904b3eb0d19 | /user-service/src/main/java/com/record/thelife/request/UserRequest.java | 66c8bb95f1a52391fabad111b6a2eda4830d1dc8 | [] | no_license | wangyouxiu/thelife | https://github.com/wangyouxiu/thelife | 84645a6399182495a1150759d06620093a954237 | 8f49d5ad3829be4780a23184fc33d7c82cc058aa | refs/heads/master | 2022-07-12T05:38:52.466000 | 2019-11-17T15:37:01 | 2019-11-17T15:37:01 | 222,211,032 | 0 | 0 | null | false | 2022-06-21T02:15:09 | 2019-11-17T07:11:39 | 2019-11-17T15:37:36 | 2022-06-21T02:15:08 | 11,944 | 0 | 0 | 1 | Java | false | false | package com.record.thelife.request;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
@Data
public class UserRequest implements Serializable {
/**
* 用户Id
*/
private Integer id;
/**
* 昵称
*/
private String nickName;
/**
* 真实姓名
*/
private Strin... | UTF-8 | Java | 579 | java | UserRequest.java | Java | [] | null | [] | package com.record.thelife.request;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
@Data
public class UserRequest implements Serializable {
/**
* 用户Id
*/
private Integer id;
/**
* 昵称
*/
private String nickName;
/**
* 真实姓名
*/
private Strin... | 579 | 0.555354 | 0.555354 | 39 | 13.128205 | 11.736814 | 50 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.307692 | false | false | 0 |
011178a7b9459cd052b35e0277ffdf43b6e12bad | 30,717,606,110,831 | 2200daa9b012c9395885e91d498013e6bff0e608 | /app/src/main/java/cn/bgs/breakpointresume/util/DownLoadUtil.java | a7ebaff7f210108d908b2e24360518ff9d387b88 | [] | no_license | NanKe165/BreakpointResume | https://github.com/NanKe165/BreakpointResume | b6bfe058e6d0190d28ffb9948e7bda1526d85312 | e9caccf7645a6d29d78d02fe649839bde49d881a | refs/heads/master | 2021-05-11T04:11:12.372000 | 2018-01-18T04:56:31 | 2018-01-18T04:56:31 | 117,934,376 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.bgs.breakpointresume.util;
import android.content.Context;
import android.content.Intent;
import android.os.Environment;
import org.apache.http.HttpStatus;
import java.io.File;
import java.io.InputStream;
import java.io.RandomAccessFile;
import java.net.HttpURLConnection;
import java.net.URL;
import java.... | UTF-8 | Java | 4,608 | java | DownLoadUtil.java | Java | [
{
"context": "kpointresume.dao.ThreadDAOImpl;\n\n/**\n * Created by Vincent on 2018/1/4.\n */\n\npublic class DownLoadUtil {\n ",
"end": 504,
"score": 0.9873858094215393,
"start": 497,
"tag": "NAME",
"value": "Vincent"
}
] | null | [] | package cn.bgs.breakpointresume.util;
import android.content.Context;
import android.content.Intent;
import android.os.Environment;
import org.apache.http.HttpStatus;
import java.io.File;
import java.io.InputStream;
import java.io.RandomAccessFile;
import java.net.HttpURLConnection;
import java.net.URL;
import java.... | 4,608 | 0.535096 | 0.528943 | 129 | 33.015503 | 21.383898 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.573643 | false | false | 0 |
9150054b9ea462696996edfffb6cde8b72c7f618 | 1,305,670,120,039 | 30c830a9e93e566652aa0a39511dd9aa7fefb41a | /mpbasekit/src/main/java/com/mp/basekit/util/ImageUtils.java | dd88bc7e2b3309681011054ceb821f5b9629f957 | [] | no_license | Huanjun/BaseKit | https://github.com/Huanjun/BaseKit | 9d7ed104d10936df390a4718d1c4b66aed38bd3b | 7837afaf1346fee0e860e3c12c9266e8246bb527 | refs/heads/main | 2023-01-02T05:35:46.896000 | 2020-10-28T03:36:39 | 2020-10-28T03:36:39 | 303,889,935 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mp.basekit.util;
import android.annotation.TargetApi;
import android.content.ContentResolver;
import android.content.ContentUris;
import android.content.ContentValues;
import android.content.Context;
import android.content.Intent;
import android.content.res.Resources;
import android.database.Cursor;
import... | UTF-8 | Java | 95,949 | java | ImageUtils.java | Java | [
{
"context": "java.io.OutputStream;\n\n/**\n * <pre>\n * author: Blankj\n * blog : http://blankj.com\n * time : 2",
"end": 2257,
"score": 0.9996933341026306,
"start": 2251,
"tag": "USERNAME",
"value": "Blankj"
}
] | null | [] | package com.mp.basekit.util;
import android.annotation.TargetApi;
import android.content.ContentResolver;
import android.content.ContentUris;
import android.content.ContentValues;
import android.content.Context;
import android.content.Intent;
import android.content.res.Resources;
import android.database.Cursor;
import... | 95,949 | 0.551352 | 0.545057 | 2,579 | 35.587437 | 24.904276 | 151 | false | false | 0 | 0 | 0 | 0 | 77 | 0.003243 | 0.647926 | false | false | 0 |
5db2770be01a180f0728748c6287fb072495f94b | 8,375,186,261,874 | 42e94aa09fe8d979f77449e08c67fa7175a3e6eb | /src/net/Mg.java | f2426e93c000469233846c61e94419c5a2036e41 | [
"Unlicense"
] | permissive | HausemasterIssue/novoline | https://github.com/HausemasterIssue/novoline | 6fa90b89d5ebf6b7ae8f1d1404a80a057593ea91 | 9146c4add3aa518d9aa40560158e50be1b076cf0 | refs/heads/main | 2023-09-05T00:20:17.943000 | 2021-11-26T02:35:25 | 2021-11-26T02:35:25 | 432,312,803 | 1 | 0 | Unlicense | true | 2021-11-26T22:12:46 | 2021-11-26T22:12:45 | 2021-11-26T21:05:48 | 2021-11-26T02:35:25 | 13,795 | 0 | 0 | 0 | null | false | false | package net;
import cc.novoline.modules.configurations.property.object.BooleanProperty;
import cc.novoline.modules.visual.Camera;
import com.google.gson.JsonObject;
public class Mg {
public static JsonObject c(Camera var0) {
return var0.getJsonObject();
}
public static boolean b(Camera var0) {
r... | UTF-8 | Java | 601 | java | Mg.java | Java | [] | null | [] | package net;
import cc.novoline.modules.configurations.property.object.BooleanProperty;
import cc.novoline.modules.visual.Camera;
import com.google.gson.JsonObject;
public class Mg {
public static JsonObject c(Camera var0) {
return var0.getJsonObject();
}
public static boolean b(Camera var0) {
r... | 601 | 0.695507 | 0.678869 | 27 | 21.25926 | 20.527475 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 0 |
f77e4e11044fbfe85034048c36afbb242ba805b8 | 18,013,092,840,774 | 2ba030b419ab944199f32b7c40863d29aa99f262 | /Department/src/department/Record.java | b03c6bd3c65f5d3f6c28736e23a2f9a0e46df697 | [] | no_license | Kareemkhaled617/Javafx_Dept | https://github.com/Kareemkhaled617/Javafx_Dept | fc5d7c01bc0b41177423439057012b6fd9954463 | acf07f4492989e2f0e155f14c4531481a40119e9 | refs/heads/main | 2023-03-25T23:51:25.107000 | 2021-03-20T17:28:13 | 2021-03-20T17:28:13 | 349,790,879 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package department;
public class Record {
private int id;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
private String Dept_name;
private int Age;
private String Address;
public String getDept_name() {
... | UTF-8 | Java | 747 | java | Record.java | Java | [] | null | [] |
package department;
public class Record {
private int id;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
private String Dept_name;
private int Age;
private String Address;
public String getDept_name() {
... | 747 | 0.514056 | 0.514056 | 45 | 14.555555 | 13.786556 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.288889 | false | false | 0 |
daf47a9daa2e1506fc003529f0a052d3e522f414 | 32,530,082,332,295 | 7f68d13e28a5965688f4ab960754b7f88f8bcb09 | /app/src/main/java/com/grability/appstore/utils/IntentUtil.java | fd5d4452149c868faf0ab3106362ff77fb29aeda | [
"CC-BY-3.0",
"Apache-2.0"
] | permissive | wilsoncastiblanco/appstore | https://github.com/wilsoncastiblanco/appstore | a8780da12b8a19df0c40b83a4284d80bac7bfb23 | 7ac721fa79db8deba494e45752df57066a7295c2 | refs/heads/master | 2021-01-10T02:18:37.245000 | 2016-04-11T19:05:29 | 2016-04-11T19:05:29 | 55,615,208 | 1 | 0 | null | false | 2016-04-11T07:20:53 | 2016-04-06T14:57:31 | 2016-04-06T15:02:45 | 2016-04-11T07:20:53 | 389 | 0 | 0 | 0 | Java | null | null | package com.grability.appstore.utils;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.grability.appstore.R;
import com.grab... | UTF-8 | Java | 2,221 | java | IntentUtil.java | Java | [] | null | [] | package com.grability.appstore.utils;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.grability.appstore.R;
import com.grab... | 2,221 | 0.794237 | 0.793787 | 59 | 36.64407 | 31.520649 | 113 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.79661 | false | false | 0 |
827e496afd324e1887dc77e4cce36a0c5c8fe43a | 29,875,792,511,823 | 82f8612f24ba932524398c79a16f6f072277ac05 | /diboot-modules/diboot-message/src/main/java/com/diboot/message/channel/SimpleEmailChannel.java | 9889b153c4cb1d7c54ff940e8a78c91a4c79e7cc | [
"Apache-2.0"
] | permissive | lezengcai/diboot-cloud | https://github.com/lezengcai/diboot-cloud | a87a121f5dd2f3b6f23d9b7973dafcb878fb1bc1 | 24dac4a373b4828659603c22d1192ea0ba9a32ba | refs/heads/main | 2023-07-15T16:34:14.356000 | 2021-08-10T09:17:22 | 2021-08-10T09:17:22 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright (c) 2015-2021, www.dibo.ltd (service@dibo.ltd).
* <p>
* 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
* <p>
* https://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless ... | UTF-8 | Java | 3,420 | java | SimpleEmailChannel.java | Java | [
{
"context": "/*\n * Copyright (c) 2015-2021, www.dibo.ltd (service@dibo.ltd).\n * <p>\n * Licensed under the Apache License, Ve",
"end": 61,
"score": 0.9999250769615173,
"start": 45,
"tag": "EMAIL",
"value": "service@dibo.ltd"
},
{
"context": " 简单邮件发送通道\n * <p>\n * 只支持发送文本,其他自行扩展\n ... | null | [] | /*
* Copyright (c) 2015-2021, www.dibo.ltd (<EMAIL>).
* <p>
* 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
* <p>
* https://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required ... | 3,411 | 0.644659 | 0.635939 | 94 | 33.159573 | 24.217236 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.478723 | false | false | 0 |
ac97793ba2a0202dd2133bbfb812ddd20dfa6de8 | 4,028,679,325,121 | 338c60094f63019bd6f6846e67a6dc93733e8ade | /ICSSMS/src/main/java/com/androidproductions/ics/sms/data/Contact.java | 3666ffa14085b7adf1ad136b180cc566ed18d167 | [
"Apache-2.0"
] | permissive | azurenightwalker/icssms | https://github.com/azurenightwalker/icssms | 42f530078afc2357cb526496119abeeb8529ed1c | 7c44d3863a6760112c7978a30edf11cfa78091c3 | refs/heads/master | 2021-01-01T15:18:54.218000 | 2013-09-09T16:49:08 | 2013-09-09T16:49:09 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.androidproductions.ics.sms.data;
import android.database.Cursor;
import android.provider.ContactsContract;
class Contact {
private final String displayName;
private final String phoneNumber;
public Contact(final String name, final String number)
{
displayName = name;
phone... | UTF-8 | Java | 753 | java | Contact.java | Java | [] | null | [] | package com.androidproductions.ics.sms.data;
import android.database.Cursor;
import android.provider.ContactsContract;
class Contact {
private final String displayName;
private final String phoneNumber;
public Contact(final String name, final String number)
{
displayName = name;
phone... | 753 | 0.705179 | 0.705179 | 29 | 24.965517 | 27.784246 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.413793 | false | false | 0 |
62a31e2734eb02f42d6194431381cfb33182236d | 29,970,281,860,430 | 8b7069ad5629bb29c831133e5f0e7d0d1e7271c5 | /app/src/main/java/com/example/zhang1ks/mywallet/TabFg1.java | b4660b724de52c45c2cd354617fc828d014ad1c9 | [] | no_license | zhang1ks/MyWallet | https://github.com/zhang1ks/MyWallet | ff9706637cb88124106aed69aed7d6d455cf64c7 | b0ada5d7617907661149ead28b84769b24aad79b | refs/heads/master | 2020-12-30T13:46:34.966000 | 2017-05-14T15:50:17 | 2017-05-14T15:50:17 | 91,254,291 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.zhang1ks.mywallet;
import android.content.ClipData;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Point;
import android.graphics.drawable.ColorDrawable;
import android.graphics.drawable.Drawable;
import android.media.MediaPlayer;
import android.net.Uri;
impo... | UTF-8 | Java | 4,622 | java | TabFg1.java | Java | [
{
"context": "package com.example.zhang1ks.mywallet;\n\nimport android.content.ClipData;\nimpor",
"end": 28,
"score": 0.8945427536964417,
"start": 20,
"tag": "USERNAME",
"value": "zhang1ks"
},
{
"context": "mport android.widget.VideoView;\n\n/**\n * Created by yuge on 11/14/2016.\n *... | null | [] | package com.example.zhang1ks.mywallet;
import android.content.ClipData;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Point;
import android.graphics.drawable.ColorDrawable;
import android.graphics.drawable.Drawable;
import android.media.MediaPlayer;
import android.net.Uri;
impo... | 4,622 | 0.630679 | 0.624838 | 146 | 30.664383 | 26.58671 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.547945 | false | false | 0 |
72cba65c3c0af82db713711e49f6850c65a0ecf2 | 19,069,654,805,138 | 5f2be2df1592121fb4b383b3bfdf30d903a6d074 | /app/src/main/java/com/netglue/ngtmobile/model/AssetPushItem.java | ffd98be44260c729cf035440a05939a4e2ede0db | [] | no_license | waterflower124/android-event-notice-app | https://github.com/waterflower124/android-event-notice-app | 6f037e58ebe87360fae23171282a58f028c2e3ef | 0b8c4a9d5d67e33a8964181d57a6ccde4faf47cf | refs/heads/main | 2023-05-07T03:44:37.833000 | 2021-05-27T02:11:02 | 2021-05-27T02:11:02 | 371,220,023 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.netglue.ngtmobile.model;
import java.util.ArrayList;
public class AssetPushItem {
private String assets_id;
private ArrayList<Integer> alarm_id_list;
public AssetPushItem(String assets_id, ArrayList<Integer> alarm_id_list) {
this.assets_id = assets_id;
this.alarm_id_list = al... | UTF-8 | Java | 709 | java | AssetPushItem.java | Java | [] | null | [] | package com.netglue.ngtmobile.model;
import java.util.ArrayList;
public class AssetPushItem {
private String assets_id;
private ArrayList<Integer> alarm_id_list;
public AssetPushItem(String assets_id, ArrayList<Integer> alarm_id_list) {
this.assets_id = assets_id;
this.alarm_id_list = al... | 709 | 0.650212 | 0.650212 | 30 | 22.633333 | 22.147209 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.366667 | false | false | 0 |
24b1c9afb77412e6ef3435c1b5dfdd9b54f98ab2 | 11,982,958,784,344 | 6a4253e0fc0df8a8273f07b4dfcfed0d1dedf6fa | /src/wanghang/java/JavaDemo.java | a59fd47c6528a9ec3ae39000f99a8cb155587be8 | [] | no_license | wanghang88/wanghang_JDK1.8 | https://github.com/wanghang88/wanghang_JDK1.8 | 486ba127c3a2fda2cca9ab03d4e41d0ee73bbc3b | f2db5725ac70930577b1aa533310dff4d02c3758 | refs/heads/master | 2023-09-02T23:14:30.891000 | 2021-11-16T10:27:39 | 2021-11-16T10:27:39 | 361,565,358 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package wanghang.java;
/**
*
vovo关于使用java语言的总结(
1:关于多线程上下文传递
2:JMM和volatile
3:java8的Stream原理
4:字节码原理及实战
5:java的spi机制
)
https://mp.weixin.qq.com/mp/appmsgalbum?action=getalbum&album_id=1500551436353503236&__biz=MzI4NjY4MTU5Nw==#wechat_redirect
*/
public class JavaDemo {
}
| UTF-8 | Java | 370 | java | JavaDemo.java | Java | [] | null | [] | package wanghang.java;
/**
*
vovo关于使用java语言的总结(
1:关于多线程上下文传递
2:JMM和volatile
3:java8的Stream原理
4:字节码原理及实战
5:java的spi机制
)
https://mp.weixin.qq.com/mp/appmsgalbum?action=getalbum&album_id=1500551436353503236&__biz=MzI4NjY4MTU5Nw==#wechat_redirect
*/
public class JavaDemo {
}
| 370 | 0.744828 | 0.648276 | 22 | 12.181818 | 25.659725 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.045455 | false | false | 0 |
9cfd47fafb79af7e87210b80097c83509ae86661 | 33,105,607,930,159 | 8dd943facb256c1cb248246cdb0b23ba3e285100 | /service-pb/src/main/java/com/bit/module/pb/service/impl/StudyRecordServiceImpl.java | 543e6c20e4ee0f240e317bbff8cd80710173e04c | [] | no_license | ouyangcode/WisdomTown | https://github.com/ouyangcode/WisdomTown | 6a121be9d23e565246b41c7c29716f3035d86992 | 5176a7cd0f92d47ffee6c5b4976aa8d185025bd9 | refs/heads/master | 2023-09-02T06:54:37.124000 | 2020-07-09T02:29:59 | 2020-07-09T02:29:59 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.bit.module.pb.service.impl;
import com.bit.base.dto.UserInfo;
import com.bit.base.exception.BusinessException;
import com.bit.base.service.BaseService;
import com.bit.base.vo.BaseVo;
import com.bit.common.Const;
import com.bit.common.enumerate.StudySituationEnum;
import com.bit.common.enumerate.StudyUserTy... | UTF-8 | Java | 4,334 | java | StudyRecordServiceImpl.java | Java | [
{
"context": "sactional;\n\nimport java.util.List;\n\n/**\n * @author chenduo\n * @create 2019-01-25 15:15\n */\n@Service(\"studyRe",
"end": 1033,
"score": 0.9995971322059631,
"start": 1026,
"tag": "USERNAME",
"value": "chenduo"
}
] | null | [] | package com.bit.module.pb.service.impl;
import com.bit.base.dto.UserInfo;
import com.bit.base.exception.BusinessException;
import com.bit.base.service.BaseService;
import com.bit.base.vo.BaseVo;
import com.bit.common.Const;
import com.bit.common.enumerate.StudySituationEnum;
import com.bit.common.enumerate.StudyUserTy... | 4,334 | 0.657068 | 0.651594 | 116 | 35.224136 | 22.76457 | 87 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.543103 | false | false | 0 |
99f783e6872429afa65c93ed86da7008820204e1 | 12,257,836,675,254 | f7436c6beb1e31c833e038a3412f115f51682062 | /app/src/main/java/com/example/dailyarticle/BookCase/ArticleActivity.java | 60c98ce6211e95414340a2c5410c1f94ef345c05 | [
"Apache-2.0"
] | permissive | jianjiandeme/Daily | https://github.com/jianjiandeme/Daily | 9c21681709d3d30cec367b12fc6c00697e00d5e3 | 2af43221024c2d8c119f6790fc83e4914bee4a43 | refs/heads/master | 2018-02-08T02:30:59.099000 | 2017-10-19T12:22:15 | 2017-10-19T12:22:15 | 95,943,339 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.dailyarticle.BookCase;
import android.content.Intent;
import android.os.AsyncTask;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
import android.widget.Toast;
import com.example.dailyarticle.R;
import org.jsoup.Jsoup;
import org.jsoup.no... | UTF-8 | Java | 2,630 | java | ArticleActivity.java | Java | [] | null | [] | package com.example.dailyarticle.BookCase;
import android.content.Intent;
import android.os.AsyncTask;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;
import android.widget.Toast;
import com.example.dailyarticle.R;
import org.jsoup.Jsoup;
import org.jsoup.no... | 2,630 | 0.587726 | 0.586939 | 81 | 30.395061 | 21.226398 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.567901 | false | false | 0 |
1b8e30364011143e5d6f39574571a41959d6e2dd | 12,094,627,920,085 | 888b30007dadd4f0e870ecb5b48db07992dbfdf9 | /HospitalSytem/src/System/Main.java | 73e0b9e6e22772cf0c4998726582fe5003279115 | [] | no_license | ninjerie/Hospital-System | https://github.com/ninjerie/Hospital-System | 956835120a016f47000ec11386a015fda9604abf | 0449bbe46e74ff7cad60098b2135349eece2ebfc | refs/heads/master | 2020-11-24T16:52:52.963000 | 2020-01-28T13:29:53 | 2020-01-28T13:29:53 | 228,257,947 | 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 System;
import System.Database;
import UserData.*;
import Controllers.*;
/**
*
* @author Geri
*/
public class Main {
p... | UTF-8 | Java | 910 | java | Main.java | Java | [
{
"context": "erData.*;\nimport Controllers.*;\n\n/**\n *\n * @author Geri\n */\npublic class Main {\n public static AccessC",
"end": 290,
"score": 0.9995281100273132,
"start": 286,
"tag": "NAME",
"value": "Geri"
}
] | 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 System;
import System.Database;
import UserData.*;
import Controllers.*;
/**
*
* @author Geri
*/
public class Main {
p... | 910 | 0.723077 | 0.723077 | 31 | 28.354839 | 29.010063 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.483871 | false | false | 0 |
64e8639aca845886b2e1c82190fd84a845d17eec | 2,095,944,061,248 | d7f2c48b058bf8d76546e338c40f02838bd14a64 | /app/src/main/java/com/sergeivasilenko/exemplary/Application.java | 44ed36ae7214e9f198a15e6e4d38d77b2335a5e1 | [] | no_license | SergeiVasilenko/ExemplaryApp-android | https://github.com/SergeiVasilenko/ExemplaryApp-android | 4a2ce199da4232cc6c1734bd5a368452646086b8 | b20a674429969f9adc15cb721935d2524f49a800 | refs/heads/master | 2020-04-07T04:42:20.347000 | 2018-11-18T09:31:29 | 2018-11-18T09:31:29 | 158,068,254 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sergeivasilenko.exemplary;
import android.app.Activity;
import com.sergeivasilenko.exemplary.di.AppInjector;
import javax.inject.Inject;
import dagger.android.AndroidInjector;
import dagger.android.DispatchingAndroidInjector;
import dagger.android.HasActivityInjector;
/**
* Created on 17/09/2018.
*
... | UTF-8 | Java | 779 | java | Application.java | Java | [
{
"context": "ctor;\n\n/**\n * Created on 17/09/2018.\n *\n * @author Sergey Vasilenko (vasilenko.sn@gmail.com)\n */\npublic class Applica",
"end": 346,
"score": 0.9998149871826172,
"start": 330,
"tag": "NAME",
"value": "Sergey Vasilenko"
},
{
"context": "ed on 17/09/2018.\n *\n * @a... | null | [] | package com.sergeivasilenko.exemplary;
import android.app.Activity;
import com.sergeivasilenko.exemplary.di.AppInjector;
import javax.inject.Inject;
import dagger.android.AndroidInjector;
import dagger.android.DispatchingAndroidInjector;
import dagger.android.HasActivityInjector;
/**
* Created on 17/09/2018.
*
... | 754 | 0.792041 | 0.780488 | 35 | 21.257143 | 23.06555 | 89 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.771429 | false | false | 0 |
8eb67abc2997d35bed04d980c175be43d34d2f29 | 32,392,643,363,293 | a5ab4060eb660a0d0dbebea727c7560ef4e55be1 | /user-service/src/main/java/com/rbouklab/microdemo/model/Borrowing.java | 7dba9ed2a233de2d528f90d0adc60c38e65d4686 | [] | no_license | raoufbouklab/spring-cloud-eureka-hystrix-zipkin-zuul | https://github.com/raoufbouklab/spring-cloud-eureka-hystrix-zipkin-zuul | 5d44d0cddacf5c05a79fd00d8ae5d94bf9c48313 | 49044b261b16f0f6b903792ac721b678c16acca5 | refs/heads/main | 2023-08-26T07:00:14.711000 | 2021-11-05T12:39:48 | 2021-11-05T12:39:48 | 424,943,307 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.rbouklab.microdemo.model;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import javax.persistence.*;
import java.time.LocalDate;
@Data
@AllArgsConstructor
@NoArgsConstructor
@Entity
@Table(name = "borrowings")
public class Borrowing {
@Id
@GeneratedValue(s... | UTF-8 | Java | 740 | java | Borrowing.java | Java | [] | null | [] | package com.rbouklab.microdemo.model;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import javax.persistence.*;
import java.time.LocalDate;
@Data
@AllArgsConstructor
@NoArgsConstructor
@Entity
@Table(name = "borrowings")
public class Borrowing {
@Id
@GeneratedValue(s... | 740 | 0.732432 | 0.732432 | 31 | 22.870968 | 19.416889 | 95 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.580645 | false | false | 0 |
6c2b5b06b5564206c9cd19ab2250a9f5fd289b9a | 18,021,682,790,123 | 5a73d80b2c1ff535f7da940bb895d5c703f753fa | /src/week1/ex7_SortNum.java | 6492f561ef7b5ff7b9d94ceb3e41499cf346ada3 | [] | no_license | CocMap/INTE2512_oop | https://github.com/CocMap/INTE2512_oop | 44ae30092961119a39d9255de965ae0676c9bfc8 | 9bb381e96d668fbb8b65b1063209f531c9cd2b22 | refs/heads/master | 2021-09-02T11:52:39.793000 | 2018-01-02T09:56:40 | 2018-01-02T09:56:40 | 108,257,743 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
Exercise 7 - The integers are entered from the input dialogs and stored in variables
num1, num2, and num3. The program sorts the numbers so that num1 ≤ num2 ≤ num3
*/
package week1;
import java.util.Arrays;
import java.util.Scanner;
public class ex7_SortNum {
public static void main(String[] args) {
... | UTF-8 | Java | 1,142 | java | ex7_SortNum.java | Java | [] | null | [] | /*
Exercise 7 - The integers are entered from the input dialogs and stored in variables
num1, num2, and num3. The program sorts the numbers so that num1 ≤ num2 ≤ num3
*/
package week1;
import java.util.Arrays;
import java.util.Scanner;
public class ex7_SortNum {
public static void main(String[] args) {
... | 1,142 | 0.536028 | 0.522847 | 36 | 30.611111 | 26.037663 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.583333 | false | false | 0 |
346d7f3d69444a12e60d9f6be59b24ab1293b60c | 18,021,682,789,106 | 0c6e21b398408be241575bf735f8dbfb9c62eb0a | /app/src/main/java/lk/gov/arogya/nearbypeopletracker/ContactReportFragment.java | 5470e5754c0f7b317912c1cc130eff5c6087a111 | [
"MIT"
] | permissive | AnjanaSenanayake/Arogya | https://github.com/AnjanaSenanayake/Arogya | 2e74573c65c4e4440d55fd71c3fb56b98e0bc64b | d9b8d2df1ad173d1aa84ce3c850073f07d090d3d | refs/heads/master | 2022-06-05T08:35:11.955000 | 2020-04-30T17:22:44 | 2020-04-30T17:22:44 | 255,518,286 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package lk.gov.arogya.nearbypeopletracker;
import android.content.Context;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.fragment.app.Fragment;
import com.google.android.gms.maps.CameraUpdateFactor... | UTF-8 | Java | 2,783 | java | ContactReportFragment.java | Java | [] | null | [] | package lk.gov.arogya.nearbypeopletracker;
import android.content.Context;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.fragment.app.Fragment;
import com.google.android.gms.maps.CameraUpdateFactor... | 2,783 | 0.73949 | 0.737693 | 77 | 35.142857 | 27.768391 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.636364 | false | false | 0 |
0c524a420cfd886283748fa31ffebffda9f1ac2d | 3,934,190,062,211 | 2e8e1ba5881034f69e9b14440903d88e8133a4bd | /RelationBN-2/app/src/main/java/com/dickies/android/relationbn/registerlogin/RegisterActivity.java | 2429d9250d4b89d56a64058568363de59441b4e2 | [] | no_license | dickiep/relationAndroid | https://github.com/dickiep/relationAndroid | 26a8de82f9d06d79e82717203b769e06ebcc3be9 | f0007c2e482f08351b266f5b6665b4445879113b | refs/heads/master | 2023-03-11T22:26:11.524000 | 2021-03-04T17:41:41 | 2021-03-04T17:41:41 | 344,558,646 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dickies.android.relationbn.registerlogin;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.AppCompatButton;
import android.view.View;
import android.widget.EditText;
import com.dickies.android.relationbn.R;
/**
* Created by Phil on 30/09/2018.
... | UTF-8 | Java | 1,485 | java | RegisterActivity.java | Java | [
{
"context": "m.dickies.android.relationbn.R;\n\n/**\n * Created by Phil on 30/09/2018.\n */\n\npublic class RegisterActivity",
"end": 303,
"score": 0.9944638609886169,
"start": 299,
"tag": "NAME",
"value": "Phil"
}
] | null | [] | package com.dickies.android.relationbn.registerlogin;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.AppCompatButton;
import android.view.View;
import android.widget.EditText;
import com.dickies.android.relationbn.R;
/**
* Created by Phil on 30/09/2018.
... | 1,485 | 0.731313 | 0.724579 | 47 | 30.595745 | 30.531921 | 155 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.553191 | false | false | 0 |
5ef6f6450bd86f033308284d1d417bd987002a63 | 4,544,075,419,876 | f087aa0290ec8d725f15cec59b07c57f8b906221 | /ground/src/main/java/com/crewfactory/main/service/BlogService.java | 8a35c3451b2514de4c5ec591f19b3104cd12ec17 | [] | no_license | crewfactory/ground | https://github.com/crewfactory/ground | d9db809488de0a23ab29eb2592a60aea7a848117 | e0c73c67aeb599a8b7849a861fb7050efc4f5824 | refs/heads/master | 2022-12-25T22:52:43.572000 | 2020-10-08T02:26:37 | 2020-10-08T02:26:37 | 301,635,623 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.crewfactory.main.service;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.crewfactory.main.dao.BlogDao;
import com.crewfactory.main.domain.BlogDomain;
import com.crewfactory.mai... | UTF-8 | Java | 3,669 | java | BlogService.java | Java | [] | null | [] | package com.crewfactory.main.service;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.crewfactory.main.dao.BlogDao;
import com.crewfactory.main.domain.BlogDomain;
import com.crewfactory.mai... | 3,669 | 0.73644 | 0.735623 | 110 | 31.354546 | 31.782667 | 132 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.681818 | false | false | 0 |
422aa58f9e31bb7cee2366cff68fa26506cc6c77 | 14,010,183,354,382 | 5876140c0e48ac932ea739234287b366147695b2 | /app/src/main/java/com/wzdq/fengcai/Obserable/IObserver.java | f4fac2822a5aafbe815b307492debb6002cc3456 | [] | no_license | ps130183/FengCai | https://github.com/ps130183/FengCai | 91fd0b0ddc390cadc7f0ecc5f0f94127231c44a2 | 6bda4c1abc3071caa4d50a613c92703d224dff9c | refs/heads/master | 2020-04-09T11:36:45.462000 | 2018-12-04T10:25:32 | 2018-12-04T10:25:32 | 160,316,758 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.wzdq.fengcai.Obserable;
/**
* Created by PengSong on 18/11/26.
*/
public interface IObserver {
void subscribe(Object ... params);
}
| UTF-8 | Java | 154 | java | IObserver.java | Java | [
{
"context": "age com.wzdq.fengcai.Obserable;\n\n/**\n * Created by PengSong on 18/11/26.\n */\n\npublic interface IObserver ",
"end": 59,
"score": 0.9884949326515198,
"start": 55,
"tag": "NAME",
"value": "Peng"
},
{
"context": "om.wzdq.fengcai.Obserable;\n\n/**\n * Created by PengSo... | null | [] | package com.wzdq.fengcai.Obserable;
/**
* Created by PengSong on 18/11/26.
*/
public interface IObserver {
void subscribe(Object ... params);
}
| 154 | 0.675325 | 0.636364 | 11 | 13 | 16.062378 | 38 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.181818 | false | false | 0 |
8ef57fe633ce2aa089eaebe2e3dce22154616e2e | 6,665,789,255,887 | 4f582daf55f75412d4736d2e6645bc1bc9daab58 | /web/src/main/java/ch/ethz/globis/isk/web/model/SimpleJournalDto.java | b93ca112ea9e78cfbde49057c3e048fb16252b34 | [] | no_license | vdemotz/InfSystemsTask7 | https://github.com/vdemotz/InfSystemsTask7 | 7110a0694df04c854213f444a028970031832f71 | e4757bee7ab7c7a3e5818f698a01615cd0a20dbf | refs/heads/master | 2021-01-22T02:40:00.855000 | 2015-05-19T12:20:44 | 2015-05-19T12:20:44 | 35,600,875 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ch.ethz.globis.isk.web.model;
import ch.ethz.globis.isk.domain.Journal;
import ch.ethz.globis.isk.web.utils.EncodingUtils;
import com.fasterxml.jackson.annotation.JsonProperty;
public class SimpleJournalDto extends DTO<Journal> {
@JsonProperty("name")
private String name;
@JsonProperty("id")
... | UTF-8 | Java | 895 | java | SimpleJournalDto.java | Java | [] | null | [] | package ch.ethz.globis.isk.web.model;
import ch.ethz.globis.isk.domain.Journal;
import ch.ethz.globis.isk.web.utils.EncodingUtils;
import com.fasterxml.jackson.annotation.JsonProperty;
public class SimpleJournalDto extends DTO<Journal> {
@JsonProperty("name")
private String name;
@JsonProperty("id")
... | 895 | 0.642458 | 0.642458 | 43 | 19.813953 | 18.486017 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.302326 | false | false | 0 |
58cce89c2db766c4a92d278d50ceb229c4fffd61 | 13,675,175,914,345 | c7314a37e7912736e222d97b2f8913dfc5ef62d7 | /src/pdsu/hrms/model/History.java | a0604d240d15a765486d68a60a98284c785bac56 | [] | no_license | xiaomeiqiu007/JAVA-JFrame | https://github.com/xiaomeiqiu007/JAVA-JFrame | efbecd1c0ff070444e20604714a206c33899bbc6 | 3460501a84bcf143c6b52b511b1e8dd18f0cfffb | refs/heads/master | 2020-04-18T02:23:25.856000 | 2019-01-23T10:10:47 | 2019-01-23T10:10:47 | 167,160,370 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pdsu.hrms.model;
public class History {
long hisId;
private String hisType;
private String oldInfo;
private String newInfo;
private String chgDtate;
private long chgNum;
private long personId;
//ÍØÕ¹ÊôÐÔ
private String name;
public long getHisId() {
return hisId;
}
public void setHisId(long hisId) {
this.... | WINDOWS-1252 | Java | 1,154 | java | History.java | Java | [] | null | [] | package pdsu.hrms.model;
public class History {
long hisId;
private String hisType;
private String oldInfo;
private String newInfo;
private String chgDtate;
private long chgNum;
private long personId;
//ÍØÕ¹ÊôÐÔ
private String name;
public long getHisId() {
return hisId;
}
public void setHisId(long hisId) {
this.... | 1,154 | 0.733857 | 0.732984 | 79 | 13.50633 | 13.349133 | 42 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.518987 | false | false | 0 |
274ab19add04ffa0138f611d490aa75dd5cf3f2c | 32,495,722,566,842 | 8f07067667f131b29c0eade5c724970e6ef65dce | /src/test/java/ru/netology/RadioTest.java | 6e5e727d05c15a0686a63e1b1028a86013252fd2 | [] | no_license | rabmail/DZ_Radio | https://github.com/rabmail/DZ_Radio | d5b872d4436a8e88f8aa2ecfdaa4693aa0a3f0c6 | 33eccd56f235439fa37e842f0783ac87f72623cb | refs/heads/master | 2023-03-03T10:08:47.922000 | 2021-02-06T07:59:46 | 2021-02-06T07:59:46 | 335,733,716 | 0 | 0 | null | false | 2021-02-15T16:59:26 | 2021-02-03T19:33:50 | 2021-02-06T07:59:55 | 2021-02-15T16:56:30 | 5 | 0 | 0 | 2 | Java | false | false | package ru.netology;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class RadioTest {
@Test
public void setCurrentStation() {
Radio radio = new Radio();
assertEquals(0, radio.getCurrentStation());
radio.setMaxStation(9);
radio.setMinStati... | UTF-8 | Java | 4,362 | java | RadioTest.java | Java | [] | null | [] | package ru.netology;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class RadioTest {
@Test
public void setCurrentStation() {
Radio radio = new Radio();
assertEquals(0, radio.getCurrentStation());
radio.setMaxStation(9);
radio.setMinStati... | 4,362 | 0.600183 | 0.583448 | 169 | 24.816568 | 16.786039 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.680473 | false | false | 0 |
935ea3c56ca4666a64efafb4e8a4864f2b6cc0ff | 12,077,448,101,250 | f004cdfec2f243a25351d92704c601a5b2a0f294 | /005-Distributed/001-Auth/src/main/java/com/bjpowernode/model/entity/Auth.java | 8199e2cbf4c60461634239eaaf384105b721fa4d | [] | no_license | ClearPlume/JavaStudy | https://github.com/ClearPlume/JavaStudy | 2c6a74da0459e8cade00b7563a2ae042ac5e9ae3 | 028f7ad8a3e2c0ec84e36590932c2a9ec406d613 | refs/heads/master | 2023-02-10T20:52:38.638000 | 2021-01-02T08:02:11 | 2021-01-02T08:02:11 | 302,613,025 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.bjpowernode.model.entity;
public class Auth {
private Integer authId;
private String authName;
private String authCode;
private String authUrl;
private Integer authStatus;
public Integer getAuthId() {
return authId;
}
public void setAuthId(Integer authId) {
... | UTF-8 | Java | 1,076 | java | Auth.java | Java | [] | null | [] | package com.bjpowernode.model.entity;
public class Auth {
private Integer authId;
private String authName;
private String authCode;
private String authUrl;
private Integer authStatus;
public Integer getAuthId() {
return authId;
}
public void setAuthId(Integer authId) {
... | 1,076 | 0.622677 | 0.622677 | 53 | 19.320755 | 19.452675 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.301887 | false | false | 0 |
74b53007885ba738934a0ee5d7bbdd517282f430 | 7,859,790,178,449 | 7df7d3f150e39f0065ec04f3274613f22eec7187 | /media/livestream/src/main/java/com/example/livestream/GetAsset.java | 4af70039e82bf52332148e28b524e9977866dac2 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | GoogleCloudPlatform/java-docs-samples | https://github.com/GoogleCloudPlatform/java-docs-samples | b8bacddd582697c307a85d6aa740fa2a71cdbf00 | f166f36a595c35dbc32bc49cf16e598e5812f43a | refs/heads/main | 2023-09-03T04:07:37.538000 | 2023-08-31T23:16:36 | 2023-08-31T23:16:36 | 32,895,424 | 1,771 | 3,440 | Apache-2.0 | false | 2023-09-14T20:25:30 | 2015-03-25T22:48:38 | 2023-09-13T09:19:21 | 2023-09-13T09:40:00 | 100,325 | 1,606 | 2,825 | 28 | Java | false | false | /*
* Copyright 2023 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in wr... | UTF-8 | Java | 1,891 | java | GetAsset.java | Java | [] | null | [] | /*
* Copyright 2023 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in wr... | 1,891 | 0.740349 | 0.734003 | 49 | 37.591835 | 30.771652 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.510204 | false | false | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.