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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
17f27dd0dd95e04f488864815cf772135fdf182d | 14,044,543,058,357 | 2e064ad0b8938336bf7835ac4a4c6f946e5b3f40 | /demo/src/SourceCodeModule7/maxsoft/WageEmployee.java | ffb2e00d84ac4aa2ab8767e0c43ea3d43ebf9430 | [] | no_license | phamtuanchip/ifis_training | https://github.com/phamtuanchip/ifis_training | 4c1f7b80c8bf3128543961de5b3efb59ef554df0 | f694c6f0cf6d36e71cf90c56cbd4f26c4ac8b8b0 | refs/heads/master | 2016-03-28T04:32:20.359000 | 2015-02-05T03:48:51 | 2015-02-05T03:48:51 | 28,945,354 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* WageEmployee.java
*
* This class is a derived class of Employee class, used to store
* the salary details of the waged employees and display the same.
*
* Copyright © 2006 Aptech Software Limited. All rights reserved.
*/
package SourceCodeModule7.maxsoft;
/**
* WageEmployee class contains all the details... | WINDOWS-1252 | Java | 1,393 | java | WageEmployee.java | Java | [
{
"context": "ins all the details of waged employees.\n * @author vincent\n */\npublic class WageEmployee extends Employee {\n",
"end": 359,
"score": 0.8560821413993835,
"start": 352,
"tag": "NAME",
"value": "vincent"
}
] | null | [] | /*
* WageEmployee.java
*
* This class is a derived class of Employee class, used to store
* the salary details of the waged employees and display the same.
*
* Copyright © 2006 Aptech Software Limited. All rights reserved.
*/
package SourceCodeModule7.maxsoft;
/**
* WageEmployee class contains all the details... | 1,393 | 0.638649 | 0.634339 | 53 | 25.264151 | 25.339321 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.226415 | false | false | 15 |
46cde72517a83f976572a1f77599402fc020f62e | 24,996,709,729,900 | 948315d14076b9dec52c8369dff29fce9d40356a | /dynamic_programming/Coin_change.java | 30bd52f8c0f3f11b11efb9f732e7adde4d5af97f | [] | no_license | Abhi464/Algorithms | https://github.com/Abhi464/Algorithms | 515b6629e37b1cfc45ae6ea7c8d2421e9051045f | 69cdb3fab2acc8b5eeb31bec00bc8e5e22a1b6bf | refs/heads/master | 2022-11-10T14:35:30.478000 | 2022-10-30T22:45:56 | 2022-10-30T22:45:56 | 112,111,471 | 0 | 2 | null | false | 2022-10-30T22:45:57 | 2017-11-26T19:45:40 | 2021-10-05T01:55:04 | 2022-10-30T22:45:57 | 588 | 0 | 2 | 1 | Java | false | false | package dynamic_programming;
public class Coin_change {
public static int coin_change(int x[],int amount) {
int a[][]=new int[amount+1][x.length+1];
int n=x.length;
for(int i=0;i<=amount;i++) {
for(int j=0;j<=n;j++) {
if(i==0 || j==0) {
a[i][j]=0;
continue;
}
if(x[j-1]>i) {
... | UTF-8 | Java | 913 | java | Coin_change.java | Java | [] | null | [] | package dynamic_programming;
public class Coin_change {
public static int coin_change(int x[],int amount) {
int a[][]=new int[amount+1][x.length+1];
int n=x.length;
for(int i=0;i<=amount;i++) {
for(int j=0;j<=n;j++) {
if(i==0 || j==0) {
a[i][j]=0;
continue;
}
if(x[j-1]>i) {
... | 913 | 0.47207 | 0.439211 | 45 | 19.288889 | 15.020907 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.377778 | false | false | 15 |
ac6edf17f54f08e8f89cd8ed77d35364a44a32ab | 25,778,393,712,405 | 1edb77f657a92f04265ec1411b12a96e1c8f7315 | /src/com/java/algothrim/String/BasicCalculatorII.java | 294fc9e9805d2598964404a3659fd5170cf8cc50 | [] | no_license | makrandp/JavaAlgorithm | https://github.com/makrandp/JavaAlgorithm | a4f59bdf805c52fa10ae3dba77fc04a6cfb9bc30 | 2fa74c36a61a07fe0b109f350189fe70d765153f | refs/heads/master | 2023-08-23T19:16:02.590000 | 2021-10-26T04:48:14 | 2021-10-26T04:48:14 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.java.algothrim.String;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Stack;
public class BasicCalculatorII {
enum Operation {
ADDITION, SUBTRACTION, MULTIPLICATION, DIVISION
}
Map map =
Map.of('+', Operation.ADDITION, '-', Operati... | UTF-8 | Java | 2,711 | java | BasicCalculatorII.java | Java | [] | null | [] | package com.java.algothrim.String;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Stack;
public class BasicCalculatorII {
enum Operation {
ADDITION, SUBTRACTION, MULTIPLICATION, DIVISION
}
Map map =
Map.of('+', Operation.ADDITION, '-', Operati... | 2,711 | 0.5308 | 0.527481 | 86 | 30.5 | 21.821554 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.569767 | false | false | 15 |
2fe9956805183129677dee0884baa2b66e552c7e | 4,123,168,671,171 | 3b302dde8c17af6e91775ce7409d14492fda4c40 | /src/main/java/org/xbib/elasticsearch/index/analysis/skos/tokenattributes/SKOSTypeAttribute.java | 4d446d7f30cccbbdf17bcfe0b93bd5fddce84a2f | [
"Apache-2.0"
] | permissive | fekaputra/elasticsearch-analysis-skos | https://github.com/fekaputra/elasticsearch-analysis-skos | 4ae5607bd3288e380fa521a4b642cc56a81ba0e8 | c54ba4da1d3e0e4cfd7edb2e6608bbf8722568eb | refs/heads/master | 2021-01-16T22:45:18.430000 | 2015-02-06T19:33:12 | 2015-02-06T19:33:12 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Copyright 2010 Bernhard Haslhofer
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed... | UTF-8 | Java | 2,201 | java | SKOSTypeAttribute.java | Java | [
{
"context": "/**\n * Copyright 2010 Bernhard Haslhofer\n *\n * Licensed under the Apache License, Version ",
"end": 40,
"score": 0.9998475909233093,
"start": 22,
"tag": "NAME",
"value": "Bernhard Haslhofer"
}
] | null | [] | /**
* Copyright 2010 <NAME>
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writi... | 2,189 | 0.58746 | 0.580191 | 76 | 27.960526 | 24.827532 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.355263 | false | false | 15 |
51c67818b1b80249897b958ea2697cf4a436f3dd | 36,429,912,639,080 | 2a920f5f42c588dad01740da5d8c3d9aecbc2a90 | /src/org/deegree/io/quadtree/DBQuadtree.java | 780df4ca6a0ed1a68892385ad32c68d687c92fd2 | [] | no_license | lat-lon/deegree2-rev30957 | https://github.com/lat-lon/deegree2-rev30957 | 40b50297cd28243b09bfd05db051ea4cecc889e4 | 22aa8f8696e50c6e19c22adb505efb0f1fc805d8 | refs/heads/master | 2020-04-06T07:00:21.040000 | 2016-06-28T15:21:56 | 2016-06-28T15:21:56 | 12,290,316 | 0 | 0 | null | false | 2016-06-28T15:21:57 | 2013-08-22T06:49:45 | 2016-05-11T12:35:05 | 2016-06-28T15:21:57 | 36,551 | 0 | 1 | 0 | Java | null | null | //$HeadURL: https://scm.wald.intevation.org/svn/deegree/base/trunk/src/org/deegree/io/quadtree/DBQuadtree.java $
/*----------------------------------------------------------------------------
This file is part of deegree, http://deegree.org/
Copyright (C) 2001-2009 by:
Department of Geography, University of Bonn
... | UTF-8 | Java | 11,376 | java | DBQuadtree.java | Java | [
{
"context": "rtment of Geography, University of Bonn\n Prof. Dr. Klaus Greve\n Postfach 1147, 53001 Bonn\n Germany\n http://www.g",
"end": 1210,
"score": 0.9943673610687256,
"start": 1199,
"tag": "NAME",
"value": "Klaus Greve"
},
{
"context": "tp://www.geographie.uni-bonn.de/deegree... | null | [] | //$HeadURL: https://scm.wald.intevation.org/svn/deegree/base/trunk/src/org/deegree/io/quadtree/DBQuadtree.java $
/*----------------------------------------------------------------------------
This file is part of deegree, http://deegree.org/
Copyright (C) 2001-2009 by:
Department of Geography, University of Bonn
... | 11,348 | 0.591069 | 0.578938 | 347 | 31.783861 | 30.156116 | 130 | false | false | 0 | 0 | 0 | 0 | 65 | 0.005714 | 0.544669 | false | false | 15 |
aeea9a7afb5b485abe259539a21cad708dc81741 | 36,429,912,640,870 | c94c5b015bb020f4c2a9a3e5c0b508e312fa0cdc | /src/main/java/com/lanoga/flightplanner/model/CompanyDTO.java | ec18ae61f9b1c1fcc86348bb2d3af0a8036665a5 | [] | no_license | m4rt0n/lanoga_task | https://github.com/m4rt0n/lanoga_task | 13cf41a97843b19788b893a74998119f9a29cb81 | 6be77cb8507627e1ba4307a3755db20e83cc7e08 | refs/heads/main | 2023-04-25T17:27:47.895000 | 2021-06-13T11:53:22 | 2021-06-13T11:53:22 | 371,181,012 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lanoga.flightplanner.model;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.NonNull;
import lombok.RequiredArgsConstructor;
@Data
@RequiredArgsConstructor
@NoArgsConstructor
p... | UTF-8 | Java | 521 | java | CompanyDTO.java | Java | [] | null | [] | package com.lanoga.flightplanner.model;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.NonNull;
import lombok.RequiredArgsConstructor;
@Data
@RequiredArgsConstructor
@NoArgsConstructor
p... | 521 | 0.827255 | 0.827255 | 27 | 18.296297 | 15.943917 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.666667 | false | false | 15 |
aa85febb8bbaa8988b56cedd27d7707582419cd9 | 13,460,427,571,765 | c96e89b7d6c59bb230c13341b904de66532c6e8c | /src/main/java/org/mule/providers/soap/axis/wsdl/wsrf/aspect/WsrpStubAdvice.java | e757a175ff960c4f4fe07d4df090ce906bf45283 | [] | no_license | muleforge/WSRF | https://github.com/muleforge/WSRF | c6a8adfd548d707433f4c7c186d3ca937654f9a2 | 69dc9de89b2a7c1c94421e71f92804a990d7c8bd | refs/heads/master | 2021-01-23T07:34:32.263000 | 2008-08-11T10:26:49 | 2008-08-11T10:26:49 | 3,153,842 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* $Id$
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this... | UTF-8 | Java | 3,705 | java | WsrpStubAdvice.java | Java | [] | null | [] | /*
* $Id$
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this... | 3,705 | 0.65587 | 0.651822 | 106 | 33.933964 | 43.424683 | 199 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.367925 | false | false | 15 |
ab84eaca5e91b19ee6316c1393fe3155345e200e | 3,994,319,655,232 | 82307a4c63f07d098636ff6cc96612397e52389a | /src/main/java/com/flamel/almacenutt/models/service/ValeSalidaService.java | 3e6db0158d4bf5ab5d513ce0187451dd9d67774d | [] | no_license | misael1999/almacenUTTJavaSpring | https://github.com/misael1999/almacenUTTJavaSpring | 3290c732e2e51bec319b49543531311bbf6bb24f | 77491055cb9e03c5430cb1abab097ca0ef39cb59 | refs/heads/master | 2022-04-19T03:28:32.828000 | 2020-02-05T23:24:22 | 2020-02-05T23:24:22 | 162,179,888 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.flamel.almacenutt.models.service;
import com.flamel.almacenutt.models.entity.Factura;
import com.flamel.almacenutt.models.entity.FacturaProducto;
import com.flamel.almacenutt.models.entity.ValeSalida;
import com.flamel.almacenutt.models.model.ValesByArea;
import org.springframework.data.domain.Page;
import... | UTF-8 | Java | 1,185 | java | ValeSalidaService.java | Java | [] | null | [] | package com.flamel.almacenutt.models.service;
import com.flamel.almacenutt.models.entity.Factura;
import com.flamel.almacenutt.models.entity.FacturaProducto;
import com.flamel.almacenutt.models.entity.ValeSalida;
import com.flamel.almacenutt.models.model.ValesByArea;
import org.springframework.data.domain.Page;
import... | 1,185 | 0.821941 | 0.821941 | 32 | 36.03125 | 29.524866 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.625 | false | false | 15 |
f9006bb00ac188345819db81df5b37f3814ed207 | 36,155,034,741,392 | 09d8f32f6d12f80149a959963c00ac69bacf096d | /yangshenhui-hadoop/src/main/java/indi/yangshenhui/hadoop/mapreduce/WordCountMapReduce.java | 1ee134395140e3cdd880973084e345d53bac793e | [] | no_license | ysh3940/yangshenhui-hadoop | https://github.com/ysh3940/yangshenhui-hadoop | 7a3dca5a163935e826bcbe54c8a9306ec84a2987 | 31d7be140e0b38e2d22790687fcb33acf6ef2278 | refs/heads/master | 2021-01-19T13:03:25.475000 | 2016-10-04T10:36:10 | 2016-10-04T10:36:10 | 82,360,541 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package indi.yangshenhui.hadoop.mapreduce;
import java.io.IOException;
import java.io.StringReader;
import org.apache.hadoop.conf.Configured;
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.apac... | UTF-8 | Java | 2,701 | java | WordCountMapReduce.java | Java | [
{
"context": "ltea.analyzer.core.Lexeme;\r\n\r\n/**\r\n * \r\n * @author yangshenhui\r\n */\r\npublic class WordCountMapReduce extends Con",
"end": 890,
"score": 0.994113564491272,
"start": 879,
"tag": "USERNAME",
"value": "yangshenhui"
}
] | null | [] | package indi.yangshenhui.hadoop.mapreduce;
import java.io.IOException;
import java.io.StringReader;
import org.apache.hadoop.conf.Configured;
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.apac... | 2,701 | 0.740466 | 0.737134 | 83 | 30.566265 | 25.568804 | 107 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.831325 | false | false | 15 |
15c458d48b8cf4c87ea9b3d972ca0d7b712bc9c8 | 36,189,394,477,920 | 500065495e0079b5296b3b91842da5604a3915dd | /CalculadoraAppSi.java | 911576fba360893204458f330e3fde13bc7930ec | [] | no_license | EdgardoMD/FullStackRancaguaEMD | https://github.com/EdgardoMD/FullStackRancaguaEMD | f8379eaf5a5c6febe28b9fdad77d480c94de0d16 | 5c211d3b78cde4ce143e9f2d15c457a95414653c | refs/heads/master | 2021-01-03T01:25:22.109000 | 2020-03-03T20:19:25 | 2020-03-03T20:19:25 | 239,857,029 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Ejercicios;
import java.util.Scanner;
public class CalculadoraAppSi {
public static void main(String[] args) {
// TODO Auto-generated method stub
int n1=0, n2=0, suma=0, resta=0, mult=0, div=0, mod = 0;
String s="?";
Scanner LeerNumero = new Scanner(System.in);
Scanner LeerSigno = new... | ISO-8859-1 | Java | 1,412 | java | CalculadoraAppSi.java | Java | [] | null | [] | package Ejercicios;
import java.util.Scanner;
public class CalculadoraAppSi {
public static void main(String[] args) {
// TODO Auto-generated method stub
int n1=0, n2=0, suma=0, resta=0, mult=0, div=0, mod = 0;
String s="?";
Scanner LeerNumero = new Scanner(System.in);
Scanner LeerSigno = new... | 1,412 | 0.600285 | 0.585348 | 49 | 26.693878 | 23.841486 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.265306 | false | false | 15 |
bf7e270ce031c719dd579c19f5a25c747db85509 | 34,205,119,600,429 | 2b4332d86e57a2f05a3e10cafad8ce30bf92e7d0 | /Sources/com/webobjects/eointerface/EOValueSelectionAssociation.java | aaaa13c11d9bcb6a962aa0911d3883adede929f2 | [] | no_license | rkiddy/Orange | https://github.com/rkiddy/Orange | 7b600492957be4c5db03544b940ed86c6ed16d2b | 167f48021144e5bea576276b2d30901b663c2b3d | refs/heads/master | 2016-09-03T07:28:34.880000 | 2012-07-14T04:21:59 | 2012-07-14T04:21:59 | 2,116,939 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.webobjects.eointerface;
/**
* EOValueSelectionAssociation displays an attribute or to-one relationship value in a display object that offers the user multiple choices and the option of choosing just one of those choices. This association is typically used with pop-up lists, drop down menus, combo boxes, or... | UTF-8 | Java | 8,587 | java | EOValueSelectionAssociation.java | Java | [] | null | [] | package com.webobjects.eointerface;
/**
* EOValueSelectionAssociation displays an attribute or to-one relationship value in a display object that offers the user multiple choices and the option of choosing just one of those choices. This association is typically used with pop-up lists, drop down menus, combo boxes, or... | 8,587 | 0.762082 | 0.762082 | 101 | 84.019798 | 155.202576 | 798 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.70297 | false | false | 15 |
595d983a5048459df1c2088d400ba3721be1e88f | 35,046,933,185,748 | 0ce8e3ddda079c86f09e853c5b1e22a3804e3ce7 | /src/main/java/com/cmp/sid/AutoDeployNode.java | 5a314a7859279862b74855e7d753950cdc8d3a2c | [] | no_license | ultra-cloud/ultracloud | https://github.com/ultra-cloud/ultracloud | 3ae1881791005adb3fe7fc4b1a369fca79bf43da | c051ce8488c23290c7669ad34def762bf9c90254 | refs/heads/master | 2018-10-05T01:43:17.475000 | 2018-07-10T08:55:07 | 2018-07-10T08:55:07 | 108,678,335 | 3 | 3 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.cmp.sid;
import java.util.List;
/*
* 自动部署节点
* */
public class AutoDeployNode {
private String id; //id
private String name; //节点名称
private String detail; //节点描述
private String orderNum; //节点序列
private String configId; //节点配置ID
private String mediumId; //软件ID
private String scriptU... | UTF-8 | Java | 2,176 | java | AutoDeployNode.java | Java | [] | null | [] | package com.cmp.sid;
import java.util.List;
/*
* 自动部署节点
* */
public class AutoDeployNode {
private String id; //id
private String name; //节点名称
private String detail; //节点描述
private String orderNum; //节点序列
private String configId; //节点配置ID
private String mediumId; //软件ID
private String scriptU... | 2,176 | 0.692759 | 0.692759 | 91 | 20.461538 | 16.826397 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.56044 | false | false | 15 |
ba36532e256cdc09cd970182b55941213dcda0cb | 38,869,454,072,232 | f66fc1aca1c2ed178ac3f8c2cf5185b385558710 | /reladomo/src/main/java/com/gs/fw/common/mithra/cache/LazyIndex.java | db43a4914c0945dfd3928a57a5e64d034428da98 | [
"Apache-2.0",
"BSD-3-Clause",
"MIT",
"LicenseRef-scancode-public-domain"
] | permissive | goldmansachs/reladomo | https://github.com/goldmansachs/reladomo | 9cd3e60e92dbc6b0eb59ea24d112244ffe01bc35 | a4f4e39290d8012573f5737a4edc45d603be07a5 | refs/heads/master | 2023-09-04T10:30:12.542000 | 2023-07-20T09:29:44 | 2023-07-20T09:29:44 | 68,020,885 | 431 | 122 | Apache-2.0 | false | 2023-07-07T21:29:52 | 2016-09-12T15:17:34 | 2023-06-17T09:53:43 | 2023-07-07T21:29:51 | 10,739 | 366 | 95 | 17 | Java | false | false | /*
Copyright 2016 Goldman Sachs.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing... | UTF-8 | Java | 6,669 | java | LazyIndex.java | Java | [
{
"context": "/*\r\n Copyright 2016 Goldman Sachs.\r\n Licensed under the Apache License, Version 2.0",
"end": 33,
"score": 0.9992016553878784,
"start": 20,
"tag": "NAME",
"value": "Goldman Sachs"
}
] | null | [] | /*
Copyright 2016 <NAME>.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
sof... | 6,662 | 0.621383 | 0.619133 | 306 | 19.800653 | 22.69108 | 149 | true | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.22549 | false | false | 15 |
b36268e4e0f6993c420d5bcb8e84f69b4b830c22 | 35,201,552,013,844 | c347f2ab38c35750125a2470fdd323aca1dbf4ec | /src/gui/fr/evolya/javatoolkit/gui/swing/diode/DiodeIcon.java | 016f818fcb26517c62be6ec792f7360297b5cb2c | [] | no_license | rbello/java-toolkit | https://github.com/rbello/java-toolkit | 7cf1c75952c1d6fa1f663f1f51c4b7e7a91cb7b6 | b5e30e70c7f5ffd7afe9655870a35b1f4de26489 | refs/heads/master | 2021-01-21T14:28:57.036000 | 2018-10-09T16:23:04 | 2018-10-09T16:23:04 | 95,290,565 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package fr.evolya.javatoolkit.gui.swing.diode;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
/**
*
* @author rbello
*
*/
public class DiodeIcon extends JLabel {
private static final long serialVersionUID = -6853501546781719777L;
public static Icon yes = null;
publi... | UTF-8 | Java | 1,888 | java | DiodeIcon.java | Java | [
{
"context": "con;\nimport javax.swing.JLabel;\n\n/**\n *\n * @author rbello\n *\n */\npublic class DiodeIcon extends JLabel {\n ",
"end": 155,
"score": 0.9995830655097961,
"start": 149,
"tag": "USERNAME",
"value": "rbello"
}
] | null | [] | package fr.evolya.javatoolkit.gui.swing.diode;
import javax.swing.Icon;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
/**
*
* @author rbello
*
*/
public class DiodeIcon extends JLabel {
private static final long serialVersionUID = -6853501546781719777L;
public static Icon yes = null;
publi... | 1,888 | 0.603284 | 0.590042 | 91 | 19.747253 | 21.403294 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.373626 | false | false | 15 |
15a5256394cb47cdee0f8fdcf28bab32f91dd592 | 36,258,113,937,935 | eb7fcf90b1f34cc7c1f8a4c0ffaed0c00ce6dee9 | /data/src/main/java/com/pccw/lizhihui/cmcc/data/database/DBAction1.java | a6cd52bb07e6b8c8f8ce8d9eddaf63dfc7880044 | [] | no_license | lizhihui0215/CMCC | https://github.com/lizhihui0215/CMCC | a913551eea8d5c7f93aedf52d2fd72a01dc7b245 | 1816f72575849ea5f263770027feb96d6fc32812 | refs/heads/master | 2021-01-21T13:48:29.002000 | 2016-04-27T09:54:08 | 2016-04-27T09:54:08 | 54,108,553 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.pccw.lizhihui.cmcc.data.database;
public interface DBAction1<Q,T>{
void call(Q q, T t);
}
| UTF-8 | Java | 107 | java | DBAction1.java | Java | [] | null | [] | package com.pccw.lizhihui.cmcc.data.database;
public interface DBAction1<Q,T>{
void call(Q q, T t);
}
| 107 | 0.71028 | 0.700935 | 5 | 20.4 | 17.579533 | 45 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.8 | false | false | 15 |
cec142a6eacf00e3444e8911f53656f5e8f7106e | 25,572,235,334,682 | 2e55e6d7921694ae019ffa871a7cb3bc349c296e | /src/test/java/com/zulily/omicron/scheduling/RunningTaskTest.java | 73abe4e331ee0f7e6afd7c3fdfc2fd71100b0483 | [
"LicenseRef-scancode-warranty-disclaimer",
"Apache-2.0"
] | permissive | zulily/omicron | https://github.com/zulily/omicron | 1ed3c70e71e01b8f55a7a981784899e552d04e46 | 5f741358bf8cc208c4627d8abe6b868d8b349138 | refs/heads/master | 2020-04-22T17:12:37.422000 | 2015-12-14T16:40:08 | 2015-12-14T16:40:08 | 27,880,572 | 0 | 1 | null | false | 2015-09-01T16:31:02 | 2014-12-11T16:31:03 | 2015-01-20T15:53:57 | 2015-09-01T16:31:02 | 529 | 0 | 0 | 8 | Java | null | null | package com.zulily.omicron.scheduling;
import com.zulily.omicron.Utils;
import org.junit.Test;
import java.io.File;
import java.io.IOException;
import java.util.Set;
import static org.junit.Assert.assertTrue;
public class RunningTaskTest {
@Test
public void testProcFSWorks() throws IOException {
Set<Long> ... | UTF-8 | Java | 759 | java | RunningTaskTest.java | Java | [] | null | [] | package com.zulily.omicron.scheduling;
import com.zulily.omicron.Utils;
import org.junit.Test;
import java.io.File;
import java.io.IOException;
import java.util.Set;
import static org.junit.Assert.assertTrue;
public class RunningTaskTest {
@Test
public void testProcFSWorks() throws IOException {
Set<Long> ... | 759 | 0.699605 | 0.694335 | 33 | 22 | 23.98358 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.393939 | false | false | 15 |
cade535a2a8315ef369db9bf502f9f615dc2a2f4 | 34,668,976,059,987 | eecf334fe33b5397a7c28f43dd54d07768ab80fc | /rental-house/rental-house-api/src/main/java/edu/dongnao/rental/house/domain/AreaLevel.java | 53d40501ddb3f91f39f3b8963e61f38ae375c84c | [] | no_license | huangxiaode/rental | https://github.com/huangxiaode/rental | 3147ee7f5669043beec7d91bc870c85b0a110548 | 4ab41eb0ca23679ba4c6e62236a5b8da9f7931d0 | refs/heads/main | 2023-02-14T04:56:19.613000 | 2021-01-15T10:12:48 | 2021-01-15T10:12:48 | 329,253,475 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package edu.dongnao.rental.house.domain;
/**
* 地区行政区域划分
*/
public enum AreaLevel {
CITY("city"),
REGION("region");
private String value;
AreaLevel(String value) {
this.value = value;
}
public String getValue() {
return value;
}
public static AreaLevel of(String val... | UTF-8 | Java | 553 | java | AreaLevel.java | Java | [] | null | [] | package edu.dongnao.rental.house.domain;
/**
* 地区行政区域划分
*/
public enum AreaLevel {
CITY("city"),
REGION("region");
private String value;
AreaLevel(String value) {
this.value = value;
}
public String getValue() {
return value;
}
public static AreaLevel of(String val... | 553 | 0.556797 | 0.556797 | 28 | 18.178572 | 16.576777 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.285714 | false | false | 15 |
329c97b2fd01ff149e64e3da0e38c825c38f1425 | 14,912,126,520,498 | 17537c091572a94c58975214094fdfeedb57fde1 | /core/server/project/commonGame/src/main/java/com/home/commonGame/net/serverResponse/center/func/auction/FuncRefreshAuctionItemPriceToGameServerResponse.java | 70ce0a4d2bd0dcfc2e02b8b17a64713b58408de8 | [
"Apache-2.0"
] | permissive | mengtest/home3 | https://github.com/mengtest/home3 | dc2e5f910bbca6e536ded94d3f749671f0ca76d5 | a15a63694918483b2e4853edab197b5cdddca560 | refs/heads/master | 2023-01-29T13:49:23.822000 | 2020-12-11T10:17:39 | 2020-12-11T10:17:39 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.home.commonGame.net.serverResponse.center.func.auction;
import com.home.commonBase.constlist.generate.ServerMessageType;
import com.home.commonGame.global.GameC;
import com.home.commonGame.net.serverResponse.center.func.base.FuncCenterToGameServerResponse;
import com.home.shine.bytes.BytesReadStream;
i... | UTF-8 | Java | 3,348 | java | FuncRefreshAuctionItemPriceToGameServerResponse.java | Java | [] | null | [] | package com.home.commonGame.net.serverResponse.center.func.auction;
import com.home.commonBase.constlist.generate.ServerMessageType;
import com.home.commonGame.global.GameC;
import com.home.commonGame.net.serverResponse.center.func.base.FuncCenterToGameServerResponse;
import com.home.shine.bytes.BytesReadStream;
i... | 3,348 | 0.705593 | 0.703749 | 125 | 24.032 | 24.279024 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.504 | false | false | 15 |
000e23cf7b2304fe0bd5f9c2ebc8217588ffad67 | 34,351,148,478,026 | f61de2f873dffcdf82e78cde100219add8cc27b3 | /asterixdb/asterix-metadata/src/main/java/org/apache/asterix/metadata/declared/BTreeDataflowHelperFactoryProvider.java | 0560bd07f1b6a27504cc5352c9f33abeceaedac3 | [
"Apache-2.0",
"MIT"
] | permissive | waans11/asterixdb | https://github.com/waans11/asterixdb | baa745d3c987dd8573af5158ef8c1f8f1f76b01c | 206381e6d2aef1b5d85a0a96619a9ce57fe6f217 | refs/heads/master | 2021-09-18T17:40:37.068000 | 2017-02-28T00:09:03 | 2017-02-28T20:08:14 | 37,291,415 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | 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 you under the Apache License, Version 2.0 (the
* "License"); you ... | UTF-8 | Java | 5,736 | java | BTreeDataflowHelperFactoryProvider.java | Java | [] | 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 you under the Apache License, Version 2.0 (the
* "License"); you ... | 5,736 | 0.724721 | 0.724024 | 93 | 60.677418 | 35.083054 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.817204 | false | false | 15 |
d12aa61e80b0cf1f27e4e1463f4b9f55cf8caaa5 | 37,623,913,534,290 | da274718917effdb29750057ffe80251f721be7a | /webmagic-learn/src/main/java/com/feng/entity/Cinema.java | a7ca977bd3b7201f88350499238ee4ef8207a273 | [] | no_license | 13370399572/webmagic | https://github.com/13370399572/webmagic | 042b8682df1d8b46d20d0ba2235ae6e479a35ff1 | a5788dfd693b987773579cc5430b8a53b8649012 | refs/heads/master | 2022-02-26T19:45:54.414000 | 2019-12-10T06:46:55 | 2019-12-10T06:46:55 | 226,878,649 | 0 | 0 | null | false | 2022-02-09T22:28:40 | 2019-12-09T13:31:40 | 2019-12-10T06:53:44 | 2022-02-09T22:28:38 | 79,959 | 0 | 0 | 2 | HTML | false | false | package com.feng.entity;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import lombok.Data;
@Data
@Entity(name="tb_cinema")
public class Cinema {
@Id
@Column(name="id" ,length=32)
... | UTF-8 | Java | 530 | java | Cinema.java | Java | [] | null | [] | package com.feng.entity;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import lombok.Data;
@Data
@Entity(name="tb_cinema")
public class Cinema {
@Id
@Column(name="id" ,length=32)
... | 530 | 0.760377 | 0.739623 | 28 | 17.928572 | 14.439352 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.857143 | false | false | 15 |
f066c93a5181abf4d4f86c55d66daac747ce6e48 | 37,623,913,534,811 | 17e37ca416a82f4081f01df86941ca6e5ae4c914 | /core-projects/hom/src/main/java/uk/org/cse/nhm/hom/emf/technologies/impl/OperationalCostImpl.java | 76339a0f276890ec5160a5326124bd9ce844a69b | [] | no_license | decc/national-household-model-core-components | https://github.com/decc/national-household-model-core-components | d0c8e08c9d23da4c6812df9e07b69eadf7fa16a4 | 31b72cdb3ddaf834a3ba57954d42f531004786b9 | refs/heads/master | 2020-05-26T00:33:53.193000 | 2017-08-29T14:23:05 | 2017-08-29T14:23:05 | 57,210,476 | 0 | 1 | null | false | 2017-04-04T13:45:41 | 2016-04-27T12:08:08 | 2016-05-20T11:26:41 | 2017-04-04T13:45:41 | 41,739 | 0 | 0 | 3 | Java | null | null | /**
*/
package uk.org.cse.nhm.hom.emf.technologies.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.impl.MinimalEObjectImpl;
import uk.org.cse.nhm.hom.emf.technologies.IOperationalCost;
impo... | UTF-8 | Java | 4,400 | java | OperationalCostImpl.java | Java | [] | null | [] | /**
*/
package uk.org.cse.nhm.hom.emf.technologies.impl;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.impl.MinimalEObjectImpl;
import uk.org.cse.nhm.hom.emf.technologies.IOperationalCost;
impo... | 4,400 | 0.678409 | 0.677727 | 170 | 24.882353 | 28.010675 | 171 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.317647 | false | false | 15 |
816d6600a8f78c8eb28b3f32fc0dfb906871e856 | 36,412,732,771,760 | 7390bf05a8ec3d9b58a8204afa6f7b538248cc4b | /Fractional_Knapsack_Problem/src/Item.java | 684d0cb03893071f2bc010091a327cd327558319 | [] | no_license | JoseCarlosGualo/Fractional-Knapsack-Problem | https://github.com/JoseCarlosGualo/Fractional-Knapsack-Problem | 0b1a66ab0d3e67c2bdf5d7d4250dda3078d909a1 | 9c91fc676db7097ca7ee294798f6f3e8259d5d65 | refs/heads/main | 2023-01-05T13:09:54.695000 | 2020-10-28T22:47:40 | 2020-10-28T22:47:40 | 308,151,376 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
public class Item {
private double weight, benefit, ratio;
private char letra;
public Item(double weight, double benefit, char letra) {
this.weight = weight;
this.benefit = benefit;
this.letra = letra;
this.ratio = benefit / weight;
}
public double getRatio() {
return ratio;
}
publi... | UTF-8 | Java | 566 | java | Item.java | Java | [] | null | [] |
public class Item {
private double weight, benefit, ratio;
private char letra;
public Item(double weight, double benefit, char letra) {
this.weight = weight;
this.benefit = benefit;
this.letra = letra;
this.ratio = benefit / weight;
}
public double getRatio() {
return ratio;
}
publi... | 566 | 0.630742 | 0.630742 | 29 | 17.517241 | 19.277681 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.551724 | false | false | 15 |
8e24c132356d4be8b1e096395b0481abbe789ad9 | 8,830,452,811,538 | 40a9e6895c65a3c9415e27a6f69785ed4dcae0df | /app/src/main/java/pe/edu/tecsup/jfabian/laboratoriocalificado3/repositorio/RepositorioNota.java | fb3900e2bf0cab27ff86220d7f680bb086931367 | [] | no_license | jfabiant/LaboratorioCalificado3 | https://github.com/jfabiant/LaboratorioCalificado3 | 2b76634676236b4ad5f6e6219f9a37ea57cdb16e | b4fea8d1f1e82b5ef295bdc6df0af9305239b65d | refs/heads/master | 2020-04-02T05:32:11.002000 | 2018-10-23T03:10:54 | 2018-10-23T03:10:54 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pe.edu.tecsup.jfabian.laboratoriocalificado3.repositorio;
import com.orm.SugarRecord;
import java.util.Date;
import java.util.List;
import pe.edu.tecsup.jfabian.laboratoriocalificado3.modelo.Nota;
public class RepositorioNota {
public static List<Nota> listar(){
List<Nota> notas = SugarRecord.l... | UTF-8 | Java | 989 | java | RepositorioNota.java | Java | [] | null | [] | package pe.edu.tecsup.jfabian.laboratoriocalificado3.repositorio;
import com.orm.SugarRecord;
import java.util.Date;
import java.util.List;
import pe.edu.tecsup.jfabian.laboratoriocalificado3.modelo.Nota;
public class RepositorioNota {
public static List<Nota> listar(){
List<Nota> notas = SugarRecord.l... | 989 | 0.65723 | 0.655207 | 33 | 29 | 26.514719 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.69697 | false | false | 15 |
d23822c19a13a5c3b5548a97d53ae8c5b986464d | 37,924,561,242,660 | 61beb358af7874848d47c0b924cfd5933c4ce8f2 | /src/main/java/package-info.java | 39fd74039c6baa791498958b6eeb450f909a4564 | [] | no_license | mingjunChan/leetcode-learning | https://github.com/mingjunChan/leetcode-learning | 7fe948d7343c4368dec6d0f586e54cf7a0d923f2 | 566bd8c3c862f3eec95e77828ef3fc7dfe72fa47 | refs/heads/master | 2022-04-30T04:30:46.801000 | 2022-04-13T03:44:02 | 2022-04-13T03:44:02 | 235,063,777 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* 按难度分类
* 包命名格式:"_"+"lettcode题目编号"+"题目名称"
* 类内部自定义注解加题目标签
* jetbrains://idea/navigate/reference?project=ideaProject_workSpace&fqn=annotation.topics
**/
//【7 15】 32
//[10,5,15,3,7,null,18]
// 10
// |
// 5 15
//3 7 null 18
| UTF-8 | Java | 343 | java | package-info.java | Java | [] | null | [] | /**
* 按难度分类
* 包命名格式:"_"+"lettcode题目编号"+"题目名称"
* 类内部自定义注解加题目标签
* jetbrains://idea/navigate/reference?project=ideaProject_workSpace&fqn=annotation.topics
**/
//【7 15】 32
//[10,5,15,3,7,null,18]
// 10
// |
// 5 15
//3 7 null 18
| 343 | 0.530909 | 0.447273 | 13 | 20.076923 | 22.245005 | 90 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.538462 | false | false | 15 |
841fc61f7587139f4f0a718fdb0d5d2b5735a364 | 37,426,345,042,476 | 1b4f286ef962de64f9469e763253694ffcaedbb0 | /ITBootcamp_Zavrsni_Projekat/src/test/ProbaTest.java | c4ca67542bf3570b6d8c061db329409a2bbd7ad5 | [] | no_license | MarkoNedeljkovic/ITBootcamp_Zavrsni_Projekat | https://github.com/MarkoNedeljkovic/ITBootcamp_Zavrsni_Projekat | 522f031ef3955888f8205fa2f47fa89c93b0c9c4 | 99b053328b4e0ca36f2c6cf4098f2bb5cae4cd5f | refs/heads/main | 2023-08-20T17:07:03.843000 | 2021-10-28T16:16:39 | 2021-10-28T16:16:39 | 375,843,219 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package test;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.interactions.Actions;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
import org.testng.asserts.SoftAssert;
import obj.St... | UTF-8 | Java | 1,057 | java | ProbaTest.java | Java | [] | null | [] | package test;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.interactions.Actions;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
import org.testng.asserts.SoftAssert;
import obj.St... | 1,057 | 0.737938 | 0.736991 | 50 | 20.139999 | 21.055176 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.14 | false | false | 15 |
6b7a714c83dfec5dc2a029e6d9502d6bf28c7953 | 38,293,928,430,574 | 8d795dd79f50de2d7d50ea953d396592521dd163 | /trunk/prototypes/smartgit-ds/src/test/java/es/inf/uc3m/kr/smartgit/dao/impl/neo4j/Neo4jMilestoneDAOImplTest.java | 5982bcdfa9017eb819a213be17518756b22f3610 | [] | no_license | chemaar/smartgit | https://github.com/chemaar/smartgit | 96e064bd61749a1756dd8ea3936f7e6649c7dde8 | bece9b79054d335d9f8663f5743fe1ffc75ccb69 | refs/heads/master | 2021-01-25T06:36:53.542000 | 2015-02-20T09:12:19 | 2015-02-20T09:12:19 | 23,062,220 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package es.inf.uc3m.kr.smartgit.dao.impl.neo4j;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import org.eclipse.egit.github.core.service.MilestoneService;
import org.eclipse.egit.github.core.service.RepositoryService;
import org.junit.Test;
import es.... | UTF-8 | Java | 1,592 | java | Neo4jMilestoneDAOImplTest.java | Java | [
{
"context": "logins = new LinkedList<String>();\r\n\t\tlogins.add(\"chemaar\");\r\n\t\tMilestoneService service = new MilestoneSer",
"end": 1182,
"score": 0.786965012550354,
"start": 1175,
"tag": "NAME",
"value": "chemaar"
}
] | null | [] | package es.inf.uc3m.kr.smartgit.dao.impl.neo4j;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import org.eclipse.egit.github.core.service.MilestoneService;
import org.eclipse.egit.github.core.service.RepositoryService;
import org.junit.Test;
import es.... | 1,592 | 0.788945 | 0.778266 | 38 | 39.894737 | 31.116749 | 110 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.552632 | false | false | 15 |
48ac7b599b4e9f39eae4ebb35946455ee1dacbef | 39,135,742,007,532 | 2034df83e90cf25e7f22437c2b44705931fdbf11 | /src/main/java/filter/LoginFilter.java | 1402148c6fd7f950d9a963ed951405c743c77dbd | [] | no_license | tongwatong/ChildPoems | https://github.com/tongwatong/ChildPoems | e68f1707fc4567c783e08bd802cfad3c51c7da06 | 07280491edbdf6977e97da3ef9580db349216513 | refs/heads/master | 2022-07-18T16:26:44.419000 | 2019-10-26T01:27:12 | 2019-10-26T01:27:12 | 206,527,878 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package filter;
import javax.servlet.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
/**
* Created by Administrator on 2019/8/23.
*/
public class LoginFilter implements Filter {
private String passUrl = null;
@Override
public ... | UTF-8 | Java | 1,721 | java | LoginFilter.java | Java | [
{
"context": "se;\nimport java.io.IOException;\n\n/**\n * Created by Administrator on 2019/8/23.\n */\npublic class LoginFilter implem",
"end": 195,
"score": 0.7756173014640808,
"start": 182,
"tag": "USERNAME",
"value": "Administrator"
}
] | null | [] | package filter;
import javax.servlet.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
/**
* Created by Administrator on 2019/8/23.
*/
public class LoginFilter implements Filter {
private String passUrl = null;
@Override
public ... | 1,721 | 0.636044 | 0.631363 | 54 | 30.648148 | 32.009926 | 152 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.444444 | false | false | 15 |
a84291b8b6bd2965cf9c146156a45a9eb154fdfa | 2,284,922,610,754 | 4402382b3f81acdd9ee50dbc6412314f68f33419 | /app/src/main/java/co/tagtalk/winemate/WineryInfoActivity.java | 29471373d3ce24dc338b01f2795883f49e5da1ca | [] | no_license | zhangzhaoyu1985/vinee_legacy | https://github.com/zhangzhaoyu1985/vinee_legacy | 365b0ec44268a9217e51d0f6db5282fa9d894096 | f5b326d8f22bf8fb81d752fb588ef4cf80776f7e | refs/heads/master | 2021-01-20T00:20:46.081000 | 2017-04-23T03:23:45 | 2017-04-23T03:23:45 | 89,114,228 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package co.tagtalk.winemate;
import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.Handler;
import android.preference.PreferenceManager;
import android.support.design.widget.TabLayout;
import androi... | UTF-8 | Java | 13,255 | java | WineryInfoActivity.java | Java | [] | null | [] | package co.tagtalk.winemate;
import android.app.Activity;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.Handler;
import android.preference.PreferenceManager;
import android.support.design.widget.TabLayout;
import androi... | 13,255 | 0.659676 | 0.658167 | 301 | 43.036545 | 34.158054 | 208 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.671096 | false | false | 15 |
c49b421e785ae14a6f94e6e41a63838536c1bada | 29,111,288,355,209 | a979dbdc89bc77728199998b2e7292ec0aeaf5b4 | /speedvoter/src/main/java/se/wegelius/speedvoter/voteservice/model/hibernateobjects/VotersVotesHO.java | 9f267d19ae81619d14b599a0aebad29b30357e00 | [] | no_license | asawegelius/BachelorProject | https://github.com/asawegelius/BachelorProject | f0dbd46f440252fbae8cff1405d6e4fcc21bc588 | 9aa11e8c9f4e858b5ee770c9e25362cda98e58a9 | refs/heads/master | 2021-01-12T22:50:13.300000 | 2017-03-06T02:54:39 | 2017-03-06T02:54:39 | 81,754,856 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package se.wegelius.speedvoter.voteservice.model.hibernateobjects;
// Generated Sep 16, 2016 5:00:33 PM by Hibernate Tools 4.3.1
/**
* VotersVotes generated by hbm2java
*/
public class VotersVotesHO implements java.io.Serializable {
private Integer votersVoteId;
private GateHO gate;
private Votes... | UTF-8 | Java | 964 | java | VotersVotesHO.java | Java | [] | null | [] | package se.wegelius.speedvoter.voteservice.model.hibernateobjects;
// Generated Sep 16, 2016 5:00:33 PM by Hibernate Tools 4.3.1
/**
* VotersVotes generated by hbm2java
*/
public class VotersVotesHO implements java.io.Serializable {
private Integer votersVoteId;
private GateHO gate;
private Votes... | 964 | 0.629668 | 0.614108 | 49 | 18.632652 | 19.504782 | 66 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.285714 | false | false | 15 |
b04b805cd0973cef3c40ecc49497e796faf0fd70 | 5,128,190,974,054 | ccfc915ebf8f77bf215938d3be1f9444232da8f1 | /src/main/java/cn/hbeu/thread/group/ThreadGroupBatchHandleExceptionTest.java | 4b8cdbe7bec9898afdcb490c6296361755d42684 | [] | no_license | WfiCat/ThreadLearn | https://github.com/WfiCat/ThreadLearn | 30fb006d9780eb8ed3b00d7954ab6564ab7e9d31 | 5ff1364a5cab420a6cdff3d0f57660596cd158d0 | refs/heads/master | 2020-05-22T16:30:14.221000 | 2019-05-13T14:07:16 | 2019-05-13T14:07:16 | 186,431,954 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.hbeu.thread.group;
import cn.hbeu.thread.group.ThreadGroupTest.MyThread;
/**
* 线程组测试
*
* @author Zero
*
*/
public class ThreadGroupBatchHandleExceptionTest {
public static void main(String[] args) {
// 创建一个线程组
MyExceptionHandle myGroup = new MyExceptionHandle("线程组zhang:");
// 新建线... | GB18030 | Java | 1,322 | java | ThreadGroupBatchHandleExceptionTest.java | Java | [
{
"context": "upTest.MyThread;\r\n\r\n/**\r\n * 线程组测试\r\n * \r\n * @author Zero\r\n *\r\n */\r\npublic class ThreadGroupBatchHandleExce",
"end": 125,
"score": 0.9504696130752563,
"start": 121,
"tag": "USERNAME",
"value": "Zero"
}
] | null | [] | package cn.hbeu.thread.group;
import cn.hbeu.thread.group.ThreadGroupTest.MyThread;
/**
* 线程组测试
*
* @author Zero
*
*/
public class ThreadGroupBatchHandleExceptionTest {
public static void main(String[] args) {
// 创建一个线程组
MyExceptionHandle myGroup = new MyExceptionHandle("线程组zhang:");
// 新建线... | 1,322 | 0.657895 | 0.651952 | 52 | 20.653847 | 25.67765 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.673077 | false | false | 15 |
a0dba57916098736dc9ff03c361fcb3e9de8ad93 | 17,901,423,706,827 | f6ee3c6b815dd16c7cd64ad2b899b5e7cbe7f66f | /src/main/java/com/example/oauth/handler/MyAuthenctiationSuccessHandler.java | 68e669583ad403c6e4bb1368475421983006b5bc | [] | no_license | henghagrue/SpringDemo | https://github.com/henghagrue/SpringDemo | f12e838cad083e1702c5c58c210f0d6a54d739a8 | e21798aab54ab19172436b3890ea4340ab5810db | refs/heads/master | 2020-03-28T02:56:41.444000 | 2018-09-06T02:49:51 | 2018-09-06T02:49:51 | 147,608,309 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.oauth.handler;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
im... | UTF-8 | Java | 1,537 | java | MyAuthenctiationSuccessHandler.java | Java | [
{
"context": "tabind.ObjectMapper;\n/**\n * 自定义登录成功页面跳转\n * @author upbchain12\n *\n */\n@Component\npublic class MyAuthenctiationSu",
"end": 611,
"score": 0.9995762705802917,
"start": 601,
"tag": "USERNAME",
"value": "upbchain12"
}
] | null | [] | package com.example.oauth.handler;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
im... | 1,537 | 0.79562 | 0.792303 | 44 | 33.25 | 28.698372 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.272727 | false | false | 15 |
9ecc604849a67e927c55505b1a33a3bba7902044 | 10,325,101,420,634 | 0c6a4e9ea7e81ec4de6139e2d16c2210dda6548e | /modules/egova-framework-base/src/main/java/com/egova/utils/ReflectExtraUtils.java | 91c65081f46815d7d791029669557e8b2667a143 | [] | no_license | egova/egova-framework | https://github.com/egova/egova-framework | d7f87821fe33513e2def47b6cb4a168a9c0b9ecb | d3a479764ed1c7720ba00c864c34c1aab1310609 | refs/heads/master | 2022-12-15T05:51:20.376000 | 2021-12-11T08:40:15 | 2021-12-11T08:40:15 | 250,819,340 | 8 | 2 | null | false | 2022-11-16T02:50:23 | 2020-03-28T14:45:15 | 2021-12-22T05:38:16 | 2022-11-16T02:50:20 | 335 | 7 | 1 | 4 | Java | false | false | package com.egova.utils;
import com.egova.exception.FrameworkException;
import org.apache.commons.lang3.StringUtils;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
/**
* 反射工具
*
* @author chenabao
*/
publ... | UTF-8 | Java | 7,173 | java | ReflectExtraUtils.java | Java | [
{
"context": "va.lang.reflect.Method;\n\n/**\n * 反射工具\n *\n * @author chenabao\n */\npublic class ReflectExtraUtils {\n\n /**\n ",
"end": 311,
"score": 0.999518096446991,
"start": 303,
"tag": "USERNAME",
"value": "chenabao"
}
] | null | [] | package com.egova.utils;
import com.egova.exception.FrameworkException;
import org.apache.commons.lang3.StringUtils;
import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
/**
* 反射工具
*
* @author chenabao
*/
publ... | 7,173 | 0.514382 | 0.51263 | 233 | 28.39485 | 25.593695 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.420601 | false | false | 15 |
f0ebf0b4bc9ef58ca84d6739b0b6bde3483f1f6e | 10,325,101,422,086 | ec655832dc9049f68ecb561bf8bb1625b8f6dc12 | /src/main/java/mx/com/nmp/ms/sivad/valuacion/dominio/factory/DiamanteFactory.java | a0b71c35104d838b6786fdf21095dc45bb83733a | [] | no_license | JoseLuisBautistaJaime/05_sivad_motor-valuacion | https://github.com/JoseLuisBautistaJaime/05_sivad_motor-valuacion | 5cb8ce24bde9698140eca77586bd15514ef63e62 | e32ea3e8a05f02c0e788be099397bfb9e99ce31c | refs/heads/master | 2021-10-22T20:52:35.133000 | 2018-11-27T00:09:40 | 2018-11-27T00:09:40 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Proyecto: NMP - Microservicio de Motor de Valuación
* Quarksoft S.A.P.I. de C.V. – Todos los derechos reservados. Para uso exclusivo de Nacional Monte de Piedad.
*/
package mx.com.nmp.ms.sivad.valuacion.dominio.factory;
import mx.com.nmp.ms.sivad.valuacion.dominio.modelo.Diamante;
import mx.com.nmp.ms.... | UTF-8 | Java | 1,124 | java | DiamanteFactory.java | Java | [
{
"context": " de entidades tipo {@link Diamante}.\n *\n * @author ngonzalez\n */\npublic interface DiamanteFactory extends Piez",
"end": 488,
"score": 0.9974099397659302,
"start": 479,
"tag": "USERNAME",
"value": "ngonzalez"
}
] | null | [] | /**
* Proyecto: NMP - Microservicio de Motor de Valuación
* Quarksoft S.A.P.I. de C.V. – Todos los derechos reservados. Para uso exclusivo de Nacional Monte de Piedad.
*/
package mx.com.nmp.ms.sivad.valuacion.dominio.factory;
import mx.com.nmp.ms.sivad.valuacion.dominio.modelo.Diamante;
import mx.com.nmp.ms.... | 1,124 | 0.707775 | 0.707775 | 33 | 32.909092 | 34.794952 | 110 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.151515 | false | false | 15 |
612374b9646c937fa724b66ff6f4899a47d2a9bf | 23,124,103,933,131 | d187254742e91a4d30dcc7da08d35b1e87850c71 | /src/test/java/com/example/audioservice/AudioServiceApplicationTests.java | 0bda64e7c8aa26457ff546c3e523ec336a87955a | [
"Apache-2.0"
] | permissive | ruby-ya/audio-service | https://github.com/ruby-ya/audio-service | 0ed1e1e4e21d8bd754010c1e0609999b27520eba | b363d4b950e1a8297f971832d0860178288f979e | refs/heads/master | 2022-12-31T18:39:44.749000 | 2020-10-09T13:48:46 | 2020-10-09T13:48:46 | 302,644,816 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.audioservice;
import cn.hutool.extra.ssh.Sftp;
import com.example.audioservice.config.AudioServiceDowloadConfig;
import com.example.audioservice.config.AudioServiceSftpConfig;
import com.example.audioservice.service.SftpSevice;
import org.junit.jupiter.api.Test;
import org.springframework.beans.fac... | UTF-8 | Java | 941 | java | AudioServiceApplicationTests.java | Java | [] | null | [] | package com.example.audioservice;
import cn.hutool.extra.ssh.Sftp;
import com.example.audioservice.config.AudioServiceDowloadConfig;
import com.example.audioservice.config.AudioServiceSftpConfig;
import com.example.audioservice.service.SftpSevice;
import org.junit.jupiter.api.Test;
import org.springframework.beans.fac... | 941 | 0.765143 | 0.765143 | 33 | 27.515152 | 27.363016 | 125 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.515152 | false | false | 15 |
25e22894b8af8868e43fe6d1f8698ddcff4fa90d | 2,920,577,788,579 | aac80176696d58a08b1b4a2ea8d3ccca7de0e3e4 | /LevelEditor/src/UI/MainMenu.java | 96a5f2050f98684f8cf781049c3acd9bd7190f9f | [] | no_license | jastribl/HvZ_WAT-Style | https://github.com/jastribl/HvZ_WAT-Style | 9a142cb63502529c59fd072621723c2badce3ada | bfe3f1cd9b750888b5e007b12e7dd61271da503e | refs/heads/master | 2021-01-21T12:03:27.031000 | 2015-06-07T19:40:59 | 2015-06-07T19:40:59 | 29,718,550 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package UI;
import Structures.Item;
import java.awt.*;
import java.util.ArrayList;
import javax.swing.*;
import static leveleditor.Globals.*;
public class MainMenu {
private final String[] groupNames = new String[]{"Blocks", "Specials"};
public static ArrayList<Image[]> itemImages = new ArrayList();
priv... | UTF-8 | Java | 3,784 | java | MainMenu.java | Java | [] | null | [] | package UI;
import Structures.Item;
import java.awt.*;
import java.util.ArrayList;
import javax.swing.*;
import static leveleditor.Globals.*;
public class MainMenu {
private final String[] groupNames = new String[]{"Blocks", "Specials"};
public static ArrayList<Image[]> itemImages = new ArrayList();
priv... | 3,784 | 0.607558 | 0.59593 | 85 | 43.517647 | 51.385422 | 362 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.929412 | false | false | 15 |
97b4917c145eadb95ccc2fd6d4ae7ef08977bf7a | 936,302,883,950 | c4b74bcf4a2725a9fccef217ce5b368ea39f4de1 | /SuccessCollege/app/src/main/java/com/sinoangel/hkz/successcollege/base/BaseActivity.java | 208c081ab8c9ddb1c543f7aac54a48a9da2b9f47 | [] | no_license | SoJiaN/SC_Demo | https://github.com/SoJiaN/SC_Demo | 2aba953b02d0889f34878459e55a60bdfa355608 | b8320bb857963a72fa0e4ada662895259e73fd25 | refs/heads/master | 2021-06-12T15:01:10.457000 | 2017-02-14T10:41:34 | 2017-02-14T10:41:34 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sinoangel.hkz.successcollege.base;
import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;
/**
* 父类说明:所有activity继承的父类
*/
public class BaseActivity extends Activity {
protected void onCreate(Bundle savedInstanceState) {
super.onCr... | UTF-8 | Java | 774 | java | BaseActivity.java | Java | [] | null | [] | package com.sinoangel.hkz.successcollege.base;
import android.app.Activity;
import android.os.Bundle;
import android.view.Window;
import android.view.WindowManager;
/**
* 父类说明:所有activity继承的父类
*/
public class BaseActivity extends Activity {
protected void onCreate(Bundle savedInstanceState) {
super.onCr... | 774 | 0.699713 | 0.699713 | 27 | 24.777779 | 21.604755 | 76 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.444444 | false | false | 15 |
807fbff0085a125d4f144864d74285ea910a7fe4 | 33,217,277,102,046 | 92f75f65766402204ecbeaac6cece2a75bbf7c0d | /src/main/java/com/demotivirus/Day_216/CountOfSymbol.java | 692dd31d7f79b3e3c27d861ba85f3a4f88d30cc3 | [] | no_license | demotivirus/365_Days_Challenge | https://github.com/demotivirus/365_Days_Challenge | 338139efe4f677ebb78abac4e4c674639ad78ab8 | cfc25eb921dd59f9581a39bf00fb0fc15809e4bb | refs/heads/master | 2023-07-21T19:04:26.927000 | 2021-09-07T20:25:29 | 2021-09-07T20:25:29 | 336,847,354 | 1 | 0 | null | false | 2021-09-07T20:20:42 | 2021-02-07T17:32:36 | 2021-09-06T19:50:13 | 2021-09-07T20:20:42 | 1,824 | 1 | 0 | 0 | Java | false | false | package com.demotivirus.Day_216;
public class CountOfSymbol {
public static void main(String[] args) {
String text = "This is a beginner to expert Spring Boot tutorial. " +
"I have used the latest release of Spring Boot 2+ in all examples. " +
"This tutorial gives you all th... | UTF-8 | Java | 1,490 | java | CountOfSymbol.java | Java | [] | null | [] | package com.demotivirus.Day_216;
public class CountOfSymbol {
public static void main(String[] args) {
String text = "This is a beginner to expert Spring Boot tutorial. " +
"I have used the latest release of Spring Boot 2+ in all examples. " +
"This tutorial gives you all th... | 1,490 | 0.615436 | 0.611409 | 37 | 39.270271 | 36.073235 | 124 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.513514 | false | false | 15 |
2ac93966f2c1182e8c5be19781fc9af15f69f3e8 | 28,638,841,987,580 | fe65a8b5b1fa46e51df6c64174f3446396f936c1 | /shop-online/core-dao/src/main/java/core/dao/search/OrderInfo.java | fcaf2e8202fe5897c4d2f8b0c56e0969e57fdfc2 | [] | no_license | trucduong/monkey | https://github.com/trucduong/monkey | 12d062a4ee7ffa0214de9b724a34a677b805a70c | fdac57c3b335567da9e49662659786b439ada771 | refs/heads/master | 2021-01-12T17:09:07.929000 | 2017-01-25T10:36:13 | 2017-01-25T10:36:13 | 71,517,150 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package core.dao.search;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
public class OrderInfo {
public enum OrderType {
ASC, DESC
}
private Map<String, OrderType> orders;
public OrderInfo() {
orders = new HashMap<String, OrderType>();
}
public Set<String> get... | UTF-8 | Java | 760 | java | OrderInfo.java | Java | [] | null | [] | package core.dao.search;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
public class OrderInfo {
public enum OrderType {
ASC, DESC
}
private Map<String, OrderType> orders;
public OrderInfo() {
orders = new HashMap<String, OrderType>();
}
public Set<String> get... | 760 | 0.636842 | 0.636842 | 44 | 15.272727 | 15.032334 | 55 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.522727 | false | false | 15 |
6c55f9c41dd32002d93e9391a3791fe66b9a9cd0 | 21,818,433,894,103 | d67a1e1a0c8f0c7cf7dca04e5f69c7d90d454031 | /jdbcdemo/src/main/java/com/example/JDBCSongs/domain/Song.java | 525ec98d66a174a3e2121db24d8dc09b9ff1a315 | [] | no_license | hstencelewski/java_utrwalanie | https://github.com/hstencelewski/java_utrwalanie | 36e4fa53494d7c5bfa439825c2b0084a4dd7b1be | 344d17763f62505160c98402bf3b52516c2c3cc2 | refs/heads/master | 2021-05-09T04:11:46.330000 | 2018-01-28T14:29:02 | 2018-01-28T14:29:02 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.JDBCSongs.domain;
public class Song {
private long id;
private String songname;
private String bandname;
private double cost;
private String yor;
public Song() {
}
public Song(String songname, String bandname, double cost, String yor) {
super();
this.songname = songname;
this.... | UTF-8 | Java | 930 | java | Song.java | Java | [] | null | [] | package com.example.JDBCSongs.domain;
public class Song {
private long id;
private String songname;
private String bandname;
private double cost;
private String yor;
public Song() {
}
public Song(String songname, String bandname, double cost, String yor) {
super();
this.songname = songname;
this.... | 930 | 0.682796 | 0.682796 | 52 | 16.884615 | 14.583518 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.673077 | false | false | 15 |
6752ff49365f2a494197282bb168e2256e74fe8b | 6,244,882,496,995 | 69b74036fca9aaeb6fe92dcdd087df72558150a5 | /app/src/main/java/com/harlan/lhc/refreshlayout/MainActivity.java | 1408f01862f6af9ffe7fce445fa5fcee03a046a4 | [] | no_license | androidHarlan/Refreshlayout | https://github.com/androidHarlan/Refreshlayout | 6b567e033602016b103b311d2c6f38a7805d5bd2 | 77205c760e93ce86707526c2305c2896eef9538b | refs/heads/master | 2021-01-01T17:44:01.928000 | 2017-07-24T02:11:03 | 2017-07-24T02:11:03 | 98,139,678 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.harlan.lhc.refreshlayout;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import com.scwang.smartrefresh.header.MaterialHeader;
import com.scwang.smartrefresh.layout.api.RefreshLayout;
import com.scwang.smartrefresh.layout.... | UTF-8 | Java | 3,746 | java | MainActivity.java | Java | [] | null | [] | package com.harlan.lhc.refreshlayout;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import com.scwang.smartrefresh.header.MaterialHeader;
import com.scwang.smartrefresh.layout.api.RefreshLayout;
import com.scwang.smartrefresh.layout.... | 3,746 | 0.691248 | 0.688817 | 98 | 36.775509 | 24.869263 | 110 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.591837 | false | false | 15 |
df34730bbcefc0c37f6ec7f6a5c8bed6e0389988 | 26,491,358,286,336 | 5c879b03b30f5f477d5bf988f956e7513ea8ee14 | /src/tools/Utilities101.java | 0db6307684b39d20c95cf6a487de135833792b4a | [] | no_license | gazalle/RecommenderSystem | https://github.com/gazalle/RecommenderSystem | 1f4af210a43139399334a513e6e2de2670a08447 | c2ea1ffbbeed70f2883663ba034d6ca3207f6cda | refs/heads/master | 2021-01-01T04:43:32.497000 | 2019-04-27T10:09:24 | 2019-04-27T10:09:24 | 97,235,586 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package tools;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.AbstractMap.SimpleEntry;
import java.util.ArrayList;
import java.util... | UTF-8 | Java | 17,257 | java | Utilities101.java | Java | [
{
"context": "ion process to make it multi threaded\r\n\t * @author Jugovac\r\n\t *\r\n\t */\r\n\tpublic static class CosineCallable i",
"end": 11659,
"score": 0.9726355075836182,
"start": 11652,
"tag": "NAME",
"value": "Jugovac"
}
] | null | [] |
package tools;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.AbstractMap.SimpleEntry;
import java.util.ArrayList;
import java.util... | 17,257 | 0.617894 | 0.612157 | 529 | 30.618147 | 31.095768 | 197 | false | false | 0 | 0 | 0 | 0 | 85 | 0.049255 | 2.587902 | false | false | 15 |
a1fcdfec6aca13bc3fa470900c81157b0db6c41c | 25,314,537,311,726 | f673e7cc942656f334f04f1b2e9fce0677f54ea4 | /NisiraCore/src/com/nisira/core/entity/Ordenserviciocliente.java | 8dec8bfda964cac18075c111f332f3d12768306a | [] | no_license | aburgosd91/WSPSS | https://github.com/aburgosd91/WSPSS | c59e9d40c1dc63eef95b048a95bde55f48b01bee | 13ca0d5c2c6b4a2764e8510d2ba0dec66c632d7e | refs/heads/master | 2020-12-31T06:09:26.027000 | 2018-02-20T23:42:22 | 2018-02-20T23:42:22 | 80,635,143 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.nisira.core.entity;
import com.nisira.annotation.ClavePrimaria;
import com.nisira.annotation.Columna;
import com.nisira.annotation.Tabla;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import java.io.Serializable;
import java.util.Date;
@XStreamAlias("ORDENSERVICIOCLIENTE")
@Tabla(nombr... | UTF-8 | Java | 9,985 | java | Ordenserviciocliente.java | Java | [] | null | [] | package com.nisira.core.entity;
import com.nisira.annotation.ClavePrimaria;
import com.nisira.annotation.Columna;
import com.nisira.annotation.Tabla;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import java.io.Serializable;
import java.util.Date;
@XStreamAlias("ORDENSERVICIOCLIENTE")
@Tabla(nombr... | 9,985 | 0.60661 | 0.604507 | 461 | 19.663774 | 16.561256 | 58 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.596529 | false | false | 15 |
644e555a1a319172ca1980584fec5a49bfe7ff14 | 29,712,583,802,647 | c7b0cc0947795b6d50900b4dd43661acf07a65b2 | /zuoyebang/src/ui/FragmentAnswerDiffcuilt.java | 1b5212b677eaec8f799ff2287d2b7a6db87e670c | [] | no_license | ilovecmu/xxoxx | https://github.com/ilovecmu/xxoxx | ae01fc0f70c4fb7eacebf9f1a679936a1e14d871 | e468bd33b56fe44c3dc1550be62407078d189541 | refs/heads/master | 2021-01-22T04:57:06.183000 | 2015-03-29T13:26:33 | 2015-03-29T13:26:33 | 33,073,087 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ui;
import com.example.zuoyebang.R;
import com.example.zuoyebang.R.layout;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class FragmentAnswerDiffcuilt extends Fragment {
@Override
public... | UTF-8 | Java | 527 | java | FragmentAnswerDiffcuilt.java | Java | [] | null | [] | package ui;
import com.example.zuoyebang.R;
import com.example.zuoyebang.R.layout;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class FragmentAnswerDiffcuilt extends Fragment {
@Override
public... | 527 | 0.810247 | 0.808349 | 20 | 25.4 | 27.570637 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.2 | false | false | 15 |
98476642560d627a1a6820335a37ffcc14ddf330 | 22,325,240,059,424 | 460ee2247ab687a177b5ceb078ac9fa97d54d34c | /src/main/java/Clinion_StudyWorkflow/StudyAdminTasksRolesManagement.java | 946959ae077369af5ca0b367f89c20c67254abda | [] | no_license | Bablu506kumar506prasad506/Clinion_All | https://github.com/Bablu506kumar506prasad506/Clinion_All | 9b64f1bdfffd1e56430b26803cf04c873431dc26 | cf7bf3f4229da9c864bc5a8b6191e8740c5c2b83 | refs/heads/master | 2020-03-25T05:01:05.961000 | 2019-03-13T11:30:30 | 2019-03-13T11:30:30 | 143,425,040 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Clinion_StudyWorkflow;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.support.PageFactory;
import Clinion_GlobalMethod.Clinion_WaitMethod;
import Clinion_GlobalMethod.GlobelMethods;
import jxl.Sheet;
import jxl... | UTF-8 | Java | 1,741 | java | StudyAdminTasksRolesManagement.java | Java | [] | null | [] | package Clinion_StudyWorkflow;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.support.PageFactory;
import Clinion_GlobalMethod.Clinion_WaitMethod;
import Clinion_GlobalMethod.GlobelMethods;
import jxl.Sheet;
import jxl... | 1,741 | 0.751292 | 0.73004 | 53 | 31.849056 | 29.405041 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.169811 | false | false | 15 |
3197459165c84b6e587f064c28a67db04b714d43 | 3,032,246,963,624 | b88cbf52d5042adc2409a96157d77887646387ad | /src/test/java/com/mytest/designpattern/adapter/extend/Adaptee.java | ba708c34017b9eb5cec2a1af60dd9a4855b6e355 | [] | no_license | chinaqq/mytest | https://github.com/chinaqq/mytest | a427222e09a7e224149d6cf22964af0b9d52d495 | 1c62e28c2e3ad10f1a3d59b9a12411676a5ebf45 | refs/heads/master | 2017-12-28T13:10:10.685000 | 2015-04-18T08:53:00 | 2015-04-18T08:53:00 | 33,810,744 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mytest.designpattern.adapter.extend;
public class Adaptee
{
public void runTest()
{
System.out.println("这里用用反射调用子类的方法");
}
}
| UTF-8 | Java | 179 | java | Adaptee.java | Java | [] | null | [] | package com.mytest.designpattern.adapter.extend;
public class Adaptee
{
public void runTest()
{
System.out.println("这里用用反射调用子类的方法");
}
}
| 179 | 0.69281 | 0.69281 | 9 | 15 | 17.185265 | 48 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.777778 | false | false | 15 |
50d18d7e841109711c7810a6fac861fc40b8e8cd | 3,032,246,964,221 | 94f6c9de73d2cf35596ea2a49100273e71272f39 | /src/cn/et/springmvc/lesson01/service/impl/FoodServiceImpl.java | d0f1f626f23e6e0ae8a22278df8110922a53c4af | [] | no_license | qulibo/springMvcProject | https://github.com/qulibo/springMvcProject | f5edc575512f89e0563f3ade3a1b1431d7ab049e | 1f8bab1e0f64e53a7060b956900c21f0fa966d30 | refs/heads/master | 2021-05-14T19:28:08.141000 | 2017-12-30T02:39:38 | 2017-12-30T02:39:38 | 115,769,088 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.et.springmvc.lesson01.service.impl;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Service;
import cn.et.springmvc.lesson01.dao.FoodDao;
import cn... | UTF-8 | Java | 1,496 | java | FoodServiceImpl.java | Java | [] | null | [] | package cn.et.springmvc.lesson01.service.impl;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Service;
import cn.et.springmvc.lesson01.dao.FoodDao;
import cn... | 1,496 | 0.725267 | 0.717246 | 54 | 25.703703 | 26.780748 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.666667 | false | false | 15 |
93e9dfc327108d4a750e5fb81f7dc0667e92a2ee | 21,371,757,329,307 | 261b1ff89712e05ad8ac589ea5d980066f8b8b19 | /src/main/java/mcp/mobius/betterbarrels/client/render/TileEntityBaseRenderer.java | cc2c12c50655d47491a5a9a613df36df840ad822 | [] | no_license | IdealIndustrial/Jabba | https://github.com/IdealIndustrial/Jabba | 9aafd49425e861fbfe866b6178f4b8beefa9d360 | 4bf33a6c7d6af9c946339c5c6e760d6ab19ff7d0 | refs/heads/master | 2023-04-30T12:27:38.437000 | 2020-12-09T05:24:01 | 2020-12-09T05:24:01 | 285,618,979 | 0 | 0 | null | false | 2021-05-16T18:24:30 | 2020-08-06T16:27:55 | 2020-12-09T05:24:18 | 2021-05-16T18:23:45 | 563 | 0 | 0 | 3 | Java | false | false | package mcp.mobius.betterbarrels.client.render;
import mcp.mobius.betterbarrels.common.blocks.logic.Coordinates;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.FontRenderer;
import net.minecraft.client.renderer.OpenGlHelper;
import net.minecraft.client.renderer.RenderBlocks;
import net.minecraf... | UTF-8 | Java | 10,496 | java | TileEntityBaseRenderer.java | Java | [] | null | [] | package mcp.mobius.betterbarrels.client.render;
import mcp.mobius.betterbarrels.common.blocks.logic.Coordinates;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.FontRenderer;
import net.minecraft.client.renderer.OpenGlHelper;
import net.minecraft.client.renderer.RenderBlocks;
import net.minecraf... | 10,496 | 0.724848 | 0.691216 | 257 | 39.840466 | 42.198551 | 218 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.894942 | false | false | 15 |
e9b7a454b37c03df4b9a32d2e5b88b7c3af3cdb3 | 5,162,550,693,882 | c31e28a11409ba2a7b10a3de527aea4a8ba12157 | /src/main/java/xyz/jamesnuge/slicktest/util/BodyDefinitions.java | 2bc51a61d4ea36f83faf1a90a2d8c3d6b8a00f3e | [] | no_license | jamesnuge/slickTest | https://github.com/jamesnuge/slickTest | b86c4b1445aee064296caa63b78b22d2c56ee6a7 | f5197f4e693e14269f0f2c227434ca7e27caf2a9 | refs/heads/master | 2020-12-24T14:18:45.626000 | 2015-10-27T06:13:26 | 2015-10-27T06:13:26 | 25,918,169 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright (c) 2015 Clearbox Systems Pty. Ltd.
* http://www.clearboxsystems.com.au
*
* Disclaimer - Please Read:
* Clearbox Systems cannot accept responsibility or liability for
* any loss, damage, cost or expense users might incur as a result
* of the use of, or reliance upon, any example code or software o... | UTF-8 | Java | 1,502 | java | BodyDefinitions.java | Java | [] | null | [] | /*
* Copyright (c) 2015 Clearbox Systems Pty. Ltd.
* http://www.clearboxsystems.com.au
*
* Disclaimer - Please Read:
* Clearbox Systems cannot accept responsibility or liability for
* any loss, damage, cost or expense users might incur as a result
* of the use of, or reliance upon, any example code or software o... | 1,502 | 0.716378 | 0.712384 | 50 | 29.040001 | 24.837036 | 67 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.32 | false | false | 15 |
ced04d1d41c7e07559e273d0f5517c39f1365935 | 5,162,550,693,386 | 7e888e1f5e2780e4fe648e87ac5c41c99c62a719 | /src/Business/VisitRecord.java | 95b4153aa143b4aa9b2037dcbd42bcd5fba15be4 | [] | no_license | mayankbothra/PharmaceuticalDistributionSC | https://github.com/mayankbothra/PharmaceuticalDistributionSC | 16661146f14711dfbd8a130dfc1e1fa1ac4a8685 | a82752c05382f515cb4c94053d97816596a066ca | refs/heads/master | 2020-03-30T22:17:23.117000 | 2014-09-26T01:26:06 | 2014-09-26T01:26:06 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Business;
/**
*
* @author mayank
*/
public class VisitRecord {
private Inventory inventory;
private String dateOfVisit;
private String diagnosis;
public VisitRecord() {
}
public... | UTF-8 | Java | 809 | java | VisitRecord.java | Java | [
{
"context": "e editor.\n */\npackage Business;\n\n/**\n *\n * @author mayank\n */\npublic class VisitRecord {\n\n private Inven",
"end": 143,
"score": 0.9567444324493408,
"start": 137,
"tag": "USERNAME",
"value": "mayank"
}
] | null | [] | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Business;
/**
*
* @author mayank
*/
public class VisitRecord {
private Inventory inventory;
private String dateOfVisit;
private String diagnosis;
public VisitRecord() {
}
public... | 809 | 0.640297 | 0.640297 | 43 | 17.813953 | 17.349024 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.27907 | false | false | 15 |
c4b28ec375be5d84fe332dd112234b33a5219ef5 | 8,134,668,119,218 | 095ab0247f0f2161d88b7282b03da9e8a3ca702b | /geraFrequencia/src/main/java/com/api/services/OcorrenciasService.java | 06e7299b96f9a4514532d30d0232c8bae51338d7 | [] | no_license | julianoezequiel/0112 | https://github.com/julianoezequiel/0112 | 733d488a17bb51bd54b28d44ec08de23f807dd8e | 633be75ff95f4aa32dc49a894f54f5fdbb503547 | refs/heads/master | 2017-12-28T16:02:17.373000 | 2016-12-23T17:45:18 | 2016-12-23T17:45:18 | 68,853,919 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.api.services;
import com.api.entity.Ocorrencia;
import com.api.entity.SaidaDia;
import com.api.entity.api.jornada.HorarioM... | UTF-8 | Java | 4,423 | java | OcorrenciasService.java | Java | [
{
"context": "mport java.util.logging.Logger;\n\n/**\n *\n * @author enio.junior\n */\npublic class OcorrenciasService {\n\n privat",
"end": 505,
"score": 0.9958561658859253,
"start": 494,
"tag": "USERNAME",
"value": "enio.junior"
}
] | 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 com.api.services;
import com.api.entity.Ocorrencia;
import com.api.entity.SaidaDia;
import com.api.entity.api.jornada.HorarioM... | 4,423 | 0.662446 | 0.659959 | 96 | 45.072918 | 49.719891 | 213 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.53125 | false | false | 15 |
19abed3d40ed86594d1c4d8fe6bc10bece82a303 | 24,404,004,242,982 | 61622bd06d0590d6e64540612cbe750a0485f979 | /DLB_user.java | c12f0fcc3d43ceb508f39af737db12eec78f636b | [] | no_license | shadowUnderBrightNight/jih105-project1 | https://github.com/shadowUnderBrightNight/jih105-project1 | 401bd3ce414647eec170fec27c6162d48c640532 | 12c5906e7679a5dd7f02402b4600701d5566d086 | refs/heads/master | 2022-02-20T04:05:56.481000 | 2019-09-26T03:15:26 | 2019-09-26T03:15:26 | 208,967,559 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.io.*;
import java.util.*;
public class DLB_user<T> {
public DLB_user(){ }
//initial node in the linked list
private static Node root;
private static Node searchingNode = root;
private static TreeMap<String,Integer> searchingArray = new TreeMap<String, Integer>();
private st... | UTF-8 | Java | 7,684 | java | DLB_user.java | Java | [] | null | [] | import java.io.*;
import java.util.*;
public class DLB_user<T> {
public DLB_user(){ }
//initial node in the linked list
private static Node root;
private static Node searchingNode = root;
private static TreeMap<String,Integer> searchingArray = new TreeMap<String, Integer>();
private st... | 7,684 | 0.538001 | 0.536439 | 233 | 30.97854 | 23.664219 | 118 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.523605 | false | false | 15 |
b13e878ee5ab3b05cbf70eaaa48fbf7ecf0ec48c | 29,755,533,490,439 | 2afd5bcbdf62dd644d3d9b04486bffc736f59a67 | /src/main/java/sandbox/domain/index/EngineerIndex.java | 32e56de933de395257bdde19e47cbf00b62df69c | [] | no_license | t30k/java-sandbox | https://github.com/t30k/java-sandbox | f03546d0f82ad43c5a01c22b32b6ad8ea80f2079 | d6e5af26fee6e49e5add803a3d14e04a75ada0a1 | refs/heads/master | 2020-03-30T07:45:28.716000 | 2018-09-30T12:17:29 | 2018-09-30T12:17:29 | 150,964,683 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package sandbox.domain.index;
import lombok.Data;
@Data
public class EngineerIndex extends AbstractJobIndex {
private String jobId;
private String jobName;
}
| UTF-8 | Java | 169 | java | EngineerIndex.java | Java | [] | null | [] | package sandbox.domain.index;
import lombok.Data;
@Data
public class EngineerIndex extends AbstractJobIndex {
private String jobId;
private String jobName;
}
| 169 | 0.769231 | 0.769231 | 10 | 15.9 | 16.920107 | 53 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 15 |
9e308fd5bd5c0a619f6faaaf155e40521b933abc | 9,148,280,386,957 | 682eeef2f2fe321ccdd5ac58f0f2ceecb329c6e5 | /app/src/main/java/com/xwtiger/devrescollect/utils/StreamUtils.java | 1683d2d61b7320c08fe86415375374a73ed7ba3e | [] | no_license | dreamofxw/DevResCollect | https://github.com/dreamofxw/DevResCollect | 4a741ba63d0760c6fe8fffa172fc8f3dcc72b366 | 89a0f0ae78517bb4cc6c5b1334a140eb0fe9d72d | refs/heads/master | 2021-06-04T17:26:06.338000 | 2021-04-14T14:09:41 | 2021-04-14T14:09:41 | 109,081,823 | 2 | 1 | null | false | 2019-12-17T05:43:26 | 2017-11-01T03:22:19 | 2019-12-17T03:59:30 | 2019-12-17T05:43:26 | 25,295 | 0 | 0 | 0 | Java | false | false | package com.xwtiger.devrescollect.utils;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
/**
* Created by Busap-112 on 2017/12/18.
*/
public class StreamUtils {
private static byte[] streamToBytes(InputStream is) {
ByteArrayOutputStream os = new ByteArrayOutputStream(1024);
... | UTF-8 | Java | 584 | java | StreamUtils.java | Java | [
{
"context": "am;\nimport java.io.InputStream;\n\n/**\n * Created by Busap-112 on 2017/12/18.\n */\n\npublic class StreamUtils {\n\n\n",
"end": 136,
"score": 0.999596357345581,
"start": 127,
"tag": "USERNAME",
"value": "Busap-112"
}
] | null | [] | package com.xwtiger.devrescollect.utils;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
/**
* Created by Busap-112 on 2017/12/18.
*/
public class StreamUtils {
private static byte[] streamToBytes(InputStream is) {
ByteArrayOutputStream os = new ByteArrayOutputStream(1024);
... | 584 | 0.589041 | 0.553082 | 26 | 21.461538 | 20.292536 | 67 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.384615 | false | false | 15 |
2dad5d9ccdf8e1288f5487d8b536011395f94414 | 31,671,088,893,996 | 4f577c88b7e24618cc4cf4b2db626eabdd5074ae | /longjian-houseqm-domain/src/main/java/com/longfor/longjian/houseqm/domain/internalservice/FileResourceService.java | 4f486b4ef795202529867f4c609526fcabd5046c | [] | no_license | zhourihu5/longjian-houseqm-server | https://github.com/zhourihu5/longjian-houseqm-server | 4744172b1978337498d96f7099c4ae455ca47b92 | 24322ac37cde3b5b637554ffb1cfc1d181ad1e32 | refs/heads/master | 2023-08-04T18:10:36.302000 | 2019-03-29T08:52:05 | 2019-03-29T08:52:05 | 409,153,730 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.longfor.longjian.houseqm.domain.internalservice;
import com.longfor.longjian.houseqm.po.zj2db.FileResource;
import java.util.ArrayList;
import java.util.List;
/**
* @author Houyan
* @date 2018/12/21 0021 17:13
*/
public interface FileResourceService {
/**
* @param attachments
* @return ... | UTF-8 | Java | 612 | java | FileResourceService.java | Java | [
{
"context": ".ArrayList;\nimport java.util.List;\n\n/**\n * @author Houyan\n * @date 2018/12/21 0021 17:13\n */\npublic interfa",
"end": 195,
"score": 0.8296417593955994,
"start": 189,
"tag": "NAME",
"value": "Houyan"
},
{
"context": "jian.houseqm.po.zj2db.FileResource>\n * @aut... | null | [] | package com.longfor.longjian.houseqm.domain.internalservice;
import com.longfor.longjian.houseqm.po.zj2db.FileResource;
import java.util.ArrayList;
import java.util.List;
/**
* @author Houyan
* @date 2018/12/21 0021 17:13
*/
public interface FileResourceService {
/**
* @param attachments
* @return ... | 612 | 0.736928 | 0.683007 | 23 | 25.608696 | 27.865732 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.26087 | false | false | 15 |
4494a6c5ac4e8aadcde512ec77162043477b0dda | 28,398,323,800,514 | 25ce2693f627c942f7c6fedc5b1b88745d7a7e36 | /app/src/main/java/com/test/test2app/VibratorUtil.java | 2505a7e1b3d9bbdf49df478e4531d380ef44e41c | [] | no_license | Zhaoyuntao/ExcelReader | https://github.com/Zhaoyuntao/ExcelReader | 204812b78ce82657c2282fa4cf8ae024a8d36828 | 211267098b814a8f08cdcea1a302f6c7fe92c79c | refs/heads/master | 2023-02-21T20:16:33.890000 | 2020-08-17T11:51:59 | 2020-08-17T13:58:27 | 288,138,533 | 0 | 0 | null | false | 2020-08-17T13:58:29 | 2020-08-17T09:31:03 | 2020-08-17T09:33:22 | 2020-08-17T13:58:28 | 40,157 | 0 | 0 | 0 | Java | false | false | package com.test.test2app;
import android.content.Context;
import android.os.Build;
import android.os.VibrationEffect;
import android.os.Vibrator;
import static android.content.Context.VIBRATOR_SERVICE;
/**
* created by zhaoyuntao
* on 2019-10-23
* description:a vibrator tool
*/
public class VibratorUtil {
p... | UTF-8 | Java | 827 | java | VibratorUtil.java | Java | [
{
"context": "ontent.Context.VIBRATOR_SERVICE;\n/**\n * created by zhaoyuntao\n * on 2019-10-23\n * description:a vibrator tool\n ",
"end": 233,
"score": 0.9997013211250305,
"start": 223,
"tag": "USERNAME",
"value": "zhaoyuntao"
}
] | null | [] | package com.test.test2app;
import android.content.Context;
import android.os.Build;
import android.os.VibrationEffect;
import android.os.Vibrator;
import static android.content.Context.VIBRATOR_SERVICE;
/**
* created by zhaoyuntao
* on 2019-10-23
* description:a vibrator tool
*/
public class VibratorUtil {
p... | 827 | 0.622733 | 0.605804 | 31 | 25.67742 | 20.346018 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.419355 | false | false | 15 |
9c74352f9cb8751af18a8fc4f5bcc170abccd63b | 15,281,493,683,302 | 7308c40ed541812e4d2a3d490c52383039f12526 | /src/CD.java | 2fbcfd7dd7e8a3c2e759c661bcebdb3c13357d8d | [] | no_license | alex-tek/bookstore_management_system | https://github.com/alex-tek/bookstore_management_system | b5be86ae53fe4862290a01beb5fd481557fc54dc | f1cf87b4a6449d040662f8d0555281ee7d5d2201 | refs/heads/main | 2023-04-07T04:31:38.772000 | 2021-04-13T04:38:36 | 2021-04-13T04:38:36 | 357,425,040 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
* This is the class CD a subclass of Product with it's own unique set of identifiers.
*
* @author Alexander Tekleab
*/
public ... | UTF-8 | Java | 2,796 | java | CD.java | Java | [
{
"context": " it's own unique set of identifiers.\n *\n * @author Alexander Tekleab\n */\npublic class CD extends Product {\n\n // cre",
"end": 308,
"score": 0.9998907446861267,
"start": 291,
"tag": "NAME",
"value": "Alexander Tekleab"
}
] | 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.
*/
/**
* This is the class CD a subclass of Product with it's own unique set of identifiers.
*
* @author <NAME>
*/
public class CD ex... | 2,785 | 0.628755 | 0.628755 | 95 | 28.43158 | 28.003628 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.389474 | false | false | 15 |
38772792502d0f1239e0ff4ce34c56b3a0a5a7d2 | 19,688,130,152,996 | dc7acbebcef1c11b61a2f4eb46640c0dd6c298a0 | /src/krypton/MainKrypton.java | 00222029e6bb6b83e17eb9a027c0aea3b4a7d163 | [] | no_license | dark-knight-p/Kerberose-client | https://github.com/dark-knight-p/Kerberose-client | cbcdbc95ed1a5efb7ad85f2f889b7747de1541bd | 4ad1f864c5205fa9f0702cbdf8edd180151fc705 | refs/heads/master | 2020-08-10T17:22:47.153000 | 2019-10-11T08:37:28 | 2019-10-11T08:37:28 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package krypton;
import java.awt.Color;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileFilter;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.nio.file.Files;
import java.security.KeyFactory;
import... | UTF-8 | Java | 34,202 | java | MainKrypton.java | Java | [
{
"context": "tComponents();\n email=emails;\n pass=passs;\n }\n //sends email\n public void sendmai",
"end": 1572,
"score": 0.6102962493896484,
"start": 1567,
"tag": "PASSWORD",
"value": "passs"
}
] | null | [] | package krypton;
import java.awt.Color;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileFilter;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.nio.file.Files;
import java.security.KeyFactory;
import... | 34,207 | 0.638004 | 0.626221 | 716 | 46.768158 | 32.837833 | 202 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.833799 | false | false | 15 |
0f9f413b499ba0f161c2e7476c79d00229df411a | 8,014,409,012,123 | cec3040e61f714212e1ee68af117dd609c3d35ad | /DeleteKey.java | f47ede74eee9375faf83ecc15ac202c63a712e8c | [] | no_license | evilninja6726/BinarySearchTree | https://github.com/evilninja6726/BinarySearchTree | 25876d5b51fafe2855a3fd73b2bb3ad643240145 | 74bb7916517bdae8e1f1510f9534b49af118faca | refs/heads/main | 2023-03-15T14:05:47.525000 | 2021-03-10T18:59:53 | 2021-03-10T18:59:53 | 342,002,660 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package binarySearchTreeDs;
public class DeleteKey {
public static void main(String[] args) {
Node root = new Node(10);
root.left = new Node(5);
root.right = new Node(15);
root.right.left = new Node(12);
root.right.right = new Node(18);
inorder(root);
... | UTF-8 | Java | 1,471 | java | DeleteKey.java | Java | [] | null | [] | package binarySearchTreeDs;
public class DeleteKey {
public static void main(String[] args) {
Node root = new Node(10);
root.left = new Node(5);
root.right = new Node(15);
root.right.left = new Node(12);
root.right.right = new Node(18);
inorder(root);
... | 1,471 | 0.476547 | 0.469069 | 51 | 26.843138 | 15.371698 | 52 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.588235 | false | false | 15 |
308bdc067f1b91b925ce845fde7b045a635f0250 | 8,014,409,012,747 | 3200d0ece26228cbda616f67b379b15f57192a97 | /ClassSystem/src/ClassController/ClassInsertController.java | 849405aafab4891cfff7ff2da6b343554e2e022e | [] | no_license | hmpark410/enroll-in-classes | https://github.com/hmpark410/enroll-in-classes | ffdf9a8b300256aac5026330480499d66777b2a9 | 95a8fcab4febe944417398b17ba103477c792db2 | refs/heads/master | 2020-03-21T09:32:18.952000 | 2018-06-23T14:01:52 | 2018-06-23T14:01:52 | 138,404,768 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ClassController;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import ClassService.StudentService;
import ClassService.classService;
import ClassVO.StudentVO;
import ClassVO.classVO;
... | UTF-8 | Java | 1,458 | java | ClassInsertController.java | Java | [] | null | [] | package ClassController;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import ClassService.StudentService;
import ClassService.classService;
import ClassVO.StudentVO;
import ClassVO.classVO;
... | 1,458 | 0.757202 | 0.757202 | 43 | 31.906977 | 23.07905 | 117 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.232558 | false | false | 15 |
3e77f4c0cbaf17369c46f8757031e909986421fe | 25,323,127,215,781 | ec345015510536f7c72afac5919d0167cbe08c58 | /src/main/java/ar/com/jmh/web/service/IComisionService.java | 01e4749de9881dc9d3dfc2f5963395604776e991 | [] | no_license | jherrera86/inscripcion-web | https://github.com/jherrera86/inscripcion-web | f4890927323bbdac5e42e84790fcc7b050cb10ef | 5f12581aafe8f5f8721e8ef3d6d2a9f7ddb15ef0 | refs/heads/master | 2020-03-23T16:38:20.113000 | 2018-07-21T14:54:48 | 2018-07-21T14:54:48 | 105,398,699 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ar.com.jmh.web.service;
import java.io.Serializable;
import ar.com.jmh.web.bean.InscripcionFiltroBeanPost;
import ar.com.jmh.web.bean.UsuarioBean;
import ar.com.jmh.web.bean.respuesta.RespuestaBean;
import ar.com.jmh.web.beanPost.ComisionBeanPost;
import ar.com.jmh.web.beanPost.MigracionComisionBeanPost;
impo... | UTF-8 | Java | 1,215 | java | IComisionService.java | Java | [] | null | [] | package ar.com.jmh.web.service;
import java.io.Serializable;
import ar.com.jmh.web.bean.InscripcionFiltroBeanPost;
import ar.com.jmh.web.bean.UsuarioBean;
import ar.com.jmh.web.bean.respuesta.RespuestaBean;
import ar.com.jmh.web.beanPost.ComisionBeanPost;
import ar.com.jmh.web.beanPost.MigracionComisionBeanPost;
impo... | 1,215 | 0.860082 | 0.860082 | 26 | 45.73077 | 38.991673 | 123 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.230769 | false | false | 15 |
53195fe17e04ae13c026a41bdcea0e9971e97aac | 16,028,817,998,181 | 9ed920b00efde9e6d5b7e70af4a3b1aa579b3699 | /common/src/java/com/strategicgains/repoexpress/adapter/StringToByteArrayIdAdapter.java | 71af494f321196216ebe9cf79a674f4d5a73181b | [
"Apache-2.0"
] | permissive | dinushadev/RepoExpress | https://github.com/dinushadev/RepoExpress | 758dbac59c0a4ed08f7a5e51e969f92f280c0ba5 | 5daf03eb0173b8b66eb739a24584592214156d9a | refs/heads/master | 2020-12-30T19:37:37.398000 | 2013-08-26T12:05:39 | 2013-08-26T12:05:39 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
Copyright 2012, Strategic Gains, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writ... | UTF-8 | Java | 1,235 | java | StringToByteArrayIdAdapter.java | Java | [
{
"context": "e[]) using the UTF-8 character set.\n * \n * @author toddf\n * @since Oct 25, 2012\n */\npublic class StringToB",
"end": 847,
"score": 0.9996553063392639,
"start": 842,
"tag": "USERNAME",
"value": "toddf"
}
] | null | [] | /*
Copyright 2012, Strategic Gains, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writ... | 1,235 | 0.746559 | 0.731984 | 44 | 27.068182 | 27.596441 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.772727 | false | false | 15 |
99a07ab21fe363e23a7f95e52e58ea38032a7b35 | 9,783,935,569,019 | 2cf1c9c97a6c0bb7ccb7616c11f15f42d00a61d5 | /src/ShoppingOffer.java | 2da4b11ac62b36d1e628e6f3d2d556e8bfc6048b | [] | no_license | BrunoDeNadaiSarnaglia/LeetCode | https://github.com/BrunoDeNadaiSarnaglia/LeetCode | 6b0410887de979a85e77d939e188f957262026fd | e4e514bc75949ece617a7da7ebeec80a273faad4 | refs/heads/master | 2021-01-17T02:42:25.389000 | 2018-07-09T02:20:36 | 2018-07-09T02:20:36 | 58,097,400 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import java.util.List;
import java.util.stream.IntStream;
public class ShoppingOffer {
public int shoppingOffers(List<Integer> price, List<List<Integer>> special, List<Integer> needs) {
List<Integer> zerosList = IntStream.of(0).limit(needs.size()).collect(Collectors.toList());
}
}
| UTF-8 | Java | 291 | java | ShoppingOffer.java | Java | [] | null | [] | import java.util.List;
import java.util.stream.IntStream;
public class ShoppingOffer {
public int shoppingOffers(List<Integer> price, List<List<Integer>> special, List<Integer> needs) {
List<Integer> zerosList = IntStream.of(0).limit(needs.size()).collect(Collectors.toList());
}
}
| 291 | 0.745704 | 0.742268 | 8 | 35.375 | 37.828354 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.625 | false | false | 15 |
d15c7d9c1469884ebf1665e6c3cc0f47f92c5ab4 | 31,379,031,130,926 | 6deafe35510ef4ed8a7bbca5886b51c866200df5 | /app/src/main/java/cf/seulbi/world/MainActivity.java | fc5cef18812d4f254b553f356472d70b15b4cef3 | [] | no_license | closers-seulbi/SeulbiWorld | https://github.com/closers-seulbi/SeulbiWorld | d03362ede527edb3ce8f674c149715f532a41177 | 20606fc245242567147f7a58f301e21f84b259a9 | refs/heads/master | 2021-01-20T17:15:29.834000 | 2016-07-27T17:48:34 | 2016-07-27T17:48:34 | 63,684,787 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cf.seulbi.world;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.res.Configuration;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu... | UTF-8 | Java | 4,967 | java | MainActivity.java | Java | [] | null | [] | package cf.seulbi.world;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.res.Configuration;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu... | 4,967 | 0.592856 | 0.592425 | 139 | 32.43885 | 25.766834 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.431655 | false | false | 15 |
72e60a35e18c66159fda18d3696e699b260eda7e | 17,557,826,372,220 | 5ff7ab5931b182b795f64ef4e5d51729d3ea4299 | /MySpringCloud/Seckill-master/src/main/java/cn/hfbin/seckill/annotations/AccessLimit.java | f21665406f23ee49be81e83ba4bfb42a0c8c6aa5 | [] | no_license | bellmit/mystudy-1 | https://github.com/bellmit/mystudy-1 | c89a77cb2a734e01e5115f555d1ea5b520617cf7 | 4f26a2e046cbee35bbde6fcb30d7c534612d8e05 | refs/heads/master | 2023-03-26T23:22:50.524000 | 2019-07-09T07:28:04 | 2019-07-09T07:28:04 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn.hfbin.seckill.annotations;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
*
* @Title: AccessLimit.java
* @Package cn.hfbin.seckill.annotations
* @Descrip... | UTF-8 | Java | 637 | java | AccessLimit.java | Java | [
{
"context": " \n * @Description: TODO(用一句话描述该文件做什么) \n * @author 刘云升 \n * @date 2019年6月12日 下午5:59:55 \n * Copyright (c)",
"end": 360,
"score": 0.9997915029525757,
"start": 357,
"tag": "NAME",
"value": "刘云升"
}
] | null | [] | package cn.hfbin.seckill.annotations;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
*
* @Title: AccessLimit.java
* @Package cn.hfbin.seckill.annotations
* @Descrip... | 637 | 0.753356 | 0.719799 | 23 | 24.913044 | 18.379841 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.478261 | false | false | 15 |
d6890fea14c45642d44aab16e3aad20cc1937695 | 1,623,497,639,600 | d2a92683e75b0788c5a1bff23bd505025bf93730 | /movie_management/src/main/java/org/movie/service/impl/ExecutiveStaffInfoServiceImpl.java | 9a2e8c441252563b909586504be76c561eb96dc5 | [] | no_license | FHouse/buyticket | https://github.com/FHouse/buyticket | 855c17fc4912c0d7fc8b9090740a2f89524bb4ef | 1884cbe5f04e113571f7d8631110dc205c4dcb8a | refs/heads/master | 2021-01-12T01:25:27.309000 | 2017-04-12T06:56:26 | 2017-04-12T06:56:26 | 78,383,734 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.movie.service.impl;
import org.movie.dao.inf.ExecutiveStaffInfoDao;
import org.movie.entity.ExecutiveStaffInfo;
import org.movie.entity.FilmInfo;
import org.movie.service.inf.ExecutiveStaffInfoService;
import org.movie.util.CheckVer;
import org.movie.util.PageBean;
import org.movie.util.UUIDUtil;
import or... | UTF-8 | Java | 2,293 | java | ExecutiveStaffInfoServiceImpl.java | Java | [
{
"context": "tional;\n\nimport java.util.List;\n\n/**\n * Created by admin on 2017/3/14.\n */\n@Service( \"executiveStaffInfoSe",
"end": 597,
"score": 0.9684938788414001,
"start": 592,
"tag": "USERNAME",
"value": "admin"
}
] | null | [] | package org.movie.service.impl;
import org.movie.dao.inf.ExecutiveStaffInfoDao;
import org.movie.entity.ExecutiveStaffInfo;
import org.movie.entity.FilmInfo;
import org.movie.service.inf.ExecutiveStaffInfoService;
import org.movie.util.CheckVer;
import org.movie.util.PageBean;
import org.movie.util.UUIDUtil;
import or... | 2,293 | 0.774574 | 0.769768 | 65 | 34.215385 | 34.1366 | 154 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.476923 | false | false | 15 |
6a91d215707ebba27bbe9b28bf98073cd5bdc2b0 | 28,741,921,177,243 | f16e571156c71296b7644f2f2b7d17238e478675 | /src/main/java/za/ac/cput/views/Veterinarian/GetAllVeterinarian.java | 7f7206762a1cc561598546441d50788760c5a750 | [] | no_license | shaqXI/ADP3AssignmentGroup09Client | https://github.com/shaqXI/ADP3AssignmentGroup09Client | 12bb8ba7e9b43e3bf0889a3fcb4667f6791456b6 | be9109e036e64e621abdd6fc7dbb414bf7e7ace3 | refs/heads/master | 2023-09-03T19:45:59.276000 | 2021-10-20T18:21:34 | 2021-10-20T18:21:34 | 418,632,161 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package za.ac.cput.views.Veterinarian;
/*
GetAllVeterinarian.java
Author: Nonhlahla Hlungwani (218160658)
Date: 19 October 2021
*/
import za.ac.cput.client.VeterinarianHttpClient;
import za.ac.cput.entity.Veterinarian;
import za.ac.cput.views.VeterinarianMenu;
import javax.swing.*;
import javax.swing.table... | UTF-8 | Java | 5,130 | java | GetAllVeterinarian.java | Java | [
{
"context": "narian;\n/*\n GetAllVeterinarian.java\n Author: Nonhlahla Hlungwani (218160658)\n Date: 19 October 2021\n */\nimport ",
"end": 101,
"score": 0.9998604655265808,
"start": 82,
"tag": "NAME",
"value": "Nonhlahla Hlungwani"
}
] | null | [] | package za.ac.cput.views.Veterinarian;
/*
GetAllVeterinarian.java
Author: <NAME> (218160658)
Date: 19 October 2021
*/
import za.ac.cput.client.VeterinarianHttpClient;
import za.ac.cput.entity.Veterinarian;
import za.ac.cput.views.VeterinarianMenu;
import javax.swing.*;
import javax.swing.table.DefaultTable... | 5,117 | 0.634698 | 0.61384 | 154 | 32.305195 | 27.22044 | 205 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.811688 | false | false | 15 |
e7f7682cf1dee6f4b90e5f87b32a6e8e910d81f6 | 16,793,322,183,376 | b3ca9a238d989adc4105014c19c17717dfe03ef4 | /lng-system-manage/article-core/src/main/java/com/lng168/article/rest/modular/member/MemberServiceImpl.java | 2a75a7f6bcd9ea7c3ea87eee40128d6052ded61a | [] | no_license | shanghai-yiyun/lng-system-guns | https://github.com/shanghai-yiyun/lng-system-guns | 2b7f074abcae83f4c80f0292dad71c034407ece5 | 59acad50e80757bc66386549a2d971b26a9a4717 | refs/heads/master | 2022-10-16T23:18:05.109000 | 2019-07-04T11:49:53 | 2019-07-04T11:49:53 | 195,044,992 | 1 | 0 | null | false | 2022-10-12T20:28:44 | 2019-07-03T12:00:43 | 2019-07-04T11:50:26 | 2022-10-12T20:28:42 | 5,029 | 0 | 0 | 11 | Java | false | false | package com.lng168.article.rest.modular.member;
import com.lng168.article.api.IMemberService;
import com.lng168.article.api.model.Member;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.lng168.article.rest.common.persistence.dao.MemberMapper;
import org.springframework.stereotype.Service;
/**
* ... | UTF-8 | Java | 511 | java | MemberServiceImpl.java | Java | [
{
"context": "rvice;\n\n/**\n * <p>\n * 服务实现类\n * </p>\n *\n * @author lng168\n * @since 2019-07-04\n */\n@Service\npublic class Me",
"end": 362,
"score": 0.9994744062423706,
"start": 356,
"tag": "USERNAME",
"value": "lng168"
}
] | null | [] | package com.lng168.article.rest.modular.member;
import com.lng168.article.api.IMemberService;
import com.lng168.article.api.model.Member;
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import com.lng168.article.rest.common.persistence.dao.MemberMapper;
import org.springframework.stereotype.Service;
/**
* ... | 511 | 0.780439 | 0.734531 | 20 | 24.049999 | 27.66853 | 100 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.35 | false | false | 15 |
4a49335c8bef51f03249d0a2798e44eded456535 | 16,793,322,180,485 | 1e4a2a28549fdc0512f99a4d456387d24a83aca0 | /src/network/NetworkManager.java | 8d789e9957b5d19fe150e3a66f2293823720636a | [] | no_license | summerleafs/bodyguard | https://github.com/summerleafs/bodyguard | 3ba0eb69d76ea38e582a5598e49550957efc8a78 | c05ecaabacd03e80ce6635b629c2cb412bb9ca0c | refs/heads/master | 2015-08-11T12:26:10.337000 | 2014-05-06T03:13:45 | 2014-05-06T03:13:45 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package network;
public class NetworkManager {
///////////////////////////////////位置相关//////////////////////////////////
public static LocationRecv loc_receiver = null;
public static LocationSender loc_uploader = null;
///////////////////////////////////////////////////////////////////////////////
////////////... | UTF-8 | Java | 914 | java | NetworkManager.java | Java | [] | null | [] | package network;
public class NetworkManager {
///////////////////////////////////位置相关//////////////////////////////////
public static LocationRecv loc_receiver = null;
public static LocationSender loc_uploader = null;
///////////////////////////////////////////////////////////////////////////////
////////////... | 914 | 0.353741 | 0.353741 | 18 | 48 | 35.28141 | 96 | false | false | 0 | 0 | 0 | 0 | 96 | 0.294785 | 1.055556 | false | false | 15 |
9ecdc7a4d981edeb90efb91399a325dee3866258 | 6,708,738,975,473 | d0bfc9d12bf822bb2f93e5e1ec38fffe69353253 | /benefits/benefits-moudle/benefits-bean/src/main/java/com/lx/benefits/bean/entity/jdOrder/JdMerchantOrder.java | 8d0b48d445cbe5f4f93d6f66a373cde6c9986d3d | [] | no_license | wuyizhong/SpringFramework.wangmeng.definition | https://github.com/wuyizhong/SpringFramework.wangmeng.definition | 11f3f2958079baad8e4f39a7b6953a87c29fde5f | dd346624d89150836f4a26f1be21192602376b13 | refs/heads/master | 2020-07-23T23:15:23.948000 | 2019-09-09T02:51:36 | 2019-09-09T02:51:36 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.lx.benefits.bean.entity.jdOrder;
import lombok.Data;
import java.util.Date;
@Data
public class JdMerchantOrder {
private Long id;
private Long subOrderCode;
private String merchantOrderId;
private Double freight;
private Double orderPrice;
private Double orderNakedPrice;
... | UTF-8 | Java | 733 | java | JdMerchantOrder.java | Java | [] | null | [] | package com.lx.benefits.bean.entity.jdOrder;
import lombok.Data;
import java.util.Date;
@Data
public class JdMerchantOrder {
private Long id;
private Long subOrderCode;
private String merchantOrderId;
private Double freight;
private Double orderPrice;
private Double orderNakedPrice;
... | 733 | 0.729877 | 0.729877 | 46 | 14.956522 | 15.250027 | 44 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.478261 | false | false | 3 |
97a996805c25d7dde804168e9893c33777f12d02 | 28,217,935,184,652 | 179c50346b426f693ff4cf1b826a20c5aa405fe9 | /betmen-core/src/main/java/betmen/core/repository/JobsDao.java | 5bfcd1bdd211446ce14b0f13d1968e84f4f6635b | [] | no_license | bordozer/totalizator | https://github.com/bordozer/totalizator | 0c56e4be5e74725c0fb233cf059960170ed8888b | 0b12b0f031c557aad34c26a243f23a42170daa70 | refs/heads/master | 2021-04-22T12:58:55.160000 | 2017-09-28T07:59:23 | 2017-09-28T07:59:23 | 30,876,808 | 3 | 3 | null | false | 2016-05-31T07:40:56 | 2015-02-16T16:27:34 | 2016-05-31T07:39:39 | 2016-05-27T14:14:22 | 36,411 | 2 | 1 | 0 | Java | null | null | package betmen.core.repository;
import betmen.core.entity.Job;
import betmen.core.service.GenericService;
public interface JobsDao extends GenericService<Job> {
}
| UTF-8 | Java | 166 | java | JobsDao.java | Java | [] | null | [] | package betmen.core.repository;
import betmen.core.entity.Job;
import betmen.core.service.GenericService;
public interface JobsDao extends GenericService<Job> {
}
| 166 | 0.813253 | 0.813253 | 8 | 19.75 | 20.680607 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.375 | false | false | 3 |
6148a8cb565c3f7431139606cffb2026d0275a7a | 30,391,188,635,491 | 2ae30023aec859d9e31e2c5c1669db6634557184 | /src/java_0503/Java_0503.java | 3215174003a503034dac436d88bfad8b2639e05f | [] | no_license | JeversonNery/Java_0503 | https://github.com/JeversonNery/Java_0503 | 08e34a1a6781f3bb75ccd04702e29bedc274353e | 02f027c48193b80d9a3071c9795841d10f741798 | refs/heads/master | 2021-01-11T18:12:09.046000 | 2017-01-20T01:44:16 | 2017-01-20T01:44:16 | 79,514,325 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package java_0503;
import javax.swing.JOptionPane;
/**
*
* @author Jeverson Nery
*/
public class Java_0503 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
String cpf = JOptionPane.showInputDialog(null, "Informe seu CPF (só números):");
... | UTF-8 | Java | 504 | java | Java_0503.java | Java | [
{
"context": "import javax.swing.JOptionPane;\n\n/**\n *\n * @author Jeverson Nery\n */\npublic class Java_0503 {\n\n /**\n * @par",
"end": 85,
"score": 0.9998615384101868,
"start": 72,
"tag": "NAME",
"value": "Jeverson Nery"
}
] | null | [] |
package java_0503;
import javax.swing.JOptionPane;
/**
*
* @author <NAME>
*/
public class Java_0503 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
String cpf = JOptionPane.showInputDialog(null, "Informe seu CPF (só números):");
... | 497 | 0.579681 | 0.545817 | 21 | 22.857143 | 28.79862 | 94 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.47619 | false | false | 3 |
2b018dd3cbf4439eb43d7fc0154aecb9d07c2e86 | 16,131,897,204,876 | bb9462489f1be3e54035569f7f56f056782174c7 | /srcMac/SurfaceLevels/Level110.java | 8198eccd3a2e95d228fd96fe5b79cfedde7c8b6e | [] | no_license | ploticio/RPG | https://github.com/ploticio/RPG | 523cb1a8fc596d46fbf8cb8f722da77b90ad07c1 | 5df44248ddf7a132e57eefd4d455f7d0a79abc21 | refs/heads/master | 2020-03-15T08:25:35.170000 | 2018-05-15T05:15:23 | 2018-05-15T05:15:23 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package SurfaceLevels;
import java.util.ArrayList;
import Entities.Blob;
import Entities.Enemy;
import Levels.LevelCreator;
import Managers.EnemyManager;
public class Level110 extends LevelCreator{
public Level110() {
setImage("Images////grass.png");
setImage(0,0,"Images////bushEnd.png",true);
... | UTF-8 | Java | 330 | java | Level110.java | Java | [] | null | [] | package SurfaceLevels;
import java.util.ArrayList;
import Entities.Blob;
import Entities.Enemy;
import Levels.LevelCreator;
import Managers.EnemyManager;
public class Level110 extends LevelCreator{
public Level110() {
setImage("Images////grass.png");
setImage(0,0,"Images////bushEnd.png",true);
... | 330 | 0.709091 | 0.684848 | 17 | 17.411764 | 15.488359 | 45 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.117647 | false | false | 3 |
6ad122dc24fbb61101ae83461c0ae35d92c41d9c | 8,392,366,161,401 | fa9dca6f15fda15118c8d289439157b041266dce | /Validation-Manager-Web/src/main/java/net/sourceforge/javydreamercsw/validation/manager/web/ValidationManagerUI.java | 183ea707d10940039203c8d8e0a5a198e3fef9af | [] | no_license | codacy-badger/validation-manager | https://github.com/codacy-badger/validation-manager | 62627db59c7950b7fae8869f1a30bb7cfdae4b49 | 516438afd3d2c013e73c2cb72ae94c2a6cbd19f3 | refs/heads/master | 2017-12-02T08:22:43.166000 | 2017-03-15T16:21:48 | 2017-03-15T16:21:48 | 85,095,460 | 0 | 0 | null | true | 2017-03-15T16:24:17 | 2017-03-15T16:24:17 | 2017-03-14T17:56:38 | 2017-03-15T16:21:48 | 71,815 | 0 | 0 | 0 | null | null | null | package net.sourceforge.javydreamercsw.validation.manager.web;
import com.vaadin.annotations.Theme;
import com.vaadin.annotations.VaadinServletConfiguration;
import com.vaadin.data.Item;
import com.vaadin.data.Property;
import com.vaadin.data.fieldgroup.BeanFieldGroup;
import com.vaadin.data.fieldgroup.FieldGro... | UTF-8 | Java | 74,278 | java | ValidationManagerUI.java | Java | [] | null | [] | package net.sourceforge.javydreamercsw.validation.manager.web;
import com.vaadin.annotations.Theme;
import com.vaadin.annotations.VaadinServletConfiguration;
import com.vaadin.data.Item;
import com.vaadin.data.Property;
import com.vaadin.data.fieldgroup.BeanFieldGroup;
import com.vaadin.data.fieldgroup.FieldGro... | 74,278 | 0.509882 | 0.508966 | 1,593 | 44.627747 | 22.239893 | 113 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.730069 | false | false | 3 |
ef3affbb72dfe0e84819a54e6648e2cbfeda61a4 | 29,961,691,890,920 | 27880ae710a98f217ef098eed093a47ac91084a8 | /p260/app/src/main/java/com/example/student/p260/MainActivity.java | fd30e7e9764b693e6ea42f2c53b580e2375cd8b4 | [] | no_license | alakong/android-workshop- | https://github.com/alakong/android-workshop- | 1d2717df4ff93720c98a2c00a3cdd828cb5c71da | 4c0615819c3a76b34ee5065a9584fbfbe76a1607 | refs/heads/master | 2020-03-21T22:11:30.165000 | 2018-06-29T07:34:09 | 2018-06-29T07:34:09 | 139,110,103 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.student.p260;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
TextView textView,textView3;
... | UTF-8 | Java | 1,612 | java | MainActivity.java | Java | [] | null | [] | package com.example.student.p260;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
TextView textView,textView3;
... | 1,612 | 0.687814 | 0.667085 | 48 | 32.166668 | 25.439743 | 88 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.8125 | false | false | 3 |
04c2ae5e581841b7f346079c2bad567f722b35be | 28,132,035,843,067 | df537d0dbad727ea8660ab5b38905f25b67e3e51 | /src/main/java/org/jana/position/Direction.java | 778ba497532f6567811fb9ebcb9b850f27dcb2e9 | [] | no_license | rathanDev/mars-rovers | https://github.com/rathanDev/mars-rovers | 61dca3a2016639062fc05a7b10e1ebf626d37a27 | f1174df629016b6a36925837c8417159421444c9 | refs/heads/master | 2020-07-23T23:42:26.219000 | 2018-07-15T19:00:31 | 2018-07-15T19:00:31 | 94,361,554 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.jana.position;
/**
* Used to indicate direction of the Rover
*/
public enum Direction {
NORTH('N'),
EAST('E'),
SOUTH('S'),
WEST('W');
private final char letter;
Direction(char letter) {
this.letter = letter;
}
public char letter() {
return this.letter;
... | UTF-8 | Java | 1,574 | java | Direction.java | Java | [] | null | [] | package org.jana.position;
/**
* Used to indicate direction of the Rover
*/
public enum Direction {
NORTH('N'),
EAST('E'),
SOUTH('S'),
WEST('W');
private final char letter;
Direction(char letter) {
this.letter = letter;
}
public char letter() {
return this.letter;
... | 1,574 | 0.518424 | 0.518424 | 65 | 23.215385 | 18.780098 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.353846 | false | false | 3 |
ae1442f1c46c7a63d362b0fa1b4835c2abd26e0d | 20,169,166,482,955 | 69ff51db8b6503c3de876eeff722c3411e3e6562 | /sewaseven/app/src/main/java/com/sewaseven/sewaseven/SearchResults.java | be51efb4f9adb0cb62cc8cd898d26b8b2ee70528 | [] | no_license | akalankasakalasooriya/M-A-D-project | https://github.com/akalankasakalasooriya/M-A-D-project | b257636819f80f2f1ed1ad4f088b56fe5c1075c3 | 379c491c5ef29d77c7e1f5c57b2dc560371501f3 | refs/heads/master | 2022-12-22T15:45:00.221000 | 2020-10-04T10:54:37 | 2020-10-04T10:54:37 | 280,287,611 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sewaseven.sewaseven;
import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import com.google.an... | UTF-8 | Java | 2,591 | java | SearchResults.java | Java | [] | null | [] | package com.sewaseven.sewaseven;
import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import com.google.an... | 2,591 | 0.678888 | 0.678503 | 72 | 35 | 27.044203 | 120 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.611111 | false | false | 3 |
580c96307852eb9b2f51b1d34786aef5ad8f513b | 25,005,299,660,629 | 175d61ce108f0e029260ea91145328e377f6dc80 | /common/src/main/java/org/red5/server/stream/consumer/QueuedMediaDataComparator.java | 2acb0392390307d7539bb2fd12822cb7f4d2b3da | [
"Apache-2.0"
] | permissive | Red5/red5-server | https://github.com/Red5/red5-server | e4e126046cdb3757ae2d3a9a7761e3a3a8610e10 | 3ff4e67da6bc2445dd4e372131f9cd3d20a225a1 | refs/heads/master | 2023-08-28T00:36:30.077000 | 2023-07-07T20:20:42 | 2023-07-07T20:20:42 | 14,514,767 | 3,445 | 1,105 | Apache-2.0 | false | 2023-09-06T03:04:11 | 2013-11-19T05:04:10 | 2023-08-31T07:06:36 | 2023-08-25T16:26:57 | 104,174 | 3,226 | 979 | 39 | Java | false | false | package org.red5.server.stream.consumer;
import java.util.Comparator;
import org.red5.codec.AudioCodec;
import org.red5.codec.VideoCodec;
import org.red5.io.ITag;
/**
* Comparator for queued media data in file consumers.
*
* @author mondain
*/
public class QueuedMediaDataComparator implements Comparator<QueuedMe... | UTF-8 | Java | 2,201 | java | QueuedMediaDataComparator.java | Java | [
{
"context": "queued media data in file consumers.\n *\n * @author mondain\n */\npublic class QueuedMediaDataComparator implem",
"end": 246,
"score": 0.999506950378418,
"start": 239,
"tag": "USERNAME",
"value": "mondain"
}
] | null | [] | package org.red5.server.stream.consumer;
import java.util.Comparator;
import org.red5.codec.AudioCodec;
import org.red5.codec.VideoCodec;
import org.red5.io.ITag;
/**
* Comparator for queued media data in file consumers.
*
* @author mondain
*/
public class QueuedMediaDataComparator implements Comparator<QueuedMe... | 2,201 | 0.45343 | 0.421627 | 62 | 34.516129 | 24.307003 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.354839 | false | false | 3 |
20eaf22b49ef7bfc074919c61415f12f4a470cc9 | 2,207,613,257,403 | 548ad911fdec0aea1c34c10a195a165649d120a2 | /hw6/Animation.java | 511f4c8f53ce3324187709a333877c611b80cfc8 | [] | no_license | JoseMPRivera/Projects | https://github.com/JoseMPRivera/Projects | 329994b6054cee19a6fb006d22d5d4cb27974e4d | c07be48502b583b6811fc05d849aa8ff99151991 | refs/heads/master | 2020-05-22T11:39:24.218000 | 2019-05-13T02:12:33 | 2019-05-13T02:12:33 | 186,327,485 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import javax.swing.*;
import java.util.List;
import java.awt.*;
import java.util.ArrayList;
/**
* simulates animation.
*/
public class Animation {
/**
* process to display the objects.
* @param shape
* @param strategy
* @param width
* @param height
*/
public static void show(... | UTF-8 | Java | 443 | java | Animation.java | Java | [] | null | [] | import javax.swing.*;
import java.util.List;
import java.awt.*;
import java.util.ArrayList;
/**
* simulates animation.
*/
public class Animation {
/**
* process to display the objects.
* @param shape
* @param strategy
* @param width
* @param height
*/
public static void show(... | 443 | 0.625282 | 0.625282 | 30 | 13.766666 | 20.014467 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.266667 | false | false | 3 |
d0535fbfc10dc285d882ef9939a727811f6d2b60 | 4,080,218,949,794 | ee8c7235accfef4a874067dd2c229957089490ee | /MyTunes/src/mytunes/gui/controller/AddPlaylistViewController.java | 215337a7cb1131df96c3f3d681197daaf755745f | [] | no_license | JanvanZetten/MyTunes | https://github.com/JanvanZetten/MyTunes | 5913c85b18a5064e16ed814a58509a02dd3eede9 | 2d31098cea6218eb9489bc6311b5efcae4207eef | refs/heads/master | 2021-08-30T14:22:17.348000 | 2017-12-18T09:22:14 | 2017-12-18T09:22:14 | 112,165,135 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null |
package mytunes.gui.controller;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Alert;
import javafx.scene.control.Button;
import javafx.scene.control.ButtonType;
import javafx.scene.control.TextField;
import javafx.stage.Sta... | UTF-8 | Java | 1,705 | java | AddPlaylistViewController.java | Java | [
{
"context": "of a new playlist into the database.\n *\n * @author Alex, Asbjørn og Jan\n */\npublic class AddPlaylistViewCo",
"end": 517,
"score": 0.8485154509544373,
"start": 513,
"tag": "NAME",
"value": "Alex"
},
{
"context": "ew playlist into the database.\n *\n * @author Alex, A... | null | [] |
package mytunes.gui.controller;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Alert;
import javafx.scene.control.Button;
import javafx.scene.control.ButtonType;
import javafx.scene.control.TextField;
import javafx.stage.Sta... | 1,705 | 0.687793 | 0.687207 | 59 | 27.864407 | 27.464281 | 137 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.440678 | false | false | 3 |
8c767ba80ee120c8952396bc48a9c0a90ae588d5 | 32,169,305,073,765 | 1f0cb0b6f4c74ff706254baf5b028bc9417615f9 | /spring-build-commons/src/main/java/org/example/spring/repositories/commons/items/vo/CheckItemVo.java | 8d07e8ee95c2d3e5a17c2933bcbfa409efc86dca | [] | no_license | yuan50697105/spring-build-project-1 | https://github.com/yuan50697105/spring-build-project-1 | af448da5e3676a99c22aaaca6de4fb9e8ea55811 | 967fc586637146d8ab3f80bd518ed50bf70dae90 | refs/heads/master | 2022-07-22T13:45:00.442000 | 2021-06-03T02:53:19 | 2021-06-03T02:53:19 | 359,333,990 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.example.spring.repositories.commons.items.vo;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.example.spring.repositories.commons.items.po.CheckItem;
import java.io.Serializable;
@EqualsAndHashCode(callSuper = true)
@Data
public class CheckItemVo extends CheckItem implements Serializable ... | UTF-8 | Java | 323 | java | CheckItemVo.java | Java | [] | null | [] | package org.example.spring.repositories.commons.items.vo;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.example.spring.repositories.commons.items.po.CheckItem;
import java.io.Serializable;
@EqualsAndHashCode(callSuper = true)
@Data
public class CheckItemVo extends CheckItem implements Serializable ... | 323 | 0.832817 | 0.832817 | 12 | 26 | 25.179358 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.416667 | false | false | 3 |
34602c34836993ca59a85edfbf0db47eb78e248a | 18,090,402,276,123 | 269bf458e74bbf8318925dc5e2f996d3ac423a93 | /Taxi Client/com/example/taxiclient/GCMNotificationIntentService.java | 367bcd416c33c3567673f06ff20915954d372063 | [] | no_license | reubenpinto2k11/Taxis | https://github.com/reubenpinto2k11/Taxis | 18b450327dc1d13d9468d1dbde035187a10312f0 | a5129e5e53709cbbaf632c3dafe849ab3dc56273 | refs/heads/master | 2021-01-10T05:08:28.001000 | 2015-12-09T13:20:22 | 2015-12-09T13:20:22 | 47,688,252 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.taxiclient;
import java.io.IOException;
import java.util.List;
import java.util.Locale;
import android.app.IntentService;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.location.Address;
import... | UTF-8 | Java | 3,724 | java | GCMNotificationIntentService.java | Java | [] | null | [] | package com.example.taxiclient;
import java.io.IOException;
import java.util.List;
import java.util.Locale;
import android.app.IntentService;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.location.Address;
import... | 3,724 | 0.722073 | 0.715091 | 122 | 29.52459 | 25.880308 | 131 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.844262 | false | false | 3 |
14ced4e98f42993b4f7b82bc850a92196bd26f20 | 18,090,402,275,550 | dbc9a98fdfa1f74eba8cc09e6e338a8e1b582249 | /src/main/java/br/resolv/com/controller/RuleController.java | 19f54987f2ec28d0259b555f047a7c97fa788cf3 | [] | no_license | project-dokia/validator-java | https://github.com/project-dokia/validator-java | a154837a1cda1cfa700e58ac4d2807787b1be687 | c6b298176da84d03d45b5d99a755ea32aeb74d13 | refs/heads/master | 2020-03-20T18:21:44.150000 | 2019-04-14T15:42:27 | 2019-04-14T15:42:27 | 137,584,589 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.resolv.com.controller;
import static com.cloudant.client.api.query.Expression.eq;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import com.cloudant.client.api.Database;
import com.cloudant.client.api.model.FindByIndexOptions;
import com.cloudant.client.api.query.QueryBuild... | UTF-8 | Java | 3,838 | java | RuleController.java | Java | [] | null | [] | package br.resolv.com.controller;
import static com.cloudant.client.api.query.Expression.eq;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import com.cloudant.client.api.Database;
import com.cloudant.client.api.model.FindByIndexOptions;
import com.cloudant.client.api.query.QueryBuild... | 3,838 | 0.701146 | 0.69333 | 145 | 25.468966 | 26.57353 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.165517 | false | false | 3 |
e6daca32dcb11517f04a34560afcc583a8130020 | 19,327,352,836,144 | e4ed70ce77bee1e4abc05b3e0d5f2b47a30a2f1c | /src/sample/IOClass.java | 55b5ef8376418eb84b871e91bba40c3e7e010386 | [] | no_license | racidrin/ARKPGP | https://github.com/racidrin/ARKPGP | b37e05dd830db0feb9dae1be29f625d58534979f | ce37a6ac25ea3e4a6aaed4e9560e0e77ece03873 | refs/heads/master | 2017-11-24T22:21:38.531000 | 2016-07-21T08:27:31 | 2016-07-21T08:27:31 | 63,851,010 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package sample;
import java.io.*;
import java.net.URL;
import java.util.ArrayList;
/**
* Created by drinraci on 4/19/16.
*/
public class IOClass {
//The name of the file
private String fileName = null;
//The name of the file
private String fileNameToWrite = null;
// This will reference one l... | UTF-8 | Java | 2,650 | java | IOClass.java | Java | [
{
"context": "RL;\nimport java.util.ArrayList;\n\n/**\n * Created by drinraci on 4/19/16.\n */\npublic class IOClass {\n\n //The",
"end": 111,
"score": 0.999509334564209,
"start": 103,
"tag": "USERNAME",
"value": "drinraci"
}
] | null | [] | package sample;
import java.io.*;
import java.net.URL;
import java.util.ArrayList;
/**
* Created by drinraci on 4/19/16.
*/
public class IOClass {
//The name of the file
private String fileName = null;
//The name of the file
private String fileNameToWrite = null;
// This will reference one l... | 2,650 | 0.56 | 0.553962 | 105 | 24.238094 | 22.04261 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.314286 | false | false | 3 |
2c9a8aae8560ad0cdee2d7272d5768cf664e0afd | 12,266,426,616,308 | c67121318a5b9d472c44d43c134e0ce706bfa1b6 | /app/src/main/java/com/likitana/vaccin/adapter/ActualiteAdapter.java | 62397f69168a866883eb4ecb1a597a109627953a | [] | no_license | brabo-hi/vaccin | https://github.com/brabo-hi/vaccin | 4af284caca35f332dc2347cb59e09799580a4fe0 | df657391708fbce6341c2ff4e75a2369812e0369 | refs/heads/master | 2021-06-01T00:16:27.302000 | 2016-06-25T16:39:58 | 2016-06-25T16:39:58 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.likitana.vaccin.adapter;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.likitana.vaccin.R;
import com.likitana.vaccin.holder.ActualiteHolder;
import com.likitana.vaccin.object.Actualite;
import java.ut... | UTF-8 | Java | 1,110 | java | ActualiteAdapter.java | Java | [] | null | [] | package com.likitana.vaccin.adapter;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import com.likitana.vaccin.R;
import com.likitana.vaccin.holder.ActualiteHolder;
import com.likitana.vaccin.object.Actualite;
import java.ut... | 1,110 | 0.735135 | 0.734234 | 38 | 28.210526 | 27.411251 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.552632 | false | false | 3 |
a520ed7ed4d79c93029d8d0faff719b86807c101 | 4,922,032,563,788 | aa9d5ff23a74402dc42197f15ceebf3bb89607e6 | /posterita/posterita/src/main/org/posterita/beans/ChangePasswordBean.java | b2515b4e94630e2ca826a3ea9305163cb334b3f7 | [] | no_license | vcappugi/ADESVENCA | https://github.com/vcappugi/ADESVENCA | ca4f2ef25a9bce7e633185936adc9154b9ea1829 | 92f9fa4556ee99b6961e4a8a66801bfa18d78086 | refs/heads/master | 2020-03-21T20:30:01.448000 | 2018-06-28T22:16:00 | 2018-06-28T22:16:00 | 139,011,077 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Product: Posterita Web-Based POS and Adempiere Plugin
* Copyright (C) 2007 Posterita Ltd
* This file is part of POSterita
*
* POSterita is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundati... | UTF-8 | Java | 1,660 | java | ChangePasswordBean.java | Java | [
{
"context": "etPassword(String password)\r\n\t{\r\n\t\tthis.password = password;\r\n\t}\r\n\t\r\n\tpublic String getNewPassword()\r\n\t{\r\n\t\tr",
"end": 1143,
"score": 0.8999098539352417,
"start": 1135,
"tag": "PASSWORD",
"value": "password"
},
{
"context": "word(String oldPasswor... | null | [] | /**
* Product: Posterita Web-Based POS and Adempiere Plugin
* Copyright (C) 2007 Posterita Ltd
* This file is part of POSterita
*
* POSterita is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundati... | 1,662 | 0.706627 | 0.693374 | 64 | 23.9375 | 24.872095 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.0625 | false | false | 3 |
36afa403da634b651f8db0f1a0f3c14e8547f6e3 | 14,508,399,556,874 | 94411a0841c70357bfd9da4109eb0e5d176bd1d1 | /08_ApplicationMigrationPractice/Appendix_02_SourceCode_of_Commander4j_for_PostgreSQL/src/com/commander4j/html/JMenuRFPrinterList.java | 717fbe9c1ac316a06652c2f0030a67af6b6a03e7 | [] | no_license | PGECons/WG2 | https://github.com/PGECons/WG2 | 16e3b834eb94b37305b28b61b88cf55778be6a30 | e9b2ffd0421ca94a15d6e2a2738943f43f59623f | refs/heads/master | 2016-09-06T11:48:56.309000 | 2015-05-26T10:46:38 | 2015-05-26T10:46:38 | 8,720,955 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.commander4j.html;
import java.util.LinkedList;
import org.apache.log4j.Logger;
import com.commander4j.util.JPrint;
/**
* @author David
*
*/
public class JMenuRFPrinterList
{
final Logger logger = Logger.getLogger(JMenuRFPrinterList.class);
public String buildPrinterList(String selectedPrinter) {... | UTF-8 | Java | 987 | java | JMenuRFPrinterList.java | Java | [
{
"context": "mport com.commander4j.util.JPrint;\n\n/**\n * @author David\n * \n */\npublic class JMenuRFPrinterList\n{\n\n\tfinal",
"end": 151,
"score": 0.9991485476493835,
"start": 146,
"tag": "NAME",
"value": "David"
}
] | null | [] | package com.commander4j.html;
import java.util.LinkedList;
import org.apache.log4j.Logger;
import com.commander4j.util.JPrint;
/**
* @author David
*
*/
public class JMenuRFPrinterList
{
final Logger logger = Logger.getLogger(JMenuRFPrinterList.class);
public String buildPrinterList(String selectedPrinter) {... | 987 | 0.60689 | 0.593718 | 47 | 20 | 22.87989 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2 | false | false | 3 |
eb3c8457322fec7215ee1c16d5b5c0cce6bea37e | 2,826,088,509,374 | 4bf891a0bef86d1bb8257fe1be192ffd572aa725 | /snomed-graph-loader/src/main/java/org/ihtsdo/otf/snomed/loader/RelationshipProcessor.java | d26dc8e231c42ee626e7b4db293143b664a8c560 | [] | no_license | wangyougui/snomed-content-service | https://github.com/wangyougui/snomed-content-service | 5e9aeaf29111cb4003330e50538436e823015873 | 4c72c5095f1beddbef7126dcc521547cb469ff10 | refs/heads/master | 2021-05-08T14:13:31.454000 | 2017-04-28T09:52:11 | 2017-04-28T09:52:11 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Copyright 2014 IHTSDO
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* di... | UTF-8 | Java | 6,264 | java | RelationshipProcessor.java | Java | [] | null | [] | /**
* Copyright 2014 IHTSDO
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* di... | 6,264 | 0.733078 | 0.72781 | 185 | 32.859459 | 32.405235 | 143 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.583784 | false | false | 3 |
547c53528ee345efd3f481838d2f9b0a48d3faa7 | 14,267,881,396,831 | 5693a3b97cc1b4b473fa6c8fa127ed356877306d | /sudokusolver.java | 63e2fc5402055d8d8748abbd4b3d0ecbf8b8c21e | [] | no_license | zhackerx/interviewbit | https://github.com/zhackerx/interviewbit | ece335598a93719de8df6fd7dc6d6820d5f7ad8f | 5cf0787b4f097df80a80359bb852303704e48d9e | refs/heads/master | 2022-11-16T17:58:14.101000 | 2020-07-10T11:51:08 | 2020-07-10T11:51:08 | 273,755,595 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | //Sudoku Solver
public class Solution {
public void solveSudoku(ArrayList<ArrayList<Character>> bo) {
boolean row[][]=new boolean[10][10];
boolean col[][]=new boolean[10][10];
boolean box[][]=new boolean[10][10];
char[][] board=new char[10][10];
for(int i=0;i<9;i++){
... | UTF-8 | Java | 2,267 | java | sudokusolver.java | Java | [] | null | [] | //Sudoku Solver
public class Solution {
public void solveSudoku(ArrayList<ArrayList<Character>> bo) {
boolean row[][]=new boolean[10][10];
boolean col[][]=new boolean[10][10];
boolean box[][]=new boolean[10][10];
char[][] board=new char[10][10];
for(int i=0;i<9;i++){
... | 2,267 | 0.369652 | 0.348478 | 78 | 28.076923 | 17.882645 | 101 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.961538 | false | false | 3 |
e5ac54b1d98b5751611672fd0f80579b654518bd | 8,658,654,119,405 | c84eec2ca16f1199734ccad13ec8375b2922839b | /src/main/java/com/interview/service/ProductService.java | cdf5a5d2f78a341f0ca820386fd8e211ee9ab612 | [] | no_license | ppaulAritra/eCommerce | https://github.com/ppaulAritra/eCommerce | 913eb4e82c679bd092669126a2f8e8b260a52324 | b8d364141ac20dd2885471e1e067ce1a4f165fa3 | refs/heads/master | 2020-12-11T01:07:00.925000 | 2020-01-14T05:14:28 | 2020-01-14T05:14:28 | 233,761,360 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.interview.service;
import java.util.List;
import com.interview.model.Product;
public interface ProductService {
void save(Product product);
List<Product> findAll();
Product findById(Long id);
void deleteProduct(Long id);
List<Product> getMostProfitableProduct();
}
| UTF-8 | Java | 292 | java | ProductService.java | Java | [] | null | [] | package com.interview.service;
import java.util.List;
import com.interview.model.Product;
public interface ProductService {
void save(Product product);
List<Product> findAll();
Product findById(Long id);
void deleteProduct(Long id);
List<Product> getMostProfitableProduct();
}
| 292 | 0.760274 | 0.760274 | 20 | 13.6 | 15.39935 | 42 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.65 | false | false | 3 |
d4fabc2707ae6f945c0b7de99f89a2fcd56e2b64 | 28,329,604,303,477 | c3f0e488f6e7c6ff3db4d8678b4bcd120e7dcf82 | /src/main/java/ru/sberbank/jsonparser/Predict.java | 6225091fc453e7cae4985fa509f40703d2566621 | [] | no_license | vikstr/ru.sbt.prac.lab-develop | https://github.com/vikstr/ru.sbt.prac.lab-develop | 4ceb9d441691b835c9131e5e4c4c537300a5ff84 | 4372af321c34eccb4da86b23c666b028968ec6b1 | refs/heads/master | 2023-03-29T12:01:56.676000 | 2020-03-17T14:01:40 | 2020-03-17T14:01:40 | 228,042,424 | 0 | 0 | null | false | 2023-03-23T20:38:22 | 2019-12-14T15:09:29 | 2020-03-17T14:30:24 | 2023-03-23T20:38:20 | 41,623 | 0 | 0 | 2 | Java | false | false | package ru.sberbank.jsonparser;
public class Predict {
public Double prediction;
} | UTF-8 | Java | 87 | java | Predict.java | Java | [] | null | [] | package ru.sberbank.jsonparser;
public class Predict {
public Double prediction;
} | 87 | 0.770115 | 0.770115 | 5 | 16.6 | 13.484806 | 31 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 3 |
78c14af1af95d8826c3eec35f6031892c7b6d168 | 2,027,224,614,616 | f122b987b4b99580fccb7ffa468358d26e36ad6b | /util-jdk/src/main/java/com/common/jdk/rmi/naming/server/ImplExample.java | 66798d208ecdaaf8bfb6e34dc525bfde1eb47e8c | [
"MIT"
] | permissive | zcswl7961/unit-common | https://github.com/zcswl7961/unit-common | a4dd38b09b5d0bb5bc7c09f7019b0d29318bb1b8 | 5cd7ed45f745073c1cd1778a0674544dd2192e9c | refs/heads/master | 2023-01-23T22:21:19.630000 | 2023-01-18T09:31:45 | 2023-01-18T09:31:45 | 158,634,714 | 2 | 2 | MIT | false | 2023-01-18T03:36:25 | 2018-11-22T02:58:43 | 2021-12-10T08:06:02 | 2023-01-18T03:36:22 | 16,072 | 3 | 2 | 21 | Java | false | false | package com.common.jdk.rmi.naming.server;
import com.common.jdk.rmi.naming.facade.Hello;
import java.rmi.RemoteException;
import java.rmi.server.UnicastRemoteObject;
/**
* @author zhoucg
* @date 2020-03-05 10:19
*/
public class ImplExample extends UnicastRemoteObject implements Hello{
public ImplExample() th... | UTF-8 | Java | 530 | java | ImplExample.java | Java | [
{
"context": "va.rmi.server.UnicastRemoteObject;\n\n/**\n * @author zhoucg\n * @date 2020-03-05 10:19\n */\npublic class ImplEx",
"end": 190,
"score": 0.9996786117553711,
"start": 184,
"tag": "USERNAME",
"value": "zhoucg"
}
] | null | [] | package com.common.jdk.rmi.naming.server;
import com.common.jdk.rmi.naming.facade.Hello;
import java.rmi.RemoteException;
import java.rmi.server.UnicastRemoteObject;
/**
* @author zhoucg
* @date 2020-03-05 10:19
*/
public class ImplExample extends UnicastRemoteObject implements Hello{
public ImplExample() th... | 530 | 0.70566 | 0.683019 | 23 | 22.043478 | 22.17417 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.304348 | false | false | 3 |
b8200f35a91b4efd8743b4876d5485cb882a227d | 1,915,555,480,284 | 697edff945818a86000e5c2cfaa6e8d5c6107236 | /samples/spark-java-samples/src/main/java/com/waylau/spark/java/samples/sql/TimeZoneExample.java | 5a9a200ec8dbf298424dcce1606e858fb5d3dbe3 | [] | no_license | liuliuluk/apache-spark-tutorial | https://github.com/liuliuluk/apache-spark-tutorial | efedd1703a88c3a0c14d4595f43ad25bc783792d | 9bccc5bae23d15622470b9f0dbc0a34105a6a08a | refs/heads/main | 2023-08-13T10:08:22.256000 | 2021-09-09T13:57:24 | 2021-09-09T13:57:24 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Welcome to https://waylau.com
*/
package com.waylau.spark.java.samples.sql;
import org.apache.spark.sql.SparkSession;
import static org.apache.spark.sql.functions.col;
import static org.apache.spark.sql.functions.to_timestamp;
import org.apache.spark.sql.Dataset;
import org.apache.spark.sql.Row;
/**
* Time Z... | UTF-8 | Java | 1,177 | java | TimeZoneExample.java | Java | [
{
"context": "mple.\n * \n * @author <a href=\"https://waylau.com\">Way Lau</a>\n * @since 2021-09-08\n */\npublic class TimeZon",
"end": 384,
"score": 0.9998485445976257,
"start": 377,
"tag": "NAME",
"value": "Way Lau"
}
] | null | [] | /**
* Welcome to https://waylau.com
*/
package com.waylau.spark.java.samples.sql;
import org.apache.spark.sql.SparkSession;
import static org.apache.spark.sql.functions.col;
import static org.apache.spark.sql.functions.to_timestamp;
import org.apache.spark.sql.Dataset;
import org.apache.spark.sql.Row;
/**
* Time Z... | 1,176 | 0.688723 | 0.67288 | 46 | 22.347826 | 19.812401 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.521739 | false | false | 3 |
b88e3d0a953ffe6f756ff187472e9169cd9180a5 | 33,449,205,347,183 | 80794fae6eac6a9801d744b534d7879c765ae757 | /oauth2clients/src/main/java/com/multi/oauth2client/TestClient.java | 646eda43b7252df3d0e24d33d73354093fe75bbd | [] | no_license | saidikondawar/oauth2 | https://github.com/saidikondawar/oauth2 | 241693e1cb262dc9f679d267556afc8c655e9e0a | d3f12b79f45a0027e9159b770c45e2af67df2ab6 | refs/heads/master | 2021-01-10T03:55:21.488000 | 2015-09-29T07:16:23 | 2015-09-29T07:16:23 | 43,142,914 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.multi.oauth2client;
import java.util.HashMap;
public class TestClient {
/**
* @param args
*/
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
HashMap<String, String> map = new HashMap<String, String>();
map.put("a", "1");
map.put("nam... | UTF-8 | Java | 575 | java | TestClient.java | Java | [
{
"context": "ing>();\r\n\t\tmap.put(\"a\", \"1\");\r\n\t\tmap.put(\"name\", \"SA\");\r\n\t\tmap.put(\"tel\", \"010-222-3333\");\r\n\t\tmap.put(",
"end": 327,
"score": 0.5564178824424744,
"start": 325,
"tag": "NAME",
"value": "SA"
},
{
"context": "aa27-a958dc3aedc5\");\r\n\t\tmap.put... | null | [] | package com.multi.oauth2client;
import java.util.HashMap;
public class TestClient {
/**
* @param args
*/
public static void main(String[] args) throws Exception {
// TODO Auto-generated method stub
HashMap<String, String> map = new HashMap<String, String>();
map.put("a", "1");
map.put("nam... | 575 | 0.664348 | 0.565217 | 22 | 24.136364 | 23.821869 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.727273 | false | false | 3 |
4649ef521a45240dc2493c8c0c1a6570c5941583 | 25,829,933,388,536 | 84b938c8cb7797fc5f6e0f5289dcfcaa7135a8b2 | /Aeroplane and CPA/SectionB/src/QueueInterface.java | b24b6e7b68909e30c6445615ff8c040a4a72a9d9 | [] | no_license | Multramate/co120.2 | https://github.com/Multramate/co120.2 | 5b289f4d8d51545d3e1d94890a20b26a8173adc3 | 73886859ec64f102d300f6b9e047a4f9d35e538f | refs/heads/master | 2018-04-13T13:56:50.398000 | 2017-06-24T17:14:26 | 2017-06-24T17:14:26 | 81,032,888 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public interface QueueInterface<T> {
void enqueue(T newEntry);
T dequeue();
boolean isEmpty();
} | UTF-8 | Java | 106 | java | QueueInterface.java | Java | [] | null | [] | public interface QueueInterface<T> {
void enqueue(T newEntry);
T dequeue();
boolean isEmpty();
} | 106 | 0.679245 | 0.679245 | 9 | 10.888889 | 13.144027 | 36 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 3 |
73936e3815d8a4d2cf7f4b1e3779ec64d35fe011 | 36,713,380,465,242 | ec897c1152f53fa1efe994e7842cb73d5bd82d08 | /mdgen/src/hamy/mdgen/api/generator/format/aseXML/Address.java | ffbf54eb347482af3bc44808257de0d7e4d25f26 | [
"MIT"
] | permissive | hemantmurthy/mdgen | https://github.com/hemantmurthy/mdgen | 4b69e5f6805526bd35a532c1c61610dae052ad78 | 31333e4d7687526103d08b6f6772a1805cd12c7a | refs/heads/master | 2020-12-27T22:16:34.251000 | 2020-06-11T00:21:10 | 2020-06-11T00:21:10 | 238,079,485 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020... | UTF-8 | Java | 2,928 | java | Address.java | Java | [] | null | [] | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020... | 2,928 | 0.634904 | 0.622609 | 101 | 26.990099 | 27.188923 | 122 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.247525 | false | false | 3 |
7d73898b271fad076f62f99a5a92c32de26605a3 | 38,422,777,441,324 | 7773ea6f465ffecfd4f9821aad56ee1eab90d97a | /platform/platform-impl/src/com/intellij/ui/NotificationBalloonShadowBorderProvider.java | 34c68967c6bcf01da5eefcdb7f59273214206248 | [
"Apache-2.0"
] | permissive | aghasyedbilal/intellij-community | https://github.com/aghasyedbilal/intellij-community | 5fa14a8bb62a037c0d2764fb172e8109a3db471f | fa602b2874ea4eb59442f9937b952dcb55910b6e | refs/heads/master | 2023-04-10T20:55:27.988000 | 2020-05-03T22:00:26 | 2020-05-03T22:26:23 | 261,074,802 | 2 | 0 | Apache-2.0 | true | 2020-05-04T03:48:36 | 2020-05-04T03:48:35 | 2020-05-04T03:48:32 | 2020-05-03T23:01:03 | 3,386,775 | 0 | 0 | 0 | null | false | false | // Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.ui;
import com.intellij.icons.AllIcons.Ide.Shadow;
import com.intellij.openapi.ui.popup.Balloon;
import com.intellij.openapi.util.IconLoader;
import com.inte... | UTF-8 | Java | 7,063 | java | NotificationBalloonShadowBorderProvider.java | Java | [
{
"context": "rt java.awt.geom.RoundRectangle2D;\n\n/**\n * @author Alexander Lobas\n */\npublic final class NotificationBalloonShadowB",
"end": 727,
"score": 0.999832272529602,
"start": 712,
"tag": "NAME",
"value": "Alexander Lobas"
}
] | null | [] | // Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.ui;
import com.intellij.icons.AllIcons.Ide.Shadow;
import com.intellij.openapi.ui.popup.Balloon;
import com.intellij.openapi.util.IconLoader;
import com.inte... | 7,054 | 0.627637 | 0.621266 | 201 | 34.144279 | 29.39513 | 140 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.144279 | false | false | 3 |
08b70bbb290c2518b82a190bf645021654d663a3 | 38,422,777,439,195 | e30de7f482e82b14396676ec994822332e693e70 | /Arrays/sortColors.java | 2a9c9ca21d7ec7df31e282583848dab03be89e40 | [] | no_license | bhasin11/Algorithms-in-Java | https://github.com/bhasin11/Algorithms-in-Java | 2fbc8c480c80a15637880b31e1f982918ef37db2 | 08dfdecaa6be3f17a4923cb71153a175d977c454 | refs/heads/master | 2021-06-24T21:12:36.319000 | 2017-08-19T06:57:35 | 2017-08-19T06:57:35 | 71,627,025 | 3 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Given an array with n objects colored red, white or blue,
* sort them so that objects of the same color are adjacent,
* with the colors in the order red, white and blue.
* Here, we will use the integers 0, 1, and 2 to represent
* the color red, white, and blue respectively.
Note:
You are not suppose to use the... | UTF-8 | Java | 685 | java | sortColors.java | Java | [] | null | [] | /*
* Given an array with n objects colored red, white or blue,
* sort them so that objects of the same color are adjacent,
* with the colors in the order red, white and blue.
* Here, we will use the integers 0, 1, and 2 to represent
* the color red, white, and blue respectively.
Note:
You are not suppose to use the... | 685 | 0.579562 | 0.556204 | 34 | 19.17647 | 20.508923 | 72 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.911765 | false | false | 3 |
6756d865fd226999ba385a4ea7fbf821442e6c3f | 28,028,956,614,633 | 27207f4b131257bbfc1b96494fb216b66eb7bca7 | /src/main/java/com/basmaonline/ws/services/imp/UserServiceImpl.java | 20b48f1b03ab2b935b735ad07b294c6f87f1e085 | [] | no_license | reqqi502/lateeest_Resrve_Spring | https://github.com/reqqi502/lateeest_Resrve_Spring | 8d208fcc77144d30b60531c53e593266d50bbf1f | 1a3eec29139eb4c2a0139ee9dc4afb87da5965ee | refs/heads/master | 2023-04-15T15:15:49.832000 | 2021-04-27T16:02:47 | 2021-04-27T16:02:47 | 362,171,862 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.basmaonline.ws.services.imp;
import java.util.ArrayList;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.userdetails.User;
import org.springframework.security.core.userdetails.UserDetails;
import org.spring... | UTF-8 | Java | 3,315 | java | UserServiceImpl.java | Java | [] | null | [] | package com.basmaonline.ws.services.imp;
import java.util.ArrayList;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.userdetails.User;
import org.springframework.security.core.userdetails.UserDetails;
import org.spring... | 3,315 | 0.774661 | 0.774057 | 122 | 26.172131 | 27.748487 | 96 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.737705 | false | false | 3 |
9815cad4626a6656b496789189e420cc830f92bd | 28,028,956,615,488 | f9654fdf0eeb3dc15591963fd6b8bdb3e4106426 | /src/constructors/ConstructorOverloading2.java | 5701027cc8900b639b4e68d4af471cd78d1afc2e | [] | no_license | srihari201/Loops | https://github.com/srihari201/Loops | 0ca53f5862698445fcf75cac4c86ab5306824988 | 2970c9ebddc2be801e4ad73fba5596a7a2129978 | refs/heads/master | 2023-06-03T10:20:05.434000 | 2021-06-16T07:50:25 | 2021-06-16T07:50:25 | 377,395,639 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package constructors;
public class ConstructorOverloading2 {
int a = 45;
ConstructorOverloading2() {
System.out.println("zero arg constructor");
}
ConstructorOverloading2(int a) {
this();
System.out.println("int arg constructor");
}
ConstructorOverloading2(double b) {
this(45);
System.out.println(... | UTF-8 | Java | 545 | java | ConstructorOverloading2.java | Java | [] | null | [] | package constructors;
public class ConstructorOverloading2 {
int a = 45;
ConstructorOverloading2() {
System.out.println("zero arg constructor");
}
ConstructorOverloading2(int a) {
this();
System.out.println("int arg constructor");
}
ConstructorOverloading2(double b) {
this(45);
System.out.println(... | 545 | 0.717431 | 0.695413 | 29 | 17.793104 | 18.846712 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.310345 | false | false | 3 |
9a66b81560ddbe7fcd440b63fd3c0d557cce0a56 | 19,997,367,798,461 | 2756b8b5f491716ab09b672c8082b3d008ee2628 | /designer/src/com/android/tools/idea/uibuilder/handlers/motion/property2/action/AddCustomFieldAction.java | ce26215492f254934afba629abadbb31caa5fbe7 | [] | no_license | briskemen/android | https://github.com/briskemen/android | 26e0b24cd2f407fd6f4c1976d49c35b1c03330a5 | 856ee45046de83d8cf149a7cc081225bd55279c2 | refs/heads/master | 2022-10-11T08:33:13.126000 | 2020-06-12T15:49:32 | 2020-06-12T15:50:25 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... | UTF-8 | Java | 3,249 | java | AddCustomFieldAction.java | Java | [] | null | [] | /*
* Copyright (C) 2018 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... | 3,249 | 0.779932 | 0.776239 | 74 | 42.905407 | 31.827732 | 126 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.716216 | false | false | 3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.