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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bc077542cfc53690295753cc28a5a9cc88f1187d | 34,643,206,251,148 | 92dd6bc0a9435c359593a1f9b309bb58d3e3f103 | /src/June2021GoogLeetcode/_0846HandOfStraights.java | 5b4684b59ea8f6a45d95821fc39313817ed7f986 | [
"MIT"
] | permissive | darshanhs90/Java-Coding | https://github.com/darshanhs90/Java-Coding | bfb2eb84153a8a8a9429efc2833c47f6680f03f4 | da76ccd7851f102712f7d8dfa4659901c5de7a76 | refs/heads/master | 2023-05-27T03:17:45.055000 | 2021-06-16T06:18:08 | 2021-06-16T06:18:08 | 36,981,580 | 3 | 3 | null | null | null | null | null | null | null | null | null | null | null | null | null | package June2021GoogLeetcode;
import java.util.Map;
import java.util.TreeMap;
public class _0846HandOfStraights {
public static void main(String[] args) {
System.out.println(isNStraightHand(new int[] { 1, 2, 3, 6, 2, 3, 4, 7, 8 }, 3));
System.out.println(isNStraightHand(new int[] { 1, 2, 3, 4, 5 }, 4));
}
pub... | UTF-8 | Java | 1,044 | java | _0846HandOfStraights.java | Java | [] | null | [] | package June2021GoogLeetcode;
import java.util.Map;
import java.util.TreeMap;
public class _0846HandOfStraights {
public static void main(String[] args) {
System.out.println(isNStraightHand(new int[] { 1, 2, 3, 6, 2, 3, 4, 7, 8 }, 3));
System.out.println(isNStraightHand(new int[] { 1, 2, 3, 4, 5 }, 4));
}
pub... | 1,044 | 0.587165 | 0.556513 | 39 | 25.76923 | 22.777025 | 82 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.615385 | false | false | 10 |
5d9ff752492681c12991c4beaa5681a308b38f93 | 33,698,313,406,110 | b5b3c044453ae0f90ef81fc7c15ff56fb9d09c9d | /Bridge/src/dk/telenor/vlpo/LargeCircleDrawer.java | b8fb1b5922f9f40e597eed1fb862884ff8c225e3 | [] | no_license | VladislavPovedyuk/JavaGoFPatternsExamples | https://github.com/VladislavPovedyuk/JavaGoFPatternsExamples | 7c2c59a9128cabe0a59858e99fe35f138fc930c6 | bf56a3b7d6d73dd745a9ab01b05304b17f253fc4 | refs/heads/master | 2020-05-19T10:15:24.862000 | 2015-04-24T11:22:42 | 2015-04-24T11:22:42 | 34,386,219 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package dk.telenor.vlpo;
/**
* Created by vlpo on 22/04/2015.
*/
public class LargeCircleDrawer implements CircleDrawer {
private static final int radiusMultiplier = 20;
public void drawCircle(int x, int y, int radius) {
System.out.println("Drawing large circle in ( " + x + " ; " + y + " ) and ra... | UTF-8 | Java | 366 | java | LargeCircleDrawer.java | Java | [
{
"context": "package dk.telenor.vlpo;\n\n/**\n * Created by vlpo on 22/04/2015.\n */\n\npublic class LargeCircleDrawe",
"end": 48,
"score": 0.9996726512908936,
"start": 44,
"tag": "USERNAME",
"value": "vlpo"
}
] | null | [] | package dk.telenor.vlpo;
/**
* Created by vlpo on 22/04/2015.
*/
public class LargeCircleDrawer implements CircleDrawer {
private static final int radiusMultiplier = 20;
public void drawCircle(int x, int y, int radius) {
System.out.println("Drawing large circle in ( " + x + " ; " + y + " ) and ra... | 366 | 0.650273 | 0.622951 | 15 | 23.4 | 33.318264 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 10 |
34efc9aaf2f98d9f292021b3d556099d316d3208 | 38,104,949,871,705 | 13c2d3db2d49c40c74c2e6420a9cd89377f1c934 | /program_data/JavaProgramData/49/1378.java | 33a7772a07cac78af3f718b8cbfdf34cd19aa8c1 | [
"MIT"
] | permissive | qiuchili/ggnn_graph_classification | https://github.com/qiuchili/ggnn_graph_classification | c2090fefe11f8bf650e734442eb96996a54dc112 | 291ff02404555511b94a4f477c6974ebd62dcf44 | refs/heads/master | 2021-10-18T14:54:26.154000 | 2018-10-21T23:34:14 | 2018-10-21T23:34:14 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package <missing>;
public class GlobalMembers
{
public static int Main()
{
String s = new String(new char[500]);
s = new Scanner(System.in).nextLine();
int[][] a = new int[500][500];
int[] b = new int[500];
int l;
int i;
int j;
int k;
int p = 0;
l = s.length();
for (i = 0;i < l - 1;i = i + 1)
... | UTF-8 | Java | 1,366 | java | 1378.java | Java | [] | null | [] | package <missing>;
public class GlobalMembers
{
public static int Main()
{
String s = new String(new char[500]);
s = new Scanner(System.in).nextLine();
int[][] a = new int[500][500];
int[] b = new int[500];
int l;
int i;
int j;
int k;
int p = 0;
l = s.length();
for (i = 0;i < l - 1;i = i + 1)
... | 1,366 | 0.345534 | 0.303075 | 81 | 15.864198 | 16.401409 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.876543 | false | false | 10 |
5e29ba277f08b7a23d0ec6e8703b23c8b272c5ff | 39,109,972,228,162 | 0fb33fec254655195b299619777ef3a6a3536c88 | /src/com/core/dao/BaseDictDao.java | ba5669ea0a78c226478a4cf54b4c1da6a2a6c14a | [] | no_license | hayhead/Test | https://github.com/hayhead/Test | e73d9b42b55f0cb637a7fd4fb87f426e269a10ee | 1b31e51e8517c8db6d3932320cabf2b744ffefee | refs/heads/master | 2023-03-19T02:39:15.282000 | 2021-03-03T04:00:23 | 2021-03-03T04:00:23 | 280,589,073 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.core.dao;
import java.util.List;
import com.core.pojo.BaseDict;
public interface BaseDictDao {
/*
* 根据类别代码查询
*/
public List<BaseDict> selectBaseDictByTypeCode(String type);
}
| GB18030 | Java | 215 | java | BaseDictDao.java | Java | [] | null | [] | package com.core.dao;
import java.util.List;
import com.core.pojo.BaseDict;
public interface BaseDictDao {
/*
* 根据类别代码查询
*/
public List<BaseDict> selectBaseDictByTypeCode(String type);
}
| 215 | 0.733668 | 0.733668 | 14 | 13.214286 | 17.263416 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.642857 | false | false | 10 |
f07df9b6638b11742aa631e0610ca458e8dcfbf6 | 34,892,314,369,745 | 4097fc013d806b461ebe91ea665ba7f55be9f827 | /ms-scolarite/src/main/java/com/esi/msscolarite/controller/apiController.java | 3b9153ad9016e0afc929be62ca8b649324eb3474 | [] | no_license | malkiAbdelhamid/TP4-Gateway-CircuitBreaker | https://github.com/malkiAbdelhamid/TP4-Gateway-CircuitBreaker | dbc5e5b037ee6caed588c8b0638f22878c073682 | b7ccd6f3ce314c6855eda721401da740b5d6b99b | refs/heads/master | 2023-04-25T17:19:54.091000 | 2021-05-12T22:24:44 | 2021-05-12T22:24:44 | 366,867,724 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.esi.msscolarite.controller;
import com.esi.msscolarite.DTO.FormationDTO;
import com.esi.msscolarite.dao.EtudiantRepository;
import com.esi.msscolarite.entities.Etudiant;
import com.esi.msscolarite.proxy.FormationProxy;
import org.springframework.beans.factory.annotation.Autowired;
import org.springf... | UTF-8 | Java | 1,475 | java | apiController.java | Java | [] | null | [] | package com.esi.msscolarite.controller;
import com.esi.msscolarite.DTO.FormationDTO;
import com.esi.msscolarite.dao.EtudiantRepository;
import com.esi.msscolarite.entities.Etudiant;
import com.esi.msscolarite.proxy.FormationProxy;
import org.springframework.beans.factory.annotation.Autowired;
import org.springf... | 1,475 | 0.713898 | 0.713898 | 48 | 28.729166 | 25.769604 | 87 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4375 | false | false | 10 |
c2a8eee9e5c566af6d067084e47b17eb51752975 | 38,860,864,141,625 | df9c945007a77065d8685714312b66340d29832c | /CalculatorAppRefactored.java | 9d6f2697fbefa53d9eb3eb75204122c1bd333643 | [] | no_license | heymattlauer/Exercise6 | https://github.com/heymattlauer/Exercise6 | 1cb4167a9ca00be57fc8851fdc8fc9a6a574622f | 559f39c3583477d28ec04bf6a60fe5fb9f611ed7 | refs/heads/master | 2015-08-13T12:51:53.837000 | 2014-09-17T15:35:54 | 2014-09-17T15:35:54 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.calculatorapprefactored;
import java.util.Scanner;
import java.util.InputMismatchException;
/**
* Created by mattlauer on 2014-09-16.
*/
public class CalculatorAppRefactored {
static Scanner in = new Scanner(System.in);
public static char getOperationChoice(){
char operationChoi... | UTF-8 | Java | 4,930 | java | CalculatorAppRefactored.java | Java | [
{
"context": "va.util.InputMismatchException;\n\n/**\n * Created by mattlauer on 2014-09-16.\n */\npublic class CalculatorAppRefa",
"end": 140,
"score": 0.9994297623634338,
"start": 131,
"tag": "USERNAME",
"value": "mattlauer"
}
] | null | [] | package com.example.calculatorapprefactored;
import java.util.Scanner;
import java.util.InputMismatchException;
/**
* Created by mattlauer on 2014-09-16.
*/
public class CalculatorAppRefactored {
static Scanner in = new Scanner(System.in);
public static char getOperationChoice(){
char operationChoi... | 4,930 | 0.53428 | 0.525761 | 114 | 42.245613 | 33.747139 | 160 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.640351 | false | false | 10 |
772d4c59b7f3369e34720e61f97e28042b6f307a | 5,875,515,262,371 | 4cdd7dd726adc7df122eb5a9089af679ab35f4e7 | /DEMO/ArchitectureServerDemo/src/main/java/nju/architecture/server_demo/service_cluster/service/MovieService.java | 621e717200ac045e0eb9434dd1f9ddca87234453 | [
"MIT"
] | permissive | chenxiao2402/ArchitectureBigHomework | https://github.com/chenxiao2402/ArchitectureBigHomework | 2ee0cf7f09696a04e9f8683d518ce2f8e10b1da8 | d9d280492e49e64caa3df8cd1adffee6d6a33817 | refs/heads/master | 2022-10-03T07:01:34.124000 | 2019-04-04T07:19:42 | 2019-04-04T07:19:42 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package nju.architecture.server_demo.service_cluster.service;
import nju.architecture.server_demo.database_cluster.entity.Movie;
import java.util.List;
public interface MovieService {
long addMovie(Movie movie);
boolean editMovieInfo(Movie movie);
List<Movie> getAllMovies();
List<Movie> getMovieL... | UTF-8 | Java | 343 | java | MovieService.java | Java | [] | null | [] | package nju.architecture.server_demo.service_cluster.service;
import nju.architecture.server_demo.database_cluster.entity.Movie;
import java.util.List;
public interface MovieService {
long addMovie(Movie movie);
boolean editMovieInfo(Movie movie);
List<Movie> getAllMovies();
List<Movie> getMovieL... | 343 | 0.763848 | 0.763848 | 16 | 20.4375 | 22.786972 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4375 | false | false | 10 |
2baeef3b63300b9fc0b434cb132b6d2a7ac96246 | 5,806,795,789,127 | cd3dd3c08c2bdfe809cefbea02524caebffdb030 | /QAF (1)/.svn/pristine/f1/f1a317d20e17b72715bf88bd4ffd17e96dbdd313.svn-base | ded2f40a622679e50695cf95c395fc733f3ea49d | [] | no_license | anjalipatelit93/QASDev | https://github.com/anjalipatelit93/QASDev | e658bf13936266301591c4ed8d96fac92c892fe4 | a3984ace832b356c6bd56b9253d817e3a4e19320 | refs/heads/master | 2017-11-01T16:35:39.580000 | 2016-07-25T09:30:58 | 2016-07-25T09:30:58 | 64,120,819 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*************************************************************************
* InfoStretch Corporation ("InfoStretch") CONFIDENTIAL
* © 2012-2015 InfoStretch, All Rights Reserved. All Rights Reserved.
* NOTICE: All information contained herein is, and remains the property of
* InfoStretch.
* The intellectual and tec... | WINDOWS-1252 | Java | 4,414 | f1a317d20e17b72715bf88bd4ffd17e96dbdd313.svn-base | Java | [
{
"context": "lass to access\n * system clip board\n * \n * @author chirag\n */\npublic class ClipBoardUtil {\n\t/**\n\t * Get the",
"end": 2211,
"score": 0.9843826293945312,
"start": 2205,
"tag": "USERNAME",
"value": "chirag"
}
] | null | [] | /*************************************************************************
* InfoStretch Corporation ("InfoStretch") CONFIDENTIAL
* © 2012-2015 InfoStretch, All Rights Reserved. All Rights Reserved.
* NOTICE: All information contained herein is, and remains the property of
* InfoStretch.
* The intellectual and tec... | 4,414 | 0.722638 | 0.720825 | 118 | 36.398304 | 27.165262 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.762712 | false | false | 10 | |
18c9343e8ef0c5e9e39ea4c41365e680371cdacd | 31,147,102,835,476 | 3660afc32881077466c4ea30f1ec8efaf204e684 | /core/src/de/loki/function_calculator/FunctionCalculator.java | 34bfe0e271364101ea7f187ae6794cb9d69eba71 | [] | no_license | LokiGodofBattle/FunctionCalculator | https://github.com/LokiGodofBattle/FunctionCalculator | 88378a371a3ded3ace25167fbc4b9c9f88c76629 | 8d3c8ced733369dbccb7379040df611934fb2bcf | refs/heads/master | 2020-05-18T14:16:36.062000 | 2017-03-07T20:25:22 | 2017-03-07T20:25:22 | 84,242,951 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package de.loki.function_calculator;
import com.badlogic.gdx.ApplicationAdapter;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.OrthographicCamera;
import com.badlogic.gdx.graphics.g2d.BitmapFont;
import com.badlogic.gdx.grap... | UTF-8 | Java | 3,965 | java | FunctionCalculator.java | Java | [] | null | [] | package de.loki.function_calculator;
import com.badlogic.gdx.ApplicationAdapter;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.Color;
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.OrthographicCamera;
import com.badlogic.gdx.graphics.g2d.BitmapFont;
import com.badlogic.gdx.grap... | 3,965 | 0.76927 | 0.757392 | 126 | 30.404762 | 24.867643 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.825397 | false | false | 10 |
6068bd1a17f76f4c30ed6b733b9f5394fe42b899 | 31,147,102,836,768 | 017c6de2afd725fdb9f4f00f59b662ee823f1d84 | /Proyecto_Prog-master/proyecto_programacion_III/src/arrays/arrayElectrodomesticos.java | c89d53e173ec2e59c8bd6cf9ff5acdb8f6801eef | [] | no_license | victorugarte24/Proyecto_Prog | https://github.com/victorugarte24/Proyecto_Prog | 56116abe3904cc59c084be291712e95c45ea2e75 | 091760306809bec6fd3547d8844852ac859b2e40 | refs/heads/master | 2020-08-30T10:14:10.091000 | 2020-02-05T22:40:02 | 2020-02-05T22:40:02 | 218,346,609 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package arrays;
import java.util.ArrayList;
import electrodomesticos.Electrodomesticos;
public class arrayElectrodomesticos {
public ArrayList<Electrodomesticos> arrayElectrodomesticos = new ArrayList<Electrodomesticos>();;
public arrayElectrodomesticos(){
Electrodomesticos lavadoraLgB5 = new Electrodom... | UTF-8 | Java | 1,280 | java | arrayElectrodomesticos.java | Java | [] | null | [] | package arrays;
import java.util.ArrayList;
import electrodomesticos.Electrodomesticos;
public class arrayElectrodomesticos {
public ArrayList<Electrodomesticos> arrayElectrodomesticos = new ArrayList<Electrodomesticos>();;
public arrayElectrodomesticos(){
Electrodomesticos lavadoraLgB5 = new Electrodom... | 1,280 | 0.755869 | 0.723005 | 33 | 37.727272 | 45.141712 | 138 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.878788 | false | false | 10 |
5427e06c1b6c47de54a7e6ce9b8f6b2a94cd2ef8 | 25,434,796,341,192 | f48ca3fce00bdbd0edbb41eecc3e912ebbc723cc | /src/main/java/com/avenuecode/test/avenuecodetest/domain/User.java | f9fedac90d2fa4291ed863770a73d8ea8811a721 | [] | no_license | mateusaugusto/entiy-image-service | https://github.com/mateusaugusto/entiy-image-service | 8baafe5301aaa6ab8fe93577e0d268b47ae3208f | 64734a3843885b03b84dd80455f86ac4e348b6c2 | refs/heads/master | 2021-05-15T14:18:50.175000 | 2017-10-19T02:30:06 | 2017-10-19T02:30:06 | 107,185,145 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.avenuecode.test.avenuecodetest.domain;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.userdetails.UserDetails;
import javax.persistence.*;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
@Entity
@Table(name = "users")
pu... | UTF-8 | Java | 1,316 | java | User.java | Java | [
{
"context": "= \"user_id\")\n\tprivate Long id;\n\t\n\t@Column(name = \"username\", nullable = false, unique = true)\n\tprivate Strin",
"end": 534,
"score": 0.9928390979766846,
"start": 526,
"tag": "USERNAME",
"value": "username"
},
{
"context": "\t@Override\n\tpublic String getPass... | null | [] | package com.avenuecode.test.avenuecodetest.domain;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.userdetails.UserDetails;
import javax.persistence.*;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
@Entity
@Table(name = "users")
pu... | 1,318 | 0.742401 | 0.741641 | 68 | 18.352942 | 18.957199 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.147059 | false | false | 10 |
06789c66a894c423949dce98e974fa6431d62a9e | 1,683,627,227,890 | b7832c5db117cb666eff27bb79ba8e2f53028dca | /server/src/main/java/com/ex/transaction/domain/TransactionTO.java | ced78f91a0c328542ba303e7123e663983404e49 | [] | no_license | jgoyette-jg/Bank-App | https://github.com/jgoyette-jg/Bank-App | ba5164ac8103f64ec419c9bdddc55425ad79fa32 | 22d06505984e8ca93af02ec5abb6ae59f82a169b | refs/heads/master | 2021-01-12T14:09:16.035000 | 2018-01-28T20:16:54 | 2018-01-28T20:16:54 | 69,920,635 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ex.transaction.domain;
import java.math.BigDecimal;
public class TransactionTO {
private Long transactionId;
private Long accountId;
private String description;
private BigDecimal amount;
private String creditDebit;
public TransactionTO(Transaction t) {
super();
this.transactionId = t.getId();... | UTF-8 | Java | 1,463 | java | TransactionTO.java | Java | [] | null | [] | package com.ex.transaction.domain;
import java.math.BigDecimal;
public class TransactionTO {
private Long transactionId;
private Long accountId;
private String description;
private BigDecimal amount;
private String creditDebit;
public TransactionTO(Transaction t) {
super();
this.transactionId = t.getId();... | 1,463 | 0.718387 | 0.718387 | 72 | 19.319445 | 20.414337 | 104 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.402778 | false | false | 10 |
22e6bc39490008bea4986cc49d323e47e078b875 | 446,676,608,463 | 5fe8096883d378d5de40e8c4bc2ed25855c4a0f1 | /api/src/main/java/com/syeftipay/api/account/api/v1/AccountApi.java | ae4eb56f776ba7c2f1af19ba90953a245574cbbe | [] | no_license | gedehermawan/syefti-pay-backend | https://github.com/gedehermawan/syefti-pay-backend | 6dcf1ed3e99f2e70bd950860914c94f589c4eb17 | 21e2fa0e1f28eff7e646c44474c18e6abc6b1c0b | refs/heads/master | 2021-01-01T17:53:33.744000 | 2017-07-28T10:23:15 | 2017-07-28T10:23:15 | 98,187,546 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.syeftipay.api.account.api.v1;
import com.syeftipay.api.handler.JsonErrorResponse;
import com.syeftipay.backend.service.account.AccountAlreadyExistException;
import com.syeftipay.backend.service.account.AccountNotFoundException;
import com.syeftipay.backend.service.account.AccountService;
import com.syeftip... | UTF-8 | Java | 3,245 | java | AccountApi.java | Java | [] | null | [] | package com.syeftipay.api.account.api.v1;
import com.syeftipay.api.handler.JsonErrorResponse;
import com.syeftipay.backend.service.account.AccountAlreadyExistException;
import com.syeftipay.backend.service.account.AccountNotFoundException;
import com.syeftipay.backend.service.account.AccountService;
import com.syeftip... | 3,245 | 0.811094 | 0.81017 | 71 | 44.704224 | 32.9534 | 122 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.647887 | false | false | 10 |
2f2c120fccf4874ab89c5730dde18a9dd4c2d50c | 21,809,843,929,574 | c9578323a36528593ae98f9dc55fd426711f38c6 | /device/src/main/java/device/com/epoptia/DeviceUtilityImpl.java | 2f307db20b74cfad99b5dc80ead5285d794d600a | [] | no_license | tsironis13/EpoptiaKioskModeApp | https://github.com/tsironis13/EpoptiaKioskModeApp | 43e262a341faa0708c73f84c796b5963767660a6 | 6b83dd9113be49b2cf01f64da088a3746fb32c5b | refs/heads/master | 2021-01-21T13:30:27.903000 | 2019-05-12T13:39:44 | 2019-05-12T13:39:44 | 102,132,242 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package device.com.epoptia;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.PackageManager;
import android.graphics.PixelFormat;
import android.view.Gravity;
import android.view.WindowManager;
import ja... | UTF-8 | Java | 4,758 | java | DeviceUtilityImpl.java | Java | [] | null | [] | package device.com.epoptia;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.content.pm.PackageManager;
import android.graphics.PixelFormat;
import android.view.Gravity;
import android.view.WindowManager;
import ja... | 4,758 | 0.702396 | 0.700504 | 155 | 29.696774 | 31.75539 | 177 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.470968 | false | false | 10 |
f6b270fc93412d10e4f3a2a9a7237669347f3f26 | 18,683,107,766,583 | 377405a1eafa3aa5252c48527158a69ee177752f | /src/com/biznessapps/more/Tab.java | 3d947e9576ee1bf271d9bf8cb399361cf3f58616 | [] | no_license | apptology/AltFuelFinder | https://github.com/apptology/AltFuelFinder | 39c15448857b6472ee72c607649ae4de949beb0a | 5851be78af47d1d6fcf07f9a4ad7f9a5c4675197 | refs/heads/master | 2016-08-12T04:00:46.440000 | 2015-10-25T18:25:16 | 2015-10-25T18:25:16 | 44,921,258 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | // Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/kpdus/jad.html
// Decompiler options: braces fieldsfirst space lnc
package com.biznessapps.more;
import com.biznessapps.api.UiSettingsInterface;
import java.io.Serializable;
import java.util.List;
public class ... | UTF-8 | Java | 9,005 | java | Tab.java | Java | [
{
"context": "// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov.\n// Jad home page: http://www.geocities.com/kpdus",
"end": 61,
"score": 0.9996577501296997,
"start": 45,
"tag": "NAME",
"value": "Pavel Kouznetsov"
}
] | null | [] | // Decompiled by Jad v1.5.8e. Copyright 2001 <NAME>.
// Jad home page: http://www.geocities.com/kpdus/jad.html
// Decompiler options: braces fieldsfirst space lnc
package com.biznessapps.more;
import com.biznessapps.api.UiSettingsInterface;
import java.io.Serializable;
import java.util.List;
public class Tab
im... | 8,995 | 0.598667 | 0.597779 | 509 | 16.691551 | 15.481567 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.288802 | false | false | 10 |
87a5a266d9ae17bd34d90fcbf661934c3cad4886 | 4,810,363,440,749 | 4bf39ff31227d62160ecd802500dcfd4a8222880 | /src/main/java/io/mkknowledge/mkprojects/MkprojectsApplication.java | b07eff8f3a6f78948578e593ce2dbe32456dbb18 | [] | no_license | Mkknowledge/MK_Projects | https://github.com/Mkknowledge/MK_Projects | c870df71e5569a971832d7d97ff77f8c26b807c3 | d60417674cd3eafeccbaa64f8b67b1959c8bab3a | refs/heads/master | 2023-03-15T20:06:53.208000 | 2021-03-10T20:04:54 | 2021-03-10T20:04:54 | 346,432,577 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package io.mkknowledge.mkprojects;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MkprojectsApplication {
public static void main(String[] args) {
SpringApplication.run(MkprojectsApplication.class, args);
... | UTF-8 | Java | 326 | java | MkprojectsApplication.java | Java | [] | null | [] | package io.mkknowledge.mkprojects;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class MkprojectsApplication {
public static void main(String[] args) {
SpringApplication.run(MkprojectsApplication.class, args);
... | 326 | 0.828221 | 0.828221 | 13 | 24.076923 | 24.323023 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.692308 | false | false | 10 |
ea12196512ffd7aeed53ebe7645bcc85b114d802 | 22,016,002,377,382 | c7fb502da59f186496f404ba199471113a34bc2b | /article-gateway/src/main/java/com/lng168/article/gateway/modular/auth/filter/AuthFilter.java | 8b33b29e852e120e09878317591726f4c0dfc9f0 | [] | no_license | shanghai-yiyun/lng168-system | https://github.com/shanghai-yiyun/lng168-system | 48318c453e25111254f5f1ebcfb2652a5e63dc67 | bc73bf543dac6e54a87ad4a0493f65b7aebb42f1 | refs/heads/master | 2020-06-15T04:58:42.935000 | 2020-02-28T08:03:49 | 2020-02-28T08:03:49 | 195,208,360 | 0 | 0 | null | false | 2020-07-01T23:42:56 | 2019-07-04T09:10:44 | 2020-02-28T08:06:39 | 2020-07-01T23:42:54 | 6,268 | 0 | 0 | 3 | Java | false | false | package com.lng168.article.gateway.modular.auth.filter;
import com.lng168.article.gateway.common.exception.BizExceptionEnum;
import com.lng168.article.gateway.common.redis.RedisUtil;
import com.lng168.article.gateway.config.properties.JwtProperties;
import com.lng168.article.gateway.modular.auth.UserHolder;
import com... | UTF-8 | Java | 4,330 | java | AuthFilter.java | Java | [
{
"context": "ption;\n\n/**\n * 对客户端请求的jwt token验证过滤器\n *\n * @author fengshuonan\n * @Date 2017/8/24 14:04\n */\npublic class AuthFil",
"end": 970,
"score": 0.9957190752029419,
"start": 959,
"tag": "USERNAME",
"value": "fengshuonan"
}
] | null | [] | package com.lng168.article.gateway.modular.auth.filter;
import com.lng168.article.gateway.common.exception.BizExceptionEnum;
import com.lng168.article.gateway.common.redis.RedisUtil;
import com.lng168.article.gateway.config.properties.JwtProperties;
import com.lng168.article.gateway.modular.auth.UserHolder;
import com... | 4,330 | 0.612606 | 0.603872 | 111 | 37.171169 | 29.9013 | 153 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.630631 | false | false | 10 |
3a093f2cff726314e3b2a7d5b79116d2b0bcd4a6 | 27,436,251,117,851 | 7fcc1bc6c6feca7e9bbf39a62e26b01600426682 | /app/src/main/java/com/example/aadpracticeproject/TopLearnerFragment.java | 316f44f98137a1b65d2631143e508e8d45c2eb6e | [] | no_license | lemyoo/AAD-Practice-Project1 | https://github.com/lemyoo/AAD-Practice-Project1 | 482321b9d5566d762d10c32f7203948814d88af2 | f36462d02cf65b64c43b687437577d23cd25fd82 | refs/heads/master | 2022-12-11T11:59:27.645000 | 2020-09-11T20:41:44 | 2020-09-11T20:41:44 | 294,817,540 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.aadpracticeproject;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.fragment.app.Fragment;
import androidx.navigation.fragment.NavHostFragment;
import... | UTF-8 | Java | 3,328 | java | TopLearnerFragment.java | Java | [] | null | [] | package com.example.aadpracticeproject;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.fragment.app.Fragment;
import androidx.navigation.fragment.NavHostFragment;
import... | 3,328 | 0.678486 | 0.678185 | 90 | 35.988888 | 30.619709 | 155 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 10 |
16942a39dd883a33237f700c3b791bc106c018ed | 28,561,532,543,683 | de8a51e5d73d6b943683a74bae786e4b354cb09a | /meshi/molecularElements/extendedAtoms/Pro.java | d3b7da8051541c97272d776d052a8d77dfb72df1 | [] | no_license | oferJo/meshi | https://github.com/oferJo/meshi | e944a54c263d111116e6d843ae17f40dd505916f | a8ec8a18b281881617a2aafeb8f9f6c302dc4745 | refs/heads/master | 2021-03-27T17:26:13.492000 | 2016-03-08T00:33:18 | 2016-03-08T00:33:18 | 51,258,697 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright (c) 2010. of Chen Keasar, BGU . For free use under LGPL
*/
package meshi.molecularElements.extendedAtoms;
import meshi.molecularElements.*;
import meshi.molecularElements.atoms.*;
import meshi.geometry.*;
import meshi.parameters.*;
/**
* <pre>
* O
* |
* N - CA... | UTF-8 | Java | 1,303 | java | Pro.java | Java | [
{
"context": "/*\n * Copyright (c) 2010. of Chen Keasar, BGU . For free use under LGPL\n */\n\npackage meshi",
"end": 40,
"score": 0.9997819066047668,
"start": 29,
"tag": "NAME",
"value": "Chen Keasar"
}
] | null | [] | /*
* Copyright (c) 2010. of <NAME>, BGU . For free use under LGPL
*/
package meshi.molecularElements.extendedAtoms;
import meshi.molecularElements.*;
import meshi.molecularElements.atoms.*;
import meshi.geometry.*;
import meshi.parameters.*;
/**
* <pre>
* O
* |
* N - CA - C.... | 1,298 | 0.518035 | 0.506523 | 46 | 27.326086 | 25.836489 | 107 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.826087 | false | false | 10 |
1b9676395f3ed3c77ab61efbdfd17ba5f5cca4ba | 32,942,399,195,113 | 0b2a5aa1292e08d86eb13e05b732c9fc91451546 | /Zipc_Model/src/com/zipc/garden/model/spql/impl/SPQLPackageImpl.java | 05b741f6b03e7727b8e6cf073576ace01bc1f8c0 | [
"BSD-3-Clause"
] | permissive | open-garden/garden | https://github.com/open-garden/garden | 06190e27d77508cdcbe5f3ae9b08567b2bf3a083 | 588fc9d254b913548159bcd01c5b34bd1c5cbc73 | refs/heads/master | 2022-10-07T05:36:26.555000 | 2021-06-18T12:31:53 | 2021-07-13T23:50:25 | 329,557,778 | 16 | 2 | BSD-3-Clause | false | 2022-09-27T11:06:00 | 2021-01-14T08:50:18 | 2022-09-05T05:48:53 | 2022-09-27T06:23:49 | 50,086 | 14 | 3 | 3 | JavaScript | false | false | /**
*/
package com.zipc.garden.model.spql.impl;
import com.google.gwt.user.client.rpc.IsSerializable;
import com.zipc.garden.model.arc.ARCPackage;
import com.zipc.garden.model.arc.impl.ARCPackageImpl;
import com.zipc.garden.model.bp.BPPackage;
import com.zipc.garden.model.bp.impl.BPPackageImpl;
import com.zipc.g... | UTF-8 | Java | 18,089 | java | SPQLPackageImpl.java | Java | [] | null | [] | /**
*/
package com.zipc.garden.model.spql.impl;
import com.google.gwt.user.client.rpc.IsSerializable;
import com.zipc.garden.model.arc.ARCPackage;
import com.zipc.garden.model.arc.impl.ARCPackageImpl;
import com.zipc.garden.model.bp.BPPackage;
import com.zipc.garden.model.bp.impl.BPPackageImpl;
import com.zipc.g... | 18,089 | 0.694953 | 0.694124 | 442 | 39.925339 | 39.982025 | 179 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.644796 | false | false | 10 |
f3ae01311449b78ccf39c6c55e1e6343a911a5d1 | 20,538,533,641,487 | 69a5afd7ce1c41e09518c64185924829c8602d55 | /xwiki-platform-core/xwiki-platform-gwt/xwiki-platform-gwt-dom/src/test/java/org/xwiki/gwt/dom/client/internal/ie/IERangeTest.java | 78a79bfa05293c139cca3a6ac3d91945a08454bc | [] | no_license | jamesxu326/xwiki-platform | https://github.com/jamesxu326/xwiki-platform | 0310e5dce9b53d8240fefe17ed4da49219d728c5 | 33d6b4fed34c7a624ed219f66ef3892a5dface55 | refs/heads/master | 2021-01-18T07:51:28.671000 | 2011-08-25T11:12:00 | 2011-08-25T11:12:00 | 1,721,258 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This 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 2.1 of
* th... | UTF-8 | Java | 25,937 | java | IERangeTest.java | Java | [] | null | [] | /*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This 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 2.1 of
* th... | 25,937 | 0.632224 | 0.628831 | 632 | 40.039558 | 33.082607 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.718354 | false | false | 10 |
b93174f02b7207de13c3cdc5dcceb9d94f846b58 | 29,652,454,216,282 | ebd9c67f6e0ee0d95087240165b42f6b82eee16d | /2022/10/28/Java/src/main/java/com/codingdojoparis/TennisGame.java | 842054fa98073525f0bcf848eaf1e2359e8eaabe | [] | no_license | dojo-developpement-paris/dojo-developpement-paris.github.io | https://github.com/dojo-developpement-paris/dojo-developpement-paris.github.io | a32887f98b0972acf17d6d9f7e2b179bad9dbeea | 07ea47de3e8dc268730112cb4fd0618ed15a92cf | refs/heads/main | 2023-09-02T05:29:34.836000 | 2023-09-01T18:56:32 | 2023-09-01T19:02:12 | 28,268,611 | 43 | 19 | null | false | 2023-05-25T07:37:38 | 2014-12-20T14:06:32 | 2023-04-14T20:43:57 | 2023-05-19T17:39:20 | 38,900 | 31 | 12 | 1 | HTML | false | false | package com.codingdojoparis;
public interface TennisGame {
void addPointFor(String playerName);
String getScore();
} | UTF-8 | Java | 125 | java | TennisGame.java | Java | [] | null | [] | package com.codingdojoparis;
public interface TennisGame {
void addPointFor(String playerName);
String getScore();
} | 125 | 0.76 | 0.76 | 6 | 20 | 14.776107 | 40 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 10 |
45badc6956b82e139673df7d6097d3c06e57e0a2 | 8,710,193,700,927 | df9e98003dc405c943e4509acd5f98dc8216f0e0 | /src/main/java/com/integ/database/query/TableInformationFetcher.java | 9ac2aaccc754df9ddaea600da3b04b9c1fa9ec4d | [] | no_license | prakash1998/ProgramGenerator | https://github.com/prakash1998/ProgramGenerator | 8dd57284682b80336b931d8df085dfc93536275e | 7e78fe62d7c512b63182677cd2ee7ae3d3aa667e | refs/heads/master | 2021-07-13T22:43:26.890000 | 2019-10-16T06:57:42 | 2019-10-16T06:57:42 | 215,477,361 | 1 | 0 | null | false | 2020-10-13T16:45:35 | 2019-10-16T06:49:48 | 2019-11-02T02:02:59 | 2020-10-13T16:45:34 | 12 | 1 | 0 | 1 | Java | false | false | package com.integ.database.query;
import com.google.common.base.CaseFormat;
import com.integ.database.connection.DatabaseConnection;
import org.joda.time.LocalDate;
import java.math.BigDecimal;
import java.sql.*;
import java.util.*;
public class TableInformationFetcher {
private static Class<?> getSqlToJavaClas... | UTF-8 | Java | 2,404 | java | TableInformationFetcher.java | Java | [] | null | [] | package com.integ.database.query;
import com.google.common.base.CaseFormat;
import com.integ.database.connection.DatabaseConnection;
import org.joda.time.LocalDate;
import java.math.BigDecimal;
import java.sql.*;
import java.util.*;
public class TableInformationFetcher {
private static Class<?> getSqlToJavaClas... | 2,404 | 0.571131 | 0.568636 | 78 | 29.820513 | 28.958744 | 138 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.525641 | false | false | 10 |
b0f298b010f84eed8698800c699c9702ef5c30ab | 18,090,402,278,519 | 9266eebe3bfb983c80fc6dfe63f73959ad628c4f | /src/main/java/com/example/apitouristspot/resources/UserResource.java | 53cf0d35b8580c05921d17ecdb40e7b66c0f534a | [] | no_license | dudulive/apitouristspot | https://github.com/dudulive/apitouristspot | 92cfd02f09536acea4c2933842146705f9fcc1e6 | 6a11f471774f6597025565349b8f18be11398f44 | refs/heads/master | 2023-05-04T08:19:54.302000 | 2021-05-28T14:07:07 | 2021-05-28T14:07:07 | 341,913,242 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.apitouristspot.resources;
import com.example.apitouristspot.models.User;
import com.example.apitouristspot.repository.UserRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.w... | UTF-8 | Java | 1,163 | java | UserResource.java | Java | [] | null | [] | package com.example.apitouristspot.resources;
import com.example.apitouristspot.models.User;
import com.example.apitouristspot.repository.UserRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.w... | 1,163 | 0.808255 | 0.808255 | 33 | 34.242424 | 25.323399 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.69697 | false | false | 10 |
e82082b0c83f9063c9a9a96ce6faca24e22cdfc1 | 19,327,352,836,165 | 4f3d32bf85edd39dfc458149e8e35b4095d4be60 | /src/controllers/PlayerController.java | a4d1531ddac9af5f3cc356daf3cc07b07d25555f | [] | no_license | worksB-collab/AlienDefender | https://github.com/worksB-collab/AlienDefender | e57963001c6755999cae6f82b4961b99afe11715 | 82fd775f6e41b1e6e2b68b6cf5527fd7a6a952db | refs/heads/master | 2020-12-27T02:19:56.989000 | 2020-06-22T03:23:03 | 2020-06-22T03:23:03 | 237,730,509 | 1 | 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 controllers;
import values.DrawStringPoint;
import values.Global;
import java.awt.Color;
import java.awt.Graphics;
import java... | UTF-8 | Java | 9,467 | java | PlayerController.java | Java | [
{
"context": "CTURE_SIZE;\nimport values.Path;\n\n/**\n *\n * @author user\n */\npublic class PlayerController {\n\n public s",
"end": 672,
"score": 0.9945723414421082,
"start": 668,
"tag": "USERNAME",
"value": "user"
},
{
"context": "troller(int money, int hp) {\n this.nam... | 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 controllers;
import values.DrawStringPoint;
import values.Global;
import java.awt.Color;
import java.awt.Graphics;
import java... | 9,467 | 0.579487 | 0.567445 | 294 | 31.20068 | 32.791298 | 212 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.683673 | false | false | 10 |
7f9e399810187b98edbe0b728c1c7d70598af763 | 10,788,957,887,686 | 39ce9add33af7895fadcaff6d46a2e05e1cb1d5e | /course/api-course/src/main/java/cn/momia/api/course/dto/course/CourseSkuPlace.java | c1ff66079fcba7eacb3c44b766efc7f9ad7631e5 | [
"Apache-2.0"
] | permissive | lovemomia/momia | https://github.com/lovemomia/momia | 7df2e4814b22a141771365e25ae3894f8970af1b | c2ab3794157d186ae2c9b79d631b8085bb6faa54 | refs/heads/master | 2021-05-24T04:15:42.343000 | 2016-07-11T12:22:05 | 2016-07-11T12:22:05 | 37,104,400 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.momia.api.course.dto.course;
public class CourseSkuPlace {
private int id;
private int cityId;
private int regionId;
private String name;
private String address;
private double lng;
private double lat;
private String route;
private String scheduler;
public int getId(... | UTF-8 | Java | 1,627 | java | CourseSkuPlace.java | Java | [] | null | [] | package cn.momia.api.course.dto.course;
public class CourseSkuPlace {
private int id;
private int cityId;
private int regionId;
private String name;
private String address;
private double lng;
private double lat;
private String route;
private String scheduler;
public int getId(... | 1,627 | 0.569146 | 0.562999 | 89 | 17.280899 | 14.998868 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.393258 | false | false | 10 |
47a3aee4fe3cfad5d572eaa583a46865797ba7ef | 498,216,260,927 | c186f285422d9eb744ebe96404d48187c7b0e77d | /org.talend.mdm.core.storage.sql/src/test/java/com/amalto/core/storage/StoragePrepareTest.java | 819229e1090c436cf375f1cd2749327fe07f2f6a | [] | no_license | Talend/tmdm-server-se | https://github.com/Talend/tmdm-server-se | d40a40294cbd449dbdc5db16a4472209707aeeb9 | 59a9904da18223e7a8e38a08d240c5f468c1536d | refs/heads/master | 2023-08-31T02:50:38.772000 | 2023-07-25T08:59:52 | 2023-07-25T08:59:52 | 21,094,730 | 24 | 24 | null | false | 2023-07-25T09:19:07 | 2014-06-22T13:45:55 | 2023-06-18T01:59:03 | 2023-07-25T09:19:05 | 214,523 | 20 | 15 | 6 | HTML | false | false | /*
* Copyright (C) 2006-2019 Talend Inc. - www.talend.com
*
* This source code is available under agreement available at
* %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt
*
* You should have received a copy of the agreement along with this program; if not, write to Talend SA... | UTF-8 | Java | 55,077 | java | StoragePrepareTest.java | Java | [
{
"context": "dContainedType() {\n String[] userKeys = { \"NumeroBdd\", \"BddSource\", \"NomApplication\", \"IdMDM\" }; //$NO",
"end": 3136,
"score": 0.6129066944122314,
"start": 3127,
"tag": "KEY",
"value": "NumeroBdd"
},
{
"context": "e() {\n String[] userKeys = { \"N... | null | [] | /*
* Copyright (C) 2006-2019 Talend Inc. - www.talend.com
*
* This source code is available under agreement available at
* %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt
*
* You should have received a copy of the agreement along with this program; if not, write to Talend SA... | 55,077 | 0.607822 | 0.591263 | 1,119 | 48.220734 | 45.015125 | 471 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.866845 | false | false | 10 |
d11c8ef9d9676387231f711072637634c99720a5 | 15,539,191,717,838 | 38029033b8acbeab688ee41231e88609c65ea4d7 | /src/test/java/org/pm/datagrid/benchmark/ProbeTest.java | 1fd308e3d51bbecba8475f85d643e736d88cae09 | [
"MIT"
] | permissive | hailpam/dobef | https://github.com/hailpam/dobef | 7993550bb5d43b1588b01df3ec82822b694db514 | c33d343f12299111e95660ec6c84ac9428b33dd4 | refs/heads/master | 2021-01-10T01:53:43.843000 | 2017-04-16T18:12:04 | 2017-04-16T18:12:04 | 25,787,238 | 1 | 0 | null | false | 2017-04-16T18:14:00 | 2014-10-26T19:17:55 | 2015-05-07T06:19:49 | 2017-04-16T18:14:00 | 183 | 4 | 1 | 0 | Java | null | null |
package org.pm.datagrid.benchmark;
import java.util.Random;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
/**
*
* @author pmaresca
*/
public class ProbeTest
{
private static int NR_SAMPLES = 100;
private static int RESCALE = 1;
private ... | UTF-8 | Java | 1,687 | java | ProbeTest.java | Java | [
{
"context": "port static org.junit.Assert.*;\n\n/**\n *\n * @author pmaresca\n */\npublic class ProbeTest \n{\n private static ",
"end": 195,
"score": 0.9987661838531494,
"start": 187,
"tag": "USERNAME",
"value": "pmaresca"
}
] | null | [] |
package org.pm.datagrid.benchmark;
import java.util.Random;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.*;
/**
*
* @author pmaresca
*/
public class ProbeTest
{
private static int NR_SAMPLES = 100;
private static int RESCALE = 1;
private ... | 1,687 | 0.50741 | 0.484884 | 68 | 23.794117 | 16.905062 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.573529 | false | false | 10 |
f1c0d21ee27346a6b3249f99381ddc3c8a98904b | 25,512,105,747,520 | 135d706a4d7721305b94c2f35c48878076095041 | /src/main/java/com/learn/api/configuration/MyselfDataSourceConfig.java | a51604decbf4a014ec54c7b0dcafd3cea8b99592 | [] | no_license | HappyWjl/learn.break | https://github.com/HappyWjl/learn.break | 64d5e01afa274af9ad9156b1d2e086dd64cdb0b1 | 8ad82c92e977ab360852e7740e92c7ceb13d1480 | refs/heads/master | 2018-10-16T17:00:31.685000 | 2018-09-07T08:55:00 | 2018-09-07T08:55:00 | 134,117,562 | 19 | 4 | null | null | null | null | null | null | null | null | null | null | null | null | null | //package com.learn.api.configuration;
//
//import org.springframework.beans.factory.annotation.Autowired;
//import org.springframework.beans.factory.annotation.Qualifier;
//import org.springframework.boot.autoconfigure.orm.jpa.JpaProperties;
//import org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder;
//impo... | UTF-8 | Java | 2,705 | java | MyselfDataSourceConfig.java | Java | [] | null | [] | //package com.learn.api.configuration;
//
//import org.springframework.beans.factory.annotation.Autowired;
//import org.springframework.beans.factory.annotation.Qualifier;
//import org.springframework.boot.autoconfigure.orm.jpa.JpaProperties;
//import org.springframework.boot.orm.jpa.EntityManagerFactoryBuilder;
//impo... | 2,705 | 0.754178 | 0.754178 | 64 | 41.078125 | 32.748238 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.453125 | false | false | 10 |
99151f13ca6c12598d96f74e7183d29e2aad90f1 | 25,512,105,745,921 | 4100cab4a293cd627124c6d15feed81a0b8c6e44 | /src/main/java/com/itdreamworks/customerdatamanage/controller/EndUserController.java | 918e83a86bc069948fd9962b6102c4685bdc60dd | [] | no_license | TomcatWorkGroup/CustomerDataManage | https://github.com/TomcatWorkGroup/CustomerDataManage | 1756d42b7d2bf80e6e522335038a8df1d930a783 | 3573b5c6a4f5dad23e1829fa3fffdc5e6d461535 | refs/heads/master | 2021-09-11T19:01:08.634000 | 2018-04-11T03:43:04 | 2018-04-11T03:43:04 | 123,250,414 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.itdreamworks.customerdatamanage.controller;
import com.itdreamworks.customerdatamanage.entity.db.EndUser;
import com.itdreamworks.customerdatamanage.entity.enums.ResultStatus;
import com.itdreamworks.customerdatamanage.service.CustomerEndUserService;
import com.itdreamworks.customerdatamanage.utils.ResultS... | UTF-8 | Java | 2,020 | java | EndUserController.java | Java | [] | null | [] | package com.itdreamworks.customerdatamanage.controller;
import com.itdreamworks.customerdatamanage.entity.db.EndUser;
import com.itdreamworks.customerdatamanage.entity.enums.ResultStatus;
import com.itdreamworks.customerdatamanage.service.CustomerEndUserService;
import com.itdreamworks.customerdatamanage.utils.ResultS... | 2,020 | 0.698133 | 0.698133 | 61 | 30.606558 | 24.311691 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.393443 | false | false | 10 |
0fb6a4b14a895f2a63f81c57be7231bd74dbec6f | 33,208,687,151,435 | 95ffdbacafb9255d9dfe8c5caa84c5d324025848 | /zpoi/src/org/zkoss/poi/ss/formula/atp/RandBetween.java | 97d44a2d078ce6c45bc360518be3ca56f734a4d0 | [
"MIT"
] | permissive | dataspread/dataspread-web | https://github.com/dataspread/dataspread-web | 2143f3451c141a4857070a67813208c8f2da50dc | 2d07f694c7419473635e355202be11396023f915 | refs/heads/master | 2023-01-12T16:12:47.862000 | 2021-05-09T02:30:42 | 2021-05-09T02:30:42 | 88,792,776 | 139 | 34 | null | false | 2023-01-06T01:36:17 | 2017-04-19T21:32:30 | 2022-12-30T14:51:22 | 2023-01-06T01:36:17 | 113,436 | 131 | 30 | 79 | Java | false | false | /* ====================================================================
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to Y... | UTF-8 | Java | 3,074 | java | RandBetween.java | Java | [
{
"context": " integer RANDBETWEEN will return.<br/>\n\n * @author Brendan Nolan\n */\nfinal class RandBetween implements FreeRefFun",
"end": 1748,
"score": 0.9998775124549866,
"start": 1735,
"tag": "NAME",
"value": "Brendan Nolan"
}
] | null | [] | /* ====================================================================
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to Y... | 3,067 | 0.69974 | 0.697137 | 84 | 35.595238 | 35.454906 | 164 | false | false | 0 | 0 | 0 | 0 | 69 | 0.044893 | 1.22619 | false | false | 10 |
5bf083d6011a3f3dbb74ed09737a0f136f9cea94 | 14,508,399,557,543 | 4773f851091c1ede266799edb8132e4dcf26fb23 | /fulcrum-dynamicsql/src/test/java/cn/justL/fulcrum/test/script/IfScriptHandlerTest.java | 2e506e36066855fd9d3d683347a741ef6ee1ae1a | [] | no_license | jingleWang/fulcrum | https://github.com/jingleWang/fulcrum | a9f7dd895ae32c4518f3d90e221df1081cdf1cbb | 49fd065831325c95c42caf499b42e76ae0ee7b1b | refs/heads/master | 2023-08-03T17:03:17.830000 | 2019-11-14T09:19:26 | 2019-11-14T09:19:26 | 209,472,921 | 4 | 0 | null | false | 2023-07-22T16:35:47 | 2019-09-19T05:53:54 | 2022-05-14T13:40:34 | 2023-07-22T16:35:47 | 303 | 3 | 0 | 1 | Java | false | false | package cn.justL.fulcrum.test.script;
import cn.justl.fulcrum.script.ScriptContext;
import cn.justl.fulcrum.exceptions.ScriptFailedException;
import cn.justl.fulcrum.script.BoundSql;
import cn.justl.fulcrum.script.handlers.IfScriptHandler;
import cn.justl.fulcrum.script.handlers.TextScriptHandler;
import org.junit.jup... | UTF-8 | Java | 2,694 | java | IfScriptHandlerTest.java | Java | [
{
"context": "l.HashMap;\n\n/**\n * @Date : 2019-11-03\n * @Author : Jinglu.Wang [jingl.wang123@gmail.com]\n * @Desc :\n */\n@Display",
"end": 461,
"score": 0.999855101108551,
"start": 450,
"tag": "NAME",
"value": "Jinglu.Wang"
},
{
"context": "*\n * @Date : 2019-11-03\n * @Author : ... | null | [] | package cn.justL.fulcrum.test.script;
import cn.justl.fulcrum.script.ScriptContext;
import cn.justl.fulcrum.exceptions.ScriptFailedException;
import cn.justl.fulcrum.script.BoundSql;
import cn.justl.fulcrum.script.handlers.IfScriptHandler;
import cn.justl.fulcrum.script.handlers.TextScriptHandler;
import org.junit.jup... | 2,678 | 0.622123 | 0.607647 | 78 | 33.53846 | 22.949047 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.858974 | false | false | 10 |
91f842d798b59acb47117fc27a19ca4683a4a826 | 11,209,864,644,111 | 3677d237233040c64d4b2920afb42387a341e84b | /Aten/POSS/Java/src/org/eapp/poss/config/SysCodeDictLoader.java | 66eafb57ba62cfa0cdff0ae5fa69dd0a98d7ef92 | [] | no_license | xeonye/aten-project | https://github.com/xeonye/aten-project | 0c93b5be2dca9d7c74ad63c3092270d4434e547b | 4a0178552b2604c24da0ee40d813920f4daffdaf | refs/heads/master | 2020-05-31T15:29:02.928000 | 2015-07-22T14:42:22 | 2015-07-22T14:42:22 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.eapp.poss.config;
import java.net.MalformedURLException;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.eapp.client.hessian.DataDictionaryService;
import org.eapp.client.hessian.SubSyste... | UTF-8 | Java | 3,714 | java | SysCodeDictLoader.java | Java | [
{
"context": " org.eapp.rpc.dto.SubSystemInfo;\n\n\n\n/**\n * @author zsy\n * @version\n */\npublic class SysCodeDictLoader {\n",
"end": 527,
"score": 0.9997080564498901,
"start": 524,
"tag": "USERNAME",
"value": "zsy"
}
] | null | [] | package org.eapp.poss.config;
import java.net.MalformedURLException;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.eapp.client.hessian.DataDictionaryService;
import org.eapp.client.hessian.SubSyste... | 3,714 | 0.646033 | 0.646033 | 147 | 23.17687 | 23.018391 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.503401 | false | false | 10 |
06a0e63721cb9c9bdce2981fa4e996f22cd3cf52 | 3,049,426,791,637 | 0b6411217254497cf72a16112b13e1dcf3529891 | /src/com/example/myfirstapp/MainActivity.java | 4614272839933a8740a0aa9e8e0fb80997df8d82 | [] | no_license | 5heri/MyFirstApp | https://github.com/5heri/MyFirstApp | 42e4cc1409a9cdc6f5e6f374719d9cba7e0e81a6 | 668ec73e2380583d0f94cb8b934112c7a386bf8f | refs/heads/master | 2016-09-06T04:55:06.132000 | 2014-03-02T23:28:03 | 2014-03-02T23:28:03 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.myfirstapp;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GooglePlayServicesClient;
import com.google.android.gms.common.GooglePlayServicesUtil;
import com.google.android.gms.location.LocationClient;
import com.google.android.gms.location.LocationListe... | UTF-8 | Java | 11,802 | java | MainActivity.java | Java | [] | null | [] | package com.example.myfirstapp;
import com.google.android.gms.common.ConnectionResult;
import com.google.android.gms.common.GooglePlayServicesClient;
import com.google.android.gms.common.GooglePlayServicesUtil;
import com.google.android.gms.location.LocationClient;
import com.google.android.gms.location.LocationListe... | 11,802 | 0.663362 | 0.659803 | 397 | 28.727961 | 23.706146 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.612091 | false | false | 10 |
89af81ae1c30b57e9dd60d7cec051715f036ba18 | 3,049,426,794,119 | af0035589a2686c123499517a26ca22d4798dddd | /app/src/main/java/com/example/xlq_tm/planbfortickets/Utils/DataPickerDialogUtils.java | d38e27c08d2e29a76433aa332c0cfec7fb9ec054 | [] | no_license | tmfans/TicketForPlanB | https://github.com/tmfans/TicketForPlanB | db9ed01c2d449105802fce030d47496f969ffa89 | 550e5cc68e246c90d61d1d8e85368b7b44eb3d66 | refs/heads/master | 2020-04-03T14:32:39.893000 | 2018-11-11T15:12:38 | 2018-11-11T15:12:38 | 155,325,559 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.xlq_tm.planbfortickets.Utils;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.Window;
import android.widget.DatePicker;
import android.widget.LinearLayout;
im... | UTF-8 | Java | 2,537 | java | DataPickerDialogUtils.java | Java | [] | null | [] | package com.example.xlq_tm.planbfortickets.Utils;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.Window;
import android.widget.DatePicker;
import android.widget.LinearLayout;
im... | 2,537 | 0.666667 | 0.665081 | 73 | 33.561646 | 29.984465 | 144 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.589041 | false | false | 10 |
8cd4c2d21d333496edc5ecac0f7e379bc437e044 | 30,631,706,767,184 | 1a76a01cbd2e0aba5216ecf10621a08e608df6ad | /src/mycompiler/MyReader.java | c08d1c6fd677d7e8952ba44bd63461d7e0ae0bbb | [] | no_license | DiegoCicconi/MyCompiler | https://github.com/DiegoCicconi/MyCompiler | 65e8a9cf12ece56647a4652cafe63b9d82abcec1 | 704c5c362894852839e12a4f73bcc4af1a89bf19 | refs/heads/master | 2020-12-24T12:28:27.961000 | 2016-12-29T07:40:52 | 2016-12-29T07:40:52 | 73,002,949 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package mycompiler;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
public class MyReader {
private int currentIndex;
private int line = 1;
private BufferedReader buffRdr;
private final String fileName;
private String c... | UTF-8 | Java | 2,723 | java | MyReader.java | Java | [] | null | [] | package mycompiler;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
public class MyReader {
private int currentIndex;
private int line = 1;
private BufferedReader buffRdr;
private final String fileName;
private String c... | 2,723 | 0.476313 | 0.473375 | 86 | 30.66279 | 20.288391 | 89 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.813953 | false | false | 10 |
1a10ae5f193ef96a1cd5b0d9d459e4718ee772b1 | 6,433,861,024,155 | ecc7ebd7fd060fbc4d2726302c9926be6f80a738 | /src/com/jerry/wordcount/WCJob.java | e9fc4b86d92feca79b878732532a34cec4407305 | [] | no_license | Jerrymao66/MapReducedemo | https://github.com/Jerrymao66/MapReducedemo | b1449053d0979381bbdf42c50ce1b4ffc20345f1 | e6c860ec5afd27bfe1c0309394b0cf71dd3a48a3 | refs/heads/master | 2020-09-03T11:42:56.263000 | 2019-11-04T08:58:18 | 2019-11-04T08:58:18 | 219,455,201 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.jerry.wordcount;
import java.io.IOException;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.... | UTF-8 | Java | 2,168 | java | WCJob.java | Java | [] | null | [] | package com.jerry.wordcount;
import java.io.IOException;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.... | 2,168 | 0.738007 | 0.737085 | 68 | 30.882353 | 25.734236 | 113 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.632353 | false | false | 10 |
ff5658ac91908642213098d5d6cf167a46c5b89d | 26,001,732,028,879 | 6d50676699f0b9f5fa4daaf349623b160df23e46 | /src/whiteelephant/util/ParseException.java | f78685c631a8d8578c7edf49ecc04df652f67d13 | [] | no_license | vastsuperking/whiteelephant | https://github.com/vastsuperking/whiteelephant | 7bc02b157e817f2161d8bf849363ab583089af26 | 658dc2ec8de7ad341be12f761c3cff6c9d381ea0 | refs/heads/master | 2016-05-25T06:08:02.567000 | 2015-08-17T14:51:42 | 2015-08-17T14:51:42 | 24,296,851 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package whiteelephant.util;
public class ParseException extends Exception {
private static final long serialVersionUID = 0L;
public ParseException(Throwable e) {
super(e);
}
public ParseException(String msg) {
super(msg);
}
public ParseException(String msg, Throwable e) {
super(msg, e);
}
}
| UTF-8 | Java | 311 | java | ParseException.java | Java | [] | null | [] | package whiteelephant.util;
public class ParseException extends Exception {
private static final long serialVersionUID = 0L;
public ParseException(Throwable e) {
super(e);
}
public ParseException(String msg) {
super(msg);
}
public ParseException(String msg, Throwable e) {
super(msg, e);
}
}
| 311 | 0.726688 | 0.723473 | 17 | 17.294117 | 18.60033 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.294118 | false | false | 10 |
e44d42f7cb02c2c31077d859066e944ff2efa42a | 489,626,294,906 | 8ec43ddca42423b4433c31f48e5274a31e80c513 | /app/src/main/java/com/example/yoso/superalimentos/db/BaseDatosProductos.java | 9b3194bc3cdeae2e1d3279140212ece9717f4bfd | [] | no_license | jdesum/SuperAlimentos | https://github.com/jdesum/SuperAlimentos | 8898688e5d8fd645598ad88adc6e72ca1ac46d2e | 564323e6a3c43fcfa607de53bf6cb708d17331ed | refs/heads/master | 2021-01-19T16:40:08.125000 | 2017-05-11T21:12:55 | 2017-05-11T21:12:55 | 88,276,665 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.yoso.superalimentos.db;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteException;
import android.database.sqlite.SQLiteOpenHelper;
import com.example.yoso.supe... | UTF-8 | Java | 9,021 | java | BaseDatosProductos.java | Java | [
{
"context": "rt java.util.ArrayList;\n\n/**\n * BBDD\n * Created by yoso on 23/04/17.\n */\n\npublic class BaseDatosProductos",
"end": 448,
"score": 0.9996301531791687,
"start": 444,
"tag": "USERNAME",
"value": "yoso"
},
{
"context": "seDatosProductos.TABLE_PRODUCTO_NOMBRE, \"Espelt... | null | [] | package com.example.yoso.superalimentos.db;
import android.content.ContentValues;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteException;
import android.database.sqlite.SQLiteOpenHelper;
import com.example.yoso.supe... | 8,996 | 0.74559 | 0.735271 | 176 | 50.210228 | 39.974228 | 121 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.056818 | false | false | 10 |
391035cce30b4d5a71f27cd0cb02f3d37f58da64 | 8,349,416,443,471 | f2c6bd486f13a4ee3e3890e1b4d1a18d467f544d | /src/main/java/sample/controller/factory/ControllerInterface.java | 063b213091a3da7b88b864bc2dfa1c8683971674 | [] | no_license | dofun12/javafx-lib | https://github.com/dofun12/javafx-lib | f2bf147d9117887f905eea15dbe9e216706336af | 217c9be030370efd08063d8d9d771139de011bd4 | refs/heads/master | 2020-05-21T02:56:37.645000 | 2019-05-10T00:07:57 | 2019-05-10T00:07:57 | 185,887,506 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package sample.controller.factory;
public interface ControllerInterface {
void onInit();
}
| UTF-8 | Java | 96 | java | ControllerInterface.java | Java | [] | null | [] | package sample.controller.factory;
public interface ControllerInterface {
void onInit();
}
| 96 | 0.770833 | 0.770833 | 5 | 18.200001 | 15.929846 | 38 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 10 |
9b7ef7dafa720afd8357154b592cdc7d6683abdd | 8,349,416,445,287 | e353cb2c39b503396731778703abfde6ab4c19eb | /JimenezJimenezSergioEJB/ejbModule/business/impl/ejbinterfaces/UserServiceLocal.java | 47930b18160e080e036a5feb9103159e093af777 | [] | no_license | Seryusjj/EJB-JPA | https://github.com/Seryusjj/EJB-JPA | f9f4e313f18a3206c354fd8ce31bca60c8b0abd2 | e1d7b71bcf4a5aa0ebdfdc917467de5674629bc4 | refs/heads/master | 2020-04-23T07:44:23.597000 | 2014-05-25T15:23:01 | 2014-05-25T15:23:01 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package business.impl.ejbinterfaces;
import javax.ejb.Local;
import business.UserService;
@Local
public interface UserServiceLocal extends UserService{
}
| UTF-8 | Java | 158 | java | UserServiceLocal.java | Java | [] | null | [] | package business.impl.ejbinterfaces;
import javax.ejb.Local;
import business.UserService;
@Local
public interface UserServiceLocal extends UserService{
}
| 158 | 0.822785 | 0.822785 | 10 | 14.8 | 18.361917 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3 | false | false | 10 |
07df9449acc812dba80f2a24aa90e0637b45ce3e | 24,713,241,840,717 | 6627ace71345ffa616d17b1f3b72447bcb0afb9f | /spring-aop/src/main/java/org/springframework/aop/interceptor/package-info.java | 2414e281c36505b294ea2ccc4ef7c58c11d1453d | [
"Apache-2.0"
] | permissive | Source-code-analysis-lzh/spring | https://github.com/Source-code-analysis-lzh/spring | ed36073039935c764dee4d8c2be7e5a614a2d933 | fd427bd62d454ac1de2595826b6518bc0cbaee23 | refs/heads/master | 2022-11-05T03:19:41.069000 | 2020-06-22T05:59:47 | 2020-06-22T05:59:47 | 274,041,731 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* 提供其它拦截器实现。
* 可以在相应的功能包中找到更具体的拦截器,例如"transaction" 和 "orm"。
*/
@NonNullApi
@NonNullFields
package org.springframework.aop.interceptor;
import org.springframework.lang.NonNullApi;
import org.springframework.lang.NonNullFields;
| UTF-8 | Java | 303 | java | package-info.java | Java | [] | null | [] | /**
* 提供其它拦截器实现。
* 可以在相应的功能包中找到更具体的拦截器,例如"transaction" 和 "orm"。
*/
@NonNullApi
@NonNullFields
package org.springframework.aop.interceptor;
import org.springframework.lang.NonNullApi;
import org.springframework.lang.NonNullFields;
| 303 | 0.791489 | 0.791489 | 10 | 22.5 | 18.916924 | 47 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3 | false | false | 10 |
f8c5fe072f59de00a707b4dad6e6377f17ae4e98 | 31,121,333,052,880 | c66d70da7dfaf5e91a4f5fc5726560f9917e7a52 | /src/main/java/com/project/bonaventurajason/client/BuatAndy.java | 69af65ee4a796d6b09fd4f8b44ec620814e8e9f8 | [] | no_license | bonaventurajason/ChatProject | https://github.com/bonaventurajason/ChatProject | a6ea34b4ee59dadc033c16e1b1d5f7e471c4d232 | c80312d669a519f2bc931dd11435af7aa83a5219 | refs/heads/master | 2020-04-27T17:10:22.338000 | 2019-03-08T09:23:32 | 2019-03-08T09:23:32 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.project.bonaventurajason.client;
public class BuatAndy {
private final int a;
private final int b;
public BuatAndy(int a, int b){
this.a = a;
this.b = b;
}
public int perhitunganTambah(int a,int b){
int c = a + b;
return c;
}
public static void... | UTF-8 | Java | 426 | java | BuatAndy.java | Java | [] | null | [] | package com.project.bonaventurajason.client;
public class BuatAndy {
private final int a;
private final int b;
public BuatAndy(int a, int b){
this.a = a;
this.b = b;
}
public int perhitunganTambah(int a,int b){
int c = a + b;
return c;
}
public static void... | 426 | 0.57277 | 0.568075 | 21 | 19.285715 | 15.871937 | 46 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.571429 | false | false | 10 |
3f360c431dafc71638da28581e4d6171a17b9a7b | 12,618,613,954,486 | 42ceee04f6868d7e957c3a4a529e67d207b5e4aa | /src/main/java/com/xrpn/jhi/t4j/T4JStreamer.java | 9c0f88b7e71dd9411ada161dde1063e63f9a2631 | [
"MIT"
] | permissive | xrpn/twitter-slurp | https://github.com/xrpn/twitter-slurp | b27d543e4ab8c38d153171c22210bee0912257d9 | 412eeb808247d8989933e21fef118854886b50d0 | refs/heads/master | 2020-06-18T11:50:39.487000 | 2016-11-30T02:06:24 | 2016-11-30T02:06:24 | 75,139,569 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.xrpn.jhi.t4j;
import twitter4j.TwitterStream;
import twitter4j.TwitterStreamFactory;
import twitter4j.conf.Configuration;
import twitter4j.conf.PropertyConfiguration;
import java.io.InputStream;
import java.util.concurrent.ConcurrentLinkedQueue;
/**
* Twitter4j provides a ready-to-use OAuth client for t... | UTF-8 | Java | 5,720 | java | T4JStreamer.java | Java | [
{
"context": "pache.org/)\n * could do.\n * <br><br>\n * Created by alsq on 11/18/16.\n */\npublic class T4JStreamer {\n\n ",
"end": 2195,
"score": 0.9996304512023926,
"start": 2191,
"tag": "USERNAME",
"value": "alsq"
}
] | null | [] | package com.xrpn.jhi.t4j;
import twitter4j.TwitterStream;
import twitter4j.TwitterStreamFactory;
import twitter4j.conf.Configuration;
import twitter4j.conf.PropertyConfiguration;
import java.io.InputStream;
import java.util.concurrent.ConcurrentLinkedQueue;
/**
* Twitter4j provides a ready-to-use OAuth client for t... | 5,720 | 0.736014 | 0.730245 | 117 | 47.888889 | 34.898087 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.555556 | false | false | 15 |
a5b1585631403c0f10d6b7feb228af6588fc0d53 | 25,709,674,293,576 | 69379d699860578ac5bdc9fd5df14e7f85a4b7c6 | /br.usp.each.saeg.code.forest.ui/src/br/usp/each/saeg/code/forest/xml/ReadXmlPerformAnalysis.java | bbc8a75796a4cf20480e94a65900e2c13ef24733 | [
"Apache-2.0"
] | permissive | fabiodasilva500/CodeForest-Plugin | https://github.com/fabiodasilva500/CodeForest-Plugin | ba1c69e675d1a8b6d12d0cf116fc0f9f8431f5bb | c99159ac4b9a6cd607183ea0b54aeb012b890a9a | refs/heads/master | 2021-01-20T22:18:53.375000 | 2018-01-28T15:05:24 | 2018-01-28T15:05:24 | 64,807,947 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.usp.each.saeg.code.forest.xml;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import sun.org.mozilla.javascript.internal.regexp.SubString;
import br.usp.each... | UTF-8 | Java | 5,439 | java | ReadXmlPerformAnalysis.java | Java | [] | null | [] | package br.usp.each.saeg.code.forest.xml;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import sun.org.mozilla.javascript.internal.regexp.SubString;
import br.usp.each... | 5,439 | 0.691883 | 0.688938 | 187 | 27.032085 | 27.778517 | 173 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.663102 | false | false | 15 |
03fe4d6bf79c61ee0801f072c7096900b8ac7c63 | 29,076,928,626,174 | d9d7bf3d0dca265c853cb58c251ecae8390135e0 | /gcld/src/com/reign/gcld/common/Users.java | 5b481f22621feefecd98021a14738879ea34a140 | [] | no_license | Crasader/workspace | https://github.com/Crasader/workspace | 4da6bd746a3ae991a5f2457afbc44586689aa9d0 | 28e26c065a66b480e5e3b966be4871b44981b3d8 | refs/heads/master | 2020-05-04T21:08:49.911000 | 2018-11-19T08:14:27 | 2018-11-19T08:14:27 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.reign.gcld.common;
import com.reign.gcld.user.dto.*;
import com.reign.framework.netty.servlet.*;
import com.reign.gcld.common.log.*;
import java.util.concurrent.*;
import com.reign.gcld.log.*;
import java.util.*;
public class Users
{
public static ConcurrentMap<String, UserDto> userMap;
public sta... | UTF-8 | Java | 3,390 | java | Users.java | Java | [] | null | [] | package com.reign.gcld.common;
import com.reign.gcld.user.dto.*;
import com.reign.framework.netty.servlet.*;
import com.reign.gcld.common.log.*;
import java.util.concurrent.*;
import com.reign.gcld.log.*;
import java.util.*;
public class Users
{
public static ConcurrentMap<String, UserDto> userMap;
public sta... | 3,390 | 0.635693 | 0.633923 | 85 | 38.882355 | 33.646049 | 158 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.682353 | false | false | 15 |
5577f86a11d77e7a513591ed36d4960ee7af9a24 | 25,847,113,242,500 | 51408a326c14cf5a4ec8e3a99ee891b1a459b7af | /OOP Collections practice - music instruments/src/music/instruments/strunni/Cigulka.java | be6d2bee22fc433abd39eec26ae1665101ae080b | [] | no_license | Elizabeth552/ITTalents | https://github.com/Elizabeth552/ITTalents | 1ec80b349d29010e3b4d2a1d773e2f3ccab12da9 | 820b46fd87c8a6671bb4afea251a9cdf46ed8688 | refs/heads/main | 2023-04-06T00:46:30.533000 | 2021-05-02T15:54:18 | 2021-05-02T15:54:18 | 363,396,910 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package music.instruments.strunni;
public class Cigulka extends StrunenInstrument{
public Cigulka(double price) {
super("Цигулка",price);
}
}
| UTF-8 | Java | 175 | java | Cigulka.java | Java | [] | null | [] | package music.instruments.strunni;
public class Cigulka extends StrunenInstrument{
public Cigulka(double price) {
super("Цигулка",price);
}
}
| 175 | 0.672619 | 0.672619 | 8 | 19 | 18.096962 | 47 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.375 | false | false | 15 |
cec901f40d896ceb76053c4004b8c5dc6c769859 | 15,633,680,969,799 | 247d419c537fd022c326bf14f47e851194d58a09 | /demo/src/main/java/org/vaadin/stefan/ui/view/AbstractCalendarView.java | b433722e62912f0971da08e60892809fbf7a1881 | [
"MIT"
] | permissive | stefanuebe/vaadin_fullcalendar | https://github.com/stefanuebe/vaadin_fullcalendar | 663be58dcaec5be024ccb461a003a5f1e48f8e7c | 73e45463d8da435f9e3dec47e0742ccb1a432014 | refs/heads/master | 2023-05-25T05:42:47.414000 | 2022-12-16T04:53:44 | 2022-12-16T04:53:44 | 154,325,395 | 24 | 39 | MIT | false | 2022-04-23T07:47:11 | 2018-10-23T12:37:09 | 2022-03-09T05:32:59 | 2022-04-23T07:47:10 | 3,716 | 15 | 20 | 12 | Java | false | false | package org.vaadin.stefan.ui.view;
import com.vaadin.flow.component.Component;
import com.vaadin.flow.component.ComponentEventListener;
import com.vaadin.flow.component.html.Span;
import com.vaadin.flow.component.orderedlayout.VerticalLayout;
import elemental.json.Json;
import elemental.json.JsonObject;
import lombok.... | UTF-8 | Java | 14,036 | java | AbstractCalendarView.java | Java | [] | null | [] | package org.vaadin.stefan.ui.view;
import com.vaadin.flow.component.Component;
import com.vaadin.flow.component.ComponentEventListener;
import com.vaadin.flow.component.html.Span;
import com.vaadin.flow.component.orderedlayout.VerticalLayout;
import elemental.json.Json;
import elemental.json.JsonObject;
import lombok.... | 14,036 | 0.693787 | 0.692362 | 355 | 38.538029 | 33.878502 | 133 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.340845 | false | false | 15 |
9f5a5bdb2db49b67b24d1fefe7d44da689979caa | 9,242,769,658,182 | e0d8ef1768dfdaed51c7380b0b4be94352507a5e | /src/main/java/com/actualplayer/rememberme/handlers/IRememberMeHandler.java | 44d8af0895e0727d98f67813f23f887b4f32eb5c | [
"MIT"
] | permissive | fgardt/RememberMe | https://github.com/fgardt/RememberMe | d07de5752c6c71942d6e6632e832fa3d896d9eea | 891584611c8bc5cc90f1dff49f033c376e68050e | refs/heads/master | 2023-07-11T00:51:34.899000 | 2021-05-17T16:04:18 | 2021-05-17T16:04:18 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.actualplayer.rememberme.handlers;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
public interface IRememberMeHandler {
/**
* Get the user's last server name
* @param uuid user's UUID
* @return A future that contains a String with the last server's name once resol... | UTF-8 | Java | 622 | java | IRememberMeHandler.java | Java | [] | null | [] | package com.actualplayer.rememberme.handlers;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
public interface IRememberMeHandler {
/**
* Get the user's last server name
* @param uuid user's UUID
* @return A future that contains a String with the last server's name once resol... | 622 | 0.70418 | 0.70418 | 21 | 28.619047 | 26.279589 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.285714 | false | false | 15 |
8187e1d6d3cb1afa78666af43d6faaf4fbb13285 | 21,543,555,973,451 | c36d08386a88e139e6325ea7f5de64ba00a45c9f | /hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/java/org/apache/hadoop/yarn/nodelabels/store/op/NodeLabelMirrorOp.java | bc8cb8393550b25914ed6d1dd80f3d145d323da1 | [
"Apache-2.0",
"LicenseRef-scancode-unknown",
"CC0-1.0",
"CC-BY-3.0",
"EPL-1.0",
"LicenseRef-scancode-unknown-license-reference",
"Classpath-exception-2.0",
"CC-PDDC",
"GCC-exception-3.1",
"CDDL-1.0",
"MIT",
"GPL-2.0-only",
"BSD-3-Clause",
"LicenseRef-scancode-public-domain",
"LGPL-2.1-on... | permissive | dmgerman/hadoop | https://github.com/dmgerman/hadoop | 6197e3f3009196fb4ca528ab420d99a0cd5b9396 | 70c015914a8756c5440cd969d70dac04b8b6142b | refs/heads/master | 2020-12-01T06:30:51.605000 | 2019-12-19T19:37:17 | 2019-12-19T19:37:17 | 230,528,747 | 0 | 0 | Apache-2.0 | false | 2020-01-31T18:29:52 | 2019-12-27T22:48:25 | 2019-12-28T01:56:19 | 2020-01-31T18:29:51 | 128,849 | 0 | 0 | 1 | Java | false | false | begin_unit|revision:0.9.5;language:Java;cregit-version:0.0.1
begin_comment
comment|/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF license... | UTF-8 | Java | 6,689 | java | NodeLabelMirrorOp.java | Java | [] | null | [] | begin_unit|revision:0.9.5;language:Java;cregit-version:0.0.1
begin_comment
comment|/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF license... | 6,689 | 0.798176 | 0.796532 | 424 | 14.773585 | 39.852448 | 814 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.971698 | false | false | 15 |
f449b736242b3455fab3f3f75b51e30f325e3482 | 4,200,478,065,469 | c5e4bfe8dd629890a61082223aa464a5f2cd966a | /server/src/main/java/com/trevinavery/beyondthrift/dao/PersonDao.java | f3a663e611626531238d522e81779fe9c1321a81 | [] | no_license | TrevinAvery/Beyond_Thrift | https://github.com/TrevinAvery/Beyond_Thrift | 6b2352ad97eefadf32acf8e8d9b2d17650a72925 | fbd336c9e6824a271946f7927e0420b7aad60efb | refs/heads/master | 2021-09-06T18:32:55.828000 | 2018-02-09T19:18:54 | 2018-02-09T19:18:54 | 106,886,454 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.trevinavery.beyondthrift.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.UUID;
import java.util.logging.Level;
import com.trevinavery.beyondthrift.model.Person... | UTF-8 | Java | 11,656 | java | PersonDao.java | Java | [
{
"context": "e as calling\n * <code>createPerson(descendant, firstName, lastName,\n * gender, nu",
"end": 1068,
"score": 0.9963473677635193,
"start": 1059,
"tag": "NAME",
"value": "firstName"
},
{
"context": "g\n * <code>createPerson(descendant, firs... | null | [] | package com.trevinavery.beyondthrift.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.UUID;
import java.util.logging.Level;
import com.trevinavery.beyondthrift.model.Person... | 11,656 | 0.506863 | 0.503518 | 358 | 31.558659 | 22.078596 | 89 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.555866 | false | false | 15 |
aaf5a2f98174daf36c3931a60787568c6281f6b2 | 1,357,209,676,458 | 4f619d95325c93e7c188c0efe06ee96a37343b0d | /common/src/main/java/com/summer/tools/common/utils/ShellUtil.java | 68d0222585c7e1f8a95c1178ddfbae35cf76f6dd | [
"MIT"
] | permissive | pud-pickingUpDreamming/spring-boot-tools | https://github.com/pud-pickingUpDreamming/spring-boot-tools | 8ba72da79db65ac4c74b98342a8731b7e2020602 | c70ae3f00533e689df971e160169826b6d4d435a | refs/heads/main | 2023-07-09T18:43:36.058000 | 2021-08-19T15:55:25 | 2021-08-19T15:55:25 | 361,594,681 | 1 | 3 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.summer.tools.common.utils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class ShellUtil {
private static final Logger logger = LoggerFactory.getLogger(ShellUtil.class);
public static ... | UTF-8 | Java | 1,312 | java | ShellUtil.java | Java | [] | null | [] | package com.summer.tools.common.utils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class ShellUtil {
private static final Logger logger = LoggerFactory.getLogger(ShellUtil.class);
public static ... | 1,312 | 0.59949 | 0.597789 | 36 | 31.666666 | 26.892792 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.611111 | false | false | 15 |
b849b14f49ff103a54fd627c15f8b7592d1e5e56 | 27,238,682,644,544 | 16e832977c20a445d6ee3b95ef344b1755d7c0b1 | /src/main/java/com/example/demo/entity/Album.java | 64fa304c87b81c49991c08315909d88d35a90602 | [] | no_license | elionaycaxinga/albumManagement | https://github.com/elionaycaxinga/albumManagement | 52a891eae7e6f9569a4a0b221f7b3bd70e21ad1b | 88f8830aee4cf78c0f961e4007900740a008269a | refs/heads/main | 2023-07-15T01:57:00.022000 | 2021-08-21T17:39:33 | 2021-08-21T17:39:33 | 398,617,368 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.demo.entity;
import java.util.Date;
import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import ... | UTF-8 | Java | 850 | java | Album.java | Java | [] | null | [] | package com.example.demo.entity;
import java.util.Date;
import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import ... | 850 | 0.805882 | 0.805882 | 39 | 20.794872 | 13.845632 | 46 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.794872 | false | false | 15 |
2a8c5d9d18b5d1328088db12bc27a0d4785f1000 | 2,233,383,033,092 | 5adc168a697a9381e94fee66078266b4b338fe41 | /EIDAS-JCache-Dev/src/test/java/eu/eidas/auth/cache/JCacheConcurrentMapAdapterTest.java | f4c7f112c1c86673e94b8906f69aea3bed2526b2 | [] | no_license | willp-bl/eidas-mirror | https://github.com/willp-bl/eidas-mirror | 51483d4509ef5c7d3478c3d234f0c35870bf1d3b | de3bb6f139a16ceff1e5d61daf1f1ce206caa0b7 | refs/heads/master | 2023-01-18T14:28:45.854000 | 2019-12-11T20:06:16 | 2019-12-11T20:06:16 | 63,151,038 | 0 | 5 | null | false | 2022-12-27T14:45:50 | 2016-07-12T11:02:24 | 2019-12-11T20:25:45 | 2022-12-27T14:45:47 | 174,517 | 0 | 7 | 42 | Java | false | false | /*
* Copyright (c) 2019 by European Commission
*
* Licensed under the EUPL, Version 1.2 or - as soon they will be
* approved by the European Commission - subsequent versions of the
* EUPL (the "Licence");
* You may not use this work except in compliance with the Licence.
* You may obtain a copy of the Licence at... | UTF-8 | Java | 22,199 | java | JCacheConcurrentMapAdapterTest.java | Java | [] | null | [] | /*
* Copyright (c) 2019 by European Commission
*
* Licensed under the EUPL, Version 1.2 or - as soon they will be
* approved by the European Commission - subsequent versions of the
* EUPL (the "Licence");
* You may not use this work except in compliance with the Licence.
* You may obtain a copy of the Licence at... | 22,199 | 0.694896 | 0.694356 | 645 | 33.418606 | 33.050465 | 122 | true | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.48062 | false | false | 15 |
42d556eba9864195d323909b6348416d427e5d04 | 31,756,988,208,126 | a20bed15640acb519d118310c165ba68c8a2a04d | /src/king/test/test.java | bd6874a27abaa2488ed07ada5d411bd46e75a8c7 | [] | no_license | jxp86266/kingWeb | https://github.com/jxp86266/kingWeb | 26889cd10af76e240a44eb9260e7d2719067b210 | e7fefe2bc51c00183f6065e7c295c1ec7661c83e | refs/heads/master | 2018-02-08T04:08:23.513000 | 2017-07-11T15:47:02 | 2017-07-11T15:47:02 | 96,379,364 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package king.test;
public class test {
//this github web
}
| UTF-8 | Java | 70 | java | test.java | Java | [] | null | [] | package king.test;
public class test {
//this github web
}
| 70 | 0.614286 | 0.614286 | 6 | 9.666667 | 9.357113 | 20 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.166667 | false | false | 15 |
02d22d9cf916aaa2bcc14fa4f1ad77c6063ba369 | 6,768,868,462,237 | 2755e1ab56e4723cafe858dc11046de2a2968344 | /ejecicios/TestEcuaciones.java | 9423f8716c8bf067bc177a9d3fdedd8cece19b5e | [] | no_license | programacionDAMVC/estructurasDeControl | https://github.com/programacionDAMVC/estructurasDeControl | aa512de8704755fdc1bc98ca17e9b53550a56551 | 62cdf9d6861dfaea6f2149e87cfdb94377a5f273 | refs/heads/master | 2021-08-20T05:59:51.528000 | 2017-11-28T10:55:59 | 2017-11-28T10:55:59 | 109,828,467 | 0 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.Scanner;
public class TestEcuaciones {
public static void main(String[] args) {
int a, b, c, d, e, f; //coeficientes de las ecuaciones
//lectura por scanner de los coeficientes
System.out.println("Introduce los coeficientes de las ecuaciones");
Scanner sc = new Scanner... | UTF-8 | Java | 1,118 | java | TestEcuaciones.java | Java | [] | null | [] | import java.util.Scanner;
public class TestEcuaciones {
public static void main(String[] args) {
int a, b, c, d, e, f; //coeficientes de las ecuaciones
//lectura por scanner de los coeficientes
System.out.println("Introduce los coeficientes de las ecuaciones");
Scanner sc = new Scanner... | 1,118 | 0.546355 | 0.541854 | 29 | 37.310345 | 23.263266 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.344828 | false | false | 15 |
731fe8aabd7656e898e583fcc7ab5da50d67a7a7 | 6,768,868,464,338 | 318a41964879d45b6aa9b3ee50338a62164e94ee | /src/main/java/com/chen/quartz/dao/AdminMapper.java | 43db2a01d6b41c583b53400fa96c3942d97be0c8 | [] | no_license | sdwchen/quartz | https://github.com/sdwchen/quartz | 0c2eff73936eb153c2c6f91e8d60c5d9fabadfff | 50dcf70529c8e808037ae27399b876b08011dab4 | refs/heads/master | 2023-05-29T08:51:14.605000 | 2021-06-10T15:44:14 | 2021-06-10T15:44:14 | 375,685,123 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.chen.quartz.dao;
import com.chen.quartz.entity.AdminVO;
import org.springframework.stereotype.Component;
@Component
public interface AdminMapper {
AdminVO findAllAdmin();
} | UTF-8 | Java | 191 | java | AdminMapper.java | Java | [] | null | [] | package com.chen.quartz.dao;
import com.chen.quartz.entity.AdminVO;
import org.springframework.stereotype.Component;
@Component
public interface AdminMapper {
AdminVO findAllAdmin();
} | 191 | 0.795812 | 0.795812 | 11 | 16.454546 | 17.137751 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.363636 | false | false | 15 |
e231e634c79545880bc49a47b79b7e2b7e539402 | 27,599,459,867,340 | d61924b77803440d631889112a95a74c12d3b5b5 | /app/src/main/java/com/firebase/ui/database/FirebaseRecyclerAdapter.java | 1dfc6d6ab07e1a948633037dcc82a5e3cb99dc0b | [
"MIT"
] | permissive | utsanjan/collegeblog | https://github.com/utsanjan/collegeblog | 423bfe883013ac37b8471170ea0aa6617f255561 | 27a6ffa5c66de51fc190295103888cbe7042474d | refs/heads/master | 2022-10-07T00:01:09.586000 | 2022-08-12T10:54:34 | 2022-08-12T10:54:34 | 269,986,309 | 12 | 0 | null | false | 2022-03-08T04:38:49 | 2020-06-06T13:15:51 | 2022-03-08T04:37:03 | 2022-03-08T04:38:48 | 133 | 7 | 0 | 0 | Java | false | false | package com.firebase.ui.database;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.lifecycle.Lifecycle;
import androidx.lifecycle.LifecycleOwner;
import androidx.lifecycle.OnLifecycleEvent;
import androidx.recyclerview.widget.Recycler... | UTF-8 | Java | 7,431 | java | FirebaseRecyclerAdapter.java | Java | [] | null | [] | package com.firebase.ui.database;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.lifecycle.Lifecycle;
import androidx.lifecycle.LifecycleOwner;
import androidx.lifecycle.OnLifecycleEvent;
import androidx.recyclerview.widget.Recycler... | 7,431 | 0.689275 | 0.686449 | 180 | 40.283333 | 34.871235 | 149 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.644444 | false | false | 15 |
5946c256d5eb546028f683e0812370704b9c5804 | 28,647,431,865,096 | 4e854d94a4231a0ea4960863f73e6d2f616c645c | /src/Rectangle.java | bf47d9c19fd57b7a0dd48bc768b34b0df62b3c85 | [] | no_license | asif-it/JavaPractice | https://github.com/asif-it/JavaPractice | 13b5ebe03cc29c6473054997d16e864b10e8b23c | 65773fe9b3213bd534383772bb06f3f4accaf9eb | refs/heads/master | 2018-02-09T22:08:45.933000 | 2017-07-11T03:59:15 | 2017-07-11T03:59:15 | 96,848,844 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Created by rawlooa on 7/10/2017.
*/
public class Rectangle {
private Point point;
private Rectangle(Point point) {
this.point = point;
}
private static class Point {
private int x;
private int y;
Point(int x, int y) {
this.x = x;
this.y ... | UTF-8 | Java | 495 | java | Rectangle.java | Java | [
{
"context": "/**\n * Created by rawlooa on 7/10/2017.\n */\npublic class Rectangle {\n pr",
"end": 25,
"score": 0.9996600151062012,
"start": 18,
"tag": "USERNAME",
"value": "rawlooa"
}
] | null | [] | /**
* Created by rawlooa on 7/10/2017.
*/
public class Rectangle {
private Point point;
private Rectangle(Point point) {
this.point = point;
}
private static class Point {
private int x;
private int y;
Point(int x, int y) {
this.x = x;
this.y ... | 495 | 0.523232 | 0.50101 | 26 | 18.038462 | 16.039568 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.423077 | false | false | 15 |
8342f94e6f84a726c31664475496f8ede8b5f0be | 25,013,889,602,354 | f2065e2f9948027d0b06edbb5e6300f92967d13c | /src/main/java/cn/com/telecom/domain/InformationOLT.java | 6b3093c4d8bee69d2ba74067aae8121e0245dfcf | [] | no_license | tangooricha/telecom | https://github.com/tangooricha/telecom | d399c9b7222e2e55bef9f84c00f41cfcf3ec7832 | 634102e3c335bb41a08c03620bc1db6f4b0168d4 | refs/heads/master | 2020-03-21T19:43:54.904000 | 2017-08-18T01:14:12 | 2017-08-18T01:14:12 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.com.telecom.domain;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
@Entity
@Table(name = "OLT")
public class InformationOLT extends BaseEntity implements Serializable{
/**
*
*/
private static final long ... | UTF-8 | Java | 2,768 | java | InformationOLT.java | Java | [] | null | [] | package cn.com.telecom.domain;
import java.io.Serializable;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
@Entity
@Table(name = "OLT")
public class InformationOLT extends BaseEntity implements Serializable{
/**
*
*/
private static final long ... | 2,768 | 0.695122 | 0.688101 | 142 | 17.056337 | 17.422979 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.176056 | false | false | 15 |
239436e07976f2391844d537565a916794c09687 | 7,902,739,848,190 | c6f251709fbeedc46dbaf937e4ff4f6709452636 | /hw8/src/main/java/com/chentsov/hw4/controllers/AdminController.java | dfc8f789e6e73f309b42d142e91b151ac696c0b3 | [] | no_license | starc0unter/Spring-1 | https://github.com/starc0unter/Spring-1 | cfdbbd2c5a4b6004506254ced493524d3789f3cd | 2b7118ee40b8357b95d6119c36c58ecf354f3576 | refs/heads/master | 2021-08-18T07:39:07.828000 | 2020-04-29T19:52:40 | 2020-04-29T19:52:40 | 170,807,365 | 0 | 0 | null | false | 2021-06-23T20:55:22 | 2019-02-15T05:35:03 | 2020-04-29T19:52:44 | 2021-06-23T20:55:22 | 155 | 0 | 0 | 12 | Java | false | false | package com.chentsov.hw4.controllers;
import com.chentsov.hw4.services.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class... | UTF-8 | Java | 685 | java | AdminController.java | Java | [] | null | [] | package com.chentsov.hw4.controllers;
import com.chentsov.hw4.services.UserService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class... | 685 | 0.751825 | 0.748905 | 25 | 26.4 | 22.414282 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.44 | false | false | 15 |
89d9cc0778b24db2de84fe8fe345f4fcea66b4b4 | 3,410,204,035,973 | da61d9f7d60be053d7010883f517bac2ccf54dc7 | /app/src/main/java/com/impakter/impakter/activity/EditAddressActivity.java | d9759a55b164c23c95ad947cd6c1329107367a9e | [] | no_license | aartisoft/Impakter | https://github.com/aartisoft/Impakter | 871e32b8c7edaeac9c6fabf02f6dc69c97fbe809 | 65078fc7dcbf58ec9447557f80a9d062ae60b8f4 | refs/heads/master | 2020-06-13T23:47:10.391000 | 2018-11-18T14:24:05 | 2018-11-18T14:24:05 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.impakter.impakter.activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.widget.SwitchCompat;
import android.view.View;
import android.widget.AdapterView;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Spinner;
import android.wid... | UTF-8 | Java | 10,983 | java | EditAddressActivity.java | Java | [] | null | [] | package com.impakter.impakter.activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.widget.SwitchCompat;
import android.view.View;
import android.widget.AdapterView;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Spinner;
import android.wid... | 10,983 | 0.587362 | 0.58627 | 287 | 37.268291 | 27.150526 | 172 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.627178 | false | false | 15 |
0c73b6711bfe40668257e447764978869f00bd75 | 32,117,765,475,654 | 4f0e33a5dab58c3b553c0189f03823f32068e13f | /modules/server/src/test/java/com/mindbox/pe/server/generator/value/ContextElementValueSlotHelperTest.java | ca2cbfd17e358c0e133c220fbe00d09fbc23c0da | [] | no_license | josfernandez-clgx/PowerEditor | https://github.com/josfernandez-clgx/PowerEditor | 6e2e1f098fa11c871e6a0b8da982cca2ab22e285 | a4399706feb4dfb2d10c8209ead59d6639e98473 | refs/heads/master | 2023-06-08T01:48:26.053000 | 2020-06-02T22:15:00 | 2020-06-02T22:15:00 | 379,699,653 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mindbox.pe.server.generator.value;
import static com.mindbox.pe.server.ServerTestObjectMother.createGenericCategory;
import static org.junit.Assert.assertEquals;
import java.util.Date;
import org.junit.Test;
import com.mindbox.pe.model.GenericCategory;
import com.mindbox.pe.model.GenericEntity... | UTF-8 | Java | 4,427 | java | ContextElementValueSlotHelperTest.java | Java | [] | null | [] | package com.mindbox.pe.server.generator.value;
import static com.mindbox.pe.server.ServerTestObjectMother.createGenericCategory;
import static org.junit.Assert.assertEquals;
import java.util.Date;
import org.junit.Test;
import com.mindbox.pe.model.GenericCategory;
import com.mindbox.pe.model.GenericEntity... | 4,427 | 0.75672 | 0.753332 | 81 | 52.65432 | 54.607956 | 182 | false | false | 0 | 0 | 0 | 0 | 82 | 0.085385 | 2.123457 | false | false | 15 |
d6726a0921c5ff12f9b77276f9896c65f1f04163 | 3,650,722,217,943 | c38e86f811c7ec81b18fe081a4c78a4cd3c1c3af | /loja/src/br/com/loja/principal/ImplementarProdutoComHeranca3.java | 34fa7945202fcd0f9f4d1e861a4a11d505590426 | [] | no_license | vicfelix/wsjavase_turma4 | https://github.com/vicfelix/wsjavase_turma4 | 46b814cc310a94c7d0d0285c2548aad867ff17b9 | ec49244504309d429a6c7ac0d6107c56811188c9 | refs/heads/master | 2022-11-10T04:44:52.697000 | 2020-06-25T20:35:50 | 2020-06-25T20:35:50 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.com.loja.principal;
import javax.swing.JOptionPane;
import br.com.loja.beans.Autor;
import br.com.loja.beans.CD;
import br.com.loja.beans.Livro;
public class ImplementarProdutoComHeranca3 {
public static float f(String msg) {
return Float.parseFloat(s(msg));
}
public static int i(String msg) {
re... | ISO-8859-1 | Java | 1,336 | java | ImplementarProdutoComHeranca3.java | Java | [] | null | [] | package br.com.loja.principal;
import javax.swing.JOptionPane;
import br.com.loja.beans.Autor;
import br.com.loja.beans.CD;
import br.com.loja.beans.Livro;
public class ImplementarProdutoComHeranca3 {
public static float f(String msg) {
return Float.parseFloat(s(msg));
}
public static int i(String msg) {
re... | 1,336 | 0.639579 | 0.635064 | 55 | 23.163637 | 16.359333 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.636364 | false | false | 15 |
142c96fb0b0f3b24942fc29075198cb852fa2eb0 | 3,779,571,287,634 | 7ba54899ac95ca0fe50f89339f97e30a0a76a636 | /app/src/main/java/com/garagu/marvel/presentation/comic/model/ComicViewModel.java | 9ccff6706791e02158bf23bd8b8c28ce31fc48a1 | [] | no_license | garagu/Marvel | https://github.com/garagu/Marvel | 86a58e7829689c3c83ca69d035fe3e6f97ea6114 | 52e9d26b2f170c1c8a340ce3fa5fbaecd08d87fd | refs/heads/develop | 2021-01-21T20:11:26.922000 | 2017-09-23T07:46:11 | 2017-09-23T07:46:11 | 92,201,982 | 2 | 0 | null | false | 2017-09-23T07:46:12 | 2017-05-23T17:41:14 | 2017-09-02T17:25:25 | 2017-09-23T07:46:11 | 1,230 | 1 | 0 | 0 | Java | null | null | package com.garagu.marvel.presentation.comic.model;
import android.os.Parcel;
import android.os.Parcelable;
import java.util.ArrayList;
import java.util.List;
/**
* Created by garagu.
*/
public class ComicViewModel implements Parcelable {
public static final Creator<ComicViewModel> CREATOR = new Creator<Comic... | UTF-8 | Java | 5,958 | java | ComicViewModel.java | Java | [
{
"context": "rayList;\nimport java.util.List;\n\n/**\n * Created by garagu.\n */\npublic class ComicViewModel implements Parce",
"end": 186,
"score": 0.974338710308075,
"start": 180,
"tag": "USERNAME",
"value": "garagu"
}
] | null | [] | package com.garagu.marvel.presentation.comic.model;
import android.os.Parcel;
import android.os.Parcelable;
import java.util.ArrayList;
import java.util.List;
/**
* Created by garagu.
*/
public class ComicViewModel implements Parcelable {
public static final Creator<ComicViewModel> CREATOR = new Creator<Comic... | 5,958 | 0.60423 | 0.604062 | 222 | 25.842342 | 23.102736 | 173 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.599099 | false | false | 15 |
a9d8558896444dad5f5d806ad6d3bc8107910f88 | 38,525,856,646,302 | fefe7d12977f399e9014ded579f2e44f1f5f2275 | /src/main/java/com/tuyano/springboot/view/MessagesXlsxView.java | 3e19022fa793c3c4b86300bb3839bbb7f603dc62 | [] | no_license | kashiwagi0119/MyBootApp | https://github.com/kashiwagi0119/MyBootApp | dc2a42a9309a07419087e1b88fb3cc3f6c183bc1 | af25b9b4b7dfde707623e2abc3bb6ed754ac26fd | refs/heads/master | 2020-03-22T01:05:55.867000 | 2019-02-13T08:32:23 | 2019-02-13T08:32:23 | 139,282,855 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.tuyano.springboot.view;
import java.text.SimpleDateFormat;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apac... | UTF-8 | Java | 2,084 | java | MessagesXlsxView.java | Java | [] | null | [] | package com.tuyano.springboot.view;
import java.text.SimpleDateFormat;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apac... | 2,084 | 0.633107 | 0.621007 | 57 | 34.280701 | 26.715364 | 111 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.754386 | false | false | 15 |
ffb0e8bf0f40a18cbf1c3912b23e512d99135188 | 34,918,084,153,242 | 2a7be719b30e2fba499ef6b1dda5234a231b40c8 | /src/main/java/com/home_server/ui/info/CalendarController.java | af763286995b1a9816a4a99eb81186f36bc5e357 | [] | no_license | Cornholio2108/Home_Server | https://github.com/Cornholio2108/Home_Server | 2074ac23d91f8a7ad34fd98b3a4a7cd49ddfd543 | 7008357aee8b4530e141b21c9e0d657b161a262c | refs/heads/main | 2023-01-14T10:24:17.826000 | 2020-11-14T22:06:10 | 2020-11-14T22:06:10 | 301,523,191 | 0 | 0 | null | false | 2020-11-12T18:56:43 | 2020-10-05T19:50:12 | 2020-11-11T21:12:19 | 2020-11-12T18:56:43 | 210 | 0 | 0 | 0 | HTML | false | false | package com.home_server.ui.info;
import java.io.Serializable;
import java.util.Date;
import javax.annotation.PostConstruct;
import org.springframework.context.annotation.Scope;
import org.springframework.dao.DataAccessResourceFailureException;
import org.springframework.stereotype.Component;
import com.home_server.... | UTF-8 | Java | 678 | java | CalendarController.java | Java | [] | null | [] | package com.home_server.ui.info;
import java.io.Serializable;
import java.util.Date;
import javax.annotation.PostConstruct;
import org.springframework.context.annotation.Scope;
import org.springframework.dao.DataAccessResourceFailureException;
import org.springframework.stereotype.Component;
import com.home_server.... | 678 | 0.789086 | 0.789086 | 31 | 20.870968 | 19.918774 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.83871 | false | false | 15 |
3a43a290a35f54ff23c32777065fe03760ab90f9 | 36,636,071,051,007 | ca3a0ae74e9bc223d3fd3399187a86abbdc5118e | /FirstClass.java | 92a1c4cfa0fc55fa84b56f118917fa3894b2dd98 | [] | no_license | lohoward/TicketPricingApp | https://github.com/lohoward/TicketPricingApp | ae01d78e4e2c5dc80b3e9f10fdd7e3f07b13747b | c16e0507a7cf66d3651a1fa92519bc3708a81070 | refs/heads/main | 2023-05-14T16:00:28.451000 | 2021-05-31T14:44:51 | 2021-05-31T14:44:51 | 372,531,490 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Ryanair_Flight_app;
/**
* Ryanair Ticket App
* FirstClass.java
* @author Louise Howard
*/
//Our instaniable class for creating tickets for First Class tickets
//this is a child class inherting from Ticket.java
public class FirstClass extends Ticket{
public FirstClass(){
super();
}
... | UTF-8 | Java | 475 | java | FirstClass.java | Java | [
{
"context": "* Ryanair Ticket App\n * FirstClass.java\n * @author Louise Howard\n */\n\n\n//Our instaniable class for creating ticket",
"end": 98,
"score": 0.9997660517692566,
"start": 85,
"tag": "NAME",
"value": "Louise Howard"
}
] | null | [] | package Ryanair_Flight_app;
/**
* Ryanair Ticket App
* FirstClass.java
* @author <NAME>
*/
//Our instaniable class for creating tickets for First Class tickets
//this is a child class inherting from Ticket.java
public class FirstClass extends Ticket{
public FirstClass(){
super();
}
pub... | 468 | 0.627368 | 0.621053 | 28 | 15.821428 | 17.129869 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.142857 | false | false | 15 |
de996d0cc8e4c283f6560bd4c6e141afa894f6f9 | 12,249,246,787,124 | 96ece131640ece3051e2d516bc79fdf4c30ed68f | /src/net/diedai/aizu/addhousefragments/AddHouseFragmentStepThree.java | f4b4235b637c16f51ac5fbe976dd25d4f2794795 | [] | no_license | csvips/AiZu | https://github.com/csvips/AiZu | e0ca71c945a02253e95a168a63d66c8e1070fe82 | c7fad8eb5875fbabc2ab105a0bf7805a00a93697 | refs/heads/master | 2015-08-18T23:43:02.600000 | 2015-03-10T13:51:08 | 2015-03-10T13:51:08 | 28,906,269 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.diedai.aizu.addhousefragments;
import android.os.Bundle;
import android.os.Handler;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.amap.api.maps2d.MapView;
import net.diedai.aizu.R;
/**
* Created ... | UTF-8 | Java | 869 | java | AddHouseFragmentStepThree.java | Java | [
{
"context": ";\r\nimport net.diedai.aizu.R;\r\n\r\n/**\r\n * Created by Administrator on 2015/2/6.\r\n */\r\npublic class AddHouseFragmentS",
"end": 336,
"score": 0.9658955931663513,
"start": 323,
"tag": "USERNAME",
"value": "Administrator"
}
] | null | [] | package net.diedai.aizu.addhousefragments;
import android.os.Bundle;
import android.os.Handler;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.amap.api.maps2d.MapView;
import net.diedai.aizu.R;
/**
* Created ... | 869 | 0.705409 | 0.695052 | 33 | 24.333334 | 24.405249 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.575758 | false | false | 15 |
fe69ca3e9cd9fddd41513d8f90a1baf40fc0031d | 38,774,964,752,285 | a4f565fd7599c48c24fe2b43898fe8b9a9fca9bf | /Retail/src/com/dfire/retail/app/manage/activity/goodsmanager/GoodsSortDetailActivity.java | 8f08294b20bc110c39734b50209229d5ed6e94df | [] | no_license | albuscrow/dfireretail | https://github.com/albuscrow/dfireretail | b5a32cbe407ee514cd3f7c424d590d5230e3d648 | ffa232a9826e123d7dc03e7a353c8c2410c88226 | refs/heads/master | 2021-01-01T06:33:22.174000 | 2014-12-16T05:22:33 | 2014-12-16T05:22:33 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dfire.retail.app.manage.activity.goodsmanager;
import java.util.ArrayList;
import java.util.List;
import org.json.JSONException;
import org.json.JSONObject;
import com.dfire.retail.app.common.retail.view.AlertDialog;
import com.dfire.retail.app.manage.R;
import com.dfire.retail.app.manage.activity.goods... | UTF-8 | Java | 12,894 | java | GoodsSortDetailActivity.java | Java | [
{
"context": " The Class GoodsSortDetailActivity.\n * \n * @author albuscrow\n */\npublic class GoodsSortDetailActivity extends ",
"end": 1108,
"score": 0.9992634057998657,
"start": 1099,
"tag": "USERNAME",
"value": "albuscrow"
}
] | null | [] | package com.dfire.retail.app.manage.activity.goodsmanager;
import java.util.ArrayList;
import java.util.List;
import org.json.JSONException;
import org.json.JSONObject;
import com.dfire.retail.app.common.retail.view.AlertDialog;
import com.dfire.retail.app.manage.R;
import com.dfire.retail.app.manage.activity.goods... | 12,894 | 0.702919 | 0.701754 | 423 | 29.453901 | 27.400749 | 131 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.900709 | false | false | 15 |
183c307b265a73c7001be88d159b95c1c88162b9 | 20,590,073,286,899 | 0dbb56a0fa019e0d61e17795c62ff160566da995 | /src/com/company/Management.java | 164a65d378644bd8d23e4deaa768fd428b280038 | [] | no_license | karlcridland/LibaryManagement_Java | https://github.com/karlcridland/LibaryManagement_Java | 337924ff10fb214f49ada54aa556fb56368cc34a | 1d25a55d8b154852ed18d05ab374b2a138a6ce11 | refs/heads/master | 2023-04-19T15:23:01.185000 | 2021-05-14T08:03:04 | 2021-05-14T08:03:04 | 366,989,359 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.company;
import javax.swing.*;
import java.awt.*;
public class Management {
public static Management shared = new Management();
private JFrame frame = new JFrame("Library Manager");
private Management(){
frame.setSize(800,500);
frame.setLayout(null);
Dimension screenS... | UTF-8 | Java | 919 | java | Management.java | Java | [] | null | [] | package com.company;
import javax.swing.*;
import java.awt.*;
public class Management {
public static Management shared = new Management();
private JFrame frame = new JFrame("Library Manager");
private Management(){
frame.setSize(800,500);
frame.setLayout(null);
Dimension screenS... | 919 | 0.633297 | 0.618063 | 43 | 20.372093 | 23.692823 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.348837 | false | false | 15 |
f0b9d1bb2f1302110daf4ffb56f85cc50bae4e15 | 20,280,835,626,345 | 25060fcafba668f6a44eed0aee560b0b17400f5b | /base/src/main/java/agent/base/utils/Logger.java | 19f064947f0b1867327505a59d632db6687b4056 | [] | no_license | helowken/javaagent | https://github.com/helowken/javaagent | 88ae45a334df70800ddf63c432ebe1a814b718af | 5a90b0d9c3eac0fd6ae1b50d8cfed6411ac1b2dc | refs/heads/master | 2022-12-24T07:50:31.140000 | 2022-07-09T17:53:48 | 2022-07-09T17:53:48 | 195,006,306 | 1 | 0 | null | false | 2022-11-16T12:30:26 | 2019-07-03T07:54:35 | 2022-06-24T16:35:02 | 2022-11-16T12:30:23 | 2,255 | 1 | 0 | 4 | Java | false | false | package agent.base.utils;
public class Logger {
private static volatile LoggerIntf systemLogger;
private final LoggerIntf classLogger;
private Logger(Class<?> clazz) {
classLogger = new LoggerImpl(clazz);
}
public void info(String pattern, Object... pvs) {
getImpl().info(pattern, ... | UTF-8 | Java | 1,250 | java | Logger.java | Java | [] | null | [] | package agent.base.utils;
public class Logger {
private static volatile LoggerIntf systemLogger;
private final LoggerIntf classLogger;
private Logger(Class<?> clazz) {
classLogger = new LoggerImpl(clazz);
}
public void info(String pattern, Object... pvs) {
getImpl().info(pattern, ... | 1,250 | 0.6288 | 0.6288 | 50 | 24 | 22.605309 | 67 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.56 | false | false | 15 |
69bd1ec706f0cdbcaf88dbe8dc93bdaa9d0bf9ef | 34,119,220,238,363 | 10186b7d128e5e61f6baf491e0947db76b0dadbc | /org/apache/http/conn/MultihomePlainSocketFactory.java | 42ae8340f17c8cd7b3b840630ed816fa4cc8687a | [
"SMLNJ",
"Apache-1.1",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | MewX/contendo-viewer-v1.6.3 | https://github.com/MewX/contendo-viewer-v1.6.3 | 7aa1021e8290378315a480ede6640fd1ef5fdfd7 | 69fba3cea4f9a43e48f43148774cfa61b388e7de | refs/heads/main | 2022-07-30T04:51:40.637000 | 2021-03-28T05:06:26 | 2021-03-28T05:06:26 | 351,630,911 | 2 | 0 | Apache-2.0 | false | 2021-10-12T22:24:53 | 2021-03-26T01:53:24 | 2021-07-16T10:43:25 | 2021-10-12T22:22:35 | 44,956 | 1 | 0 | 4 | Java | false | false | /* */ package org.apache.http.conn;
/* */
/* */ import java.io.IOException;
/* */ import java.net.InetAddress;
/* */ import java.net.InetSocketAddress;
/* */ import java.net.Socket;
/* */ import java.net.SocketTimeoutException;
/* */ import java.util.ArrayList;
/* */ import java.uti... | UTF-8 | Java | 4,567 | java | MultihomePlainSocketFactory.java | Java | [] | null | [] | /* */ package org.apache.http.conn;
/* */
/* */ import java.io.IOException;
/* */ import java.net.InetAddress;
/* */ import java.net.InetSocketAddress;
/* */ import java.net.Socket;
/* */ import java.net.SocketTimeoutException;
/* */ import java.util.ArrayList;
/* */ import java.uti... | 4,567 | 0.438581 | 0.417342 | 181 | 24.23757 | 24.52812 | 158 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.309392 | false | false | 15 |
cce3f3ce0422242414a6c82e21643773e63befdf | 18,013,092,891,970 | bd725dc803f1b9eeb79893440d0f4a48c22783da | /src/main/java/Mapper/MergeGoodsWarehouse.java | a31bed0759ff2779ff70f9bd393540c9c4c80a22 | [] | no_license | ingRun/ingRun02 | https://github.com/ingRun/ingRun02 | 5762721258ab02eaba49ee8c223049b26b203fa7 | 6179f8de01c9e3f2586f6ee63f4b6e6ed40a077c | refs/heads/master | 2021-12-14T14:24:05.367000 | 2020-12-08T08:02:57 | 2020-12-08T08:02:57 | 172,617,104 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Mapper;
import Po.Record;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface MergeGoodsWarehouse {
public int addRecord(Record record);
public Record findRecordById(int id);
public Record findRecordByGoodsIdAndWarehouseId(@Param("goods_id")int goods_id, @Param("w... | UTF-8 | Java | 672 | java | MergeGoodsWarehouse.java | Java | [] | null | [] | package Mapper;
import Po.Record;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface MergeGoodsWarehouse {
public int addRecord(Record record);
public Record findRecordById(int id);
public Record findRecordByGoodsIdAndWarehouseId(@Param("goods_id")int goods_id, @Param("w... | 672 | 0.747557 | 0.747557 | 22 | 26.90909 | 27.947855 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.590909 | false | false | 15 |
3f8c26eea580cc4926fe672f691674218b3a3132 | 36,335,423,353,192 | 05bef7fd30aca3e6e5f3e6ab48815179dc8d00c3 | /src/main/java/com/hacra/cjtk/commons/base/BaseController.java | 5db6807f2a795e46e8f763f089ce89b7b5a7f768 | [] | no_license | ihacra/CJTK | https://github.com/ihacra/CJTK | 894350a5c9c35c5c6187a9a7a6a71125fcd2b7e1 | 116e6a96ebeef00ac59bd1833ae5115a3bcc429b | refs/heads/master | 2023-02-13T04:58:49.904000 | 2021-01-17T13:46:04 | 2021-01-17T13:46:04 | 311,588,741 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hacra.cjtk.commons.base;
import org.springframework.ui.Model;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
/**
* BaseController
*
* @author Hacra
* @version 2020/11/16
*/
public class BaseController {
/**
* 添加Model消息
* @param message
*/
protected ... | UTF-8 | Java | 1,030 | java | BaseController.java | Java | [
{
"context": "ibutes;\r\n\r\n/**\r\n * BaseController\r\n * \r\n * @author Hacra\r\n * @version 2020/11/16\r\n */\r\npublic class BaseCo",
"end": 197,
"score": 0.9911854267120361,
"start": 192,
"tag": "USERNAME",
"value": "Hacra"
}
] | null | [] | package com.hacra.cjtk.commons.base;
import org.springframework.ui.Model;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
/**
* BaseController
*
* @author Hacra
* @version 2020/11/16
*/
public class BaseController {
/**
* 添加Model消息
* @param message
*/
protected ... | 1,030 | 0.675351 | 0.667335 | 47 | 19.234043 | 23.546434 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.170213 | false | false | 15 |
2addaa4f36412fc2d8a153ebbf60b5215cc855a9 | 36,352,603,215,871 | 28f1743299008f90f2c0ec622c295a9299fb983e | /DBManager.java | d48cc970f7b5e6359c36a67fba4498a26526d494 | [] | no_license | Kioryu/ENSF-409-Final-Project | https://github.com/Kioryu/ENSF-409-Final-Project | a9b7c468cda4b4a6c09b6a05930afa6dfebdba82 | c95ddcd548e04f90b0a317a5d9859fa5b402444f | refs/heads/main | 2023-07-09T19:34:28.803000 | 2021-08-09T12:17:37 | 2021-08-09T12:17:37 | 392,822,300 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Server;
import java.io.RandomAccessFile;
import java.io.*;
import java.util.ArrayList;
/**
* This class is simulating a database for our program.
* @author Maan Khedr
* @version 1.0
* @since August 3, 2021
*/
public class DBManager {
/**
* The arraylist containing all the course listings
*/
privat... | UTF-8 | Java | 4,495 | java | DBManager.java | Java | [
{
"context": " simulating a database for our program.\n\t* @author Maan Khedr\n\t* @version 1.0\n\t* @since August 3, 2021\n\t*/\npubl",
"end": 178,
"score": 0.9998921155929565,
"start": 168,
"tag": "NAME",
"value": "Maan Khedr"
}
] | null | [] | package Server;
import java.io.RandomAccessFile;
import java.io.*;
import java.util.ArrayList;
/**
* This class is simulating a database for our program.
* @author <NAME>
* @version 1.0
* @since August 3, 2021
*/
public class DBManager {
/**
* The arraylist containing all the course listings
*/
private Ar... | 4,491 | 0.598665 | 0.58465 | 180 | 23.972221 | 18.705742 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.833333 | false | false | 15 |
05003c9babce31c72a9eef3924315288348837ba | 36,086,315,244,902 | 0ca368bfaa78afab5f20b9a6b20ea6d33fdd7a0c | /src/main/java/de/mpc/pia/modeller/report/filter/FilterType.java | 9a6d8d32afef87a763fd87ef1d9a701db9a5cd38 | [
"BSD-3-Clause"
] | permissive | sureshhewabi/pia | https://github.com/sureshhewabi/pia | 21bc2047a2096a1efd8d17f0ceea091664e1019d | bd622297dd6df7fe394a5cb3f9485b0fc63cd060 | refs/heads/master | 2023-07-16T20:44:32.570000 | 2021-09-03T08:51:24 | 2021-09-03T08:51:24 | 289,222,317 | 0 | 0 | NOASSERTION | true | 2021-07-21T10:12:59 | 2020-08-21T08:47:13 | 2021-04-15T11:09:13 | 2021-07-21T10:12:59 | 50,828 | 0 | 0 | 0 | Java | false | false | package de.mpc.pia.modeller.report.filter;
import java.util.ArrayList;
import java.util.List;
public enum FilterType {
/**
* the boolean filter type compares only booleans
*/
bool {
@Override
public List<FilterComparator> getAvailableComparators() {
List<FilterComparator>... | UTF-8 | Java | 2,820 | java | FilterType.java | Java | [] | null | [] | package de.mpc.pia.modeller.report.filter;
import java.util.ArrayList;
import java.util.List;
public enum FilterType {
/**
* the boolean filter type compares only booleans
*/
bool {
@Override
public List<FilterComparator> getAvailableComparators() {
List<FilterComparator>... | 2,820 | 0.615248 | 0.615248 | 99 | 27.484848 | 25.352211 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.383838 | false | false | 15 |
251a8d4436a09caafd8a122dca3bd6f5ed325217 | 8,650,064,153,467 | 0a07dc85f66c772f7961f5f0306eddd93577987d | /src/main/java/com/example/demo/LoggilgProjectLnfoInExternalFileApplication.java | 88b5b302ffaed56067a232aac9b33c46b25aba91 | [] | no_license | conroy1234/loggilg-project-lnfo-in-external-file | https://github.com/conroy1234/loggilg-project-lnfo-in-external-file | d2f46bee3d23436e5bcff767552e3af3e6a236f5 | 804c6a1ab4d4d29cb5524304b2282fefd909015f | refs/heads/master | 2022-06-20T22:17:23.710000 | 2020-05-07T16:55:14 | 2020-05-07T16:55:14 | 262,107,860 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.demo;
import java.util.Arrays;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframe... | UTF-8 | Java | 1,895 | java | LoggilgProjectLnfoInExternalFileApplication.java | Java | [
{
"context": "<Person> persons = Arrays.asList(\n\t\t\t\tnew Person(\"conroy\", \" white\", \"32 marstan avenue\", \"conroyaw@gmail.",
"end": 1011,
"score": 0.9997663497924805,
"start": 1005,
"tag": "NAME",
"value": "conroy"
},
{
"context": " Person(\"conroy\", \" white\", \"32 marst... | null | [] | package com.example.demo;
import java.util.Arrays;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframe... | 1,794 | 0.74248 | 0.685488 | 50 | 36.900002 | 33.169415 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.54 | false | false | 15 |
e77986007d0683596ef2ddec9ecdd11e75bd8853 | 18,176,301,619,874 | 23be2fd352cedea1d1bc5e6f2b72d0878d37e69b | /kudos/src/main/java/layout/tab/main/GiveKudosTab.java | 13ad1a4aff934e9185949349fd85e3ceabc4971c | [] | no_license | open-kudos/open-kudos-android | https://github.com/open-kudos/open-kudos-android | 6d215439d26721c265e1367f9e4f723d4da6234a | 8b7662663eb3d11b31fec539e9e3b440110adec2 | refs/heads/master | 2016-09-05T13:02:48.224000 | 2015-09-24T18:53:19 | 2015-09-24T18:53:19 | 42,861,819 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package layout.tab.main;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import open.kudos.R;
import org.jetbrains.annotations.Nullable;
/**
* Created by chc on 15.8.21.
*/
public class GiveKudosTab exten... | UTF-8 | Java | 575 | java | GiveKudosTab.java | Java | [
{
"context": "jetbrains.annotations.Nullable;\n\n/**\n * Created by chc on 15.8.21.\n */\npublic class GiveKudosTab extend",
"end": 271,
"score": 0.9995943307876587,
"start": 268,
"tag": "USERNAME",
"value": "chc"
}
] | null | [] | package layout.tab.main;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import open.kudos.R;
import org.jetbrains.annotations.Nullable;
/**
* Created by chc on 15.8.21.
*/
public class GiveKudosTab exten... | 575 | 0.753043 | 0.742609 | 21 | 26.380953 | 28.571508 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 15 |
719e34d9e76cbebe9134b6f503cbd43c202ff514 | 11,390,253,294,753 | dcc1f5d8a50cbe08c55e7d01acab7ba4fc23d934 | /Polimorfismo/src/br/edu/l3q4/reinoanimal/Main.java | a2f904d5d7648a69379d29aecf776cdc66acf983 | [] | no_license | lfnd0/luiz_fernando2 | https://github.com/lfnd0/luiz_fernando2 | 2fe407a12f133b09a770aa9f6e29c3ade5e21437 | ce91b6932f76394273c89365672a7dbbe93b565e | refs/heads/master | 2020-04-04T21:03:27.855000 | 2020-04-01T21:54:31 | 2020-04-01T21:54:31 | 156,271,556 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.edu.l3q4.reinoanimal;
public class Main {
public static void main(String[] args) {
Macaco macaco = new Macaco("Shell", "gorila");
System.out.println(macaco.getDescricao());
macaco.getDescricao();
macaco.locomover();
macaco.alimentar();
Cachorro cachorro = new Cachorro("Leo", "pastor-ale... | UTF-8 | Java | 792 | java | Main.java | Java | [] | null | [] | package br.edu.l3q4.reinoanimal;
public class Main {
public static void main(String[] args) {
Macaco macaco = new Macaco("Shell", "gorila");
System.out.println(macaco.getDescricao());
macaco.getDescricao();
macaco.locomover();
macaco.alimentar();
Cachorro cachorro = new Cachorro("Leo", "pastor-ale... | 792 | 0.695707 | 0.693182 | 31 | 24.580645 | 17.497971 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.451613 | false | false | 15 |
8a39d350328d32d2f913ddb53a6077ba983d03a4 | 28,656,021,829,830 | 356b6a422755a7f7b7003ef114f891d8a598148b | /gantryCranes_quanZhou/src/main/java/net/pingfang/controller/vessel/PlateController.java | 8687e068f7ec0ddf2ea5bbff254dd9df611b456b | [] | no_license | JackietLee/allproject | https://github.com/JackietLee/allproject | 886be6e5bd7d08ddeb2ef093fa4b64adc080ef48 | 743d96cdca50f5da19ddbe8ea035b18c3699091e | refs/heads/main | 2023-06-24T17:35:10.292000 | 2021-07-20T11:25:28 | 2021-07-20T11:25:28 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.pingfang.controller.vessel;
import java.util.concurrent.ExecutorService;
import javax.annotation.Resource;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.json.JSONObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.A... | UTF-8 | Java | 3,138 | java | PlateController.java | Java | [
{
"context": "tils.ResultUtil;\n\n/**\n * 车牌信息Controller\n * @author Administrator\n * @since 2020-09-23\n *\n */\n@Api(\"Plate Api\")\n@Re",
"end": 838,
"score": 0.9762657284736633,
"start": 825,
"tag": "NAME",
"value": "Administrator"
}
] | null | [] | package net.pingfang.controller.vessel;
import java.util.concurrent.ExecutorService;
import javax.annotation.Resource;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.json.JSONObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.A... | 3,138 | 0.719713 | 0.715264 | 96 | 29.4375 | 24.644899 | 130 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.9375 | false | false | 15 |
7683c4bca5b178b08db857e4850534400edf85db | 14,723,147,916,620 | ffa96943ab7085a118c29fe9b29f677ffa693ff0 | /FizzBuzz/src/FizzBuzz.java | 58b960dfa22df6965f9c2fbabe3edbc7859cfe32 | [] | no_license | TuanVu321/md2-ngay9-FizzBuzz | https://github.com/TuanVu321/md2-ngay9-FizzBuzz | af24668af834f2cbdf5b990815d58b620c886cf4 | 7fd4684bab571be09636eaf714195956796fc486 | refs/heads/master | 2021-05-19T05:16:51.865000 | 2020-03-31T08:32:59 | 2020-03-31T08:32:59 | 251,543,885 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class FizzBuzz {
public static final String FIZZ = "Fizz";
public static final String BUZZ = "Buzz";
public static final String FIZZ_BUZZ = "FizzBuzz";
public static String callNumber(int number){
if(number<10){
return callNumberUnder10(number);
}
e... | UTF-8 | Java | 1,561 | java | FizzBuzz.java | Java | [] | null | [] | public class FizzBuzz {
public static final String FIZZ = "Fizz";
public static final String BUZZ = "Buzz";
public static final String FIZZ_BUZZ = "FizzBuzz";
public static String callNumber(int number){
if(number<10){
return callNumberUnder10(number);
}
e... | 1,561 | 0.41704 | 0.399744 | 61 | 23.590164 | 16.251484 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.377049 | false | false | 15 |
863baafda1b9dce384ce694b525a59810faf4cc6 | 17,394,617,575,027 | 44b4a3225fa2ecb2710027a0096721264b9c1547 | /app/src/main/java/com/mycircleprogress/CirclePercentView.java | 1212dfb4c49948efd1d88b243639799c5eb2be7b | [] | no_license | SuchScar/MyCircleProgress | https://github.com/SuchScar/MyCircleProgress | 60311aba0a4af138f628fa63f173b6d9050eec98 | dbdc56655b386420bcfc9302f8ef4a1ed3e78a0b | refs/heads/master | 2021-06-19T03:54:55.017000 | 2017-06-19T03:17:05 | 2017-06-19T03:17:05 | 94,728,408 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mycircleprogress;
import android.animation.ValueAnimator;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.RadialGradient;
import android.graphics.Rect;
import android... | UTF-8 | Java | 13,195 | java | CirclePercentView.java | Java | [
{
"context": "or;\n\n\n/**\n * 一个电量圆形百分比进度 View\n * <p>\n * Created by ZL on 2015/12/16.\n */\npublic class CirclePercentView",
"end": 576,
"score": 0.9970264434814453,
"start": 574,
"tag": "USERNAME",
"value": "ZL"
}
] | null | [] | package com.mycircleprogress;
import android.animation.ValueAnimator;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.RadialGradient;
import android.graphics.Rect;
import android... | 13,195 | 0.606104 | 0.559327 | 320 | 38.215626 | 32.953667 | 366 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.465625 | false | false | 15 |
e663fb0de0a529a7eb777640a7d5a8d069c5adbd | 9,139,690,433,739 | 79e875f3a073c9bb685fa0b0ac9fa6ec178bd055 | /src/main/java/com/example/demo/controller/CountryController.java | a72ab859c89f7b2623b822efc881c677b0110b86 | [] | no_license | abhisheksingh03/Pagination | https://github.com/abhisheksingh03/Pagination | 9c521068cd303c12396fe7f104e68c855f51e328 | 324bb94b88662c7ecaf5bb91c86ce24f3b15d6a8 | refs/heads/master | 2020-04-03T01:30:42.726000 | 2018-10-27T06:22:19 | 2018-10-27T06:22:19 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.demo.controller;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Controller;
import org.spr... | UTF-8 | Java | 1,694 | java | CountryController.java | Java | [] | null | [] | package com.example.demo.controller;
import java.util.ArrayList;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Controller;
import org.spr... | 1,694 | 0.755608 | 0.753837 | 57 | 27.719297 | 22.92379 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.385965 | false | false | 15 |
ed981f726f80c117cee780203c4df5e3c2454270 | 24,524,263,292,608 | 5ee7ea8c6ebfaa344dc53481778a86b7628b7431 | /src/cn/hibernate/beans/MarkDAO.java | 0b557cc6a1cc0c0ea92b42eaf572fc45053440cf | [] | no_license | Kuangcp/StudentManager | https://github.com/Kuangcp/StudentManager | a8be4a53e7adcffd30d2bab84f148cce63177fd5 | 1e68ea8db00b1557d22579d4d561c04378f5dc02 | refs/heads/master | 2020-05-22T06:43:56.120000 | 2017-06-18T13:47:27 | 2017-06-18T13:47:27 | 65,140,718 | 6 | 3 | null | false | 2016-10-13T00:18:04 | 2016-08-07T15:37:15 | 2016-10-02T05:54:22 | 2016-10-13T00:18:04 | 8,042 | 3 | 2 | 0 | JavaScript | null | null | package cn.hibernate.beans;
import java.util.List;
import org.hibernate.LockMode;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.criterion.Example;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A data access object (DAO) providing persistence and search support for M... | UTF-8 | Java | 5,040 | java | MarkDAO.java | Java | [] | null | [] | package cn.hibernate.beans;
import java.util.List;
import org.hibernate.LockMode;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.criterion.Example;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* A data access object (DAO) providing persistence and search support for M... | 5,040 | 0.699008 | 0.698413 | 186 | 26.10215 | 20.525234 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.204301 | false | false | 15 |
fd084f34b01c5c973b40ffe7ca5e9bd1704bfe0c | 32,195,074,879,101 | b3165c7222283bf8340d6d54d4f2d76c9f87a3a8 | /utils2/src/main/java/ae/gov/sdg/paperless/platform/common/model/DubaiIDUserInfo.java | 8d1f9f0e0d15f157a59e410ee4799331155c4d9f | [] | no_license | farkalit76/cache-utils2 | https://github.com/farkalit76/cache-utils2 | 16034f71c1407c68a8d25428f2c41b7f1ba6b074 | 8854829d4194c966cb162fbf3e8dcbcfd15e5772 | refs/heads/master | 2022-12-01T08:34:10.039000 | 2020-08-19T05:02:34 | 2020-08-19T05:02:34 | 288,637,485 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ae.gov.sdg.paperless.platform.common.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* @author swetabh raj
*... | UTF-8 | Java | 14,074 | java | DubaiIDUserInfo.java | Java | [
{
"context": "n.annotation.JsonPropertyOrder;\r\n\r\n/**\r\n * @author swetabh raj\r\n *\r\n */\r\n@JsonInclude(JsonInclude.Include.NON_NU",
"end": 316,
"score": 0.9992788434028625,
"start": 305,
"tag": "NAME",
"value": "swetabh raj"
},
{
"context": "\n public String getUsername()... | null | [] | package ae.gov.sdg.paperless.platform.common.model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* @author <NAME>
*
*/... | 14,069 | 0.666193 | 0.666193 | 392 | 33.908165 | 26.901688 | 105 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.316327 | false | false | 15 |
521f0301f1536bb0429669eb2ba6af05291562e1 | 1,872,605,771,012 | 37a667bb16b2c398e425d576926506594c90ca7c | /src/main/java/io/bigbearbro/eos4j/crypto/util/Ripemd160.java | 69be6d6a7ed1ac5d9fda1baa872b2d5d5c3bc1a1 | [] | no_license | pengchaoling/eos-wool-getting | https://github.com/pengchaoling/eos-wool-getting | 09229293ad50b40be86f8efcbb24281fc377dfdd | 1f8d1e88cedcd644352ca13096c2b66569972911 | refs/heads/master | 2020-04-10T08:48:56.106000 | 2018-12-10T04:34:53 | 2018-12-10T04:34:53 | 160,915,798 | 6 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package io.bigbearbro.eos4j.crypto.util;
import org.bouncycastle.crypto.digests.RIPEMD160Digest;
/**
*
* @author wuwei
*
*/
public class Ripemd160 {
public static byte[] digest(byte[] data) {
return Ripemd160.digest(data, 0, (data != null) ? data.length : 0);
}
public static byte[] digest(byte[] data, int... | UTF-8 | Java | 545 | java | Ripemd160.java | Java | [
{
"context": "rypto.digests.RIPEMD160Digest;\n\n/**\n * \n * @author wuwei\n *\n */\npublic class Ripemd160 {\n\n\tpublic static b",
"end": 123,
"score": 0.999369204044342,
"start": 118,
"tag": "USERNAME",
"value": "wuwei"
}
] | null | [] | package io.bigbearbro.eos4j.crypto.util;
import org.bouncycastle.crypto.digests.RIPEMD160Digest;
/**
*
* @author wuwei
*
*/
public class Ripemd160 {
public static byte[] digest(byte[] data) {
return Ripemd160.digest(data, 0, (data != null) ? data.length : 0);
}
public static byte[] digest(byte[] data, int... | 545 | 0.700917 | 0.666055 | 23 | 22.695652 | 24.078558 | 72 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.347826 | false | false | 15 |
8ca9013efdbd59857df96d38df55af8414cbe19b | 25,580,825,245,706 | 10e89c7e6e95f2a60104cff9217a85fbd9ae9afb | /src/com/company/Main.java | 678b12069a6e8e5f5bd7c3b6491016d0c755c349 | [] | no_license | BornaKalhor/Library-System | https://github.com/BornaKalhor/Library-System | 61f54871f9297f781a821ec2600bef70b4a7fc9a | 222f69801b655f854f56f1f4c01da443f898263d | refs/heads/master | 2023-08-14T19:59:57.969000 | 2021-09-10T15:49:34 | 2021-09-10T15:49:34 | 405,130,910 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.company;
import java.io.*;
import member.Memmber;
import source.Source;
//import java.lang.reflect.Member;
//todo hamun:
//final tarif kardane khasise code too source va member
//dorost kardane name too constructore book
//getter setter ha hame dorsot shavan hameeeee
//id
//kelase enum hatmannn dorst sha... | UTF-8 | Java | 1,298 | java | Main.java | Java | [
{
"context": "AME PASSWORD)\n//OON JADVALE DOROST BESHEEEEEE -\n//JODA KARDANE KELASE ENUM VASE MEMBER\n//KOLAN KELASE JODA VASE ",
"end": 421,
"score": 0.970379650592804,
"start": 409,
"tag": "NAME",
"value": "JODA KARDANE"
},
{
"context": "EEEEEE -\n//JODA KARDANE KELASE ENUM VASE ... | null | [] | package com.company;
import java.io.*;
import member.Memmber;
import source.Source;
//import java.lang.reflect.Member;
//todo hamun:
//final tarif kardane khasise code too source va member
//dorost kardane name too constructore book
//getter setter ha hame dorsot shavan hameeeee
//id
//kelase enum hatmannn dorst sha... | 1,286 | 0.719569 | 0.715716 | 50 | 24.959999 | 21.866833 | 89 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.26 | false | false | 15 |
0808d91bd4fd76b6a76229dfad13134f57c759d2 | 27,934,467,316,968 | c9a729de410926e52c0cce3da343b7a536c0b1c0 | /Sarscov/SarcovPeVSimples.java | dc4cd0ee1d21fd4e3becfccc8cb9fdbcb9d39f51 | [] | no_license | ryanmigulfakerwolf/ExercicioA-B | https://github.com/ryanmigulfakerwolf/ExercicioA-B | 5effbb132df71204c36d703198606d51948cbce5 | 0b7c00725eec4559aee3459cc7f8481986e433cb | refs/heads/main | 2023-03-07T22:36:08.031000 | 2021-02-16T17:07:12 | 2021-02-16T17:07:12 | 339,470,052 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package atividades;
public class SarcovPeVSimples {
public static void main(String[] Args){
int c1 = 1500, c2 = 1350, c3 = 1680, c4 = 950, c5 = 870;
int total;
int media;
int maior=0;
int ind =0;
total = c1+c2+c3+c4+c5;
... | UTF-8 | Java | 1,287 | java | SarcovPeVSimples.java | Java | [] | null | [] |
package atividades;
public class SarcovPeVSimples {
public static void main(String[] Args){
int c1 = 1500, c2 = 1350, c3 = 1680, c4 = 950, c5 = 870;
int total;
int media;
int maior=0;
int ind =0;
total = c1+c2+c3+c4+c5;
... | 1,287 | 0.444271 | 0.381138 | 45 | 26.466667 | 24.360806 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.577778 | false | false | 15 |
7f3bff188c23d3b24aa87c653acd61cdb31943a8 | 33,002,528,709,482 | d63961093edca3e89ca1fc4e528a751e570af4ce | /src/main/java/com/perscholas/health/services/ContactService.java | 6cc6e2d240955a9097e128eb2de4d7fa79ba369f | [] | no_license | tomjimseng/HealthAdministration | https://github.com/tomjimseng/HealthAdministration | 26f3c0b1879f2a365a3b89cd268540b1b42d8cdd | dc5cbaccdf821a12551f7e4e02e27bd0684f06fc | refs/heads/main | 2023-07-18T01:04:53.549000 | 2021-08-30T13:21:32 | 2021-08-30T13:21:32 | 401,334,522 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.perscholas.health.services;
import java.util.List;
import com.perscholas.health.models.Contact;
/**
* Service interface for Contact to provide application functionality.
*/
public interface ContactService {
/**
* abstract method to create a new Contact object to be added to the databa... | UTF-8 | Java | 653 | java | ContactService.java | Java | [] | null | [] | package com.perscholas.health.services;
import java.util.List;
import com.perscholas.health.models.Contact;
/**
* Service interface for Contact to provide application functionality.
*/
public interface ContactService {
/**
* abstract method to create a new Contact object to be added to the databa... | 653 | 0.696784 | 0.696784 | 31 | 19.064516 | 25.588474 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.774194 | false | false | 15 |
1c9ab78927221f9b58b63f663adf5d535fe1f3a4 | 9,320,079,061,876 | 0a926cabca78cdc7b4723674b3b00ea6be5506d3 | /app/src/main/java/com/example/calculatwo/MainActivity.java | 9f473904e2ea2351eb1b0cecece2c0456ae3304d | [] | no_license | Ergoold/android-calculator | https://github.com/Ergoold/android-calculator | e417e6f883bb57fb5c03a6d5367f3ad6866a8aa2 | 8659884ba09abe1bb3194a9220af18dc4cf3d839 | refs/heads/master | 2020-12-10T08:43:28.826000 | 2020-01-13T08:37:35 | 2020-01-13T08:37:35 | 233,548,389 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.calculatwo;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
Button butt;
Button rad;
@Override
protected void on... | UTF-8 | Java | 1,085 | java | MainActivity.java | Java | [] | null | [] | package com.example.calculatwo;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class MainActivity extends AppCompatActivity {
Button butt;
Button rad;
@Override
protected void on... | 1,085 | 0.632258 | 0.632258 | 38 | 27.552631 | 22.777756 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.526316 | false | false | 15 |
91cc3594d0ee1720fd181bda5df18a5ad31c4e41 | 20,349,555,056,458 | 6144dd92eb28b907f847aa5af19e77a37625d2c2 | /group38-compiler/src/AST.java | f38dc262094b97efd8d41cddaa6341a3c9c55d00 | [] | no_license | Abode113/SqlCompiler | https://github.com/Abode113/SqlCompiler | ee5e0e170fef8c79216e6aced7ba6c65a88cd56b | 078ae8e713718137741197098204353d8ca064ea | refs/heads/master | 2020-05-14T20:26:42.402000 | 2019-05-31T00:51:42 | 2019-05-31T00:51:42 | 181,944,370 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import org.antlr.v4.runtime.ANTLRInputStream;
import org.antlr.v4.runtime.CommonTokenStream;
import org.antlr.v4.runtime.ParserRuleContext;
import org.antlr.v4.runtime.RuleContext;
import org.antlr.v4.runtime.tree.ParseTree;
import java.io.File;
import java.io.IOException;
import java.nio.charset.Charset;
import java.... | UTF-8 | Java | 2,499 | java | AST.java | Java | [] | null | [] | import org.antlr.v4.runtime.ANTLRInputStream;
import org.antlr.v4.runtime.CommonTokenStream;
import org.antlr.v4.runtime.ParserRuleContext;
import org.antlr.v4.runtime.RuleContext;
import org.antlr.v4.runtime.tree.ParseTree;
import java.io.File;
import java.io.IOException;
import java.nio.charset.Charset;
import java.... | 2,499 | 0.655862 | 0.65066 | 70 | 34.700001 | 26.816492 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.685714 | false | false | 15 |
f25a8c512c3e2c658086c68d53777f61dedee957 | 20,718,922,275,222 | 7feea33917f1c57baab5de63e3053cd9f117d2bf | /ad-gateway/src/main/java/cn/edu/cqupt/pikachu/ad/ZuulGateWayApplication.java | 8692ef206244f8f9e74a4c44fed5a5d3c16e08b5 | [] | no_license | GeniusDSY/pikachu | https://github.com/GeniusDSY/pikachu | 1f76d16d278d36b1163e244ffcec6adc55aaff66 | 1b9d7fbdc2a82a0d179dac73eaca01869e02ea78 | refs/heads/master | 2023-06-09T14:42:31.417000 | 2021-07-05T07:03:48 | 2021-07-05T07:03:48 | 298,996,650 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.edu.cqupt.pikachu.ad;
import org.springframework.boot.SpringApplication;
import org.springframework.cloud.client.SpringCloudApplication;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
/**
* @author :DengSiYuan
* @date :2021/1/7 20:30
* @desc : zuul 网关启动类
*/
@EnableZuulProxy
@SpringCloud... | UTF-8 | Java | 502 | java | ZuulGateWayApplication.java | Java | [
{
"context": "ud.netflix.zuul.EnableZuulProxy;\n\n/**\n * @author :DengSiYuan\n * @date :2021/1/7 20:30\n * @desc : zuul 网关启动类\n *",
"end": 239,
"score": 0.9998701214790344,
"start": 229,
"tag": "NAME",
"value": "DengSiYuan"
}
] | null | [] | package cn.edu.cqupt.pikachu.ad;
import org.springframework.boot.SpringApplication;
import org.springframework.cloud.client.SpringCloudApplication;
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
/**
* @author :DengSiYuan
* @date :2021/1/7 20:30
* @desc : zuul 网关启动类
*/
@EnableZuulProxy
@SpringCloud... | 502 | 0.76626 | 0.745935 | 20 | 23.6 | 22.570778 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.3 | false | false | 15 |
0aeca7b05fa931018c8b56a224af74d3b1756b70 | 21,638,045,259,241 | 9057d2f592b15af63f6d50b4bdf0182033f22099 | /five week/findid/src/main/java/com/example/findid/Mapper/UserMap.java | a6982bf958db593e31cdf60de4e41e58c6396a03 | [] | no_license | wonder-996/java-work | https://github.com/wonder-996/java-work | 2af177ce2d301e94749f7a576de177127a40c351 | eb82f77bf2c2d311a38864b17dc844a9799f2dd0 | refs/heads/main | 2023-07-26T10:44:03.897000 | 2021-08-31T11:52:46 | 2021-08-31T11:52:46 | 389,045,673 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.findid.Mapper;
import com.example.findid.user.User;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
@Repository
public interface UserMap {
@Select("select id from students where id = #{id}")
public User getUserid(int id);
}
| UTF-8 | Java | 310 | java | UserMap.java | Java | [] | null | [] | package com.example.findid.Mapper;
import com.example.findid.user.User;
import org.apache.ibatis.annotations.Select;
import org.springframework.stereotype.Repository;
@Repository
public interface UserMap {
@Select("select id from students where id = #{id}")
public User getUserid(int id);
}
| 310 | 0.748387 | 0.748387 | 12 | 23.833334 | 19.424355 | 51 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.416667 | false | false | 15 |
53ca7ec914872dd4b8216afc05013938bbc1d974 | 33,483,565,080,897 | ef0c1514e9af6de3ba4a20e0d01de7cc3a915188 | /sdk/batchai/azure-resourcemanager-batchai/src/main/java/com/azure/resourcemanager/batchai/implementation/ClusterImpl.java | 4b95aa723c3f4424806a4807d19bfd82c854ced1 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference",
"LGPL-2.1-or-later",
"CC0-1.0",
"BSD-3-Clause",
"UPL-1.0",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"LicenseRef-scancode-generic-cla"
] | permissive | Azure/azure-sdk-for-java | https://github.com/Azure/azure-sdk-for-java | 0902d584b42d3654b4ce65b1dad8409f18ddf4bc | 789bdc6c065dc44ce9b8b630e2f2e5896b2a7616 | refs/heads/main | 2023-09-04T09:36:35.821000 | 2023-09-02T01:53:56 | 2023-09-02T01:53:56 | 2,928,948 | 2,027 | 2,084 | MIT | false | 2023-09-14T21:37:15 | 2011-12-06T23:33:56 | 2023-09-14T17:19:10 | 2023-09-14T21:37:14 | 3,043,660 | 1,994 | 1,854 | 1,435 | Java | false | false | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.batchai.implementation;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.util.Context;
import com.azure.reso... | UTF-8 | Java | 8,776 | java | ClusterImpl.java | Java | [] | null | [] | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.batchai.implementation;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.util.Context;
import com.azure.reso... | 8,776 | 0.688469 | 0.688469 | 265 | 32.116982 | 28.897959 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.490566 | false | false | 15 |
1fe457f471cbb0d3d8b0480199535ad8f8b00c78 | 16,080,357,585,271 | db92639e9988423048f70355fa397dc85daddb25 | /RefereeV2/src/dma/Data/Panelcatalogue.java | f9e21466a635a82533d7adee3ad248fbb842bc74 | [] | no_license | janzendi/referee_2015 | https://github.com/janzendi/referee_2015 | cba39bfabbeaafdcf9e341892840af7c77a06d00 | 35c39762a6afbe3c61ca8c67d1876dc1cc8beb4b | refs/heads/master | 2018-10-12T12:29:24.203000 | 2015-03-31T19:20:35 | 2015-03-31T19:20:35 | 29,465,750 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package dma.Data;
import java.util.ArrayList;
import javax.swing.JPanel;
public class Panelcatalogue {
private ArrayList<JPanel> panelList;
public final static String Panel_Main_Registration = "Registration";
public final static String TesTPANEL = "TesTPANEL";
private String status_items[] = { Panel_Mai... | UTF-8 | Java | 655 | java | Panelcatalogue.java | Java | [] | null | [] | package dma.Data;
import java.util.ArrayList;
import javax.swing.JPanel;
public class Panelcatalogue {
private ArrayList<JPanel> panelList;
public final static String Panel_Main_Registration = "Registration";
public final static String TesTPANEL = "TesTPANEL";
private String status_items[] = { Panel_Mai... | 655 | 0.722137 | 0.719084 | 29 | 21.620689 | 21.573313 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.310345 | false | false | 15 |
f0d0ab3428ddb2140312b7365b2d1417e69bdbef | 13,761,075,271,307 | 4fb7285ee9afae03aa393c242cd84d3d7e1b2f90 | /dotify.api/src/org/daisy/dotify/api/formatter/PageAreaBuilder.java | 838102427120a378411eb8892fccb6ab3f42e63f | [] | no_license | hosain-fouad/dotify | https://github.com/hosain-fouad/dotify | b6fe933c2613262040932ec6eec05cc880e74538 | 70eb2f8471c61cd7c39f140579733994fba5af84 | refs/heads/master | 2021-01-21T13:36:56.487000 | 2015-03-04T13:56:39 | 2015-03-04T13:56:39 | 32,777,592 | 0 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.daisy.dotify.api.formatter;
//FIXME: rename to PageArea
/**
* Provides a page area builder.
* @author Joel Håkansson
*
*/
public interface PageAreaBuilder {
/**
* Gets a formatter core for the area before the page area.
* @return returns a formatter core
*/
public FormatterCore g... | UTF-8 | Java | 494 | java | PageAreaBuilder.java | Java | [
{
"context": "\n/**\r\n * Provides a page area builder.\r\n * @author Joel Håkansson\r\n *\r\n */\r\npublic interface PageAreaBuilder {\r\n\r\n\t",
"end": 136,
"score": 0.9998072981834412,
"start": 122,
"tag": "NAME",
"value": "Joel Håkansson"
}
] | null | [] | package org.daisy.dotify.api.formatter;
//FIXME: rename to PageArea
/**
* Provides a page area builder.
* @author <NAME>
*
*/
public interface PageAreaBuilder {
/**
* Gets a formatter core for the area before the page area.
* @return returns a formatter core
*/
public FormatterCore getBefore... | 485 | 0.675456 | 0.675456 | 22 | 20.40909 | 19.615993 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.636364 | false | false | 15 |
066a5f942a7adb73cf5b556d6710db1270678746 | 31,267,361,925,764 | 60696057c920e5cadf16f10135c34112ec35b232 | /referencedata2-service/src/main/java/com/portbase/referencedata/service/ServiceProviderCrudService.java | 66dbd492db1729a885ca44e45e1f9bda142c31ac | [] | no_license | suna4it/ref-api | https://github.com/suna4it/ref-api | 67d1eed37a7b533900b1f6737621a7e6447ac1e6 | 5b8582aac6fda7625d51597a5dd4cc753b536339 | refs/heads/master | 2017-08-02T05:20:47.573000 | 2017-02-13T13:58:18 | 2017-02-13T13:58:18 | 81,207,132 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.portbase.referencedata.service;
import com.portbase.referencedata.service.dto.ServiceProviderDto;
import java.util.List;
/**
* Created by s.lale on 8-9-2015.
*/
public interface ServiceProviderCrudService {
List<ServiceProviderDto> getServiceProvidersByPortUuid(String portUuid);
}
| UTF-8 | Java | 315 | java | ServiceProviderCrudService.java | Java | [
{
"context": "o;\r\n\r\nimport java.util.List;\r\n\r\n/**\r\n * Created by s.lale on 8-9-2015.\r\n */\r\npublic interface ServiceProvid",
"end": 167,
"score": 0.9996178150177002,
"start": 161,
"tag": "USERNAME",
"value": "s.lale"
}
] | null | [] | package com.portbase.referencedata.service;
import com.portbase.referencedata.service.dto.ServiceProviderDto;
import java.util.List;
/**
* Created by s.lale on 8-9-2015.
*/
public interface ServiceProviderCrudService {
List<ServiceProviderDto> getServiceProvidersByPortUuid(String portUuid);
}
| 315 | 0.768254 | 0.749206 | 12 | 24.25 | 26.47365 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 15 |
a5c007e68b89d47675060c3ef845ed8fdf01ba74 | 16,475,494,580,336 | bbc0882bc810da7dbda2a648e23871dc1c8075b6 | /plat-web/src/main/java/net/ruixin/intercept/SessionTimeoutInterceptor.java | c95ddd6eb563ee3e63bbbf0d24d3c71f32434dba | [] | no_license | jealous5288/client-base | https://github.com/jealous5288/client-base | 81923d7098fcef66a57d582af82a7e94b907a6aa | ea64c70d2f40dcf55b8fa153623531c987e0e984 | refs/heads/master | 2021-08-23T13:27:13.296000 | 2017-12-05T02:16:21 | 2017-12-05T02:16:21 | 113,006,493 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.ruixin.intercept;
import net.ruixin.controller.BaseController;
import net.ruixin.service.plat.shiro.ShiroKit;
import net.ruixin.util.http.HttpKit;
import org.apache.shiro.session.InvalidSessionException;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspe... | UTF-8 | Java | 1,839 | java | SessionTimeoutInterceptor.java | Java | [] | null | [] | package net.ruixin.intercept;
import net.ruixin.controller.BaseController;
import net.ruixin.service.plat.shiro.ShiroKit;
import net.ruixin.util.http.HttpKit;
import org.apache.shiro.session.InvalidSessionException;
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspe... | 1,839 | 0.641251 | 0.640702 | 56 | 31.553572 | 22.937742 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.553571 | false | false | 15 |
91d43500a6a294fd98482be644615d319b70845e | 7,799,660,671,355 | fac41311f8daa5de27bf6e37898d37690957f9d0 | /src/main/java/com/lp/crud/dao/AccUserMapper.java | e8c488fd1d5308ab911b59d4a9e713baff4fda01 | [] | no_license | bingoCoding/ssm-crud | https://github.com/bingoCoding/ssm-crud | 544efe57e6a8319957fbbb4fb5d7136e9bb8547b | bfc6909d5d4a6f194662347dc5028fd337782eb0 | refs/heads/master | 2021-01-16T19:36:23.418000 | 2018-07-19T02:25:51 | 2018-07-19T02:25:51 | 100,178,895 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lp.crud.dao;
import com.lp.crud.bean.AccUser;
import com.lp.crud.bean.AccUserExample;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface AccUserMapper {
int countByExample(AccUserExample example);
int deleteByExample(AccUserExample example);
int deleteByPrim... | UTF-8 | Java | 941 | java | AccUserMapper.java | Java | [] | null | [] | package com.lp.crud.dao;
import com.lp.crud.bean.AccUser;
import com.lp.crud.bean.AccUserExample;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface AccUserMapper {
int countByExample(AccUserExample example);
int deleteByExample(AccUserExample example);
int deleteByPrim... | 941 | 0.77152 | 0.77152 | 33 | 27.545454 | 28.842405 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.606061 | false | false | 15 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.