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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
57d7f93b9c1d3f0f38d0019aad1db9bd2a199330 | 15,461,882,267,230 | 18269ed6f1a93b22a11b5b3e30f3a019316d01c2 | /app/models/Spell.java | e128b35ace8d2f4f48b60572ab65443668cc6483 | [
"Apache-2.0"
] | permissive | FaHeymann/HSDeckHub | https://github.com/FaHeymann/HSDeckHub | 2a1659c187654a62422027fb8237ea73cbe3a99f | a2a77d34651e509b111caf0d6c88a400455c534d | refs/heads/master | 2021-01-10T17:16:48.952000 | 2016-05-05T22:59:58 | 2016-05-05T22:59:58 | 53,889,754 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package models;
import javax.persistence.DiscriminatorValue;
import javax.persistence.Entity;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
@Entity
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorValue("spell")
public class Spell extends Card {
... | UTF-8 | Java | 847 | java | Spell.java | Java | [] | null | [] | package models;
import javax.persistence.DiscriminatorValue;
import javax.persistence.Entity;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
@Entity
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorValue("spell")
public class Spell extends Card {
... | 847 | 0.662338 | 0.637544 | 33 | 23.666666 | 27.383547 | 129 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.727273 | false | false | 13 |
6fbd6fe8848e019e9e07f55522f662a642116d9a | 15,461,882,267,673 | d58e4c7e48c360a8c22031f5a34f3bf5b9daf8c0 | /hackerrank/src/sorting/QuickSort.java | cda632ce46445f6937ba18ebbae86e8c700c5c62 | [] | no_license | denismironchuk/hackerrank | https://github.com/denismironchuk/hackerrank | d9e5730a75a906596d5837ac250738b4d04c661f | d7a2a671d69c0880ee47fe6acd59cba2bd0bfb27 | refs/heads/master | 2023-05-02T05:06:37.771000 | 2023-04-17T19:47:41 | 2023-04-17T19:47:41 | 143,649,550 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package sorting;
import java.util.Arrays;
public class QuickSort {
private static int partition(int[] arr, int start, int end) {
int pivot = arr[end];
int lessEnd = start - 1;
for (int i = start; i <= end; i++) {
if (arr[i] <= pivot) {
lessEnd++;
... | UTF-8 | Java | 1,567 | java | QuickSort.java | Java | [] | null | [] | package sorting;
import java.util.Arrays;
public class QuickSort {
private static int partition(int[] arr, int start, int end) {
int pivot = arr[end];
int lessEnd = start - 1;
for (int i = start; i <= end; i++) {
if (arr[i] <= pivot) {
lessEnd++;
... | 1,567 | 0.424378 | 0.417358 | 62 | 24.274193 | 17.590475 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.741935 | false | false | 13 |
ebf76b067b840fff2b1aa81e08d354f0d8ec0a1a | 30,185,030,163,898 | a3944a49bc9f6c34389385d5c25c2569fa2ab17e | /src/pages/PageBase.java | 261880d818f1e87d17e54797ef02413500d4965c | [] | no_license | StasKrivoguz/MishQAHaifa-1-master | https://github.com/StasKrivoguz/MishQAHaifa-1-master | 47dd51d619013fda1d0053444f9b49139d5c43f6 | 3815089ea5f300cab08f427819f203eec6be957f | refs/heads/master | 2020-04-13T02:49:18.205000 | 2019-01-07T18:37:47 | 2019-01-07T18:37:47 | 162,478,950 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pages;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
public abstract class PageBase {
protected WebDriver driver;
public PageBas... | UTF-8 | Java | 1,243 | java | PageBase.java | Java | [] | null | [] | package pages;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
public abstract class PageBase {
protected WebDriver driver;
public PageBas... | 1,243 | 0.598552 | 0.598552 | 43 | 27.88372 | 22.250381 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.511628 | false | false | 13 |
40188f1851ec9833877229e56a5aa2e86ff8f207 | 27,341,761,873,154 | 3cabd71635738186cc28e6bddd8ab8ab4abca184 | /core/src/main/java/org/kgusarov/socketio/core/server/impl/SocketIOServlet.java | c5d4704bb97b42bb5ef63c6a26be9477fe905667 | [
"MIT"
] | permissive | kgusarov/socket.io-server-java | https://github.com/kgusarov/socket.io-server-java | e00734a4fe74193e7574f30394ba9b7d2228c726 | 5f35184cc3833042c94f5befa40fb26f3cd8d7d5 | refs/heads/master | 2021-01-18T20:03:08.016000 | 2016-09-02T09:25:17 | 2016-09-02T09:25:18 | 65,989,963 | 0 | 0 | null | true | 2016-08-18T10:56:25 | 2016-08-18T10:56:25 | 2016-08-11T05:30:54 | 2016-02-20T03:29:08 | 2,313 | 0 | 0 | 0 | null | null | null | package org.kgusarov.socketio.core.server.impl;
import org.kgusarov.socketio.core.common.SocketIOProtocolException;
import org.kgusarov.socketio.core.protocol.EngineIOProtocol;
import org.kgusarov.socketio.core.protocol.SocketIOProtocol;
import org.kgusarov.socketio.core.server.TransportProvider;
import org.kgusarov.s... | UTF-8 | Java | 3,766 | java | SocketIOServlet.java | Java | [
{
"context": "ponse;\nimport java.io.IOException;\n\n/**\n * @author Alexander Sova (bird@codeminders.com)\n * @author Konstanti",
"end": 658,
"score": 0.9998731017112732,
"start": 644,
"tag": "NAME",
"value": "Alexander Sova"
},
{
"context": "OException;\n\n/**\n * @author Ale... | null | [] | package org.kgusarov.socketio.core.server.impl;
import org.kgusarov.socketio.core.common.SocketIOProtocolException;
import org.kgusarov.socketio.core.protocol.EngineIOProtocol;
import org.kgusarov.socketio.core.protocol.SocketIOProtocol;
import org.kgusarov.socketio.core.server.TransportProvider;
import org.kgusarov.s... | 3,710 | 0.697823 | 0.697292 | 106 | 34.528301 | 32.723312 | 129 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.45283 | false | false | 13 |
a620c4b9cbf09d54c4fdf83e36d357ac6e824452 | 15,324,443,331,207 | 1921483949b258be03329de57d4cacd3482022ea | /src/pl/coderslab/entity/Group.java | 06f6a0a89f9ce28d8603d2c40f4ca68d0b63ccf3 | [] | no_license | elnorbiako/Workshop_booking | https://github.com/elnorbiako/Workshop_booking | c655995d20d5bba09593f3147f1f25ee36dfbabb | e40f15cf40dcb6b246809727eb762edee7dfa4e7 | refs/heads/master | 2020-03-10T02:49:53.271000 | 2018-04-15T19:26:41 | 2018-04-15T19:26:41 | 129,146,998 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pl.coderslab.entity;
import pl.coderslab.dao.GroupDao;
public class Group extends GroupDao{
private Integer id;
private String name;
public Group(Integer id, String name) {
super();
this.id = id;
this.name = name;
}
public Group() {
super();
}
public Integer getId() {
retur... | UTF-8 | Java | 520 | java | Group.java | Java | [] | null | [] | package pl.coderslab.entity;
import pl.coderslab.dao.GroupDao;
public class Group extends GroupDao{
private Integer id;
private String name;
public Group(Integer id, String name) {
super();
this.id = id;
this.name = name;
}
public Group() {
super();
}
public Integer getId() {
retur... | 520 | 0.601923 | 0.601923 | 49 | 9.571428 | 11.885509 | 40 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.959184 | false | false | 13 |
cc16918c8d95b405ec6ce13a16bcdbb8d22037e8 | 21,672,405,004,489 | cc129f61a0ec6a0861bab6f4c97e6c65b275a9e4 | /pb-payment-common-domain/src/main/java/com/elong/pb/payment/common/domain/request/route/UnifiedPaymentBaseRequest.java | 6460c6e6a6e70867714b7e43d7ea213a38e90f80 | [] | no_license | xiongshaogang/common | https://github.com/xiongshaogang/common | e22e8bdb7f57cb35aa6d4f7bbf2e4f81d6ff1e64 | 898efcd06dc00243732cf05ad081290a3080c378 | refs/heads/master | 2019-05-26T23:43:50.309000 | 2017-03-06T15:25:08 | 2017-03-06T15:25:08 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.elong.pb.payment.common.domain.request.route;
import com.elong.pb.payment.common.domain.request.IRequest;
import org.codehaus.jackson.annotate.JsonProperty;
/**
* Date: 15/12/2
* Time: 下午8:28
*
* @author zhiwei.zhang@corp.elong.com
*/
public class UnifiedPaymentBaseRequest implements IRequest {
... | UTF-8 | Java | 1,326 | java | UnifiedPaymentBaseRequest.java | Java | [
{
"context": "/**\n * Date: 15/12/2\n * Time: 下午8:28\n *\n * @author zhiwei.zhang@corp.elong.com\n */\npublic class UnifiedPaymentBaseRequest implem",
"end": 249,
"score": 0.9967616200447083,
"start": 222,
"tag": "EMAIL",
"value": "zhiwei.zhang@corp.elong.com"
}
] | null | [] | package com.elong.pb.payment.common.domain.request.route;
import com.elong.pb.payment.common.domain.request.IRequest;
import org.codehaus.jackson.annotate.JsonProperty;
/**
* Date: 15/12/2
* Time: 下午8:28
*
* @author <EMAIL>
*/
public class UnifiedPaymentBaseRequest implements IRequest {
public UnifiedPaymen... | 1,306 | 0.673979 | 0.667927 | 61 | 20.672131 | 19.723267 | 60 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.245902 | false | false | 13 |
a11a60bcbf7533c79299dba15eb716f08cf87f72 | 11,897,059,464,610 | 639670f9c1bb2a5228f4befebbb1143ff0ccafbb | /src/main/java/com/vnpay/auth/util/JwtTokenGenerator.java | 280ee33e087abdbcc07e2ac971176d8e809baed9 | [] | no_license | manhtt23091992/springboot-jwt | https://github.com/manhtt23091992/springboot-jwt | 422b35ed3353b2be7d2cfbf306d4351f058c6876 | 874bafaa2dfb0a004df89c81f06a8a551d280d3e | refs/heads/master | 2020-03-25T01:55:54.966000 | 2018-08-02T08:54:15 | 2018-08-02T08:54:15 | 143,265,219 | 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.vnpay.auth.util;
import io.jsonwebtoken.Claims;
import io.jsonwebtoken.Jwts;
import io.jsonwebtoken.SignatureAlgorithm;
im... | UTF-8 | Java | 915 | java | JwtTokenGenerator.java | Java | [
{
"context": "beans.factory.annotation.Value;\n\n/**\n *\n * @author tienmanh\n */\npublic class JwtTokenGenerator {\n\n public ",
"end": 435,
"score": 0.9991084933280945,
"start": 427,
"tag": "USERNAME",
"value": "tienmanh"
}
] | 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.vnpay.auth.util;
import io.jsonwebtoken.Claims;
import io.jsonwebtoken.Jwts;
import io.jsonwebtoken.SignatureAlgorithm;
im... | 915 | 0.686339 | 0.68306 | 30 | 29.5 | 26.64176 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.533333 | false | false | 13 |
6a77de9ee4bb25156a3f53c3899df9424c20746b | 28,552,942,647,272 | 7fd2bdd7d656333da49cb6b13e7a099d4aa09197 | /spring-mock-spy-bean/src/main/java/com/jojoldu/springmockspybean/dto/OrderResponseDto.java | c2f2680e59490bffaef1ac4b8e3ab5b375889a1e | [] | no_license | jojoldu/blog-code | https://github.com/jojoldu/blog-code | 5b0e38479bfb576c505b3720cb12be0fb8f7fe15 | acabdb8e4b1f258aa35f554f0c964cf167a8e2ac | refs/heads/master | 2023-08-29T14:31:27.509000 | 2023-08-19T15:37:04 | 2023-08-19T15:37:04 | 65,371,147 | 705 | 451 | null | false | 2023-09-04T10:45:08 | 2016-08-10T09:51:58 | 2023-09-04T01:24:40 | 2023-09-02T06:17:25 | 990,817 | 641 | 324 | 7 | Java | false | false | package com.jojoldu.springmockspybean.dto;
import com.jojoldu.springmockspybean.domain.product.Product;
import lombok.Getter;
import java.util.List;
import java.util.stream.Collectors;
/**
* Created by jojoldu@gmail.com on 2017. 9. 22.
* Blog : http://jojoldu.tistory.com
* Github : https://github.com/jojoldu
*/
... | UTF-8 | Java | 946 | java | OrderResponseDto.java | Java | [
{
"context": "rt java.util.stream.Collectors;\n\n/**\n * Created by jojoldu@gmail.com on 2017. 9. 22.\n * Blog : http://jojoldu.tistory.",
"end": 223,
"score": 0.999921977519989,
"start": 206,
"tag": "EMAIL",
"value": "jojoldu@gmail.com"
},
{
"context": "ojoldu.tistory.com\n * Github... | null | [] | package com.jojoldu.springmockspybean.dto;
import com.jojoldu.springmockspybean.domain.product.Product;
import lombok.Getter;
import java.util.List;
import java.util.stream.Collectors;
/**
* Created by <EMAIL> on 2017. 9. 22.
* Blog : http://jojoldu.tistory.com
* Github : https://github.com/jojoldu
*/
@Getter
p... | 936 | 0.657505 | 0.650106 | 40 | 22.65 | 20.284908 | 74 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.35 | false | false | 13 |
17cf4e7aee965fb94377208a4f4ad2d5bc5b3b05 | 5,162,550,694,710 | 1f044232d65bfead8ee64bec10919717d1b65f19 | /src/Auxiliares/Borrame_migrar_tablas.java | ffd00c9ffa5bde7f5af723ffb7b27e8ae846f5bd | [] | no_license | Israel-ICM/ManejadorArchivos | https://github.com/Israel-ICM/ManejadorArchivos | 134fae49aaebe4eab7b11b1979ff13bb51425352 | bc88bdba2b85e88dbb4a023923ce2865c007d151 | refs/heads/master | 2020-07-01T20:26:24.524000 | 2019-08-08T15:59:24 | 2019-08-08T15:59:24 | 201,290,555 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Auxiliares;
import java.sql.ResultSet;
import java.sql.SQLException;
import siap_configuraciones_model.configuraciones_model;
import siap_configuraciones_model.personalizacion_model;
import sqlite.SqliteManager;
import sqlite.model.CreateDataBase;
/**
*
* @author josue
*/
public class Borrame_migrar_tabla... | UTF-8 | Java | 3,087 | java | Borrame_migrar_tablas.java | Java | [
{
"context": "rt sqlite.model.CreateDataBase;\n\n/**\n *\n * @author josue\n */\npublic class Borrame_migrar_tablas {\n publ",
"end": 282,
"score": 0.9975020289421082,
"start": 277,
"tag": "USERNAME",
"value": "josue"
}
] | null | [] | package Auxiliares;
import java.sql.ResultSet;
import java.sql.SQLException;
import siap_configuraciones_model.configuraciones_model;
import siap_configuraciones_model.personalizacion_model;
import sqlite.SqliteManager;
import sqlite.model.CreateDataBase;
/**
*
* @author josue
*/
public class Borrame_migrar_tabla... | 3,087 | 0.579851 | 0.569485 | 88 | 34.06818 | 29.957468 | 205 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.693182 | false | false | 13 |
7033760ce1c502e02c0a348774e24c6976514997 | 29,489,245,512,814 | b7e22968cd90c0f499e0e1ed61bbccc3a3f9e246 | /inkubator-hrm/src/main/java/com/inkubator/hrm/entity/NeracaCuti.java | e5f34a5f282e01698ee9c29d77041af5b350bdbf | [] | no_license | creative-active-technology/inkubator-hrm | https://github.com/creative-active-technology/inkubator-hrm | feb2b6f01d0c7867349901a97d00c0e517757b22 | 295a99713392bb63fbe0c5ab22e4148dce9c6a56 | refs/heads/master | 2021-01-09T07:59:19.422000 | 2016-01-22T09:39:31 | 2016-01-22T09:39:31 | 16,723,933 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.inkubator.hrm.entity;
// Generated Sep 30, 2014 12:22:58 PM by Hibernate Tools 4.3.1
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyT... | UTF-8 | Java | 3,712 | java | NeracaCuti.java | Java | [] | null | [] | package com.inkubator.hrm.entity;
// Generated Sep 30, 2014 12:22:58 PM by Hibernate Tools 4.3.1
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyT... | 3,712 | 0.653556 | 0.644666 | 158 | 22.481012 | 20.691746 | 166 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.518987 | false | false | 13 |
7a38d7e6bdfbba49ad8ab1483600f1bc5d7954ec | 10,385,230,928,163 | 51f86e19413d89201be21aa47eb7de8dbab3afbd | /2-weather-canada-app/src/main/java/org/yp/camel/CamelIntegration.java | 839baf475207356add908212125e4b8eabb089f5 | [] | no_license | eugene-patsiomkin/quarkus-demo | https://github.com/eugene-patsiomkin/quarkus-demo | cc588cc383c5cf9b2055353ef0a92bc75f9135c8 | a2f634e7714817fae1fe4d5f4c62df47ae96930e | refs/heads/main | 2023-03-22T13:56:52.760000 | 2021-03-12T22:10:53 | 2021-03-12T22:10:53 | 345,770,365 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package org.yp.camel;
import org.apache.camel.LoggingLevel;
import org.apache.camel.Predicate;
import org.apache.camel.Processor;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.caffeine.CaffeineConstants;
import org.apache.camel.Exchange;
import static org.apache.camel.support.builder.... | UTF-8 | Java | 6,379 | java | CamelIntegration.java | Java | [] | null | [] | package org.yp.camel;
import org.apache.camel.LoggingLevel;
import org.apache.camel.Predicate;
import org.apache.camel.Processor;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.caffeine.CaffeineConstants;
import org.apache.camel.Exchange;
import static org.apache.camel.support.builder.... | 6,379 | 0.632544 | 0.627841 | 122 | 51.295082 | 37.804436 | 178 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.459016 | false | false | 13 |
21a930a251c6a1ccef6c41b98478ed6a5fd8c9e4 | 29,712,583,820,419 | d00b87d74e3d96ab6b8b6ef47056719fa2841399 | /src/main/java/model/actions/AcquirePermit.java | 5522841ec0e75c16e3803112e55555f58589543d | [] | no_license | frankpolimi/Council-of-Four | https://github.com/frankpolimi/Council-of-Four | 881b1855293b72dd0e965de3252846341aa7e91a | 5137a585f40c0bc03699749391462ef9ed1c0c8e | refs/heads/master | 2020-05-23T10:14:41.986000 | 2017-01-30T09:17:48 | 2017-01-30T09:17:48 | 80,407,090 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package model.actions;
import java.util.ArrayList;
import model.game.BuildingPermit;
import model.game.Game;
import model.game.council.RegionalCouncil;
import model.game.politics.PoliticsCard;
/**
* @author Vitaliy Pakholko
*/
public class AcquirePermit extends MainAction
{
/**
*
*/
private static final l... | UTF-8 | Java | 4,354 | java | AcquirePermit.java | Java | [
{
"context": " model.game.politics.PoliticsCard;\n\n/**\n * @author Vitaliy Pakholko\n */\npublic class AcquirePermit extends MainAction",
"end": 226,
"score": 0.9998775720596313,
"start": 210,
"tag": "NAME",
"value": "Vitaliy Pakholko"
}
] | null | [] | package model.actions;
import java.util.ArrayList;
import model.game.BuildingPermit;
import model.game.Game;
import model.game.council.RegionalCouncil;
import model.game.politics.PoliticsCard;
/**
* @author <NAME>
*/
public class AcquirePermit extends MainAction
{
/**
*
*/
private static final long serial... | 4,344 | 0.72554 | 0.720487 | 139 | 30.330935 | 29.885967 | 142 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.741007 | false | false | 13 |
8c9595b2e2e3bf88960ff55f480ed5ff716b9771 | 22,969,485,128,016 | a97533539030384708c6a546cc9952f2ddaeff05 | /jmetal-algorithm/src/main/java/org/uma/jmetal/algorithm/multiobjective/moead/util/ViolationThresholdComparator.java | 95acbf0de82e9cba3b9cbbd93db70f67353dda64 | [
"MIT"
] | permissive | jMetal/jMetal | https://github.com/jMetal/jMetal | 862ab3902ecda7f0485ec2905b6c8f09a4fb0fc4 | 95fbeee22d1a4c50fb1c31b2f152c07c35629d91 | refs/heads/main | 2023-09-04T21:46:12.666000 | 2023-08-31T09:10:34 | 2023-08-31T09:10:34 | 19,381,895 | 515 | 623 | MIT | false | 2023-07-04T07:47:11 | 2014-05-02T16:59:26 | 2023-07-03T09:59:35 | 2023-07-04T07:47:11 | 254,530 | 453 | 400 | 24 | Java | false | false | package org.uma.jmetal.algorithm.multiobjective.moead.util;
import java.util.Comparator;
import java.util.List;
import org.uma.jmetal.solution.Solution;
import org.uma.jmetal.util.ConstraintHandling;
/**
* This class implements the ViolationThreshold Comparator
*
* @author Juan J. Durillo
*/
@SuppressWarnings("se... | UTF-8 | Java | 3,073 | java | ViolationThresholdComparator.java | Java | [
{
"context": "ts the ViolationThreshold Comparator\n *\n * @author Juan J. Durillo\n */\n@SuppressWarnings(\"serial\")\npublic class Viol",
"end": 294,
"score": 0.9998674392700195,
"start": 279,
"tag": "NAME",
"value": "Juan J. Durillo"
}
] | null | [] | package org.uma.jmetal.algorithm.multiobjective.moead.util;
import java.util.Comparator;
import java.util.List;
import org.uma.jmetal.solution.Solution;
import org.uma.jmetal.util.ConstraintHandling;
/**
* This class implements the ViolationThreshold Comparator
*
* @author <NAME>
*/
@SuppressWarnings("serial")
pu... | 3,064 | 0.70973 | 0.69053 | 90 | 33.144444 | 34.827053 | 148 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.422222 | false | false | 13 |
fd86ebe3db82def5465023c8cf5545583a7c4c7b | 30,700,426,246,757 | bf407f1d7bac47da36a4cc096728a1e193084b4d | /ccd_gui/src/test/java/de/ods/ccd_gui/TextUmbruchServiceTest.java | 8b786216cb43ac5a286c148b53ee23dbf5297c20 | [] | no_license | RolandDahlem/ccd-hausaufgabe | https://github.com/RolandDahlem/ccd-hausaufgabe | e9df54c0733ae95852d9e5ea7d93b759cdf03f44 | 0836b90ab3c28e8854de132ead9102a739b79960 | refs/heads/master | 2021-01-15T14:32:17.248000 | 2016-10-07T11:03:27 | 2016-10-07T11:03:27 | 58,059,924 | 0 | 2 | null | true | 2016-05-19T06:34:10 | 2016-05-04T14:45:26 | 2016-05-04T15:30:18 | 2016-05-19T06:34:10 | 10 | 0 | 1 | 0 | Java | null | null | package de.ods.ccd_gui;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.*;
import org.junit.Test;
import de.ods.ccd_gui.textumbruch.TextUmbruchService;
public class TextUmbruchServiceTest {
TextUmbruchService service = new TextUmbruchService();
@Test
public void test_ob_umgebrochen_wird... | UTF-8 | Java | 1,991 | java | TextUmbruchServiceTest.java | Java | [
{
"context": "leme_machen() {\n\t\t\n\t\tString umbruchstext = \"Donaudampfschiffartskapiaensmuetzenfarbe ist blau\";\n\t\tint m",
"end": 654,
"score": 0.724107563495636,
"start": 651,
"tag": "NAME",
"value": "amp"
},
{
"context": "n() {\n\t\t\n\t\tString umbruchstext = \"Donaudampfs... | null | [] | package de.ods.ccd_gui;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.*;
import org.junit.Test;
import de.ods.ccd_gui.textumbruch.TextUmbruchService;
public class TextUmbruchServiceTest {
TextUmbruchService service = new TextUmbruchService();
@Test
public void test_ob_umgebrochen_wird... | 1,991 | 0.731291 | 0.727273 | 82 | 23.280487 | 26.173565 | 81 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.926829 | false | false | 13 |
0c933b66bd2005be83c401249620fc463c6f3540 | 575,525,622,131 | d7594cbe0148f825abfef6ad85cd8e702354327c | /Tutorials/tutorials/src/tutorials/dataTypes.java | 1d43f58ff601523598cf873e88e66fa33be38d17 | [] | no_license | Haadi-Khan/Java | https://github.com/Haadi-Khan/Java | b17f09d273d0e04b12eee6aea9a2870a72e168c0 | 7ea15d9bfe45d7712c18a16868fb35621960b9e1 | refs/heads/master | 2020-06-19T09:31:50.386000 | 2019-08-11T20:55:57 | 2019-08-11T20:55:57 | 196,655,488 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package tutorials;
//basic data types
public class dataTypes {
public static void main(String [] args) {
String phrase = "To be or not to be"; //words or phrases
int age = 18; //whole numbers
double gpa = 3.8; // decimal numbers
char grade = 'A'; // single letter *** USE SINGLE QUOTES
... | UTF-8 | Java | 580 | java | dataTypes.java | Java | [] | null | [] | package tutorials;
//basic data types
public class dataTypes {
public static void main(String [] args) {
String phrase = "To be or not to be"; //words or phrases
int age = 18; //whole numbers
double gpa = 3.8; // decimal numbers
char grade = 'A'; // single letter *** USE SINGLE QUOTES
... | 580 | 0.632759 | 0.625862 | 21 | 26.666666 | 19.941183 | 62 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.571429 | false | false | 13 |
e07daeb4ee4ed5cdb70a647ddd176711cbb420ee | 25,967,372,296,618 | e6285379816f2bb03cdca1ef2c771c629c6b13de | /autoscaling/sdk/cli/src/main/java/org/project/openbaton/cli/NFVOCommandLineInterface.java | b54f0eabd3ffb96da959961b27045de113e3d72f | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | alincalinciuc/ms-vnfm | https://github.com/alincalinciuc/ms-vnfm | 25717df2d6aa1a7edff34150913e557a93c13e7a | 874392da52fc05aeed1f99828af6f7b1eb4adac5 | refs/heads/master | 2020-12-25T08:50:41.376000 | 2016-01-29T19:06:22 | 2016-01-29T19:06:22 | 50,653,563 | 0 | 0 | null | true | 2016-01-29T09:46:10 | 2016-01-29T09:46:09 | 2016-01-12T10:19:04 | 2016-01-29T02:46:07 | 64,279 | 0 | 0 | 0 | null | null | null | package org.project.openbaton.cli;
import com.google.gson.Gson;
import jline.console.ConsoleReader;
import jline.console.completer.ArgumentCompleter;
import jline.console.completer.Completer;
import jline.console.completer.FileNameCompleter;
import jline.console.completer.StringsCompleter;
import org.project.openbaton... | UTF-8 | Java | 17,083 | java | NFVOCommandLineInterface.java | Java | [
{
"context": "flect.Type;\nimport java.util.*;\n\n/**\n * Created by lto on 14/07/15.\n *\n */\npublic class NFVOCommandLineI",
"end": 765,
"score": 0.9996045827865601,
"start": 762,
"tag": "USERNAME",
"value": "lto"
},
{
"context": " getProperty(reader, properties, \"nfvo-ip\",... | null | [] | package org.project.openbaton.cli;
import com.google.gson.Gson;
import jline.console.ConsoleReader;
import jline.console.completer.ArgumentCompleter;
import jline.console.completer.Completer;
import jline.console.completer.FileNameCompleter;
import jline.console.completer.StringsCompleter;
import org.project.openbaton... | 17,083 | 0.516713 | 0.508634 | 401 | 41.603493 | 33.212757 | 231 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.735661 | false | false | 13 |
7796cbd7548498a022feee8838c3c9eecc2d544d | 35,424,890,259,932 | bb9221017d67df2322863e341503df974a69a824 | /system-service/src/main/java/com/ifox/platform/adminuser/response/RoleVO.java | 1c66e9d0bcb35668498aad72343698fd7f8c9b48 | [] | no_license | summerz1993/ifox-platform | https://github.com/summerz1993/ifox-platform | 7430f89e02b525a587ea46fbec3e72e63874cb87 | bb021b6e3d085833c3187165e986dd92e488bc9e | refs/heads/master | 2021-01-01T06:12:18.926000 | 2017-09-27T06:32:45 | 2017-09-27T06:32:45 | 97,377,929 | 14 | 3 | null | false | 2017-09-19T14:45:26 | 2017-07-16T11:08:35 | 2017-08-28T14:47:39 | 2017-09-19T14:45:25 | 19,278 | 5 | 1 | 15 | JavaScript | null | null | package com.ifox.platform.adminuser.response;
import com.ifox.platform.adminuser.dto.RoleDTO;
import java.util.ArrayList;
import java.util.List;
public class RoleVO extends RoleDTO {
}
| UTF-8 | Java | 189 | java | RoleVO.java | Java | [] | null | [] | package com.ifox.platform.adminuser.response;
import com.ifox.platform.adminuser.dto.RoleDTO;
import java.util.ArrayList;
import java.util.List;
public class RoleVO extends RoleDTO {
}
| 189 | 0.798942 | 0.798942 | 10 | 17.9 | 19.007629 | 47 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.4 | false | false | 13 |
3beb3ac60cbad73973cdf8a5968c62831d59ca1a | 32,598,801,803,700 | 34bd1acb34f4a1efe9f676c5a19d5c12940bf83f | /Galaxy Defense/src/com/fffan911/galaxy_defense/Model/Composites/Upgrades/ReinforcedArmorUpgrade.java | 42a8f4ea6c917e16b670e8ac706cababe5a71534 | [] | no_license | lgoodridge/Galaxy_Defense | https://github.com/lgoodridge/Galaxy_Defense | 937ba6d99054a6d20613a447be170fc0039c2164 | a79d994d22a656db85e5f5bbfd865c538dce2948 | refs/heads/master | 2021-01-10T20:28:30.225000 | 2014-10-24T20:27:37 | 2014-10-24T20:27:37 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.fffan911.galaxy_defense.Model.Composites.Upgrades;
import com.fffan911.galaxy_defense.Model.Composites.Composite;
public class ReinforcedArmorUpgrade extends CompositeUpgrade {
//Constants
private static final String TAG = "ReinforcedArmorUpgrade";
//Constructor
public ReinforcedArmorUpgrad... | UTF-8 | Java | 1,146 | java | ReinforcedArmorUpgrade.java | Java | [] | null | [] | package com.fffan911.galaxy_defense.Model.Composites.Upgrades;
import com.fffan911.galaxy_defense.Model.Composites.Composite;
public class ReinforcedArmorUpgrade extends CompositeUpgrade {
//Constants
private static final String TAG = "ReinforcedArmorUpgrade";
//Constructor
public ReinforcedArmorUpgrad... | 1,146 | 0.731239 | 0.719023 | 43 | 24.651163 | 22.929501 | 75 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.348837 | false | false | 13 |
b72aa5a515ad7e89e6c7fe17e1726773d9d4a3f6 | 17,763,984,769,623 | 23ee6977fa5e4f88449e63cb0a402236f95c800b | /src/Overload/SinhVien.java | b993e74bf7212f0d035c1151fc3367b1f1fe0917 | [] | no_license | thangnt2409/Java | https://github.com/thangnt2409/Java | 9c0ad5af3a6a831f24370c6b4983f971097eb448 | d3572cede9b82d42be0b2c00a097af85791f1331 | refs/heads/master | 2021-01-17T08:55:16.728000 | 2017-04-11T06:36:35 | 2017-04-11T06:36:35 | 68,698,633 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Overload;
public class SinhVien {
String HoTen;
String MSSV;
String NgaySinh;
public String getHoTen() {
return HoTen;
}
public void setHoTen(String hoTen) {
HoTen = hoTen;
}
public String getMSSV() {
return MSSV;
}
public void setMSSV(String mSSV) {
MSSV = mSSV;
}
public String getNgaySin... | UTF-8 | Java | 659 | java | SinhVien.java | Java | [] | null | [] | package Overload;
public class SinhVien {
String HoTen;
String MSSV;
String NgaySinh;
public String getHoTen() {
return HoTen;
}
public void setHoTen(String hoTen) {
HoTen = hoTen;
}
public String getMSSV() {
return MSSV;
}
public void setMSSV(String mSSV) {
MSSV = mSSV;
}
public String getNgaySin... | 659 | 0.701062 | 0.701062 | 38 | 16.342106 | 13.629064 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.657895 | false | false | 13 |
4969bf9e864f78ff121a0bd0f613f0a5e357f156 | 29,257,317,269,233 | e61cfc4008b12a581f8477aebfe2170863c994c0 | /src/main/java/net/tmclean/pettracker/db/service/impl/PetServiceImpl.java | 2393e0ec9884c4d1afbe3f2299769cc2c0ce277c | [] | no_license | adysec/1daybuild-2020-07-10-micronaut-sandbox | https://github.com/adysec/1daybuild-2020-07-10-micronaut-sandbox | 61f29d3f7e6a77078d8a8978ea6388b5551de4de | 3f778a4301ed21418e9f2d08b9699b153ddb3535 | refs/heads/master | 2023-05-08T12:42:06.875000 | 2020-08-22T19:27:32 | 2020-08-22T19:27:32 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package net.tmclean.pettracker.db.service.impl;
import java.util.List;
import javax.inject.Singleton;
import javax.persistence.EntityManager;
import javax.persistence.TypedQuery;
import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.CriteriaQuery;
import javax.transaction.Transactional;... | UTF-8 | Java | 1,422 | java | PetServiceImpl.java | Java | [] | null | [] | package net.tmclean.pettracker.db.service.impl;
import java.util.List;
import javax.inject.Singleton;
import javax.persistence.EntityManager;
import javax.persistence.TypedQuery;
import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.CriteriaQuery;
import javax.transaction.Transactional;... | 1,422 | 0.756681 | 0.756681 | 62 | 21.935484 | 19.483551 | 63 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.467742 | false | false | 13 |
f2436155838b1f47b4ce7d144bfeea359660cf2e | 31,490,700,249,767 | c924a532175521a24775a5dbfbe1f43c22cb2234 | /app_architecture/app/src/main/java/mack/com/c_framework/network/protocol/http/networkengine/NetworkResponse.java | 6f75fde3a52346d1244ae861c0f7514cbca647d0 | [] | no_license | mackzheng/app_framework | https://github.com/mackzheng/app_framework | bbdcac25fd9ece4910d87fa30641b7a17b76ba30 | 8e60f05dcd79a34d9c6d072a0886b3e8aa593429 | refs/heads/master | 2020-05-23T02:44:57.524000 | 2018-11-17T09:44:16 | 2018-11-17T09:44:16 | 57,953,429 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package mack.com.c_framework.network.protocol.http.networkengine;
import java.util.Dictionary;
public class NetworkResponse
{
//public Response mResponse = null;
public NetworkRequest mRequest = null;
public int mStatusCode = 0;
public Dictionary<String,String> mHeaderFieldDictionary = null;
public NetworkResp... | UTF-8 | Java | 731 | java | NetworkResponse.java | Java | [] | null | [] | package mack.com.c_framework.network.protocol.http.networkengine;
import java.util.Dictionary;
public class NetworkResponse
{
//public Response mResponse = null;
public NetworkRequest mRequest = null;
public int mStatusCode = 0;
public Dictionary<String,String> mHeaderFieldDictionary = null;
public NetworkResp... | 731 | 0.749658 | 0.74829 | 38 | 18.236841 | 21.364548 | 69 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.447368 | false | false | 13 |
3ab48d46b5d393fdccd8239621a9c22ec37d8af5 | 2,001,454,811,115 | b880cb3b878da45019fa2aea9daf9434264858a2 | /rmt2/src/java/com/quote/QuoteFactory.java | 417333e311cffd14b60ee9e74f76de387cad76c4 | [] | no_license | rmt2bsc/projects | https://github.com/rmt2bsc/projects | 7b4217ae7240573f4879eab422ba801fd4a1659b | 639518bacda8f176d0fe5263ac81fbc0b7fc338e | refs/heads/master | 2020-06-17T11:54:17.398000 | 2020-04-26T08:56:12 | 2020-04-26T08:56:12 | 195,858,707 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.quote;
import org.apache.log4j.Logger;
import org.apache.log4j.Level;
import com.bean.db.DatabaseConnectionBean;
import com.controller.Request;
import com.entity.Quote;
import com.api.db.DatabaseException;
import com.api.db.orm.DataSourceAdapter;
import com.util.SystemException;
/**
* Contains fact... | UTF-8 | Java | 3,122 | java | QuoteFactory.java | Java | [
{
"context": "or creating quote related entities.\n * \n * @author appdev\n *\n */\npublic class QuoteFactory extends DataSour",
"end": 390,
"score": 0.9995479583740234,
"start": 384,
"tag": "USERNAME",
"value": "appdev"
}
] | null | [] | package com.quote;
import org.apache.log4j.Logger;
import org.apache.log4j.Level;
import com.bean.db.DatabaseConnectionBean;
import com.controller.Request;
import com.entity.Quote;
import com.api.db.DatabaseException;
import com.api.db.orm.DataSourceAdapter;
import com.util.SystemException;
/**
* Contains fact... | 3,122 | 0.659833 | 0.659193 | 118 | 25.457626 | 28.575397 | 129 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.805085 | false | false | 13 |
5935826e8cbc332f560662564621760e1d792f64 | 19,791,209,340,758 | 6b9ed6079161596039354a92f2d623edd74ab19d | /yestonConsole-dao/src/main/java/com/mrbt/yeston/web/mapper/YtCooperativeContactMapper.java | cd6c44916d86529f44944cb1612ce51a03f40d14 | [] | no_license | daiedaie/yestonConsole | https://github.com/daiedaie/yestonConsole | 985eafc00618e314ef4e6e7a19fb7369c404a335 | 1ab3782431f3d9de383b39ca9a55b75feeee338a | refs/heads/master | 2020-05-01T09:52:41.348000 | 2018-06-15T02:50:18 | 2018-06-15T02:50:18 | 177,409,836 | 3 | 0 | null | true | 2019-03-24T12:10:58 | 2019-03-24T12:10:58 | 2018-06-21T02:56:52 | 2018-06-15T02:50:21 | 2,896 | 0 | 0 | 0 | null | false | null | package com.mrbt.yeston.web.mapper;
import com.mrbt.yeston.web.model.YtCooperativeContact;
import com.mrbt.yeston.web.model.YtCooperativeContactExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface YtCooperativeContactMapper {
int countByExample(YtCooperativeContactExample e... | UTF-8 | Java | 1,067 | java | YtCooperativeContactMapper.java | Java | [] | null | [] | package com.mrbt.yeston.web.mapper;
import com.mrbt.yeston.web.model.YtCooperativeContact;
import com.mrbt.yeston.web.model.YtCooperativeContactExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface YtCooperativeContactMapper {
int countByExample(YtCooperativeContactExample e... | 1,067 | 0.817245 | 0.817245 | 30 | 34.599998 | 36.980717 | 134 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.6 | false | false | 13 |
c1f322b2d4f6f1a32afad0bacf7fd67fb80ca040 | 35,064,113,018,707 | 6579442e2f324c3505928270b6eabd6ce00dc1a0 | /app/src/main/java/com/shn/jetpacktest/widget/tab/TabView.java | 376bb1cd8bed85e063d42a8497551ed68304ec8c | [] | no_license | bugbug2022/JetpackTest | https://github.com/bugbug2022/JetpackTest | f14d21cb9909e16dcdc9ffeb643cb39f1de35aa6 | 7ba871ee776504dbe2bdd9680d4a668d03645bad | refs/heads/master | 2023-07-12T05:36:05.973000 | 2021-08-05T01:38:47 | 2021-08-05T01:38:47 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.shn.jetpacktest.widget.tab;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.FrameLayout;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
public class TabView extends FrameLayout {
public TabView(@NonNull Context context) {
super(conte... | UTF-8 | Java | 818 | java | TabView.java | Java | [] | null | [] | package com.shn.jetpacktest.widget.tab;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.FrameLayout;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
public class TabView extends FrameLayout {
public TabView(@NonNull Context context) {
super(conte... | 818 | 0.759169 | 0.759169 | 30 | 26.266666 | 28.158993 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.766667 | false | false | 13 |
3936801b8830e480834d791d9b1f604572fbc511 | 18,227,841,212,378 | 9ea0126f22af93934be7a47b343f48cbb80d60c5 | /app/src/main/java/com/sumavision/talktv2/ui/adapter/SearchListInfoLivePlayAdapter.java | d5b81519ec0d5491e5d32a226c5c9ecfff90707f | [] | no_license | PioneerLab/talkTV4.0 | https://github.com/PioneerLab/talkTV4.0 | 88e19ded64176116b89320a6469b733cc2e35968 | ab77ca3c4ed3b53268f85e8c6dad0ead46af0cbc | refs/heads/master | 2021-06-16T00:17:25.383000 | 2017-04-13T19:54:38 | 2017-04-13T19:54:41 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.sumavision.talktv2.ui.adapter;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android... | UTF-8 | Java | 3,621 | java | SearchListInfoLivePlayAdapter.java | Java | [
{
"context": "fe;\nimport butterknife.OnClick;\n\n/**\n * Created by zhoutao on 2016/8/24.\n * 这是搜索页面直播结果显示的adapter\n */\npublic ",
"end": 809,
"score": 0.9979581236839294,
"start": 802,
"tag": "USERNAME",
"value": "zhoutao"
}
] | null | [] | package com.sumavision.talktv2.ui.adapter;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android... | 3,621 | 0.697681 | 0.690696 | 101 | 34.435642 | 28.42444 | 168 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.643564 | false | false | 13 |
601e9aff513b28438586ad6d6afba5bdae452f0d | 11,373,073,453,886 | a8ec1ffbde43606518c01a2a00ef93d936a3f8dc | /Lecture Activities/AbstractionNotes/src/Driver.java | b72002bace23add9a5d215080d0d9b9d139ed778 | [] | no_license | naru1998/CSCE314_ICAS | https://github.com/naru1998/CSCE314_ICAS | f2e45a48f9d4316e88522fda49a7b64609076158 | f6c8483d55e984cae425a460c0189cdb47ed7310 | refs/heads/master | 2020-06-27T17:14:49.155000 | 2019-04-24T23:38:36 | 2019-04-24T23:38:36 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | public class Driver {
public static void main(String[] args) {
Employee Lupoli = new SalariedEmployee("Lupoli", new Date(7, 1, 2010), 80000);
Employee Dima = new HourlyEmployee("Dima", new Date(8, 18, 2013), 50, 10);
System.out.println(Lupoli + "\n");
System.out.println(Dima);
}
}
| UTF-8 | Java | 296 | java | Driver.java | Java | [
{
"context": "args) {\n\t\tEmployee Lupoli = new SalariedEmployee(\"Lupoli\", new Date(7, 1, 2010), 80000);\n\t\tEmployee Dima =",
"end": 113,
"score": 0.9996640086174011,
"start": 107,
"tag": "NAME",
"value": "Lupoli"
},
{
"context": "0), 80000);\n\t\tEmployee Dima = new HourlyEmplo... | null | [] | public class Driver {
public static void main(String[] args) {
Employee Lupoli = new SalariedEmployee("Lupoli", new Date(7, 1, 2010), 80000);
Employee Dima = new HourlyEmployee("Dima", new Date(8, 18, 2013), 50, 10);
System.out.println(Lupoli + "\n");
System.out.println(Dima);
}
}
| 296 | 0.668919 | 0.594595 | 12 | 23.666666 | 28.29409 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.916667 | false | false | 13 |
645cfeddef73ca7ba800f6e95df7073e0e59f80f | 29,729,763,689,969 | c2228325fe23a4e7fc99bf58c4493476125f5463 | /src/main/java/com/cssl/tiantian/pojo/User.java | 1d765ba28abbc58802a7f8ff4c705373b0b25c90 | [] | no_license | java30project/tiantian | https://github.com/java30project/tiantian | 5019f4fc84238fb7a9096c93476cbc9f616eaff9 | d7394ad33274375cd68e1b1b1366e178501b5d2a | refs/heads/master | 2022-12-23T07:55:33.195000 | 2019-12-22T08:27:08 | 2019-12-22T08:27:08 | 163,474,487 | 0 | 1 | null | false | 2022-06-21T00:54:17 | 2018-12-29T04:04:32 | 2019-12-22T08:30:24 | 2022-06-21T00:54:16 | 9,488 | 0 | 1 | 4 | JavaScript | false | false | package com.cssl.tiantian.pojo;
import java.io.Serializable;
import java.sql.Date;
import java.util.List;
public class User implements Serializable {
private static final long serialVersionUID = -3384071261794990175L;
private int userId;
private String userName;
private String password;
private i... | UTF-8 | Java | 3,785 | java | User.java | Java | [
{
"context": "\n\n public String getUserName() {\n return userName;\n }\n\n public void setUserName(String userNa",
"end": 1669,
"score": 0.9842014908790588,
"start": 1661,
"tag": "USERNAME",
"value": "userName"
},
{
"context": "serName(String userName) {\n thi... | null | [] | package com.cssl.tiantian.pojo;
import java.io.Serializable;
import java.sql.Date;
import java.util.List;
public class User implements Serializable {
private static final long serialVersionUID = -3384071261794990175L;
private int userId;
private String userName;
private String password;
private i... | 3,785 | 0.608891 | 0.603863 | 191 | 18.785341 | 16.250042 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.340314 | false | false | 13 |
ceaf55ddad1ce3f432ed39d2313688f3ea2a7ecc | 23,957,327,605,378 | add49f5ec5e3dc5b59f3341c509d0ac16e5fba7a | /src/exception4.java | 719d9b924437717dfbd87aef42e53462bbbdbf98 | [] | no_license | udaydikshit/focp2 | https://github.com/udaydikshit/focp2 | 8e6f2f805c230645b94f7934212135d14f87b3ac | be6c4337a45dda6bd1b8c161ee8144b44658102b | refs/heads/master | 2020-04-16T01:24:47.295000 | 2019-02-03T16:47:05 | 2019-02-03T16:47:05 | 165,171,944 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | //Author Uday Dikshit
//Version 1.020
//Purpose Define an object reference and initialize it to null. Try to call a method through this reference. Now wrap the code in a try-catch clause to catch the exception.
class exception4
{
public static void main(String args[])
{
String a;
try
{
... | UTF-8 | Java | 512 | java | exception4.java | Java | [
{
"context": "//Author Uday Dikshit\n//Version 1.020\n//Purpose Define an object refere",
"end": 21,
"score": 0.9998771548271179,
"start": 9,
"tag": "NAME",
"value": "Uday Dikshit"
}
] | null | [] | //Author <NAME>
//Version 1.020
//Purpose Define an object reference and initialize it to null. Try to call a method through this reference. Now wrap the code in a try-catch clause to catch the exception.
class exception4
{
public static void main(String args[])
{
String a;
try
{
... | 506 | 0.591797 | 0.582031 | 19 | 26 | 37.336308 | 172 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.210526 | false | false | 13 |
87684d5cbd807174b4302655454393b66972be39 | 292,057,780,382 | 032dffedf87b0862455d7ae7970c2437b6d8b4ce | /mecanicaApoloSistem/src/main/java/br/com/sistemaoptimus/dao/FaturaDAOImpl.java | a11e1f46b721d5c4792f881c36713fab25c232c4 | [] | no_license | fabriciojacob211/projetos | https://github.com/fabriciojacob211/projetos | c9f5df111c7517fb2c1926d3f0d8e8445bda29fb | 4777b39af5f9ebdeb3d524d5d3edc897e2604491 | refs/heads/master | 2020-03-02T13:19:46.688000 | 2018-09-16T01:31:36 | 2018-09-16T01:31:36 | 91,886,648 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package br.com.sistemaoptimus.dao;
import java.io.Serializable;
import javax.annotation.PostConstruct;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.transaction.Transactional;
import org.springframework.stereotype.Repository;
import br.com.sistemaoptimus.model.Fat... | UTF-8 | Java | 731 | java | FaturaDAOImpl.java | Java | [] | null | [] | package br.com.sistemaoptimus.dao;
import java.io.Serializable;
import javax.annotation.PostConstruct;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.transaction.Transactional;
import org.springframework.stereotype.Repository;
import br.com.sistemaoptimus.model.Fat... | 731 | 0.793434 | 0.767442 | 35 | 19.885714 | 20.284788 | 68 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.942857 | false | false | 13 |
78c30c222cdab7739383b0164d195c3417bc938f | 7,181,185,363,768 | 254f2310d6ce00bf127e1c4dd91dad2481764dcb | /src/main/java/com/hackathon/lighthouse/repository/EnrolmentRepository.java | 1c58f93c599c4988990cd43dfb8dcf0673147129 | [] | no_license | masterpeter/lighthouse | https://github.com/masterpeter/lighthouse | 14fa136f2fdddca652a60edb48594853fac50743 | 049fc0158923bbfdae5934496676b1e013a68049 | refs/heads/master | 2016-03-22T17:50:05.013000 | 2015-07-19T20:50:02 | 2015-07-19T20:50:02 | 38,942,231 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.hackathon.lighthouse.repository;
import java.util.Collection;
import org.bson.types.ObjectId;
import org.springframework.data.mongodb.repository.MongoRepository;
import com.hackathon.lighthouse.documents.Enrolment;
public interface EnrolmentRepository extends MongoRepository<Enrolment, ObjectId> {
Col... | UTF-8 | Java | 377 | java | EnrolmentRepository.java | Java | [] | null | [] | package com.hackathon.lighthouse.repository;
import java.util.Collection;
import org.bson.types.ObjectId;
import org.springframework.data.mongodb.repository.MongoRepository;
import com.hackathon.lighthouse.documents.Enrolment;
public interface EnrolmentRepository extends MongoRepository<Enrolment, ObjectId> {
Col... | 377 | 0.840849 | 0.840849 | 14 | 25.928572 | 28.786068 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.571429 | false | false | 13 |
2692b70ec50dd974e02de6734cc36400a3f7fc4b | 17,617,955,903,539 | a6fecfa0a99027fff3c0be452689824c7695a743 | /space2/wssc/src/com/wssc/service/UserService.java | 362fe9dcf86ef7a00d40c5f39ac68ad148764de3 | [] | no_license | huguohui1314/IdeaProjects | https://github.com/huguohui1314/IdeaProjects | 33d4ca2e746b40d993549d2a74bad940b1c2f5d6 | 98d0860791e90e986440430c94c0f3c52ad64f83 | refs/heads/master | 2020-03-17T23:43:36.835000 | 2020-03-16T14:46:03 | 2020-03-16T14:46:03 | 134,057,591 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.wssc.service;
import com.wssc.entity.User;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.List;
/**
* @Author: hugh
* @Time: 2017/12/3... | UTF-8 | Java | 816 | java | UserService.java | Java | [
{
"context": "Exception;\nimport java.util.List;\n\n/**\n * @Author: hugh\n * @Time: 2017/12/31 7:27 PM\n * @Discraption:\n */",
"end": 300,
"score": 0.9977889060974121,
"start": 296,
"tag": "USERNAME",
"value": "hugh"
}
] | null | [] | package com.wssc.service;
import com.wssc.entity.User;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.List;
/**
* @Author: hugh
* @Time: 2017/12/3... | 816 | 0.756127 | 0.719363 | 30 | 26.200001 | 29.651756 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.533333 | false | false | 13 |
5b0c38394c89fb971f1af6bafd28f9c11f3bd6a3 | 28,166,395,535,232 | 3e7ca6c5befd656d8cc3011eed9c019f0a9a5a03 | /src/main/java/com/banas/market/checkout/Checkout.java | d7e348484918de7b3a97658a9da354433a9ee979 | [] | no_license | FullStackForce/marketcheckout | https://github.com/FullStackForce/marketcheckout | ee4deb221e30e2a88e3433c461eb9836dc2e697f | b581135aaa66cfbfbfd9374d341a22c1c1d792e6 | refs/heads/master | 2020-04-08T19:46:48.973000 | 2017-08-03T19:43:27 | 2017-08-03T19:43:27 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.banas.market.checkout;
import com.banas.market.checkout.discount.ManualDiscount;
import com.banas.market.checkout.inventory.Item;
import com.banas.market.checkout.receipt.Receipt;
import com.banas.market.checkout.receipt.ReceiptFactory;
import com.banas.market.checkout.receipt.ReceiptRepository;
import org... | UTF-8 | Java | 1,743 | java | Checkout.java | Java | [] | null | [] | package com.banas.market.checkout;
import com.banas.market.checkout.discount.ManualDiscount;
import com.banas.market.checkout.inventory.Item;
import com.banas.market.checkout.receipt.Receipt;
import com.banas.market.checkout.receipt.ReceiptFactory;
import com.banas.market.checkout.receipt.ReceiptRepository;
import org... | 1,743 | 0.719449 | 0.718302 | 60 | 28.049999 | 23.291933 | 102 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.466667 | false | false | 13 |
5a9b74b08c125b77bd19c5f6a6ec615a4c85c1aa | 14,302,241,097,595 | 41adbde51a4d994c1500688a78e500a6b2c59a0d | /src/molab/main/java/component/AssetsComponent.java | 36c84e3a4b19328a800b2b94561496562a9d665e | [] | no_license | cocoy2006/ast_molab | https://github.com/cocoy2006/ast_molab | 8701f87d216e2b1eda72db3f8abe3d205a68e5bb | e2c173600990c84aa189288b873f395cb81747b7 | refs/heads/master | 2021-08-19T14:05:46.830000 | 2017-11-26T14:34:01 | 2017-11-26T14:34:01 | 112,073,485 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package molab.main.java.component;
public class AssetsComponent {
private int assets;
private int total;
private int state;
private String message;
/**
* @return the assets
*/
public int getAssets() {
return assets;
}
/**
* @param assets
* the assets to set
*/
public void setAssets(i... | UTF-8 | Java | 978 | java | AssetsComponent.java | Java | [] | null | [] | package molab.main.java.component;
public class AssetsComponent {
private int assets;
private int total;
private int state;
private String message;
/**
* @return the assets
*/
public int getAssets() {
return assets;
}
/**
* @param assets
* the assets to set
*/
public void setAssets(i... | 978 | 0.586912 | 0.586912 | 70 | 12.971429 | 12.105455 | 41 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.1 | false | false | 13 |
2a1a77677629261df7057902992352bcc3f5caa4 | 8,744,553,471,237 | 6af4089c83a6bfda0e4c4789b778fe4064d0a1b9 | /lintCode/397_longest-increasing-continuous-subsequence/longest-increasing-continuous-subsequence.java | d03a3c772871ade158d1cc690f2f2b2d47fc7080 | [
"Apache-2.0"
] | permissive | chenjiayao/Leetcode | https://github.com/chenjiayao/Leetcode | 50f8a59a45ec127f9cd4569def411ea3e416c3e1 | ab8bc66acd82ba9cd4011964b1d27390d10421c1 | refs/heads/master | 2021-06-10T11:49:49.194000 | 2017-01-25T13:55:48 | 2017-01-25T13:55:48 | 41,348,392 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
@Copyright:LintCode
@Author: chenjiayaooo
@Problem: http://www.lintcode.com/problem/longest-increasing-continuous-subsequence
@Language: Java
@Datetime: 17-01-22 12:05
*/
public class Solution {
/**
* @param A an array of Integer
* @return an integer
*/
public int longestIncreasingContinu... | UTF-8 | Java | 922 | java | longest-increasing-continuous-subsequence.java | Java | [
{
"context": "/*\n@Copyright:LintCode\n@Author: chenjiayaooo\n@Problem: http://www.lintcode.com/problem/longes",
"end": 46,
"score": 0.9983035922050476,
"start": 34,
"tag": "NAME",
"value": "chenjiayaooo"
}
] | null | [] | /*
@Copyright:LintCode
@Author: chenjiayaooo
@Problem: http://www.lintcode.com/problem/longest-increasing-continuous-subsequence
@Language: Java
@Datetime: 17-01-22 12:05
*/
public class Solution {
/**
* @param A an array of Integer
* @return an integer
*/
public int longestIncreasingContinu... | 922 | 0.463124 | 0.432755 | 35 | 25.371429 | 21.625496 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.457143 | false | false | 13 |
9c3fd1af7acef2abcb6f672236f14101839fc06e | 8,744,553,473,366 | 191bd68552a033d6318ad65e1d1ead5e0207eed4 | /src/br/com/fundamento/modelos/Caixa.java | 094f9659fc52ab592e137a41154fa8ff854fbf8a | [] | no_license | AndrePereira22/Consultorio | https://github.com/AndrePereira22/Consultorio | 53df2aa0deb0488db25536804073b965da773abe | 096a79014fba2d33984bb4a86e15824fcef0a60a | refs/heads/master | 2022-07-20T01:38:29.101000 | 2019-06-01T18:10:11 | 2019-06-01T18:10:11 | 189,763,004 | 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 br.com.fundamento.modelos;
import java.util.List;
/**
*
* @author Glenda Alves de Lima
*/
public class Caixa ... | UTF-8 | Java | 3,285 | java | Caixa.java | Java | [
{
"context": ";\r\n\r\nimport java.util.List;\r\n\r\n/**\r\n *\r\n * @author Glenda Alves de Lima\r\n */\r\npublic class Caixa {\r\n \r\n private int",
"end": 294,
"score": 0.999882161617279,
"start": 274,
"tag": "NAME",
"value": "Glenda Alves de Lima"
}
] | 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 br.com.fundamento.modelos;
import java.util.List;
/**
*
* @author <NAME>
*/
public class Caixa {
p... | 3,271 | 0.534247 | 0.534247 | 167 | 17.670658 | 17.626343 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.191617 | false | false | 13 |
9a47b88cd06ecd1c0eb3efd965adabbb81186c27 | 11,476,152,655,753 | eacfc7cf6b777649e8e017bf2805f6099cb9385d | /APK Source/src/com/heyzap/house/model/NativeModel.java | 00fa9c54cef6ce74cd72e622143d9483d2f956ff | [] | no_license | maartenpeels/WordonHD | https://github.com/maartenpeels/WordonHD | 8b171cfd085e1f23150162ea26ed6967945005e2 | 4d316eb33bc1286c4b8813c4afd478820040bf05 | refs/heads/master | 2021-03-27T16:51:40.569000 | 2017-06-12T13:32:51 | 2017-06-12T13:32:51 | 44,254,944 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | // Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/kpdus/jad.html
// Decompiler options: braces fieldsfirst space lnc
package com.heyzap.house.model;
import android.content.Context;
import java.io.Serializable;
import org.json.JSONException;
import org.json.JSON... | UTF-8 | Java | 1,295 | java | NativeModel.java | Java | [
{
"context": "// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov.\n// Jad home page: http://www.geocities.com/kpdus",
"end": 61,
"score": 0.9996669292449951,
"start": 45,
"tag": "NAME",
"value": "Pavel Kouznetsov"
}
] | null | [] | // Decompiled by Jad v1.5.8e. Copyright 2001 <NAME>.
// Jad home page: http://www.geocities.com/kpdus/jad.html
// Decompiler options: braces fieldsfirst space lnc
package com.heyzap.house.model;
import android.content.Context;
import java.io.Serializable;
import org.json.JSONException;
import org.json.JSONObject;
/... | 1,285 | 0.662548 | 0.657143 | 50 | 24.9 | 24.757423 | 122 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.32 | false | false | 13 |
80d4f140b717d59349ac96708f8491e7ef0b50d4 | 11,476,152,655,290 | 5d6be6df73a370ce66b3f7f673da150fbc9a2020 | /proyecto final java/proyecto final java-ejb/src/java/conexion/ConexionBD.java | e866c3594bf3e51581285882268cb00885177a24 | [] | no_license | DiegoMMR/WD_proyecto_final | https://github.com/DiegoMMR/WD_proyecto_final | f6befaca3f85bba9e29f0dbbfc67fff25bfe35a1 | 9002a5fe72b4d6a6bbf5f417acf82dc7273558c4 | refs/heads/master | 2023-03-12T03:53:39.593000 | 2018-11-03T03:06:20 | 2018-11-03T03:06:20 | 154,991,317 | 0 | 0 | null | false | 2023-03-03T06:20:41 | 2018-10-27T17:31:15 | 2021-05-18T21:54:23 | 2023-03-03T06:20:41 | 44,945 | 0 | 0 | 3 | JavaScript | false | false | /*
* 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 conexion;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.Result... | UTF-8 | Java | 2,358 | java | ConexionBD.java | Java | [
{
"context": "eFormat;\nimport java.util.Date;\n\n/**\n *\n * @author Diego\n */\npublic class ConexionBD {\n \n public sta",
"end": 464,
"score": 0.9874711036682129,
"start": 459,
"tag": "NAME",
"value": "Diego"
},
{
"context": "e=proveedor\";\n public static String usuario... | 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 conexion;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.Result... | 2,362 | 0.589059 | 0.580577 | 80 | 28.475 | 25.306114 | 106 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.55 | false | false | 13 |
943ebd5e368456b91f75d916be65fc671105de18 | 3,831,110,882,786 | 90a8e1cce43d8d55e8d605369c80f8032d8adb40 | /src/netcollector/Server.java | 93d4082533955998595519b72c3f0611fa9c2abb | [] | no_license | AppShelf/NetCollector | https://github.com/AppShelf/NetCollector | 2184577e2ff67bff9131cbc23070115b22252ad2 | b20031762a7d16856864b34ac2a8215f328cea4b | refs/heads/master | 2021-01-12T07:58:17.749000 | 2016-12-21T15:20:31 | 2016-12-21T15:20:31 | 77,062,777 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* NetCollector Server
*/
package netcollector;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.net.ServerSocket;
import java.net.Socket;
/**
*
*... | UTF-8 | Java | 2,240 | java | Server.java | Java | [
{
"context": "t;\r\nimport java.net.Socket;\r\n\r\n/**\r\n *\r\n * @author SistemiQuintaBi1617\r\n */\r\npublic class Server {\r\n\r\n ServerSocket s",
"end": 348,
"score": 0.966562032699585,
"start": 329,
"tag": "USERNAME",
"value": "SistemiQuintaBi1617"
}
] | null | [] | /*
* NetCollector Server
*/
package netcollector;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.net.ServerSocket;
import java.net.Socket;
/**
*
*... | 2,240 | 0.534375 | 0.530804 | 70 | 30 | 24.8228 | 116 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.557143 | false | false | 13 |
46bac718fbac82b882eec05dd9c978b71ec926e6 | 28,604,482,192,224 | 7e1ae35b0f639a4d1dc249e371a018227b34b5ff | /src/main/java/com/dmruczek/poe_arbitrage_helper/CurrencyTradeListing.java | 0cd57995abc21381cba669b298a6cef1fd9954b9 | [] | no_license | dmruczek/poe-arbitrage-helper | https://github.com/dmruczek/poe-arbitrage-helper | 64bddb0fcfe2b4b1fe9aefdcfb28aaf327385ce0 | 50ff5c695f502030673d43f50ae7cf91e04ed6ab | refs/heads/master | 2020-04-06T03:36:41.203000 | 2016-12-22T22:02:54 | 2016-12-22T22:02:54 | 60,907,139 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.dmruczek.poe_arbitrage_helper;
import java.math.BigDecimal;
public class CurrencyTradeListing {
private BigDecimal sellOffer;
private BigDecimal buyOffer;
private int sellType;
private int buyType;
public BigDecimal getSellOffer() {
return sellOffer;
}
public void setSellOffer... | UTF-8 | Java | 790 | java | CurrencyTradeListing.java | Java | [] | null | [] | package com.dmruczek.poe_arbitrage_helper;
import java.math.BigDecimal;
public class CurrencyTradeListing {
private BigDecimal sellOffer;
private BigDecimal buyOffer;
private int sellType;
private int buyType;
public BigDecimal getSellOffer() {
return sellOffer;
}
public void setSellOffer... | 790 | 0.694937 | 0.694937 | 45 | 15.555555 | 15.807952 | 49 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.111111 | false | false | 13 |
359c19b94c64530ac9d7fb051a5b90ab5caba4e8 | 27,333,171,929,111 | 1637b42bfe66763990223d674aa470aa239a240b | /ttsd-sms-wrapper/src/main/java/com/tuotiansudai/smswrapper/repository/mapper/RegisterCaptchaMapper.java | d62f346fb3699519504738c2fc6fa45315fb0f80 | [] | no_license | haifeiforwork/tuotiansudai | https://github.com/haifeiforwork/tuotiansudai | 11feef3e42f02c3e590ca2b7c081f106b706f7da | 891fefef783a96f86c3283ce377ba18e80db0c81 | refs/heads/master | 2020-12-12T09:16:06.320000 | 2019-03-08T09:34:26 | 2019-03-08T09:34:26 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.tuotiansudai.smswrapper.repository.mapper;
import org.springframework.stereotype.Repository;
@Repository
public interface RegisterCaptchaMapper extends BaseMapper {
}
| UTF-8 | Java | 183 | java | RegisterCaptchaMapper.java | Java | [] | null | [] | package com.tuotiansudai.smswrapper.repository.mapper;
import org.springframework.stereotype.Repository;
@Repository
public interface RegisterCaptchaMapper extends BaseMapper {
}
| 183 | 0.846995 | 0.846995 | 9 | 19.333334 | 24.846193 | 59 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.222222 | false | false | 13 |
d3fed12146cfaa3e2f1c010e76228a3a4144d9cf | 32,590,211,842,922 | 73d1400b4f92aeaf861baf8df5efdb9002f6f07e | /src/main/java/tr/com/tumed/config/audit/package-info.java | f95c8409f053c2f3b9330a517e901f0223321c68 | [] | no_license | habibmevlut/tumed | https://github.com/habibmevlut/tumed | 7038d7d0ef3d1cf57c1a109a0b7be6435adafc48 | cb891dc16d2f17de10d062345ca522d1d6171673 | refs/heads/master | 2023-02-04T22:53:42.579000 | 2020-12-27T19:43:53 | 2020-12-27T19:43:53 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /**
* Audit specific code.
*/
package tr.com.tumed.config.audit;
| UTF-8 | Java | 67 | java | package-info.java | Java | [] | null | [] | /**
* Audit specific code.
*/
package tr.com.tumed.config.audit;
| 67 | 0.671642 | 0.671642 | 4 | 15.75 | 13.329947 | 34 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.25 | false | false | 13 |
1c0cb85effded5e8816f0ce5bba20ed5a49832b8 | 5,171,140,649,066 | d3b5c87819879568f8b86077a12ef0c4423cc5cb | /ejb/src/main/java/com/test/domain/WardEntity.java | 5d0f456e087ec7cf98d7d04399f3a28afed5947b | [] | no_license | anhdhnguyen/HomeLand | https://github.com/anhdhnguyen/HomeLand | 99dd6315c76bd9a45e9db8f2c87d96fad9de0c2e | 90494877ec0e10f29a298d8316ff14e52e73889c | refs/heads/master | 2023-04-17T15:00:04.192000 | 2017-12-10T03:30:22 | 2017-12-10T03:30:22 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.test.domain;
import javax.persistence.*;
/**
* Created with IntelliJ IDEA.
* User: nkhang
* Date: 10/15/15
* Time: 10:25 AM
* To change this template use File | Settings | File Templates.
*/
@javax.persistence.Table(name = "ward")
@Entity
public class WardEntity {
private Integer wardId;
pri... | UTF-8 | Java | 1,577 | java | WardEntity.java | Java | [
{
"context": "ce.*;\n\n/**\n * Created with IntelliJ IDEA.\n * User: nkhang\n * Date: 10/15/15\n * Time: 10:25 AM\n * To change ",
"end": 105,
"score": 0.9995980858802795,
"start": 99,
"tag": "USERNAME",
"value": "nkhang"
}
] | null | [] | package com.test.domain;
import javax.persistence.*;
/**
* Created with IntelliJ IDEA.
* User: nkhang
* Date: 10/15/15
* Time: 10:25 AM
* To change this template use File | Settings | File Templates.
*/
@javax.persistence.Table(name = "ward")
@Entity
public class WardEntity {
private Integer wardId;
pri... | 1,577 | 0.6487 | 0.642359 | 71 | 21.211267 | 17.856955 | 64 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.267606 | false | false | 13 |
d1978594d1a12cb8aaed0afd1a29407e81b98b43 | 34,608,846,504,713 | 0e06e096a9f95ab094b8078ea2cd310759af008b | /classes39-dex2jar/com/kongregate/o/g/f.java | 9bc64bfa7090a72f6cf6802329e1884a909ad093 | [] | no_license | Manifold0/adcom_decompile | https://github.com/Manifold0/adcom_decompile | 4bc2907a057c73703cf141dc0749ed4c014ebe55 | fce3d59b59480abe91f90ba05b0df4eaadd849f7 | refs/heads/master | 2020-05-21T02:01:59.787000 | 2019-05-10T00:36:27 | 2019-05-10T00:36:27 | 185,856,424 | 1 | 2 | null | false | 2019-05-10T00:36:28 | 2019-05-09T19:04:28 | 2019-05-09T22:35:26 | 2019-05-10T00:36:27 | 95,641 | 0 | 2 | 0 | Java | false | false | //
// Decompiled by Procyon v0.5.34
//
package com.kongregate.o.g;
import java.io.Serializable;
import com.kongregate.android.internal.util.StringUtils;
import java.util.Iterator;
import com.kongregate.android.internal.util.j;
import java.util.HashMap;
import java.util.Map;
import java.util.StringTokenizer;
import ... | UTF-8 | Java | 21,424 | java | f.java | Java | [] | null | [] | //
// Decompiled by Procyon v0.5.34
//
package com.kongregate.o.g;
import java.io.Serializable;
import com.kongregate.android.internal.util.StringUtils;
import java.util.Iterator;
import com.kongregate.android.internal.util.j;
import java.util.HashMap;
import java.util.Map;
import java.util.StringTokenizer;
import ... | 21,424 | 0.493512 | 0.460325 | 527 | 39.652752 | 27.068802 | 128 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.481973 | false | false | 13 |
90304aa54cfa62d153d888d2867bd0e2c59acb63 | 36,996,848,297,647 | 69b35b2bf08fbec0494612a540ea57ebde167424 | /app/src/main/java/com/example/infispace/HomeActivity.java | 0134b0b5676112c5e0cf23f50f55791b9fd17508 | [] | no_license | mr1holmes/InfiSpaceAndroid | https://github.com/mr1holmes/InfiSpaceAndroid | 8acccc49951f1c2ce16fa119e5b0e97db239580d | 36442bd22f7918e5ba7238ff327d4c3c183041c7 | refs/heads/master | 2021-03-16T05:11:42.064000 | 2017-10-24T19:56:53 | 2017-10-24T19:56:53 | 107,894,525 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.infispace;
import android.content.DialogInterface;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.design.widget.TabLayout;
import android.support.v4.app.Fragment;
import android.support.v4.ap... | UTF-8 | Java | 4,058 | java | HomeActivity.java | Java | [] | null | [] | package com.example.infispace;
import android.content.DialogInterface;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.design.widget.TabLayout;
import android.support.v4.app.Fragment;
import android.support.v4.ap... | 4,058 | 0.655988 | 0.65377 | 129 | 30.457365 | 24.835274 | 85 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.511628 | false | false | 13 |
f29e0b72a5e7a0b0ecb2ff029bc1c0b967dde474 | 36,859,409,357,872 | 1c3b15c7d9043aed48fb7b56d0cd82bbc3c2a04d | /src/view/Frame.java | 14f877f6e8d2aee90281b1e6e60da2dcf2730165 | [] | no_license | tjstinso/tjstinso-tetris | https://github.com/tjstinso/tjstinso-tetris | 16b880bf98edd2915c8ab6db54ff9fbc569487cd | bfa4bb55b5a786218cf7c6e3e5e08ece05ac0c04 | refs/heads/master | 2018-01-11T17:22:02.297000 | 2015-12-03T10:06:14 | 2015-12-03T10:06:14 | 47,323,562 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Tyler Stinson
* TCSS 305 – Autumn 2015
* Assignment 6 – Tetris A
*/
package view;
import controllers.MyKeyListener;
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.util.Observable;
import javax.swing.JFrame;
import javax.swing.JMenuBar;
import javax.swing.Timer;
import keys.KeyCodes;
imp... | UTF-8 | Java | 3,774 | java | Frame.java | Java | [
{
"context": "/*\n* Tyler Stinson\n* TCSS 305 – Autumn 2015\n* Assignment 6 – Tetris ",
"end": 18,
"score": 0.9998493194580078,
"start": 5,
"tag": "NAME",
"value": "Tyler Stinson"
},
{
"context": "ss used to create an Observable JFrame.\n * @author Tyler Stinson\n * @version 1\n */\n... | null | [] | /*
* <NAME>
* TCSS 305 – Autumn 2015
* Assignment 6 – Tetris A
*/
package view;
import controllers.MyKeyListener;
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.util.Observable;
import javax.swing.JFrame;
import javax.swing.JMenuBar;
import javax.swing.Timer;
import keys.KeyCodes;
import mod... | 3,753 | 0.625729 | 0.615915 | 126 | 28.920635 | 23.172783 | 86 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.5 | false | false | 13 |
82ffffd0c57cf23ccd89468773e2b69950e7dc22 | 37,185,826,866,400 | fa5b3f6e879b37a68e643e8f23ea1ede26f9f96e | /app/src/main/java/com/example/asus/medic_schedule/MainActivity.java | b5cc9845a0340e5c94ea50b085f9059e90fb0c21 | [] | no_license | DivyaPrajapati09/MedicSchedule | https://github.com/DivyaPrajapati09/MedicSchedule | 787baadaf6e7546b563ccd85e18407324670ff33 | 1305f990c9d3f6d0530be00bd849e862b6771219 | refs/heads/master | 2020-12-31T06:45:59.320000 | 2016-06-10T18:42:46 | 2016-06-10T18:42:46 | 59,402,889 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.asus.medic_schedule;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.widget.AdapterView;
import com.mikepenz.iconics.typeface.FontAwesome;
import com.mikepen... | UTF-8 | Java | 7,257 | java | MainActivity.java | Java | [
{
"context": "ofile profile = new ProfileDrawerItem().withName(\"Divya Prajapati\").withEmail(\"divya4337@gmail.com\").withIcon(getRe",
"end": 1536,
"score": 0.9998908042907715,
"start": 1521,
"tag": "NAME",
"value": "Divya Prajapati"
},
{
"context": "awerItem().withName(\"Divya Praj... | null | [] | package com.example.asus.medic_schedule;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.widget.AdapterView;
import com.mikepenz.iconics.typeface.FontAwesome;
import com.mikepen... | 7,236 | 0.611547 | 0.607 | 118 | 60.508476 | 48.872498 | 250 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.635593 | false | false | 13 |
05899246961f687e7ef800f086f619b4f8c65191 | 15,410,342,691,189 | 366d709331d04133d1222e45cd3d14d09e038b0f | /HandlingElements/alerts/AlertWithOKButton.java | 3f24b86cee0eb9ced8f94c11365c0a4e98193da9 | [] | no_license | DorababuServion/SeleniumClass | https://github.com/DorababuServion/SeleniumClass | aa9954ff4ecccddf45dd3fc57a0458acb4530ff2 | 079cce6c168f40154bf811ee1ea09311659304da | refs/heads/main | 2023-03-21T04:36:33.337000 | 2021-03-10T04:46:27 | 2021-03-10T04:46:27 | 346,233,758 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package HandlingElements;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class AlertWithOKButton {
public static void main(String[] args) throws InterruptedException {
System.setProperty("webdriver.chrome.driver","C://Drivers/chromed... | UTF-8 | Java | 671 | java | AlertWithOKButton.java | Java | [] | null | [] | package HandlingElements;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class AlertWithOKButton {
public static void main(String[] args) throws InterruptedException {
System.setProperty("webdriver.chrome.driver","C://Drivers/chromed... | 671 | 0.734724 | 0.725782 | 24 | 26.958334 | 31.434427 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.583333 | false | false | 13 |
6b179d9146fa7fac093c6ec0fdd9681dc34ed54c | 18,038,862,678,163 | 5e527ee9f9f48fe64f47ea31965c917a4f246156 | /src/main/java/container/TryConcurrentHashMap.java | 3bab164bb45b621a13c19d206350eb8e431cef18 | [] | no_license | TerenceG-cn/multithreading-and-concurrency | https://github.com/TerenceG-cn/multithreading-and-concurrency | 9c4dd67b0920c28656f1441dee41e37c79b28df8 | 03d717beaf0fb4b336321b65216bca2c08739751 | refs/heads/master | 2023-05-10T07:38:40.410000 | 2021-06-13T15:21:27 | 2021-06-13T15:21:27 | 278,818,971 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package container;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
public class TryConcurrentHashMap {
public static void main(String[] args){
Map<Integer,Integer> concurrentHashMap = new ConcurrentHashMap<Integer, Integer>();
//Map<Integer,Integer> hashmap=new HashMap<Integer... | UTF-8 | Java | 1,282 | java | TryConcurrentHashMap.java | Java | [] | null | [] | package container;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
public class TryConcurrentHashMap {
public static void main(String[] args){
Map<Integer,Integer> concurrentHashMap = new ConcurrentHashMap<Integer, Integer>();
//Map<Integer,Integer> hashmap=new HashMap<Integer... | 1,282 | 0.552839 | 0.545741 | 38 | 32.36842 | 25.633471 | 91 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1 | false | false | 13 |
544e27197401ea183af1677bfe5c09e6652c9455 | 24,610,162,664,028 | 1ff91b0589116e734752e1d951fc1831057d8e4f | /src/main/java/com/kimjh/simpleblog/controller/PostController.java | 176fd57de1d60050db8d3556b1755afe849d8387 | [
"MIT"
] | permissive | jinhak/SimpleBlog | https://github.com/jinhak/SimpleBlog | 7f084b7292263ab35fd02313dab3f77ba02521d5 | c8e766c4adca096f96b56956884a5302ad0d307d | refs/heads/master | 2020-06-12T17:31:14.137000 | 2019-07-07T23:32:28 | 2019-07-07T23:32:28 | 194,372,938 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.kimjh.simpleblog.controller;
import com.kimjh.simpleblog.common.controller.AbstractBaseDataController;
import com.kimjh.simpleblog.db.PostDB;
import com.kimjh.simpleblog.model.PostModel;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.stereotype.Controller;
impor... | UTF-8 | Java | 1,557 | java | PostController.java | Java | [] | null | [] | package com.kimjh.simpleblog.controller;
import com.kimjh.simpleblog.common.controller.AbstractBaseDataController;
import com.kimjh.simpleblog.db.PostDB;
import com.kimjh.simpleblog.model.PostModel;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.stereotype.Controller;
impor... | 1,557 | 0.785485 | 0.785485 | 44 | 34.386364 | 29.492075 | 127 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.409091 | false | false | 13 |
fdadbdf2dfd7c0aa6526799da812c87b150afd60 | 30,339,649,040,832 | cf66ae359417732c172597177769261b63cb17cc | /Algorithms/Strings/Anagram.java | 9ae858d3c25cd34a3551ba01de6cae2c0f479b35 | [
"Unlicense"
] | permissive | jerubball/HackerRank | https://github.com/jerubball/HackerRank | fec45be53669d195c41d2edf0fbcb5eeb2f9de6f | c484532d6e4cd57227d17f049df5dd754611f281 | refs/heads/master | 2021-06-12T11:05:07.408000 | 2019-10-02T21:57:46 | 2019-10-02T21:57:46 | 135,625,201 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Algorithms.Strings;
import java.io.*;
import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.regex.*;
/**
* HackerRank Algorithms Strings 18
* https://www.hackerrank.com/challenges/anagram/problem
* @author Hasol
*/
public class An... | UTF-8 | Java | 1,628 | java | Anagram.java | Java | [
{
"context": "ckerrank.com/challenges/anagram/problem\n * @author Hasol\n */\npublic class Anagram {\n static final int A",
"end": 300,
"score": 0.9994113445281982,
"start": 295,
"tag": "NAME",
"value": "Hasol"
}
] | null | [] | package Algorithms.Strings;
import java.io.*;
import java.math.*;
import java.security.*;
import java.text.*;
import java.util.*;
import java.util.concurrent.*;
import java.util.regex.*;
/**
* HackerRank Algorithms Strings 18
* https://www.hackerrank.com/challenges/anagram/problem
* @author Hasol
*/
public class An... | 1,628 | 0.571867 | 0.556511 | 50 | 31.559999 | 19.854631 | 105 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.74 | false | false | 13 |
141cc9f7f20e8aba4c74822eaa95f102bf7d4346 | 11,063,835,814,407 | 79b17b0a705d8c4e944cf904cd6e8f2a47b2904b | /src/main/java/hu/tilos/radio/backend/content/page/PageRepository.java | 3e69f449ec85640bd5c83536a83a68e146b60ca0 | [] | no_license | tilosradio/web2-backend | https://github.com/tilosradio/web2-backend | c17e4a7fc5337f2bccbef579b09aadc2fb5f05e7 | e9ee545fd06ca13d31f4d53271d54f51394911fc | refs/heads/master | 2020-01-27T19:14:58.425000 | 2018-10-16T17:45:16 | 2018-10-16T17:45:16 | 26,058,309 | 0 | 1 | null | false | 2018-10-16T17:45:18 | 2014-11-01T17:53:43 | 2017-09-24T09:47:56 | 2018-10-16T17:45:17 | 36,758 | 0 | 1 | 0 | Java | false | null | package hu.tilos.radio.backend.content.page;
import org.springframework.data.mongodb.repository.MongoRepository;
public interface PageRepository extends MongoRepository<Page, String> {
Page findByAlias(String alias);
Page findByAliasOrId(String alias, String id);
Long deletePageByAlias(String alias);
... | UTF-8 | Java | 322 | java | PageRepository.java | Java | [] | null | [] | package hu.tilos.radio.backend.content.page;
import org.springframework.data.mongodb.repository.MongoRepository;
public interface PageRepository extends MongoRepository<Page, String> {
Page findByAlias(String alias);
Page findByAliasOrId(String alias, String id);
Long deletePageByAlias(String alias);
... | 322 | 0.78882 | 0.78882 | 13 | 23.76923 | 27.072989 | 71 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.538462 | false | false | 13 |
69f0fb9dc39ac75d080c4841f097deded87fba3a | 8,074,538,559,615 | adce1ed3eb8461e38d9e9c4207a5e629456f885b | /Assignment2a/src/assignment2a/ChessDriver.java | b86b977fbe33eacc5fd4f477c26cb85025ebd220 | [] | no_license | hwchan/chess | https://github.com/hwchan/chess | 2561d40dd219c09f36f0a219a3de2bef3fe71f36 | 7345ddd6c6e7ab2c79407acde153c5222fffa8c4 | refs/heads/master | 2021-01-10T10:10:44.667000 | 2015-11-29T09:18:12 | 2015-11-29T09:18:12 | 45,762,510 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package assignment2a;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.*;
import javax.swing.*;
import javax.swing.filechooser.FileFilter;
import javax.swing.filechooser.FileNameExtensionFilter;
public class ChessDriver extends JFrame implements Action... | UTF-8 | Java | 5,090 | java | ChessDriver.java | Java | [] | null | [] | package assignment2a;
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.*;
import javax.swing.*;
import javax.swing.filechooser.FileFilter;
import javax.swing.filechooser.FileNameExtensionFilter;
public class ChessDriver extends JFrame implements Action... | 5,090 | 0.533595 | 0.524361 | 139 | 35.618706 | 22.503204 | 139 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.935252 | false | false | 13 |
49c61c0ccee241cf7bd453b9c1a6e7815798016f | 16,647,293,246,510 | 5c894e1b5f5fdc515565aa429ecc337c76f9815f | /RetrofitApp/app/src/main/java/com/example/sda/retrofitapp/base/BaseMvpView.java | 01f05a4a820dabe8eea0ecc80cfe6d735ecd2e83 | [] | no_license | manieks/SDA_AND | https://github.com/manieks/SDA_AND | e4f6450965ecbcddf9838d7d9a2090dc0bb9b4f2 | 9a1814c2c5d19ab33c4c98bb671750967bef52ff | refs/heads/master | 2021-01-20T09:37:10.354000 | 2017-06-28T16:55:08 | 2017-06-28T16:55:08 | 90,265,931 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.sda.retrofitapp.base;
/**
* Created by manieks on 26.06.17.
*/
public interface BaseMvpView {
}
| UTF-8 | Java | 120 | java | BaseMvpView.java | Java | [
{
"context": "m.example.sda.retrofitapp.base;\n\n/**\n * Created by manieks on 26.06.17.\n */\n\npublic interface BaseMvpView {\n",
"end": 68,
"score": 0.9995753765106201,
"start": 61,
"tag": "USERNAME",
"value": "manieks"
}
] | null | [] | package com.example.sda.retrofitapp.base;
/**
* Created by manieks on 26.06.17.
*/
public interface BaseMvpView {
}
| 120 | 0.708333 | 0.658333 | 8 | 14 | 16.537836 | 41 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.125 | false | false | 13 |
7d7ad87d1dc9d871935ea1470481fdafb1d9b512 | 2,637,109,955,560 | 0226222631a2ec6ce01ce3ad09b6b6b0a55af9ee | /PersonalKanban/src/mg/proyecto/evolutivo/kanban/Program.java | 757efcb77cdee1e84e302180e13aa0bc022a2ec0 | [] | no_license | Miguelitos88/ProyectoE | https://github.com/Miguelitos88/ProyectoE | abeb45d6b0fbad1b605b29be0fc07a92fc06ebeb | 9077b6992ba20641327e1c3f7fe041879f9b8067 | refs/heads/master | 2020-05-19T10:39:29.962000 | 2014-06-04T13:28:22 | 2014-06-04T13:28:22 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package mg.proyecto.evolutivo.kanban;
import java.util.Date;
import java.util.Random;
import mg.proyecto.evolutivo.kanban.model.*;
public class Program {
public static IDashboard dashboard = new DashboardList();
public static void main(String[] args) throws Exception {
System.out.println("Start" + new Date());... | UTF-8 | Java | 980 | java | Program.java | Java | [] | null | [] | package mg.proyecto.evolutivo.kanban;
import java.util.Date;
import java.util.Random;
import mg.proyecto.evolutivo.kanban.model.*;
public class Program {
public static IDashboard dashboard = new DashboardList();
public static void main(String[] args) throws Exception {
System.out.println("Start" + new Date());... | 980 | 0.617347 | 0.605102 | 37 | 25.486486 | 19.212358 | 58 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.54054 | false | false | 13 |
9eb5dde952797353004ffb874f53484f1fd32f16 | 14,113,262,583,938 | 939223262838585bc17d24b3263674b8f1946505 | /code/android_main/java/holo_final/LightActivity.java | b4fde57e9772e31aa121413ca3a2a5ce18eec782 | [] | no_license | joswoo/Maker | https://github.com/joswoo/Maker | 75e97b1a2b0134affba7e2910e51f0037519788e | 0841d0d8876bf80cb482d3cc5e5c2ade3df28135 | refs/heads/master | 2020-03-20T04:25:54.439000 | 2018-07-11T04:13:58 | 2018-07-11T04:13:58 | 137,182,022 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.qhdud.holo_final;
import android.os.Bundle;
import android.support.constraint.ConstraintLayout;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.NumberPicker;
import android.widget.Switch;
import android.widget.T... | UTF-8 | Java | 4,642 | java | LightActivity.java | Java | [] | null | [] | package com.example.qhdud.holo_final;
import android.os.Bundle;
import android.support.constraint.ConstraintLayout;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.NumberPicker;
import android.widget.Switch;
import android.widget.T... | 4,642 | 0.620366 | 0.607937 | 119 | 36.537815 | 28.328146 | 103 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.537815 | false | false | 13 |
6590f30260f4ab37da90ac757a9af285b68b8d9a | 3,015,067,106,732 | c0e09ebc7d67faad881c14e4f5747d3676b48f5e | /app/src/main/java/com/example/shivani/aspire1/TabTwo.java | de46d22057b1f0be4439f93f899de6a3a48633c4 | [] | no_license | DroidHut/SnapperProperties | https://github.com/DroidHut/SnapperProperties | 10ddb87e19b25cefba6766d5a43fc72ea2fd652f | d7b1656353c0d46715e592bf3cb6f8f0a56d0b6f | refs/heads/master | 2021-08-29T16:37:11.913000 | 2017-12-14T10:02:54 | 2017-12-14T10:02:54 | 114,234,008 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.shivani.aspire1;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CheckBox;
import android.widget.CheckedTextView;
import android.widget.RadioButton;
import android.wi... | UTF-8 | Java | 1,216 | java | TabTwo.java | Java | [
{
"context": "package com.example.shivani.aspire1;\n\nimport android.os.Bundle;\nimport androi",
"end": 27,
"score": 0.9489564895629883,
"start": 20,
"tag": "USERNAME",
"value": "shivani"
}
] | null | [] | package com.example.shivani.aspire1;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CheckBox;
import android.widget.CheckedTextView;
import android.widget.RadioButton;
import android.wi... | 1,216 | 0.708882 | 0.703125 | 47 | 24.893618 | 22.192804 | 80 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.553191 | false | false | 13 |
47eac8a07d02647b645da1c645955b0fd6c47097 | 10,737,418,260,304 | ff9292b4d50fa21729c8349858f501a8212d4fa2 | /src/com/company/Main.java | 40606dbab5ce9a6024eeb981844621050899264c | [] | no_license | jcblefler/FindingValueInArray | https://github.com/jcblefler/FindingValueInArray | 0b7655a999709bbc70e8668f277f04a6baca063f | f08e1b150eaa082c8da73b5f572d22984121e0bd | refs/heads/master | 2020-05-16T13:04:49.776000 | 2019-04-23T17:33:45 | 2019-04-23T17:33:45 | 183,064,745 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.company;
import java.util.ArrayList;
public class Main {
public static void main(String[] args) {
ArrayList<Integer> numList = new ArrayList<>();
numList.add(17);
numList.add(29);
numList.add(11);
numList.add(17);
numList.add(39);
numList.add(... | UTF-8 | Java | 906 | java | Main.java | Java | [] | null | [] | package com.company;
import java.util.ArrayList;
public class Main {
public static void main(String[] args) {
ArrayList<Integer> numList = new ArrayList<>();
numList.add(17);
numList.add(29);
numList.add(11);
numList.add(17);
numList.add(39);
numList.add(... | 906 | 0.502208 | 0.471302 | 45 | 19.133333 | 20.443527 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.355556 | false | false | 13 |
9118b919ea99f68dff714faf3712e38056e6bde5 | 24,661,702,263,423 | 1cdbee661d9069c4903a35fe6a9e878d65a18a88 | /ASpyLiveAudio/src/vn/vhc/live/liveaudio/PipeFactory.java | e55a9f41ffaf10e6e6a5ac875ae6afc8ef2cc857 | [] | no_license | Lehuutuong/Console | https://github.com/Lehuutuong/Console | 68e8bec24903d8c2671133bf8944716d2b7d1b25 | 5a6764e91318b95c574c1eb24baa6d090aacc286 | refs/heads/master | 2020-03-26T05:24:49.250000 | 2020-02-24T05:22:31 | 2020-02-24T05:22:31 | 144,555,859 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package vn.vhc.live.liveaudio;
import vn.vhc.live.UtilGame;
import android.telephony.TelephonyManager;
public class PipeFactory {
private FFMPEGWrapper ffWrapper;
private String ffmpegCommand;
public PipeFactory() {
ffWrapper = FFMPEGWrapper.getInstance();
ffmpegCommand = ffWrapper.data_location + ffWrapp... | UTF-8 | Java | 5,037 | java | PipeFactory.java | Java | [] | null | [] | package vn.vhc.live.liveaudio;
import vn.vhc.live.UtilGame;
import android.telephony.TelephonyManager;
public class PipeFactory {
private FFMPEGWrapper ffWrapper;
private String ffmpegCommand;
public PipeFactory() {
ffWrapper = FFMPEGWrapper.getInstance();
ffmpegCommand = ffWrapper.data_location + ffWrapp... | 5,037 | 0.662299 | 0.635894 | 142 | 34.471832 | 25.969835 | 109 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.985916 | false | false | 13 |
93846f7dc739835a027a4a7c98b4bf10cea777f0 | 28,656,021,863,011 | 5832bfb6c8ded3e4d8f64b3ad43aca8715b15e9f | /MoreThanOrEqual.java | b0c1bd828a0adfb1d1d767c1abc7edbd4611482f | [] | no_license | liumiao-p/happycoding | https://github.com/liumiao-p/happycoding | 41da75cdd0b22cbbf2a6bdcb93cd04de046d65af | 7ce3adb2b4fe26a68e089b3c3d82efe81fd46c6f | refs/heads/master | 2020-03-31T11:55:30.532000 | 2019-01-07T05:11:41 | 2019-01-07T05:11:41 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package software_testing_homework_10;
import org.hamcrest.*;
import org.junit.Before;
import org.junit.Test;
public class MoreThanOrEqual<T extends Comparable<T>> extends BaseMatcher<Comparable<T>> {
private final Comparable<T> expectedValue;
public MoreThanOrEqual(T expectedValue) {
this.expectedValue = expectedVa... | UTF-8 | Java | 706 | java | MoreThanOrEqual.java | Java | [] | null | [] | package software_testing_homework_10;
import org.hamcrest.*;
import org.junit.Before;
import org.junit.Test;
public class MoreThanOrEqual<T extends Comparable<T>> extends BaseMatcher<Comparable<T>> {
private final Comparable<T> expectedValue;
public MoreThanOrEqual(T expectedValue) {
this.expectedValue = expectedVa... | 706 | 0.759207 | 0.754957 | 23 | 29.695652 | 24.138071 | 90 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.391304 | false | false | 13 |
baca276a5fa25d8c8c5d8073097d021b79e7b298 | 8,650,064,184,467 | 48684f2e9751525b8f5dd0ac93397e5b4eba0521 | /성적처리V031_주요클래스_Refactoring/src/DAOs/CGwamokDAO.java | ade86b86fdc8aa2023aa9cc508475b7651230c34 | [] | no_license | chokojung12/2015_java | https://github.com/chokojung12/2015_java | e3af2fec03026b4609d92f16f44626eec1353ef4 | 2c7ce2b4bc17c623ab324e3038ed61c3d3f23b9b | refs/heads/master | 2015-08-22T08:01:10.946000 | 2015-03-30T06:42:02 | 2015-03-30T06:42:02 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package DAOs;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import entity.CGwamok;
import entity.CMember;
public class CGwamokDAO {
public CGwamok read(){ return null; }
public void write(CGwamok gwamok){
System.... | UHC | Java | 1,554 | java | CGwamokDAO.java | Java | [] | null | [] | package DAOs;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;
import entity.CGwamok;
import entity.CMember;
public class CGwamokDAO {
public CGwamok read(){ return null; }
public void write(CGwamok gwamok){
System.... | 1,554 | 0.6576 | 0.6576 | 48 | 24.041666 | 17.702353 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.104167 | false | false | 13 |
ba1799a9b1a97fc442045a95894ae0e7117104cf | 24,438,363,964,800 | dc930c3aafd408636ad09af9a202f34021421fc4 | /Project06/src/cn/com.java | 9a8a18256e61e2a4f36df821ea669c0017800066 | [] | no_license | theretothere/- | https://github.com/theretothere/- | 025d4753f946859800313119d67b800049c4bb72 | ea1ed7394caae6daf2e08c237782acfff6fa303a | refs/heads/master | 2023-01-08T06:25:36.377000 | 2020-11-12T07:01:50 | 2020-11-12T07:01:50 | 312,193,708 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package cn;
public class com {
public static void main(String[] args) {
//通过对象调用普通方法
com c = new com();
c.hello();
}
public void hello(){
System.out.println("hello . world!");
}
}
| UTF-8 | Java | 250 | java | com.java | Java | [] | null | [] | package cn;
public class com {
public static void main(String[] args) {
//通过对象调用普通方法
com c = new com();
c.hello();
}
public void hello(){
System.out.println("hello . world!");
}
}
| 250 | 0.521739 | 0.521739 | 13 | 16.692308 | 14.704184 | 45 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.307692 | false | false | 13 |
121f0849544b32537f744f5388719712afd0da9b | 7,327,214,211,715 | 8194ed7317cd9c62d394f6a22f34b48ed163469f | /app/src/main/java/com/example/android/a7learntutorialapp/data/model/Weather/WeatherWind.java | d3052ceec4f0e08a95d5c07d54e6ee924f90b4e1 | [] | no_license | a-donyagard/7learnTutorialApp | https://github.com/a-donyagard/7learnTutorialApp | 763362eeeaf08b18c7e868e41881a6dac6758900 | 8ea39d805410497907e9a184bf3aa9df470d8227 | refs/heads/master | 2020-08-06T11:53:08.919000 | 2019-11-06T19:54:59 | 2019-11-06T19:54:59 | 212,965,453 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.android.a7learntutorialapp.data.model.Weather;
import android.os.Parcel;
import android.os.Parcelable;
import com.google.gson.annotations.SerializedName;
public class WeatherWind implements Parcelable {
@SerializedName("speed")
private final float speed;
@SerializedName("deg")
pri... | UTF-8 | Java | 1,303 | java | WeatherWind.java | Java | [] | null | [] | package com.example.android.a7learntutorialapp.data.model.Weather;
import android.os.Parcel;
import android.os.Parcelable;
import com.google.gson.annotations.SerializedName;
public class WeatherWind implements Parcelable {
@SerializedName("speed")
private final float speed;
@SerializedName("deg")
pri... | 1,303 | 0.636992 | 0.635457 | 55 | 22.709091 | 21.04685 | 105 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.363636 | false | false | 13 |
07414eaaac167337a452213901bb3950a6c60c0e | 11,570,641,952,239 | 5f72d6f11ffdd1927510df9851d2ec26f81cf290 | /2018课程设计/RecordApp/RecordManagement/src/RecordManagement/ManagementLogin.java | ee293294567c6f43c0eecdf1995b8a8dfb843d61 | [] | no_license | Cassiezys/individual-acount | https://github.com/Cassiezys/individual-acount | 90a3760976fd21d110d1364b335b4d6dcd198cd6 | fd7ed66ed104b4d01794bd2f6f4fb7bc7da5bfc3 | refs/heads/master | 2021-01-04T19:52:54.901000 | 2020-02-15T15:30:20 | 2020-02-15T15:30:20 | 240,736,354 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package RecordManagement;
import java.awt.*;
import java.awt.event.*;
import java.sql.*;
import java.util.*;
import javax.swing.*;
import javax.swing.filechooser.FileNameExtensionFilter;
import javax.swing.table.*;
public class ManagementLogin extends JPanel implements ActionListener {
private JPanel messPanel, down... | GB18030 | Java | 7,761 | java | ManagementLogin.java | Java | [
{
"context": "managers where id='\" + name + \"' and password='\" + password + \"'\";\n\t\t\t\ttry {\n\t\t\t\t\tPreparedStatement pstmt = c",
"end": 3906,
"score": 0.8402782082557678,
"start": 3898,
"tag": "PASSWORD",
"value": "password"
}
] | null | [] | package RecordManagement;
import java.awt.*;
import java.awt.event.*;
import java.sql.*;
import java.util.*;
import javax.swing.*;
import javax.swing.filechooser.FileNameExtensionFilter;
import javax.swing.table.*;
public class ManagementLogin extends JPanel implements ActionListener {
private JPanel messPanel, down... | 7,763 | 0.679359 | 0.67402 | 230 | 29.943478 | 21.789732 | 138 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.326087 | false | false | 13 |
4e4dfa64e2e568c5062ad7ded60b3af030b4c163 | 17,841,294,192,358 | d4cf5a6e6e77e9ef48f39dd4502aca45a0ef2b62 | /src/com/gt/sys/controller/SysLogController.java | 76e9b734ddb8855a8b2cf784b0645128a04f7867 | [] | no_license | stevenceo/layssh | https://github.com/stevenceo/layssh | 404738f885c5fdb6b39a685034becf81e7dc0fe6 | 00de30a5332a3c6eb2ef0acf7798ca94357a65e3 | refs/heads/master | 2020-03-28T15:43:55.954000 | 2018-03-13T03:14:47 | 2018-03-13T03:15:12 | 148,620,646 | 1 | 0 | null | true | 2018-09-13T10:15:44 | 2018-09-13T10:15:44 | 2018-09-13T10:15:23 | 2018-04-10T01:32:50 | 25,396 | 0 | 0 | 0 | null | false | null | package com.gt.sys.controller;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
im... | UTF-8 | Java | 1,254 | java | SysLogController.java | Java | [
{
"context": "ice.ISysLogService;\n\n/**\n * \n * @功能说明:系统管理\n * @作者: herun\n * @创建日期:2015-09-24\n * @版本号:V1.0\n */\n@Controller\n",
"end": 470,
"score": 0.9993689060211182,
"start": 465,
"tag": "USERNAME",
"value": "herun"
}
] | null | [] | package com.gt.sys.controller;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
im... | 1,254 | 0.768719 | 0.760399 | 49 | 23.530613 | 22.022346 | 77 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.918367 | false | false | 13 |
6e2ec934c6441e668929d140b14aebfd06ef2f92 | 15,616,501,112,077 | bb7ade9ef2b6c0902410cc4e5c559e528d5b0cc1 | /src/com/onsemi/matrix/api/tests/maintenance/FirmwareGainSpanWifiUpgradeTest.java | 26c0a0ae2972d9477165908015445cbc3808cb09 | [
"Apache-2.0"
] | permissive | ONSemiconductor/MatrixAPITests | https://github.com/ONSemiconductor/MatrixAPITests | e51e299be7d3fb22ca640aee9952fa1c88eddd72 | 39737e8fb57ccf858fa126bf9e5dcded94af1da1 | refs/heads/master | 2020-04-15T05:51:44.146000 | 2015-07-28T20:41:57 | 2015-07-28T20:41:57 | 31,052,996 | 0 | 1 | null | null | null | null | null | null | null | null | null | null | null | null | null | /** Copyright 2015 ON Semiconductor
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to ... | UTF-8 | Java | 5,456 | java | FirmwareGainSpanWifiUpgradeTest.java | Java | [
{
"context": "type = BASIC, user = Settings.Username, password = Settings.Password) }, order = 1)\n\tpublic void gainspanwifiupgrade_S",
"end": 2564,
"score": 0.9384522438049316,
"start": 2547,
"tag": "PASSWORD",
"value": "Settings.Password"
},
{
"context": "type = BASIC, user = Sett... | null | [] | /** Copyright 2015 ON Semiconductor
**
** 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 ... | 5,428 | 0.770711 | 0.765213 | 114 | 46.85965 | 39.007393 | 125 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.877193 | false | false | 13 |
6d968c6747da04d04173f26732f7ca8bf73fe881 | 24,257,975,345,828 | ebe0f98b763df2182b19cb93f23509919decfe88 | /src/main/java/com/epam/store/template/api/domain/builder/DoSmthResponseBuilder.java | 5bfc6f6022707647237600149d137ca1af189112 | [] | no_license | sychou-uladzimir/commercetools-template | https://github.com/sychou-uladzimir/commercetools-template | 78a55ac77c7e86c51479441a8d2585a6ee730f4e | 4056884a4da4eb9cd02f18c1c42e53874db07b39 | refs/heads/master | 2020-04-02T16:20:48.303000 | 2018-10-29T12:14:01 | 2018-10-29T12:14:01 | 154,607,513 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.epam.store.template.api.domain.builder;
import com.epam.store.template.api.domain.DoSmthResponse;
public final class DoSmthResponseBuilder {
private String field;
private DoSmthResponseBuilder() {
}
public static DoSmthResponseBuilder aDoSmthResponse() {
return new DoSmthResponseBuilder();
}
p... | UTF-8 | Java | 568 | java | DoSmthResponseBuilder.java | Java | [] | null | [] | package com.epam.store.template.api.domain.builder;
import com.epam.store.template.api.domain.DoSmthResponse;
public final class DoSmthResponseBuilder {
private String field;
private DoSmthResponseBuilder() {
}
public static DoSmthResponseBuilder aDoSmthResponse() {
return new DoSmthResponseBuilder();
}
p... | 568 | 0.776408 | 0.776408 | 26 | 20.846153 | 21.351801 | 57 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.153846 | false | false | 13 |
6ae7aa539dc2850f649d8294b047d2cc19043598 | 21,655,225,170,152 | b7764610c3c0043774e0c368868aedc2f88112ed | /Basics/Test2 (10).java | 0ca6b3fab26b6cc482689c6f94035f5386940102 | [] | no_license | singh-nayan/CPD | https://github.com/singh-nayan/CPD | 5b97c5df9b6c5eca2bf1ecad4937fbf72e62bc94 | 7ac284c2e604e6bbf79a01c3be872c3e3e01dadb | refs/heads/master | 2020-03-24T22:54:28.927000 | 2018-08-01T05:29:45 | 2018-08-01T05:29:45 | 143,107,808 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package mar12;
public class Test2
{
public static void main(String[] args)
{
int x = 48, y = 36;
int z = x&y;
int p= x|y;
int q=~x;
System.out.println("X & Y = "+z);
System.out.println("X | Y = "+p);
System.out.println("~X = "+q);
... | UTF-8 | Java | 451 | java | Test2 (10).java | Java | [] | null | [] | package mar12;
public class Test2
{
public static void main(String[] args)
{
int x = 48, y = 36;
int z = x&y;
int p= x|y;
int q=~x;
System.out.println("X & Y = "+z);
System.out.println("X | Y = "+p);
System.out.println("~X = "+q);
... | 451 | 0.416851 | 0.394679 | 19 | 21.842106 | 16.131901 | 47 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.789474 | false | false | 13 |
0dc3feb1fc5cf612fdff68d34a618247f061aed8 | 19,877,108,711,332 | 648c2663950f5250d7153351174dcd6443849e9d | /Level2/PhoneBookHashMap/src/phonebookhashmap/PhoneBookHashMap.java | 1db6ba0d740932195d0763c9a2f344d4dd602a12 | [] | no_license | Contia/Java-Exercises | https://github.com/Contia/Java-Exercises | d432cdf9ca07fb11e8ead41b7134ccfe38369c76 | 155df1e41d35943bae34622a6126076f6ce4dcf9 | refs/heads/master | 2021-01-23T00:25:06.714000 | 2017-03-31T16:00:22 | 2017-03-31T16:00:22 | 85,716,913 | 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 phonebookhashmap;
import java.util.Scanner;
/**
*
* @author contia
*/
public class PhoneBookHashMap {
/**
* @par... | UTF-8 | Java | 1,093 | java | PhoneBookHashMap.java | Java | [
{
"context": "map;\n\nimport java.util.Scanner;\n\n/**\n *\n * @author contia\n */\npublic class PhoneBookHashMap {\n\n /**\n ",
"end": 263,
"score": 0.9978630542755127,
"start": 257,
"tag": "USERNAME",
"value": "contia"
}
] | 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 phonebookhashmap;
import java.util.Scanner;
/**
*
* @author contia
*/
public class PhoneBookHashMap {
/**
* @par... | 1,093 | 0.576395 | 0.570906 | 38 | 27.763159 | 21.965803 | 79 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.473684 | false | false | 13 |
6a35fef1180f31d17cf504c9264e220ccac49bec | 10,591,389,367,974 | 0c490cb7f1bb71d2227500cd7ab517511e2619cf | /src/main/java/com/neuedu/controller/portal/OrderController.java | 3e4e2ed73275e183794d0fb9f4055a2e7bc11a04 | [] | no_license | yxy07112420/Shopping_Project | https://github.com/yxy07112420/Shopping_Project | 64359c0e59a6e9ffa1549611c8891e013d8caab9 | a99d4c2fcb23590818ca9df65963de9cfd346dd4 | refs/heads/master | 2020-04-14T20:10:01.334000 | 2019-01-14T05:35:07 | 2019-01-14T05:35:07 | 164,084,095 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.neuedu.controller.portal;
import com.alipay.api.AlipayApiException;
import com.alipay.api.internal.util.AlipaySignature;
import com.alipay.demo.trade.config.Configs;
import com.google.common.collect.Maps;
import com.neuedu.common.ResponseCord;
import com.neuedu.common.ServerResponse;
import com.neuedu.pojo... | UTF-8 | Java | 5,751 | java | OrderController.java | Java | [] | null | [] | package com.neuedu.controller.portal;
import com.alipay.api.AlipayApiException;
import com.alipay.api.internal.util.AlipaySignature;
import com.alipay.demo.trade.config.Configs;
import com.google.common.collect.Maps;
import com.neuedu.common.ResponseCord;
import com.neuedu.common.ServerResponse;
import com.neuedu.pojo... | 5,751 | 0.645691 | 0.644399 | 147 | 35.863945 | 27.54505 | 128 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.55102 | false | false | 13 |
b5e5a3281b319ed7bc0d345fdbce0bc767517d70 | 28,106,266,012,149 | a7c84dace4b4f9921601507afce125dc695456a2 | /app/src/main/java/com/xbx/employer/utils/HttpURLUtils.java | da9191f1ae93772055f85517e5853b5274993d68 | [] | no_license | liushaoxuan/xianbuxianemployer | https://github.com/liushaoxuan/xianbuxianemployer | df6f7526ea06d3645d6f3b56e8ae0ff159035baf | a43282ab2099fffd01421d7e0b27d18434a879bb | refs/heads/master | 2017-12-12T12:20:52.338000 | 2017-01-13T05:26:24 | 2017-01-13T05:26:24 | 78,617,833 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.xbx.employer.utils;
/**
* Created by lx on 2016/11/8.
* 网络请求URL
*/
public class HttpURLUtils {
// public static String BaseUrl = "http://192.168.100.115:8080/xbx/api/";
// public static String ImageUrl = "http://192.168.100.115:8080/xbx/resource/";
/**
* 正式环境
*/
// public s... | UTF-8 | Java | 6,243 | java | HttpURLUtils.java | Java | [
{
"context": "package com.xbx.employer.utils;\n\n/**\n * Created by lx on 2016/11/8.\n * 网络请求URL\n */\npublic class HttpURL",
"end": 53,
"score": 0.9958205223083496,
"start": 51,
"tag": "USERNAME",
"value": "lx"
},
{
"context": "ls {\n// public static String BaseUrl = \"http://192... | null | [] | package com.xbx.employer.utils;
/**
* Created by lx on 2016/11/8.
* 网络请求URL
*/
public class HttpURLUtils {
// public static String BaseUrl = "http://192.168.100.115:8080/xbx/api/";
// public static String ImageUrl = "http://192.168.100.115:8080/xbx/resource/";
/**
* 正式环境
*/
// public s... | 6,241 | 0.586976 | 0.572288 | 261 | 20.65134 | 27.057997 | 87 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.214559 | false | false | 13 |
06afbf5f7cb504cf3c75a10a1cb79e29e6428dfd | 27,032,524,217,431 | a5dfb6f0a0152d6142e6ddd0bc7c842fdea3daf9 | /projects/SDJ3_Project_SlaughterHouse/Test2/src/mediator/DatabaseAdapter.java | 83ed84a7d7aba1c24425e7eba6b51e9b10dffe5e | [] | no_license | jimmi280586/Java_school_projects | https://github.com/jimmi280586/Java_school_projects | e7c97dfe380cd3f872487232f1cc060e1fabdc1c | 86b0cb5d38c65e4f7696bc841e3c5eed74e4d552 | refs/heads/master | 2021-01-11T11:58:06.578000 | 2016-12-16T20:55:48 | 2016-12-16T20:55:48 | 76,685,030 | 2 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package mediator;
import java.io.IOException;
import java.sql.SQLException;
import java.util.ArrayList;
import model.Animal;
import model.Part;
import model.Tray;
import model.Product;
import model.Market;
public class DatabaseAdapter implements Persistence {
private MyDatabase db;
private static final String DB_... | UTF-8 | Java | 8,264 | java | DatabaseAdapter.java | Java | [] | null | [] | package mediator;
import java.io.IOException;
import java.sql.SQLException;
import java.util.ArrayList;
import model.Animal;
import model.Part;
import model.Tray;
import model.Product;
import model.Market;
public class DatabaseAdapter implements Persistence {
private MyDatabase db;
private static final String DB_... | 8,264 | 0.626331 | 0.615682 | 289 | 27.595156 | 24.578638 | 119 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 2.989619 | false | false | 13 |
e588caf13d9276036a8faf87e952bf8d7855d1d8 | 20,813,411,572,618 | 65ebd9cc9b8ac76522f77c84b70fdc8b2c6d77e6 | /src/main/java/com/github/graph/SingleSourceShortestPath.java | b044f5e9c8619468654819dc5f364367b7ffa2af | [] | no_license | SlumDunk/leetcode | https://github.com/SlumDunk/leetcode | 30af765c7f5e61317983af43230bafa23362e25a | c242f13e7b3a3ea67cdd70f3d8b216e83bd65829 | refs/heads/master | 2021-08-20T01:58:11.309000 | 2021-07-25T17:07:10 | 2021-07-25T17:07:10 | 121,602,686 | 0 | 0 | null | false | 2020-11-08T03:34:35 | 2018-02-15T07:38:45 | 2020-11-08T03:32:36 | 2020-11-08T03:34:34 | 1,627 | 1 | 0 | 0 | Java | false | false | package com.github.graph;
import java.util.LinkedList;
import java.util.Stack;
/**
* @Author: zerongliu
* @Date: 9/5/19 09:41
* @Description: 单源最短路径
* 地杰斯特拉算法和贝尔曼福特算法
* Dijkstra要求图中不存在边权值之和为负数的环路,否则算法无法收敛;
* Bellman-Ford算法可以检测出图中是否存在权值之和为负数的环路。
*/
public class SingleSourceShortestPath {
public static class... | UTF-8 | Java | 11,796 | java | SingleSourceShortestPath.java | Java | [
{
"context": "nkedList;\nimport java.util.Stack;\n\n/**\n * @Author: zerongliu\n * @Date: 9/5/19 09:41\n * @Description: 单源最短路径\n *",
"end": 106,
"score": 0.9946788549423218,
"start": 97,
"tag": "USERNAME",
"value": "zerongliu"
}
] | null | [] | package com.github.graph;
import java.util.LinkedList;
import java.util.Stack;
/**
* @Author: zerongliu
* @Date: 9/5/19 09:41
* @Description: 单源最短路径
* 地杰斯特拉算法和贝尔曼福特算法
* Dijkstra要求图中不存在边权值之和为负数的环路,否则算法无法收敛;
* Bellman-Ford算法可以检测出图中是否存在权值之和为负数的环路。
*/
public class SingleSourceShortestPath {
public static class... | 11,796 | 0.434582 | 0.415762 | 381 | 28.007874 | 22.677296 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.721785 | false | false | 13 |
ac118bc315cb948a42a44919a050d5895caaab8a | 352,187,364,395 | 3e42e11fc4dea76823be6380a4b074d13d24bc29 | /app/src/main/java/com/example/fragmentview/Fragment_db/NotificationFragment_db.java | db5f608dc39fc45c131244eac20f11e1ac8d4685 | [] | no_license | vaishnavikattekola/MockKPulse | https://github.com/vaishnavikattekola/MockKPulse | 989a405ee7a912503d6f64839493544c9f2c6275 | 224187be7b62f3b4921f132877afaf5f139ac744 | refs/heads/master | 2020-12-21T16:51:55.506000 | 2020-02-28T06:12:55 | 2020-02-28T06:12:55 | 236,494,018 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.fragmentview.Fragment_db;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.media.Ringtone;
import android.media.RingtoneManager;
import android.net.Uri;
import android.os.Bundle;
import androidx.fragme... | UTF-8 | Java | 1,838 | java | NotificationFragment_db.java | Java | [] | null | [] | package com.example.fragmentview.Fragment_db;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.media.Ringtone;
import android.media.RingtoneManager;
import android.net.Uri;
import android.os.Bundle;
import androidx.fragme... | 1,838 | 0.690424 | 0.686072 | 54 | 33.037037 | 30.80522 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.759259 | false | false | 13 |
d774580a1cb517539ae423427a2b254422cfc818 | 32,409,823,239,555 | 48c2bc8180d40bb1ae44a0df43967258d3d3bd64 | /src/main/java/hiperf/modelo/repo/RegiaoRepo.java | ea3a5e64e7096d8cfe7f10089cad40b41beca542 | [] | no_license | lgalvao/hiperf | https://github.com/lgalvao/hiperf | 0a8312eb70cee0e2ffe94499dbde8a96d157db5d | 51827831f0139e9f78c086ea06c1f8862b4e8755 | refs/heads/master | 2022-12-18T12:18:57.094000 | 2020-10-06T12:14:56 | 2020-10-06T12:14:56 | 301,713,069 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package hiperf.modelo.repo;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import hiperf.modelo.Regiao;
@Repository
public interface RegiaoRepo extends JpaRepository<Regiao, Long> {
}
| UTF-8 | Java | 251 | java | RegiaoRepo.java | Java | [] | null | [] | package hiperf.modelo.repo;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import hiperf.modelo.Regiao;
@Repository
public interface RegiaoRepo extends JpaRepository<Regiao, Long> {
}
| 251 | 0.836653 | 0.836653 | 9 | 26.888889 | 24.664164 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.555556 | false | false | 13 |
17b1e580b514dd1fcca69c7756024459a64e4aca | 15,281,493,676,064 | 14bef2bc59568dadfeb76177353f8d42e76f17df | /modules/siddhi-extensions/ml/src/main/java/org/wso2/siddhi/extension/ml/PredictStreamProcessor.java | 628c592c7879ae5d37632933786c712d0b6fca59 | [
"Apache-2.0"
] | permissive | Moni017/siddhi | https://github.com/Moni017/siddhi | 0108886c13af883542b3cb1e61487b71ae8669eb | 8be17766a7dbe4b30fe9aef3086a1d29e1413759 | refs/heads/master | 2021-01-15T15:00:06.259000 | 2015-06-18T18:41:35 | 2015-06-18T18:41:35 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | /*
* Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* 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
*
* U... | UTF-8 | Java | 7,311 | java | PredictStreamProcessor.java | Java | [] | null | [] | /*
* Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* 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
*
* U... | 7,311 | 0.669539 | 0.665025 | 169 | 42.260357 | 36.31181 | 184 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.544379 | false | false | 13 |
dec3ce1a11a9aaf077880e6f44cdf4a76c110d47 | 6,382,321,433,994 | 3c8d210a2fa96d79628d5884eab0c68c4cbface5 | /sjms/src/main/java/com/example/sjms/state/order/CancelState.java | d6bfdfb0cdb57eaad947b0870d162c3be11cb0cc | [] | no_license | quanpan/springboot-example | https://github.com/quanpan/springboot-example | 5761904ea4c87eaa16782c66ddab34894900fece | 5d8613642878bad811e31e7855286adf3b97746f | refs/heads/master | 2022-07-12T04:32:54.447000 | 2020-01-04T04:11:28 | 2020-01-04T04:11:28 | 230,081,317 | 1 | 0 | null | false | 2022-06-17T02:48:31 | 2019-12-25T09:51:56 | 2020-01-04T04:11:31 | 2022-06-17T02:48:31 | 128 | 1 | 0 | 1 | Java | false | false | package com.example.sjms.state.order;
public class CancelState extends OrderState {
@Override
public void crete(Context context) {
System.out.println("订单重建");
context.setOrderState(new CreateOrderState());
context.create();
}
@Override
public void pay(Context context) {... | UTF-8 | Java | 722 | java | CancelState.java | Java | [] | null | [] | package com.example.sjms.state.order;
public class CancelState extends OrderState {
@Override
public void crete(Context context) {
System.out.println("订单重建");
context.setOrderState(new CreateOrderState());
context.create();
}
@Override
public void pay(Context context) {... | 722 | 0.617211 | 0.617211 | 38 | 16.736841 | 17.839466 | 54 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.210526 | false | false | 13 |
5f0bb32104255dc9241540f635dbb6750c77332f | 6,382,321,431,620 | 089a64886c6c1cb35d58e6aa8c7eee79c1e91286 | /src/com/brandon/dossier/state/ArrivingPeople.java | d9949eaaaf031767675a0d9c9c63167139a3fc80 | [] | no_license | itzstatic/Pizza | https://github.com/itzstatic/Pizza | 2a4d51639918d3cfa6371eff2e30acc9a491389e | 0ddd0c4ceb762cfd06be36d9035ce6a2513d86bb | refs/heads/master | 2018-01-09T10:51:32.645000 | 2016-01-12T13:36:52 | 2016-01-12T13:36:52 | 49,500,950 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.brandon.dossier.state;
import org.teamresistance.util.state.State;
import org.teamresistance.util.state.StateMachine;
import org.teamresistance.util.state.StateTransition;
import com.brandon.dossier.UI;
import com.brandon.dossier.util.console.Menu;
public class ArrivingPeople extends State {
private UI... | UTF-8 | Java | 1,038 | java | ArrivingPeople.java | Java | [] | null | [] | package com.brandon.dossier.state;
import org.teamresistance.util.state.State;
import org.teamresistance.util.state.StateMachine;
import org.teamresistance.util.state.StateTransition;
import com.brandon.dossier.UI;
import com.brandon.dossier.util.console.Menu;
public class ArrivingPeople extends State {
private UI... | 1,038 | 0.703276 | 0.703276 | 47 | 21.085106 | 19.777302 | 61 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.446808 | false | false | 13 |
96c34f90388e3fa19252fe215a7dcb7852b551f2 | 27,066,883,945,096 | 84af8817d9365b45bd2e583ac89aec61812635aa | /app/src/main/java/com/vararg/moviessample/network/NetworkModule.java | c8388a7a42d5d4188a2ee1af61276d79e940323d | [] | no_license | ergoTech/MoviesSample | https://github.com/ergoTech/MoviesSample | ac6b05d195718c3156e0ed6f12ae64a986dcb2cd | a86a4de7e8d1e9daef8713f5d56f10d593636417 | refs/heads/master | 2020-12-02T22:14:07.565000 | 2017-04-12T12:39:05 | 2017-04-12T12:39:05 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.vararg.moviessample.network;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.jakewharton.retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory;
import javax.inject.Singleton;
import dagger.Module;
import dagger.Provides;
import okhttp3.OkHttpClient;
import retrofit2.CallAdapter;... | UTF-8 | Java | 1,436 | java | NetworkModule.java | Java | [
{
"context": "rter.gson.GsonConverterFactory;\n\n/**\n * Created by vararg on 10.04.2017.\n */\n\n@Module\npublic class NetworkM",
"end": 427,
"score": 0.993777871131897,
"start": 421,
"tag": "USERNAME",
"value": "vararg"
}
] | null | [] | package com.vararg.moviessample.network;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.jakewharton.retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory;
import javax.inject.Singleton;
import dagger.Module;
import dagger.Provides;
import okhttp3.OkHttpClient;
import retrofit2.CallAdapter;... | 1,436 | 0.681058 | 0.669916 | 59 | 23.338984 | 22.390684 | 108 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.322034 | false | false | 13 |
e8e0fe8bcca445efb8bfba36fd6be733501c02be | 32,633,161,519,242 | a99bf10b3fd053e9f476f005d6c1dfd0adcc32e1 | /example-2021.05.18/src/main/java/io/github/sysker/example20210518/UseCaseTracker.java | aa763a241ac89315142cdf5aeb4738d0c1d812fa | [] | no_license | Faiyong/example-everyday | https://github.com/Faiyong/example-everyday | f3cec11ba6a1c6572871a61952680f4f2bf47c5a | d6b89f6744fe48cf1e8eef43046e6a6d87acaf15 | refs/heads/main | 2023-06-24T22:24:38.378000 | 2021-07-16T06:07:29 | 2021-07-16T06:07:29 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package io.github.sysker.example20210518;
import io.github.sysker.example20210518.annotation.UseCase;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* tracker
*
* @author sysker
* @version 1.0
* @date 2021-05-19 7:57
*/
publ... | UTF-8 | Java | 1,120 | java | UseCaseTracker.java | Java | [
{
"context": "package io.github.sysker.example20210518;\r\n\r\nimport io.github.sysker.examp",
"end": 24,
"score": 0.9987592697143555,
"start": 18,
"tag": "USERNAME",
"value": "sysker"
},
{
"context": "ithub.sysker.example20210518;\r\n\r\nimport io.github.sysker.example20210518.annot... | null | [] | package io.github.sysker.example20210518;
import io.github.sysker.example20210518.annotation.UseCase;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* tracker
*
* @author sysker
* @version 1.0
* @date 2021-05-19 7:57
*/
publ... | 1,120 | 0.605357 | 0.572321 | 36 | 29.111111 | 25.363773 | 89 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.527778 | false | false | 13 |
a5e07c810d92f70759d0fa5e44af2a3edd3acfce | 15,710,990,376,712 | d6691d77bf247f0fa0751b3453160a8d11c3f5d4 | /src/com/mashibing/tank/cor/ColliderChain.java | be416182ab73e74d235d89b538e88027793852c1 | [] | no_license | dan031213/tank-s | https://github.com/dan031213/tank-s | f0ba0de991ba93fe0d94ce28d1b42ce1fc99ed4c | 9e30e4ae0b26ed4785c0bcf845641b061c44a33d | refs/heads/master | 2020-05-29T23:39:24.118000 | 2019-05-30T16:02:21 | 2019-05-30T16:02:21 | 189,441,521 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.mashibing.tank.cor;
import com.mashibing.tank.GameObject;
import com.mashibing.tank.PropertyMgr;
import java.lang.reflect.InvocationTargetException;
import java.util.LinkedList;
import java.util.List;
public class ColliderChain implements Collider {
List<Collider> colliderChainList = new LinkedList(... | UTF-8 | Java | 1,600 | java | ColliderChain.java | Java | [] | null | [] | package com.mashibing.tank.cor;
import com.mashibing.tank.GameObject;
import com.mashibing.tank.PropertyMgr;
import java.lang.reflect.InvocationTargetException;
import java.util.LinkedList;
import java.util.List;
public class ColliderChain implements Collider {
List<Collider> colliderChainList = new LinkedList(... | 1,600 | 0.584375 | 0.58125 | 56 | 27.571428 | 22.844862 | 97 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.446429 | false | false | 13 |
f9f86b0d5d391920caa2a412e056c348111b7bb5 | 16,973,710,763,216 | 932cdd1bffc0208a39dbe06904c0d0b1f70da79b | /app/src/main/java/welding/taal/com/welding_23_08_2016/model/FirmwareClass.java | fbf5305342c9a6f5d7b6173c49fa229da2fced54 | [] | no_license | divyasudish/welding_23_8_2016 | https://github.com/divyasudish/welding_23_8_2016 | ba1e36a534efd306c5fb3f35e530881c52604fde | 473ec1bd1e5e7035a28152ec4c3e4d625d0d8b4d | refs/heads/master | 2020-04-24T01:32:01.796000 | 2016-09-08T10:16:07 | 2016-09-08T10:16:07 | 66,913,073 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package welding.taal.com.welding_23_08_2016.model;
/**
* Created by divyashreenair on 18/7/16.
*/
public class FirmwareClass {
private int id;
private String Device;
private String Path;
private boolean mChecked;
public FirmwareClass() {
}
public FirmwareClass(String device, String su... | UTF-8 | Java | 1,035 | java | FirmwareClass.java | Java | [
{
"context": "l.com.welding_23_08_2016.model;\n\n/**\n * Created by divyashreenair on 18/7/16.\n */\npublic class FirmwareClass {\n\n ",
"end": 84,
"score": 0.9992912411689758,
"start": 70,
"tag": "USERNAME",
"value": "divyashreenair"
}
] | null | [] | package welding.taal.com.welding_23_08_2016.model;
/**
* Created by divyashreenair on 18/7/16.
*/
public class FirmwareClass {
private int id;
private String Device;
private String Path;
private boolean mChecked;
public FirmwareClass() {
}
public FirmwareClass(String device, String su... | 1,035 | 0.585507 | 0.572947 | 57 | 17.157894 | 16.497517 | 70 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.350877 | false | false | 13 |
9c3f34a0450a7b15b38d21142c5bedbf8e0743a7 | 22,651,657,526,761 | ed375fd1014eb91255132d09cb8127ba1733309c | /src/java/pathfinding/MyAStarPathFinderAlgorithm.java | 79ed52f2c97cba8f1363ebb3f12500680eca6b80 | [] | no_license | salomegoosen123/PathFinder | https://github.com/salomegoosen123/PathFinder | 711d811107d35e2b2a8464ab956dcc3312c0eccf | 13c9bea1c1fbbc0e59db05a7bea6f126436e66eb | refs/heads/master | 2021-01-25T12:08:20.660000 | 2013-06-18T07:11:34 | 2013-06-18T07:11:34 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pathfinding;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import org.apache.log4j.Logger;
public class MyAStarPathFinderAlgorithm extends AbstractAlgorithm {
/*
* // TODO
* possible optimizations:
* - calculate totalCost as soon as past or future costs are set, so i... | UTF-8 | Java | 7,827 | java | MyAStarPathFinderAlgorithm.java | Java | [] | null | [] | package pathfinding;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import org.apache.log4j.Logger;
public class MyAStarPathFinderAlgorithm extends AbstractAlgorithm {
/*
* // TODO
* possible optimizations:
* - calculate totalCost as soon as past or future costs are set, so i... | 7,827 | 0.631915 | 0.62706 | 255 | 29.694118 | 23.434359 | 92 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 3.815686 | false | false | 13 |
10d550f05bb8fac64ee9d1cc2768bbfbfeaf0f27 | 4,389,456,576,827 | d9e8c0a14ead7f47f666caef2a95fcae337ae88e | /app/src/main/java/Entidades/grilla_transformacion_agregar.java | 5889505f855a937e1910542817b4452e2e43fb4c | [] | no_license | herdumundo/Averiados_APP | https://github.com/herdumundo/Averiados_APP | 662a35f026d482e70266056af7c16690a1fdb93a | 4f67c96eb9400273f79f6adb8cec359d65ab0a1e | refs/heads/master | 2023-03-04T21:20:58.749000 | 2021-02-13T14:41:57 | 2021-02-13T14:41:57 | 338,595,900 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package Entidades;
public class grilla_transformacion_agregar {
private String codigo;
private String nombre_huevo;
private int cantidad;
public grilla_transformacion_agregar(String codigo, int cantidad, String nombre_huevo ) {
this.codigo = codigo;
this.cantidad = cantidad;
th... | UTF-8 | Java | 874 | java | grilla_transformacion_agregar.java | Java | [] | null | [] | package Entidades;
public class grilla_transformacion_agregar {
private String codigo;
private String nombre_huevo;
private int cantidad;
public grilla_transformacion_agregar(String codigo, int cantidad, String nombre_huevo ) {
this.codigo = codigo;
this.cantidad = cantidad;
th... | 874 | 0.639588 | 0.639588 | 40 | 20.85 | 20.228136 | 93 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.375 | false | false | 13 |
6711e03900920c5cd12e9a3faa277f1dcf68651d | 4,002,909,531,343 | 10d807e56a8bebcc064af11d245b12f06bc5d048 | /java/com/ezzetech/mujib100/apiAdapter/NewsFeedForAdapter.java | 42c8ce541608bf773a9625df88bea27421be1626 | [] | no_license | Nababmithun/Mujib-100 | https://github.com/Nababmithun/Mujib-100 | 91938de16c6c927f93b280c8df0d5b7d2aad72e7 | a709b42b62f31cc6694e5381aa291f709e0af08e | refs/heads/main | 2023-01-07T13:00:24.471000 | 2020-10-28T12:52:21 | 2020-10-28T12:52:21 | 308,007,479 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.ezzetech.mujib100.apiAdapter;
import android.annotation.SuppressLint;
import android.content.Context;
import android.content.Intent;
import android.text.Html;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import andro... | UTF-8 | Java | 3,920 | java | NewsFeedForAdapter.java | Java | [] | null | [] | package com.ezzetech.mujib100.apiAdapter;
import android.annotation.SuppressLint;
import android.content.Context;
import android.content.Intent;
import android.text.Html;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import andro... | 3,920 | 0.667857 | 0.664796 | 110 | 33.636364 | 29.419451 | 115 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.636364 | false | false | 13 |
56a27636b97cf7a73ea6cfc1ef18748f590bb446 | 5,729,486,383,916 | c1277a85980a0ff44d1d78625e8ce81c005d4248 | /src/main/java/leetcode/LongestSubstringWithoutRepeatingChars.java | b1190e917854fa99fb36929e1676ddca2cde950d | [] | no_license | shuowu/alg | https://github.com/shuowu/alg | 7c7646c1267e8a92b6de051ecbbddcd935a9ca2d | 1b85fadf25b05946855484b9f6b5a02fc15ce88a | refs/heads/master | 2020-03-30T11:41:58.813000 | 2018-10-19T03:31:33 | 2018-10-19T03:31:33 | 151,188,097 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package leetcode;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
/**
* Given a string, find the length of the longest substring without repeating characters.
*
* @tag Hash
* @tag Slide Window
* @tag Two Pointers
*/
public class LongestSubstringWithoutRepeatingChars {
public static i... | UTF-8 | Java | 1,498 | java | LongestSubstringWithoutRepeatingChars.java | Java | [] | null | [] | package leetcode;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
/**
* Given a string, find the length of the longest substring without repeating characters.
*
* @tag Hash
* @tag Slide Window
* @tag Two Pointers
*/
public class LongestSubstringWithoutRepeatingChars {
public static i... | 1,498 | 0.514686 | 0.500668 | 73 | 19.534246 | 17.193565 | 89 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.575342 | false | false | 13 |
942779d31e01dccc767df8d3e23476254d402d71 | 6,433,861,021,640 | 069c9ce79414c84a64ce4042d645889ebd52ff18 | /dental-surgery-management-system/src/dental/surgery/management/api/DataProcessor.java | 8a16ef804ad0ce8f6322eddadf564487d21a8dbc | [] | no_license | pvasilev94/Dental-Management-System | https://github.com/pvasilev94/Dental-Management-System | 3f13e291b27ef5a083f14101ac24f81a4c16abc9 | 803e3953310d98671a2d5428e607c7c58dfd8c4e | refs/heads/master | 2021-01-19T18:39:12.845000 | 2016-09-13T13:58:39 | 2016-09-13T13:58:39 | 68,113,666 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package dental.surgery.management.api;
import java.util.List;
public interface DataProcessor {
public void saveProcedure(Procedure procedure);
public void deleteProcedure(int id);
public List<Procedure> getProcedure();
public Procedure getProcedure(int procedureId);
public void savePatient(P... | UTF-8 | Java | 861 | java | DataProcessor.java | Java | [] | null | [] | package dental.surgery.management.api;
import java.util.List;
public interface DataProcessor {
public void saveProcedure(Procedure procedure);
public void deleteProcedure(int id);
public List<Procedure> getProcedure();
public Procedure getProcedure(int procedureId);
public void savePatient(P... | 861 | 0.730546 | 0.730546 | 36 | 22.916666 | 23.262243 | 73 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.027778 | false | false | 13 |
b1add2d4fa2a8fae01dfdff9cd88c8bb7090283a | 14,379,550,519,795 | fdaf4ed0a660a1eebefec0189e9b81286995c651 | /src/main/java/com/example/PersonController.java | 9905d639bb66396fd8e2ddb8f16a1ddd1efed85d | [] | no_license | rahulkj/redis-example | https://github.com/rahulkj/redis-example | fad22f0dc249f8edb1bd346fa3e339f3b27baa39 | 52eadbcc8244fde9335aac72ce701bc6bdff99f5 | refs/heads/master | 2021-06-18T05:25:09.266000 | 2017-05-09T19:37:33 | 2017-05-09T19:37:33 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.Requ... | UTF-8 | Java | 996 | java | PersonController.java | Java | [] | null | [] | package com.example;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.Requ... | 996 | 0.778112 | 0.778112 | 28 | 34.57143 | 30.712292 | 99 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.071429 | false | false | 13 |
9e18f28e06b8fe4d0db55b013a52211deab0ccba | 14,379,550,519,401 | 7e41614c9e3ddf095e57ae55ae3a84e2bdcc2844 | /development/workspace(helios)/Poseidon/src/com/gentleware/poseidon/diagrams/gen/node/DslGenVariableCreatorGem.java | 374674d9083cde69fb374116dc28dced0513315d | [] | no_license | ygarba/mde4wsn | https://github.com/ygarba/mde4wsn | 4aaba2fe410563f291312ffeb40837041fb143ff | a05188b316cc05923bf9dee9acdde15534a4961a | refs/heads/master | 2021-08-14T09:52:35.948000 | 2017-11-15T08:02:31 | 2017-11-15T08:02:31 | 109,995,809 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.gentleware.poseidon.diagrams.gen.node;
import com.gentleware.poseidon.diagrams.gen.node.DslGenVariableCreateFacet;
import com.gentleware.poseidon.custom.diagrams.node.impl.VariableCreateFacetImpl;
import com.gentleware.poseidon.custom.diagrams.base.CustomBaseCreatorGem;
import com.gentleware.poseidon.diag... | UTF-8 | Java | 973 | java | DslGenVariableCreatorGem.java | Java | [] | null | [] | package com.gentleware.poseidon.diagrams.gen.node;
import com.gentleware.poseidon.diagrams.gen.node.DslGenVariableCreateFacet;
import com.gentleware.poseidon.custom.diagrams.node.impl.VariableCreateFacetImpl;
import com.gentleware.poseidon.custom.diagrams.base.CustomBaseCreatorGem;
import com.gentleware.poseidon.diag... | 973 | 0.811922 | 0.811922 | 34 | 27.617647 | 29.430891 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.882353 | false | false | 13 |
6400258f334eab22b61e429bf5a99d5458ca8f04 | 20,160,576,550,763 | 09a50d2836c8f5f71e0f8606b8f625770e4dda1c | /Project1_kmangrum/app/src/main/java/com/example/project1_kmangrum/MainActivity.java | cad15148ba818b3af9318f6bf85586754f4451a0 | [] | no_license | kendallmangrum/CSCI-C323-MobileAppDevelopment | https://github.com/kendallmangrum/CSCI-C323-MobileAppDevelopment | 62d4bb2c734cb4f7f7822ca735488eb642f2cdda | 7eb42affb58883e387d5707a7519029e7b73cb4d | refs/heads/main | 2023-05-24T11:19:52.801000 | 2021-06-15T14:51:53 | 2021-06-15T14:51:53 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.project1_kmangrum;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInst... | UTF-8 | Java | 1,600 | java | MainActivity.java | Java | [] | null | [] | package com.example.project1_kmangrum;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInst... | 1,600 | 0.673125 | 0.67 | 37 | 42.270271 | 35.651958 | 114 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.459459 | false | false | 13 |
de5c662dd369adc2067260a5cbeadc67615cef1c | 13,297,218,752,041 | 0ba08b9d18b24e6cd69d321ce3879c89c91039f9 | /Deck 2/In Darth Mauls Fußstapfen.java | 3527fb04f6649fdec008e2595b3f69aad83be865 | [
"MIT"
] | permissive | ruleh/rwth-codescape | https://github.com/ruleh/rwth-codescape | 326ff8eccd450d4acd214319d6369d40b48ec9ab | be2a3deedd6ca41743ff37fda0ea8060373a7f98 | refs/heads/master | 2021-06-09T12:06:53.012000 | 2016-11-17T11:25:40 | 2016-11-17T11:25:40 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | import codescape.Dogbot;
public class MyDogbot extends Dogbot {
public void run() {
for (int i = 0; i < 6; i++) {
while (!isMovePossible()) {
rest();
}
move();
}
}
}
| UTF-8 | Java | 205 | java | In Darth Mauls Fußstapfen.java | Java | [] | null | [] | import codescape.Dogbot;
public class MyDogbot extends Dogbot {
public void run() {
for (int i = 0; i < 6; i++) {
while (!isMovePossible()) {
rest();
}
move();
}
}
}
| 205 | 0.507317 | 0.497561 | 12 | 16.083334 | 12.951566 | 38 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.416667 | false | false | 13 |
7f36d7d1c1c97a41463420c9574303e5d9a920a2 | 31,464,930,479,115 | 130db18098c6a7e8f1cebe1dca47655a7205a7e6 | /src/ru/fizteh/fivt/students/Bulat_Galiev/storeable/test/TabledbTest.java | 6ae57520a925e48b5c722a2fe24238fc3cb96ed5 | [] | no_license | mbeider/fizteh-java-2014 | https://github.com/mbeider/fizteh-java-2014 | 99051d5252b80bffa5cab3193802691e96dcecfb | 0ebbaff4f1a4b774de7ee785584fba65807fb1f7 | refs/heads/master | 2021-01-21T08:05:50.628000 | 2015-03-30T09:08:44 | 2015-03-30T09:08:44 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ru.fizteh.fivt.students.Bulat_Galiev.storeable.test;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.List;
import org.junit.After;
import org.junit.Assert;
import o... | UTF-8 | Java | 11,662 | java | TabledbTest.java | Java | [
{
"context": "mit();\n remove(\"key\");\n put(\"key\", \"value2\");\n\n Assert.assertEquals(CHECK_NUMBER_ONE,",
"end": 10914,
"score": 0.7549397945404053,
"start": 10908,
"tag": "KEY",
"value": "value2"
}
] | null | [] | package ru.fizteh.fivt.students.Bulat_Galiev.storeable.test;
import java.io.FileOutputStream;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.List;
import org.junit.After;
import org.junit.Assert;
import o... | 11,662 | 0.621155 | 0.611617 | 383 | 29.386423 | 23.441769 | 78 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.67624 | false | false | 13 |
ab496f1b46223eebf4045a901c31a4de03585613 | 18,391,049,984,331 | 6a26218338e60a3aca45b33a79bd5059a8b05274 | /src/spaceinvaders/graphics/GameFrame.java | f75a2caeb9616a620109501a6c94912d52e3c056 | [] | no_license | tectronics/poo-project-spaceinvaders | https://github.com/tectronics/poo-project-spaceinvaders | 2926c2d9ce8df1e91e816bf868de5bbf90129c9a | 08e358c8705b8cd229090335325d4bbffa4b8f71 | refs/heads/master | 2018-01-11T14:45:46.284000 | 2010-11-22T04:54:34 | 2010-11-22T04:54:34 | 45,488,930 | 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.
*/
/*
* GameFrame.java
*
* Created on 30/08/2010, 14:25:19
*/
package spaceinvaders.graphics;
import java.awt.Color;
import java.awt.Container;
import java.awt.Toolkit;
import spaceinvaders.engine.controls.KeyControl... | UTF-8 | Java | 2,836 | java | GameFrame.java | Java | [
{
"context": "rs.engine.elements.player.Tank;\n\n/**\n *\n * @author Yole\n */\npublic class GameFrame extends javax.swing.JF",
"end": 544,
"score": 0.9994056224822998,
"start": 540,
"tag": "NAME",
"value": "Yole"
}
] | null | [] | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
/*
* GameFrame.java
*
* Created on 30/08/2010, 14:25:19
*/
package spaceinvaders.graphics;
import java.awt.Color;
import java.awt.Container;
import java.awt.Toolkit;
import spaceinvaders.engine.controls.KeyControl... | 2,836 | 0.676305 | 0.665726 | 87 | 31.597702 | 27.390099 | 95 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.448276 | false | false | 13 |
714814b0d15b7bcd0161a6317bfe3416cda008f7 | 11,055,245,827,259 | 731b4950e08758dc5ddfc78579bb9b794837e94c | /src/az/com/course/utility/Query.java | aa2a347f5f2c9c5112bc92061def7cc27fc878a3 | [] | no_license | IsmayilMohsumov/JavaFXOrientITMCourse | https://github.com/IsmayilMohsumov/JavaFXOrientITMCourse | e2462bb56bcf90149a8b2ceef5ff9893c2cc426c | b094ee072e42fcaed487cb28f5a11a32a9fb2245 | refs/heads/main | 2023-04-01T01:50:17.040000 | 2021-04-14T17:15:16 | 2021-04-14T17:15:16 | 357,966,129 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package az.com.course.utility;
public enum Query {
//elave edende
PERSON_ADD("insert into users(id,name,surname,pin,email,password,person_type) values(?,?,?,?,?,?,?)"),
//sequnce miz herdefe yeni adam elave edende id ni ozu artirir
USER_ID("select user_seq.nextval from dual"),
//table nin icine dey... | UTF-8 | Java | 1,153 | java | Query.java | Java | [] | null | [] | package az.com.course.utility;
public enum Query {
//elave edende
PERSON_ADD("insert into users(id,name,surname,pin,email,password,person_type) values(?,?,?,?,?,?,?)"),
//sequnce miz herdefe yeni adam elave edende id ni ozu artirir
USER_ID("select user_seq.nextval from dual"),
//table nin icine dey... | 1,153 | 0.664354 | 0.663487 | 27 | 41.703705 | 41.288342 | 147 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1.37037 | false | false | 13 |
721998234e657dfa76efb377f1fa14b3dd391ffa | 22,454,089,034,655 | b28e2ceadfccbb1d4da46409563cf578652bcd28 | /as_api/src/main/java/com/example/as/api/MySpringBootServletInitializer.java | 9e1145b62837d2e1445e2cdb0a9d2a5ca1f54dca | [] | no_license | Fimics/FimicsArchAndroid | https://github.com/Fimics/FimicsArchAndroid | 7a9ccecb16718fcda6de3eb386630ec1fa500a11 | 4dd6395bcb665fb97bbbb77f0e22631fc30b9192 | refs/heads/master | 2023-06-16T01:34:23.303000 | 2021-07-15T11:05:07 | 2021-07-15T11:05:07 | 343,059,987 | 4 | 2 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.example.as.api;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
public class MySpringBootServletInitializer extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder config... | UTF-8 | Java | 424 | java | MySpringBootServletInitializer.java | Java | [] | null | [] | package com.example.as.api;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
public class MySpringBootServletInitializer extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder config... | 424 | 0.830189 | 0.830189 | 11 | 37.545456 | 34.389118 | 84 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.363636 | false | false | 13 |
8c33b49cf9115e61e7e694d1c957919de61387bc | 23,845,658,430,679 | 81c4f46e1082b22436d4ca9e1afad0d1adae5b2b | /app/src/main/java/ru/echodc/singlegroupe/mvp/view/OpenedPostView.java | b67a9ab01dbf265334f72bbb8a010c40a3c2dc1d | [] | no_license | ipvoodoo/SIngleGroupe | https://github.com/ipvoodoo/SIngleGroupe | 02eeef4bde54422ec7abcd79ac4b2a8be30acca7 | 21be8f3428c337681a1fca4be48d54772474ddd6 | refs/heads/master | 2021-08-22T04:01:37.599000 | 2017-11-29T07:13:16 | 2017-11-29T07:13:16 | 109,259,796 | 1 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package ru.echodc.singlegroupe.mvp.view;
import ru.echodc.singlegroupe.model.view.NewsItemFooterViewModel;
public interface OpenedPostView extends BaseFeedView {
void setFooter(NewsItemFooterViewModel viewModel);
}
| UTF-8 | Java | 221 | java | OpenedPostView.java | Java | [] | null | [] | package ru.echodc.singlegroupe.mvp.view;
import ru.echodc.singlegroupe.model.view.NewsItemFooterViewModel;
public interface OpenedPostView extends BaseFeedView {
void setFooter(NewsItemFooterViewModel viewModel);
}
| 221 | 0.837104 | 0.837104 | 9 | 23.555555 | 26.775242 | 65 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.333333 | false | false | 13 |
b5b7c1e59236f07d8fdfb63290b176681829402b | 23,845,658,431,437 | bcfb804638f006480c5d1fde0875f973c0bf8e2c | /src/main/java/pl/com/app/aspect/BasketData.java | 6b20153a4bca8200417f59b2ff52de421ce7f1d2 | [] | no_license | kubsonen/shop-online | https://github.com/kubsonen/shop-online | d9ce5ee161b3eb294a4fe349d7aa1b3a683fcbb7 | c97b2fac5089e161882c0963848f58e09ef1abce | refs/heads/master | 2020-04-27T09:01:59.411000 | 2019-03-29T17:48:08 | 2019-03-29T17:48:08 | 174,197,384 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package pl.com.app.aspect;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
im... | UTF-8 | Java | 1,456 | java | BasketData.java | Java | [] | null | [] | package pl.com.app.aspect;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
im... | 1,456 | 0.645604 | 0.644231 | 48 | 29.333334 | 23.52599 | 83 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.458333 | false | false | 13 |
b2e2a308738dfb33be70a21d6bfecaf35dd093a1 | 15,607,911,182,908 | a26851c46e8467cc518dd5ee37dfb4c92e0d50f9 | /OOPS/Stock Report/src/com/bridgelabz/stock/main/StockMain.java | 00eac9c0b872f007e607db17df6b0ee44d6e888c | [] | no_license | Aastha30/Programming | https://github.com/Aastha30/Programming | 78546fa4ba69b08b16b186c7caaf069317602a6b | f5efae915c25b692db56527dfc6f57960e856d84 | refs/heads/master | 2020-06-09T15:22:17.970000 | 2019-08-08T12:49:43 | 2019-08-08T12:49:43 | 193,459,041 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.bridgelabz.stock.main;
import com.bridgelabz.stockserviceimpl.StockServiceImpl;
public class StockMain {
public static void main(String[] args) {
StockServiceImpl impl=new StockServiceImpl();
impl.readFile();
}
}
| UTF-8 | Java | 239 | java | StockMain.java | Java | [] | null | [] | package com.bridgelabz.stock.main;
import com.bridgelabz.stockserviceimpl.StockServiceImpl;
public class StockMain {
public static void main(String[] args) {
StockServiceImpl impl=new StockServiceImpl();
impl.readFile();
}
}
| 239 | 0.757322 | 0.757322 | 14 | 16.071428 | 19.775396 | 56 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.857143 | false | false | 13 |
1b6cb20633bc421cba401e9ee3307e159152d1c7 | 18,605,798,350,754 | ebe1dced7ae3560e75fef1594e1186f61c6729c1 | /src/main/java/com/bteplus/draftbus/repository/ItemInfoRepository.java | 8f5641023c8fd655c73e8d8af3b97e43476a1e07 | [] | no_license | nessonma/draftbus | https://github.com/nessonma/draftbus | c051025758ddb6d2fcbaba92033daef98dfed155 | c3e9b28292a205940192b17e9630eccf74370d71 | refs/heads/master | 2022-06-21T02:43:49.198000 | 2020-11-27T02:20:46 | 2020-11-27T02:20:46 | 246,217,679 | 0 | 0 | null | false | 2022-06-17T02:56:01 | 2020-03-10T05:41:42 | 2020-11-27T02:21:21 | 2022-06-17T02:56:00 | 1,376 | 0 | 0 | 1 | FreeMarker | false | false | package com.bteplus.draftbus.repository;
import com.bteplus.draftbus.entity.ItemInfo;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.stereotype.Repository;
import java.io.Serializable;
import java.util.List;
@Repository
p... | UTF-8 | Java | 3,191 | java | ItemInfoRepository.java | Java | [] | null | [] | package com.bteplus.draftbus.repository;
import com.bteplus.draftbus.entity.ItemInfo;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.stereotype.Repository;
import java.io.Serializable;
import java.util.List;
@Repository
p... | 3,191 | 0.741774 | 0.728925 | 46 | 68.369568 | 79.559479 | 296 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 1 | false | false | 13 |
b32aaea9b3ae450da5a54af0eea020ba2a15711b | 3,152,506,059,650 | a754793300cefa36704932b18f420a117d216573 | /afw_flow_dsl/src-gen/jp/hishidama/xtext/afw/flow_dsl/parser/antlr/internal/InternalFlowDslParser.java | 4dc6f5c88461166ce98abe5dcf401066e54b28d2 | [] | no_license | hishidama/asakusafw-dsl-editor | https://github.com/hishidama/asakusafw-dsl-editor | f7a98849c0786014cbf1473a200938cd3ac2b3bb | 45a2586644966037f6cd9f9e55bc635d4e31f93a | refs/heads/master | 2021-01-01T20:23:12.994000 | 2013-09-14T22:53:00 | 2013-09-14T22:53:00 | null | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package jp.hishidama.xtext.afw.flow_dsl.parser.antlr.internal;
import org.eclipse.xtext.*;
import org.eclipse.xtext.parser.*;
import org.eclipse.xtext.parser.impl.*;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.xtext.parser.antlr.AbstractInternalAntlrPar... | UTF-8 | Java | 179,365 | java | InternalFlowDslParser.java | Java | [] | null | [] | package jp.hishidama.xtext.afw.flow_dsl.parser.antlr.internal;
import org.eclipse.xtext.*;
import org.eclipse.xtext.parser.*;
import org.eclipse.xtext.parser.impl.*;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.xtext.parser.antlr.AbstractInternalAntlrPar... | 179,365 | 0.526307 | 0.460196 | 3,721 | 46.204247 | 56.77195 | 472 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.732061 | false | false | 13 |
7bbba9a38ba46ce156f5c6126e756a36293903d7 | 3,152,506,058,598 | 0552aa4a4b510fb1bdd74ad723595f0e370c1fe4 | /src/main/java/com/stackroute/Car.java | 94b240200e85fe42bcbd0318bcf636ae448adeaf | [] | no_license | naveenpra17/Solid-principles-task | https://github.com/naveenpra17/Solid-principles-task | 64256a193ec010abe73175b816548deb7cb69e2d | b270e9d96006adce31946bb3637bce55cb953424 | refs/heads/master | 2020-06-23T21:36:17.175000 | 2019-07-25T04:54:46 | 2019-07-25T04:54:46 | 198,759,829 | 0 | 0 | null | null | null | null | null | null | null | null | null | null | null | null | null | package com.stackroute;
public class Car extends ToyBuilder{
private int price=100;
public int getPrice() {
return price;
}
public void move(){ //additional functionality
System.out.println(super.getColor()+ "car is created and moving functionality is added." +
"the p... | UTF-8 | Java | 358 | java | Car.java | Java | [] | null | [] | package com.stackroute;
public class Car extends ToyBuilder{
private int price=100;
public int getPrice() {
return price;
}
public void move(){ //additional functionality
System.out.println(super.getColor()+ "car is created and moving functionality is added." +
"the p... | 358 | 0.634078 | 0.625698 | 14 | 24.571428 | 26.826731 | 98 | false | false | 0 | 0 | 0 | 0 | 0 | 0 | 0.285714 | false | false | 13 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.